2020-10-17 13:12:00 +02:00
|
|
|
<template>
|
2021-11-28 12:07:37 +01:00
|
|
|
<div class="_formRoot">
|
|
|
|
<MkTab v-model="tab" class="_formBlock">
|
2020-12-26 02:47:36 +01:00
|
|
|
<option value="soft">{{ $ts._wordMute.soft }}</option>
|
|
|
|
<option value="hard">{{ $ts._wordMute.hard }}</option>
|
2020-11-25 13:31:34 +01:00
|
|
|
</MkTab>
|
2021-11-28 12:07:37 +01:00
|
|
|
<div class="_formBlock">
|
|
|
|
<div v-show="tab === 'soft'">
|
|
|
|
<MkInfo class="_formBlock">{{ $ts._wordMute.softDescription }}</MkInfo>
|
|
|
|
<FormTextarea v-model="softMutedWords" class="_formBlock">
|
|
|
|
<span>{{ $ts._wordMute.muteWords }}</span>
|
|
|
|
<template #caption>{{ $ts._wordMute.muteWordsDescription }}<br>{{ $ts._wordMute.muteWordsDescription2 }}</template>
|
|
|
|
</FormTextarea>
|
2020-10-17 13:12:00 +02:00
|
|
|
</div>
|
2021-11-28 12:07:37 +01:00
|
|
|
<div v-show="tab === 'hard'">
|
|
|
|
<MkInfo class="_formBlock">{{ $ts._wordMute.hardDescription }}</MkInfo>
|
|
|
|
<FormTextarea v-model="hardMutedWords" class="_formBlock">
|
|
|
|
<span>{{ $ts._wordMute.muteWords }}</span>
|
|
|
|
<template #caption>{{ $ts._wordMute.muteWordsDescription }}<br>{{ $ts._wordMute.muteWordsDescription2 }}</template>
|
|
|
|
</FormTextarea>
|
|
|
|
<MkKeyValue v-if="hardWordMutedNotesCount != null" class="_formBlock">
|
|
|
|
<template #key>{{ $ts._wordMute.mutedNotes }}</template>
|
|
|
|
<template #value>{{ number(hardWordMutedNotesCount) }}</template>
|
|
|
|
</MkKeyValue>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<MkButton primary inline :disabled="!changed" @click="save()"><i class="fas fa-save"></i> {{ $ts.save }}</MkButton>
|
2020-10-17 13:12:00 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from 'vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import FormTextarea from '@/components/form/textarea.vue';
|
2021-11-28 12:07:37 +01:00
|
|
|
import MkKeyValue from '@/components/key-value.vue';
|
|
|
|
import MkButton from '@/components/ui/button.vue';
|
|
|
|
import MkInfo from '@/components/ui/info.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import MkTab from '@/components/tab.vue';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import number from '@/filters/number';
|
|
|
|
import * as symbols from '@/symbols';
|
2020-10-17 13:12:00 +02:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
2021-11-28 12:07:37 +01:00
|
|
|
MkButton,
|
2020-11-25 13:31:34 +01:00
|
|
|
FormTextarea,
|
2021-11-28 12:07:37 +01:00
|
|
|
MkKeyValue,
|
2020-10-17 13:12:00 +02:00
|
|
|
MkTab,
|
2021-11-28 12:07:37 +01:00
|
|
|
MkInfo,
|
2020-10-17 13:12:00 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
emits: ['info'],
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
2021-04-10 05:54:12 +02:00
|
|
|
[symbols.PAGE_INFO]: {
|
2020-12-26 02:47:36 +01:00
|
|
|
title: this.$ts.wordMute,
|
2021-09-29 17:50:45 +02:00
|
|
|
icon: 'fas fa-comment-slash',
|
|
|
|
bg: 'var(--bg)',
|
2020-10-17 13:12:00 +02:00
|
|
|
},
|
|
|
|
tab: 'soft',
|
|
|
|
softMutedWords: '',
|
|
|
|
hardMutedWords: '',
|
|
|
|
hardWordMutedNotesCount: null,
|
|
|
|
changed: false,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
watch: {
|
|
|
|
softMutedWords: {
|
|
|
|
handler() {
|
|
|
|
this.changed = true;
|
|
|
|
},
|
|
|
|
deep: true
|
|
|
|
},
|
|
|
|
hardMutedWords: {
|
|
|
|
handler() {
|
|
|
|
this.changed = true;
|
|
|
|
},
|
|
|
|
deep: true
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
async created() {
|
2020-12-19 02:55:52 +01:00
|
|
|
this.softMutedWords = this.$store.state.mutedWords.map(x => x.join(' ')).join('\n');
|
|
|
|
this.hardMutedWords = this.$i.mutedWords.map(x => x.join(' ')).join('\n');
|
2020-10-17 13:12:00 +02:00
|
|
|
|
|
|
|
this.hardWordMutedNotesCount = (await os.api('i/get-word-muted-notes-count', {})).count;
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
async save() {
|
2020-12-19 02:55:52 +01:00
|
|
|
this.$store.set('mutedWords', this.softMutedWords.trim().split('\n').map(x => x.trim().split(' ')));
|
2020-10-17 13:12:00 +02:00
|
|
|
await os.api('i/update', {
|
|
|
|
mutedWords: this.hardMutedWords.trim().split('\n').map(x => x.trim().split(' ')),
|
|
|
|
});
|
|
|
|
this.changed = false;
|
|
|
|
},
|
2020-11-25 13:31:34 +01:00
|
|
|
|
|
|
|
number
|
2020-10-17 13:12:00 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|