695 lines
18 KiB
Vue
695 lines
18 KiB
Vue
<script setup>
|
|
import { computed, ref, watch } from 'vue'
|
|
import { RouterView, RouterLink, useRouter, useRoute } from 'vue-router'
|
|
import {
|
|
HomeIcon,
|
|
SearchIcon,
|
|
LibraryIcon,
|
|
SettingsIcon,
|
|
FileIcon,
|
|
Button,
|
|
Notifications,
|
|
XIcon,
|
|
Card,
|
|
TextLogo,
|
|
PlusIcon,
|
|
} from 'omorphia'
|
|
import { useLoading, useTheming } from '@/store/state'
|
|
import AccountsCard from './components/ui/AccountsCard.vue'
|
|
import AccountDropdown from '@/components/ui/platform/AccountDropdown.vue'
|
|
import InstanceCreationModal from '@/components/ui/InstanceCreationModal.vue'
|
|
import { get } from '@/helpers/settings'
|
|
import Breadcrumbs from '@/components/ui/Breadcrumbs.vue'
|
|
import RunningAppBar from '@/components/ui/RunningAppBar.vue'
|
|
import SplashScreen from '@/components/ui/SplashScreen.vue'
|
|
import ModrinthLoadingIndicator from '@/components/modrinth-loading-indicator'
|
|
import { handleError, useNotifications } from '@/store/notifications.js'
|
|
import { offline_listener, command_listener, warning_listener } from '@/helpers/events.js'
|
|
import { MinimizeIcon, MaximizeIcon, ChatIcon } from '@/assets/icons'
|
|
import { type } from '@tauri-apps/api/os'
|
|
import { appWindow } from '@tauri-apps/api/window'
|
|
import { isDev, getOS, isOffline, showLauncherLogsFolder } from '@/helpers/utils.js'
|
|
import {
|
|
mixpanel_track,
|
|
mixpanel_init,
|
|
mixpanel_opt_out_tracking,
|
|
mixpanel_is_loaded,
|
|
} from '@/helpers/mixpanel'
|
|
import { saveWindowState, StateFlags } from 'tauri-plugin-window-state-api'
|
|
import { getVersion } from '@tauri-apps/api/app'
|
|
import { window as TauriWindow } from '@tauri-apps/api'
|
|
import { TauriEvent } from '@tauri-apps/api/event'
|
|
import { await_sync, check_safe_loading_bars_complete } from './helpers/state'
|
|
import { confirm } from '@tauri-apps/api/dialog'
|
|
import URLConfirmModal from '@/components/ui/URLConfirmModal.vue'
|
|
import StickyTitleBar from '@/components/ui/tutorial/StickyTitleBar.vue'
|
|
import OnboardingScreen from '@/components/ui/tutorial/OnboardingScreen.vue'
|
|
import { install_from_file } from './helpers/pack'
|
|
|
|
const themeStore = useTheming()
|
|
const urlModal = ref(null)
|
|
const isLoading = ref(true)
|
|
|
|
const videoPlaying = ref(false)
|
|
const offline = ref(false)
|
|
const showOnboarding = ref(false)
|
|
const nativeDecorations = ref(false)
|
|
|
|
const onboardingVideo = ref()
|
|
|
|
const failureText = ref(null)
|
|
const os = ref('')
|
|
|
|
defineExpose({
|
|
initialize: async () => {
|
|
isLoading.value = false
|
|
const {
|
|
native_decorations,
|
|
theme,
|
|
opt_out_analytics,
|
|
collapsed_navigation,
|
|
advanced_rendering,
|
|
fully_onboarded,
|
|
} = await get()
|
|
// video should play if the user is not on linux, and has not onboarded
|
|
os.value = await getOS()
|
|
videoPlaying.value = !fully_onboarded && os.value !== 'Linux'
|
|
const dev = await isDev()
|
|
const version = await getVersion()
|
|
showOnboarding.value = !fully_onboarded
|
|
|
|
nativeDecorations.value = native_decorations
|
|
if (os.value !== 'MacOS') appWindow.setDecorations(native_decorations)
|
|
|
|
themeStore.setThemeState(theme)
|
|
themeStore.collapsedNavigation = collapsed_navigation
|
|
themeStore.advancedRendering = advanced_rendering
|
|
|
|
mixpanel_init('014c7d6a336d0efaefe3aca91063748d', { debug: dev, persistence: 'localStorage' })
|
|
if (opt_out_analytics) {
|
|
mixpanel_opt_out_tracking()
|
|
}
|
|
mixpanel_track('Launched', { version, dev, fully_onboarded })
|
|
|
|
if (!dev) document.addEventListener('contextmenu', (event) => event.preventDefault())
|
|
|
|
if ((await type()) === 'Darwin') {
|
|
document.getElementsByTagName('html')[0].classList.add('mac')
|
|
} else {
|
|
document.getElementsByTagName('html')[0].classList.add('windows')
|
|
}
|
|
|
|
offline.value = await isOffline()
|
|
await offline_listener((b) => {
|
|
offline.value = b
|
|
})
|
|
|
|
await warning_listener((e) =>
|
|
notificationsWrapper.value.addNotification({
|
|
title: 'Warning',
|
|
text: e.message,
|
|
type: 'warn',
|
|
})
|
|
)
|
|
|
|
if (showOnboarding.value) {
|
|
onboardingVideo.value.play()
|
|
}
|
|
},
|
|
failure: async (e) => {
|
|
isLoading.value = false
|
|
failureText.value = e
|
|
os.value = await getOS()
|
|
},
|
|
})
|
|
|
|
const confirmClose = async () => {
|
|
const confirmed = await confirm(
|
|
'An action is currently in progress. Are you sure you want to exit?',
|
|
{
|
|
title: 'Modrinth',
|
|
type: 'warning',
|
|
}
|
|
)
|
|
return confirmed
|
|
}
|
|
|
|
const handleClose = async () => {
|
|
if (failureText.value != null) {
|
|
await TauriWindow.getCurrent().close()
|
|
return
|
|
}
|
|
// State should respond immeiately if it's safe to close
|
|
// If not, code is deadlocked or worse, so wait 2 seconds and then ask the user to confirm closing
|
|
// (Exception: if the user is changing config directory, which takes control of the state, and it's taking a significant amount of time for some reason)
|
|
const isSafe = await Promise.race([
|
|
check_safe_loading_bars_complete(),
|
|
new Promise((r) => setTimeout(r, 2000)),
|
|
])
|
|
if (!isSafe) {
|
|
const response = await confirmClose()
|
|
if (!response) {
|
|
return
|
|
}
|
|
}
|
|
await await_sync()
|
|
await TauriWindow.getCurrent().close()
|
|
}
|
|
|
|
const openSupport = async () => {
|
|
window.__TAURI_INVOKE__('tauri', {
|
|
__tauriModule: 'Shell',
|
|
message: {
|
|
cmd: 'open',
|
|
path: 'https://support.modrinth.com/',
|
|
},
|
|
})
|
|
}
|
|
|
|
TauriWindow.getCurrent().listen(TauriEvent.WINDOW_CLOSE_REQUESTED, async () => {
|
|
await handleClose()
|
|
})
|
|
|
|
const router = useRouter()
|
|
router.afterEach((to, from, failure) => {
|
|
if (mixpanel_is_loaded()) {
|
|
mixpanel_track('PageView', { path: to.path, fromPath: from.path, failed: failure })
|
|
}
|
|
})
|
|
const route = useRoute()
|
|
const isOnBrowse = computed(() => route.path.startsWith('/browse'))
|
|
|
|
const loading = useLoading()
|
|
|
|
const notifications = useNotifications()
|
|
const notificationsWrapper = ref(null)
|
|
|
|
watch(notificationsWrapper, () => {
|
|
notifications.setNotifs(notificationsWrapper.value)
|
|
})
|
|
|
|
document.querySelector('body').addEventListener('click', function (e) {
|
|
let target = e.target
|
|
while (target != null) {
|
|
if (target.matches('a')) {
|
|
if (
|
|
target.href &&
|
|
['http://', 'https://', 'mailto:', 'tel:'].some((v) => target.href.startsWith(v)) &&
|
|
!target.classList.contains('router-link-active') &&
|
|
!target.href.startsWith('http://localhost') &&
|
|
!target.href.startsWith('https://tauri.localhost')
|
|
) {
|
|
window.__TAURI_INVOKE__('tauri', {
|
|
__tauriModule: 'Shell',
|
|
message: {
|
|
cmd: 'open',
|
|
path: target.href,
|
|
},
|
|
})
|
|
}
|
|
e.preventDefault()
|
|
break
|
|
}
|
|
target = target.parentElement
|
|
}
|
|
})
|
|
|
|
document.querySelector('body').addEventListener('auxclick', function (e) {
|
|
// disables middle click -> new tab
|
|
if (e.button === 1) {
|
|
e.preventDefault()
|
|
// instead do a left click
|
|
const event = new MouseEvent('click', {
|
|
view: window,
|
|
bubbles: true,
|
|
cancelable: true,
|
|
})
|
|
e.target.dispatchEvent(event)
|
|
}
|
|
})
|
|
|
|
const accounts = ref(null)
|
|
|
|
command_listener(async (e) => {
|
|
if (e.event === 'RunMRPack') {
|
|
// RunMRPack should directly install a local mrpack given a path
|
|
if (e.path.endsWith('.mrpack')) {
|
|
await install_from_file(e.path).catch(handleError)
|
|
mixpanel_track('InstanceCreate', {
|
|
source: 'CreationModalFileDrop',
|
|
})
|
|
}
|
|
} else {
|
|
// Other commands are URL-based (deep linking)
|
|
urlModal.value.show(e)
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<StickyTitleBar v-if="videoPlaying" />
|
|
<video
|
|
v-if="videoPlaying"
|
|
ref="onboardingVideo"
|
|
class="video"
|
|
src="@/assets/video.mp4"
|
|
autoplay
|
|
@ended="videoPlaying = false"
|
|
/>
|
|
<div v-if="failureText" class="failure dark-mode">
|
|
<div class="appbar-failure dark-mode">
|
|
<Button v-if="os != 'MacOS'" icon-only @click="TauriWindow.getCurrent().close()">
|
|
<XIcon />
|
|
</Button>
|
|
</div>
|
|
<div class="error-view dark-mode">
|
|
<Card class="error-text">
|
|
<div class="label">
|
|
<h3>
|
|
<span class="label__title size-card-header">Failed to initialize</span>
|
|
</h3>
|
|
</div>
|
|
<div class="error-div">
|
|
Modrinth App failed to load correctly. This may be because of a corrupted file, or because
|
|
the app is missing crucial files.
|
|
</div>
|
|
<div class="error-div">You may be able to fix it one of the following ways:</div>
|
|
<ul class="error-div">
|
|
<li>Ennsuring you are connected to the internet, then try restarting the app.</li>
|
|
<li>Redownloading the app.</li>
|
|
</ul>
|
|
<div class="error-div">
|
|
If it still does not work, you can seek support using the link below. You should provide
|
|
the following error, as well as any recent launcher logs in the folder below.
|
|
</div>
|
|
<div class="error-div">The following error was provided:</div>
|
|
|
|
<Card class="error-message">
|
|
{{ failureText.message }}
|
|
</Card>
|
|
|
|
<div class="button-row push-right">
|
|
<Button @click="showLauncherLogsFolder"><FileIcon />Open launcher logs</Button>
|
|
</div>
|
|
</Card>
|
|
</div>
|
|
</div>
|
|
<SplashScreen v-else-if="!videoPlaying && isLoading" app-loading />
|
|
<OnboardingScreen v-else-if="showOnboarding" :finish="() => (showOnboarding = false)" />
|
|
<div v-else class="container">
|
|
<div class="nav-container">
|
|
<div class="nav-section">
|
|
<suspense>
|
|
<AccountsCard ref="accounts" mode="small" />
|
|
</suspense>
|
|
<div class="pages-list">
|
|
<RouterLink v-tooltip="'Home'" to="/" class="btn icon-only collapsed-button">
|
|
<HomeIcon />
|
|
</RouterLink>
|
|
<RouterLink
|
|
v-tooltip="'Browse'"
|
|
to="/browse/modpack"
|
|
class="btn icon-only collapsed-button"
|
|
:class="{
|
|
'router-link-active': isOnBrowse,
|
|
}"
|
|
>
|
|
<SearchIcon />
|
|
</RouterLink>
|
|
<RouterLink v-tooltip="'Library'" to="/library" class="btn icon-only collapsed-button">
|
|
<LibraryIcon />
|
|
</RouterLink>
|
|
<Suspense>
|
|
<InstanceCreationModal ref="installationModal" />
|
|
</Suspense>
|
|
</div>
|
|
</div>
|
|
<div class="settings pages-list">
|
|
<Button
|
|
v-tooltip="'Get Support'"
|
|
transparent
|
|
icon-only
|
|
class="page-item collapsed-button"
|
|
@click="openSupport"
|
|
>
|
|
<ChatIcon />
|
|
</Button>
|
|
<RouterLink v-tooltip="'Settings'" to="/settings" class="btn icon-only collapsed-button">
|
|
<SettingsIcon />
|
|
</RouterLink>
|
|
<Button
|
|
v-tooltip="'Create profile'"
|
|
class="page-item collapsed-button"
|
|
icon-only
|
|
:disabled="offline"
|
|
@click="() => $refs.installationModal.show()"
|
|
>
|
|
<PlusIcon />
|
|
</Button>
|
|
<AccountDropdown />
|
|
</div>
|
|
</div>
|
|
<div class="view">
|
|
<div class="appbar-row">
|
|
<!-- Top Bar -->
|
|
<div data-tauri-drag-region class="appbar">
|
|
<section class="navigation-controls">
|
|
<TextLogo class="logo" :animate="false" />
|
|
<Breadcrumbs data-tauri-drag-region />
|
|
</section>
|
|
<section class="mod-stats">
|
|
<Suspense>
|
|
<RunningAppBar />
|
|
</Suspense>
|
|
</section>
|
|
</div>
|
|
<section v-if="!nativeDecorations" class="window-controls">
|
|
<Button class="titlebar-button" icon-only @click="() => appWindow.minimize()">
|
|
<MinimizeIcon />
|
|
</Button>
|
|
<Button class="titlebar-button" icon-only @click="() => appWindow.toggleMaximize()">
|
|
<MaximizeIcon />
|
|
</Button>
|
|
<Button
|
|
class="titlebar-button close"
|
|
icon-only
|
|
@click="
|
|
() => {
|
|
saveWindowState(StateFlags.ALL)
|
|
handleClose()
|
|
}
|
|
"
|
|
>
|
|
<XIcon />
|
|
</Button>
|
|
</section>
|
|
</div>
|
|
<div class="router-view">
|
|
<ModrinthLoadingIndicator
|
|
offset-height="var(--appbar-height)"
|
|
offset-width="var(--sidebar-width)"
|
|
/>
|
|
<RouterView v-slot="{ Component }">
|
|
<template v-if="Component">
|
|
<Suspense @pending="loading.startLoading()" @resolve="loading.stopLoading()">
|
|
<component :is="Component"></component>
|
|
</Suspense>
|
|
</template>
|
|
</RouterView>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<URLConfirmModal ref="urlModal" />
|
|
<Notifications ref="notificationsWrapper" />
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.sleek-primary {
|
|
background-color: var(--color-brand-highlight);
|
|
transition: all ease-in-out 0.1s;
|
|
}
|
|
|
|
.logo {
|
|
height: calc(var(--appbar-height) - 3rem);
|
|
width: auto;
|
|
min-height: 100%;
|
|
margin-right: var(--gap-md);
|
|
color: var(--color-contrast);
|
|
}
|
|
|
|
.navigation-controls {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
}
|
|
|
|
.appbar-row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.window-controls {
|
|
z-index: 20;
|
|
display: none;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
|
|
.titlebar-button {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
transition: all ease-in-out 0.1s;
|
|
background-color: var(--color-raised-bg);
|
|
color: var(--color-base);
|
|
border-radius: 0;
|
|
height: var(--appbar-height);
|
|
|
|
&.close {
|
|
&:hover,
|
|
&:active {
|
|
background-color: var(--color-red);
|
|
color: var(--color-accent-contrast);
|
|
}
|
|
}
|
|
|
|
&:hover,
|
|
&:active {
|
|
background-color: var(--color-button-bg);
|
|
color: var(--color-contrast);
|
|
}
|
|
}
|
|
}
|
|
|
|
.container {
|
|
--appbar-height: 4.5rem;
|
|
--sidebar-width: 4.5rem;
|
|
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: row;
|
|
overflow: hidden;
|
|
|
|
.view {
|
|
width: calc(100% - var(--sidebar-width));
|
|
background-color: var(--color-raised-bg);
|
|
|
|
.appbar {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
flex-grow: 1;
|
|
background: var(--color-raised-bg);
|
|
text-align: center;
|
|
padding: var(--gap-md);
|
|
height: var(--appbar-height);
|
|
gap: var(--gap-sm);
|
|
//no select
|
|
user-select: none;
|
|
-webkit-user-select: none;
|
|
}
|
|
|
|
.router-view {
|
|
width: 100%;
|
|
height: calc(100% - var(--appbar-height));
|
|
overflow: auto;
|
|
overflow-x: hidden;
|
|
background-color: var(--color-bg);
|
|
border-top-left-radius: var(--radius-xl);
|
|
}
|
|
}
|
|
}
|
|
|
|
.failure {
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
background-color: var(--color-bg);
|
|
|
|
.appbar-failure {
|
|
display: flex; /* Change to flex to align items horizontally */
|
|
justify-content: flex-end; /* Align items to the right */
|
|
height: var(--appbar-height);
|
|
//no select
|
|
user-select: none;
|
|
-webkit-user-select: none;
|
|
}
|
|
|
|
.error-view {
|
|
display: flex; /* Change to flex to align items horizontally */
|
|
justify-content: center;
|
|
width: 100%;
|
|
background-color: var(--color-bg);
|
|
|
|
color: var(--color-base);
|
|
|
|
.card {
|
|
background-color: var(--color-raised-bg);
|
|
}
|
|
|
|
.error-text {
|
|
display: flex;
|
|
max-width: 60%;
|
|
gap: 0.25rem;
|
|
flex-direction: column;
|
|
|
|
.error-div {
|
|
// spaced out
|
|
margin: 0.5rem;
|
|
}
|
|
|
|
.error-message {
|
|
margin: 0.5rem;
|
|
background-color: var(--color-button-bg);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.nav-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 100%;
|
|
background-color: var(--color-raised-bg);
|
|
box-shadow: var(--shadow-inset-sm), var(--shadow-floating);
|
|
padding: var(--gap-md);
|
|
}
|
|
|
|
.pages-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
justify-content: flex-start;
|
|
width: 100%;
|
|
gap: 0.35rem;
|
|
|
|
.page-item,
|
|
a {
|
|
display: flex;
|
|
align-items: center;
|
|
word-spacing: 3px;
|
|
background: inherit;
|
|
transition: all ease-in-out 0.1s;
|
|
color: var(--color-base);
|
|
|
|
&.router-link-active {
|
|
color: var(--color-brand);
|
|
background: var(--color-brand-highlight);
|
|
}
|
|
|
|
&:hover {
|
|
color: var(--color-contrast);
|
|
background: var(--color-button-bg);
|
|
}
|
|
|
|
&.router-link-active:hover {
|
|
color: var(--color-brand);
|
|
background: var(--color-brand-highlight);
|
|
}
|
|
}
|
|
|
|
&.primary {
|
|
color: var(--color-accent-contrast);
|
|
background-color: var(--color-brand);
|
|
}
|
|
}
|
|
|
|
.collapsed-button {
|
|
height: 3rem !important;
|
|
width: 3rem !important;
|
|
padding: 0.75rem;
|
|
border-radius: 99999px;
|
|
box-shadow: none;
|
|
|
|
svg {
|
|
width: 1.5rem !important;
|
|
height: 1.5rem !important;
|
|
max-width: 1.5rem !important;
|
|
max-height: 1.5rem !important;
|
|
}
|
|
}
|
|
|
|
.instance-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
width: 70%;
|
|
margin: 0.4rem;
|
|
|
|
p:nth-child(1) {
|
|
font-size: 0.6rem;
|
|
}
|
|
|
|
& > p {
|
|
color: var(--color-base);
|
|
margin: 0.8rem 0;
|
|
font-size: 0.7rem;
|
|
line-height: 0.8125rem;
|
|
font-weight: 500;
|
|
text-transform: uppercase;
|
|
}
|
|
}
|
|
|
|
.user-section {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 4.375rem;
|
|
|
|
section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
text-align: left;
|
|
margin-left: 0.5rem;
|
|
}
|
|
|
|
.username {
|
|
margin-bottom: 0.3rem;
|
|
font-weight: 400;
|
|
line-height: 1.25rem;
|
|
color: var(--color-contrast);
|
|
}
|
|
|
|
a {
|
|
font-weight: 400;
|
|
color: var(--color-secondary);
|
|
}
|
|
}
|
|
|
|
.nav-section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
|
|
height: 100%;
|
|
}
|
|
|
|
.video {
|
|
margin-top: 2.25rem;
|
|
width: 100vw;
|
|
height: calc(100vh - 2.25rem);
|
|
object-fit: cover;
|
|
border-radius: var(--radius-md);
|
|
}
|
|
|
|
.button-row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
gap: var(--gap-md);
|
|
|
|
.transparent {
|
|
padding: var(--gap-sm) 0;
|
|
}
|
|
}
|
|
</style>
|