Commit cc390daa09626dec00f9649bd2685152e9466432
run standard --fix
Matt McKegg committed on 10/19/2017, 2:30:12 AMParent: 19df811a89f199ca6aa042c09ff9aeaa2e7ea1f8
Files changed
contact/obs.js | changed |
feed/pull/channel.js | changed |
feed/pull/public.js | changed |
feed/pull/rollup.js | changed |
feed/pull/type.js | changed |
message/html/render/channel.js | changed |
message/html/render/issue.js | changed |
message/html/render/post.js | changed |
message/html/render/vote.js | changed |
contact/obs.js | ||
---|---|---|
@@ -3,9 +3,9 @@ | ||
3 | 3 … | var pull = require('pull-stream') |
4 | 4 … | var ref = require('ssb-ref') |
5 | 5 … | |
6 | 6 … | exports.needs = nest({ |
7 | - 'sbot.pull.stream': 'first', | |
7 … | + 'sbot.pull.stream': 'first' | |
8 | 8 … | }) |
9 | 9 … | |
10 | 10 … | exports.gives = nest({ |
11 | 11 … | 'contact.obs': ['following', 'followers', 'blocking', 'blockers'], |
feed/pull/channel.js | ||
---|---|---|
@@ -4,9 +4,9 @@ | ||
4 | 4 … | |
5 | 5 … | exports.gives = nest('feed.pull.channel') |
6 | 6 … | exports.needs = nest({ |
7 | 7 … | 'sbot.pull.backlinks': 'first', |
8 | - 'message.sync.isBlocked': 'first', | |
8 … | + 'message.sync.isBlocked': 'first' | |
9 | 9 … | }) |
10 | 10 … | |
11 | 11 … | exports.create = function (api) { |
12 | 12 … | return nest('feed.pull.channel', function (channel) { |
feed/pull/public.js | ||
---|---|---|
@@ -3,9 +3,9 @@ | ||
3 | 3 … | |
4 | 4 … | exports.gives = nest('feed.pull.public') |
5 | 5 … | exports.needs = nest({ |
6 | 6 … | 'sbot.pull.feed': 'first', |
7 | - 'message.sync.isBlocked': 'first', | |
7 … | + 'message.sync.isBlocked': 'first' | |
8 | 8 … | }) |
9 | 9 … | |
10 | 10 … | exports.create = function (api) { |
11 | 11 … | return nest('feed.pull.public', (opts) => { |
feed/pull/rollup.js | ||
---|---|---|
@@ -13,9 +13,9 @@ | ||
13 | 13 … | 'backlinks.obs.for': 'first', |
14 | 14 … | 'sbot.async.get': 'first', |
15 | 15 … | 'message.sync.isBlocked': 'first', |
16 | 16 … | 'message.sync.root': 'first', |
17 | - 'message.sync.unbox': 'first', | |
17 … | + 'message.sync.unbox': 'first' | |
18 | 18 … | }) |
19 | 19 … | |
20 | 20 … | exports.gives = nest('feed.pull.rollup', true) |
21 | 21 … |
feed/pull/type.js | ||
---|---|---|
@@ -4,9 +4,9 @@ | ||
4 | 4 … | |
5 | 5 … | exports.gives = nest('feed.pull.type') |
6 | 6 … | exports.needs = nest({ |
7 | 7 … | 'sbot.pull.messagesByType': 'first', |
8 | - 'message.sync.isBlocked': 'first', | |
8 … | + 'message.sync.isBlocked': 'first' | |
9 | 9 … | }) |
10 | 10 … | |
11 | 11 … | exports.create = function (api) { |
12 | 12 … | return nest('feed.pull.type', (type) => { |
message/html/render/channel.js | ||
---|---|---|
@@ -17,15 +17,15 @@ | ||
17 | 17 … | render: true |
18 | 18 … | } |
19 | 19 … | }) |
20 | 20 … | |
21 | -exports.create = function(api) { | |
21 … | +exports.create = function (api) { | |
22 | 22 … | return nest('message.html', { |
23 | 23 … | canRender: isRenderable, |
24 | 24 … | render: channel |
25 | 25 … | }) |
26 | 26 … | |
27 | - function channel(msg, opts) { | |
27 … | + function channel (msg, opts) { | |
28 | 28 … | if (!isRenderable(msg)) return |
29 | 29 … | var element = api.message.html.layout(msg, extend({ |
30 | 30 … | content: renderContent(msg), |
31 | 31 … | layout: 'mini' |
@@ -35,17 +35,17 @@ | ||
35 | 35 … | msg |
36 | 36 … | }) |
37 | 37 … | } |
38 | 38 … | |
39 | - function renderContent(msg) { | |
39 … | + function renderContent (msg) { | |
40 | 40 … | var channel = '#' + msg.value.content.channel |
41 | 41 … | return [ |
42 | 42 … | msg.value.content.subscribed ? 'subscribed to channel' : 'unsubscribed from channel', ' ', h('a.channel', { |
43 | 43 … | href: channel |
44 | 44 … | }, channel) |
45 | 45 … | ] |
46 | 46 … | } |
47 | 47 … | |
48 | - function isRenderable(msg) { | |
48 … | + function isRenderable (msg) { | |
49 | 49 … | return msg.value.content.type === 'channel' ? true : undefined |
50 | 50 … | } |
51 | 51 … | } |
message/html/render/issue.js | |||
---|---|---|---|
@@ -17,12 +17,12 @@ | |||
17 | 17 … | render: true | |
18 | 18 … | } | |
19 | 19 … | }) | |
20 | 20 … | ||
21 | -exports.create = function(api) { | ||
21 … | +exports.create = function (api) { | ||
22 | 22 … | return nest('message.html', { | |
23 | 23 … | canRender: isRenderable, | |
24 | - render: function(msg, opts) { | ||
24 … | + render: function (msg, opts) { | ||
25 | 25 … | if (!isRenderable(msg)) return | |
26 | 26 … | var element = api.message.html.layout(msg, extend({ | |
27 | 27 … | content: messageContent(msg), | |
28 | 28 … | layout: 'default' | |
@@ -33,13 +33,13 @@ | |||
33 | 33 … | }) | |
34 | 34 … | } | |
35 | 35 … | }) | |
36 | 36 … | ||
37 | - function messageContent(data) { | ||
37 … | + function messageContent (data) { | ||
38 | 38 … | if (!data.value.content || !data.value.content.text) return | |
39 | 39 … | return h('div', {}, api.message.html.markdown(data.value.content)) | |
40 | 40 … | } | |
41 | 41 … | ||
42 | - function isRenderable(msg) { | ||
42 … | + function isRenderable (msg) { | ||
43 | 43 … | return msg.value.content.type === 'issue' ? true : undefined | |
44 | 44 … | } | |
45 | 45 … | } |
message/html/render/post.js | ||
---|---|---|
@@ -17,12 +17,12 @@ | ||
17 | 17 … | render: true |
18 | 18 … | } |
19 | 19 … | }) |
20 | 20 … | |
21 | -exports.create = function(api) { | |
21 … | +exports.create = function (api) { | |
22 | 22 … | return nest('message.html', { |
23 | 23 … | canRender: isRenderable, |
24 | - render: function(msg, opts) { | |
24 … | + render: function (msg, opts) { | |
25 | 25 … | if (!isRenderable(msg)) return |
26 | 26 … | var element = api.message.html.layout(msg, extend({ |
27 | 27 … | title: messageTitle(msg), |
28 | 28 … | content: msg.isBlocked ? 'Content of a blocked user' : messageContent(msg), |
@@ -34,18 +34,18 @@ | ||
34 | 34 … | }) |
35 | 35 … | } |
36 | 36 … | }) |
37 | 37 … | |
38 | - function isRenderable(msg) { | |
38 … | + function isRenderable (msg) { | |
39 | 39 … | return (msg.value.content.type === 'post') ? true : undefined |
40 | 40 … | } |
41 | 41 … | |
42 | - function messageContent(data) { | |
42 … | + function messageContent (data) { | |
43 | 43 … | if (!data.value.content || !data.value.content.text) return |
44 | 44 … | return h('div', {}, api.message.html.markdown(data.value.content)) |
45 | 45 … | } |
46 | 46 … | |
47 | - function messageTitle(data) { | |
47 … | + function messageTitle (data) { | |
48 | 48 … | var root = data.value.content && data.value.content.root |
49 | 49 … | return !root ? null : h('span', ['re: ', api.message.html.link(root)]) |
50 | 50 … | } |
51 | 51 … | } |
message/html/render/vote.js | ||
---|---|---|
@@ -33,9 +33,9 @@ | ||
33 | 33 … | |
34 | 34 … | return api.message.html.decorate(element, { msg }) |
35 | 35 … | } |
36 | 36 … | |
37 | - function isRenderable(msg) { | |
37 … | + function isRenderable (msg) { | |
38 | 38 … | return msg.value.content.type === 'vote' ? true : undefined |
39 | 39 … | } |
40 | 40 … | |
41 | 41 … | function renderContent (msg) { |
Built with git-ssb-web