summaryrefslogtreecommitdiff
path: root/src/web
diff options
context:
space:
mode:
authorこぴなたみぽ <syuilotan@yahoo.co.jp>2018-02-16 05:50:30 +0900
committerこぴなたみぽ <syuilotan@yahoo.co.jp>2018-02-16 05:50:30 +0900
commit3494b31b435e3a2f7d28d84da922f4988e499b63 (patch)
tree2bf8c76e78c1046011f3964229e8d98ec342052b /src/web
parentwip (diff)
downloadmisskey-3494b31b435e3a2f7d28d84da922f4988e499b63.tar.gz
misskey-3494b31b435e3a2f7d28d84da922f4988e499b63.tar.bz2
misskey-3494b31b435e3a2f7d28d84da922f4988e499b63.zip
wip
Diffstat (limited to 'src/web')
-rw-r--r--src/web/app/mobile/tags/page/post.tag76
-rw-r--r--src/web/app/mobile/views/pages/post.vue76
2 files changed, 76 insertions, 76 deletions
diff --git a/src/web/app/mobile/tags/page/post.tag b/src/web/app/mobile/tags/page/post.tag
deleted file mode 100644
index ed7cb52546..0000000000
--- a/src/web/app/mobile/tags/page/post.tag
+++ /dev/null
@@ -1,76 +0,0 @@
-<mk-post-page>
- <mk-ui ref="ui">
- <main v-if="!parent.fetching">
- <a v-if="parent.post.next" href={ parent.post.next }>%fa:angle-up%%i18n:mobile.tags.mk-post-page.next%</a>
- <div>
- <mk-post-detail ref="post" post={ parent.post }/>
- </div>
- <a v-if="parent.post.prev" href={ parent.post.prev }>%fa:angle-down%%i18n:mobile.tags.mk-post-page.prev%</a>
- </main>
- </mk-ui>
- <style lang="stylus" scoped>
- :scope
- display block
-
- main
- text-align center
-
- > div
- margin 8px auto
- padding 0
- max-width 500px
- width calc(100% - 16px)
-
- @media (min-width 500px)
- margin 16px auto
- width calc(100% - 32px)
-
- > a
- display inline-block
-
- &:first-child
- margin-top 8px
-
- @media (min-width 500px)
- margin-top 16px
-
- &:last-child
- margin-bottom 8px
-
- @media (min-width 500px)
- margin-bottom 16px
-
- > [data-fa]
- margin-right 4px
-
- </style>
- <script lang="typescript">
- import ui from '../../scripts/ui-event';
- import Progress from '../../../common/scripts/loading';
-
- this.mixin('api');
-
- this.fetching = true;
- this.post = null;
-
- this.on('mount', () => {
- document.title = 'Misskey';
- ui.trigger('title', '%fa:R sticky-note%%i18n:mobile.tags.mk-post-page.title%');
- document.documentElement.style.background = '#313a42';
-
- Progress.start();
-
- this.$root.$data.os.api('posts/show', {
- post_id: this.opts.post
- }).then(post => {
-
- this.update({
- fetching: false,
- post: post
- });
-
- Progress.done();
- });
- });
- </script>
-</mk-post-page>
diff --git a/src/web/app/mobile/views/pages/post.vue b/src/web/app/mobile/views/pages/post.vue
new file mode 100644
index 0000000000..f291a489b5
--- /dev/null
+++ b/src/web/app/mobile/views/pages/post.vue
@@ -0,0 +1,76 @@
+<template>
+<mk-ui>
+ <span slot="header">%fa:R sticky-note%%i18n:mobile.tags.mk-post-page.title%</span>
+ <main v-if="!fetching">
+ <a v-if="post.next" :href="post.next">%fa:angle-up%%i18n:mobile.tags.mk-post-page.next%</a>
+ <div>
+ <mk-post-detail :post="parent.post"/>
+ </div>
+ <a v-if="post.prev" :href="post.prev">%fa:angle-down%%i18n:mobile.tags.mk-post-page.prev%</a>
+ </main>
+</mk-ui>
+</template>
+
+<script lang="ts">
+import Vue from 'vue';
+import Progress from '../../../common/scripts/loading';
+
+export default Vue.extend({
+ props: ['postId'],
+ data() {
+ return {
+ fetching: true,
+ post: null
+ };
+ },
+ mounted() {
+ document.title = 'Misskey';
+ document.documentElement.style.background = '#313a42';
+
+ Progress.start();
+
+ this.$root.$data.os.api('posts/show', {
+ post_id: this.postId
+ }).then(post => {
+ this.fetching = false;
+ this.post = post;
+
+ Progress.done();
+ });
+ }
+});
+</script>
+
+<style lang="stylus" scoped>
+main
+ text-align center
+
+ > div
+ margin 8px auto
+ padding 0
+ max-width 500px
+ width calc(100% - 16px)
+
+ @media (min-width 500px)
+ margin 16px auto
+ width calc(100% - 32px)
+
+ > a
+ display inline-block
+
+ &:first-child
+ margin-top 8px
+
+ @media (min-width 500px)
+ margin-top 16px
+
+ &:last-child
+ margin-bottom 8px
+
+ @media (min-width 500px)
+ margin-bottom 16px
+
+ > [data-fa]
+ margin-right 4px
+
+</style>