summaryrefslogtreecommitdiff
path: root/src/client/app/mobile/views/components/follow-button.vue
blob: 5d6b8ebf84d39e5be42f278c41dadadd48c0d958 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<template>
<button class="mk-follow-button"
	:class="{ wait: wait, follow: !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%' }}
</button>
</template>

<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
	props: {
		user: {
			type: Object,
			required: true
		}
	},
	data() {
		return {
			wait: false,
			connection: null,
			connectionId: null
		};
	},
	mounted() {
		this.connection = (this as any).os.stream.getConnection();
		this.connectionId = (this as any).os.stream.use();

		this.connection.on('follow', this.onFollow);
		this.connection.on('unfollow', this.onUnfollow);
	},
	beforeDestroy() {
		this.connection.off('follow', this.onFollow);
		this.connection.off('unfollow', this.onUnfollow);
		(this as any).os.stream.dispose(this.connectionId);
	},
	methods: {

		onFollow(user) {
			if (user.id == this.user.id) {
				this.user.isFollowing = user.isFollowing;
			}
		},

		onUnfollow(user) {
			if (user.id == this.user.id) {
				this.user.isFollowing = user.isFollowing;
			}
		},

		onClick() {
			this.wait = true;
			if (this.user.isFollowing) {
				(this as any).api('following/delete', {
					userId: this.user.id
				}).then(() => {
					this.user.isFollowing = 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;
				});
			}
		}
	}
});
</script>

<style lang="stylus" scoped>
@import '~const.styl'

.mk-follow-button
	display block
	user-select none
	cursor pointer
	padding 0 16px
	margin 0
	height inherit
	font-size 16px
	outline none
	border solid 1px $theme-color
	border-radius 4px

	*
		pointer-events none

	&.follow
		color $theme-color
		background transparent

		&:hover
			background rgba($theme-color, 0.1)

		&:active
			background rgba($theme-color, 0.2)

	&.unfollow
		color $theme-color-foreground
		background $theme-color

	&.wait
		cursor wait !important
		opacity 0.7

	> [data-fa]
		margin-right 4px

</style>