traxxx/assets/components/users/user.vue

150 lines
2.2 KiB
Vue
Raw Normal View History

<template>
<div
v-if="user"
class="user"
>
<div class="header">
<h2 class="username">{{ user.username }}</h2>
</div>
<section
2021-03-15 02:30:47 +00:00
v-if="user.stashes?.length > 0"
class="section"
>
<h3 class="heading">Stashes</h3>
<ul class="stashes nolist">
<li
2021-03-15 02:30:47 +00:00
v-for="stash in user.stashes"
:key="stash.id"
>
2021-03-20 01:49:17 +00:00
<Stash
:stash="stash"
:is-me="isMe"
@publish="() => fetchUser()"
/>
</li>
2021-03-20 02:22:08 +00:00
<li
v-if="isMe"
class="stashes-add"
@click="showAddStash = true"
>
<Icon icon="plus2" />
</li>
</ul>
</section>
2021-03-20 02:22:08 +00:00
<AddStash
v-if="showAddStash"
@close="closeAddStash"
2021-03-20 02:22:08 +00:00
/>
</div>
</template>
<script>
2021-03-20 01:49:17 +00:00
import Stash from './stash.vue';
2021-03-20 02:22:08 +00:00
import AddStash from '../stashes/add-stash.vue';
async function fetchUser() {
2021-03-15 02:30:47 +00:00
this.user = await this.$store.dispatch('fetchUser', this.$route.params.username);
this.isMe = this.user.id === this.$store.state.auth.user?.id;
2021-03-15 02:30:47 +00:00
this.pageTitle = this.user?.username;
}
async function closeAddStash(addedStash) {
this.showAddStash = false;
if (addedStash) {
await this.fetchUser();
}
}
async function mounted() {
await this.fetchUser();
}
export default {
components: {
2021-03-20 02:22:08 +00:00
AddStash,
2021-03-20 01:49:17 +00:00
Stash,
},
data() {
return {
user: this.$route.params.username === this.$store.state.auth.user?.username
? this.$store.state.auth.user
: null,
isMe: false,
2021-03-15 02:30:47 +00:00
pageTitle: null,
2021-03-20 02:22:08 +00:00
showAddStash: false,
};
},
mounted,
methods: {
closeAddStash,
fetchUser,
},
};
</script>
<style lang="scss" scoped>
@import 'breakpoints';
.header {
2021-03-15 02:30:47 +00:00
padding: .5rem 1rem;
background: var(--profile);
}
.username {
margin: 0;
font-size: 1.5rem;
color: var(--text-light);
}
.section {
padding: 1rem;
margin: 0 0 1rem 0;
}
.stashes {
display: grid;
grid-template-columns: 1fr 1fr;
2021-03-20 02:22:08 +00:00
grid-auto-rows: 15fr;
grid-gap: 1rem;
}
.heading {
color: var(--primary);
}
2021-03-20 02:22:08 +00:00
.stashes-add {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
background: var(--shadow-hint);
.icon {
width: 1.5rem;
height: 1.5rem;
fill: var(--shadow-weak);
}
&:hover {
background: var(--shadow-weak);
cursor: pointer;
.icon {
fill: var(--shadow);
}
}
}
@media(max-width: $breakpoint-kilo) {
.stashes {
grid-template-columns: 1fr;
}
}
</style>