git ssb

16+

Dominic / patchbay



Tree: 2132bd9fceb7210863db722bc5fd5ad1370adf84

Files: 2132bd9fceb7210863db722bc5fd5ad1370adf84 / app / page / blob.js

446 bytesRaw
1const nest = require('depnest')
2const { h } = require('mutant')
3
4exports.gives = nest('app.page.blob')
5
6exports.needs = nest('blob.sync.url', 'first')
7
8exports.create = (api) => {
9 return nest('app.page.blob', blobPage)
10
11 function blobPage (location) {
12 const { blob } = location
13
14 return h('Blob', { title: blob.slice(0, 9) + '...' }, [
15 h('iframe', {
16 src: api.blob.sync.url(blob),
17 sandbox: ''
18 })
19 ])
20 }
21}
22

Built with git-ssb-web