mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 19:46:23 +00:00
feat: implement getDependencyGraph for AliasRedirects emitter (#860)
This commit is contained in:
parent
78a408c96a
commit
823d952922
1 changed files with 24 additions and 3 deletions
|
@ -9,9 +9,30 @@ export const AliasRedirects: QuartzEmitterPlugin = () => ({
|
||||||
getQuartzComponents() {
|
getQuartzComponents() {
|
||||||
return []
|
return []
|
||||||
},
|
},
|
||||||
async getDependencyGraph(_ctx, _content, _resources) {
|
async getDependencyGraph(ctx, content, _resources) {
|
||||||
// TODO implement
|
const graph = new DepGraph<FilePath>()
|
||||||
return new DepGraph<FilePath>()
|
|
||||||
|
const { argv } = ctx
|
||||||
|
for (const [_tree, file] of content) {
|
||||||
|
const dir = path.posix.relative(argv.directory, path.dirname(file.data.filePath!))
|
||||||
|
const aliases = file.data.frontmatter?.aliases ?? []
|
||||||
|
const slugs = aliases.map((alias) => path.posix.join(dir, alias) as FullSlug)
|
||||||
|
const permalink = file.data.frontmatter?.permalink
|
||||||
|
if (typeof permalink === "string") {
|
||||||
|
slugs.push(permalink as FullSlug)
|
||||||
|
}
|
||||||
|
|
||||||
|
for (let slug of slugs) {
|
||||||
|
// fix any slugs that have trailing slash
|
||||||
|
if (slug.endsWith("/")) {
|
||||||
|
slug = joinSegments(slug, "index") as FullSlug
|
||||||
|
}
|
||||||
|
|
||||||
|
graph.addEdge(file.data.filePath!, joinSegments(argv.output, slug + ".html") as FilePath)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return graph
|
||||||
},
|
},
|
||||||
async emit(ctx, content, _resources): Promise<FilePath[]> {
|
async emit(ctx, content, _resources): Promise<FilePath[]> {
|
||||||
const { argv } = ctx
|
const { argv } = ctx
|
||||||
|
|
Loading…
Reference in a new issue