git ssb

2+

mixmix / ticktack



Tree: ec7545f42881ca25d5d62a67b797b7ca4104ad11

Files: ec7545f42881ca25d5d62a67b797b7ca4104ad11 / app / html / channelCard.js

617 bytesRaw
1const nest = require('depnest')
2const { h } = require('mutant')
3
4exports.gives = nest('app.html.channelCard')
5
6exports.needs = nest({
7 'history.sync.push': 'first',
8 'channel.html.subscribe': 'first'
9})
10
11exports.create = function (api) {
12 return nest('app.html.channelCard', (channel) => {
13 const goToChannel = () => {
14 api.history.sync.push({ page: 'channelShow', channel: channel })
15 }
16
17 return h('ChannelCard', [
18 h('div.content', [
19 h('div.text', [
20 h('h2', {'ev-click': goToChannel}, channel),
21 api.channel.html.subscribe(channel)
22 ])
23 ])
24 ])
25 })
26}
27

Built with git-ssb-web