mirror of
https://github.com/pompurin404/mihomo-party.git
synced 2024-11-16 03:32:17 +08:00
filter theme file
This commit is contained in:
parent
e92b3d250a
commit
ca42519e85
|
@ -12,14 +12,16 @@ let insertedCSSKey: string | undefined = undefined
|
||||||
export async function resolveThemes(): Promise<{ key: string; label: string }[]> {
|
export async function resolveThemes(): Promise<{ key: string; label: string }[]> {
|
||||||
const files = await readdir(themesDir())
|
const files = await readdir(themesDir())
|
||||||
const themes = await Promise.all(
|
const themes = await Promise.all(
|
||||||
files.map(async (file) => {
|
files
|
||||||
const css = (await readFile(path.join(themesDir(), file), 'utf-8')) || ''
|
.filter((file) => file.endsWith('.css'))
|
||||||
let name = file
|
.map(async (file) => {
|
||||||
if (css.startsWith('/*')) {
|
const css = (await readFile(path.join(themesDir(), file), 'utf-8')) || ''
|
||||||
name = css.split('\n')[0].replace('/*', '').replace('*/', '').trim() || file
|
let name = file
|
||||||
}
|
if (css.startsWith('/*')) {
|
||||||
return { key: file, label: name }
|
name = css.split('\n')[0].replace('/*', '').replace('*/', '').trim() || file
|
||||||
})
|
}
|
||||||
|
return { key: file, label: name }
|
||||||
|
})
|
||||||
)
|
)
|
||||||
if (themes.find((theme) => theme.key === 'default.css')) {
|
if (themes.find((theme) => theme.key === 'default.css')) {
|
||||||
return themes
|
return themes
|
||||||
|
|
Loading…
Reference in New Issue
Block a user