Skip to content
This repository has been archived by the owner on Aug 3, 2024. It is now read-only.

Migrate projects page to Composition API #1631

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
293 changes: 130 additions & 163 deletions pages/dashboard/projects.vue
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@
:collapsing-toggle-style="true"
/>
<div class="push-right input-group">
<button class="iconified-button" @click="$refs.editLinksModal.hide()">
<button class="iconified-button" @click="editLinksModal.hide()">
<CrossIcon />
Cancel
</button>
Expand Down Expand Up @@ -176,7 +176,7 @@
<button
class="iconified-button"
:disabled="selectedProjects.length === 0"
@click="$refs.editLinksModal.show()"
@click="editLinksModal.show()"
>
<EditIcon />
Edit links
Expand Down Expand Up @@ -299,7 +299,7 @@
</div>
</template>

<script>
<script setup>
import { Multiselect } from 'vue-multiselect'

import Badge from '~/components/ui/Badge.vue'
Expand All @@ -319,179 +319,146 @@ import SaveIcon from '~/assets/images/utils/save.svg'
import AscendingIcon from '~/assets/images/utils/sort-asc.svg'
import DescendingIcon from '~/assets/images/utils/sort-desc.svg'

export default defineNuxtComponent({
components: {
Avatar,
Badge,
SettingsIcon,
TrashIcon,
Checkbox,
IssuesIcon,
PlusIcon,
CrossIcon,
EditIcon,
SaveIcon,
Modal,
ModalCreation,
Multiselect,
CopyCode,
AscendingIcon,
DescendingIcon,
},
async setup() {
const { formatMessage } = useVIntl()
const { formatMessage } = useVIntl()

useHead({
title: 'Projects - Modrinth',
})

const user = await useUser()
await initUserProjects()
return { formatMessage, user: ref(user) }
const data = useNuxtApp()
const user = await useUser()
await initUserProjects()

const editLinksModal = ref(null)

const projects = ref(updateSort(user.value.projects, 'Name'))
const selectedProjects = ref([])
const sortBy = ref('Name')
const descending = ref(false)
const editLinks = reactive({
showAffected: false,
source: {
val: '',
clear: false,
},
data() {
return {
projects: this.updateSort(this.user.projects, 'Name'),
versions: [],
selectedProjects: [],
sortBy: 'Name',
descending: false,
editLinks: {
showAffected: false,
source: {
val: '',
clear: false,
},
discord: {
val: '',
clear: false,
},
wiki: {
val: '',
clear: false,
},
issues: {
val: '',
clear: false,
},
},
}
discord: {
val: '',
clear: false,
},
head: {
title: 'Projects - Modrinth',
wiki: {
val: '',
clear: false,
},
created() {
this.UPLOAD_VERSION = 1 << 0
this.DELETE_VERSION = 1 << 1
this.EDIT_DETAILS = 1 << 2
this.EDIT_BODY = 1 << 3
this.MANAGE_INVITES = 1 << 4
this.REMOVE_MEMBER = 1 << 5
this.EDIT_MEMBER = 1 << 6
this.DELETE_PROJECT = 1 << 7
issues: {
val: '',
clear: false,
},
methods: {
updateDescending() {
this.descending = !this.descending
this.projects = this.updateSort(this.projects, this.sortBy, this.descending)
},
updateSort(projects, sort, descending) {
let sortedArray = projects
switch (sort) {
case 'Name':
sortedArray = projects.slice().sort((a, b) => {
return a.title.localeCompare(b.title)
})
break
case 'Status':
sortedArray = projects.slice().sort((a, b) => {
if (a.status < b.status) {
return -1
}
if (a.status > b.status) {
return 1
}
return 0
})
break
case 'Type':
sortedArray = projects.slice().sort((a, b) => {
if (a.project_type < b.project_type) {
return -1
}
if (a.project_type > b.project_type) {
return 1
}
return 0
})
break
default:
break
}
})

if (descending) {
sortedArray = sortedArray.reverse()
}
const EDIT_DETAILS = 1 << 2

return sortedArray
},
async bulkEditLinks() {
try {
const baseData = {
issues_url: this.editLinks.issues.clear ? null : this.editLinks.issues.val.trim(),
source_url: this.editLinks.source.clear ? null : this.editLinks.source.val.trim(),
wiki_url: this.editLinks.wiki.clear ? null : this.editLinks.wiki.val.trim(),
discord_url: this.editLinks.discord.clear ? null : this.editLinks.discord.val.trim(),
}
function updateDescending() {
descending.value = !descending.value
projects.value = updateSort(projects.value, sortBy.value, descending.value)
}

if (!baseData.issues_url?.length ?? 1 > 0) {
delete baseData.issues_url
function updateSort(projects, sort, descending) {
let sortedArray = projects
switch (sort) {
case 'Name':
sortedArray = projects.slice().sort((a, b) => {
return a.title.localeCompare(b.title)
})
break
case 'Status':
sortedArray = projects.slice().sort((a, b) => {
if (a.status < b.status) {
return -1
}

if (!baseData.source_url?.length ?? 1 > 0) {
delete baseData.source_url
if (a.status > b.status) {
return 1
}

if (!baseData.wiki_url?.length ?? 1 > 0) {
delete baseData.wiki_url
return 0
})
break
case 'Type':
sortedArray = projects.slice().sort((a, b) => {
if (a.project_type < b.project_type) {
return -1
}

if (!baseData.discord_url?.length ?? 1 > 0) {
delete baseData.discord_url
if (a.project_type > b.project_type) {
return 1
}
return 0
})
break
default:
break
}

await useBaseFetch(
`projects?ids=${JSON.stringify(this.selectedProjects.map((x) => x.id))}`,
{
method: 'PATCH',
body: baseData,
}
)

this.$refs.editLinksModal.hide()
this.$notify({
group: 'main',
title: 'Success',
text: "Bulk edited selected project's links.",
type: 'success',
})
this.selectedProjects = []

this.editLinks.issues.val = ''
this.editLinks.source.val = ''
this.editLinks.wiki.val = ''
this.editLinks.discord.val = ''
this.editLinks.issues.clear = false
this.editLinks.source.clear = false
this.editLinks.wiki.clear = false
this.editLinks.discord.clear = false
} catch (e) {
this.$notify({
group: 'main',
title: 'An error occurred',
text: e,
type: 'error',
})
}
},
},
})
if (descending) {
sortedArray = sortedArray.reverse()
}

return sortedArray
}

async function bulkEditLinks() {
try {
const baseData = {
issues_url: editLinks.issues.clear ? null : editLinks.issues.val.trim(),
source_url: editLinks.source.clear ? null : editLinks.source.val.trim(),
wiki_url: editLinks.wiki.clear ? null : editLinks.wiki.val.trim(),
discord_url: editLinks.discord.clear ? null : editLinks.discord.val.trim(),
}

if (!baseData.issues_url?.length ?? 1 > 0) {
delete baseData.issues_url
}

if (!baseData.source_url?.length ?? 1 > 0) {
delete baseData.source_url
}

if (!baseData.wiki_url?.length ?? 1 > 0) {
delete baseData.wiki_url
}

if (!baseData.discord_url?.length ?? 1 > 0) {
delete baseData.discord_url
}

await useBaseFetch(`projects?ids=${JSON.stringify(selectedProjects.value.map((x) => x.id))}`, {
method: 'PATCH',
body: baseData,
})

editLinksModal.value.hide()
data.$notify({
group: 'main',
title: 'Success',
text: "Bulk edited selected project's links.",
type: 'success',
})
selectedProjects.value = []

editLinks.value.issues.val = ''
editLinks.value.source.val = ''
editLinks.value.wiki.val = ''
editLinks.value.discord.val = ''
editLinks.value.issues.clear = false
editLinks.value.source.clear = false
editLinks.value.wiki.clear = false
editLinks.value.discord.clear = false
Mysterious-Dev marked this conversation as resolved.
Show resolved Hide resolved
} catch (e) {
data.$notify({
group: 'main',
title: 'An error occurred',
text: e,
type: 'error',
})
}
}
</script>
<style lang="scss" scoped>
.grid-table {
Expand Down
Loading