* fix tauri config * fix package patch * regen pnpm lock * use new workflow * New GH actions * Update lockfile * update scripts * Fix build script * Fix missing deps * Fix assets eslint * Update libraries lint * Fix all lint configs * update lockfile * add fmt + clippy fails * Separate App Tauri portion * fix app features * Fix lints * install tauri cli * update lockfile * corepack, fix lints * add store path * fix unused import * Fix tests * Issue templates + port over tauri release * fix actions * fix before build command * Add X86 target * Update build matrix * finalize actions * make debug build smaller * Use debug build to make cache smaller * dummy commit * change proj name * update file name * Use release builds for less space use * Remove rust cache * Readd for app build * add merge queue trigger
73 lines
2.0 KiB
Vue
73 lines
2.0 KiB
Vue
<script setup>
|
|
import { XIcon, DownloadIcon } from '@modrinth/assets'
|
|
import { Button, Modal } from '@modrinth/ui'
|
|
import { install as pack_install } from '@/helpers/pack'
|
|
import { ref } from 'vue'
|
|
import { mixpanel_track } from '@/helpers/mixpanel'
|
|
import { useTheming } from '@/store/theme.js'
|
|
import { handleError } from '@/store/state.js'
|
|
|
|
const themeStore = useTheming()
|
|
|
|
const version = ref('')
|
|
const title = ref('')
|
|
const projectId = ref('')
|
|
const icon = ref('')
|
|
const confirmModal = ref(null)
|
|
const installing = ref(false)
|
|
|
|
defineExpose({
|
|
show: (projectIdVal, versionId, projectTitle, projectIcon) => {
|
|
projectId.value = projectIdVal
|
|
version.value = versionId
|
|
title.value = projectTitle
|
|
icon.value = projectIcon
|
|
installing.value = false
|
|
confirmModal.value.show()
|
|
|
|
mixpanel_track('PackInstallStart')
|
|
},
|
|
})
|
|
|
|
async function install() {
|
|
installing.value = true
|
|
console.log(`Installing ${projectId.value} ${version.value} ${title.value} ${icon.value}`)
|
|
confirmModal.value.hide()
|
|
await pack_install(
|
|
projectId.value,
|
|
version.value,
|
|
title.value,
|
|
icon.value ? icon.value : null,
|
|
).catch(handleError)
|
|
mixpanel_track('PackInstall', {
|
|
id: projectId.value,
|
|
version_id: version.value,
|
|
title: title.value,
|
|
source: 'ConfirmModal',
|
|
})
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<Modal ref="confirmModal" header="Are you sure?" :noblur="!themeStore.advancedRendering">
|
|
<div class="modal-body">
|
|
<p>You already have this modpack installed. Are you sure you want to install it again?</p>
|
|
<div class="input-group push-right">
|
|
<Button @click="() => $refs.confirmModal.hide()"><XIcon />Cancel</Button>
|
|
<Button color="primary" :disabled="installing" @click="install()"
|
|
><DownloadIcon /> {{ installing ? 'Installing' : 'Install' }}</Button
|
|
>
|
|
</div>
|
|
</div>
|
|
</Modal>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.modal-body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
padding: 1rem;
|
|
}
|
|
</style>
|