38 lines
1.6 KiB
JavaScript
38 lines
1.6 KiB
JavaScript
import APIDocs from '@/doc/common/apidoc/index.json';
|
|
|
|
export const getPTOption = (name) => {
|
|
const { props } = APIDocs[name.toLowerCase()].interfaces.values[`${name}PassThroughOptions`] || APIDocs[name.toLowerCase()].interfaces.values[`${name}DirectivePassThroughOptions`];
|
|
const options = APIDocs[name.toLowerCase()].interfaces.values[`${name}PassThroughMethodOptions`];
|
|
let data = [];
|
|
|
|
for (const [i, prop] of props.entries()) {
|
|
if (options) {
|
|
let subCompName, subOptions;
|
|
let hasSubComp = prop.name !== 'hooks' && prop.type.indexOf('TransitionType') === -1 && prop.type.indexOf('<') > -1 && name.toLowerCase() !== prop.type.slice(0, prop.type.indexOf('<')).toLowerCase();
|
|
|
|
if (hasSubComp) {
|
|
subCompName = prop.type.slice(0, prop.type.indexOf('<')).replace('PassThroughOptions', '').replace('PassThroughOptionType', '');
|
|
subOptions = APIDocs[subCompName.toLowerCase()].interfaces.values[`${subCompName}PassThroughMethodOptions`];
|
|
const objToReplace = subOptions.props.find((opt) => opt.name === 'parent');
|
|
|
|
objToReplace.type = prop.type;
|
|
}
|
|
|
|
data.push({
|
|
value: i + 1,
|
|
label: prop.name,
|
|
options: hasSubComp ? subOptions?.props : options?.props,
|
|
description: prop.description
|
|
});
|
|
} else {
|
|
data.push({
|
|
value: i + 1,
|
|
label: prop.name,
|
|
description: prop.description
|
|
});
|
|
}
|
|
}
|
|
|
|
return data;
|
|
};
|