2024-02-29 04:08:54 +00:00
|
|
|
<template>
|
2024-03-26 03:14:42 +00:00
|
|
|
<div class="page">
|
|
|
|
<div class="profile">
|
|
|
|
<div class="profile-header">
|
|
|
|
<div class="user">
|
|
|
|
<img
|
|
|
|
v-if="profile.avatar"
|
|
|
|
:src="profile.avatar"
|
|
|
|
class="avatar"
|
|
|
|
>
|
|
|
|
|
|
|
|
<h2 class="username ellipsis">{{ profile.username }}</h2>
|
|
|
|
</div>
|
2024-03-03 01:33:35 +00:00
|
|
|
|
2024-03-26 23:06:03 +00:00
|
|
|
<span class="age">{{ formatDistanceStrict(Date.now(), profile.createdAt) }}</span>
|
2024-03-26 03:14:42 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<section class="profile-section">
|
|
|
|
<div class="section-header">
|
|
|
|
<h3 class="heading">Stashes</h3>
|
|
|
|
|
|
|
|
<button
|
|
|
|
class="button"
|
|
|
|
@click="showStashDialog = true"
|
|
|
|
>
|
|
|
|
<Icon icon="plus3" />
|
|
|
|
<span class="button-label">New stash</span>
|
|
|
|
</button>
|
2024-03-21 01:59:55 +00:00
|
|
|
</div>
|
2024-03-26 03:14:42 +00:00
|
|
|
|
|
|
|
<Dialog
|
|
|
|
v-if="showStashDialog"
|
|
|
|
title="New stash"
|
|
|
|
@close="showStashDialog = false"
|
|
|
|
@open="stashNameInput?.focus()"
|
|
|
|
>
|
|
|
|
<form
|
|
|
|
class="dialog-body"
|
|
|
|
@submit.prevent="createStash"
|
|
|
|
>
|
|
|
|
<input
|
|
|
|
ref="stashNameInput"
|
|
|
|
v-model="stashName"
|
2024-03-26 23:06:03 +00:00
|
|
|
maxlength="24"
|
2024-03-26 03:14:42 +00:00
|
|
|
placeholder="Stash name"
|
2024-03-26 23:06:03 +00:00
|
|
|
class="input"
|
2024-03-26 03:14:42 +00:00
|
|
|
>
|
|
|
|
|
|
|
|
<button
|
|
|
|
class="button button-submit"
|
|
|
|
>Create stash</button>
|
|
|
|
</form>
|
|
|
|
</Dialog>
|
|
|
|
|
|
|
|
<ul class="stashes nolist">
|
|
|
|
<li
|
|
|
|
v-for="stash in profile.stashes"
|
|
|
|
:key="`stash-${stash.id}`"
|
|
|
|
>
|
2024-03-26 23:06:03 +00:00
|
|
|
<StashTile
|
|
|
|
:stash="stash"
|
|
|
|
:profile="profile"
|
|
|
|
@reload="reloadProfile"
|
|
|
|
/>
|
2024-03-26 03:14:42 +00:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
</div>
|
2024-02-29 04:08:54 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
2024-03-26 02:00:50 +00:00
|
|
|
import { ref, inject } from 'vue';
|
2024-03-26 03:14:42 +00:00
|
|
|
import { formatDistanceStrict } from 'date-fns';
|
2024-03-26 02:00:50 +00:00
|
|
|
|
2024-03-26 23:06:03 +00:00
|
|
|
import { get, post } from '#/src/api.js';
|
2024-02-29 04:08:54 +00:00
|
|
|
|
2024-03-26 23:06:03 +00:00
|
|
|
import StashTile from '#/components/stashes/tile.vue';
|
2024-03-26 03:14:42 +00:00
|
|
|
import Dialog from '#/components/dialog/dialog.vue';
|
|
|
|
|
2024-02-29 04:08:54 +00:00
|
|
|
const pageContext = inject('pageContext');
|
2024-03-26 02:00:50 +00:00
|
|
|
const profile = ref(pageContext.pageProps.profile);
|
2024-03-26 03:14:42 +00:00
|
|
|
|
|
|
|
const stashName = ref(null);
|
|
|
|
const stashNameInput = ref(null);
|
|
|
|
|
2024-03-26 02:00:50 +00:00
|
|
|
const done = ref(true);
|
2024-03-26 03:14:42 +00:00
|
|
|
const showStashDialog = ref(false);
|
2024-03-03 01:33:35 +00:00
|
|
|
|
2024-03-26 23:06:03 +00:00
|
|
|
async function reloadProfile() {
|
|
|
|
profile.value = await get(`/users/${profile.value.id}`);
|
2024-03-03 01:33:35 +00:00
|
|
|
}
|
2024-03-26 02:00:50 +00:00
|
|
|
|
2024-03-26 03:14:42 +00:00
|
|
|
async function createStash() {
|
|
|
|
if (done.value === false) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
done.value = false;
|
|
|
|
|
2024-03-26 23:06:03 +00:00
|
|
|
await post('/stashes', {
|
|
|
|
name: stashName.value,
|
|
|
|
public: false,
|
|
|
|
}, {
|
|
|
|
successFeedback: `Created stash '${stashName.value}'`,
|
|
|
|
errorFeedback: `Failed to create stash '${stashName.value}'`,
|
|
|
|
appendErrorMessage: true,
|
|
|
|
}).finally(() => { done.value = true; });
|
2024-03-26 03:14:42 +00:00
|
|
|
|
2024-03-26 23:06:03 +00:00
|
|
|
showStashDialog.value = false;
|
|
|
|
stashName.value = null;
|
2024-03-26 03:14:42 +00:00
|
|
|
|
2024-03-26 23:06:03 +00:00
|
|
|
await reloadProfile();
|
2024-03-26 02:00:50 +00:00
|
|
|
}
|
2024-02-29 04:08:54 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
2024-03-26 03:14:42 +00:00
|
|
|
.page {
|
|
|
|
display: flex;
|
|
|
|
flex-grow: 1;
|
|
|
|
justify-content: center;
|
|
|
|
background: var(--background-base-10);
|
|
|
|
}
|
|
|
|
|
|
|
|
.profile {
|
|
|
|
width: 1200px;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
2024-02-29 04:08:54 +00:00
|
|
|
.profile-header {
|
|
|
|
display: flex;
|
2024-03-26 03:14:42 +00:00
|
|
|
justify-content: space-between;
|
2024-02-29 04:08:54 +00:00
|
|
|
align-items: center;
|
|
|
|
padding: .5rem 1rem;
|
|
|
|
color: var(--highlight-strong-30);
|
|
|
|
background: var(--grey-dark-40);
|
2024-03-26 03:14:42 +00:00
|
|
|
border-radius: 0 0 .5rem .5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user {
|
|
|
|
display: flex;
|
|
|
|
overflow: hidden;
|
2024-02-29 04:08:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.username {
|
|
|
|
margin: 0;
|
2024-03-26 02:00:50 +00:00
|
|
|
font-size: 1.25rem;
|
2024-02-29 04:08:54 +00:00
|
|
|
}
|
|
|
|
|
2024-03-26 03:14:42 +00:00
|
|
|
.age {
|
|
|
|
display: flex;
|
|
|
|
flex-shrink: 0;
|
2024-03-26 23:06:03 +00:00
|
|
|
font-size: .9rem;
|
2024-03-26 03:14:42 +00:00
|
|
|
|
|
|
|
.icon {
|
2024-03-26 23:06:03 +00:00
|
|
|
width: .9rem;
|
2024-03-26 03:14:42 +00:00
|
|
|
fill: var(--highlight-strong-20);
|
|
|
|
margin-right: .75rem;
|
|
|
|
transform: translateY(-1px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-29 04:08:54 +00:00
|
|
|
.avatar {
|
2024-03-26 02:00:50 +00:00
|
|
|
width: 1.5rem;
|
|
|
|
height: 1.5rem;
|
2024-02-29 04:08:54 +00:00
|
|
|
border-radius: .25rem;
|
|
|
|
margin-right: 1rem;
|
|
|
|
}
|
2024-03-03 01:33:35 +00:00
|
|
|
|
2024-03-26 03:14:42 +00:00
|
|
|
.section-header {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding: .5rem .5rem .5rem .5rem;
|
|
|
|
|
|
|
|
.button {
|
|
|
|
margin-left: 1rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.heading {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 1.1rem;
|
|
|
|
color: var(--primary);
|
|
|
|
}
|
|
|
|
|
2024-03-03 01:33:35 +00:00
|
|
|
.stashes {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
|
2024-03-17 04:27:43 +00:00
|
|
|
gap: 1rem;
|
2024-03-26 03:14:42 +00:00
|
|
|
padding: 0 .5rem 1rem .5rem;
|
2024-03-03 01:33:35 +00:00
|
|
|
}
|
|
|
|
|
2024-03-26 03:14:42 +00:00
|
|
|
.dialog-body {
|
|
|
|
padding: 1rem;
|
|
|
|
|
|
|
|
.input {
|
|
|
|
margin-bottom: .5rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media(--compact) {
|
|
|
|
.profile-header {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section-header {
|
|
|
|
padding: .5rem 1rem .5rem 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.stashes {
|
|
|
|
padding: 0 1rem 1rem 1rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media(--small-30) {
|
|
|
|
.section-header {
|
|
|
|
padding: .5rem .5rem .5rem .5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.stashes {
|
|
|
|
padding: 0 .5rem 1rem .5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.age .icon {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media(--small-50) {
|
|
|
|
.age {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2024-02-29 04:08:54 +00:00
|
|
|
</style>
|