git ssb

16+

Dominic / patchbay



Tree: fdca1d25ea142fa395482e66593db66d33f6589c

Files: fdca1d25ea142fa395482e66593db66d33f6589c / 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