mirror of
https://github.com/modrinth/code.git
synced 2026-08-30 11:36:05 +00:00
68 lines
1.7 KiB
Vue
68 lines
1.7 KiB
Vue
<script setup lang="ts">
|
|
import { CircuitBoardIcon } from '@modrinth/assets'
|
|
import {
|
|
defineMessages,
|
|
SettingsFormGroup,
|
|
SettingsToggleCard,
|
|
StyledInput,
|
|
useVIntl,
|
|
} from '@modrinth/ui'
|
|
|
|
import type { NoteDisclosure } from './types'
|
|
|
|
const model = defineModel<NoteDisclosure>({ required: true })
|
|
|
|
defineProps<{
|
|
disabled?: boolean
|
|
}>()
|
|
|
|
const { formatMessage } = useVIntl()
|
|
|
|
const messages = defineMessages({
|
|
title: {
|
|
id: 'project.settings.disclosures.system-interactions.title',
|
|
defaultMessage: 'External system interactions',
|
|
},
|
|
description: {
|
|
id: 'project.settings.disclosures.system-interactions.description',
|
|
defaultMessage:
|
|
"You must enable this if your project reads or edits things on the user's system outside of the game.",
|
|
},
|
|
noteLabel: {
|
|
id: 'project.settings.disclosures.system-interactions.note-label',
|
|
defaultMessage: 'Describe the external system interactions',
|
|
},
|
|
notePlaceholder: {
|
|
id: 'project.settings.disclosures.system-interactions.note-placeholder',
|
|
defaultMessage: 'e.g. It adds a file to the desktop called wake_up.txt',
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<SettingsToggleCard
|
|
v-model="model.enabled"
|
|
:disabled="disabled"
|
|
:icon="CircuitBoardIcon"
|
|
:title="formatMessage(messages.title)"
|
|
:description="formatMessage(messages.description)"
|
|
>
|
|
<template #expanded>
|
|
<SettingsFormGroup
|
|
:title="formatMessage(messages.noteLabel)"
|
|
title-for="system-interactions-disclosure-note"
|
|
>
|
|
<StyledInput
|
|
id="system-interactions-disclosure-note"
|
|
v-model="model.note"
|
|
multiline
|
|
:rows="3"
|
|
class="max-w-[40rem]"
|
|
:disabled="disabled"
|
|
:placeholder="formatMessage(messages.notePlaceholder)"
|
|
/>
|
|
</SettingsFormGroup>
|
|
</template>
|
|
</SettingsToggleCard>
|
|
</template>
|