From 4b228432c1397c2fc27b96c3f172cb36018f1b9b Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 22 Feb 2018 22:51:33 +0900 Subject: [PATCH] wip --- src/web/app/mobile/views/components/index.ts | 4 ++ .../views/components/user-followers.vue | 26 --------- .../views/components/user-following.vue | 26 --------- .../mobile/views/components/user-preview.vue | 6 +- .../mobile/views/components/users-list.vue | 7 ++- src/web/app/mobile/views/pages/followers.vue | 54 +++++++++++++----- src/web/app/mobile/views/pages/following.vue | 56 +++++++++++++------ 7 files changed, 92 insertions(+), 87 deletions(-) delete mode 100644 src/web/app/mobile/views/components/user-followers.vue delete mode 100644 src/web/app/mobile/views/components/user-following.vue diff --git a/src/web/app/mobile/views/components/index.ts b/src/web/app/mobile/views/components/index.ts index a2a87807d..73cc1f9f3 100644 --- a/src/web/app/mobile/views/components/index.ts +++ b/src/web/app/mobile/views/components/index.ts @@ -16,6 +16,8 @@ import friendsMaker from './friends-maker.vue'; import notification from './notification.vue'; import notifications from './notifications.vue'; import notificationPreview from './notification-preview.vue'; +import usersList from './users-list.vue'; +import userPreview from './user-preview.vue'; Vue.component('mk-ui', ui); Vue.component('mk-home', home); @@ -33,3 +35,5 @@ Vue.component('mk-friends-maker', friendsMaker); Vue.component('mk-notification', notification); Vue.component('mk-notifications', notifications); Vue.component('mk-notification-preview', notificationPreview); +Vue.component('mk-users-list', usersList); +Vue.component('mk-user-preview', userPreview); diff --git a/src/web/app/mobile/views/components/user-followers.vue b/src/web/app/mobile/views/components/user-followers.vue deleted file mode 100644 index 771291b49..000000000 --- a/src/web/app/mobile/views/components/user-followers.vue +++ /dev/null @@ -1,26 +0,0 @@ - - - diff --git a/src/web/app/mobile/views/components/user-following.vue b/src/web/app/mobile/views/components/user-following.vue deleted file mode 100644 index dfd6135da..000000000 --- a/src/web/app/mobile/views/components/user-following.vue +++ /dev/null @@ -1,26 +0,0 @@ - - - diff --git a/src/web/app/mobile/views/components/user-preview.vue b/src/web/app/mobile/views/components/user-preview.vue index 0246cac6a..3cbc20033 100644 --- a/src/web/app/mobile/views/components/user-preview.vue +++ b/src/web/app/mobile/views/components/user-preview.vue @@ -1,11 +1,11 @@