mirror of
https://github.com/modrinth/code.git
synced 2026-08-25 09:04:55 +00:00
* remove unused experimental-styles-within * remove unused styles * more cleanup + prepr * Refactor nearly all legacy buttons to use ButtonStyled * prepr * Update MC account selector to modern version * prepr --------- Co-authored-by: Calum H. <calum@modrinth.com>
90 lines
2.2 KiB
Vue
90 lines
2.2 KiB
Vue
<template>
|
|
<NewModal ref="modal" fade="warning" :header="formatMessage(messages.header)" max-width="500px">
|
|
<p class="m-0 text-secondary">
|
|
{{ formatMessage(messages.body) }}
|
|
</p>
|
|
<template #actions>
|
|
<div class="flex justify-end gap-2">
|
|
<ButtonStyled type="outlined">
|
|
<button @click="handleCancel">
|
|
<XIcon />
|
|
{{ formatMessage(commonMessages.cancelButton) }}
|
|
</button>
|
|
</ButtonStyled>
|
|
<ButtonStyled color="red">
|
|
<button @click="handleDiscard">
|
|
<TrashIcon />
|
|
{{ formatMessage(messages.discard) }}
|
|
</button>
|
|
</ButtonStyled>
|
|
<ButtonStyled color="green">
|
|
<button @click="handleSave">
|
|
<SaveIcon />
|
|
{{ formatMessage(commonMessages.saveButton) }}
|
|
</button>
|
|
</ButtonStyled>
|
|
</div>
|
|
</template>
|
|
</NewModal>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { SaveIcon, TrashIcon, XIcon } from '@modrinth/assets'
|
|
import { ref } from 'vue'
|
|
|
|
import ButtonStyled from '#ui/components/base/ButtonStyled.vue'
|
|
import NewModal from '#ui/components/modal/NewModal.vue'
|
|
import { defineMessages, useVIntl } from '#ui/composables/i18n'
|
|
import { commonMessages } from '#ui/utils/common-messages'
|
|
|
|
const { formatMessage } = useVIntl()
|
|
|
|
const messages = defineMessages({
|
|
header: {
|
|
id: 'files.unsaved-changes-modal.header',
|
|
defaultMessage: 'Unsaved changes',
|
|
},
|
|
body: {
|
|
id: 'files.unsaved-changes-modal.body',
|
|
defaultMessage:
|
|
'You have unsaved changes that will be lost if you leave. Would you like to save before leaving?',
|
|
},
|
|
discard: {
|
|
id: 'files.unsaved-changes-modal.discard',
|
|
defaultMessage: 'Discard',
|
|
},
|
|
})
|
|
|
|
export type UnsavedChangesResult = 'cancel' | 'discard' | 'save'
|
|
|
|
const modal = ref<InstanceType<typeof NewModal>>()
|
|
let resolvePromise: ((value: UnsavedChangesResult) => void) | null = null
|
|
|
|
function prompt(): Promise<UnsavedChangesResult> {
|
|
return new Promise((resolve) => {
|
|
resolvePromise = resolve
|
|
modal.value?.show()
|
|
})
|
|
}
|
|
|
|
function resolve(result: UnsavedChangesResult) {
|
|
modal.value?.hide()
|
|
resolvePromise?.(result)
|
|
resolvePromise = null
|
|
}
|
|
|
|
function handleCancel() {
|
|
resolve('cancel')
|
|
}
|
|
|
|
function handleDiscard() {
|
|
resolve('discard')
|
|
}
|
|
|
|
function handleSave() {
|
|
resolve('save')
|
|
}
|
|
|
|
defineExpose({ prompt })
|
|
</script>
|