mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-15 15:56:25 +01:00
fa9c4a19b9
* refactor(frontend): os.tsに引き込んだscripts/api.tsの再exportをやめる * fix * fix * renate to "misskeyApi" * rename file
52 lines
1.4 KiB
Vue
52 lines
1.4 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<div class="_gaps_m">
|
|
<MkButton primary @click="generateToken">{{ i18n.ts.generateAccessToken }}</MkButton>
|
|
<FormLink to="/settings/apps">{{ i18n.ts.manageAccessTokens }}</FormLink>
|
|
<FormLink to="/api-console" :behavior="isDesktop ? 'window' : null">API console</FormLink>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { defineAsyncComponent, ref, computed } from 'vue';
|
|
import FormLink from '@/components/form/link.vue';
|
|
import MkButton from '@/components/MkButton.vue';
|
|
import * as os from '@/os.js';
|
|
import { misskeyApi } from '@/scripts/misskey-api.js';
|
|
import { i18n } from '@/i18n.js';
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
|
|
const isDesktop = ref(window.innerWidth >= 1100);
|
|
|
|
function generateToken() {
|
|
os.popup(defineAsyncComponent(() => import('@/components/MkTokenGenerateWindow.vue')), {}, {
|
|
done: async result => {
|
|
const { name, permissions } = result;
|
|
const { token } = await misskeyApi('miauth/gen-token', {
|
|
session: null,
|
|
name: name,
|
|
permission: permissions,
|
|
});
|
|
|
|
os.alert({
|
|
type: 'success',
|
|
title: i18n.ts.token,
|
|
text: token,
|
|
});
|
|
},
|
|
}, 'closed');
|
|
}
|
|
|
|
const headerActions = computed(() => []);
|
|
|
|
const headerTabs = computed(() => []);
|
|
|
|
definePageMetadata({
|
|
title: 'API',
|
|
icon: 'ti ti-api',
|
|
});
|
|
</script>
|