forked from SolidOS/solid-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpad.ts
More file actions
853 lines (788 loc) · 25.8 KB
/
pad.ts
File metadata and controls
853 lines (788 loc) · 25.8 KB
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
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
/** **************
* Notepad Widget
*/
/** @module pad
*/
import ns from './ns'
import { Namespace, NamedNode, st, IndexedFormula } from 'rdflib'
import { newThing, errorMessageBlock } from './widgets'
import { beep } from './utils'
import { log } from './debug'
import { solidLogicSingleton } from 'solid-logic'
import { style } from './style'
export { renderParticipants, participationObject, manageParticipation, recordParticipation } from './participation'
const store = solidLogicSingleton.store
const PAD = Namespace('http://www.w3.org/ns/pim/pad#')
type notepadOptions = {
statusArea?: HTMLDivElement
exists?: boolean
}
/**
* @ignore
*/
class NotepadElement extends HTMLElement {
subject?: NamedNode
}
/**
* @ignore
*/
class NotepadPart extends HTMLElement {
subject?: NamedNode | string
value?: string
state?: Number
lastSent?: String
}
/** Figure out a random color from my webid
*
* @param {NamedNode} author - The author of text being displayed
* @returns {String} The CSS color generated, constrained to be light for a background color
*/
export function lightColorHash (author?: NamedNode): string {
const hash = function (x) {
return x.split('').reduce(function (a, b) {
a = (a << 5) - a + b.charCodeAt(0)
return a & a
}, 0)
}
return author && author.uri
? '#' + ((hash(author.uri) & 0xffffff) | 0xc0c0c0).toString(16)
: '#ffffff' // c0c0c0 forces pale
} // no id -> white
/** notepad
*
* @param {HTMLDocument} dom - the web page of the browser
* @param {NamedNode} padDoc - the document in which the participation should be shown
* @param {NamedNode} subject - the thing in which participation is happening
* @param {NamedNode} me - person who is logged into the pod
* @param {notepadOptions} options - the options that can be passed in consist of statusArea, exists
*/
export function notepad (dom: HTMLDocument, padDoc: NamedNode, subject: NamedNode, me: NamedNode, options?: notepadOptions) {
options = options || {}
const exists = options.exists
const table: any = dom.createElement('table')
const kb = store
if (me && !me.uri) throw new Error('UI.pad.notepad: Invalid userid')
const updater = store.updater
const PAD = Namespace('http://www.w3.org/ns/pim/pad#')
table.setAttribute('style', style.notepadStyle)
let upstreamStatus: HTMLElement | null = null
let downstreamStatus: HTMLElement | null = null
if (options.statusArea) {
const t = options.statusArea.appendChild(dom.createElement('table'))
const tr = t.appendChild(dom.createElement('tr'))
upstreamStatus = tr.appendChild(dom.createElement('td'))
downstreamStatus = tr.appendChild(dom.createElement('td'))
if (upstreamStatus) {
upstreamStatus.setAttribute('style', style.upstreamStatus)
}
if (downstreamStatus) {
downstreamStatus.setAttribute('style', style.downstreamStatus)
}
}
/* @@ TODO want to look into this, it seems upstream should be a boolean and default to false ?
*
*/
const complain = function (message: string, upstream: boolean = false) {
log(message)
if ((options as notepadOptions).statusArea) {
; (upstream ? upstreamStatus as HTMLElement : downstreamStatus as HTMLElement).appendChild(errorMessageBlock(dom, message, 'pink'))
}
}
// @@ TODO need to refactor so that we don't have to type cast
const clearStatus = function (_upsteam?: any) {
if ((options as notepadOptions).statusArea) {
((options as notepadOptions).statusArea as HTMLElement).innerHTML = ''
}
}
const setPartStyle = function (part: NotepadPart, colors?: string, pending?: any) {
const chunk = part.subject
colors = colors || ''
const baseStyle = style.baseStyle
const headingCore = style.headingCore
const headingStyle = style.headingStyle
const author = kb.any(chunk as any, ns.dc('author'))
if (!colors && author) {
// Hash the user webid for now -- later allow user selection!
const bgcolor = lightColorHash(author as any)
colors =
'color: ' +
(pending ? '#888' : 'black') +
'; background-color: ' +
bgcolor +
';'
}
// @@ TODO Need to research when this can be an object with the indent stored in value
// and when the indent is stored as a Number itself, not in an object.
let indent: any = kb.any(chunk as any, PAD('indent'))
indent = indent ? indent.value : 0
const localStyle =
indent >= 0
? baseStyle + 'text-indent: ' + indent * 3 + 'em;'
: headingCore + headingStyle[-1 - indent]
// ? baseStyle + 'padding-left: ' + (indent * 3) + 'em;'
part.setAttribute('style', localStyle + colors)
}
const removePart = function (part: NotepadPart) {
const chunk = part.subject
if (!chunk) throw new Error('No chunk for line to be deleted!') // just in case
const prev: any = kb.any(undefined, PAD('next'), chunk as any)
const next: any = kb.any(chunk as any, PAD('next'))
if (prev.sameTerm(subject) && next.sameTerm(subject)) {
// Last one
log('You can\'t delete the only line.')
return
}
const del = kb
.statementsMatching(chunk as any, undefined, undefined, padDoc)
.concat(kb.statementsMatching(undefined, undefined, chunk as any, padDoc))
const ins = [st(prev, PAD('next'), next, padDoc)]
// @@ TODO what should we do if chunk is not a NamedNode should we
// assume then it is a string?
if (chunk instanceof NamedNode) {
const label = chunk.uri.slice(-4)
log('Deleting line ' + label)
}
if (!updater) {
throw new Error('have no updater')
}
// @@ TODO below you can see that before is redefined and not a boolean
updater.update(del, ins, function (uri, ok, errorMessage, response) {
if (ok) {
const row = part.parentNode
if (row) {
const before: any = row.previousSibling
if (row.parentNode) {
row.parentNode.removeChild(row)
}
// console.log(' deleted line ' + label + ' ok ' + part.value)
if (before && before.firstChild) {
// @@ TODO IMPORTANT FOCUS ISN'T A PROPERTY ON A CHILDNODE
before.firstChild.focus()
}
}
} else if (response && (response as any).status === 409) {
// Conflict
setPartStyle(part, 'color: black; background-color: #ffd;') // yellow
part.state = 0 // Needs downstream refresh
beep(0.5, 512) // Ooops clash with other person
setTimeout(function () {
// Ideally, beep! @@
reloadAndSync() // Throw away our changes and
// updater.requestDownstreamAction(padDoc, reloadAndSync)
}, 1000)
} else {
log(' removePart FAILED ' + chunk + ': ' + errorMessage)
log(' removePart was deleteing :\'' + del)
setPartStyle(part, 'color: black; background-color: #fdd;') // failed
const res = response ? (response as any).status : ' [no response field] '
complain('Error ' + res + ' saving changes: ' + (errorMessage as any).true) // upstream,
// updater.requestDownstreamAction(padDoc, reloadAndSync);
}
})
} // removePart
const changeIndent = function (part: NotepadPart, chunk: string, delta) {
const del = kb.statementsMatching(chunk as any, PAD('indent'))
const current = del.length ? Number(del[0].object.value) : 0
if (current + delta < -3) return // limit negative indent
const newIndent = current + delta
const ins = st(chunk as any, PAD('indent'), newIndent, padDoc)
if (!updater) {
throw new Error('no updater')
}
updater.update(del, ins as any, function (uri, ok, errorBody) {
if (!ok) {
log(
'Indent change FAILED \'' +
newIndent +
'\' for ' +
padDoc +
': ' +
errorBody
)
setPartStyle(part, 'color: black; background-color: #fdd;') // failed
updater.requestDownstreamAction(padDoc, reloadAndSync)
} else {
setPartStyle(part) // Implement the indent
}
})
}
const addListeners = function (part: any, chunk: any) {
part.addEventListener('keydown', function (event) {
if (!updater) {
throw new Error('no updater')
}
let queueProperty, queue
// up 38; down 40; left 37; right 39 tab 9; shift 16; escape 27
switch (event.keyCode) {
case 13: // Return
{
const before: NotepadElement = event.shiftKey
log('enter') // Shift-return inserts before -- only way to add to top of pad.
if (before) {
queue = kb.any(undefined, PAD('next'), chunk)
queueProperty = 'newlinesAfter'
} else {
queue = kb.any(chunk, PAD('next'))
queueProperty = 'newlinesBefore'
}
queue[queueProperty] = queue[queueProperty] || 0
queue[queueProperty] += 1
if (queue[queueProperty] > 1) {
log(' queueing newline queue = ' + queue[queueProperty])
return
}
log(' go ahead line before ' + queue[queueProperty])
newChunk(part, before) // was document.activeElement
break
}
case 8: // Delete
if (part.value.length === 0) {
log(
'Delete key line ' + chunk.uri.slice(-4) + ' state ' + part.state
)
switch (part.state) {
case 1: // contents being sent
case 2: // contents need to be sent again
part.state = 4 // delete me
return
case 3: // already being deleted
case 4: // already deleted state
return
case undefined:
case 0:
part.state = 3 // being deleted
removePart(part)
event.preventDefault()
break // continue
default:
throw new Error('pad: Unexpected state ' + part)
}
}
break
case 9: // Tab
{
const delta = event.shiftKey ? -1 : 1
changeIndent(part, chunk, delta)
event.preventDefault() // default is to highlight next field
break
}
case 27: // ESC
log('escape')
updater.requestDownstreamAction(padDoc, reloadAndSync)
event.preventDefault()
break
case 38: // Up
if (part.parentNode.previousSibling) {
part.parentNode.previousSibling.firstChild.focus()
event.preventDefault()
}
break
case 40: // Down
if (part.parentNode.nextSibling) {
part.parentNode.nextSibling.firstChild.focus()
event.preventDefault()
}
break
default:
}
})
const updateStore = function (part: NotepadPart) {
const chunk: any = part.subject
setPartStyle(part, undefined, true)
const old = (kb.any(chunk, ns.sioc('content')) as any).value
const del = [st(chunk, ns.sioc('content'), old, padDoc)]
let ins
if (part.value) {
ins = [st(chunk, ns.sioc('content'), part.value as any, padDoc)]
}
const newOne = part.value
// DEBUGGING ONLY
if (part.lastSent) {
if (old !== part.lastSent) {
throw new Error(
'Out of order, last sent expected \'' +
old +
'\' but found \'' +
part.lastSent +
'\''
)
}
}
part.lastSent = newOne
/* console.log(
' Patch proposed to ' +
chunk.uri.slice(-4) +
" '" +
old +
"' -> '" +
newOne +
"' "
) */
if (!updater) {
throw new Error('no updater')
}
updater.update(del, ins, function (uri, ok, errorBody, xhr) {
if (!ok) {
// alert("clash " + errorBody);
log(
' patch FAILED ' +
(xhr as any).status +
' for \'' +
old +
'\' -> \'' +
newOne +
'\': ' +
errorBody
)
if ((xhr as any).status === 409) {
// Conflict - @@ we assume someone else
setPartStyle(part, 'color: black; background-color: #fdd;')
part.state = 0 // Needs downstream refresh
beep(0.5, 512) // Ooops clash with other person
setTimeout(function () {
updater.requestDownstreamAction(padDoc, reloadAndSync)
}, 1000)
} else {
setPartStyle(part, 'color: black; background-color: #fdd;') // failed pink
part.state = 0
complain(
' Error ' + (xhr as any).status + ' sending data: ' + errorBody,
true
)
beep(1.0, 128) // Other
// @@@ Do soemthing more serious with other errors eg auth, etc
}
} else {
clearStatus(true) // upstream
setPartStyle(part) // synced
log(' Patch ok \'' + old + '\' -> \'' + newOne + '\' ')
if (part.state === 4) {
// delete me
part.state = 3
removePart(part)
} else if (part.state === 3) {
// being deleted
// pass
} else if (part.state === 2) {
part.state = 1 // pending: lock
updateStore(part)
} else {
part.state = 0 // clear lock
}
}
})
}
part.addEventListener('input', function inputChangeListener (_event) {
// debug.log("input changed "+part.value);
setPartStyle(part, undefined, true) // grey out - not synced
log(
'Input event state ' + part.state + ' value \'' + part.value + '\''
)
switch (part.state) {
case 3: // being deleted
return
case 4: // needs to be deleted
return
case 2: // needs content updating, we know
return
case 1:
part.state = 2 // lag we need another patch
return
case 0:
case undefined:
part.state = 1 // being upadted
updateStore(part)
}
}) // listener
} // addlisteners
// @@ TODO Need to research before as it appears to be used as an Element and a boolean
const newPartAfter = function (tr1: HTMLTableElement, chunk: String, before?: NotepadElement | boolean) {
// @@ take chunk and add listeners
let text: any = kb.any(chunk as any, ns.sioc('content'))
text = text ? text.value : ''
const tr = dom.createElement('tr')
if (before) {
table.insertBefore(tr, tr1)
} else {
// after
if (tr1 && tr1.nextSibling) {
table.insertBefore(tr, tr1.nextSibling)
} else {
table.appendChild(tr)
}
}
const part: any = tr.appendChild(dom.createElement('input'))
part.subject = chunk
part.setAttribute('type', 'text')
part.value = text
if (me) {
setPartStyle(part, '')
addListeners(part, chunk)
} else {
setPartStyle(part, 'color: #222; background-color: #fff')
log('Note can\'t add listeners - not logged in')
}
return part
}
/* @@ TODO we need to look at indent, it can be a Number or an Object this doesn't seem correct.
*/
const newChunk = function (ele?: NotepadElement, before?: NotepadElement) {
// element of chunk being split
const kb = store
let indent: any = 0
let queueProperty: string | null = null
let here, prev, next, queue, tr1: any
if (ele) {
if (ele.tagName.toLowerCase() !== 'input') {
log('return pressed when current document is: ' + ele.tagName)
}
here = ele.subject
indent = kb.any(here, PAD('indent'))
indent = indent ? Number(indent.value) : 0
if (before) {
prev = kb.any(undefined, PAD('next'), here)
next = here
queue = prev
queueProperty = 'newlinesAfter'
} else {
prev = here
next = kb.any(here, PAD('next'))
queue = next
queueProperty = 'newlinesBefore'
}
tr1 = ele.parentNode
} else {
prev = subject
next = subject
tr1 = undefined
}
const chunk = newThing(padDoc)
const label = chunk.uri.slice(-4)
const del = [st(prev, PAD('next'), next, padDoc)]
const ins = [
st(prev, PAD('next'), chunk, padDoc),
st(chunk, PAD('next'), next, padDoc),
st(chunk, ns.dc('author'), me, padDoc),
st(chunk, ns.sioc('content'), '' as any, padDoc)
]
if (indent > 0) {
// Do not inherit
ins.push(st(chunk, PAD('indent'), indent, padDoc))
}
log(' Fresh chunk ' + label + ' proposed')
if (!updater) {
throw new Error('no updater')
}
updater.update(del, ins, function (uri, ok, errorBody, _xhr) {
if (!ok) {
// alert("Error writing new line " + label + ": " + errorBody);
log(' ERROR writing new line ' + label + ': ' + errorBody)
} else {
const newPart = newPartAfter(tr1, chunk, before)
setPartStyle(newPart)
newPart.focus() // Note this is delayed
if (queueProperty) {
log(
' Fresh chunk ' +
label +
' updated, queue = ' +
queue[queueProperty]
)
queue[queueProperty] -= 1
if (queue[queueProperty] > 0) {
log(
' Implementing queued newlines = ' + next.newLinesBefore
)
newChunk(newPart, before)
}
}
}
})
}
const consistencyCheck = function () {
const found: { [uri: string]: boolean } = {}
let failed = 0
function complain2 (msg) {
complain(msg)
failed++
}
if (!kb.the(subject, PAD('next'))) {
complain2('No initial next pointer')
return false // can't do linked list
}
// var chunk = kb.the(subject, PAD('next'))
let prev = subject
let chunk
for (; ;) {
chunk = kb.the(prev, PAD('next'))
if (!chunk) {
complain2('No next pointer from ' + prev)
}
if (chunk.sameTerm(subject)) {
break
}
prev = chunk
const label = chunk.uri.split('#')[1]
if (found[chunk.uri]) {
complain2('Loop!')
return false
}
found[chunk.uri] = true
let k = kb.each(chunk, PAD('next')).length
if (k !== 1) {
complain2('Should be 1 not ' + k + ' next pointer for ' + label)
}
k = kb.each(chunk, PAD('indent')).length
if (k > 1) {
complain2('Should be 0 or 1 not ' + k + ' indent for ' + label)
}
k = kb.each(chunk, ns.sioc('content')).length
if (k !== 1) {
complain2('Should be 1 not ' + k + ' contents for ' + label)
}
k = kb.each(chunk, ns.dc('author')).length
if (k !== 1) {
complain2('Should be 1 not ' + k + ' author for ' + label)
}
const sts = kb.statementsMatching(undefined, ns.sioc('contents'))
sts.forEach(function (st) {
if (!found[st.subject.value]) {
complain2('Loose chunk! ' + st.subject.value)
}
})
}
return !failed
}
// Ensure that the display matches the current state of the
// @@ TODO really need to refactor this so that we don't need to cast types
const sync = function () {
// var first = kb.the(subject, PAD('next'))
if (kb.each(subject, PAD('next')).length !== 1) {
const msg =
'Pad: Inconsistent data - NEXT pointers: ' +
kb.each(subject, PAD('next')).length
log(msg)
if ((options as notepadOptions).statusArea) {
((options as notepadOptions).statusArea as HTMLElement).textContent += msg
}
return
}
let row
// First see which of the logical chunks have existing physical manifestations
const manif: any = []
// Find which lines correspond to existing chunks
for (
let chunk = kb.the(subject, PAD('next')) as unknown as any;
!chunk.sameTerm(subject);
chunk = kb.the(chunk, PAD('next'))
) {
for (let i = 0; i < table.children.length; i++) {
const tr: any = table.children[i]
if (tr.firstChild) {
if (tr.firstChild.subject.sameTerm(chunk)) {
manif[chunk.uri] = tr.firstChild
}
}
}
}
// Remove any deleted lines
for (let i = table.children.length - 1; i >= 0; i--) {
row = table.children[i]
if (!manif[row.firstChild.subject.uri]) {
table.removeChild(row)
}
}
// Insert any new lines and update old ones
row = table.firstChild // might be null
for (
let chunk = kb.the(subject, PAD('next')) as unknown as any;
!chunk.sameTerm(subject);
chunk = kb.the(chunk, PAD('next'))
) {
const text = (kb.any(chunk, ns.sioc('content')) as any).value
// superstitious -- don't mess with unchanged input fields
// which may be selected by the user
if (row && manif[chunk.uri]) {
const part = row.firstChild
if (text !== part.value) {
part.value = text
}
setPartStyle(part)
part.state = 0 // Clear the state machine
delete part.lastSent // DEBUG ONLY
row = row.nextSibling
} else {
newPartAfter(row, chunk, true) // actually before
}
}
}
// Refresh the DOM tree
const refreshTree = function (root) {
if (root.refresh) {
root.refresh()
return
}
for (let i = 0; i < root.children.length; i++) {
refreshTree(root.children[i])
}
}
let reloading = false
const checkAndSync = function () {
log(' reloaded OK')
clearStatus()
if (!consistencyCheck()) {
complain('CONSISTENCY CHECK FAILED')
} else {
refreshTree(table)
}
}
const reloadAndSync = function () {
if (reloading) {
log(' Already reloading - stop')
return // once only needed
}
reloading = true
let retryTimeout = 1000 // ms
const tryReload = function () {
log('try reload - timeout = ' + retryTimeout)
if (!updater) {
throw new Error('no updater')
}
updater.reload(updater.store, padDoc, function (ok, message, xhr) {
reloading = false
if (ok) {
checkAndSync()
} else {
if ((xhr as any).status === 0) {
complain(
'Network error refreshing the pad. Retrying in ' +
retryTimeout / 1000
)
reloading = true
retryTimeout = retryTimeout * 2
setTimeout(tryReload, retryTimeout)
} else {
complain(
'Error ' +
(xhr as any).status +
'refreshing the pad:' +
message +
'. Stopped. ' +
padDoc
)
}
}
})
}
tryReload()
}
table.refresh = sync // Catch downward propagating refresh events
table.reloadAndSync = reloadAndSync
if (!me) log('Warning: must be logged in for pad to be edited')
if (exists) {
log('Existing pad.')
if (consistencyCheck()) {
sync()
if (kb.holds(subject, PAD('next'), subject)) {
// Empty list untenable
newChunk() // require at least one line
}
} else {
log((table.textContent = 'Inconsistent data. Abort'))
}
} else {
// Make new pad
log('No pad exists - making new one.')
const insertables = [
st(subject, ns.rdf('type'), PAD('Notepad'), padDoc),
st(subject, ns.dc('author'), me, padDoc),
st(subject, ns.dc('created'), new Date() as any, padDoc),
st(subject, PAD('next'), subject, padDoc)
]
if (!updater) {
throw new Error('no updater')
}
updater.update([], insertables, function (uri: string | null | undefined, ok: boolean, errorBody?: string) {
if (!ok) {
complain(errorBody || '')
} else {
log('Initial pad created')
newChunk() // Add a first chunck
// getResults();
}
})
}
return table
}
/**
* Get the chunks of the notepad
* They are stored in a RDF linked list
*/
// @ignore exporting this only for the unit test
export function getChunks (subject: NamedNode, kb: IndexedFormula) {
const chunks: any[] = []
for (
let chunk: any = kb.the(subject, PAD('next'));
!chunk.sameTerm(subject);
chunk = kb.the(chunk, PAD('next'))
) {
chunks.push(chunk)
}
return chunks
}
/**
* Encode content to be put in XML or HTML elements
*/
// @ignore exporting this only for the unit test
export function xmlEncode (str) {
return str.replace('&', '&').replace('<', '<').replace('>', '>')
}
/**
* Convert a notepad to HTML
* @param { } pad - the notepad
* @param {store} pad - the data store
*/
export function notepadToHTML (pad: any, kb: IndexedFormula) {
const chunks = getChunks(pad, kb)
let html = '<html>\n <head>\n'
const title = kb.anyValue(pad, ns.dct('title'))
if (title) {
html += ` <title>${xmlEncode(title)}</title>\n`
}
html += ' </head>\n <body>\n'
let level = 0
function increaseLevel (indent) {
for (; level < indent; level++) {
html += '<ul>\n'
}
}
function decreaseLevel (indent) {
for (; level > indent; level--) {
html += '</ul>\n'
}
}
chunks.forEach(chunk => {
const indent = kb.anyJS(chunk, PAD('indent'))
const rawContent = kb.anyJS(chunk, ns.sioc('content'))
if (!rawContent) return // seed chunk is dummy
const content = xmlEncode(rawContent)
if (indent < 0) { // negative indent levels represent heading levels
decreaseLevel(0)
const h = indent >= -3 ? 4 + indent : 1 // -1 -> h4, -2 -> h3
html += `\n<h${h}>${content}</h${h}>\n`
} else { // >= 0
if (indent > 0) { // Lists
decreaseLevel(indent)
increaseLevel(indent)
html += `<li>${content}</li>\n`
} else { // indent 0
decreaseLevel(indent)
html += `<p>${content}</p>\n`
}
}
}) // foreach chunk
// At the end decreaseLevel any open ULs
decreaseLevel(0)
html += ' </body>\n</html>\n'
return html
}