-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
config.js
591 lines (574 loc) · 26.5 KB
/
config.js
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
583
584
585
586
587
588
589
590
591
/* 配置文件(可以被 data/widgets/custom.js 覆盖) */
import {
merge,
notebookId2Name,
} from './../utils/misc.js';
import {
cutString,
ReplaceSpace,
ReplaceCRLF,
markdown2span,
dateFormat,
timeFormat,
timestampFormat,
isEmptyString,
removeSuperBlockMarks,
} from './../utils/string.js';
import {
templateParse,
} from './../utils/templateParser.js';
export var config = {
token: '', // API token, 无需填写
query: { // 查询配置
auto: false, // 是否在加载完成后自动运行一次查询
theme: { // 挂件主题样式
width: '8em', // 挂件宽度
height: '2em', // 挂件高度
radius: '2em', // 挂件圆角
fontSize: '1em', // 文本尺寸
color: { // 前景颜色
default: 'var(--b3-theme-on-surface)', // 默认颜色
},
backgroundColor: { // 背景颜色
default: 'var(--b3-theme-surface)', // 默认颜色
error: 'var(--b3-card-error-background)', // 错误颜色
warning: 'var(--b3-card-warning-background)', // 警告颜色
info: 'var(--b3-card-info-background)', // 信息颜色
success: 'var(--b3-card-success-background)', // 成功颜色
},
},
regs: {
blocks: /^\s*SELECT\s+\*\s+FROM\s+(blocks|blocks_fts|blocks_fts_case_insensitive)\s+.*/i, // 块查询的正则表达式
limit: /\s+LIMIT\s+\d+/i, // SQL LIMIT 关键字正则表达式
sort: /^__(\d+)__(.*)$/i, // 手动排序字段正则表达式
render: /^__(\w+)__(.*)$/i, // 渲染控制字段正则表达式
hex: /^[0-9a-fA-F]+$/, // 16 进制正则表达式
id: /^\d{14}\-[0-9a-z]{7}$/, // 块 ID 正则表达式
query: /^\s*\{\{(.*)\}\}\s*$/, // 嵌入块正则表达式
super: /^\{\{\{row|col%$/im, // 超级块标志
},
attribute: { // 块属性
code: 'query-code', // 查询代码块
widget: 'query-widget', // 查询挂件块
table: 'query-table', // 查询结果表格块
},
sql: {
// SQL 语句处理
default: `SELECT * FROM blocks WHERE false;`, // 默认 SQL 语句
limit: { // 查询记录数量限制, 若启用且为设置 LIMIT 语句, 则在查询语句末尾添加 "LIMIT begin, end"
enable: false, // 是否启用限制
begin: 0, // 开始记录数
end: 100, // 结束记录数
},
},
template: { // 类似模板字段解析支持, 类似 .prefix{.field}, 目前支持的有 .root{.<挂件所在文档块的字段名>} .parent{.<挂件上级块的字段名>} .block{挂件块的字段名}
enable: true, // 是否启用模板解析
handler: async (data) => { // 模板解析处理函数
return await templateParse(data);
}
},
index: {
enable: true, // 查询结果是否显示索引序号
},
render: {
// 块查询部分字段渲染方案
/**
* 'ref': 渲染为块引用
* 'link': 渲染为块超链接
*/
type: 'link', // 块类型
hpath: 'link', // 块所在文档路径
id: 'link', // 块 ID
parent_id: 'link', // 块的上级块 ID
root_id: 'link', // 块所在文档 ID
markdown: { // markdown 字段渲染
s: { // 超级块渲染方案
marks: true, // 是否显示超级块的标志 {{{ 与 }}}
},
},
ial: { // 内联属性样式
/**形状
* 'rows': 一列中分行显示
* 'columns': 一行中分列显示
*/
shape: 'rows',
/**样式
* 's': 该字段渲染为删除线
* 'u': 该字段渲染为下划线
* 'em': 该字段渲染为斜体
* 'tag': 该字段渲染为标签
* 'kbd': 该字段渲染为按键样式
* 'sub': 该字段渲染为下标样式
* 'sup': 该字段渲染为上标样式
* 'code': 该字段渲染为行内代码
* 'mark': 该字段渲染为标记
* 'math': 该字段渲染为公式
* 'strong': 该字段渲染为粗体
*/
style: {
rows: {
key: 'kbd', // 内联属性键样式
value: 'code', // 内联属性值样式
null: 'NULL', // 内联属性为空时占位符
},
columns: {
key: 'kbd', // 内联属性键样式
value: 'kbd', // 内联属性值样式
null: '', // 内联属性为空时占位符
},
},
fields: { // 内联属性字段
forced: [], // 强制显示的 IAL 键, 为空则使用黑白名单
ignore: [ // 需渲染的 IAL 键黑名单
'id', // 块 ID
'fold', // 是否折叠
'type', // <文档块>类型("doc")
'style', // 块样式
'title', // <文档块>文档标题
'scroll', // <文档块>阅读位置
'updated', // 块更新时间
'linewrap', // <代码块>代码块是否换行
'ligatures', // <代码块>代码块是否启用连字符
'linenumber', // <代码块>代码块是否显示行号
'colgroup', // <表格块>表格块列样式
'title-img', // <代码块>文档块题头图
'breadcrumb', // <嵌入块>是否渲染嵌入块
'heading-fold', // <嵌入块>折叠标题块下级块
],
valid: [], // 按照顺序渲染的 IAL 键白名单, 为空则全部渲染
},
},
},
limit: 'row', // 查询结果字段限制, (null 为不限制, 'len' 为限制长度, 'row' 为限制行数)
maxlen: 64, // 查询结果每个字段最大长度
maxrow: 3, // 查询结果每个字段最大行数
CRLF: '<br />', // 换行符替换
space: ' ', // 空白字符替换
fields: [ // 需渲染的 blocks 表的字段, 顺序分先后
'type', // 内容块类型,参考((20210210103523-ombf290 "类型字段"))
// 'content', // 去除了 Markdown 标记符的文本
// 'fcontent', // 容器块第一个子块的内容
'markdown', // 包含完整 Markdown 标记符的文本
'ial', // 内联属性列表,形如 `{: name="value"}`
'hpath', // 人类可读的内容块所在文档路径
'created', // 创建时间
'updated', // 更新时间
// 'id', // 内容块 ID
// 'parent_id', // 双亲块 ID, 如果内容块是文档块则该字段为空
// 'root_id', // 文档块 ID
// 'box', // 笔记本 ID
// 'path', // 内容块所在文档路径
// 'name', // 内容块名称
// 'alias', // 内容块别名
// 'memo', // 内容块备注
// 'tag', // 标签
// 'hash', // content 字段的 SHA256 校验和
// 'length', // content 字段文本长度
// 'subtype', // 内容块子类型,参考((20210210103411-tcbcjja "子类型字段"))
// 'sort', // 排序权重, 数值越小排序越靠前
],
style: {
// 查询结果样式
table: {
// 表格样式
enable: true, // 是否启用使用块自定义属性设置表格样式
attributes: [
{
// 表格自定义属性, 表格自动折行, 详情请参考 [siyuan-theme-dark-plus/custom-table-width.css at main · Zuoqiu-Yingyi/siyuan-theme-dark-plus](https://github.com/Zuoqiu-Yingyi/siyuan-theme-dark-plus/blob/main/style/module/custom-table-width.css)
enable: false, // 是否启用该自定义属性
key: 'custom-table-width', // 属性名
value: 'auto', // 属性值
},
{
// 块自定义属性, 为块设置滚动条, 详情请参考 [siyuan-theme-dark-plus/custom-render-scroll.css at main · Zuoqiu-Yingyi/siyuan-theme-dark-plus](https://github.com/Zuoqiu-Yingyi/siyuan-theme-dark-plus/blob/main/style/module/custom-render-scroll.css)
enable: true, // 是否启用该自定义属性
key: 'custom-render', // 属性名
value: 'scroll', // 属性值
},
],
},
column: {
// 列样式, 默认为不自动换行, 需要自定义宽度的字段可以设置为 'width: 512px;'
content: '',
fcontent: '',
markdown: '',
created: '',
updated: '',
type: '',
hpath: '',
id: '',
parent_id: '',
root_id: '',
hash: '',
box: '',
path: '',
name: '',
alias: '',
memo: '',
tag: '',
length: '',
subtype: '',
ial: '',
sort: '',
},
align: { // 查询结果字段对齐样式(':--' 左对齐, ':-:' 居中, '--:' 右对齐, '---' 标题居中 & 内容左对齐)
content: '---',
fcontent: '---',
markdown: '---',
created: ':-:',
updated: ':-:',
type: ':-:',
hpath: '---',
id: ':-:',
parent_id: ':-:',
root_id: ':-:',
hash: ':-:',
box: ':-:',
path: '---',
name: '---',
alias: '---',
memo: '---',
tag: '---',
length: '--:',
subtype: '--:',
ial: '---',
sort: '--:',
},
},
filter: {
// 查询结果过滤器
blocks: { // 块查询的过滤
enable: true, // 是否启用过滤
handlers: [ // 过滤处理方法序列
(row, data) => { // 过滤查询结果中的查询结构(查询代码块, Query 挂件块)
// row: 查询结果一条记录
// data: 挂件数据
// return: 返回 true 则过滤掉当前记录, 返回 false 则不过滤
switch (true) {
case row.ial.indexOf(`custom-type="${config.query.attribute.code}"`) != -1:
case row.ial.indexOf(`custom-type="${config.query.attribute.widget}"`) != -1:
case row.ial.indexOf(`custom-type="${config.query.attribute.table}"`) != -1:
return true;
default:
return false;
}
},
],
}
},
rows: { // 查询结果处理方法
ials: { // IAL 处理方法
keys: (rows, ialParse) => {
// 获得查询结果所有记录 IAL 键
let keys = new Set();
if (rows.length > 0) {
for (let i = 0, len = rows.length; i < len; i++) {
let ial = ialParse(rows[i].ial);
Object.keys(ial).forEach(key => keys.add(key));
}
}
return keys;
},
},
},
handler: { // 块查询结果各字段处理方法
content: (row, ial, ...args) => {
switch (config.query.limit) {
case 'len':
return markdown2span(cutString(ReplaceSpace(row.content, config.query.space), config.query.maxlen));
case 'row':
return markdown2span(ReplaceCRLF(cutString(row.content, undefined, config.query.maxrow), config.query.CRLF));
default:
return markdown2span(row.content);
}
},
fcontent: (row, ial, ...args) => {
switch (config.query.limit) {
case 'len':
return markdown2span(cutString(ReplaceSpace(row.fcontent, config.query.space), config.query.maxlen));
case 'row':
return markdown2span(ReplaceCRLF(cutString(row.fcontent, undefined, config.query.maxrow), config.query.CRLF));
default:
return markdown2span(row.fcontent);
}
},
markdown: (row, ial, ...args) => {
if (row.type === 'd') // 文档块的 markdown 字段显示为标题
row.markdown = ial.title;
if (!config.query.render.markdown.s.marks) { // 移除超级块标志符
row.markdown = removeSuperBlockMarks(row.markdown);
}
switch (config.query.limit) {
case 'len':
return markdown2span(cutString(ReplaceSpace(row.markdown, config.query.space), config.query.maxlen));
case 'row':
return markdown2span(ReplaceCRLF(cutString(row.markdown, undefined, config.query.maxrow), config.query.CRLF));
default:
return markdown2span(row.markdown);
}
},
created: (row, ial, ...args) => {
return timestampFormat(row.created);
},
updated: (row, ial, ...args) => {
return timestampFormat(row.updated);
},
type: (row, ial, ...args) => {
switch (config.query.render.type) {
case 'link':
return `[${config.query.map.blocktype[row.type]}](siyuan://blocks/${row.id})`;
case 'ref':
default:
return `((${row.id} "${config.query.map.blocktype[row.type]}"))`;
}
},
hpath: (row, ial, ...args) => {
switch (config.query.render.hpath) {
case 'link':
return `[${row.hpath}](siyuan://blocks/${row.root_id})`;
case 'ref':
default:
return `((${row.root_id} "${row.hpath}"))`;
}
},
id: (row, ial, ...args) => {
switch (config.query.render.id) {
case 'link':
return `[${row.id}](siyuan://blocks/${row.id})`;
case 'ref':
default:
return `((${row.id} "${row.id}"))`;
}
},
parent_id: (row, ial, ...args) => {
if (isEmptyString(row.parent_id)) return '';
else {
switch (config.query.render.parent_id) {
case 'link':
return `[${row.parent_id}](siyuan://blocks/${row.parent_id})`;
case 'ref':
default:
return `((${row.parent_id} "${row.parent_id}"))`;
}
}
},
root_id: (row, ial, ...args) => {
switch (config.query.render.root_id) {
case 'link':
return `[${row.root_id}](siyuan://blocks/${row.root_id})`;
case 'ref':
default:
return `((${row.root_id} "${row.root_id}"))`;
}
},
hash: (row, ial, ...args) => {
return `\`${row.hash}\``;
},
box: (row, ial, ...args) => {
// return `\`${row.box}\``;
const name = notebookId2Name(row.box);
if (name) {
return markdown2span(name);
} else {
return `\`${row.box}\``;
}
},
path: (row, ial, ...args) => {
return `\`${row.path}\``;
},
name: (row, ial, ...args) => {
return markdown2span(row.name, 'kbd');
},
alias: (row, ial, ...args) => {
return markdown2span(row.alias, 'kbd', /\\s+,\\s+/g);
},
memo: (row, ial, ...args) => {
return markdown2span(row.memo);
},
tag: (row, ial, ...args) => {
return markdown2span(row.tag, 'raw', /(?<=#)\s+(?=#)/g);
},
length: (row, ial, ...args) => {
return row.length;
},
subtype: (row, ial, ...args) => {
return config.query.map.subtype[row.subtype];
},
ial: (row, ial, ...args) => {
let ial_markdown = [];
let ial_keys = args[0];
switch (config.query.render.ial.shape) {
case 'columns':
ial_keys.forEach((key) => {
if (ial[key]) {
switch (key) {
case 'icon':
if (ial[key].startsWith(':') && ial[key].endsWith(':')) {
// 自定义图标
ial_markdown.push(ial[key]);
break;
}
default:
ial_markdown.push(markdown2span(ial[key], config.query.render.ial.style.columns.value));
break;
}
}
else ial_markdown.push(config.query.render.ial.style.columns.null
? markdown2span(config.query.render.ial.style.columns.null, config.query.render.ial.style.columns.value)
: '');
});
return ial_markdown.join(' | ');
case 'rows':
default:
ial_keys.forEach((key) => {
// if (config.query.render.ial.fields.forced.length > 0 || ial[key])
// console.log(key, config.query.render.ial.fields.forced, ial[key], ial);
if (config.query.render.ial.fields.forced.length > 0 || ial[key] !== undefined) {
let ial_key = markdown2span(key, config.query.render.ial.style.rows.key)
let ial_value = ial[key] || (config.query.render.ial.style.rows.null
? markdown2span(config.query.render.ial.style.rows.null, config.query.render.ial.style.rows.value)
: '');
switch (key) {
case 'icon':
if (ial_value.startsWith(':') && ial_value.endsWith(':')) {
// 自定义图标
ial_markdown.push(`${ial_key}\:${ial_value}`);
break;
}
default:
ial_markdown.push(`${ial_key}\:${markdown2span(ial_value, config.query.render.ial.style.rows.value)}`);
break;
}
}
});
return ial_markdown.join(config.query.CRLF);
}
},
sort: (row, ial, ...args) => {
return row.sort;
},
},
map: {
// 映射表
blocktype: { // 块类型映射
d: '文档块',
h: '标题块',
l: '列表块',
i: '列表项',
c: '代码块',
m: '公式块',
t: '表格块',
b: '引述块',
s: '超级块',
p: '段落块',
tb: '分隔线',
video: '视频块',
audio: '音频块',
widget: '挂件块',
iframe: 'iframe',
query_embed: '嵌入块',
'': '',
null: '',
undefined: '',
},
subtype: { // 子类型映射
o: '有序列表',
u: '无序列表',
t: '任务列表',
h1: '一级标题',
h2: '二级标题',
h3: '三级标题',
h4: '四级标题',
h5: '五级标题',
h6: '六级标题',
'': '',
null: '',
undefined: '',
},
},
prefix: {
// 非默认查询时字段别名前缀
hidden: '__hidden__', // 不显示此字段,仅用于数据查询
ref: '__ref__', // 该字段渲染为引用
link: '__link__', // 该字段渲染为链接
pre: '__pre__', // 该字段渲染为预览
raw: '__raw__', // 该字段渲染为原始值
date: '__date__', // 该字段渲染为日期
time: '__time__', // 该字段渲染为时间
datetime: '__datetime__', // 该字段渲染为日期时间
s: '__s__', // 该字段渲染为删除线
u: '__u__', // 该字段渲染为下划线
em: '__em__', // 该字段渲染为斜体
tag: '__tag__', // 该字段渲染为标签
kbd: '__kbd__', // 该字段渲染为按键样式
sub: '__sub__', // 该字段渲染为下标样式
sup: '__sup__', // 该字段渲染为上标样式
code: '__code__', // 该字段渲染为行内代码
mark: '__mark__', // 该字段渲染为标记
math: '__math__', // 该字段渲染为公式
strong: '__strong__', // 该字段渲染为粗体
},
default: {
// 非块查询的处理模式
name: (key) => { // 字段名称处理函数
let name = config.query.regs.sort.test(key) ? config.query.regs.sort.exec(key)[2] : key;
return config.query.regs.render.test(name) ? config.query.regs.render.exec(name)[2] : name;
},
handler: (key) => { // 其他查询结果默认处理方法生成函数, key 是字段名, 返回一个处理方法
let name = config.query.regs.sort.test(key) ? config.query.regs.sort.exec(key)[2] : key;
switch (true) {
case name.startsWith(config.query.prefix.ref):
return (row, key) => `((${row[key]} "${row[key]}"))`;
case name.startsWith(config.query.prefix.link):
return (row, key) => `[${row[key]}](siyuan://blocks/${row[key]})`;
case name.startsWith(config.query.prefix.pre):
return (row, key) => markdown2span(row[key]);
case name.startsWith(config.query.prefix.date):
return (row, key) => dateFormat(row[key]);
case name.startsWith(config.query.prefix.time):
return (row, key) => timeFormat(row[key]);
case name.startsWith(config.query.prefix.datetime):
return (row, key) => timestampFormat(row[key]);
case name.startsWith(config.query.prefix.s):
return (row, key) => markdown2span(row[key], 's');
case name.startsWith(config.query.prefix.u):
return (row, key) => markdown2span(row[key], 'u');
case name.startsWith(config.query.prefix.em):
return (row, key) => markdown2span(row[key], 'em');
case name.startsWith(config.query.prefix.kbd):
return (row, key) => markdown2span(row[key], 'kbd');
case name.startsWith(config.query.prefix.sub):
return (row, key) => markdown2span(row[key], 'sub');
case name.startsWith(config.query.prefix.sup):
return (row, key) => markdown2span(row[key], 'sup');
case name.startsWith(config.query.prefix.tag):
return (row, key) => markdown2span(row[key], 'tag');
case name.startsWith(config.query.prefix.mark):
return (row, key) => markdown2span(row[key], 'mark');
case name.startsWith(config.query.prefix.math):
return (row, key) => markdown2span(row[key], 'math');
case name.startsWith(config.query.prefix.strong):
return (row, key) => markdown2span(row[key], 'strong');
case name.startsWith(config.query.prefix.raw):
case name.startsWith(config.query.prefix.code):
default:
return (row, key) => markdown2span(row[key], 'code');
}
},
style: {
column: '', // 列样式
align: '---', // 对齐样式
},
},
},
};
try {
let custom = await import('/widgets/custom.js');
if (custom.config != null) {
config = merge(config, custom.config);
}
} catch (err) {
console.warn(err);
} finally {
console.log(config);
}