You've already forked AstralRinth
forked from didirus/AstralRinth
* Tabbed interface component * Start instance settings * New instance settings, mostly done minus modpacks * Extract i18n * Some more fixes with settings, still no modpacks yet * Lint * Modpack installation settings * Change no friends language * Remove options legacy button * fix lint, small bug * fix invalid cond on friends ui * update resource management page --------- Signed-off-by: Geometrically <18202329+Geometrically@users.noreply.github.com> Co-authored-by: Jai A <jaiagr+gpg@pm.me> Co-authored-by: Geometrically <18202329+Geometrically@users.noreply.github.com>
119 lines
2.6 KiB
Vue
119 lines
2.6 KiB
Vue
<template>
|
|
<NewModal ref="modal" :noblur="noblur" :danger="danger" :on-hide="onHide">
|
|
<template #title>
|
|
<slot name="title">
|
|
<span class="font-extrabold text-contrast text-lg">{{ title }}</span>
|
|
</slot>
|
|
</template>
|
|
<div>
|
|
<div class="markdown-body max-w-[35rem]" v-html="renderString(description)" />
|
|
<label v-if="hasToType" for="confirmation" class="confirmation-label">
|
|
<span>
|
|
<strong>To verify, type</strong>
|
|
<em class="confirmation-text">{{ confirmationText }}</em>
|
|
<strong>below:</strong>
|
|
</span>
|
|
</label>
|
|
<div class="confirmation-input">
|
|
<input
|
|
v-if="hasToType"
|
|
id="confirmation"
|
|
v-model="confirmation_typed"
|
|
type="text"
|
|
placeholder="Type here..."
|
|
@input="type"
|
|
/>
|
|
</div>
|
|
<div class="flex gap-2 mt-6">
|
|
<ButtonStyled :color="danger ? 'red' : 'brand'">
|
|
<button :disabled="action_disabled" @click="proceed">
|
|
<component :is="proceedIcon" />
|
|
{{ proceedLabel }}
|
|
</button>
|
|
</ButtonStyled>
|
|
<ButtonStyled>
|
|
<button @click="modal.hide()">
|
|
<XIcon />
|
|
Cancel
|
|
</button>
|
|
</ButtonStyled>
|
|
</div>
|
|
</div>
|
|
</NewModal>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { renderString } from '@modrinth/utils'
|
|
import { ref } from 'vue'
|
|
import { TrashIcon, XIcon } from '@modrinth/assets'
|
|
import NewModal from './NewModal.vue'
|
|
import ButtonStyled from '../base/ButtonStyled.vue'
|
|
|
|
const props = defineProps({
|
|
confirmationText: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
hasToType: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
title: {
|
|
type: String,
|
|
default: 'No title defined',
|
|
required: true,
|
|
},
|
|
description: {
|
|
type: String,
|
|
default: 'No description defined',
|
|
required: true,
|
|
},
|
|
proceedIcon: {
|
|
type: Object,
|
|
default: TrashIcon,
|
|
},
|
|
proceedLabel: {
|
|
type: String,
|
|
default: 'Proceed',
|
|
},
|
|
noblur: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
danger: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
onHide: {
|
|
type: Function,
|
|
default() {
|
|
return () => {}
|
|
},
|
|
},
|
|
})
|
|
|
|
const emit = defineEmits(['proceed'])
|
|
const modal = ref(null)
|
|
|
|
const action_disabled = ref(props.hasToType)
|
|
const confirmation_typed = ref('')
|
|
|
|
function proceed() {
|
|
modal.value.hide()
|
|
emit('proceed')
|
|
}
|
|
|
|
function type() {
|
|
if (props.hasToType) {
|
|
action_disabled.value =
|
|
confirmation_typed.value.toLowerCase() !== props.confirmationText.toLowerCase()
|
|
}
|
|
}
|
|
|
|
function show() {
|
|
modal.value.show()
|
|
}
|
|
|
|
defineExpose({ show })
|
|
</script>
|