2020-10-24 12:50:08 -07:00
|
|
|
<template>
|
|
|
|
<NotFound v-if="!$user()"/>
|
|
|
|
<div v-else class="container">
|
|
|
|
<div class="mb-3 d-flex justify-content-between flex-column flex-md-row">
|
|
|
|
<h2 class="text-nowrap">
|
|
|
|
<Avatar :user="$user()"/>
|
|
|
|
@{{ $user().username }}
|
|
|
|
</h2>
|
|
|
|
<div>
|
|
|
|
<nuxt-link :to="`/@${$user().username}`" class="btn btn-outline-primary btn-sm">
|
|
|
|
<Icon v="id-card"/>
|
|
|
|
<T>profile.show</T>
|
|
|
|
</nuxt-link>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<form @submit.prevent="save" :class="[saving ? 'saving' : '']">
|
|
|
|
<div class="form-group">
|
|
|
|
<h3 class="h4">
|
|
|
|
<Icon v="signature"/>
|
|
|
|
<T>profile.names</T>
|
|
|
|
</h3>
|
|
|
|
<OpinionListInput v-model="names"/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<h3 class="h4">
|
|
|
|
<Icon v="link"/>
|
|
|
|
<T>profile.pronouns</T>
|
|
|
|
</h3>
|
2020-10-26 16:42:42 -07:00
|
|
|
<p class="small text-muted mb-0">
|
2020-10-24 12:50:08 -07:00
|
|
|
<T>profile.pronounsInfo</T>
|
|
|
|
</p>
|
2020-11-05 05:06:47 -08:00
|
|
|
<OpinionListInput v-model="pronouns" :validation="validatePronoun"/>
|
2020-10-24 12:50:08 -07:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<h3 class="h4">
|
|
|
|
<Icon v="comment-edit"/>
|
|
|
|
<T>profile.description</T>
|
|
|
|
</h3>
|
2020-11-05 05:06:47 -08:00
|
|
|
<textarea class="form-control form-control-sm" v-model="description" maxlength="256" rows="4"/>
|
2020-10-24 12:50:08 -07:00
|
|
|
</div>
|
|
|
|
|
2020-10-26 16:42:42 -07:00
|
|
|
<div class="form-group">
|
|
|
|
<h3 class="h4">
|
|
|
|
<Icon v="flag"/>
|
|
|
|
<T>profile.flags</T>
|
|
|
|
</h3>
|
|
|
|
<p class="small text-muted mb-0">
|
|
|
|
<T>profile.flagsInfo</T>
|
|
|
|
</p>
|
|
|
|
<ButtonList v-model="flags" :options="allFlags" v-slot="s">
|
|
|
|
<Flag :name="s.desc" :src="`/flags/${s.v}.png`"/>
|
|
|
|
</ButtonList>
|
|
|
|
</div>
|
|
|
|
|
2020-10-24 12:50:08 -07:00
|
|
|
<div class="form-group">
|
|
|
|
<h3 class="h4">
|
|
|
|
<Icon v="link"/>
|
|
|
|
<T>profile.links</T>
|
|
|
|
</h3>
|
|
|
|
<ListInput v-model="links" v-slot="s">
|
|
|
|
<input v-model="s.val" type="url" class="form-control" @keyup="s.update(s.val)" required/>
|
|
|
|
</ListInput>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<h3 class="h4">
|
|
|
|
<Icon v="birthday-cake"/>
|
|
|
|
<T>profile.birthday</T>
|
|
|
|
</h3>
|
2020-10-26 16:42:42 -07:00
|
|
|
<p class="small text-muted mb-0">
|
2020-10-24 12:50:08 -07:00
|
|
|
<T>profile.birthdayInfo</T>
|
|
|
|
</p>
|
2020-11-05 05:06:47 -08:00
|
|
|
<input type="date" class="form-control form-control-sm" v-model="birthday"/>
|
2020-10-24 12:50:08 -07:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<h3 class="h4">
|
|
|
|
<Icon v="scroll-old"/>
|
|
|
|
<T>profile.words</T>
|
|
|
|
</h3>
|
|
|
|
<template v-for="i in [0, 1, 2, 3]">
|
|
|
|
<h4 class="h5">
|
|
|
|
<T>profile.column</T> {{i + 1}}
|
|
|
|
</h4>
|
2020-10-25 04:30:55 -07:00
|
|
|
<OpinionListInput v-model="words[i]" group="words"/>
|
2020-10-24 12:50:08 -07:00
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<button class="btn btn-primary btn-block" type="submit">
|
|
|
|
<Icon v="save"/>
|
|
|
|
<T>profile.editor.save</T>
|
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2020-10-24 13:58:34 -07:00
|
|
|
import { head, dictToList, listToDict, buildList } from "../src/helpers";
|
2020-10-24 12:50:08 -07:00
|
|
|
import { templates } from "~/src/data";
|
|
|
|
import { buildTemplate } from "../src/buildTemplate";
|
2020-10-24 13:58:34 -07:00
|
|
|
import config from '../data/config.suml';
|
|
|
|
|
2020-10-28 08:22:29 -07:00
|
|
|
const defaultWords = config.profile.defaultWords.map(c => buildList(function* () {
|
2020-10-24 13:58:34 -07:00
|
|
|
for (let word of c) {
|
|
|
|
yield {key: word, value: 0};
|
|
|
|
}
|
|
|
|
}))
|
2020-10-24 12:50:08 -07:00
|
|
|
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
saving: false,
|
2020-10-26 16:42:42 -07:00
|
|
|
allFlags: process.env.FLAGS,
|
2020-10-24 12:50:08 -07:00
|
|
|
};
|
|
|
|
},
|
|
|
|
async asyncData({ app, store }) {
|
|
|
|
if (!store.state.user) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
const profiles = await app.$axios.$get(`/profile/get/${store.state.user.username}`, { headers: {
|
|
|
|
authorization: 'Bearer ' + store.state.token,
|
|
|
|
} });
|
|
|
|
|
|
|
|
for (let locale in profiles) {
|
|
|
|
if (!profiles.hasOwnProperty(locale)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (locale === app.context.env.LOCALE) {
|
|
|
|
const profile = profiles[locale];
|
|
|
|
return {
|
|
|
|
names: dictToList(profile.names),
|
|
|
|
pronouns: dictToList(profile.pronouns),
|
|
|
|
description: profile.description,
|
|
|
|
birthday: profile.birthday,
|
2020-10-24 16:37:03 -07:00
|
|
|
links: Object.keys(profile.links).length ? profile.links : [],
|
2020-10-26 16:42:42 -07:00
|
|
|
flags: profile.flags,
|
2020-10-24 12:50:08 -07:00
|
|
|
words: profile.words.map(x => dictToList(x)),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (let locale in profiles) {
|
|
|
|
if (!profiles.hasOwnProperty(locale)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
const profile = profiles[locale];
|
|
|
|
return {
|
|
|
|
names: dictToList(profile.names),
|
2020-10-24 16:39:27 -07:00
|
|
|
pronouns: [],
|
2020-10-24 12:50:08 -07:00
|
|
|
description: '',
|
|
|
|
birthday: profile.birthday,
|
2020-10-24 16:37:03 -07:00
|
|
|
links: Object.keys(profile.links).length ? profile.links : [],
|
2020-10-26 16:42:42 -07:00
|
|
|
flags: profile.flags,
|
2020-10-24 13:58:34 -07:00
|
|
|
words: defaultWords,
|
2020-10-24 12:50:08 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
2020-10-24 16:39:27 -07:00
|
|
|
names: [],
|
|
|
|
pronouns: [],
|
2020-10-24 12:50:08 -07:00
|
|
|
description: '',
|
|
|
|
birthday: null,
|
2020-10-24 16:39:27 -07:00
|
|
|
links: [],
|
|
|
|
flags: [],
|
2020-10-24 13:58:34 -07:00
|
|
|
words: defaultWords,
|
2020-10-24 12:50:08 -07:00
|
|
|
};
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
buildTemplate(link) {
|
|
|
|
return buildTemplate(templates, link);
|
|
|
|
},
|
|
|
|
async save() {
|
|
|
|
this.saving = true;
|
2020-11-02 10:31:05 -08:00
|
|
|
await this.$axios.$post(`/profile/save/${this.config.locale}`, {
|
2020-10-24 12:50:08 -07:00
|
|
|
names: listToDict(this.names),
|
|
|
|
pronouns: listToDict(this.pronouns),
|
|
|
|
description: this.description,
|
|
|
|
birthday: this.birthday,
|
2020-10-26 16:42:42 -07:00
|
|
|
links: [...this.links],
|
|
|
|
flags: [...this.flags],
|
2020-10-24 12:50:08 -07:00
|
|
|
words: this.words.map(x => listToDict(x)),
|
2020-11-02 10:31:05 -08:00
|
|
|
});
|
2020-10-24 12:50:08 -07:00
|
|
|
this.saving = false;
|
|
|
|
this.$router.push(`/@${this.$user().username}`)
|
|
|
|
},
|
2020-11-05 05:06:47 -08:00
|
|
|
validatePronoun(pronoun) {
|
|
|
|
const link = pronoun.replace(new RegExp('^' + process.env.BASE_URL), '').replace(new RegExp('^/'), '');
|
|
|
|
const template = buildTemplate(templates, link);
|
|
|
|
|
|
|
|
return template ? null : 'profile.pronounsNotFound'
|
|
|
|
},
|
2020-10-24 12:50:08 -07:00
|
|
|
},
|
|
|
|
head() {
|
|
|
|
return head({
|
|
|
|
title: this.$t('profile.editor.header'),
|
|
|
|
});
|
|
|
|
},
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.avatar {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 5rem;
|
|
|
|
max-height: 5rem;
|
|
|
|
}
|
|
|
|
.saving {
|
|
|
|
opacity: .5;
|
|
|
|
}
|
|
|
|
</style>
|