var combine = require('depject') var entry = require('depject/entry') var electron = require('electron') var h = require('mutant/h') var when = require('mutant/when') var onceTrue = require('mutant/once-true') var computed = require('mutant/computed') var catchLinks = require('./lib/catch-links') var insertCss = require('insert-css') var nest = require('depnest') var LatestUpdate = require('./lib/latest-update') var ref = require('ssb-ref') var setupContextMenuAndSpellCheck = require('./lib/context-menu-and-spellcheck') var watch = require('mutant/watch') module.exports = function (config) { var sockets = combine( overrideConfig(config), addCommand('app.navigate', setView), require('./modules'), require('./plugs'), require('patch-settings'), require('patchcore'), require('./overrides') ) var api = entry(sockets, nest({ 'config.sync.load': 'first', 'keys.sync.id': 'first', 'sbot.obs.connection': 'first', 'sbot.async.get': 'first', 'blob.sync.url': 'first', 'page.html.render': 'first', 'app.html.search': 'first', 'app.html.channels': 'first', 'app.views': 'first', 'app.sync.externalHandler': 'first', 'app.html.progressNotifier': 'first', 'profile.sheet.edit': 'first', 'app.navigate': 'first', 'channel.obs.subscribed': 'first', 'settings.obs.get': 'first', })) setupContextMenuAndSpellCheck(api.config.sync.load()) var id = api.keys.sync.id() var latestUpdate = LatestUpdate() var subscribedChannels = api.channel.obs.subscribed(id) // prompt to setup profile on first use onceTrue(api.sbot.obs.connection, (sbot) => { sbot.latestSequence(sbot.id, (_, key) => { if (key == null) { api.profile.sheet.edit() } }) }) var views = api.app.views(api.page.html.render, [ '/public', '/private', id, '/mentions' ]) var pendingCount = views.get('/mentions').pendingUpdates watch(pendingCount, count => { electron.remote.app.setBadgeCount(count) }) watch(api.settings.obs.get('patchwork.theme', 'light'), name => { Array.from(document.head.children) .filter(c => c.tagName == 'STYLE') .forEach(c => c.innerText = '') var theme = require('./styles')[name] if (!theme) theme = require('./styles')['light'] insertCss(theme) }) var container = h(`MainWindow -${process.platform}`, [ h('div.top', [ h('span.history', [ h('a', { 'ev-click': views.goBack, classList: [ when(views.canGoBack, '-active') ] }), h('a', { 'ev-click': views.goForward, classList: [ when(views.canGoForward, '-active') ] }) ]), h('span.nav', [ tab('Public', '/public'), tab('Private', '/private'), dropTab('More', [ getSubscribedChannelMenu, ['Gatherings', '/gatherings'], ['Extended Network', '/all'], ['Settings', '/settings'] ]) ]), h('span.appTitle', [ h('span.title', 'Patchwork'), api.app.html.progressNotifier() ]), h('span', [ api.app.html.search(api.app.navigate) ]), h('span.nav', [ tab('Profile', id), tab('Mentions', '/mentions') ]) ]), when(latestUpdate, h('div.info', [ h('a.message -update', { href: 'https://github.com/ssbc/patchwork/releases' }, [ h('strong', ['Patchwork ', latestUpdate, ' has been released.']), ' Click here to download and view more info!', h('a.ignore', {'ev-click': latestUpdate.ignore}, 'X') ]) ]) ), views.html ]) catchLinks(container, (href, external) => { if (external) { electron.shell.openExternal(href) } else if (ref.isBlob(href)) { electron.shell.openExternal(api.blob.sync.url(href)) } else if (ref.isMsg(href)) { getExternalHandler(href, (err, handler) => { if (err) throw err if (handler) { handler(href) } else { api.app.navigate(href) } }) } else { api.app.navigate(href) } }) return container // scoped function getSubscribedChannelMenu () { var channels = Array.from(subscribedChannels()).sort(localeCompare) if (channels.length) { return { label: 'Channels', submenu: [ { label: 'Browse All', click () { setView('/channels') } }, {type: 'separator'} ].concat(channels.map(channel => { return { label: `#${channel}`, click () { setView(`#${channel}`) } } })) } } else { return { label: 'Browse Channels', click () { setView('/channels') } } } } function dropTab (title, items) { var element = h('a -drop', { 'ev-click': (ev) => { var rects = element.getBoundingClientRect() electron.remote.getCurrentWindow().webContents.getZoomFactor((factor) => { var menu = electron.remote.Menu.buildFromTemplate(items.map(item => { if (typeof item === 'function') { return item() } else { return { label: item[0], click () { setView(item[1]) } } } })) menu.popup(electron.remote.getCurrentWindow(), { x: Math.round(rects.left * factor), y: Math.round(rects.bottom * factor) + 4, async: true }) }) } }, title) return element } function setView (href) { views.setView(href) } function getExternalHandler (key, cb) { api.sbot.async.get(key, function (err, value) { if (err) return cb(err) cb(null, api.app.sync.externalHandler({key, value})) }) } function tab (name, view) { var instance = views.get(view) return h('a', { 'ev-click': function (ev) { if (instance.pendingUpdates && instance.pendingUpdates() && instance.reload) { instance.reload() } }, href: view, classList: [ when(selected(view), '-selected') ] }, [ name, when(instance.pendingUpdates, [ ' (', instance.pendingUpdates, ')' ]) ]) } function selected (view) { return computed([views.currentView, view], (currentView, view) => { return currentView === view }) } } function overrideConfig (config) { return { 'patchwork/config': { gives: nest('config.sync.load'), create: function (api) { return nest('config.sync.load', () => config) } } } } function addCommand (id, cb) { return { [`patchwork/command/${id}`]: { gives: nest(id), create: function (api) { return nest(id, cb) } } } } function localeCompare (a, b) { return a.localeCompare(b) }