forked from didirus/AstralRinth
* Fix syncing, repairing, add edit method * comp err * temp push up * fixes * fix more * add frontend
55 lines
1.3 KiB
Vue
55 lines
1.3 KiB
Vue
<script setup>
|
|
import { Button, Modal, XIcon, DownloadIcon } from 'omorphia'
|
|
import { install as pack_install } from '@/helpers/pack'
|
|
import { ref } from 'vue'
|
|
|
|
const version = ref('')
|
|
const title = ref('')
|
|
const icon = ref('')
|
|
const confirmModal = ref(null)
|
|
|
|
defineExpose({
|
|
show: (id, projectTitle, projectIcon) => {
|
|
version.value = id
|
|
title.value = projectTitle
|
|
icon.value = projectIcon
|
|
confirmModal.value.show()
|
|
},
|
|
})
|
|
|
|
async function install() {
|
|
confirmModal.value.hide()
|
|
await pack_install(version.value, title.value, icon.value ? icon.value : null)
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<Modal ref="confirmModal" header="Are you sure?">
|
|
<div class="modal-body">
|
|
<p>
|
|
This project is already installed on your system. Are you sure you want to install it again?
|
|
</p>
|
|
<div class="button-group">
|
|
<Button @click="() => $refs.confirmModal.hide()"><XIcon />Cancel</Button>
|
|
<Button color="primary" @click="install()"><DownloadIcon /> Install</Button>
|
|
</div>
|
|
</div>
|
|
</Modal>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.modal-body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
padding: 1rem;
|
|
}
|
|
|
|
.button-group {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 0.5rem;
|
|
justify-content: flex-end;
|
|
}
|
|
</style>
|