Commit 3451510316992d414ec76ba5b29681fe359b7428
Remove unused dependency declarations
These seem to be mostly due to code using the dependencies being moved to other modules, but the `needs` declarations staying behind. Guess that's what happens when you have no tool support.Daan Wynen committed on 2/7/2021, 8:31:23 PM
Parent: 3e1a25c038eb978d89a78469d8653cb915a2d399
Files changed
lib/depject/about/obs.js | ||
---|---|---|
@@ -8,10 +8,9 @@ | ||
8 | 8 … | const MutantPullDict = require('../../mutant-pull-dict') |
9 | 9 … | |
10 | 10 … | exports.needs = nest({ |
11 | 11 … | 'sbot.pull.stream': 'first', |
12 | - 'blob.sync.url': 'first', | |
13 | - 'keys.sync.id': 'first' | |
12 … | + 'blob.sync.url': 'first' | |
14 | 13 … | }) |
15 | 14 … | |
16 | 15 … | exports.gives = nest({ |
17 | 16 … | 'about.obs': [ |
lib/depject/channel/html/preview.js | ||
---|---|---|
@@ -5,10 +5,8 @@ | ||
5 | 5 … | const send = require('mutant/send') |
6 | 6 … | const normalizeChannel = require('ssb-ref').normalizeChannel |
7 | 7 … | |
8 | 8 … | exports.needs = nest({ |
9 | - 'about.obs.name': 'first', | |
10 | - 'about.html.image': 'first', | |
11 | 9 … | 'keys.sync.id': 'first', |
12 | 10 … | 'app.navigate': 'first', |
13 | 11 … | 'intl.sync.i18n': 'first', |
14 | 12 … | 'intl.sync.i18n_n': 'first', |
lib/depject/channel/obs/subscribers.js | ||
---|---|---|
@@ -1,9 +1,8 @@ | ||
1 | 1 … | const nest = require('depnest') |
2 | 2 … | const MutantPullReduce = require('mutant-pull-reduce') |
3 | 3 … | |
4 | 4 … | exports.needs = nest({ |
5 | - 'keys.sync.id': 'first', | |
6 | 5 … | 'sbot.pull.stream': 'first' |
7 | 6 … | }) |
8 | 7 … | |
9 | 8 … | exports.gives = nest('channel.obs.subscribers') |
lib/depject/contact/async.js | ||
---|---|---|
@@ -1,9 +1,8 @@ | ||
1 | 1 … | const nest = require('depnest') |
2 | 2 … | const ref = require('ssb-ref') |
3 | 3 … | |
4 | 4 … | exports.needs = nest({ |
5 | - 'contact.obs.following': 'first', | |
6 | 5 … | 'sbot.async.publish': 'first', |
7 | 6 … | 'sbot.async.friendsGet': 'first' |
8 | 7 … | }) |
9 | 8 … |
lib/depject/contact/html/follow-toggle.js | ||
---|---|---|
@@ -9,9 +9,8 @@ | ||
9 | 9 … | 'message.async.publish': 'first', |
10 | 10 … | 'sbot.async.publish': 'first', |
11 | 11 … | 'contact.obs.states': 'first', |
12 | 12 … | 'contact.obs.followers': 'first', |
13 | - 'contact.obs.blockers': 'first', | |
14 | 13 … | 'contact.obs.ignores': 'first' |
15 | 14 … | }) |
16 | 15 … | |
17 | 16 … | exports.create = function (api) { |
lib/depject/feed/html/rollup.js | ||
---|---|---|
@@ -23,12 +23,9 @@ | ||
23 | 23 … | |
24 | 24 … | exports.needs = nest({ |
25 | 25 … | 'message.html.canRender': 'first', |
26 | 26 … | 'message.html.render': 'first', |
27 | - 'message.sync.unbox': 'first', | |
28 | 27 … | 'profile.html.person': 'first', |
29 | - 'message.html.link': 'first', | |
30 | - 'sbot.async.get': 'first', | |
31 | 28 … | 'keys.sync.id': 'first', |
32 | 29 … | 'intl.sync.i18n': 'first', |
33 | 30 … | 'intl.sync.i18n_n': 'first', |
34 | 31 … | 'message.html.missing': 'first', |
lib/depject/intl/sync/i18n.js | ||
---|---|---|
@@ -13,12 +13,9 @@ | ||
13 | 13 … | 'startsWith' |
14 | 14 … | ]) |
15 | 15 … | |
16 | 16 … | exports.needs = nest({ |
17 | - 'intl.sync.locale': 'first', | |
18 | - 'intl.sync.locales': 'reduce', | |
19 | - 'settings.obs.get': 'first', | |
20 | - 'settings.sync.set': 'first' | |
17 … | + 'settings.obs.get': 'first' | |
21 | 18 … | }) |
22 | 19 … | |
23 | 20 … | exports.create = (api) => { |
24 | 21 … | let _locale |
lib/depject/message/async/name.js | ||
---|---|---|
@@ -4,12 +4,10 @@ | ||
4 | 4 … | const { resolve, onceTrue } = require('mutant') |
5 | 5 … | |
6 | 6 … | exports.needs = nest({ |
7 | 7 … | 'sbot.async.get': 'first', |
8 | - 'sbot.pull.links': 'first', | |
9 | 8 … | 'message.sync.unbox': 'first', |
10 | - 'about.obs.socialValue': 'first', | |
11 | - 'keys.sync.id': 'first' | |
9 … | + 'about.obs.socialValue': 'first' | |
12 | 10 … | }) |
13 | 11 … | exports.gives = nest('message.async.name') |
14 | 12 … | |
15 | 13 … | // needs an async version |
lib/depject/message/html/actions.js | ||
---|---|---|
@@ -4,13 +4,11 @@ | ||
4 | 4 … | |
5 | 5 … | exports.needs = nest({ |
6 | 6 … | 'intl.sync.i18n': 'first', |
7 | 7 … | 'app.navigate': 'first', |
8 | - 'keys.sync.id': 'first', | |
9 | 8 … | 'message.obs.doesLike': 'first', |
10 | 9 … | 'sbot.async.publish': 'first', |
11 | - 'sheet.editTags': 'first', | |
12 | - 'sbot.pull.stream': 'first' | |
10 … | + 'sheet.editTags': 'first' | |
13 | 11 … | }) |
14 | 12 … | |
15 | 13 … | exports.gives = nest('message.html.actions') |
16 | 14 … |
lib/depject/message/html/forks.js | ||
---|---|---|
@@ -5,10 +5,9 @@ | ||
5 | 5 … | |
6 | 6 … | exports.needs = nest({ |
7 | 7 … | 'backlinks.obs.forks': 'first', |
8 | 8 … | 'message.obs': { |
9 | - name: 'first', | |
10 | - author: 'first' | |
9 … | + name: 'first' | |
11 | 10 … | }, |
12 | 11 … | 'profile.html.person': 'first', |
13 | 12 … | 'intl.sync.i18n': 'first' |
14 | 13 … | }) |
lib/depject/message/html/layout/default.js | ||
---|---|---|
@@ -5,10 +5,8 @@ | ||
5 | 5 … | const timestamp = require('../../../../message/html/timestamp') |
6 | 6 … | |
7 | 7 … | exports.needs = nest({ |
8 | 8 … | 'profile.html.person': 'first', |
9 | - 'message.obs.name': 'first', | |
10 | - 'message.obs.author': 'first', | |
11 | 9 … | 'contact.obs.following': 'first', |
12 | 10 … | 'keys.sync.id': 'first', |
13 | 11 … | 'message.html': { |
14 | 12 … | link: 'first', |
lib/depject/message/html/layout/mini.js | ||
---|---|---|
@@ -5,9 +5,8 @@ | ||
5 | 5 … | const timestamp = require('../../../../message/html/timestamp') |
6 | 6 … | |
7 | 7 … | exports.needs = nest({ |
8 | 8 … | 'profile.html.person': 'first', |
9 | - 'message.obs.name': 'first', | |
10 | 9 … | 'contact.obs.following': 'first', |
11 | 10 … | 'keys.sync.id': 'first', |
12 | 11 … | 'message.html': { |
13 | 12 … | link: 'first', |
lib/depject/message/html/metas.js | ||
---|---|---|
@@ -7,9 +7,8 @@ | ||
7 | 7 … | exports.needs = nest({ |
8 | 8 … | 'message.obs.likeCount': 'first', |
9 | 9 … | 'sheet.profiles': 'first', |
10 | 10 … | 'about.obs.name': 'first', |
11 | - 'sbot.pull.stream': 'first', | |
12 | 11 … | 'intl.sync.i18n': 'first', |
13 | 12 … | 'intl.sync.i18n_n': 'first', |
14 | 13 … | 'sbot.obs.connection': 'first', |
15 | 14 … | 'sheet.tags.render': 'first', |
lib/depject/message/html/references.js | ||
---|---|---|
@@ -4,10 +4,9 @@ | ||
4 | 4 … | |
5 | 5 … | exports.needs = nest({ |
6 | 6 … | 'backlinks.obs.references': 'first', |
7 | 7 … | 'message.obs': { |
8 | - name: 'first', | |
9 | - author: 'first' | |
8 … | + name: 'first' | |
10 | 9 … | }, |
11 | 10 … | 'profile.html.person': 'first', |
12 | 11 … | 'intl.sync.i18n': 'first' |
13 | 12 … | }) |
lib/depject/message/html/render/about.js | ||
---|---|---|
@@ -9,9 +9,8 @@ | ||
9 | 9 … | 'message.html': { |
10 | 10 … | layout: 'first', |
11 | 11 … | markdown: 'first' |
12 | 12 … | }, |
13 | - 'keys.sync.id': 'first', | |
14 | 13 … | 'profile.html.person': 'first', |
15 | 14 … | 'about.obs.name': 'first', |
16 | 15 … | 'blob.sync.url': 'first', |
17 | 16 … | 'intl.sync.i18n': 'first' |
lib/depject/message/html/render/blog.js | ||
---|---|---|
@@ -12,10 +12,9 @@ | ||
12 | 12 … | 'about.obs.color': 'first', |
13 | 13 … | 'app.navigate': 'first', |
14 | 14 … | 'blob.sync.url': 'first', |
15 | 15 … | 'message.html.layout': 'first', |
16 | - 'message.html.markdown': 'first', | |
17 | - 'sbot.obs.connection': 'first' | |
16 … | + 'message.html.markdown': 'first' | |
18 | 17 … | }) |
19 | 18 … | |
20 | 19 … | exports.create = function (api) { |
21 | 20 … | return nest('message.html', { |
lib/depject/message/html/render/issue.js | ||
---|---|---|
@@ -5,9 +5,8 @@ | ||
5 | 5 … | |
6 | 6 … | exports.needs = nest({ |
7 | 7 … | 'message.html': { |
8 | 8 … | layout: 'first', |
9 | - link: 'first', | |
10 | 9 … | markdown: 'first' |
11 | 10 … | } |
12 | 11 … | }) |
13 | 12 … |
lib/depject/page/html/render/all.js | ||
---|---|---|
@@ -4,9 +4,8 @@ | ||
4 | 4 … | exports.needs = nest({ |
5 | 5 … | 'sbot.pull.resumeStream': 'first', |
6 | 6 … | 'sbot.pull.stream': 'first', |
7 | 7 … | 'message.html.compose': 'first', |
8 | - 'message.async.publish': 'first', | |
9 | 8 … | 'feed.html.rollup': 'first', |
10 | 9 … | 'intl.sync.i18n': 'first' |
11 | 10 … | }) |
12 | 11 … |
lib/depject/page/html/render/attending-gatherings.js | ||
---|---|---|
@@ -5,9 +5,8 @@ | ||
5 | 5 … | 'feed.html.rollup': 'first', |
6 | 6 … | 'sbot.pull.resumeStream': 'first', |
7 | 7 … | 'app.navigate': 'first', |
8 | 8 … | 'sbot.pull.stream': 'first', |
9 | - 'contact.obs.following': 'first', | |
10 | 9 … | 'intl.sync.i18n': 'first' |
11 | 10 … | }) |
12 | 11 … | |
13 | 12 … | exports.gives = nest('page.html.render') |
lib/depject/page/html/render/channel.js | |||
---|---|---|---|
@@ -8,10 +8,8 @@ | |||
8 | 8 … | 'feed.html.rollup': 'first', | |
9 | 9 … | 'feed.html.followWarning': 'first', | |
10 | 10 … | 'sbot.pull.resumeStream': 'first', | |
11 | 11 … | 'sbot.pull.stream': 'first', | |
12 | - 'sbot.pull.log': 'first', | ||
13 | - 'message.async.publish': 'first', | ||
14 | 12 … | 'keys.sync.id': 'first', | |
15 | 13 … | 'intl.sync.i18n': 'first', | |
16 | 14 … | 'settings.obs.get': 'first', | |
17 | 15 … | 'profile.obs.contact': 'first' |
lib/depject/page/html/render/channels.js | ||
---|---|---|
@@ -1,15 +1,13 @@ | ||
1 | 1 … | const nest = require('depnest') |
2 | 2 … | const { h, when, computed, map } = require('mutant') |
3 | 3 … | |
4 | 4 … | exports.needs = nest({ |
5 | - 'message.async.publish': 'first', | |
6 | 5 … | 'keys.sync.id': 'first', |
7 | 6 … | 'channel.obs': { |
8 | 7 … | subscribed: 'first', |
9 | 8 … | recent: 'first' |
10 | - }, | |
11 | - 'intl.sync.i18n': 'first' | |
9 … | + } | |
12 | 10 … | }) |
13 | 11 … | |
14 | 12 … | exports.gives = nest('page.html.render') |
15 | 13 … |
lib/depject/page/html/render/gatherings.js | ||
---|---|---|
@@ -5,10 +5,8 @@ | ||
5 | 5 … | 'feed.html.rollup': 'first', |
6 | 6 … | 'sbot.pull.resumeStream': 'first', |
7 | 7 … | 'sbot.pull.stream': 'first', |
8 | 8 … | 'gathering.sheet.edit': 'first', |
9 | - 'keys.sync.id': 'first', | |
10 | - 'contact.obs.following': 'first', | |
11 | 9 … | 'intl.sync.i18n': 'first' |
12 | 10 … | }) |
13 | 11 … | |
14 | 12 … | exports.gives = nest('page.html.render') |
lib/depject/page/html/render/message.js | ||
---|---|---|
@@ -15,9 +15,8 @@ | ||
15 | 15 … | 'message.obs.name': 'first', |
16 | 16 … | 'message.html.render': 'first', |
17 | 17 … | 'message.html.compose': 'first', |
18 | 18 … | 'message.html.missing': 'first', |
19 | - 'message.html.metas': 'first', | |
20 | 19 … | 'profile.html.person': 'first', |
21 | 20 … | 'sbot.async.get': 'first', |
22 | 21 … | 'intl.sync.i18n': 'first', |
23 | 22 … | 'sbot.obs.connection': 'first' |
lib/depject/page/html/render/participating.js | ||
---|---|---|
@@ -3,10 +3,8 @@ | ||
3 | 3 … | |
4 | 4 … | exports.needs = nest({ |
5 | 5 … | 'sbot.pull.resumeStream': 'first', |
6 | 6 … | 'sbot.pull.stream': 'first', |
7 | - 'message.html.compose': 'first', | |
8 | - 'message.async.publish': 'first', | |
9 | 7 … | 'feed.html.rollup': 'first', |
10 | 8 … | 'keys.sync.id': 'first', |
11 | 9 … | 'intl.sync.i18n': 'first', |
12 | 10 … | 'settings.obs.get': 'first' |
lib/depject/page/html/render/public.js | ||
---|---|---|
@@ -20,20 +20,17 @@ | ||
20 | 20 … | 'about.obs.name': 'first', |
21 | 21 … | 'invite.sheet': 'first', |
22 | 22 … | |
23 | 23 … | 'message.html.compose': 'first', |
24 | - 'message.async.publish': 'first', | |
25 | 24 … | 'progress.html.peer': 'first', |
26 | 25 … | |
27 | 26 … | 'feed.html.followWarning': 'first', |
28 | 27 … | 'feed.html.followerWarning': 'first', |
29 | 28 … | 'feed.html.rollup': 'first', |
30 | 29 … | 'profile.obs.recentlyUpdated': 'first', |
31 | 30 … | 'profile.obs.contact': 'first', |
32 | 31 … | 'contact.obs.following': 'first', |
33 | - 'contact.obs.followers': 'first', | |
34 | 32 … | 'contact.obs.blocking': 'first', |
35 | - 'contact.async.follow': 'first', | |
36 | 33 … | 'channel.obs': { |
37 | 34 … | subscribed: 'first', |
38 | 35 … | recent: 'first' |
39 | 36 … | }, |
lib/depject/page/html/render/search.js | ||
---|---|---|
@@ -10,9 +10,8 @@ | ||
10 | 10 … | const escapeStringRegexp = require('escape-string-regexp') |
11 | 11 … | |
12 | 12 … | exports.needs = nest({ |
13 | 13 … | 'sbot.pull.stream': 'first', |
14 | - 'keys.sync.id': 'first', | |
15 | 14 … | 'message.html.render': 'first', |
16 | 15 … | 'intl.sync.i18n': 'first', |
17 | 16 … | 'sbot.pull.backlinks': 'first' |
18 | 17 … | }) |
lib/depject/page/html/render/settings.js | ||
---|---|---|
@@ -5,9 +5,8 @@ | ||
5 | 5 … | const themeNames = Object.keys(require('../../../../../styles')) |
6 | 6 … | |
7 | 7 … | exports.needs = nest({ |
8 | 8 … | 'settings.obs.get': 'first', |
9 | - 'settings.sync.set': 'first', | |
10 | 9 … | 'intl.sync.locales': 'first', |
11 | 10 … | 'intl.sync.i18n': 'first', |
12 | 11 … | 'intl.sync.localeNames': 'first' |
13 | 12 … | }) |
lib/depject/page/html/render/your-posts.js | ||
---|---|---|
@@ -3,10 +3,8 @@ | ||
3 | 3 … | |
4 | 4 … | exports.needs = nest({ |
5 | 5 … | 'sbot.pull.resumeStream': 'first', |
6 | 6 … | 'sbot.pull.stream': 'first', |
7 | - 'message.html.compose': 'first', | |
8 | - 'message.async.publish': 'first', | |
9 | 7 … | 'feed.html.rollup': 'first', |
10 | 8 … | 'keys.sync.id': 'first', |
11 | 9 … | 'intl.sync.i18n': 'first' |
12 | 10 … | }) |
lib/depject/profile/async/suggest.js | ||
---|---|---|
@@ -3,16 +3,9 @@ | ||
3 | 3 … | const { onceTrue } = require('mutant') |
4 | 4 … | const fallbackImageUrl = 'data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==' |
5 | 5 … | |
6 | 6 … | exports.needs = nest({ |
7 | - 'profile.obs.recentlyUpdated': 'first', | |
8 | - 'profile.async.avatar': 'first', | |
9 | - 'contact.obs.following': 'first', | |
10 | - 'about.obs.name': 'first', | |
11 | - 'about.obs.imageUrl': 'first', | |
12 | 7 … | 'blob.sync.url': 'first', |
13 | - 'intl.sync.startsWith': 'first', | |
14 | - 'keys.sync.id': 'first', | |
15 | 8 … | 'sbot.obs.connection': 'first' |
16 | 9 … | }) |
17 | 10 … | |
18 | 11 … | exports.gives = nest('profile.async.suggest') |
lib/depject/profile/html/preview.js | ||
---|---|---|
@@ -9,9 +9,8 @@ | ||
9 | 9 … | exports.needs = nest({ |
10 | 10 … | 'about.obs.name': 'first', |
11 | 11 … | 'about.obs.description': 'first', |
12 | 12 … | 'about.html.image': 'first', |
13 | - 'keys.sync.id': 'first', | |
14 | 13 … | 'app.navigate': 'first', |
15 | 14 … | 'intl.sync.i18n': 'first', |
16 | 15 … | 'intl.sync.i18n_n': 'first', |
17 | 16 … | 'sheet.profiles': 'first', |
lib/depject/sheet/editTags.js | ||
---|---|---|
@@ -11,9 +11,8 @@ | ||
11 | 11 … | |
12 | 12 … | exports.gives = nest('sheet.editTags') |
13 | 13 … | |
14 | 14 … | exports.needs = nest({ |
15 | - 'about.obs.name': 'first', | |
16 | 15 … | 'keys.sync.id': 'first', |
17 | 16 … | 'sbot.obs.connection': 'first', |
18 | 17 … | 'tag.async.suggest': 'first', |
19 | 18 … | 'tag.html.tag': 'first', |
lib/depject/sheet/profiles.js | ||
---|---|---|
@@ -3,10 +3,8 @@ | ||
3 | 3 … | const catchLinks = require('../../catch-links') |
4 | 4 … | const displaySheet = require('../../sheet/display') |
5 | 5 … | |
6 | 6 … | exports.needs = nest({ |
7 | - 'keys.sync.id': 'first', | |
8 | - 'contact.obs.following': 'first', | |
9 | 7 … | 'contact.html.followToggle': 'first', |
10 | 8 … | 'profile.obs.rank': 'first', |
11 | 9 … | 'about.html.image': 'first', |
12 | 10 … | 'about.obs.name': 'first', |
lib/depject/sheet/tags/renderTaggers.js | ||
---|---|---|
@@ -6,9 +6,8 @@ | ||
6 | 6 … | 'about.html.image': 'first', |
7 | 7 … | 'about.obs.name': 'first', |
8 | 8 … | 'contact.html.followToggle': 'first', |
9 | 9 … | 'intl.sync.i18n': 'first', |
10 | - 'keys.sync.id': 'first', | |
11 | 10 … | 'profile.obs.rank': 'first', |
12 | 11 … | 'sbot.obs.connection': 'first' |
13 | 12 … | }) |
14 | 13 … |
lib/depject/sheet/tags/renderTags.js | ||
---|---|---|
@@ -2,10 +2,9 @@ | ||
2 | 2 … | const nest = require('depnest') |
3 | 3 … | |
4 | 4 … | exports.needs = nest({ |
5 | 5 … | 'about.obs.name': 'first', |
6 | - 'intl.sync.i18n': 'first', | |
7 | - 'keys.sync.id': 'first' | |
6 … | + 'intl.sync.i18n': 'first' | |
8 | 7 … | }) |
9 | 8 … | |
10 | 9 … | exports.gives = nest('sheet.tags.renderTags') |
11 | 10 … |
Built with git-ssb-web