2020-10-17 14:12:00 +03:00
|
|
|
<template>
|
2023-01-06 06:40:17 +02:00
|
|
|
<div class="_gaps_m">
|
2023-01-05 14:04:56 +02:00
|
|
|
<MkTab v-model="tab">
|
2022-05-05 16:51:58 +03:00
|
|
|
<option value="soft">{{ i18n.ts._wordMute.soft }}</option>
|
|
|
|
<option value="hard">{{ i18n.ts._wordMute.hard }}</option>
|
2020-11-25 14:31:34 +02:00
|
|
|
</MkTab>
|
2023-01-05 14:04:56 +02:00
|
|
|
<div>
|
2023-01-06 06:40:17 +02:00
|
|
|
<div v-show="tab === 'soft'" class="_gaps_m">
|
2023-01-05 14:04:56 +02:00
|
|
|
<MkInfo>{{ i18n.ts._wordMute.softDescription }}</MkInfo>
|
2023-01-07 08:09:46 +02:00
|
|
|
<MkTextarea v-model="softMutedWords">
|
2022-05-05 16:51:58 +03:00
|
|
|
<span>{{ i18n.ts._wordMute.muteWords }}</span>
|
|
|
|
<template #caption>{{ i18n.ts._wordMute.muteWordsDescription }}<br>{{ i18n.ts._wordMute.muteWordsDescription2 }}</template>
|
2023-01-07 08:09:46 +02:00
|
|
|
</MkTextarea>
|
2020-10-17 14:12:00 +03:00
|
|
|
</div>
|
2023-01-06 06:40:17 +02:00
|
|
|
<div v-show="tab === 'hard'" class="_gaps_m">
|
2023-01-05 14:04:56 +02:00
|
|
|
<MkInfo>{{ i18n.ts._wordMute.hardDescription }} {{ i18n.ts.reflectMayTakeTime }}</MkInfo>
|
2023-01-07 08:09:46 +02:00
|
|
|
<MkTextarea v-model="hardMutedWords">
|
2022-05-05 16:51:58 +03:00
|
|
|
<span>{{ i18n.ts._wordMute.muteWords }}</span>
|
|
|
|
<template #caption>{{ i18n.ts._wordMute.muteWordsDescription }}<br>{{ i18n.ts._wordMute.muteWordsDescription2 }}</template>
|
2023-01-07 08:09:46 +02:00
|
|
|
</MkTextarea>
|
2023-01-05 14:04:56 +02:00
|
|
|
<MkKeyValue v-if="hardWordMutedNotesCount != null">
|
2022-05-05 16:51:58 +03:00
|
|
|
<template #key>{{ i18n.ts._wordMute.mutedNotes }}</template>
|
2021-11-28 13:07:37 +02:00
|
|
|
<template #value>{{ number(hardWordMutedNotesCount) }}</template>
|
|
|
|
</MkKeyValue>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-12-19 12:01:30 +02:00
|
|
|
<MkButton primary inline :disabled="!changed" @click="save()"><i class="ti ti-device-floppy"></i> {{ i18n.ts.save }}</MkButton>
|
2020-10-17 14:12:00 +03:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-05-05 16:51:58 +03:00
|
|
|
<script lang="ts" setup>
|
2022-06-20 11:38:49 +03:00
|
|
|
import { ref, watch } from 'vue';
|
2023-01-07 08:09:46 +02:00
|
|
|
import MkTextarea from '@/components/MkTextarea.vue';
|
2022-08-30 18:24:33 +03:00
|
|
|
import MkKeyValue from '@/components/MkKeyValue.vue';
|
2022-09-06 12:21:49 +03:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
|
|
|
import MkInfo from '@/components/MkInfo.vue';
|
2022-08-30 18:24:33 +03:00
|
|
|
import MkTab from '@/components/MkTab.vue';
|
2021-11-11 19:02:25 +02:00
|
|
|
import * as os from '@/os';
|
|
|
|
import number from '@/filters/number';
|
2022-05-05 16:51:58 +03:00
|
|
|
import { defaultStore } from '@/store';
|
|
|
|
import { $i } from '@/account';
|
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 11:38:49 +03:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2022-05-05 16:51:58 +03:00
|
|
|
const render = (mutedWords) => mutedWords.map(x => {
|
|
|
|
if (Array.isArray(x)) {
|
|
|
|
return x.join(' ');
|
|
|
|
} else {
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
}).join('\n');
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2022-05-05 16:51:58 +03:00
|
|
|
const tab = ref('soft');
|
|
|
|
const softMutedWords = ref(render(defaultStore.state.mutedWords));
|
|
|
|
const hardMutedWords = ref(render($i!.mutedWords));
|
|
|
|
const hardWordMutedNotesCount = ref(null);
|
|
|
|
const changed = ref(false);
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2022-05-05 16:51:58 +03:00
|
|
|
os.api('i/get-word-muted-notes-count', {}).then(response => {
|
|
|
|
hardWordMutedNotesCount.value = response?.count;
|
|
|
|
});
|
2022-02-10 12:47:46 +02:00
|
|
|
|
2022-05-05 16:51:58 +03:00
|
|
|
watch(softMutedWords, () => {
|
|
|
|
changed.value = true;
|
|
|
|
});
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2022-05-05 16:51:58 +03:00
|
|
|
watch(hardMutedWords, () => {
|
|
|
|
changed.value = true;
|
|
|
|
});
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2022-05-05 16:51:58 +03:00
|
|
|
async function save() {
|
|
|
|
const parseMutes = (mutes, tab) => {
|
|
|
|
// split into lines, remove empty lines and unnecessary whitespace
|
2022-05-26 16:53:09 +03:00
|
|
|
let lines = mutes.trim().split('\n').map(line => line.trim()).filter(line => line !== '');
|
2022-02-10 12:47:46 +02:00
|
|
|
|
2022-05-05 16:51:58 +03:00
|
|
|
// check each line if it is a RegExp or not
|
|
|
|
for (let i = 0; i < lines.length; i++) {
|
2022-06-10 08:36:55 +03:00
|
|
|
const line = lines[i];
|
2022-05-05 16:51:58 +03:00
|
|
|
const regexp = line.match(/^\/(.+)\/(.*)$/);
|
|
|
|
if (regexp) {
|
|
|
|
// check that the RegExp is valid
|
|
|
|
try {
|
|
|
|
new RegExp(regexp[1], regexp[2]);
|
|
|
|
// note that regex lines will not be split by spaces!
|
|
|
|
} catch (err: any) {
|
|
|
|
// invalid syntax: do not save, do not reset changed flag
|
|
|
|
os.alert({
|
|
|
|
type: 'error',
|
|
|
|
title: i18n.ts.regexpError,
|
2022-06-20 11:38:49 +03:00
|
|
|
text: i18n.t('regexpErrorDescription', { tab, line: i + 1 }) + '\n' + err.toString(),
|
2022-05-05 16:51:58 +03:00
|
|
|
});
|
|
|
|
// re-throw error so these invalid settings are not saved
|
|
|
|
throw err;
|
2022-02-10 12:47:46 +02:00
|
|
|
}
|
2022-05-05 16:51:58 +03:00
|
|
|
} else {
|
|
|
|
lines[i] = line.split(' ');
|
|
|
|
}
|
|
|
|
}
|
2022-02-11 12:44:56 +02:00
|
|
|
|
2022-05-05 16:51:58 +03:00
|
|
|
return lines;
|
|
|
|
};
|
2022-02-10 12:47:46 +02:00
|
|
|
|
2022-05-05 16:51:58 +03:00
|
|
|
let softMutes, hardMutes;
|
|
|
|
try {
|
|
|
|
softMutes = parseMutes(softMutedWords.value, i18n.ts._wordMute.soft);
|
|
|
|
hardMutes = parseMutes(hardMutedWords.value, i18n.ts._wordMute.hard);
|
|
|
|
} catch (err) {
|
|
|
|
// already displayed error message in parseMutes
|
|
|
|
return;
|
|
|
|
}
|
2022-02-10 12:47:46 +02:00
|
|
|
|
2022-05-05 16:51:58 +03:00
|
|
|
defaultStore.set('mutedWords', softMutes);
|
|
|
|
await os.api('i/update', {
|
|
|
|
mutedWords: hardMutes,
|
|
|
|
});
|
2022-02-10 12:47:46 +02:00
|
|
|
|
2022-05-05 16:51:58 +03:00
|
|
|
changed.value = false;
|
|
|
|
}
|
2020-11-25 14:31:34 +02:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.wordMute,
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-message-off',
|
2020-10-17 14:12:00 +03:00
|
|
|
});
|
|
|
|
</script>
|