11349561d6
* wip * wip * wip * wip * wip * wip * wip * wip * wip * Update yarn.lock * wip * wip
104 lines
2.9 KiB
Vue
104 lines
2.9 KiB
Vue
<template>
|
|
<FormBase>
|
|
<FormGroup>
|
|
<template #label>{{ $ts._exportOrImport.allNotes }}</template>
|
|
<FormButton @click="doExport('notes')"><i class="fas fa-download"></i> {{ $ts.export }}</FormButton>
|
|
</FormGroup>
|
|
<FormGroup>
|
|
<template #label>{{ $ts._exportOrImport.followingList }}</template>
|
|
<FormButton @click="doExport('following')"><i class="fas fa-download"></i> {{ $ts.export }}</FormButton>
|
|
<FormButton @click="doImport('following', $event)"><i class="fas fa-upload"></i> {{ $ts.import }}</FormButton>
|
|
</FormGroup>
|
|
<FormGroup>
|
|
<template #label>{{ $ts._exportOrImport.userLists }}</template>
|
|
<FormButton @click="doExport('user-lists')"><i class="fas fa-download"></i> {{ $ts.export }}</FormButton>
|
|
<FormButton @click="doImport('user-lists', $event)"><i class="fas fa-upload"></i> {{ $ts.import }}</FormButton>
|
|
</FormGroup>
|
|
<FormGroup>
|
|
<template #label>{{ $ts._exportOrImport.muteList }}</template>
|
|
<FormButton @click="doExport('mute')"><i class="fas fa-download"></i> {{ $ts.export }}</FormButton>
|
|
</FormGroup>
|
|
<FormGroup>
|
|
<template #label>{{ $ts._exportOrImport.blockingList }}</template>
|
|
<FormButton @click="doExport('blocking')"><i class="fas fa-download"></i> {{ $ts.export }}</FormButton>
|
|
</FormGroup>
|
|
</FormBase>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import FormSelect from '@client/components/form/select.vue';
|
|
import FormButton from '@client/components/form/button.vue';
|
|
import FormBase from '@client/components/form/base.vue';
|
|
import FormGroup from '@client/components/form/group.vue';
|
|
import * as os from '@client/os';
|
|
import { selectFile } from '@client/scripts/select-file';
|
|
import * as symbols from '@client/symbols';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
FormBase,
|
|
FormGroup,
|
|
FormButton,
|
|
},
|
|
|
|
emits: ['info'],
|
|
|
|
data() {
|
|
return {
|
|
[symbols.PAGE_INFO]: {
|
|
title: this.$ts.importAndExport,
|
|
icon: 'fas fa-boxes'
|
|
},
|
|
}
|
|
},
|
|
|
|
mounted() {
|
|
this.$emit('info', this[symbols.PAGE_INFO]);
|
|
},
|
|
|
|
methods: {
|
|
doExport(target) {
|
|
os.api(
|
|
target == 'notes' ? 'i/export-notes' :
|
|
target == 'following' ? 'i/export-following' :
|
|
target == 'blocking' ? 'i/export-blocking' :
|
|
target == 'user-lists' ? 'i/export-user-lists' :
|
|
target == 'mute' ? 'i/export-mute' :
|
|
null, {})
|
|
.then(() => {
|
|
os.dialog({
|
|
type: 'info',
|
|
text: this.$ts.exportRequested
|
|
});
|
|
}).catch((e: any) => {
|
|
os.dialog({
|
|
type: 'error',
|
|
text: e.message
|
|
});
|
|
});
|
|
},
|
|
|
|
async doImport(target, e) {
|
|
const file = await selectFile(e.currentTarget || e.target);
|
|
|
|
os.api(
|
|
target == 'following' ? 'i/import-following' :
|
|
target == 'user-lists' ? 'i/import-user-lists' :
|
|
null, {
|
|
fileId: file.id
|
|
}).then(() => {
|
|
os.dialog({
|
|
type: 'info',
|
|
text: this.$ts.importRequested
|
|
});
|
|
}).catch((e: any) => {
|
|
os.dialog({
|
|
type: 'error',
|
|
text: e.message
|
|
});
|
|
});
|
|
},
|
|
}
|
|
});
|
|
</script>
|