-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from agiletech-web-dev/release
- Loading branch information
Showing
7 changed files
with
173 additions
and
91 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
import type { Plugin } from 'vite' | ||
|
||
export function replacer(code: string, value: string, key: string, insert: 'head' | 'tail' | 'none' = 'none') { | ||
const START = `<!--${key}_STARTS-->` | ||
const END = `<!--${key}_ENDS-->` | ||
const regex = new RegExp(`${START}[\\s\\S]*?${END}`, 'im') | ||
|
||
const target = value ? `${START}\n\n${value.trim()}\n\n${END}` : `${START}${END}` | ||
|
||
if (!code.match(regex)) { | ||
if (insert === 'none') | ||
return code | ||
else if (insert === 'head') | ||
return `${target}\n\n${code}` | ||
else | ||
return `${code}\n\n${target}` | ||
} | ||
|
||
return code.replace(regex, target) | ||
} | ||
|
||
export function MarkdownTransform(): Plugin { | ||
return { | ||
name: 'js-utils-md-transform', | ||
enforce: 'pre', | ||
async transform(code, id) { | ||
if (!id.match(/\.md\b/)) | ||
return null | ||
|
||
const [pkg, _name, i] = id.split('/').slice(-3); | ||
|
||
if (pkg !== 'reference') | ||
return code; | ||
|
||
const source = await getFunctionMarkdown(_name, i) | ||
|
||
code = replacer(code, source, 'FOOTER', 'tail') | ||
|
||
code = code | ||
.replace(/(# \w+)\n/, `$1\n\n<FunctionInfo pkgName="${i.replace('.md', '')}"/>\n`); | ||
|
||
return code | ||
}, | ||
} | ||
} | ||
|
||
const GITHUB_BLOB_URL = 'https://github.com/agiletech-web-dev/js-utils-es/blob/main/src'; | ||
const GITHUB_BLOB_DOCS_URL = 'https://github.com/agiletech-web-dev/js-utils-es/blob/main/docs/reference'; | ||
// https://github.com/agiletech-web-dev/js-utils-es/blob/main/src/array/chunk.ts | ||
// https://github.com/agiletech-web-dev/js-utils-es/blob/main/docs/reference/array/chunk.md | ||
|
||
export async function getFunctionMarkdown(pkg: string, name: string) { | ||
const fileNameTs = name.replace('.md', '.ts'); | ||
const fileNameTestCase = name.replace('.md', '.spec.ts'); | ||
const URL = `${GITHUB_BLOB_URL}/${pkg}/${fileNameTs}`; | ||
const URL_DOCS = `${GITHUB_BLOB_DOCS_URL}/${pkg}/${name}`; | ||
const URL_TEST_CASE = `${GITHUB_BLOB_URL}/${pkg}/${fileNameTestCase}`; | ||
|
||
const links = ([ | ||
['Source', URL], | ||
['Docs', URL_DOCS], | ||
['Test Case', URL_TEST_CASE], | ||
]) | ||
.filter(i => i) | ||
.map(i => `[${i![0]}](${i![1]})`).join(' • ') | ||
|
||
const sourceSection = `## Source\n\n${links}\n` | ||
|
||
const footer = `\n${sourceSection}` | ||
|
||
return footer; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.