diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-11-01 04:11:56 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-11-01 04:11:56 +0900 |
| commit | 42be937fcb6f02037ff4024a2fb1cf463c50ce0c (patch) | |
| tree | e7624c5b525702ee84784a2116fdb586f71a01c5 /src | |
| parent | wip (diff) | |
| download | sharkey-42be937fcb6f02037ff4024a2fb1cf463c50ce0c.tar.gz sharkey-42be937fcb6f02037ff4024a2fb1cf463c50ce0c.tar.bz2 sharkey-42be937fcb6f02037ff4024a2fb1cf463c50ce0c.zip | |
wip
Diffstat (limited to 'src')
| -rw-r--r-- | src/api/endpoints.ts | 3 | ||||
| -rw-r--r-- | src/api/endpoints/channels.ts | 59 | ||||
| -rw-r--r-- | src/web/app/ch/tags/channel.tag | 7 | ||||
| -rw-r--r-- | src/web/app/ch/tags/index.tag | 13 |
4 files changed, 77 insertions, 5 deletions
diff --git a/src/api/endpoints.ts b/src/api/endpoints.ts index 88c01d4e7f..c4dacad857 100644 --- a/src/api/endpoints.ts +++ b/src/api/endpoints.ts @@ -490,6 +490,9 @@ const endpoints: Endpoint[] = [ { name: 'channels/posts' }, + { + name: 'channels' + }, ]; export default endpoints; diff --git a/src/api/endpoints/channels.ts b/src/api/endpoints/channels.ts new file mode 100644 index 0000000000..e10c943896 --- /dev/null +++ b/src/api/endpoints/channels.ts @@ -0,0 +1,59 @@ +/** + * Module dependencies + */ +import $ from 'cafy'; +import Channel from '../models/channel'; +import serialize from '../serializers/channel'; + +/** + * Get all channels + * + * @param {any} params + * @param {any} me + * @return {Promise<any>} + */ +module.exports = (params, me) => new Promise(async (res, rej) => { + // Get 'limit' parameter + const [limit = 10, limitErr] = $(params.limit).optional.number().range(1, 100).$; + if (limitErr) return rej('invalid limit param'); + + // Get 'since_id' parameter + const [sinceId, sinceIdErr] = $(params.since_id).optional.id().$; + if (sinceIdErr) return rej('invalid since_id param'); + + // Get 'max_id' parameter + const [maxId, maxIdErr] = $(params.max_id).optional.id().$; + if (maxIdErr) return rej('invalid max_id param'); + + // Check if both of since_id and max_id is specified + if (sinceId && maxId) { + return rej('cannot set since_id and max_id'); + } + + // Construct query + const sort = { + _id: -1 + }; + const query = {} as any; + if (sinceId) { + sort._id = 1; + query._id = { + $gt: sinceId + }; + } else if (maxId) { + query._id = { + $lt: maxId + }; + } + + // Issue query + const channels = await Channel + .find(query, { + limit: limit, + sort: sort + }); + + // Serialize + res(await Promise.all(channels.map(async channel => + await serialize(channel, me)))); +}); diff --git a/src/web/app/ch/tags/channel.tag b/src/web/app/ch/tags/channel.tag index 43a1f851f8..12a6b5a3b9 100644 --- a/src/web/app/ch/tags/channel.tag +++ b/src/web/app/ch/tags/channel.tag @@ -1,4 +1,6 @@ <mk-channel> + <header><a href={ CONFIG.chUrl }>Misskey Channels</a></header> + <hr> <main if={ !fetching }> <h1>{ channel.title }</h1> <p if={ postsFetching }>読み込み中<mk-ellipsis/></p> @@ -21,10 +23,9 @@ <style> :scope display block + padding 8px - main - padding 8px - + > main > h1 color #f00 </style> diff --git a/src/web/app/ch/tags/index.tag b/src/web/app/ch/tags/index.tag index 1c0a037c2d..a64ddb6ccd 100644 --- a/src/web/app/ch/tags/index.tag +++ b/src/web/app/ch/tags/index.tag @@ -1,5 +1,9 @@ <mk-index> - <button onclick={ new }>%i18n:ch.tags.mk-index.new%</button> + <button onclick={ n }>%i18n:ch.tags.mk-index.new%</button> + <hr> + <ul if={ channels }> + <li each={ channels }><a href={ '/' + this.id }>{ this.title }</a></li> + </ul> <style> :scope display block @@ -9,9 +13,14 @@ this.mixin('api'); this.on('mount', () => { + this.api('channels').then(channels => { + this.update({ + channels: channels + }); + }); }); - this.new = () => { + this.n = () => { const title = window.prompt('%i18n:ch.tags.mk-index.channel-title%'); this.api('channels/create', { |