git ssb

16+

Dominic / patchbay



Tree: 20b068c61874ad0cae6afbd9ab2ffefe1fb2f74c

Files: 20b068c61874ad0cae6afbd9ab2ffefe1fb2f74c / app / html / tabs.js

1858 bytesRaw
1const nest = require('depnest')
2const { h } = require('mutant')
3const Tabs = require('hypertabs')
4
5exports.gives = nest({
6 'app.html.tabs': true
7})
8
9exports.needs = nest({
10 'app.html.menu': 'first',
11 'app.html.searchBar': 'first',
12 'app.sync.goTo': 'first',
13 'history.obs.store': 'first',
14 'history.sync.push': 'first'
15})
16
17exports.create = function (api) {
18 var _tabs
19
20 return nest({
21 'app.html.tabs': tabs
22 })
23
24 function tabs (initialTabs = []) {
25 if (_tabs) return _tabs
26
27 const onSelect = (indexes) => {
28 const { id } = _tabs.get(indexes[0]).content
29
30 try {
31 var location = JSON.parse(id)
32 } catch (e) {
33 throw new Error('app.html.tabs expects all page ids to be stringified location objects')
34 }
35
36 api.history.sync.push(location)
37 search.input.value = buildSearchBarTermFromLocation(location)
38 }
39 const onClose = (page) => {
40 var history = api.history.obs.store()
41 const prunedHistory = history().filter(loc => {
42 return JSON.stringify(loc) != page.id
43 })
44 history.set(prunedHistory)
45 }
46
47 const search = api.app.html.searchBar()
48 const menu = api.app.html.menu()
49
50 _tabs = Tabs({
51 onSelect,
52 onClose,
53 append: h('div.navExtra', [ search, menu ])
54 })
55 _tabs.currentPage = () => _tabs.get(_tabs.selected[0]).firstChild
56
57 // # TODO: review - this works but is strange
58 initialTabs.forEach(p => api.app.sync.goTo(p))
59 api.app.sync.goTo(initialTabs[0])
60 return _tabs
61 }
62}
63
64// TODO - move this responsibility out to the searchBar?
65function buildSearchBarTermFromLocation (location) {
66 const { page, query } = location
67
68 if (page === 'search') return '?' + query
69
70 const keys = Object.keys(location)
71 if (page && keys.length === 1) return '/' + page
72
73 return keys
74 .map(k => location[k])
75 .join(', ')
76}
77
78

Built with git-ssb-web