Compare commits
	
		
			7 commits
		
	
	
		
			develop
			...
			toggle-ads
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|  | a8de112fe0 | ||
|  | 32115b5ca5 | ||
|  | d16afd3d13 | ||
|  | 38e0ff9875 | ||
|  | 4684d279ae | ||
|  | 6f2036565b | ||
|  | 9b316c3ee7 | 
					 4 changed files with 11 additions and 1 deletions
				
			
		|  | @ -887,6 +887,7 @@ beta: "ベータ" | ||||||
| enableAutoSensitive: "自動NSFW判定" | enableAutoSensitive: "自動NSFW判定" | ||||||
| enableAutoSensitiveDescription: "利用可能な場合は、機械学習を利用して自動でメディアにNSFWフラグを設定します。この機能をオフにしても、インスタンスによっては自動で設定されることがあります。" | enableAutoSensitiveDescription: "利用可能な場合は、機械学習を利用して自動でメディアにNSFWフラグを設定します。この機能をオフにしても、インスタンスによっては自動で設定されることがあります。" | ||||||
| activeEmailValidationDescription: "ユーザーのメールアドレスのバリデーションを、捨てアドかどうかや実際に通信可能かどうかなどを判定しより積極的に行います。オフにすると単に文字列として正しいかどうかのみチェックされます。" | activeEmailValidationDescription: "ユーザーのメールアドレスのバリデーションを、捨てアドかどうかや実際に通信可能かどうかなどを判定しより積極的に行います。オフにすると単に文字列として正しいかどうかのみチェックされます。" | ||||||
|  | showAds: "広告を表示する" | ||||||
| navbar: "ナビゲーションバー" | navbar: "ナビゲーションバー" | ||||||
| 
 | 
 | ||||||
| _sensitiveMediaDetection: | _sensitiveMediaDetection: | ||||||
|  |  | ||||||
|  | @ -1,5 +1,5 @@ | ||||||
| <template> | <template> | ||||||
| <div v-if="ad" class="qiivuoyo"> | <div v-if="ad && showAds" class="qiivuoyo"> | ||||||
| 	<div v-if="!showMenu" class="main" :class="ad.place"> | 	<div v-if="!showMenu" class="main" :class="ad.place"> | ||||||
| 		<a :href="ad.url" target="_blank"> | 		<a :href="ad.url" target="_blank"> | ||||||
| 			<img :src="ad.imageUrl"> | 			<img :src="ad.imageUrl"> | ||||||
|  | @ -44,6 +44,7 @@ export default defineComponent({ | ||||||
| 
 | 
 | ||||||
| 	setup(props) { | 	setup(props) { | ||||||
| 		const showMenu = ref(false); | 		const showMenu = ref(false); | ||||||
|  | 		const showAds = defaultStore.state.showAds; | ||||||
| 		const toggleMenu = () => { | 		const toggleMenu = () => { | ||||||
| 			showMenu.value = !showMenu.value; | 			showMenu.value = !showMenu.value; | ||||||
| 		}; | 		}; | ||||||
|  | @ -104,6 +105,7 @@ export default defineComponent({ | ||||||
| 		return { | 		return { | ||||||
| 			ad: chosen, | 			ad: chosen, | ||||||
| 			showMenu, | 			showMenu, | ||||||
|  | 			showAds, | ||||||
| 			toggleMenu, | 			toggleMenu, | ||||||
| 			host, | 			host, | ||||||
| 			reduceFrequency, | 			reduceFrequency, | ||||||
|  |  | ||||||
|  | @ -39,6 +39,7 @@ | ||||||
| 
 | 
 | ||||||
| 	<FormSection> | 	<FormSection> | ||||||
| 		<template #label>{{ i18n.ts.appearance }}</template> | 		<template #label>{{ i18n.ts.appearance }}</template> | ||||||
|  | 		<FormSwitch v-model="showAds" class="_formBlock">{{ i18n.ts.showAds }}</FormSwitch> | ||||||
| 		<FormSwitch v-model="disableAnimatedMfm" class="_formBlock">{{ i18n.ts.disableAnimatedMfm }}</FormSwitch> | 		<FormSwitch v-model="disableAnimatedMfm" class="_formBlock">{{ i18n.ts.disableAnimatedMfm }}</FormSwitch> | ||||||
| 		<FormSwitch v-model="reduceAnimation" class="_formBlock">{{ i18n.ts.reduceUiAnimation }}</FormSwitch> | 		<FormSwitch v-model="reduceAnimation" class="_formBlock">{{ i18n.ts.reduceUiAnimation }}</FormSwitch> | ||||||
| 		<FormSwitch v-model="useBlurEffect" class="_formBlock">{{ i18n.ts.useBlurEffect }}</FormSwitch> | 		<FormSwitch v-model="useBlurEffect" class="_formBlock">{{ i18n.ts.useBlurEffect }}</FormSwitch> | ||||||
|  | @ -128,6 +129,7 @@ const reduceAnimation = computed(defaultStore.makeGetterSetter('animation', v => | ||||||
| const useBlurEffectForModal = computed(defaultStore.makeGetterSetter('useBlurEffectForModal')); | const useBlurEffectForModal = computed(defaultStore.makeGetterSetter('useBlurEffectForModal')); | ||||||
| const useBlurEffect = computed(defaultStore.makeGetterSetter('useBlurEffect')); | const useBlurEffect = computed(defaultStore.makeGetterSetter('useBlurEffect')); | ||||||
| const showGapBetweenNotesInTimeline = computed(defaultStore.makeGetterSetter('showGapBetweenNotesInTimeline')); | const showGapBetweenNotesInTimeline = computed(defaultStore.makeGetterSetter('showGapBetweenNotesInTimeline')); | ||||||
|  | const showAds = computed(defaultStore.makeGetterSetter('showAds')); | ||||||
| const disableAnimatedMfm = computed(defaultStore.makeGetterSetter('animatedMfm', v => !v, v => !v)); | const disableAnimatedMfm = computed(defaultStore.makeGetterSetter('animatedMfm', v => !v, v => !v)); | ||||||
| const useOsNativeEmojis = computed(defaultStore.makeGetterSetter('useOsNativeEmojis')); | const useOsNativeEmojis = computed(defaultStore.makeGetterSetter('useOsNativeEmojis')); | ||||||
| const disableDrawer = computed(defaultStore.makeGetterSetter('disableDrawer')); | const disableDrawer = computed(defaultStore.makeGetterSetter('disableDrawer')); | ||||||
|  | @ -175,6 +177,7 @@ watch([ | ||||||
| 	showGapBetweenNotesInTimeline, | 	showGapBetweenNotesInTimeline, | ||||||
| 	instanceTicker, | 	instanceTicker, | ||||||
| 	overridedDeviceKind, | 	overridedDeviceKind, | ||||||
|  | 	showAds, | ||||||
| ], async () => { | ], async () => { | ||||||
| 	await reloadAsk(); | 	await reloadAsk(); | ||||||
| }); | }); | ||||||
|  |  | ||||||
|  | @ -63,6 +63,10 @@ export const defaultStore = markRaw(new Storage('base', { | ||||||
| 		where: 'account', | 		where: 'account', | ||||||
| 		default: [] as string[], | 		default: [] as string[], | ||||||
| 	}, | 	}, | ||||||
|  | 	showAds: { | ||||||
|  | 		where: 'account', | ||||||
|  | 		default: true, | ||||||
|  | 	}, | ||||||
| 
 | 
 | ||||||
| 	menu: { | 	menu: { | ||||||
| 		where: 'deviceAccount', | 		where: 'deviceAccount', | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue