Refactor instance-mute to use Composition API (#8580)

* refactor(client): refactor instance-mute to use Composition API

* Apply review suggestion from @Johann150

Co-authored-by: Johann150 <johann@qwertqwefsday.eu>

* Apply review suggestion from @Johann150

Co-authored-by: Johann150 <johann@qwertqwefsday.eu>

Co-authored-by: Johann150 <johann@qwertqwefsday.eu>
This commit is contained in:
Andreas Nedbal 2022-05-01 04:52:19 +02:00 committed by GitHub
parent 3dc027bcd5
commit 475b7556d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,67 +1,51 @@
<template> <template>
<div class="_formRoot"> <div class="_formRoot">
<MkInfo>{{ $ts._instanceMute.title }}</MkInfo> <MkInfo>{{ i18n.ts._instanceMute.title }}</MkInfo>
<FormTextarea v-model="instanceMutes" class="_formBlock"> <FormTextarea v-model="instanceMutes" class="_formBlock">
<template #label>{{ $ts._instanceMute.heading }}</template> <template #label>{{ i18n.ts._instanceMute.heading }}</template>
<template #caption>{{ $ts._instanceMute.instanceMuteDescription }}<br>{{ $ts._instanceMute.instanceMuteDescription2 }}</template> <template #caption>{{ i18n.ts._instanceMute.instanceMuteDescription }}<br>{{ i18n.ts._instanceMute.instanceMuteDescription2 }}</template>
</FormTextarea> </FormTextarea>
<MkButton primary :disabled="!changed" class="_formBlock" @click="save()"><i class="fas fa-save"></i> {{ $ts.save }}</MkButton> <MkButton primary :disabled="!changed" class="_formBlock" @click="save()"><i class="fas fa-save"></i> {{ i18n.ts.save }}</MkButton>
</div> </div>
</template> </template>
<script> <script lang="ts" setup>
import { defineComponent } from 'vue'; import { defineExpose, ref, watch } from 'vue';
import FormTextarea from '@/components/form/textarea.vue'; import FormTextarea from '@/components/form/textarea.vue';
import MkInfo from '@/components/ui/info.vue'; import MkInfo from '@/components/ui/info.vue';
import MkButton from '@/components/ui/button.vue'; import MkButton from '@/components/ui/button.vue';
import * as os from '@/os'; import * as os from '@/os';
import * as symbols from '@/symbols'; import * as symbols from '@/symbols';
import { $i } from '@/account';
import { i18n } from '@/i18n';
export default defineComponent({ const instanceMutes = ref($i!.mutedInstances.join('\n'));
components: { const changed = ref(false);
MkButton,
FormTextarea,
MkInfo,
},
emits: ['info'], async function save() {
let mutes = instanceMutes.value
.trim().split('\n')
.map(el => el.trim())
.filter(el => el);
data() { await os.api('i/update', {
return { mutedInstances: mutes,
[symbols.PAGE_INFO]: { });
title: this.$ts.instanceMute,
icon: 'fas fa-volume-mute'
},
tab: 'soft',
instanceMutes: '',
changed: false,
}
},
watch: { changed.value = false;
instanceMutes: {
handler() {
this.changed = true;
},
deep: true
},
},
async created() { // Refresh filtered list to signal to the user how they've been saved
this.instanceMutes = this.$i.mutedInstances.join('\n'); instanceMutes.value = mutes.join('\n');
}, }
methods: { watch(instanceMutes, () => {
async save() { changed.value = true;
let mutes = this.instanceMutes.trim().split('\n').map(el => el.trim()).filter(el => el); });
await os.api('i/update', {
mutedInstances: mutes,
});
this.changed = false;
// Refresh filtered list to signal to the user how they've been saved defineExpose({
this.instanceMutes = mutes.join('\n'); [symbols.PAGE_INFO]: {
}, title: i18n.ts.instanceMute,
icon: 'fas fa-volume-mute'
} }
}) });
</script> </script>