2020-03-28 11:33:11 +01:00
|
|
|
<template>
|
2022-01-04 10:21:00 +01:00
|
|
|
<div class="_formRoot">
|
2021-11-19 11:36:12 +01:00
|
|
|
<FormPagination ref="list" :pagination="pagination">
|
2020-03-28 11:33:11 +01:00
|
|
|
<template #empty>
|
|
|
|
<div class="_fullinfo">
|
|
|
|
<img src="https://xn--931a.moe/assets/info.jpg" class="_ghost"/>
|
2022-05-04 03:15:24 +02:00
|
|
|
<div>{{ i18n.ts.nothing }}</div>
|
2020-03-28 11:33:11 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
2022-06-20 10:38:49 +02:00
|
|
|
<template #default="{items}">
|
2022-01-04 10:21:00 +01:00
|
|
|
<div v-for="token in items" :key="token.id" class="_panel bfomjevm">
|
2021-11-19 11:36:12 +01:00
|
|
|
<img v-if="token.iconUrl" class="icon" :src="token.iconUrl" alt=""/>
|
2020-03-28 11:33:11 +01:00
|
|
|
<div class="body">
|
|
|
|
<div class="name">{{ token.name }}</div>
|
|
|
|
<div class="description">{{ token.description }}</div>
|
|
|
|
<div class="_keyValue">
|
2022-05-04 03:15:24 +02:00
|
|
|
<div>{{ i18n.ts.installedDate }}:</div>
|
2020-10-17 13:12:00 +02:00
|
|
|
<div><MkTime :time="token.createdAt"/></div>
|
2020-03-28 11:33:11 +01:00
|
|
|
</div>
|
|
|
|
<div class="_keyValue">
|
2022-05-04 03:15:24 +02:00
|
|
|
<div>{{ i18n.ts.lastUsedDate }}:</div>
|
2020-10-17 13:12:00 +02:00
|
|
|
<div><MkTime :time="token.lastUsedAt"/></div>
|
2020-03-28 11:33:11 +01:00
|
|
|
</div>
|
|
|
|
<div class="actions">
|
2021-04-20 16:22:59 +02:00
|
|
|
<button class="_button" @click="revoke(token)"><i class="fas fa-trash-alt"></i></button>
|
2020-03-28 11:33:11 +01:00
|
|
|
</div>
|
2020-03-29 10:06:36 +02:00
|
|
|
<details>
|
2022-05-04 03:15:24 +02:00
|
|
|
<summary>{{ i18n.ts.details }}</summary>
|
2020-03-29 10:06:36 +02:00
|
|
|
<ul>
|
|
|
|
<li v-for="p in token.permission" :key="p">{{ $t(`_permissions.${p}`) }}</li>
|
|
|
|
</ul>
|
|
|
|
</details>
|
2020-03-28 11:33:11 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
2020-11-25 13:31:34 +01:00
|
|
|
</FormPagination>
|
2022-01-04 10:21:00 +01:00
|
|
|
</div>
|
2020-03-28 11:33:11 +01:00
|
|
|
</template>
|
|
|
|
|
2022-05-04 03:15:24 +02:00
|
|
|
<script lang="ts" setup>
|
2022-06-20 10:38:49 +02:00
|
|
|
import { ref } from 'vue';
|
2022-01-04 10:21:00 +01:00
|
|
|
import FormPagination from '@/components/ui/pagination.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import * as os from '@/os';
|
2022-05-04 03:15:24 +02:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 10:38:49 +02:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2020-03-28 11:33:11 +01:00
|
|
|
|
2022-05-04 03:15:24 +02:00
|
|
|
const list = ref<any>(null);
|
2020-03-28 11:33:11 +01:00
|
|
|
|
2022-05-04 03:15:24 +02:00
|
|
|
const pagination = {
|
|
|
|
endpoint: 'i/apps' as const,
|
|
|
|
limit: 100,
|
|
|
|
params: {
|
2022-06-20 10:38:49 +02:00
|
|
|
sort: '+lastUsedAt',
|
|
|
|
},
|
2022-06-10 07:36:55 +02:00
|
|
|
};
|
2020-11-25 13:31:34 +01:00
|
|
|
|
2022-05-04 03:15:24 +02:00
|
|
|
function revoke(token) {
|
|
|
|
os.api('i/revoke-token', { tokenId: token.id }).then(() => {
|
|
|
|
list.value.reload();
|
|
|
|
});
|
|
|
|
}
|
2020-03-28 11:33:11 +01:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.installedApps,
|
|
|
|
icon: 'fas fa-plug',
|
2020-03-28 11:33:11 +01:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.bfomjevm {
|
2020-11-25 13:31:34 +01:00
|
|
|
display: flex;
|
|
|
|
padding: 16px;
|
2020-03-28 11:33:11 +01:00
|
|
|
|
2020-11-25 13:31:34 +01:00
|
|
|
> .icon {
|
|
|
|
display: block;
|
|
|
|
flex-shrink: 0;
|
|
|
|
margin: 0 12px 0 0;
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
2020-03-28 11:33:11 +01:00
|
|
|
|
2020-11-25 13:31:34 +01:00
|
|
|
> .body {
|
|
|
|
width: calc(100% - 62px);
|
|
|
|
position: relative;
|
2020-03-28 11:33:11 +01:00
|
|
|
|
2020-11-25 13:31:34 +01:00
|
|
|
> .name {
|
|
|
|
font-weight: bold;
|
2020-03-28 11:33:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|