diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-02-25 00:18:09 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-02-25 00:18:09 +0900 |
| commit | 36c11e1f0f24f5fc451ad1a38fd054c2cfa4d508 (patch) | |
| tree | 3098f2e9bb3ca0c256a8a8c783ebd4efcacb5d55 /src/web/app/mobile/views/components | |
| parent | Fix #1129 (diff) | |
| download | misskey-36c11e1f0f24f5fc451ad1a38fd054c2cfa4d508.tar.gz misskey-36c11e1f0f24f5fc451ad1a38fd054c2cfa4d508.tar.bz2 misskey-36c11e1f0f24f5fc451ad1a38fd054c2cfa4d508.zip | |
Refactor
Diffstat (limited to 'src/web/app/mobile/views/components')
| -rw-r--r-- | src/web/app/mobile/views/components/index.ts | 10 | ||||
| -rw-r--r-- | src/web/app/mobile/views/components/widgets/activity.vue | 32 | ||||
| -rw-r--r-- | src/web/app/mobile/views/components/widgets/profile.vue | 62 |
3 files changed, 0 insertions, 104 deletions
diff --git a/src/web/app/mobile/views/components/index.ts b/src/web/app/mobile/views/components/index.ts index ea2349802b..fe65aab207 100644 --- a/src/web/app/mobile/views/components/index.ts +++ b/src/web/app/mobile/views/components/index.ts @@ -21,11 +21,6 @@ import userTimeline from './user-timeline.vue'; import activity from './activity.vue'; import widgetContainer from './widget-container.vue'; -//#region widgets -import wActivity from './widgets/activity.vue'; -import wProfile from './widgets/profile.vue'; -//#endregion - Vue.component('mk-ui', ui); Vue.component('mk-timeline', timeline); Vue.component('mk-posts', posts); @@ -46,8 +41,3 @@ Vue.component('mk-user-preview', userPreview); Vue.component('mk-user-timeline', userTimeline); Vue.component('mk-activity', activity); Vue.component('mk-widget-container', widgetContainer); - -//#region widgets -Vue.component('mkw-activity', wActivity); -Vue.component('mkw-profile', wProfile); -//#endregion diff --git a/src/web/app/mobile/views/components/widgets/activity.vue b/src/web/app/mobile/views/components/widgets/activity.vue deleted file mode 100644 index c4d30b07af..0000000000 --- a/src/web/app/mobile/views/components/widgets/activity.vue +++ /dev/null @@ -1,32 +0,0 @@ -<template> -<div class="mkw-activity"> - <mk-widget-container :show-header="!props.compact"> - <template slot="header">%fa:chart-bar%アクティビティ</template> - <div :class="$style.body"> - <mk-activity :user="os.i"/> - </div> - </mk-widget-container> -</div> -</template> - -<script lang="ts"> -import define from '../../../../common/define-widget'; - -export default define({ - name: 'activity', - props: () => ({ - compact: false - }) -}).extend({ - methods: { - func() { - this.props.compact = !this.props.compact; - } - } -}); -</script> - -<style lang="stylus" module> -.body - padding 8px -</style> diff --git a/src/web/app/mobile/views/components/widgets/profile.vue b/src/web/app/mobile/views/components/widgets/profile.vue deleted file mode 100644 index 9336068e57..0000000000 --- a/src/web/app/mobile/views/components/widgets/profile.vue +++ /dev/null @@ -1,62 +0,0 @@ -<template> -<div class="mkw-profile"> - <mk-widget-container> - <div :class="$style.banner" - :style="os.i.banner_url ? `background-image: url(${os.i.banner_url}?thumbnail&size=256)` : ''" - ></div> - <img :class="$style.avatar" - :src="`${os.i.avatar_url}?thumbnail&size=96`" - alt="avatar" - /> - <router-link :class="$style.name" :to="`/${os.i.username}`">{{ os.i.name }}</router-link> - </mk-widget-container> -</div> -</template> - -<script lang="ts"> -import define from '../../../../common/define-widget'; -export default define({ - name: 'profile' -}); -</script> - -<style lang="stylus" module> -.banner - height 100px - background-color #f5f5f5 - background-size cover - background-position center - cursor pointer - -.banner:before - content "" - display block - width 100% - height 100% - background rgba(0, 0, 0, 0.5) - -.avatar - display block - position absolute - width 58px - height 58px - margin 0 - vertical-align bottom - top ((100px - 58px) / 2) - left ((100px - 58px) / 2) - border none - border-radius 100% - box-shadow 0 0 16px rgba(0, 0, 0, 0.5) - -.name - display block - position absolute - top 0 - left 92px - margin 0 - line-height 100px - color #fff - font-weight bold - text-shadow 0 0 8px rgba(0, 0, 0, 0.5) - -</style> |