Files: 39613c79e32b11885ab4a4e58342b54df3f85b4b / modules_basic / compose.js
4726 bytesRaw
1 | |
2 | const fs = require('fs') |
3 | const h = require('../h') |
4 | const { Value, when } = require('@mmckegg/mutant') |
5 | const mentions = require('ssb-mentions') |
6 | |
7 | exports.needs = { |
8 | suggest_mentions: 'map', //<-- THIS MUST BE REWRITTEN |
9 | suggest_channel: 'map', |
10 | build_suggest_box: 'first', |
11 | publish: 'first', |
12 | message_content: 'first', |
13 | message_confirm: 'first', |
14 | file_input: 'first' |
15 | } |
16 | |
17 | exports.gives = { |
18 | 'message_compose': true, |
19 | 'mcss': true |
20 | } |
21 | |
22 | exports.create = function (api) { |
23 | return { |
24 | message_compose, |
25 | mcss: () => fs.readFileSync(__filename.replace(/js$/, 'mcss'), 'utf8') |
26 | } |
27 | |
28 | /* |
29 | opts can take |
30 | |
31 | placeholder: string. placeholder text, defaults to "Write a message" |
32 | prepublish: function. called before publishing a message. |
33 | shrink: boolean. set to false, to make composer not shrink (or hide controls) when unfocused. |
34 | */ |
35 | |
36 | function message_compose (meta = {}, opts = {}, cb) { |
37 | if(!meta.type) throw new Error('message must have type') |
38 | |
39 | if('function' === typeof cb) { |
40 | if('function' === typeof opts) { |
41 | opts = {prepublish: opts} |
42 | } |
43 | } |
44 | opts.prepublish = opts.prepublish || id |
45 | |
46 | const isExpanded = Value(opts.shrink === false) |
47 | |
48 | var textArea = h('textarea', { |
49 | placeholder: opts.placeholder || 'Write a message' |
50 | }) |
51 | |
52 | var channelInput = h('input.channel', { |
53 | placeholder: '#channel (optional)', |
54 | value: meta.channel ? `#${meta.channel}` : '', |
55 | disabled: meta.channel ? true : false, |
56 | title: meta.channel ? 'Reply is in same channel as original message' : '', |
57 | }) |
58 | |
59 | channelInput.addEventListener('keyup', (e) => { |
60 | e.target.value = e.target.value |
61 | .replace(/^#*([\w@%&])/, '#$1') |
62 | }) |
63 | |
64 | if(opts.shrink !== false) { |
65 | isExpanded.set(false) |
66 | var blur |
67 | |
68 | textArea.addEventListener('focus', () => { |
69 | clearTimeout(blur) |
70 | if(!textArea.value) { |
71 | isExpanded.set(true) |
72 | } |
73 | }) |
74 | textArea.addEventListener('blur', () => { |
75 | //don't shrink right away, so there is time |
76 | //to click the publish button. |
77 | clearTimeout(blur) |
78 | blur = setTimeout(() => { |
79 | if(textArea.value) return |
80 | isExpanded.set(false) |
81 | }, 300) |
82 | }) |
83 | channelInput.addEventListener('focus', () => { |
84 | clearTimeout(blur) |
85 | if (!textArea.value) { |
86 | isExpanded.set(true) |
87 | } |
88 | }) |
89 | channelInput.addEventListener('blur', () => { |
90 | clearTimeout(blur) |
91 | blur = setTimeout(() => { |
92 | if (textArea.value || channelInput.value) return |
93 | isExpanded.set(false) |
94 | }, 300) |
95 | }) |
96 | } |
97 | |
98 | textArea.addEventListener('keydown', ev => { |
99 | if(ev.keyCode === 13 && ev.ctrlKey) publish() |
100 | }) |
101 | |
102 | var files = [] |
103 | var filesById = {} |
104 | |
105 | function publish() { |
106 | publishBtn.disabled = true |
107 | var content |
108 | try { |
109 | content = JSON.parse(textArea.value) |
110 | } catch (err) { |
111 | meta.text = textArea.value |
112 | meta.channel = (channelInput.value.startsWith('#') ? |
113 | channelInput.value.substr(1).trim() : channelInput.value.trim()) || null |
114 | meta.mentions = mentions(textArea.value).map(mention => { |
115 | // merge markdown-detected mention with file info |
116 | var file = filesById[mention.link] |
117 | if (file) { |
118 | if (file.type) mention.type = file.type |
119 | if (file.size) mention.size = file.size |
120 | } |
121 | return mention |
122 | }) |
123 | try { |
124 | meta = opts.prepublish(meta) |
125 | } catch (err) { |
126 | publishBtn.disabled = false |
127 | if (cb) cb(err) |
128 | else alert(err.message) |
129 | } |
130 | return api.message_confirm(meta, done) |
131 | } |
132 | |
133 | api.message_confirm(content, done) |
134 | |
135 | function done (err, msg) { |
136 | publishBtn.disabled = false |
137 | if(err) return alert(err.stack) |
138 | else if (msg) textArea.value = '' |
139 | |
140 | if (cb) cb(err, msg) |
141 | } |
142 | } |
143 | |
144 | var fileInput = api.file_input(file => { |
145 | files.push(file) |
146 | filesById[file.link] = file |
147 | |
148 | var embed = file.type.indexOf('image/') === 0 ? '!' : '' |
149 | |
150 | textArea.value += embed + '['+file.name+']('+file.link+')' |
151 | isExpanded.set(true) |
152 | console.log('added:', file) |
153 | }) |
154 | var publishBtn = h('button', {'ev-click': publish}, 'Publish' ) |
155 | var actions = h('section.actions', [ fileInput, publishBtn ]) |
156 | |
157 | api.build_suggest_box(textArea, api.suggest_mentions) |
158 | api.build_suggest_box(channelInput, api.suggest_channel) |
159 | |
160 | var composer = h('Compose', { |
161 | classList: [ when(isExpanded, '-expanded', '-contracted') ] |
162 | }, [ |
163 | channelInput, |
164 | textArea, |
165 | actions |
166 | ]) |
167 | |
168 | return composer |
169 | } |
170 | |
171 | } |
172 | |
173 | function id (e) { return e } |
174 |
Built with git-ssb-web