Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(@lexical/website): Packages documentation automatic generation #5965

Merged
merged 1 commit into from
Apr 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/lexical-list/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
`@lexical/list`
# `@lexical/list`

[![See API Documentation](https://lexical.dev/img/see-api-documentation.svg)](https://lexical.dev/docs/api/modules/lexical_list)

Expand Down
1 change: 1 addition & 0 deletions packages/lexical-website/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
.docusaurus
.cache-loader
/docs/api
/docs/packages

# Misc
.DS_Store
Expand Down
4 changes: 0 additions & 4 deletions packages/lexical-website/docs/packages/_category_.json

This file was deleted.

6 changes: 0 additions & 6 deletions packages/lexical-website/docs/packages/lexical-clipboard.md

This file was deleted.

6 changes: 0 additions & 6 deletions packages/lexical-website/docs/packages/lexical-code.md

This file was deleted.

This file was deleted.

6 changes: 0 additions & 6 deletions packages/lexical-website/docs/packages/lexical-dragon.md

This file was deleted.

6 changes: 0 additions & 6 deletions packages/lexical-website/docs/packages/lexical-file.md

This file was deleted.

6 changes: 0 additions & 6 deletions packages/lexical-website/docs/packages/lexical-hashtag.md

This file was deleted.

6 changes: 0 additions & 6 deletions packages/lexical-website/docs/packages/lexical-headless.md

This file was deleted.

6 changes: 0 additions & 6 deletions packages/lexical-website/docs/packages/lexical-history.md

This file was deleted.

6 changes: 0 additions & 6 deletions packages/lexical-website/docs/packages/lexical-html.md

This file was deleted.

6 changes: 0 additions & 6 deletions packages/lexical-website/docs/packages/lexical-link.md

This file was deleted.

6 changes: 0 additions & 6 deletions packages/lexical-website/docs/packages/lexical-list.md

This file was deleted.

6 changes: 0 additions & 6 deletions packages/lexical-website/docs/packages/lexical-mark.md

This file was deleted.

6 changes: 0 additions & 6 deletions packages/lexical-website/docs/packages/lexical-markdown.md

This file was deleted.

6 changes: 0 additions & 6 deletions packages/lexical-website/docs/packages/lexical-offset.md

This file was deleted.

6 changes: 0 additions & 6 deletions packages/lexical-website/docs/packages/lexical-overflow.md

This file was deleted.

This file was deleted.

6 changes: 0 additions & 6 deletions packages/lexical-website/docs/packages/lexical-react.md

This file was deleted.

6 changes: 0 additions & 6 deletions packages/lexical-website/docs/packages/lexical-rich-text.md

This file was deleted.

6 changes: 0 additions & 6 deletions packages/lexical-website/docs/packages/lexical-selection.md

This file was deleted.

6 changes: 0 additions & 6 deletions packages/lexical-website/docs/packages/lexical-table.md

This file was deleted.

6 changes: 0 additions & 6 deletions packages/lexical-website/docs/packages/lexical-text.md

This file was deleted.

6 changes: 0 additions & 6 deletions packages/lexical-website/docs/packages/lexical-utils.md

This file was deleted.

6 changes: 0 additions & 6 deletions packages/lexical-website/docs/packages/lexical-yjs.md

This file was deleted.

7 changes: 0 additions & 7 deletions packages/lexical-website/docs/packages/lexical.md

This file was deleted.

15 changes: 15 additions & 0 deletions packages/lexical-website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,21 @@ const config = {
onBrokenMarkdownLinks: 'throw',
organizationName: 'facebook',
plugins: [
[
'./plugins/package-docs',
/** @type {import('./plugins/package-docs').PackageDocsPluginOptions} */
{
baseDir: path.resolve(__dirname, '..'),
editUrl: `${GITHUB_REPO_URL}/tree/main/packages/`,
packageFrontMatter: {
lexical: [
'sidebar_position: 1',
'sidebar_label: lexical (core)',
].join('\n'),
},
targetDir: path.resolve(__dirname, 'docs/packages'),
},
],
'./plugins/webpack-buffer',
['docusaurus-plugin-typedoc', docusaurusPluginTypedocConfig],
async function tailwindcss() {
Expand Down
79 changes: 79 additions & 0 deletions packages/lexical-website/plugins/package-docs/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/

'use strict';

const fs = require('fs');
const path = require('path');
const glob = require('glob');
// Not using packagesManager since it will cache package.json files
const {PackageMetadata} = require('../../../../scripts/shared/PackageMetadata');

/**
* @typedef {Object} PackageDocsPluginOptions
* @property {string} baseDir
* @property {editUrl} editUrl
* @property {string} targetDir
* @property {Record<string, string>} packageFrontMatter
*/

/**
* Watch all public monorepo packages/{project}/README.md files and
* copy them to docs/packages/{project}.md
*
* @param {import('@docusaurus/types').LoadContext} context
* @param {PackageDocsPluginOptions} options
* @returns {import('@docusaurus/types').Plugin}
*/
module.exports = async function (context, options) {
return {
getPathsToWatch: () => [`${options.baseDir}/*/{README.md,package.json}`],
loadContent: () => {
fs.mkdirSync(options.targetDir, {recursive: true});
const oldTargets = new Set(
glob.sync(path.resolve(options.targetDir, '*.md')),
);
for (const srcPath of glob.sync(`${options.baseDir}/*/README.md`)) {
const jsonPath = path.resolve(path.dirname(srcPath), 'package.json');
if (!fs.existsSync(jsonPath)) {
continue;
}
const metadata = new PackageMetadata(jsonPath);
if (metadata.isPrivate()) {
continue;
}
const folderName = metadata.getDirectoryName();
const targetPath = path.resolve(options.targetDir, `${folderName}.md`);
/** @type {string|undefined} */
const frontMatter = [
`# Do not edit! Generated from ${path.relative(
path.dirname(targetPath),
srcPath,
)}`,
options.packageFrontMatter[folderName],
`custom_edit_url: ${options.editUrl.replace(
/\/$/,
'',
)}/${folderName}/README.md`,
]
.filter(Boolean)
.map((s) => s.trim())
.join('\n');
fs.writeFileSync(
targetPath,
`---\n${frontMatter}\n---\n\n${fs.readFileSync(srcPath, 'utf-8')}`,
);
oldTargets.delete(targetPath);
}
for (const oldPath of oldTargets) {
fs.unlinkSync(oldPath);
}
},
name: 'package-docs',
};
};
25 changes: 10 additions & 15 deletions scripts/__tests__/unit/build.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,25 +93,20 @@ describe('public package.json audits (`npm run update-packages` to fix most issu
});

describe('documentation audits (`npm run update-packages` to fix most issues)', () => {
const webPkg = packagesManager.getPackageByDirectoryName('lexical-website');
packagesManager.getPublicPackages().forEach((pkg) => {
const npmName = pkg.getNpmName();
describe(npmName, () => {
const root = pkg.resolve('..', '..');
[
pkg.resolve('README.md'),
webPkg.resolve('docs', 'packages', `${pkg.getDirectoryName()}.md`),
].forEach((docPath) => {
describe(path.relative(root, docPath), () => {
it('exists', () => expect(fs.existsSync(docPath)).toBe(true));
if (path.basename(docPath) === 'README.md') {
it('does not have the TODO description', () => {
expect(fs.readFileSync(docPath, 'utf8')).not.toContain(
'TODO: This package needs a description!',
);
});
}
});
const docPath = pkg.resolve('README.md');
describe(path.relative(root, docPath), () => {
it('exists', () => expect(fs.existsSync(docPath)).toBe(true));
if (path.basename(docPath) === 'README.md') {
it('does not have the TODO description', () => {
expect(fs.readFileSync(docPath, 'utf8')).not.toContain(
'TODO: This package needs a description!',
);
});
}
});
});
});
Expand Down
34 changes: 2 additions & 32 deletions scripts/create-docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,6 @@ const fs = require('fs-extra');
const path = require('node:path');
const {packagesManager} = require('./shared/packagesManager');

const webPkg = packagesManager.getPackageByDirectoryName('lexical-website');

function sidebarTemplate(npmName, readmePath) {
return (
`
---
title: ''
sidebar_label: '${npmName}'
---

{@import ${readmePath}}
`.trim() + '\n'
);
}

function readmeTemplate(npmName, directoryName, description) {
const apiModuleName = directoryName.replace(/-/g, '_');
return (
Expand All @@ -40,17 +25,12 @@ ${description}
);
}

function updateDocs() {
function createDocs() {
packagesManager.getPublicPackages().forEach((pkg) => {
const npmName = pkg.getNpmName();
const directoryName = pkg.getDirectoryName();
const root = pkg.resolve('..', '..');
const readmePath = pkg.resolve('README.md');
const sidebarPath = webPkg.resolve(
'docs',
'packages',
`${directoryName}.md`,
);
if (!fs.existsSync(readmePath)) {
console.log(`Creating ${path.relative(root, readmePath)}`);
fs.writeFileSync(
Expand All @@ -63,17 +43,7 @@ function updateDocs() {
),
);
}
if (!fs.existsSync(sidebarPath)) {
console.log(`Creating ${path.relative(root, sidebarPath)}`);
fs.writeFileSync(
sidebarPath,
sidebarTemplate(
npmName,
path.relative(path.dirname(sidebarPath), readmePath),
),
);
}
});
}

updateDocs();
createDocs();
Loading