git ssb

2+

mixmix / ticktack



Tree: b54653fc52f7f7d05a4fc1e294bb6151561bff09

Files: b54653fc52f7f7d05a4fc1e294bb6151561bff09 / app / sync / initialize / clickHandler.js

548 bytesRaw
1const nest = require('depnest')
2const openExternal = require('open-external')
3
4exports.gives = nest('app.sync.initialize')
5
6exports.needs = nest({
7 'app.async.catchLinkClick': 'first',
8 'history.sync.push': 'first',
9})
10
11exports.create = (api) => {
12 return nest({
13 'app.sync.initialize': function initializeClickHandling () {
14 const target = document.body
15
16 api.app.async.catchLinkClick(target, (link, { isExternal }) => {
17 if (isExternal) return openExternal(link)
18
19 api.history.sync.push(link)
20 })
21 }
22 })
23}
24
25

Built with git-ssb-web