-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy paththeme.ts
582 lines (491 loc) · 11.4 KB
/
theme.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
import chalk, { Chalk } from 'chalk'
/**
* A generic interface that holds all available language tokens.
*/
export interface Tokens<T> {
/**
* keyword in a regular Algol-style language
*/
keyword?: T
/**
* built-in or library object (constant, class, function)
*/
built_in?: T
/**
* user-defined type in a language with first-class syntactically significant types, like Haskell
*/
type?: T
/**
* special identifier for a built-in value ("true", "false", "null")
*/
literal?: T
/**
* number, including units and modifiers, if any.
*/
number?: T
/**
* literal regular expression
*/
regexp?: T
/**
* literal string, character
*/
string?: T
/**
* parsed section inside a literal string
*/
subst?: T
/**
* symbolic constant, interned string, goto label
*/
symbol?: T
/**
* class or class-level declaration (interfaces, traits, modules, etc)
*/
class?: T
/**
* function or method declaration
*/
function?: T
/**
* name of a class or a function at the place of declaration
*/
title?: T
/**
* block of function arguments (parameters) at the place of declaration
*/
params?: T
/**
* comment
*/
comment?: T
/**
* documentation markup within comments
*/
doctag?: T
/**
* flags, modifiers, annotations, processing instructions, preprocessor directive, etc
*/
meta?: T
/**
* keyword or built-in within meta construct
*/
'meta-keyword'?: T
/**
* string within meta construct
*/
'meta-string'?: T
/**
* heading of a section in a config file, heading in text markup
*/
section?: T
/**
* XML/HTML tag
*/
tag?: T
/**
* name of an XML tag, the first word in an s-expression
*/
name?: T
/**
* s-expression name from the language standard library
*/
'builtin-name'?: T
/**
* name of an attribute with no language defined semantics (keys in JSON, setting names in .ini), also sub-attribute within another highlighted object, like XML tag
*/
attr?: T
/**
* name of an attribute followed by a structured value part, like CSS properties
*/
attribute?: T
/**
* variable in a config or a template file, environment var expansion in a script
*/
variable?: T
/**
* list item bullet in text markup
*/
bullet?: T
/**
* code block in text markup
*/
code?: T
/**
* emphasis in text markup
*/
emphasis?: T
/**
* strong emphasis in text markup
*/
strong?: T
/**
* mathematical formula in text markup
*/
formula?: T
/**
* hyperlink in text markup
*/
link?: T
/**
* quotation in text markup
*/
quote?: T
/**
* tag selector in CSS
*/
'selector-tag'?: T
/**
* #id selector in CSS
*/
'selector-id'?: T
/**
* .class selector in CSS
*/
'selector-class'?: T
/**
* [attr] selector in CSS
*/
'selector-attr'?: T
/**
* :pseudo selector in CSS
*/
'selector-pseudo'?: T
/**
* tag of a template language
*/
'template-tag'?: T
/**
* variable in a template language
*/
'template-variable'?: T
/**
* added or changed line in a diff
*/
addition?: T
/**
* deleted line in a diff
*/
deletion?: T
}
/**
* Possible styles that can be used on a token in a JSON theme.
* See the [chalk](https://github.com/chalk/chalk) module for more information.
* `plain` means no styling.
*/
export type Style =
| 'reset'
| 'bold'
| 'dim'
| 'italic'
| 'underline'
| 'inverse'
| 'hidden'
| 'strikethrough'
| 'black'
| 'red'
| 'green'
| 'yellow'
| 'blue'
| 'magenta'
| 'cyan'
| 'white'
| 'gray'
| 'bgBlack'
| 'bgRed'
| 'bgGreen'
| 'bgYellow'
| 'bgBlue'
| 'bgMagenta'
| 'bgCyan'
| 'plain'
/**
* The schema of a JSON file defining a custom scheme. The key is a language token, while the value
* is a [chalk](https://github.com/chalk/chalk#styles) style.
*
* Example:
* ```json
* {
* "keyword": ["red", "bold"],
* "addition": "green",
* "deletion": ["red", "strikethrough"],
* "number": "plain"
* }
* ```
*/
export interface JsonTheme extends Tokens<Style | Style[]> {}
/**
* Passed to [[highlight]] as the `theme` option. A theme is a map of language tokens to a function
* that takes in string value of the token and returns a new string with colorization applied
* (typically a [chalk](https://github.com/chalk/chalk) style), but you can also provide your own
* formatting functions.
*
* Example:
* ```ts
* import {Theme, plain} from 'cli-highlight';
* import chalk = require('chalk');
*
* const myTheme: Theme = {
* keyword: chalk.red.bold,
* addition: chalk.green,
* deletion: chalk.red.strikethrough,
* number: plain
* };
* ```
*/
export interface Theme extends Tokens<(codePart: string) => string> {
/**
* things not matched by any token
*/
default?: (codePart: string) => string
}
/**
* Identity function for tokens that should not be styled (returns the input string as-is).
* See [[Theme]] for an example.
*/
export const plain = (codePart: string): string => codePart
/**
* The default theme. It is possible to override just individual keys.
*/
export const DEFAULT_THEME: Theme = {
/**
* keyword in a regular Algol-style language
*/
keyword: chalk.blue,
/**
* built-in or library object (constant, class, function)
*/
built_in: chalk.cyan,
/**
* user-defined type in a language with first-class syntactically significant types, like
* Haskell
*/
type: chalk.cyan.dim,
/**
* special identifier for a built-in value ("true", "false", "null")
*/
literal: chalk.blue,
/**
* number, including units and modifiers, if any.
*/
number: chalk.green,
/**
* literal regular expression
*/
regexp: chalk.red,
/**
* literal string, character
*/
string: chalk.red,
/**
* parsed section inside a literal string
*/
subst: plain,
/**
* symbolic constant, interned string, goto label
*/
symbol: plain,
/**
* class or class-level declaration (interfaces, traits, modules, etc)
*/
class: chalk.blue,
/**
* function or method declaration
*/
function: chalk.yellow,
/**
* name of a class or a function at the place of declaration
*/
title: plain,
/**
* block of function arguments (parameters) at the place of declaration
*/
params: plain,
/**
* comment
*/
comment: chalk.green,
/**
* documentation markup within comments
*/
doctag: chalk.green,
/**
* flags, modifiers, annotations, processing instructions, preprocessor directive, etc
*/
meta: chalk.grey,
/**
* keyword or built-in within meta construct
*/
'meta-keyword': plain,
/**
* string within meta construct
*/
'meta-string': plain,
/**
* heading of a section in a config file, heading in text markup
*/
section: plain,
/**
* XML/HTML tag
*/
tag: chalk.grey,
/**
* name of an XML tag, the first word in an s-expression
*/
name: chalk.blue,
/**
* s-expression name from the language standard library
*/
'builtin-name': plain,
/**
* name of an attribute with no language defined semantics (keys in JSON, setting names in
* .ini), also sub-attribute within another highlighted object, like XML tag
*/
attr: chalk.cyan,
/**
* name of an attribute followed by a structured value part, like CSS properties
*/
attribute: plain,
/**
* variable in a config or a template file, environment var expansion in a script
*/
variable: plain,
/**
* list item bullet in text markup
*/
bullet: plain,
/**
* code block in text markup
*/
code: plain,
/**
* emphasis in text markup
*/
emphasis: chalk.italic,
/**
* strong emphasis in text markup
*/
strong: chalk.bold,
/**
* mathematical formula in text markup
*/
formula: plain,
/**
* hyperlink in text markup
*/
link: chalk.underline,
/**
* quotation in text markup
*/
quote: plain,
/**
* tag selector in CSS
*/
'selector-tag': plain,
/**
* #id selector in CSS
*/
'selector-id': plain,
/**
* .class selector in CSS
*/
'selector-class': plain,
/**
* [attr] selector in CSS
*/
'selector-attr': plain,
/**
* :pseudo selector in CSS
*/
'selector-pseudo': plain,
/**
* tag of a template language
*/
'template-tag': plain,
/**
* variable in a template language
*/
'template-variable': plain,
/**
* added or changed line in a diff
*/
addition: chalk.green,
/**
* deleted line in a diff
*/
deletion: chalk.red,
/**
* things not matched by any token
*/
default: plain,
}
/**
* Converts a [[JsonTheme]] with string values to a [[Theme]] with formatter functions. Used by [[parse]].
*/
export function fromJson(json: JsonTheme): Theme {
const theme: Theme = {}
for (const key of Object.keys(json)) {
const style: string | string[] = (json as any)[key]
if (Array.isArray(style)) {
;(theme as any)[key] = style.reduce(
(previous: typeof chalk, current: string) => (current === 'plain' ? plain : (previous as any)[current]),
chalk
)
} else {
;(theme as any)[key] = (chalk as any)[style]
}
}
return theme
}
/**
* Converts a [[Theme]] with formatter functions to a [[JsonTheme]] with string values. Used by [[stringify]].
*/
export function toJson(theme: Theme): JsonTheme {
const jsonTheme: any = {}
for (const key of Object.keys(jsonTheme)) {
const style: Chalk & { _styles: string[] } = (jsonTheme as any)[key]
jsonTheme[key] = style._styles
}
return jsonTheme
}
/**
* Stringifies a [[Theme]] with formatter functions to a JSON string.
*
* ```ts
* import chalk = require('chalk');
* import {stringify} from 'cli-highlight';
* import * as fs from 'fs';
*
* const myTheme: Theme = {
* keyword: chalk.red.bold,
* addition: chalk.green,
* deletion: chalk.red.strikethrough,
* number: plain
* }
* const json = stringify(myTheme);
* fs.writeFile('mytheme.json', json, (err: any) => {
* if (err) throw err;
* console.log('Theme saved');
* });
* ```
*/
export function stringify(theme: Theme): string {
return JSON.stringify(toJson(theme))
}
/**
* Parses a JSON string into a [[Theme]] with formatter functions.
*
* ```ts
* import * as fs from 'fs';
* import {parse, highlight} from 'cli-highlight';
*
* fs.readFile('mytheme.json', 'utf8', (err: any, json: string) => {
* if (err) throw err;
* const code = highlight('SELECT * FROM table', {theme: parse(json)});
* console.log(code);
* });
* ```
*/
export function parse(json: string): Theme {
return fromJson(JSON.parse(json))
}