quartz-research-note/quartz/processors/filter.ts

24 lines
807 B
TypeScript
Raw Normal View History

import { PerfTimer } from "../perf"
import { QuartzFilterPluginInstance } from "../plugins/types"
import { ProcessedContent } from "../plugins/vfile"
export function filterContent(plugins: QuartzFilterPluginInstance[], content: ProcessedContent[], verbose: boolean): ProcessedContent[] {
const perf = new PerfTimer()
const initialLength = content.length
for (const plugin of plugins) {
2023-06-03 19:07:19 +00:00
const updatedContent = content.filter(plugin.shouldPublish)
if (verbose) {
const diff = content.filter(x => !updatedContent.includes(x))
for (const file of diff) {
console.log(`[filter:${plugin.name}] ${file[1].data.slug}`)
}
}
2023-06-03 19:07:19 +00:00
content = updatedContent
}
2023-06-03 19:07:19 +00:00
console.log(`Filtered out ${initialLength - content.length} files in ${perf.timeSince()}`)
return content
}