* Projects page * Continue work on bulk edit * editLinks is now bulkEdit * Bulk Edit Links completed * Edit URL clear fields. * Create project button + other bulk buttons. * Pagination (w/o reactivity.) * Apply suggestions from code review Co-authored-by: triphora <emmaffle@modrinth.com> * Sorting fixed, broken page count though? * Only make editable projects selectable + remove delete button * Shorthand * Start using computed * Fix pagination * Add Pagination Switching * Final Style Changes * Cleanup * Action Affects dropdown * Switch to checkbox swizzle * Projects dashboard, the most hellish thing I have ever worked on * Rewrite project dashboard without tables * why's that there * Fix mod message icon * New project settings page * Remove extra slash * Bulk project route and improve styling of links UI * Remove beta label from Monetization * Relevant page links in project settings * Don't vertically center header rows * Improve error messages, add remove project icon button, add saving feedback, begin project checklist, fix license settings * Remove contextual link from project settings, disable WIP checklist * Fix bulk edit * Project checklist, add featured gallery image to project pages, fix random bugs * Remove old check * Remove icon border on grid mode and hide project status card when unnecessary * Fix build * Make checklist progress smaller and add collapsing * Remove uneven gap on nav cards * Improve wrapping of checklist * Replace project settings header link with status * Fix bugs + status stuff * Fix warns + compile error * Update wording * Hide environment type nag for project types without it * Make member dropdown match Co-authored-by: mineblock11 <93472213+mineblock11@users.noreply.github.com> Co-authored-by: triphora <emmaffle@modrinth.com> Co-authored-by: Jai A <jaiagr+gpg@pm.me> Co-authored-by: Geometrically <18202329+Geometrically@users.noreply.github.com>
134 lines
4.1 KiB
Vue
134 lines
4.1 KiB
Vue
<template>
|
|
<div>
|
|
<section class="universal-card">
|
|
<h2>Overview</h2>
|
|
<div class="grid-display">
|
|
<div class="grid-display__item">
|
|
<div class="label">Total downloads</div>
|
|
<div class="value">
|
|
{{
|
|
$formatNumber(
|
|
$user.projects.reduce((agg, x) => agg + x.downloads, 0)
|
|
)
|
|
}}
|
|
</div>
|
|
<span
|
|
>from
|
|
{{ downloadsProjectCount }}
|
|
project{{ downloadsProjectCount === 1 ? '' : 's' }}</span
|
|
>
|
|
<!-- <NuxtLink class="goto-link" to="/dashboard/analytics"-->
|
|
<!-- >View breakdown-->
|
|
<!-- <ChevronRightIcon-->
|
|
<!-- class="featured-header-chevron"-->
|
|
<!-- aria-hidden="true"-->
|
|
<!-- /></NuxtLink>-->
|
|
</div>
|
|
<div class="grid-display__item">
|
|
<div class="label">Total followers</div>
|
|
<div class="value">
|
|
{{
|
|
$formatNumber(
|
|
$user.projects.reduce((agg, x) => agg + x.followers, 0)
|
|
)
|
|
}}
|
|
</div>
|
|
<span>
|
|
<span
|
|
>from {{ followersProjectCount }} project{{
|
|
followersProjectCount === 1 ? '' : 's'
|
|
}}</span
|
|
></span
|
|
>
|
|
<!-- <NuxtLink class="goto-link" to="/dashboard/analytics"-->
|
|
<!-- >View breakdown-->
|
|
<!-- <ChevronRightIcon-->
|
|
<!-- class="featured-header-chevron"-->
|
|
<!-- aria-hidden="true"-->
|
|
<!-- /></NuxtLink>-->
|
|
</div>
|
|
<div class="grid-display__item">
|
|
<div class="label">Total revenue</div>
|
|
<div class="value">{{ $formatMoney(payouts.all_time) }}</div>
|
|
<span>{{ $formatMoney(payouts.last_month) }} this month</span>
|
|
<!-- <NuxtLink class="goto-link" to="/dashboard/analytics"-->
|
|
<!-- >View breakdown-->
|
|
<!-- <ChevronRightIcon-->
|
|
<!-- class="featured-header-chevron"-->
|
|
<!-- aria-hidden="true"-->
|
|
<!-- /></NuxtLink>-->
|
|
</div>
|
|
<div class="grid-display__item">
|
|
<div class="label">Current balance</div>
|
|
<div class="value">
|
|
{{ $formatMoney($auth.user.payout_data.balance) }}
|
|
</div>
|
|
<NuxtLink
|
|
v-if="$auth.user.payout_data.balance >= minWithdraw"
|
|
class="goto-link"
|
|
to="/dashboard/revenue"
|
|
>Withdraw earnings
|
|
<ChevronRightIcon
|
|
class="featured-header-chevron"
|
|
aria-hidden="true"
|
|
/></NuxtLink>
|
|
<span v-else>${{ minWithdraw }} is the withdraw minimum</span>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<section class="universal-card more-soon">
|
|
<h2>More coming soon!</h2>
|
|
<p>
|
|
Stay tuned for more metrics and analytics (pretty graphs, anyone? 👀)
|
|
coming to the creators dashboard soon!
|
|
</p>
|
|
</section>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ChevronRightIcon from '~/assets/images/utils/chevron-right.svg?inline'
|
|
|
|
export default {
|
|
components: { ChevronRightIcon },
|
|
async asyncData(data) {
|
|
const [payouts] = (
|
|
await Promise.all([
|
|
data.$axios.get(
|
|
`user/${data.$auth.user.id}/payouts`,
|
|
data.$defaultHeaders()
|
|
),
|
|
])
|
|
).map((it) => it.data)
|
|
|
|
payouts.all_time = Math.floor(payouts.all_time * 100) / 100
|
|
payouts.last_month = Math.floor(payouts.last_month * 100) / 100
|
|
|
|
return {
|
|
payouts,
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
minWithdraw: 0.26,
|
|
}
|
|
},
|
|
fetch() {},
|
|
head: {
|
|
title: 'Creator dashboard - Modrinth',
|
|
},
|
|
computed: {
|
|
downloadsProjectCount() {
|
|
return this.$user.projects.filter((project) => project.downloads > 0)
|
|
.length
|
|
},
|
|
followersProjectCount() {
|
|
return this.$user.projects.filter((project) => project.followers > 0)
|
|
.length
|
|
},
|
|
},
|
|
methods: {},
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped></style>
|