forked from didirus/AstralRinth
* refactor: migrate to common eslint+prettier configs * fix: prettier frontend * feat: config changes * fix: lint issues * fix: lint * fix: type imports * fix: cyclical import issue * fix: lockfile * fix: missing dep * fix: switch to tabs * fix: continue switch to tabs * fix: rustfmt parity * fix: moderation lint issue * fix: lint issues * fix: ui intl * fix: lint issues * Revert "fix: rustfmt parity" This reverts commit cb99d2376c321d813d4b7fc7e2a213bb30a54711. * feat: revert last rs
57 lines
1.5 KiB
Vue
57 lines
1.5 KiB
Vue
<template>
|
|
<ConfirmModal
|
|
ref="modal"
|
|
title="Do you want to overwrite these conflicting files?"
|
|
:proceed-label="`Overwrite`"
|
|
:proceed-icon="CheckIcon"
|
|
@proceed="proceed"
|
|
>
|
|
<div class="flex max-w-[30rem] flex-col gap-4">
|
|
<p class="m-0 font-semibold leading-normal">
|
|
<template v-if="hasMany">
|
|
Over 100 files will be overwritten if you proceed with extraction; here is just some of
|
|
them:
|
|
</template>
|
|
<template v-else>
|
|
The following {{ files.length }} files already exist on your server, and will be
|
|
overwritten if you proceed with extraction:
|
|
</template>
|
|
</p>
|
|
<ul class="m-0 max-h-80 list-none overflow-auto rounded-2xl bg-bg px-4 py-3">
|
|
<li v-for="file in files" :key="file" class="flex items-center gap-1 py-1 font-medium">
|
|
<XIcon class="shrink-0 text-red" /> {{ file }}
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</ConfirmModal>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { CheckIcon, XIcon } from '@modrinth/assets'
|
|
import { ConfirmModal } from '@modrinth/ui'
|
|
import { ref } from 'vue'
|
|
|
|
const path = ref('')
|
|
const files = ref<string[]>([])
|
|
|
|
const emit = defineEmits<{
|
|
(e: 'proceed', path: string): void
|
|
}>()
|
|
|
|
const modal = ref<typeof ConfirmModal>()
|
|
|
|
const hasMany = computed(() => files.value.length > 100)
|
|
|
|
const show = (zipPath: string, conflictingFiles: string[]) => {
|
|
path.value = zipPath
|
|
files.value = conflictingFiles
|
|
modal.value?.show()
|
|
}
|
|
|
|
const proceed = () => {
|
|
emit('proceed', path.value)
|
|
}
|
|
|
|
defineExpose({ show })
|
|
</script>
|