deno.land / x / lume@v2.1.4 / plugins / date.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import { format, formatDistanceToNow, formatDistanceToNowStrict,} from "../deps/date.ts";import { merge } from "../core/utils/object.ts";
import type Site from "../core/site.ts";import type { Locale } from "../deps/date.ts";
export interface Options { /** The name of the helper */ name?: string;
/** The loaded locales */ locales?: Record<string, Locale>;
/** Custom date formats */ formats?: Record<string, string>;}
// Default optionsexport const defaults: Options = { name: "date", locales: {}, formats: { ATOM: "yyyy-MM-dd'T'HH:mm:ssXXX", DATE: "yyyy-MM-dd", DATETIME: "yyyy-MM-dd HH:mm:ss", TIME: "HH:mm:ss", HUMAN_DATE: "PPP", HUMAN_DATETIME: "PPPppp", },};
/** A plugin to format Date values */export default function (userOptions?: Options) { const options = merge(defaults, userOptions);
return (site: Site) => { const defaultLocale = Object.keys(options.locales).shift();
site.filter(options.name, filter);
function filter( date: string | Date, pattern = "DATE", lang = defaultLocale, ): string | undefined { if (!date) { return; }
if (date === "now") { date = new Date(); } else if (!(date instanceof Date)) { date = new Date(date); }
const patt = options.formats[pattern] || pattern; const locale = lang ? options.locales[lang] : undefined;
if (pattern === "HUMAN_SINCE") { return formatDistanceToNow(date, { locale }); } else if (pattern === "HUMAN_SINCE_STRICT") { return formatDistanceToNowStrict(date, { locale }); } else { return format(date, patt, { locale }); } } };}
/** Extends Helpers interface */declare global { namespace Lume { export interface Helpers { /** @see https://lume.land/plugins/date/ */ date: ( date: string | Date, pattern?: string, lang?: string, ) => string | undefined; } }}
lume

Version Info

Tagged at
5 months ago