git ssb

16+

Dominic / patchbay



Tree: e011bd5b98dd02ca18961e374977a17784ad659b

Files: e011bd5b98dd02ca18961e374977a17784ad659b / modules_basic / message-link.js

592 bytesRaw
1var h = require('hyperscript')
2
3var sbot_get = require('../plugs').first(exports.sbot_get = [])
4
5exports.message_link = function (id) {
6
7 if('string' !== typeof id)
8 throw new Error('link must be to message id')
9
10 var link = h('a', {href: '#'+id}, id.substring(0, 10)+'...')
11
12 sbot_get(id, function (err, value) {
13 if(err) {
14 if (err.name == 'NotFoundError')
15 link.textContent += ' (missing)'
16 else
17 console.error(err)
18 return
19 }
20 if(value.content.text)
21 link.textContent = value.content.text.substring(0, 40)+'...'
22 })
23
24 return link
25}
26
27
28
29
30
31

Built with git-ssb-web