playwright/utils/doclint/generateApiJson.js

117 lines
3.2 KiB
JavaScript
Raw Normal View History

2020-07-30 17:51:41 -07:00
/**
* Copyright (c) Microsoft Corporation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2020-12-28 17:38:00 -08:00
// @ts-check
2020-07-30 17:51:41 -07:00
const path = require('path');
const { parseApi } = require('./api_parser');
2020-07-30 17:51:41 -07:00
const PROJECT_DIR = path.join(__dirname, '..', '..');
{
const documentation = parseApi(path.join(PROJECT_DIR, 'docs', 'src', 'api'));
documentation.setLinkRenderer(item => {
const { clazz, param, option } = item;
2020-12-29 12:12:46 -08:00
if (param)
return `\`${param.alias}\``;
2020-12-29 12:12:46 -08:00
if (option)
return `\`${option.alias}\``;
2020-12-29 12:12:46 -08:00
if (clazz)
return `\`${clazz.name}\``;
});
documentation.generateSourceCodeComments();
const result = serialize(documentation);
console.log(JSON.stringify(result));
}
2020-07-30 17:51:41 -07:00
2020-12-29 12:12:46 -08:00
/**
* @param {import('./documentation').Documentation} documentation
2020-12-29 12:12:46 -08:00
*/
2020-07-30 17:51:41 -07:00
function serialize(documentation) {
return documentation.classesArray.map(serializeClass);
2020-07-30 17:51:41 -07:00
}
2020-12-29 12:12:46 -08:00
/**
* @param {import('./documentation').Class} clazz
2020-12-29 12:12:46 -08:00
*/
2020-07-30 17:51:41 -07:00
function serializeClass(clazz) {
const result = { name: clazz.name, spec: clazz.spec };
if (clazz.extends)
result.extends = clazz.extends;
2021-01-08 15:00:14 -08:00
result.langs = clazz.langs;
if (result.langs && result.langs.types) {
for (const key in result.langs.types)
result.langs.types[key] = serializeType(result.langs.types[key]);
}
if (clazz.comment)
result.comment = clazz.comment;
if (clazz.since)
result.since = clazz.since;
result.members = clazz.membersArray.map(serializeMember);
2020-07-30 17:51:41 -07:00
return result;
}
2020-12-29 12:12:46 -08:00
/**
* @param {import('./documentation').Member} member
2020-12-29 12:12:46 -08:00
*/
2020-07-30 17:51:41 -07:00
function serializeMember(member) {
2020-12-29 12:12:46 -08:00
const result = /** @type {any} */ ({ ...member });
sanitize(result);
result.args = member.argsArray.map(serializeProperty);
2020-07-30 17:51:41 -07:00
if (member.type)
result.type = serializeType(member.type);
2020-07-30 17:51:41 -07:00
return result;
}
/**
* @param {import('./documentation').Member} arg
*/
2020-07-30 17:51:41 -07:00
function serializeProperty(arg) {
const result = { ...arg, parent: undefined };
sanitize(result);
2020-07-30 17:51:41 -07:00
if (arg.type)
result.type = serializeType(arg.type);
2020-07-30 17:51:41 -07:00
return result;
}
/**
* @param {object} result
*/
function sanitize(result) {
delete result.args;
delete result.argsArray;
2020-12-29 12:12:46 -08:00
delete result.clazz;
delete result.enclosingMethod;
}
/**
* @param {import('./documentation').Type} type
*/
function serializeType(type) {
/** @type {any} */
2020-07-30 17:51:41 -07:00
const result = { ...type };
if (type.properties)
result.properties = type.properties.map(serializeProperty);
if (type.union)
result.union = type.union.map(type => serializeType(type));
if (type.templates)
result.templates = type.templates.map(type => serializeType(type));
if (type.args)
result.args = type.args.map(type => serializeType(type));
if (type.returnType)
result.returnType = serializeType(type.returnType);
2020-07-30 17:51:41 -07:00
return result;
}