diff options
| author | taehoon <th.dev91@gmail.com> | 2019-04-25 04:19:22 -0400 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-07-10 21:01:07 -0400 |
| commit | 4cf402ff21c26fa9b82d2ea956ceb7ce8533146a (patch) | |
| tree | f3b67be92abced7217abdacafecaf55eeaf348bf /src/components/user_card/user_card.vue | |
| parent | d5e8315e83327c7b8dda71eca5dd1c9d7d0a23dc (diff) | |
migrate SubscribeButton to the existing common component
Diffstat (limited to 'src/components/user_card/user_card.vue')
| -rw-r--r-- | src/components/user_card/user_card.vue | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/components/user_card/user_card.vue b/src/components/user_card/user_card.vue index 18ec6e94..e1d3f48f 100644 --- a/src/components/user_card/user_card.vue +++ b/src/components/user_card/user_card.vue @@ -72,7 +72,14 @@ </button> </span> </div> - <SubscribeButton :user="user" /> + <div> + <ProgressButton :click="subscribeUser" v-if="!user.subscribing"> + Subscribe + </ProgressButton> + <ProgressButton class="pressed" :click="unsubscribeUser" v-else> + Subscribing! + </ProgressButton> + </div> <div class='mute' v-if='isOtherUser && loggedIn'> <span v-if='user.muted'> <button @click="unmuteUser" class="pressed"> |
