diff options
| author | こぴなたみぽ <syuilotan@yahoo.co.jp> | 2018-02-11 17:43:00 +0900 |
|---|---|---|
| committer | こぴなたみぽ <syuilotan@yahoo.co.jp> | 2018-02-11 17:43:00 +0900 |
| commit | 4f2041c1d9ce908bfaa673b9309e7834776eecf3 (patch) | |
| tree | 33afed2fd9644c94e3d0e46b36d4b22d0f64f7dc /src | |
| parent | wip (diff) | |
| download | misskey-4f2041c1d9ce908bfaa673b9309e7834776eecf3.tar.gz misskey-4f2041c1d9ce908bfaa673b9309e7834776eecf3.tar.bz2 misskey-4f2041c1d9ce908bfaa673b9309e7834776eecf3.zip | |
wip
Diffstat (limited to 'src')
| -rw-r--r-- | src/web/app/desktop/views/components/timeline-post.vue | 177 | ||||
| -rw-r--r-- | src/web/app/desktop/views/components/timeline.vue | 2 |
2 files changed, 93 insertions, 86 deletions
diff --git a/src/web/app/desktop/views/components/timeline-post.vue b/src/web/app/desktop/views/components/timeline-post.vue index a50d0c7bd0..50c8ecf992 100644 --- a/src/web/app/desktop/views/components/timeline-post.vue +++ b/src/web/app/desktop/views/components/timeline-post.vue @@ -70,103 +70,110 @@ </div> </template> -<script lang="typescript"> +<script lang="ts"> +import Vue from 'vue'; import compile from '../../common/scripts/text-compiler'; import dateStringify from '../../common/scripts/date-stringify'; -this.mixin('i'); -this.mixin('api'); -this.mixin('user-preview'); - -this.mixin('stream'); -this.connection = this.stream.getConnection(); -this.connectionId = this.stream.use(); - -this.isDetailOpened = false; - -this.set = post => { - this.post = post; - this.isRepost = this.post.repost && this.post.text == null && this.post.media_ids == null && this.post.poll == null; - this.p = this.isRepost ? this.post.repost : this.post; - this.p.reactions_count = this.p.reaction_counts ? Object.keys(this.p.reaction_counts).map(key => this.p.reaction_counts[key]).reduce((a, b) => a + b) : 0; - this.title = dateStringify(this.p.created_at); - this.url = `/${this.p.user.username}/${this.p.id}`; -}; - -this.set(this.opts.post); - -this.refresh = post => { - this.set(post); - this.update(); - if (this.$refs.reactionsViewer) this.$refs.reactionsViewer.update({ - post - }); - if (this.$refs.pollViewer) this.$refs.pollViewer.init(post); -}; - -this.onStreamPostUpdated = data => { - const post = data.post; - if (post.id == this.post.id) { - this.refresh(post); - } -}; - -this.onStreamConnected = () => { - this.capture(); -}; - -this.capture = withHandler => { - if (this.SIGNIN) { - this.connection.send({ - type: 'capture', - id: this.post.id - }); - if (withHandler) this.connection.on('post-updated', this.onStreamPostUpdated); - } -}; - -this.decapture = withHandler => { - if (this.SIGNIN) { - this.connection.send({ - type: 'decapture', - id: this.post.id - }); - if (withHandler) this.connection.off('post-updated', this.onStreamPostUpdated); - } -}; - -this.on('mount', () => { - this.capture(true); +export default Vue.extend({ + props: ['post'], + data() { + return { + connection: null, + connectionId: null + }; + }, + computed: { + isRepost(): boolean { + return (this.post.repost && + this.post.text == null && + this.post.media_ids == null && + this.post.poll == null); + }, + p(): any { + return this.isRepost ? this.post.repost : this.post; + }, + reactionsCount(): number { + return this.p.reaction_counts ? Object.keys(this.p.reaction_counts).map(key => this.p.reaction_counts[key]).reduce((a, b) => a + b) : 0; + }, + title(): string { + return dateStringify(this.p.created_at); + }, + url(): string { + return `/${this.p.user.username}/${this.p.id}`; + } + }, + created() { + this.connection = this.$root.$data.os.stream.getConnection(); + this.connectionId = this.$root.$data.os.stream.use(); + }, + mounted() { + this.capture(true); - if (this.SIGNIN) { - this.connection.on('_connected_', this.onStreamConnected); - } + if (this.$root.$data.os.isSignedIn) { + this.connection.on('_connected_', this.onStreamConnected); + } - if (this.p.text) { - const tokens = this.p.ast; + if (this.p.text) { + const tokens = this.p.ast; - this.$refs.text.innerHTML = this.$refs.text.innerHTML.replace('<p class="dummy"></p>', compile(tokens)); + this.$refs.text.innerHTML = this.$refs.text.innerHTML.replace('<p class="dummy"></p>', compile(tokens)); - Array.from(this.$refs.text.children).forEach(e => { - if (e.tagName == 'MK-URL') riot.mount(e); - }); + Array.from(this.$refs.text.children).forEach(e => { + if (e.tagName == 'MK-URL') riot.mount(e); + }); - // URLをプレビュー - tokens - .filter(t => (t.type == 'url' || t.type == 'link') && !t.silent) - .map(t => { - riot.mount(this.$refs.text.appendChild(document.createElement('mk-url-preview')), { - url: t.url + // URLをプレビュー + tokens + .filter(t => (t.type == 'url' || t.type == 'link') && !t.silent) + .map(t => { + riot.mount(this.$refs.text.appendChild(document.createElement('mk-url-preview')), { + url: t.url + }); }); - }); + } + }, + beforeDestroy() { + this.decapture(true); + this.connection.off('_connected_', this.onStreamConnected); + this.$root.$data.os.stream.dispose(this.connectionId); + }, + methods: { + capture(withHandler = false) { + if (this.$root.$data.os.isSignedIn) { + this.connection.send({ + type: 'capture', + id: this.post.id + }); + if (withHandler) this.connection.on('post-updated', this.onStreamPostUpdated); + } + }, + decapture(withHandler = false) { + if (this.$root.$data.os.isSignedIn) { + this.connection.send({ + type: 'decapture', + id: this.post.id + }); + if (withHandler) this.connection.off('post-updated', this.onStreamPostUpdated); + } + }, + onStreamConnected() { + this.capture(); + }, + onStreamPostUpdated(data) { + const post = data.post; + if (post.id == this.post.id) { + this.$emit('update:post', post); + } + } } }); +</script> -this.on('unmount', () => { - this.decapture(true); - this.connection.off('_connected_', this.onStreamConnected); - this.stream.dispose(this.connectionId); -}); +<script lang="typescript"> + + +this.isDetailOpened = false; this.reply = () => { riot.mount(document.body.appendChild(document.createElement('mk-post-form-window')), { diff --git a/src/web/app/desktop/views/components/timeline.vue b/src/web/app/desktop/views/components/timeline.vue index 0e8b19f165..ba412848fb 100644 --- a/src/web/app/desktop/views/components/timeline.vue +++ b/src/web/app/desktop/views/components/timeline.vue @@ -1,7 +1,7 @@ <template> <div class="mk-timeline" ref="root"> <template v-for="(post, i) in _posts"> - <mk-timeline-post :post="post" :key="post.id"/> + <mk-timeline-post :post.sync="post" :key="post.id"/> <p class="date" :key="post.id + '-time'" v-if="i != _posts.length - 1 && _post._date != _posts[i + 1]._date"><span>%fa:angle-up%{{ post._datetext }}</span><span>%fa:angle-down%{{ _posts[i + 1]._datetext }}</span></p> </template> <footer data-yield="footer"> |