* Fixed xss sanitizer config for checkboxes * Fixed typo in version navigation tree href * Fixed navigation tabs' margins with pure css * Prettier For some weird reason my prettier config seems to be different Co-authored-by: Redblueflame <contact@redblueflame.com>
433 lines
10 KiB
Vue
433 lines
10 KiB
Vue
<template>
|
|
<div>
|
|
<ConfirmPopup
|
|
ref="delete_file_popup"
|
|
title="Are you sure you want to delete this file?"
|
|
description="This will remove this file forever (like really forever)"
|
|
:has-to-type="false"
|
|
proceed-label="Delete file"
|
|
@proceed="deleteFile(popup_data)"
|
|
/>
|
|
<ConfirmPopup
|
|
ref="delete_version_popup"
|
|
title="Are you sure you want to delete this version?"
|
|
description="This will remove this version forever (like really forever), and if some mods depends on this version, it won't work anymore."
|
|
:has-to-type="false"
|
|
proceed-label="Delete version"
|
|
@proceed="deleteVersion()"
|
|
/>
|
|
<div class="version">
|
|
<div class="version-header">
|
|
<h4>{{ version.name }}</h4>
|
|
<span v-if="version.version_type === 'release'" class="badge green">
|
|
Release
|
|
</span>
|
|
<span v-if="version.version_type === 'beta'" class="badge yellow">
|
|
Beta
|
|
</span>
|
|
<span v-if="version.version_type === 'alpha'" class="badge red">
|
|
Alpha
|
|
</span>
|
|
<span>
|
|
{{ version.version_number }}
|
|
</span>
|
|
<Categories :categories="version.loaders" />
|
|
<div class="buttons">
|
|
<nuxt-link
|
|
v-if="this.$auth.user"
|
|
:to="`/report/create?id=${version.id}&t=version`"
|
|
class="action iconified-button"
|
|
>
|
|
<ReportIcon />
|
|
Report
|
|
</nuxt-link>
|
|
<button
|
|
v-if="currentMember"
|
|
class="action iconified-button"
|
|
@click="deleteVersionPopup"
|
|
>
|
|
<TrashIcon />
|
|
Delete
|
|
</button>
|
|
<nuxt-link
|
|
v-if="currentMember"
|
|
class="action iconified-button"
|
|
:to="version.id + '/edit'"
|
|
>
|
|
<EditIcon />
|
|
Edit
|
|
</nuxt-link>
|
|
<a
|
|
v-if="primaryFile"
|
|
:href="primaryFile.url"
|
|
class="action iconified-button download"
|
|
@click.prevent="
|
|
$parent.downloadFile(primaryFile.hashes.sha1, primaryFile.url)
|
|
"
|
|
>
|
|
<DownloadIcon />
|
|
Download
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<div class="stats">
|
|
<div class="stat">
|
|
<DownloadIcon />
|
|
<div class="info">
|
|
<h4>Downloads</h4>
|
|
<p class="value">{{ version.downloads }}</p>
|
|
</div>
|
|
</div>
|
|
<div class="stat">
|
|
<CalendarIcon />
|
|
<div class="info">
|
|
<h4>Created</h4>
|
|
<p
|
|
v-tooltip="
|
|
$dayjs(version.date_published).format(
|
|
'[Created on] YYYY-MM-DD [at] HH:mm A'
|
|
)
|
|
"
|
|
class="value"
|
|
>
|
|
{{ $dayjs(version.date_published).fromNow() }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div class="stat">
|
|
<TagIcon />
|
|
<div class="info">
|
|
<h4>Available for</h4>
|
|
<p class="value">
|
|
{{
|
|
version.game_versions ? version.game_versions.join(', ') : ''
|
|
}}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div
|
|
v-compiled-markdown="version.changelog ? version.changelog : ''"
|
|
class="markdown-body"
|
|
></div>
|
|
<div class="files">
|
|
<div v-for="file in version.files" :key="file.hashes.sha1" class="file">
|
|
<div class="text-wrapper">
|
|
<p>{{ file.filename }}</p>
|
|
<div v-if="currentMember" class="actions">
|
|
<button @click="deleteFilePopup(file.hashes.sha1)">
|
|
Delete file
|
|
</button>
|
|
<button @click="makePrimary(file.hashes.sha1)">
|
|
Make primary
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<a
|
|
:href="file.url"
|
|
@click.prevent="$parent.downloadFile(file.hashes.sha1, file.url)"
|
|
>
|
|
<DownloadIcon />
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<FileInput
|
|
v-if="currentMember"
|
|
accept=".jar,application/java-archive,application/x-java-archive"
|
|
multiple
|
|
prompt="Choose files or drag them here"
|
|
class="file-input"
|
|
@change="addFiles"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import ConfirmPopup from '~/components/ui/ConfirmPopup'
|
|
|
|
import Categories from '~/components/ui/search/Categories'
|
|
import FileInput from '~/components/ui/FileInput'
|
|
import TrashIcon from '~/assets/images/utils/trash.svg?inline'
|
|
import EditIcon from '~/assets/images/utils/edit.svg?inline'
|
|
import DownloadIcon from '~/assets/images/utils/download.svg?inline'
|
|
import CalendarIcon from '~/assets/images/utils/calendar.svg?inline'
|
|
import TagIcon from '~/assets/images/utils/tag.svg?inline'
|
|
import ReportIcon from '~/assets/images/utils/report.svg?inline'
|
|
|
|
export default {
|
|
components: {
|
|
FileInput,
|
|
Categories,
|
|
DownloadIcon,
|
|
CalendarIcon,
|
|
TagIcon,
|
|
TrashIcon,
|
|
EditIcon,
|
|
ReportIcon,
|
|
ConfirmPopup,
|
|
},
|
|
auth: false,
|
|
props: {
|
|
mod: {
|
|
type: Object,
|
|
default() {
|
|
return {}
|
|
},
|
|
},
|
|
versions: {
|
|
type: Array,
|
|
default() {
|
|
return []
|
|
},
|
|
},
|
|
members: {
|
|
type: Array,
|
|
default() {
|
|
return [{}]
|
|
},
|
|
},
|
|
currentMember: {
|
|
type: Object,
|
|
default() {
|
|
return null
|
|
},
|
|
},
|
|
},
|
|
async fetch() {
|
|
this.version = this.versions.find(
|
|
(x) => x.id === this.$route.params.version
|
|
)
|
|
|
|
this.primaryFile = this.version.files.find((file) => file.primary)
|
|
|
|
if (!this.primaryFile) {
|
|
this.primaryFile = this.version.files[0]
|
|
}
|
|
|
|
if (!this.version.changelog && this.version.changelog_url) {
|
|
this.version.changelog = (
|
|
await this.$axios.get(this.version.changelog_url)
|
|
).data
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
primaryFile: {},
|
|
version: {},
|
|
filesToUpload: [],
|
|
popup_data: null,
|
|
}
|
|
},
|
|
mounted() {
|
|
this.$emit('update:link-bar', [
|
|
['Versions', 'versions'],
|
|
[this.version.name, 'version/' + this.version.id],
|
|
])
|
|
},
|
|
methods: {
|
|
deleteFilePopup(hash) {
|
|
this.popup_data = hash
|
|
this.$refs.delete_file_popup.show()
|
|
},
|
|
async deleteFile(hash) {
|
|
this.$nuxt.$loading.start()
|
|
|
|
await this.$axios.delete(`version_file/${hash}`, this.$auth.headers)
|
|
|
|
await this.$router.go(null)
|
|
this.$nuxt.$loading.finish()
|
|
},
|
|
async makePrimary(hash) {
|
|
this.$nuxt.$loading.start()
|
|
|
|
await this.$axios.patch(
|
|
`version/${this.version.id}`,
|
|
{
|
|
primary_file: ['sha1', hash],
|
|
},
|
|
this.$auth.headers
|
|
)
|
|
|
|
await this.$router.go(null)
|
|
this.$nuxt.$loading.finish()
|
|
},
|
|
async addFiles(files) {
|
|
this.filesToUpload = files
|
|
|
|
for (let i = 0; i < files.length; i++) {
|
|
this.filesToUpload[i].multipartName = files[i].name.concat('-' + i)
|
|
}
|
|
|
|
this.$nuxt.$loading.start()
|
|
|
|
const formData = new FormData()
|
|
|
|
formData.append('data', JSON.stringify({}))
|
|
|
|
for (const fileToUpload of this.filesToUpload) {
|
|
formData.append(
|
|
fileToUpload.multipartName,
|
|
new Blob([fileToUpload]),
|
|
fileToUpload.name
|
|
)
|
|
}
|
|
|
|
try {
|
|
await this.$axios({
|
|
url: `version/${this.version.id}/file`,
|
|
method: 'POST',
|
|
data: formData,
|
|
headers: {
|
|
'Content-Type': 'multipart/form-data',
|
|
Authorization: this.$auth.token,
|
|
},
|
|
})
|
|
|
|
await this.$router.go(null)
|
|
} catch (err) {
|
|
this.$notify({
|
|
group: 'main',
|
|
title: 'An error occurred',
|
|
text: err.response.data.description,
|
|
type: 'error',
|
|
})
|
|
window.scrollTo({ top: 0, behavior: 'smooth' })
|
|
}
|
|
|
|
this.$nuxt.$loading.finish()
|
|
},
|
|
deleteVersionPopup() {
|
|
this.$refs.delete_version_popup.show()
|
|
},
|
|
async deleteVersion() {
|
|
this.$nuxt.$loading.start()
|
|
|
|
await this.$axios.delete(`version/${this.version.id}`, this.$auth.headers)
|
|
|
|
await this.$router.replace(`/mod/${this.mod.id}`)
|
|
this.$nuxt.$loading.finish()
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.version {
|
|
margin-bottom: var(--spacing-card-md);
|
|
background: var(--color-raised-bg);
|
|
border-radius: var(--size-rounded-card);
|
|
padding: 1rem;
|
|
|
|
.version-header {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
|
|
h4,
|
|
span {
|
|
margin: auto 0.5rem auto 0;
|
|
}
|
|
|
|
.buttons {
|
|
display: flex;
|
|
align-self: flex-end;
|
|
|
|
@media screen and (min-width: 1024px) {
|
|
margin-left: auto;
|
|
}
|
|
|
|
.action:not(:first-child) {
|
|
margin: 0 0 0 0.5rem;
|
|
}
|
|
}
|
|
.download {
|
|
background-color: var(--color-brand);
|
|
color: white;
|
|
&:hover {
|
|
background-color: var(--color-brand-hover);
|
|
}
|
|
}
|
|
}
|
|
|
|
.markdown-body {
|
|
margin: 1rem 0;
|
|
}
|
|
|
|
.files {
|
|
display: flex;
|
|
|
|
.file {
|
|
display: flex;
|
|
margin-right: 0.5rem;
|
|
border-radius: var(--size-rounded-control);
|
|
border: 1px solid var(--color-divider);
|
|
|
|
.text-wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 0.5rem;
|
|
|
|
.actions {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
max-height: 3rem;
|
|
font-size: var(--font-size-sm);
|
|
|
|
button {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
svg {
|
|
margin-left: 0.25rem;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
a {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-left: auto;
|
|
width: 2.5rem;
|
|
height: auto;
|
|
background-color: var(--color-button-bg);
|
|
color: var(--color-button-text);
|
|
border-radius: 0 var(--size-rounded-control) var(--size-rounded-control)
|
|
0;
|
|
|
|
svg {
|
|
vertical-align: center;
|
|
height: 30px;
|
|
width: 40px;
|
|
}
|
|
|
|
&:hover,
|
|
&:focus {
|
|
background-color: var(--color-button-bg-hover);
|
|
color: var(--color-button-text-hover);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.stats {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin: 0.5rem 0;
|
|
.stat {
|
|
margin-right: 0.75rem;
|
|
@extend %stat;
|
|
|
|
svg {
|
|
padding: 0.25rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
.file-input {
|
|
margin-top: 1rem;
|
|
}
|
|
</style>
|