Skip to content

Commit 0189195

Browse files
committed
feat: add language locale plugins
1 parent d60e76c commit 0189195

File tree

3 files changed

+77
-11
lines changed

3 files changed

+77
-11
lines changed

data/plugins.yaml

+64-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,76 @@
1+
- id: "artalk-plugin-auth"
2+
name: "Auth Plugin"
3+
description: "Provide user authentication and 3rd party login support."
4+
github_repo: "ArtalkJS/Artalk"
5+
npm_package: "@artalk/plugin-auth"
6+
author_name: "Artalk"
7+
author_link: "https://github.com/ArtalkJS/Artalk"
8+
donate_link: "https://buymeacoffee.com/artalk"
9+
110
- id: "artalk-plugin-katex"
211
name: "KaTeX Integration"
3-
description: "Render math formulas with KaTeX"
12+
description: "Integrate existing KaTeX library into Artalk."
413
github_repo: "ArtalkJS/Artalk"
514
npm_package: "@artalk/plugin-katex"
615
author_name: "Artalk"
716
author_link: "https://github.com/ArtalkJS/Artalk"
817
donate_link: "https://buymeacoffee.com/artalk"
918

10-
- id: "artalk-plugin-auth"
11-
name: "Auth Plugin"
12-
description: "3rd party social login support"
19+
- id: "artalk-plugin-lightbox"
20+
name: "Lightbox Plugin"
21+
description: "Integrate existing lightbox libraries into Artalk."
1322
github_repo: "ArtalkJS/Artalk"
14-
npm_package: "@artalk/plugin-auth"
23+
npm_package: "@artalk/plugin-lightbox"
24+
author_name: "Artalk"
25+
author_link: "https://github.com/ArtalkJS/Artalk"
26+
donate_link: "https://buymeacoffee.com/artalk"
27+
28+
- id: "artalk-locale-zh-tw"
29+
name: "Locale Plugin (zh-TW)"
30+
description: "Traditional Chinese locale for Artalk."
31+
github_repo: "ArtalkJS/Artalk"
32+
npm_package: "artalk"
33+
source_main: "dist/i18n/zh-TW.js"
34+
author_name: "Artalk"
35+
author_link: "https://github.com/ArtalkJS/Artalk"
36+
donate_link: "https://buymeacoffee.com/artalk"
37+
38+
- id: "artalk-locale-fr"
39+
name: "Locale Plugin (fr)"
40+
description: "French locale for Artalk."
41+
github_repo: "ArtalkJS/Artalk"
42+
npm_package: "artalk"
43+
source_main: "dist/i18n/fr.js"
44+
author_name: "Artalk"
45+
author_link: "https://github.com/ArtalkJS/Artalk"
46+
donate_link: "https://buymeacoffee.com/artalk"
47+
48+
- id: "artalk-locale-ja"
49+
name: "Locale Plugin (ja)"
50+
description: "Japanese locale for Artalk."
51+
github_repo: "ArtalkJS/Artalk"
52+
npm_package: "artalk"
53+
source_main: "dist/i18n/ja.js"
54+
author_name: "Artalk"
55+
author_link: "https://github.com/ArtalkJS/Artalk"
56+
donate_link: "https://buymeacoffee.com/artalk"
57+
58+
- id: "artalk-locale-ko"
59+
name: "Locale Plugin (ko)"
60+
description: "Korean locale for Artalk."
61+
github_repo: "ArtalkJS/Artalk"
62+
npm_package: "artalk"
63+
source_main: "dist/i18n/ko.js"
64+
author_name: "Artalk"
65+
author_link: "https://github.com/ArtalkJS/Artalk"
66+
donate_link: "https://buymeacoffee.com/artalk"
67+
68+
- id: "artalk-locale-ru"
69+
name: "Locale Plugin (ru)"
70+
description: "Russian locale for Artalk."
71+
github_repo: "ArtalkJS/Artalk"
72+
npm_package: "artalk"
73+
source_main: "dist/i18n/ru.js"
1574
author_name: "Artalk"
1675
author_link: "https://github.com/ArtalkJS/Artalk"
1776
donate_link: "https://buymeacoffee.com/artalk"

scripts/_types.ts

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ export interface LocalEntry {
44
description: string
55
github_repo: string
66
npm_package: string
7+
source_main?: string
78
author_name: string
89
author_link: string
910
donate_link?: string

scripts/build.ts

+12-6
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ const generateSRIFromURL = async (url: string, algorithm: string = 'sha512'): Pr
8080

8181
const extractMinArtalkClientVersion = (pkgData: any): string => {
8282
if (!pkgData) return ''
83+
if (pkgData['name'] === 'artalk' && pkgData['version']) return pkgData['version']
8384
const minVersion = pkgData['peerDependencies']['artalk']
8485
if (!minVersion) return ''
8586
return minVersion.replace(/[^0-9.]/g, '')
@@ -116,7 +117,7 @@ const buildRegistryEntry = async (
116117
repo_name: srcEntry.github_repo,
117118
repo_link: `https://github.com/${srcEntry.github_repo}`,
118119
npm_name: srcEntry.npm_package,
119-
verified: srcEntry.npm_package.startsWith('@artalk/'),
120+
verified: srcEntry.npm_package.startsWith('@artalk/') || srcEntry.npm_package === 'artalk',
120121

121122
version: cacheEntry?.version || '',
122123
source: cacheEntry?.source || '',
@@ -134,13 +135,18 @@ const buildRegistryEntry = async (
134135

135136
// Update the entry with the latest version
136137
const npmPkgData = npmInfo['versions'][version]
137-
const mainFile = String(npmPkgData['main']).replace(/^(\.\/|\/)/, '')
138+
139+
let mainFile = srcEntry.source_main
138140
if (!mainFile) {
139-
console.error(
140-
`${pc.red('[FAIL]')} ${pc.bold(srcEntry.npm_package)} - No main file found in package.json`,
141-
)
142-
return null
141+
mainFile = String(npmPkgData['main'])
142+
if (!mainFile) {
143+
console.error(
144+
`${pc.red('[FAIL]')} ${pc.bold(srcEntry.npm_package)} - No main file found in package.json`,
145+
)
146+
return null
147+
}
143148
}
149+
mainFile = mainFile.replace(/^(\.\/|\/)/, '')
144150

145151
const cdnBase = `https://cdn.jsdelivr.net/npm/${srcEntry.npm_package}@${version}`
146152
const source = `${cdnBase}/${mainFile}`

0 commit comments

Comments
 (0)