mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 22:23:08 +02:00
41 lines
918 B
Vue
41 lines
918 B
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<div class="">
|
|
<XAntenna v-if="antenna" :antenna="antenna" @updated="onAntennaUpdated"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import XAntenna from './editor.vue';
|
|
import * as os from '@/os.js';
|
|
import { i18n } from '@/i18n.js';
|
|
import { useRouter } from '@/router.js';
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
import { antennasCache } from '@/cache';
|
|
|
|
const router = useRouter();
|
|
|
|
let antenna: any = $ref(null);
|
|
|
|
const props = defineProps<{
|
|
antennaId: string
|
|
}>();
|
|
|
|
function onAntennaUpdated() {
|
|
antennasCache.delete();
|
|
router.push('/my/antennas');
|
|
}
|
|
|
|
os.api('antennas/show', { antennaId: props.antennaId }).then((antennaResponse) => {
|
|
antenna = antennaResponse;
|
|
});
|
|
|
|
definePageMetadata({
|
|
title: i18n.ts.manageAntennas,
|
|
icon: 'ti ti-antenna',
|
|
});
|
|
</script>
|