Files: 79c10b336a5d261d0c19aedbef677d2a5d332ff3 / modules / message-link.js
479 bytesRaw
1 | var h = require('hyperscript') |
2 | |
3 | var sbot_get = require('../plugs').first(exports.sbot_get = []) |
4 | |
5 | exports.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) return console.error(err) |
14 | if(value.content.text) |
15 | link.textContent = value.content.text.substring(0, 40)+'...' |
16 | }) |
17 | |
18 | return link |
19 | } |
20 | |
21 | |
22 | |
23 | |
24 | |
25 |
Built with git-ssb-web