Token Modal confirm for removal (#1375)

This commit is contained in:
Mysterious_Dev
2023-09-29 04:44:36 +02:00
committed by GitHub
parent b9248553be
commit f37c4293df

View File

@@ -1,5 +1,12 @@
<template>
<div class="universal-card">
<ModalConfirm
ref="modal_confirm"
title="Are you sure you want to delete this token?"
description="This will remove this token forever (like really forever)."
proceed-label="Delete this token"
@proceed="removePat(deletePatIndex)"
/>
<Modal
ref="patModal"
:header="`${editPatIndex !== null ? 'Edit' : 'Create'} personal access token`"
@@ -132,7 +139,15 @@
>
<EditIcon /> Edit token
</button>
<button class="iconified-button raised-button" @click="removePat(pat.id)">
<button
class="iconified-button raised-button"
@click="
() => {
deletePatIndex = pat.id
$refs.modal_confirm.show()
}
"
>
<TrashIcon /> Revoke token
</button>
</div>
@@ -140,7 +155,16 @@
</div>
</template>
<script setup>
import { PlusIcon, Modal, XIcon, Checkbox, TrashIcon, EditIcon, SaveIcon } from 'omorphia'
import {
PlusIcon,
Modal,
XIcon,
Checkbox,
TrashIcon,
EditIcon,
SaveIcon,
ModalConfirm,
} from 'omorphia'
import CopyCode from '~/components/ui/CopyCode.vue'
definePageMeta({
@@ -193,6 +217,8 @@ const name = ref(null)
const scopesVal = ref(0)
const expires = ref(null)
const deletePatIndex = ref(null)
const loading = ref(false)
const { data: pats, refresh } = await useAsyncData('pat', () => useBaseFetch('pat'))