git ssb

16+

Dominic / patchbay



Tree: 11fc4a4c131af561b454a3251544add67c283036

Files: 11fc4a4c131af561b454a3251544add67c283036 / modules / message-confirm.js

969 bytesRaw
1var lightbox = require('hyperlightbox')
2var h = require('hyperscript')
3var u = require('../util')
4//publish or add
5
6var plugs = require('../plugs')
7
8var publish = plugs.first(exports.sbot_publish = [])
9var message_content = plugs.first(exports.message_content = [])
10
11exports.message_confirm = function (content, cb) {
12
13 cb = cb || function () {}
14
15 var lb = lightbox()
16 document.body.appendChild(lb)
17
18 var okay = h('button', 'okay', {onclick: function () {
19 lb.remove()
20 publish(content, cb)
21 }})
22
23 var cancel = h('button', 'cancel', {onclick: function () {
24 lb.remove()
25 cb(null)
26 }})
27
28 okay.addEventListener('keydown', function (ev) {
29 if(ev.keyCode === 27) cancel.click() //escape
30 })
31
32 lb.show(h('div.column.message-confirm',
33 message_content({key: "DRAFT", value: {content: content}})
34 || h('pre', JSON.stringify(content, null, 2)),
35 h('div.row.message-confirm__controls', okay, cancel)
36 ))
37
38 okay.focus()
39
40}
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59

Built with git-ssb-web