mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-24 05:07:06 +08:00
109 lines
2.8 KiB
TypeScript
109 lines
2.8 KiB
TypeScript
import type {
|
|
Template,
|
|
TemplateCategory,
|
|
TemplateManager,
|
|
} from './template-type.js';
|
|
|
|
export const templates: TemplateCategory[] = [];
|
|
|
|
function lcs(text1: string, text2: string) {
|
|
const dp: number[][] = Array.from(
|
|
{
|
|
length: text1.length + 1,
|
|
},
|
|
() => Array.from({ length: text2.length + 1 }, () => 0)
|
|
);
|
|
|
|
for (let i = 1; i <= text1.length; i++) {
|
|
for (let j = 1; j <= text2.length; j++) {
|
|
if (text1[i - 1] === text2[j - 1]) {
|
|
dp[i][j] = dp[i - 1][j - 1] + 1;
|
|
} else {
|
|
dp[i][j] = Math.max(dp[i - 1][j], dp[i][j - 1]);
|
|
}
|
|
}
|
|
}
|
|
|
|
return dp[text1.length][text2.length];
|
|
}
|
|
const extendTemplate: TemplateManager[] = [];
|
|
|
|
const flat = <T>(arr: T[][]) =>
|
|
arr.reduce((pre, current) => {
|
|
if (current) {
|
|
return pre.concat(current);
|
|
}
|
|
|
|
return pre;
|
|
}, []);
|
|
|
|
export const builtInTemplates = {
|
|
list: async (category: string): Promise<Template[]> => {
|
|
const extendTemplates = flat(
|
|
await Promise.all(extendTemplate.map(manager => manager.list(category)))
|
|
);
|
|
|
|
// eslint-disable-next-line sonarjs/no-empty-collection
|
|
const cate = templates.find(cate => cate.name === category);
|
|
if (!cate) return extendTemplates;
|
|
|
|
const result: Template[] =
|
|
cate.templates instanceof Function
|
|
? await cate.templates()
|
|
: await Promise.all(Object.values(cate.templates));
|
|
|
|
return result.concat(extendTemplates);
|
|
},
|
|
|
|
categories: async (): Promise<string[]> => {
|
|
const extendCates = flat(
|
|
await Promise.all(extendTemplate.map(manager => manager.categories()))
|
|
);
|
|
|
|
// eslint-disable-next-line sonarjs/no-empty-collection
|
|
return templates.map(cate => cate.name).concat(extendCates);
|
|
},
|
|
|
|
search: async (keyword: string, cateName?: string): Promise<Template[]> => {
|
|
const candidates: Template[] = flat(
|
|
await Promise.all(
|
|
extendTemplate.map(manager => manager.search(keyword, cateName))
|
|
)
|
|
);
|
|
|
|
keyword = keyword.trim().toLocaleLowerCase();
|
|
|
|
await Promise.all(
|
|
// eslint-disable-next-line sonarjs/no-empty-collection
|
|
templates.map(async categroy => {
|
|
if (cateName && cateName !== categroy.name) {
|
|
return;
|
|
}
|
|
|
|
if (categroy.templates instanceof Function) {
|
|
return categroy.templates();
|
|
}
|
|
|
|
return Promise.all(
|
|
Object.entries(categroy.templates).map(async ([name, template]) => {
|
|
if (
|
|
lcs(keyword, (name as string).toLocaleLowerCase()) ===
|
|
keyword.length
|
|
) {
|
|
candidates.push(template);
|
|
}
|
|
})
|
|
);
|
|
})
|
|
);
|
|
|
|
return candidates;
|
|
},
|
|
|
|
extend(manager: TemplateManager) {
|
|
if (extendTemplate.includes(manager)) return;
|
|
|
|
extendTemplate.push(manager);
|
|
},
|
|
} satisfies TemplateManager;
|