summaryrefslogtreecommitdiff
path: root/src/client/app/mobile/views/pages/settings.vue
blob: 89e5eaff671a17acdbd16e0960759abe854a6d49 (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
255
256
257
258
259
260
261
<template>
<mk-ui>
	<span slot="header">%fa:cog%%i18n:@settings%</span>
	<main :data-darkmode="$store.state.device.darkmode">
		<div class="signin-as" v-html="'%i18n:@signed-in-as%'.replace('{}', '<b>' + name + '</b>')"></div>

		<div>
			<x-profile/>

			<ui-card>
				<div slot="title">%fa:palette% %i18n:@design%</div>

				<ui-switch v-model="darkmode">%i18n:@dark-mode%</ui-switch>
				<ui-switch v-model="$store.state.settings.circleIcons" @change="onChangeCircleIcons">%i18n:@circle-icons%</ui-switch>
				<ui-switch v-model="$store.state.settings.iLikeSushi" @change="onChangeILikeSushi">%i18n:common.i-like-sushi%</ui-switch>
				<ui-switch v-model="$store.state.settings.reversiBoardLabels" @change="onChangeReversiBoardLabels">%i18n:common.show-reversi-board-labels%</ui-switch>

				<div>
					<div>%i18n:@timeline%</div>
					<ui-switch v-model="$store.state.settings.showReplyTarget" @change="onChangeShowReplyTarget">%i18n:@show-reply-target%</ui-switch>
					<ui-switch v-model="$store.state.settings.showMyRenotes" @change="onChangeShowMyRenotes">%i18n:@show-my-renotes%</ui-switch>
					<ui-switch v-model="$store.state.settings.showRenotedMyNotes" @change="onChangeShowRenotedMyNotes">%i18n:@show-renoted-my-notes%</ui-switch>
				</div>

				<div>
					<div>%i18n:@post-style%</div>
					<ui-radio v-model="postStyle" value="standard">%i18n:@post-style-standard%</ui-radio>
					<ui-radio v-model="postStyle" value="smart">%i18n:@post-style-smart%</ui-radio>
				</div>
			</ui-card>

			<ui-card>
				<div slot="title">%fa:cog% %i18n:@behavior%</div>
				<ui-switch v-model="$store.state.settings.fetchOnScroll" @change="onChangeFetchOnScroll">%i18n:@fetch-on-scroll%</ui-switch>
				<ui-switch v-model="$store.state.settings.disableViaMobile" @change="onChangeDisableViaMobile">%i18n:@disable-via-mobile%</ui-switch>
				<ui-switch v-model="loadRawImages">%i18n:@load-raw-images%</ui-switch>
				<ui-switch v-model="$store.state.settings.loadRemoteMedia" @change="onChangeLoadRemoteMedia">%i18n:@load-remote-media%</ui-switch>
				<ui-switch v-model="lightmode">%i18n:@i-am-under-limited-internet%</ui-switch>
			</ui-card>

			<ui-card>
				<div slot="title">%fa:language% %i18n:@lang%</div>

				<ui-select v-model="lang" placeholder="%i18n:@auto%">
					<optgroup label="%i18n:@recommended%">
						<option value="">%i18n:@auto%</option>
					</optgroup>

					<optgroup label="%i18n:@specify-language%">
						<option v-for="x in langs" :value="x[0]" :key="x[0]">{{ x[1] }}</option>
					</optgroup>
				</ui-select>
				<span>%fa:info-circle% %i18n:@lang-tip%</span>
			</ui-card>

			<ui-card>
				<div slot="title">%fa:B twitter% %i18n:@twitter%</div>

				<p class="account" v-if="$store.state.i.twitter"><a :href="`https://twitter.com/${$store.state.i.twitter.screenName}`" target="_blank">@{{ $store.state.i.twitter.screenName }}</a></p>
				<p>
					<a :href="`${apiUrl}/connect/twitter`" target="_blank">{{ $store.state.i.twitter ? '%i18n:@twitter-reconnect%' : '%i18n:@twitter-connect%' }}</a>
					<span v-if="$store.state.i.twitter"> or </span>
					<a :href="`${apiUrl}/disconnect/twitter`" target="_blank" v-if="$store.state.i.twitter">%i18n:@twitter-disconnect%</a>
				</p>
			</ui-card>

			<ui-card>
				<div slot="title">%fa:sync-alt% %i18n:@update%</div>

				<div>%i18n:@version% <i>{{ version }}</i></div>
				<template v-if="latestVersion !== undefined">
					<div>%i18n:@latest-version% <i>{{ latestVersion ? latestVersion : version }}</i></div>
				</template>
				<ui-button @click="checkForUpdate" :disabled="checkingForUpdate">
					<template v-if="checkingForUpdate">%i18n:@update-checking%<mk-ellipsis/></template>
					<template v-else>%i18n:@check-for-updates%</template>
				</ui-button>
			</ui-card>
		</div>

		<footer>
			<small>ver {{ version }} ({{ codename }})</small>
		</footer>
	</main>
</mk-ui>
</template>

<script lang="ts">
import Vue from 'vue';
import { apiUrl, version, codename, langs } from '../../../config';
import checkForUpdate from '../../../common/scripts/check-for-update';

import XProfile from './settings/settings.profile.vue';

export default Vue.extend({
	components: {
		XProfile
	},

	data() {
		return {
			apiUrl,
			version,
			codename,
			langs,
			latestVersion: undefined,
			checkingForUpdate: false
		};
	},

	computed: {
		name(): string {
			return Vue.filter('userName')(this.$store.state.i);
		},

		darkmode: {
			get() { return this.$store.state.device.darkmode; },
			set(value) { this.$store.commit('device/set', { key: 'darkmode', value }); }
		},

		postStyle: {
			get() { return this.$store.state.device.postStyle; },
			set(value) { this.$store.commit('device/set', { key: 'postStyle', value }); }
		},

		lightmode: {
			get() { return this.$store.state.device.lightmode; },
			set(value) { this.$store.commit('device/set', { key: 'lightmode', value }); }
		},

		loadRawImages: {
			get() { return this.$store.state.device.loadRawImages; },
			set(value) { this.$store.commit('device/set', { key: 'loadRawImages', value }); }
		},

		lang: {
			get() { return this.$store.state.device.lang; },
			set(value) { this.$store.commit('device/set', { key: 'lang', value }); }
		},
	},

	mounted() {
		document.title = 'Misskey | %i18n:@settings%';
	},

	methods: {
		signout() {
			(this as any).os.signout();
		},

		onChangeFetchOnScroll(v) {
			this.$store.dispatch('settings/set', {
				key: 'fetchOnScroll',
				value: v
			});
		},

		onChangeDisableViaMobile(v) {
			this.$store.dispatch('settings/set', {
				key: 'disableViaMobile',
				value: v
			});
		},

		onChangeLoadRemoteMedia(v) {
			this.$store.dispatch('settings/set', {
				key: 'loadRemoteMedia',
				value: v
			});
		},

		onChangeCircleIcons(v) {
			this.$store.dispatch('settings/set', {
				key: 'circleIcons',
				value: v
			});
		},

		onChangeILikeSushi(v) {
			this.$store.dispatch('settings/set', {
				key: 'iLikeSushi',
				value: v
			});
		},

		onChangeReversiBoardLabels(v) {
			this.$store.dispatch('settings/set', {
				key: 'reversiBoardLabels',
				value: v
			});
		},

		onChangeShowReplyTarget(v) {
			this.$store.dispatch('settings/set', {
				key: 'showReplyTarget',
				value: v
			});
		},

		onChangeShowMyRenotes(v) {
			this.$store.dispatch('settings/set', {
				key: 'showMyRenotes',
				value: v
			});
		},

		onChangeShowRenotedMyNotes(v) {
			this.$store.dispatch('settings/set', {
				key: 'showRenotedMyNotes',
				value: v
			});
		},

		checkForUpdate() {
			this.checkingForUpdate = true;
			checkForUpdate((this as any).os, true, true).then(newer => {
				this.checkingForUpdate = false;
				this.latestVersion = newer;
				if (newer == null) {
					(this as any).apis.dialog({
						title: '%i18n:@no-updates%',
						text: '%i18n:@no-updates-desc%'
					});
				} else {
					(this as any).apis.dialog({
						title: '%i18n:@update-available%',
						text: '%i18n:@update-available-desc%'
					});
				}
			});
		}
	}
});
</script>

<style lang="stylus" scoped>
root(isDark)
	margin 0 auto
	max-width 500px
	width 100%

	> .signin-as
		margin 16px
		padding 16px
		text-align center
		color isDark ? #49ab63 : #2c662d
		background isDark ? #273c34 : #fcfff5
		box-shadow 0 3px 1px -2px rgba(#000, 0.2), 0 2px 2px 0 rgba(#000, 0.14), 0 1px 5px 0 rgba(#000, 0.12)

	> footer
		margin 16px
		text-align center
		color isDark ? #c9d2e0 : #888

main[data-darkmode]
	root(true)

main:not([data-darkmode])
	root(false)

</style>