2023-07-27 08:31:52 +03:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
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
|
|
|
<div>
|
2023-10-03 14:26:11 +03:00
|
|
|
<MkTextarea v-model="mutedWords">
|
|
|
|
<span>{{ i18n.ts._wordMute.muteWords }}</span>
|
|
|
|
<template #caption>{{ i18n.ts._wordMute.muteWordsDescription }}<br>{{ i18n.ts._wordMute.muteWordsDescription2 }}</template>
|
|
|
|
</MkTextarea>
|
2021-11-28 13:07:37 +02:00
|
|
|
</div>
|
2023-09-30 22:53:52 +03:00
|
|
|
<MkButton primary inline :disabled="!changed" @click="save()"><i class="ph-floppy-disk ph-bold pg-lg"></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';
|
2023-09-19 10:37:43 +03:00
|
|
|
import * as os from '@/os.js';
|
|
|
|
import number from '@/filters/number.js';
|
|
|
|
import { defaultStore } from '@/store.js';
|
|
|
|
import { $i } from '@/account.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
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');
|
2023-10-03 14:26:11 +03:00
|
|
|
const mutedWords = ref(render($i!.mutedWords));
|
2022-05-05 16:51:58 +03:00
|
|
|
const changed = ref(false);
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2023-10-03 14:26:11 +03:00
|
|
|
watch(mutedWords, () => {
|
2022-05-05 16:51:58 +03:00
|
|
|
changed.value = true;
|
|
|
|
});
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2022-05-05 16:51:58 +03:00
|
|
|
async function save() {
|
2023-10-03 14:26:11 +03:00
|
|
|
const parseMutes = (mutes) => {
|
2022-05-05 16:51:58 +03:00
|
|
|
// 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,
|
2023-10-03 14:26:11 +03:00
|
|
|
text: i18n.t('regexpErrorDescription', { tab: 'word mute', 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
|
|
|
|
2023-10-03 14:26:11 +03:00
|
|
|
let parsed;
|
2022-05-05 16:51:58 +03:00
|
|
|
try {
|
2023-10-03 14:26:11 +03:00
|
|
|
parsed = parseMutes(mutedWords.value);
|
2022-05-05 16:51:58 +03:00
|
|
|
} 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
|
|
|
await os.api('i/update', {
|
2023-10-03 14:26:11 +03:00
|
|
|
mutedWords: parsed,
|
2022-05-05 16:51:58 +03:00
|
|
|
});
|
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,
|
2023-10-01 01:46:42 +03:00
|
|
|
icon: 'ph-bell-slash ph-bold ph-lg',
|
2020-10-17 14:12:00 +03:00
|
|
|
});
|
|
|
|
</script>
|