/
githubmirror
/
hexo
Обзор
Документация
Войти
/
githubmirror
/
hexo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
lib/plugins/console/list/page.ts
30 строк
874 B
D-Sketon
perf: faster text-table (#5665)
12 июн 2025, 14:32
Не верифицирован
12 июн 2025, 14:32
ac0338c
Код
Авторство
О чём код?
import { magenta, underline, gray } from 'picocolors'; import table from 'fast-text-table'; import { stringLength } from './common'; import type Hexo from '../../../hexo'; import type { PageSchema } from '../../../types'; import type Model from 'warehouse/dist/model'; import type Document from 'warehouse/dist/document'; function listPage(this: Hexo): void { const Page: Model<PageSchema> = this.model('Page'); const data = Page.sort({date: 1}).map((page: Document<PageSchema> & PageSchema) => { const date = page.date.format('YYYY-MM-DD'); return [gray(date), page.title, magenta(page.source)]; }); // Table header const header = ['Date', 'Title', 'Path'].map(str => underline(str)); data.unshift(header); const t = table(data, { stringLength }); console.log(t); if (data.length === 1) console.log('No pages.'); } export = listPage;