summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-06-02 00:15:17 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-06-02 00:15:17 +0900
commit484d17f53f26ff3e8961d86f03ef94f62f8f62ed (patch)
tree5d010a52387c3bedf69bdee4ab872c39c25e5bd0 /src/client
parentMerge branch 'master' into locked-account (diff)
downloadmisskey-484d17f53f26ff3e8961d86f03ef94f62f8f62ed.tar.gz
misskey-484d17f53f26ff3e8961d86f03ef94f62f8f62ed.tar.bz2
misskey-484d17f53f26ff3e8961d86f03ef94f62f8f62ed.zip
wip
Diffstat (limited to 'src/client')
-rw-r--r--src/client/app/mobile/views/components/follow-button.vue49
-rw-r--r--src/client/app/mobile/views/pages/user.vue1
2 files changed, 32 insertions, 18 deletions
diff --git a/src/client/app/mobile/views/components/follow-button.vue b/src/client/app/mobile/views/components/follow-button.vue
index a6b5cf0556..9c363d7164 100644
--- a/src/client/app/mobile/views/components/follow-button.vue
+++ b/src/client/app/mobile/views/components/follow-button.vue
@@ -1,13 +1,16 @@
<template>
<button class="mk-follow-button"
- :class="{ wait: wait, follow: !user.isFollowing, unfollow: user.isFollowing }"
+ :class="{ wait: wait, following: user.isFollowing, unfollow: user.isFollowing }"
@click="onClick"
:disabled="wait"
>
- <template v-if="!wait && user.isFollowing">%fa:minus%</template>
- <template v-if="!wait && !user.isFollowing">%fa:plus%</template>
- <template v-if="wait">%fa:spinner .pulse .fw%</template>
- {{ user.isFollowing ? '%i18n:@unfollow%' : '%i18n:@follow%' }}
+ <template v-if="!wait">
+ <template v-if="user.hasPendingFollowRequestFromYou">%fa:hourglass-half% %i18n:@request-pending%</template>
+ <template v-else-if="user.isFollowing">%fa:minus% %i18n:@unfollow%</template>
+ <template v-else-if="!user.isFollowing && user.isLocked">%fa:plus% %i18n:@follow-request%</template>
+ <template v-else-if="!user.isFollowing && !user.isLocked">%fa:plus% %i18n:@follow%</template>
+ </template>
+ <template v-else>%fa:spinner .pulse .fw%</template>
</button>
</template>
@@ -66,15 +69,27 @@ export default Vue.extend({
this.wait = false;
});
} else {
- (this as any).api('following/create', {
- userId: this.user.id
- }).then(() => {
- this.user.isFollowing = true;
- }).catch(err => {
- console.error(err);
- }).then(() => {
- this.wait = false;
- });
+ if (this.user.isLocked && this.user.hasPendingFollowRequestFromYou) {
+ (this as any).api('following/requests/cancel', {
+ userId: this.user.id
+ }).then(() => {
+ this.user.hasPendingFollowRequestFromYou = false;
+ }).catch(err => {
+ console.error(err);
+ }).then(() => {
+ this.wait = false;
+ });
+ } else {
+ (this as any).api('following/create', {
+ userId: this.user.id
+ }).then(() => {
+ this.user.isFollowing = true;
+ }).catch(err => {
+ console.error(err);
+ }).then(() => {
+ this.wait = false;
+ });
+ }
}
}
}
@@ -90,11 +105,11 @@ export default Vue.extend({
cursor pointer
padding 0 16px
margin 0
- height inherit
- font-size 16px
+ line-height 36px
+ font-size 14px
outline none
border solid 1px $theme-color
- border-radius 4px
+ border-radius 36px
*
pointer-events none
diff --git a/src/client/app/mobile/views/pages/user.vue b/src/client/app/mobile/views/pages/user.vue
index b3b820650c..3d37015906 100644
--- a/src/client/app/mobile/views/pages/user.vue
+++ b/src/client/app/mobile/views/pages/user.vue
@@ -184,7 +184,6 @@ root(isDark)
> .mk-follow-button
float right
- height 40px
> .title
margin 8px 0