-
-
Notifications
You must be signed in to change notification settings - Fork 8.5k
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(v2): Extract npm2yarn plugin #3469
Changes from 4 commits
45df6a3
a8077a8
46c6c63
fe7507f
0a98a6e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"name": "@docusaurus/remark-plugin-npm2yarn", | ||
"version": "2.0.0-alpha.65", | ||
"description": "Remark plugin for convert npm commands to yarn as tabs", | ||
"main": "src/index.js", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"license": "MIT", | ||
"dependencies": { | ||
"npm-to-yarn": "^1.0.0-2", | ||
"@docusaurus/mdx-loader": "2.0.0-alpha.65" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. probably not needed |
||
}, | ||
"devDependencies": { | ||
"remark": "^12.0.0", | ||
"remark-mdx": "^1.5.8", | ||
"to-vfile": "^6.0.0" | ||
}, | ||
"peerDependencies": { | ||
"react": "^16.8.4", | ||
"react-dom": "^16.8.4" | ||
}, | ||
"engines": { | ||
"node": ">=10.15.1" | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
const path = require('path'); | ||
|
||
module.exports = function (_context, _options) { | ||
return { | ||
name: 'docusaurus-remark-plugin-npm2yarn', | ||
getClientModules() { | ||
return [path.resolve(__dirname, './npm2yarn/index.js')]; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think this will work in practice. We currently don't have any lifecycle method to add a remark plugin to the mdx loader in a generic way. For now, this package should be a simple remark plugin, not a docusaurus plugin (until we figure this out). We'll use it in the conf by providing it in the remark plugin array. |
||
}, | ||
}; | ||
}; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`npm2yarn plugin test: installation file 1`] = ` | ||
"import Tabs from '@theme/Tabs'; | ||
import TabItem from '@theme/TabItem'; | ||
|
||
<Tabs defaultValue=\\"npm\\" values={[ | ||
{ label: 'npm', value: 'npm', }, | ||
{ label: 'Yarn', value: 'yarn', }, | ||
]} | ||
> | ||
<TabItem value=\\"npm\\"> | ||
|
||
\`\`\`bash | ||
$ npm install --global docusaurus | ||
\`\`\` | ||
|
||
</TabItem> | ||
<TabItem value=\\"yarn\\"> | ||
|
||
\`\`\`bash | ||
$ yarn add --global docusaurus | ||
\`\`\` | ||
|
||
</TabItem> | ||
</Tabs> | ||
" | ||
`; | ||
|
||
exports[`npm2yarn plugin test: language was not setted 1`] = ` | ||
"\`\`\`npm2yarn | ||
npm install --save docusaurus-plugin-name | ||
\`\`\` | ||
|
||
\`\`\`bash | ||
npm install --save docusaurus-plugin-name | ||
\`\`\` | ||
|
||
\`\`\`shell | ||
npm install --save docusaurus-plugin-name | ||
\`\`\` | ||
" | ||
`; | ||
|
||
exports[`npm2yarn plugin test: plugin file 1`] = ` | ||
"import Tabs from '@theme/Tabs'; | ||
import TabItem from '@theme/TabItem'; | ||
|
||
## Installing a plugin | ||
|
||
A plugin is usually a npm package, so you install them like other npm packages using npm. | ||
|
||
<Tabs defaultValue=\\"npm\\" values={[ | ||
{ label: 'npm', value: 'npm', }, | ||
{ label: 'Yarn', value: 'yarn', }, | ||
]} | ||
> | ||
<TabItem value=\\"npm\\"> | ||
|
||
\`\`\`bash | ||
npm install --save docusaurus-plugin-name | ||
\`\`\` | ||
|
||
</TabItem> | ||
<TabItem value=\\"yarn\\"> | ||
|
||
\`\`\`bash | ||
yarn add docusaurus-plugin-name | ||
\`\`\` | ||
|
||
</TabItem> | ||
</Tabs> | ||
" | ||
`; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
```bash npm2yarn | ||
$ npm install --global docusaurus | ||
``` |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
## Installing a plugin | ||
|
||
A plugin is usually a npm package, so you install them like other npm packages using npm. | ||
|
||
```bash npm2yarn | ||
npm install --save docusaurus-plugin-name | ||
``` |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
```npm2yarn | ||
npm install --save docusaurus-plugin-name | ||
``` | ||
|
||
```bash | ||
npm install --save docusaurus-plugin-name | ||
``` | ||
|
||
```shell | ||
npm install --save docusaurus-plugin-name | ||
``` |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
/* eslint-disable no-param-reassign */ | ||
|
||
import remark from 'remark'; | ||
import npm2yarn from '../index'; | ||
import vfile from 'to-vfile'; | ||
import {join, relative} from 'path'; | ||
import mdx from 'remark-mdx'; | ||
|
||
const staticDir = `./${relative(process.cwd(), join(__dirname, 'fixtures'))}`; | ||
|
||
const processFixture = async (name, options) => { | ||
const path = join(__dirname, 'fixtures', `${name}.md`); | ||
const file = await vfile.read(path); | ||
const result = await remark() | ||
.use(mdx) | ||
.use(npm2yarn, {...options, filePath: path}) | ||
.process(file); | ||
|
||
return result.toString(); | ||
}; | ||
|
||
describe('npm2yarn plugin', () => { | ||
test('test: installation file', async () => { | ||
const result = await processFixture('installation', { | ||
staticDir, | ||
}); | ||
|
||
expect(result).toMatchSnapshot(); | ||
}); | ||
|
||
test('test: plugin file', async () => { | ||
const result = await processFixture('plugin', { | ||
staticDir, | ||
}); | ||
|
||
expect(result).toMatchSnapshot(); | ||
}); | ||
|
||
test('test: language was not setted', async () => { | ||
const result = await processFixture('syntax-not-properly-set', { | ||
staticDir, | ||
}); | ||
|
||
expect(result).toMatchSnapshot(); | ||
}); | ||
}); |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
const npmToYarn = require('npm-to-yarn'); | ||
|
||
// E.g. global install: 'npm i' -> 'yarn' | ||
const convertNpmToYarn = (npmCode) => npmToYarn(npmCode, 'yarn'); | ||
|
||
const transformNode = (node) => { | ||
const npmCode = node.value; | ||
const yarnCode = convertNpmToYarn(node.value); | ||
return [ | ||
{ | ||
type: 'jsx', | ||
value: | ||
`<Tabs defaultValue="npm" ` + | ||
`values={[ | ||
{ label: 'npm', value: 'npm', }, | ||
{ label: 'Yarn', value: 'yarn', }, | ||
]} | ||
> | ||
<TabItem value="npm">`, | ||
}, | ||
{ | ||
type: node.type, | ||
lang: node.lang, | ||
value: npmCode, | ||
}, | ||
{ | ||
type: 'jsx', | ||
value: '</TabItem>\n<TabItem value="yarn">', | ||
}, | ||
{ | ||
type: node.type, | ||
lang: node.lang, | ||
value: yarnCode, | ||
}, | ||
{ | ||
type: 'jsx', | ||
value: '</TabItem>\n</Tabs>', | ||
}, | ||
]; | ||
}; | ||
|
||
const matchNode = (node) => node.type === 'code' && node.meta === 'npm2yarn'; | ||
const nodeForImport = { | ||
type: 'import', | ||
value: | ||
"import Tabs from '@theme/Tabs';\nimport TabItem from '@theme/TabItem';", | ||
}; | ||
|
||
module.exports = () => { | ||
let transformed = false; | ||
const transformer = (node) => { | ||
if (matchNode(node)) { | ||
transformed = true; | ||
return transformNode(node); | ||
} | ||
if (Array.isArray(node.children)) { | ||
let index = 0; | ||
while (index < node.children.length) { | ||
const result = transformer(node.children[index]); | ||
if (result) { | ||
node.children.splice(index, 1, ...result); | ||
index += result.length; | ||
} else { | ||
index += 1; | ||
} | ||
} | ||
} | ||
if (node.type === 'root' && transformed) { | ||
node.children.unshift(nodeForImport); | ||
} | ||
return null; | ||
}; | ||
return transformer; | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this really needed for docusaurus-mdx-loader ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks, not needed :)
do you want to submit a PR?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure