summaryrefslogtreecommitdiff
path: root/src/client/app/mobile/views/pages/home.vue
blob: ed057c22071e09ddb988be283e8cb162812e5ed1 (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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
<template>
<mk-ui>
	<span slot="header" @click="showNav = true">
		<span :class="$style.title">
			<span v-if="src == 'home'"><fa icon="home"/>{{ $t('home') }}</span>
			<span v-if="src == 'local'"><fa :icon="['far', 'comments']"/>{{ $t('local') }}</span>
			<span v-if="src == 'hybrid'"><fa icon="share-alt"/>{{ $t('hybrid') }}</span>
			<span v-if="src == 'global'"><fa icon="globe"/>{{ $t('global') }}</span>
			<span v-if="src == 'mentions'"><fa icon="at"/>{{ $t('mentions') }}</span>
			<span v-if="src == 'messages'"><fa :icon="['far', 'envelope']"/>{{ $t('messages') }}</span>
			<span v-if="src == 'list'"><fa icon="list"/>{{ list.title }}</span>
			<span v-if="src == 'tag'"><fa icon="hashtag"/>{{ tagTl.title }}</span>
		</span>
		<span style="margin-left:8px">
			<template v-if="!showNav"><fa icon="angle-down"/></template>
			<template v-else><fa icon="angle-up"/></template>
		</span>
		<i :class="$style.badge" v-if="$store.state.i.hasUnreadMentions || $store.state.i.hasUnreadSpecifiedNotes"><fa icon="circle"/></i>
	</span>

	<template slot="func">
		<button @click="fn"><fa icon="pencil-alt"/></button>
	</template>

	<main>
		<div class="nav" v-if="showNav">
			<div class="bg" @click="showNav = false"></div>
			<div class="pointer"></div>
			<div class="body">
				<div>
					<span :data-active="src == 'home'" @click="src = 'home'"><fa icon="home"/> {{ $t('home') }}</span>
					<span :data-active="src == 'local'" @click="src = 'local'" v-if="enableLocalTimeline"><fa :icon="['far', 'comments']"/> {{ $t('local') }}</span>
					<span :data-active="src == 'hybrid'" @click="src = 'hybrid'" v-if="enableLocalTimeline"><fa icon="share-alt"/> {{ $t('hybrid') }}</span>
					<span :data-active="src == 'global'" @click="src = 'global'"><fa icon="globe"/> {{ $t('global') }}</span>
					<div class="hr"></div>
					<span :data-active="src == 'mentions'" @click="src = 'mentions'"><fa icon="at"/> {{ $t('mentions') }}<i class="badge" v-if="$store.state.i.hasUnreadMentions"><fa icon="circle"/></i></span>
					<span :data-active="src == 'messages'" @click="src = 'messages'"><fa :icon="['far', 'envelope']"/> {{ $t('messages') }}<i class="badge" v-if="$store.state.i.hasUnreadSpecifiedNotes"><fa icon="circle"/></i></span>
					<template v-if="lists">
						<div class="hr" v-if="lists.length > 0"></div>
						<span v-for="l in lists" :data-active="src == 'list' && list == l" @click="src = 'list'; list = l" :key="l.id"><fa icon="list"/> {{ l.title }}</span>
					</template>
					<div class="hr" v-if="$store.state.settings.tagTimelines && $store.state.settings.tagTimelines.length > 0"></div>
					<span v-for="tl in $store.state.settings.tagTimelines" :data-active="src == 'tag' && tagTl == tl" @click="src = 'tag'; tagTl = tl" :key="tl.id"><fa icon="hashtag"/> {{ tl.title }}</span>
				</div>
			</div>
		</div>

		<div class="tl">
			<x-tl v-if="src == 'home'" ref="tl" key="home" src="home"/>
			<x-tl v-if="src == 'local'" ref="tl" key="local" src="local"/>
			<x-tl v-if="src == 'hybrid'" ref="tl" key="hybrid" src="hybrid"/>
			<x-tl v-if="src == 'global'" ref="tl" key="global" src="global"/>
			<x-tl v-if="src == 'mentions'" ref="tl" key="mentions" src="mentions"/>
			<x-tl v-if="src == 'messages'" ref="tl" key="messages" src="messages"/>
			<x-tl v-if="src == 'tag'" ref="tl" key="tag" src="tag" :tag-tl="tagTl"/>
			<mk-user-list-timeline v-if="src == 'list'" ref="tl" :key="list.id" :list="list"/>
		</div>
	</main>
</mk-ui>
</template>

<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
import Progress from '../../../common/scripts/loading';
import XTl from './home.timeline.vue';

export default Vue.extend({
	i18n: i18n('mobile/views/pages/home.vue'),

	components: {
		XTl
	},

	data() {
		return {
			src: 'home',
			list: null,
			lists: null,
			tagTl: null,
			showNav: false,
			enableLocalTimeline: false
		};
	},

	watch: {
		src() {
			this.showNav = false;
			this.saveSrc();
		},

		list(x) {
			this.showNav = false;
			this.saveSrc();
			if (x != null) this.tagTl = null;
		},

		tagTl(x) {
			this.showNav = false;
			this.saveSrc();
			if (x != null) this.list = null;
		},

		showNav(v) {
			if (v && this.lists === null) {
				this.$root.api('users/lists/list').then(lists => {
					this.lists = lists;
				});
			}
		}
	},

	created() {
		this.$root.getMeta().then(meta => {
			this.enableLocalTimeline = !meta.disableLocalTimeline;
		});

		if (this.$store.state.device.tl) {
			this.src = this.$store.state.device.tl.src;
			if (this.src == 'list') {
				this.list = this.$store.state.device.tl.arg;
			} else if (this.src == 'tag') {
				this.tagTl = this.$store.state.device.tl.arg;
			}
		} else if (this.$store.state.i.followingCount == 0) {
			this.src = 'hybrid';
		}
	},

	mounted() {
		document.title = this.$root.instanceName;

		Progress.start();

		(this.$refs.tl as any).$once('loaded', () => {
			Progress.done();
		});
	},

	methods: {
		fn() {
			this.$post();
		},

		saveSrc() {
			this.$store.commit('device/setTl', {
				src: this.src,
				arg: this.src == 'list' ? this.list : this.tagTl
			});
		},

		warp() {

		}
	}
});
</script>

<style lang="stylus" scoped>
main
	> .nav
		> .pointer
			position fixed
			z-index 10002
			top 56px
			left 0
			right 0

			$size = 16px

			&:after
				content ""
				display block
				position absolute
				top -($size * 2)
				left s('calc(50% - %s)', $size)
				border-top solid $size transparent
				border-left solid $size transparent
				border-right solid $size transparent
				border-bottom solid $size var(--popupBg)

		> .bg
			position fixed
			z-index 10000
			top 0
			left 0
			width 100%
			height 100%
			background rgba(#000, 0.5)

		> .body
			position fixed
			z-index 10001
			top 56px
			left 0
			right 0
			width 300px
			max-height calc(100% - 70px)
			margin 0 auto
			overflow auto
			-webkit-overflow-scrolling touch
			background var(--popupBg)
			border-radius 8px
			box-shadow 0 0 16px rgba(#000, 0.1)

			> div
				padding 8px 0

				> .hr
					margin 8px 0
					border-top solid 1px var(--faceDivider)

				> *:not(.hr)
					display block
					padding 8px 16px
					color var(--text)

					&[data-active]
						color var(--primaryForeground)
						background var(--primary)

					&:not([data-active]):hover
						background var(--mobileHomeTlItemHover)

					> .badge
						margin-left 6px
						font-size 10px
						color var(--primary)

	> .tl
		max-width 680px
		margin 0 auto
		padding 8px

		@media (min-width 500px)
			padding 16px

		@media (min-width 600px)
			padding 32px

</style>

<style lang="stylus" module>
.title
	[data-icon]
		margin-right 4px

.badge
	margin-left 6px
	font-size 10px
	color var(--primary)
	vertical-align middle

</style>