Commit abc121a76b7427cb820cb00ba8b51b52942893c1
Run `npm run lint -- --fix`
Christian Bundy committed on 8/10/2018, 9:15:43 PMParent: 90c073d5e2077bab04f08e719f6cf7b9f4256cd8
Files changed
app/html/app.js | changed |
app/html/external-confirm.js | changed |
app/html/scroller.js | changed |
app/html/search-bar.js | changed |
app/html/settings/custom-styles.js | changed |
app/html/settings/default-tabs.js | changed |
app/html/settings/remove-exif.js | changed |
app/page/blogs.js | changed |
app/page/calendar.js | changed |
app/page/posts.js | changed |
app/page/private.js | changed |
app/page/search.js | changed |
app/sync/catch-keyboard-shortcut.js | changed |
app/sync/initialise/electronState.js | changed |
app/sync/initialise/errorCatcher.js | changed |
app/sync/initialise/styles.js | changed |
app/sync/initialise/userActionListeners.js | changed |
contact/html/relationships.js | changed |
index.js | changed |
message/html/compose.js | changed |
message/html/confirm.js | changed |
message/html/render/blog.js | changed |
post-patchcore/message/html/action/quote.js | changed |
app/html/external-confirm.js | |||
---|---|---|---|
@@ -16,16 +16,16 @@ | |||
16 | 16 … | 'ev-click': () => { | |
17 | 17 … | lb.remove() | |
18 | 18 … | open(href) | |
19 | 19 … | }}, | |
20 | - 'open' | ||
20 … | + 'open' | ||
21 | 21 … | ) | |
22 | 22 … | ||
23 | 23 … | var cancel = h('button.cancel.-subtle', { | |
24 | 24 … | 'ev-click': () => { | |
25 | 25 … | lb.remove() | |
26 | 26 … | }}, | |
27 | - 'cancel' | ||
27 … | + 'cancel' | ||
28 | 28 … | ) | |
29 | 29 … | ||
30 | 30 … | okay.addEventListener('keydown', function (ev) { | |
31 | 31 … | if (ev.keyCode === 27) cancel.click() // escape |
app/html/scroller.js | ||
---|---|---|
@@ -48,10 +48,10 @@ | ||
48 | 48 … | |
49 | 49 … | return function scroll (d) { |
50 | 50 … | selectChild((!curMsgEl || d === 'first') ? content.firstChild |
51 | 51 … | : d < 0 ? curMsgEl.previousElementSibling || content.firstChild |
52 | - : d > 0 ? curMsgEl.nextElementSibling || content.lastChild | |
53 | - : curMsgEl) | |
52 … | + : d > 0 ? curMsgEl.nextElementSibling || content.lastChild | |
53 … | + : curMsgEl) | |
54 | 54 … | |
55 | 55 … | return curMsgEl |
56 | 56 … | } |
57 | 57 … |
app/html/search-bar.js | ||
---|---|---|
@@ -43,9 +43,9 @@ | ||
43 | 43 … | } |
44 | 44 … | }) |
45 | 45 … | |
46 | 46 … | input.addEventListener('suggestselect', ev => { |
47 | - input.value = ev.detail.id // HACK : this over-rides the markdown value | |
47 … | + input.value = ev.detail.id // HACK : this over-rides the markdown value | |
48 | 48 … | goToLocation(input.value.trim(), ev) |
49 | 49 … | }) |
50 | 50 … | |
51 | 51 … | _search = h('SearchBar', input) |
app/html/settings/remove-exif.js | ||
---|---|---|
@@ -31,10 +31,9 @@ | ||
31 | 31 … | type: 'checkbox', |
32 | 32 … | checked: removeExif, |
33 | 33 … | 'ev-change': toggleRemoveExif |
34 | 34 … | }) |
35 | - ]) | |
35 … | + ]) | |
36 | 36 … | ]) |
37 | 37 … | } |
38 | 38 … | } |
39 | 39 … | } |
40 | - |
app/page/blogs.js | ||
---|---|---|
@@ -75,10 +75,10 @@ | ||
75 | 75 … | |
76 | 76 … | return function scroll (d) { |
77 | 77 … | selectChild((!curMsgEl || d === 'first') ? content.firstChild |
78 | 78 … | : d < 0 ? curMsgEl.previousElementSibling || content.firstChild |
79 | - : d > 0 ? curMsgEl.nextElementSibling || content.lastChild | |
80 | - : curMsgEl) | |
79 … | + : d > 0 ? curMsgEl.nextElementSibling || content.lastChild | |
80 … | + : curMsgEl) | |
81 | 81 … | |
82 | 82 … | return curMsgEl |
83 | 83 … | } |
84 | 84 … |
app/page/calendar.js | ||
---|---|---|
@@ -72,22 +72,22 @@ | ||
72 | 72 … | range.gte.set(new Date(gte.getFullYear(), gte.getMonth(), gte.getDate() + i)) |
73 | 73 … | range.lt.set(new Date(lt.getFullYear(), lt.getMonth(), lt.getDate() + i)) |
74 | 74 … | |
75 | 75 … | function isMonthInterval (gte, lt) { |
76 | - return gte.getDate() === 1 && // 1st of month | |
77 | - lt.getDate() === 1 && // to the 1st of the month | |
76 … | + return gte.getDate() === 1 && // 1st of month | |
77 … | + lt.getDate() === 1 && // to the 1st of the month | |
78 | 78 … | gte.getMonth() + 1 === lt.getMonth() && // one month gap |
79 | 79 … | gte.getFullYear() === lt.getFullYear() |
80 | 80 … | } |
81 | 81 … | |
82 | 82 … | function isWeekInterval (gte, lt) { |
83 | 83 … | console.log( |
84 | 84 … | new Date(gte.getFullYear(), gte.getMonth(), gte.getDate() + 7).toISOString() === lt.toISOString(), |
85 | 85 … | new Date(gte.getFullYear(), gte.getMonth(), gte.getDate() + 7).toISOString(), |
86 | - lt.toISOString(), | |
86 … | + lt.toISOString() | |
87 | 87 … | ) |
88 | 88 … | return gte.getDay() === 1 && // from monday |
89 | - lt.getDay() === 1 && // to just inside monday | |
89 … | + lt.getDay() === 1 && // to just inside monday | |
90 | 90 … | new Date(gte.getFullYear(), gte.getMonth(), gte.getDate() + 7).toISOString() === lt.toISOString() |
91 | 91 … | } |
92 | 92 … | } |
93 | 93 … |
app/page/posts.js | ||
---|---|---|
@@ -407,10 +407,10 @@ | ||
407 | 407 … | |
408 | 408 … | return function scroll (d) { |
409 | 409 … | selectChild((!curMsgEl || d === 'first') ? content.firstChild |
410 | 410 … | : d < 0 ? curMsgEl.previousElementSibling || content.firstChild |
411 | - : d > 0 ? curMsgEl.nextElementSibling || content.lastChild | |
412 | - : curMsgEl) | |
411 … | + : d > 0 ? curMsgEl.nextElementSibling || content.lastChild | |
412 … | + : curMsgEl) | |
413 | 413 … | |
414 | 414 … | return curMsgEl |
415 | 415 … | } |
416 | 416 … |
app/page/private.js | ||
---|---|---|
@@ -90,5 +90,4 @@ | ||
90 | 90 … | |
91 | 91 … | return next(api.feed.pull.private, _opts, ['timestamp']) |
92 | 92 … | } |
93 | 93 … | } |
94 | - |
app/page/search.js | ||
---|---|---|
@@ -75,5 +75,4 @@ | ||
75 | 75 … | searcher.query = query |
76 | 76 … | searcher.highlight() |
77 | 77 … | return el |
78 | 78 … | } |
79 | - |
app/sync/catch-keyboard-shortcut.js | ||
---|---|---|
@@ -4,9 +4,9 @@ | ||
4 | 4 … | |
5 | 5 … | exports.needs = nest({ |
6 | 6 … | 'app.html.searchBar': 'first', |
7 | 7 … | 'app.html.tabs': 'first', |
8 | - 'app.sync.goTo': 'first', | |
8 … | + 'app.sync.goTo': 'first' | |
9 | 9 … | }) |
10 | 10 … | |
11 | 11 … | var gPressed = false |
12 | 12 … | |
@@ -34,9 +34,9 @@ | ||
34 | 34 … | function textFieldShortcuts (ev) { |
35 | 35 … | switch (ev.keyCode) { |
36 | 36 … | case 13: // ctrl+enter |
37 | 37 … | if (ev.ctrlKey) { |
38 | - ev.target.publish() // expects the textField to have a publish method | |
38 … | + ev.target.publish() // expects the textField to have a publish method | |
39 | 39 … | } |
40 | 40 … | return |
41 | 41 … | case 27: // esc |
42 | 42 … | return ev.target.blur() |
app/sync/initialise/electronState.js | ||
---|---|---|
@@ -4,9 +4,9 @@ | ||
4 | 4 … | exports.gives = nest('app.sync.initialise') |
5 | 5 … | |
6 | 6 … | exports.needs = nest({ |
7 | 7 … | 'settings.sync.get': 'first', |
8 | - 'settings.sync.set': 'first', | |
8 … | + 'settings.sync.set': 'first' | |
9 | 9 … | }) |
10 | 10 … | |
11 | 11 … | exports.create = function (api) { |
12 | 12 … | return nest('app.sync.initialise', errorCatcher) |
@@ -33,6 +33,4 @@ | ||
33 | 33 … | if (bounds) { getCurrentWindow().setBounds(bounds) } |
34 | 34 … | /// /// |
35 | 35 … | } |
36 | 36 … | } |
37 | - | |
38 | - |
app/sync/initialise/errorCatcher.js | ||
---|---|---|
@@ -20,5 +20,4 @@ | ||
20 | 20 … | addError(ev.error || ev) |
21 | 21 … | }) |
22 | 22 … | } |
23 | 23 … | } |
24 | - |
app/sync/initialise/styles.js | ||
---|---|---|
@@ -31,5 +31,4 @@ | ||
31 | 31 … | function values (object) { |
32 | 32 … | const keys = Object.keys(object) |
33 | 33 … | return keys.map(k => object[k]) |
34 | 34 … | } |
35 | - |
app/sync/initialise/userActionListeners.js | ||
---|---|---|
@@ -30,5 +30,4 @@ | ||
30 | 30 … | tabs.closeCurrentTab() |
31 | 31 … | }) |
32 | 32 … | } |
33 | 33 … | } |
34 | - |
contact/html/relationships.js | ||
---|---|---|
@@ -43,10 +43,10 @@ | ||
43 | 43 … | |
44 | 44 … | var relationshipStatus = computed([IFollowThem, theyFollowMe], (IFollowThem, theyFollowMe) => { |
45 | 45 … | return IFollowThem && theyFollowMe ? '- you are friends' |
46 | 46 … | : IFollowThem ? '- you follow them' |
47 | - : theyFollowMe ? '- they follow you' | |
48 | - : '' | |
47 … | + : theyFollowMe ? '- they follow you' | |
48 … | + : '' | |
49 | 49 … | }) |
50 | 50 … | |
51 | 51 … | function imageLink (id) { |
52 | 52 … | return h('a', |
index.js | ||
---|---|---|
@@ -30,23 +30,23 @@ | ||
30 | 30 … | { type: 'separator' }, |
31 | 31 … | { |
32 | 32 … | label: 'Close Tab', |
33 | 33 … | accelerator: 'CmdOrCtrl+W', |
34 | - click() { | |
34 … | + click () { | |
35 | 35 … | windows.main.webContents.send('closeTab') |
36 | 36 … | } |
37 | 37 … | }, |
38 | 38 … | { |
39 | 39 … | label: 'Select Next Tab', |
40 | 40 … | accelerator: 'CmdOrCtrl+Shift+]', |
41 | - click() { | |
41 … | + click () { | |
42 | 42 … | windows.main.webContents.send('nextTab') |
43 | 43 … | } |
44 | 44 … | }, |
45 | 45 … | { |
46 | 46 … | label: 'Select Previous Tab', |
47 | 47 … | accelerator: 'CmdOrCtrl+Shift+[', |
48 | - click() { | |
48 … | + click () { | |
49 | 49 … | windows.main.webContents.send('previousTab') |
50 | 50 … | } |
51 | 51 … | }, |
52 | 52 … | { type: 'separator' }, |
message/html/compose.js | ||
---|---|---|
@@ -168,9 +168,9 @@ | ||
168 | 168 … | api.channel.async.suggest(inputText.slice(1), cb) |
169 | 169 … | } |
170 | 170 … | }, {cls: 'PatchSuggest'}) |
171 | 171 … | channelInput.addEventListener('suggestselect', ev => { |
172 | - channelInput.value = ev.detail.id // HACK : this over-rides the markdown value | |
172 … | + channelInput.value = ev.detail.id // HACK : this over-rides the markdown value | |
173 | 173 … | }) |
174 | 174 … | |
175 | 175 … | addSuggest(textArea, (inputText, cb) => { |
176 | 176 … | const char = inputText[0] |
message/html/confirm.js | ||
---|---|---|
@@ -39,17 +39,17 @@ | ||
39 | 39 … | 'ev-click': () => { |
40 | 40 … | lb.remove() |
41 | 41 … | api.message.async.publish(content, cb) |
42 | 42 … | }}, |
43 | - 'okay' | |
43 … | + 'okay' | |
44 | 44 … | ) |
45 | 45 … | |
46 | 46 … | var cancel = h('button.cancel.-subtle', { |
47 | 47 … | 'ev-click': () => { |
48 | 48 … | lb.remove() |
49 | 49 … | cb(null) |
50 | 50 … | }}, |
51 | - 'cancel' | |
51 … | + 'cancel' | |
52 | 52 … | ) |
53 | 53 … | |
54 | 54 … | okay.addEventListener('keydown', (ev) => { |
55 | 55 … | if (ev.keyCode === 27) cancel.click() // escape |
message/html/render/blog.js | ||
---|---|---|
@@ -11,9 +11,9 @@ | ||
11 | 11 … | 'blob.sync.url': 'first', |
12 | 12 … | 'message.html.decorate': 'reduce', |
13 | 13 … | 'message.html.layout': 'first', |
14 | 14 … | 'message.html.markdown': 'first', |
15 | - 'sbot.obs.connection': 'first', | |
15 … | + 'sbot.obs.connection': 'first' | |
16 | 16 … | // 'history.sync.push': 'first', |
17 | 17 … | }) |
18 | 18 … | |
19 | 19 … | exports.create = function (api) { |
@@ -39,15 +39,14 @@ | ||
39 | 39 … | layout: 'default' |
40 | 40 … | }, opts)) |
41 | 41 … | |
42 | 42 … | return api.message.html.decorate(element, { msg }) |
43 | - | |
44 | 43 … | } |
45 | 44 … | } |
46 | 45 … | |
47 | 46 … | function BlogFull (blog, renderMd) { |
48 | 47 … | return computed(blog.body, body => { |
49 | - if (!isEmpty(body)) { | |
48 … | + if (!isEmpty(body)) { | |
50 | 49 … | return h('BlogFull.Markdown', [ |
51 | 50 … | h('h1', blog.title), |
52 | 51 … | renderMd(body) |
53 | 52 … | ]) |
@@ -69,9 +68,9 @@ | ||
69 | 68 … | 'background-position': 'center', |
70 | 69 … | 'background-size': 'cover' |
71 | 70 … | } |
72 | 71 … | }), |
73 | - h('Thumbnail -empty', { | |
72 … | + h('Thumbnail -empty', { | |
74 | 73 … | style: { 'background-color': color(blog.title) } |
75 | 74 … | }, [ |
76 | 75 … | h('i.fa.fa-file-text-o') |
77 | 76 … | ]) |
@@ -95,5 +94,4 @@ | ||
95 | 94 … | ]) |
96 | 95 … | |
97 | 96 … | return b |
98 | 97 … | } |
99 | - |
post-patchcore/message/html/action/quote.js | ||
---|---|---|
@@ -9,9 +9,9 @@ | ||
9 | 9 … | |
10 | 10 … | exports.create = (api) => { |
11 | 11 … | return nest('message.html.action', function quote (msg) { |
12 | 12 … | return h('a', { |
13 | - href: '#', | |
13 … | + href: '#', | |
14 | 14 … | 'ev-click': () => api.app.sync.goTo({ action: 'quote', key: msg.key, value: msg.value }) |
15 | - }, 'Quote') | |
15 … | + }, 'Quote') | |
16 | 16 … | }) |
17 | 17 … | } |
Built with git-ssb-web