Files
modrinth/apps/frontend/src/error.vue
T
Calum H.andsychic e58af98f21 feat: instance sharing thru shared-instances service (#6569)
* feat: implement instance share page + search_users backend call

* feat: invite players modal

* feat: use tanstack queries for friends sync across app pages

* feat: base shared instances implementation

* fix: admon style

* feat: impl instance admonitions like server panel

* fix: impl get + del usage

* feat: support modpack links

* feat: invite notif accepting

* fix: lint + fmt

* feat: impl install to play

* feat: impl usage of UpdateToPlayModal

* feat: warnings on deleting/disabling shared-instance version content

* fix: send instance name

* feat: align with backend

* feat: shared instances qa

* feat: wrong account protection

* feat: qa

* fix: smartly apply updates

* fix: install bug

* fix: 401/404 differentiation

* fix: fmt+prepr

* feat: qa

* feat: qa

* fix: signing out messes up revoke/deleted checks

* feat: qa

* fix: fmt + lint

* feat: lock content if part of shared instance

* fix: lint

* [do not merge] feat: rough invite links impl temp (#6666)

* fix: wrong cmd

* feat: invite page

* fix: server-manager DTO mismatch

* fix: drop anonymous invite link acceptance

* refactor: structured shared-instance unavailable errors

* refactor: centralise error presentations

* refactor: dedupe shared instance diff detection

* fix: logging in reqwests

* refactor: move app.vue shared instances into handler

* refactor: break up Share.vue

* refactor: split up shared instances state outside of instance index

* refactor: dedicated shared instances install/update modals + split up page

* refactor: centralized managed content

* refactor: split up install shared to own runner + shared.rs split up

* refactor: dedupe sql for instance metadata enrichmnt

* refactor: friends composable + dedupe friends logic across usages

* chore: reduced unused code

* fix: align with backend

* fix: lint

* fix: file sha changes

* fix: invite links not working due to icon signed

* feat: qa

* feat: reporting frontend dummy

* fix: try use header

* remove: file hash field

* fix: pin box

* feat: malware warning for shared instances

* fix: cache rule

* feat: config files syncing

* feat: disable config sharing

* fix: header

* fix: use mark ready

* fix: dont cause push update for configs

* fix: lint

* feat: sharing page in settings

* feat: move config + change flow

* fix: qa

* fix: lint prepr

* feat: proxy file upload thru shared instances backend

* fix: use collapisible

* fix: push config

* fix: config

* feat: swap out sign in modal for new one

* fix: report flow

* fix: exclude configs.zip from external warnings

* fix: nuxi init

* fix: config bundle downloading

* fix: error notif

* fix: polling

* fix: qa

* fix: lint + prepr

* feat: shared instances moderation frontend + hook up report flow

* fix: report copy

* fix: lint

* fix: lint

* fix: modrinth ids being undefined

* feat: instance quarantining

* fix: prepr + fmt

* fix: quarantined -> locked terminology

* fix: missing endpoint impls + fmt

* fix: missing api in build.rs

* fix: share tab jittery

* fix: fmt

*PT bug

* fix: invites count as users even if pending

* fix: prepr

* fix: invite page owner in users list

* fix: lint

* fix: qa

* fix: lint

* fix: members stale not clearing

* fix: invite use joined_at field

* fix: lint

* fix: qa

---------

Co-authored-by: sychic <47618543+Sychic@users.noreply.github.com>
2026-07-24 13:06:38 +00:00

495 lines
12 KiB
Vue

<template>
<NuxtLayout>
<LoadingBar />
<NotificationPanel />
<div class="main">
<div v-if="is404" class="error-graphic">
<Logo404 />
</div>
<div class="error-box" :class="{ 'has-bot': !is404 }">
<img
v-if="is401"
:src="AnnoyedRinthbot"
alt="Annoyed Modrinth bot"
class="error-box__sad-bot"
/>
<img
v-else-if="!is404"
:src="SadRinthbot"
alt="Sad Modrinth bot"
class="error-box__sad-bot"
/>
<div v-if="!is404" class="error-box__top-glow" />
<div class="error-box__body">
<h1 class="error-box__title">{{ formatMessage(errorMessages.title) }}</h1>
<p v-if="errorMessages.subtitle" class="error-box__subtitle">
{{ formatMessage(errorMessages.subtitle) }}
</p>
</div>
<div v-if="is401" class="flex flex-col gap-4">
<template v-if="auth.user">
<p class="m-0">
{{ formatMessage(unauthorizedMessages.signedInAsLabel) }}
</p>
<div
class="flex items-center gap-2 rounded-2xl border border-solid border-surface-5 bg-surface-4 p-4"
>
<Avatar :src="auth.user.avatar_url" size="32px" />
<span class="font-medium text-contrast">{{ auth.user.username }}</span>
<ButtonStyled color="red" type="transparent">
<button type="button" class="ml-auto" @click="logout">
{{ formatMessage(commonMessages.signOutButton) }}
</button>
</ButtonStyled>
</div>
</template>
<template v-else>
<ButtonStyled color="brand">
<nuxt-link class="button-like w-fit" :to="signInRoute">
<LogInIcon />
{{ formatMessage(commonMessages.signInButton) }}
</nuxt-link>
</ButtonStyled>
</template>
</div>
<div class="error-box__body">
<p v-if="errorMessages.list_title" class="error-box__list-title">
{{ formatMessage(errorMessages.list_title) }}
</p>
<ul v-if="errorMessages.list_items" class="error-box__list">
<li v-for="item in errorMessages.list_items" :key="item">
<IntlFormatted :message-id="item">
<template #status-link="{ children }">
<a href="https://status.modrinth.com" target="_blank" rel="noopener">
<component :is="() => normalizeChildren(children)" />
</a>
</template>
<template #discord-link="{ children }">
<a href="https://discord.modrinth.com" target="_blank" rel="noopener">
<component :is="() => normalizeChildren(children)" />
</a>
</template>
<template #tou-link="{ children }">
<nuxt-link :to="`/legal/terms`" target="_blank" rel="noopener">
<component :is="() => normalizeChildren(children)" />
</nuxt-link>
</template>
</IntlFormatted>
</li>
</ul>
</div>
<div v-if="!is404" class="error-box__details">
<p>Error {{ error.statusCode }}</p>
<p>{{ error.message }}</p>
</div>
</div>
</div>
</NuxtLayout>
</template>
<script setup>
import { AnnoyedRinthbot, LogInIcon, SadRinthbot } from '@modrinth/assets'
import {
Avatar,
ButtonStyled,
commonMessages,
defineMessage,
defineMessages,
IntlFormatted,
LoadingBar,
normalizeChildren,
NotificationPanel,
provideModrinthClient,
provideNotificationManager,
providePageContext,
useVIntl,
} from '@modrinth/ui'
import Logo404 from '~/assets/images/404.svg'
import { getSignInRouteObj } from '~/composables/auth.js'
import { logout } from '~/composables/user.js'
import { createModrinthClient } from './helpers/api.ts'
import { FrontendNotificationManager } from './providers/frontend-notifications.ts'
import { setupLoadingStateProvider } from './providers/setup/loading-state.ts'
const auth = await useAuth()
const config = useRuntimeConfig()
provideNotificationManager(new FrontendNotificationManager())
setupLoadingStateProvider()
const client = createModrinthClient(auth.value, {
apiBaseUrl: config.public.apiBaseUrl.replace('/v2/', '/'),
archonBaseUrl: config.public.pyroBaseUrl.replace('/v2/', '/'),
sharedInstancesBaseUrl: config.public.sharedInstancesBaseUrl,
rateLimitKey: config.rateLimitKey,
})
provideModrinthClient(client)
providePageContext({
hierarchicalSidebarAvailable: ref(false),
showAds: ref(false),
adConsentAvailable: ref(false),
openExternalUrl: (url) => window.open(url, '_blank'),
})
const { formatMessage } = useVIntl()
const props = defineProps({
error: {
type: Object,
default() {
return {
statusCode: 1000,
message: 'Unknown error',
}
},
},
})
const is404 = computed(() => props.error.statusCode === 404)
const is401 = computed(() => props.error.statusCode === 401)
const unauthorizedMessages = defineMessages({
signedInAsLabel: {
id: 'error.generic.401.signed-in-as',
defaultMessage: "You're currently signed in as:",
},
})
const signInRoute = computed(() => getSignInRouteObj(route))
const errorMessages = computed(
() =>
routeMessages.find((x) => x.match(route))?.messages[props.error.statusCode] ??
messages[props.error.statusCode] ??
messages.default,
)
const route = useRoute()
const messages = {
404: {
title: defineMessage({
id: 'error.generic.404.title',
defaultMessage: 'Page not found',
}),
subtitle: defineMessage({
id: 'error.generic.404.subtitle',
defaultMessage: "The page you were looking for doesn't seem to exist.",
}),
},
451: {
title: defineMessage({
id: 'error.generic.451.title',
defaultMessage: 'Content unavailable for legal reasons',
}),
subtitle: defineMessage({
id: 'error.generic.451.subtitle',
defaultMessage:
'This page has been blocked for legal reasons, such as government censorship or ongoing legal proceedings.',
}),
},
401: {
title: defineMessage({
id: 'error.generic.401.title',
defaultMessage: `You don't have access to this page`,
}),
},
default: {
title: defineMessage({
id: 'error.generic.default.title',
defaultMessage: 'Uh oh!',
}),
subtitle: defineMessage({
id: 'error.generic.default.subtitle',
defaultMessage: 'Something went wrong.',
}),
list_title: defineMessage({
id: 'error.generic.default.list_title',
defaultMessage: 'Please try again in a few minutes.',
}),
list_items: [
defineMessage({
id: 'error.generic.default.list_item.1',
defaultMessage: 'Check if Modrinth is down on our <status-link>Status page</status-link>.',
}),
defineMessage({
id: 'error.generic.default.list_item.2',
defaultMessage:
'If this keeps happening, you may want to let the Modrinth Team know by joining our <discord-link>Discord server</discord-link>.',
}),
],
},
}
const PROJECT_PATH_PREFIXES = [
'/mod/',
'/datapack/',
'/resourcepack/',
'/plugin/',
'/shader/',
'/modpack/',
'/project/',
]
const routeMessages = [
{
match: (route) => PROJECT_PATH_PREFIXES.some((prefix) => route.path.startsWith(prefix)),
messages: {
404: {
title: defineMessage({
id: 'error.project.404.title',
defaultMessage: 'Project not found',
}),
list_title: defineMessage({
id: 'error.project.404.list_title',
defaultMessage: 'Why?',
}),
list_items: [
defineMessage({
id: 'error.project.404.list_item.1',
defaultMessage: "You may have mistyped the project's URL.",
}),
defineMessage({
id: 'error.project.404.list_item.2',
defaultMessage:
"The project's owner may have changed the URL, made the project private, or deleted it.",
}),
defineMessage({
id: 'error.project.404.list_item.3',
defaultMessage:
"The project may have been taken down by Modrinth's moderation team for violating our <tou-link>Terms of Use</tou-link>.",
}),
],
},
},
},
{
match: (route) => route.path.startsWith('/user/'),
messages: {
404: {
title: defineMessage({
id: 'error.user.404.title',
defaultMessage: 'User not found',
}),
list_title: defineMessage({
id: 'error.user.404.list_title',
defaultMessage: 'Why?',
}),
list_items: [
defineMessage({
id: 'error.user.404.list_item.1',
defaultMessage: "You may have mistyped the user's username.",
}),
defineMessage({
id: 'error.user.404.list_item.2',
defaultMessage: 'The user may have changed their username or deleted their account.',
}),
defineMessage({
id: 'error.user.404.list_item.3',
defaultMessage:
"The user's account may have been terminated for violating Modrinth's <tou-link>Terms of Use</tou-link>.",
}),
],
},
},
},
{
match: (route) => route.path.startsWith('/organization/'),
messages: {
404: {
title: defineMessage({
id: 'error.organization.404.title',
defaultMessage: 'Organization not found',
}),
list_title: defineMessage({
id: 'error.organization.404.list_title',
defaultMessage: 'Why?',
}),
list_items: [
defineMessage({
id: 'error.organization.404.list_item.1',
defaultMessage: "You may have mistyped the organization's URL.",
}),
defineMessage({
id: 'error.organization.404.list_item.2',
defaultMessage: "The organization's owner may have changed the URL or deleted it.",
}),
defineMessage({
id: 'error.organization.404.list_item.3',
defaultMessage:
"The organization may have been removed by Modrinth's moderation team for violating our <tou-link>Terms of Use</tou-link>.",
}),
],
},
},
},
{
match: (route) => route.path.startsWith('/collection/'),
messages: {
404: {
title: defineMessage({
id: 'error.collection.404.title',
defaultMessage: 'Collection not found',
}),
list_title: defineMessage({
id: 'error.collection.404.list_title',
defaultMessage: 'Why?',
}),
list_items: [
defineMessage({
id: 'error.collection.404.list_item.1',
defaultMessage: "You may have mistyped the collection's URL.",
}),
defineMessage({
id: 'error.collection.404.list_item.2',
defaultMessage: 'The collection may be private.',
}),
defineMessage({
id: 'error.collection.404.list_item.3',
defaultMessage:
"The collection may have been taken down by Modrinth's moderation team for violating our <tou-link>Terms of Use</tou-link>.",
}),
],
},
},
},
]
</script>
<style lang="scss" scoped>
.main {
margin: var(--spacing-card-lg) auto;
width: calc(100% - 4rem);
min-height: min(90vh, 30rem);
display: flex;
flex-direction: column;
justify-content: center;
@media screen and (min-width: 800px) {
width: 600px;
}
}
.error-graphic {
margin-bottom: 2rem;
display: flex;
justify-content: center;
svg {
fill: var(--color-text);
color: var(--color-text);
width: min(15rem, 100%);
height: auto;
}
}
.error-box {
background-color: var(--color-raised-bg);
border-radius: 1.25rem;
padding: 1.75rem 2rem;
display: flex;
flex-direction: column;
gap: 1.25rem;
box-shadow: var(--shadow-card);
position: relative;
&.has-bot {
margin-block: 120px;
}
p {
margin: 0;
}
a:not(.button-like) {
color: var(--color-brand);
font-weight: 600;
&:hover,
&:focus {
filter: brightness(1.125);
text-decoration: underline;
}
}
&__sad-bot {
--_bot-height: 112px;
position: absolute;
top: calc(-1 * var(--_bot-height));
right: 5rem;
width: auto;
height: var(--_bot-height);
@media screen and (max-width: 768px) {
--_bot-height: 70px;
right: 2rem;
}
}
&__top-glow {
width: 100%;
height: 1px;
background: linear-gradient(
to right,
transparent 2rem,
var(--color-green) calc(100% - 13rem),
var(--color-green) calc(100% - 5rem),
transparent calc(100% - 2rem)
);
position: absolute;
top: 0;
left: 0;
opacity: 0.4;
}
&__title {
font-size: 1.5rem;
font-weight: 600;
margin: 0;
}
&__subtitle {
font-size: 1rem;
font-weight: 400;
}
&__body {
display: flex;
flex-direction: column;
gap: 0.75rem;
&:empty {
display: none;
}
}
&__list-title {
font-weight: 600;
}
&__list {
margin: 0;
display: flex;
flex-direction: column;
gap: 0.25rem;
padding-left: 1.25rem;
}
li {
line-height: 1.5;
}
&__details {
display: flex;
flex-direction: column;
color: var(--color-secondary);
gap: 0.25rem;
font-weight: 500;
font-size: 0.875rem;
}
}
</style>