You've already forked AstralRinth
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
98 lines
2.6 KiB
Vue
98 lines
2.6 KiB
Vue
<template>
|
|
<ModalWrapper ref="detectJavaModal" header="Select java version" :show-ad-on-close="false">
|
|
<div class="auto-detect-modal">
|
|
<div class="table">
|
|
<div class="table-row table-head">
|
|
<div class="table-cell table-text">Version</div>
|
|
<div class="table-cell table-text">Path</div>
|
|
<div class="table-cell table-text">Actions</div>
|
|
</div>
|
|
<div v-for="javaInstall in chosenInstallOptions" :key="javaInstall.path" class="table-row">
|
|
<div class="table-cell table-text">
|
|
<span>{{ javaInstall.version }}</span>
|
|
</div>
|
|
<div v-tooltip="javaInstall.path" class="table-cell table-text">
|
|
<span>{{ javaInstall.path }}</span>
|
|
</div>
|
|
<div class="table-cell table-text manage">
|
|
<Button v-if="currentSelected.path === javaInstall.path" disabled
|
|
><CheckIcon /> Selected</Button
|
|
>
|
|
<Button v-else @click="setJavaInstall(javaInstall)"><PlusIcon /> Select</Button>
|
|
</div>
|
|
</div>
|
|
<div v-if="chosenInstallOptions.length === 0" class="table-row entire-row">
|
|
<div class="table-cell table-text">No java installations found!</div>
|
|
</div>
|
|
</div>
|
|
<div class="input-group push-right">
|
|
<Button @click="$refs.detectJavaModal.hide()">
|
|
<XIcon />
|
|
Cancel
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</ModalWrapper>
|
|
</template>
|
|
<script setup>
|
|
import { CheckIcon, PlusIcon, XIcon } from '@modrinth/assets'
|
|
import { Button, injectNotificationManager } from '@modrinth/ui'
|
|
import { ref } from 'vue'
|
|
|
|
import ModalWrapper from '@/components/ui/modal/ModalWrapper.vue'
|
|
import { trackEvent } from '@/helpers/analytics'
|
|
import { find_filtered_jres } from '@/helpers/jre.js'
|
|
|
|
const { handleError } = injectNotificationManager()
|
|
|
|
const chosenInstallOptions = ref([])
|
|
const detectJavaModal = ref(null)
|
|
const currentSelected = ref({})
|
|
|
|
defineExpose({
|
|
show: async (version, currentSelectedJava) => {
|
|
chosenInstallOptions.value = await find_filtered_jres(version).catch(handleError)
|
|
|
|
currentSelected.value = currentSelectedJava
|
|
if (!currentSelected.value) {
|
|
currentSelected.value = { path: '', version: '' }
|
|
}
|
|
|
|
detectJavaModal.value.show()
|
|
},
|
|
})
|
|
|
|
const emit = defineEmits(['submit'])
|
|
|
|
function setJavaInstall(javaInstall) {
|
|
emit('submit', javaInstall)
|
|
detectJavaModal.value.hide()
|
|
trackEvent('JavaAutoDetect', {
|
|
path: javaInstall.path,
|
|
version: javaInstall.version,
|
|
})
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.auto-detect-modal {
|
|
.table {
|
|
.table-row {
|
|
grid-template-columns: 1fr 4fr min-content;
|
|
}
|
|
|
|
span {
|
|
display: inherit;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
padding: 0.5rem;
|
|
}
|
|
}
|
|
|
|
.manage {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
}
|
|
</style>
|