ki-frontend/src/views/profile/View.vue

158 lines
4.2 KiB
Vue
Raw Normal View History

2021-09-19 12:55:33 +02:00
<!--
SPDX-FileCopyrightText: WTF Kooperative eG <https://wtf-eg.de/>
SPDX-License-Identifier: AGPL-3.0-or-later
-->
2021-06-07 17:41:25 +02:00
<template>
2021-10-03 17:56:52 +02:00
<div>
<template v-if="error">
<ViewError :isOwnProfile="isOwnProfile" :notFound="notFound" />
</template>
<template
v-else-if="profile"
class="container">
<ProfileHeader
class="mb-4"
:profile="profile" />
<Section
v-if="profile.skills && profile.skills.length > 0"
title="Das kann ich">
<div style="margin-bottom: -.5rem;">
<Skill
class="me-2 mb-2"
v-for="skill in profile.skills"
:key="skill.skill.id"
:profileSkill="skill"
:showLevel="true" />
</div>
</Section>
<Section
v-if="profile.searchtopics && profile.searchtopics.length > 0"
title="Das suche ich">
<div style="margin-bottom: -.5rem;">
<Skill
class="me-2 mb-2"
v-for="skill in profile.searchtopics"
:key="skill.skill.id"
:profileSkill="skill"
:showLevel="false" />
</div>
</Section>
<Section
v-if="profile.languages && profile.languages.length > 0"
title="Ich spreche diese Sprachen">
<div style="margin-bottom: -.5rem;">
<Language
class="me-2 mb-2"
v-for="language in profile.languages"
:key="language.language.id"
:profileLanguage="language"
/>
</div>
</Section>
2021-10-11 18:55:19 +02:00
<Section title="Verfügbarkeit">
<div class="d-flex align-items-center">
<div v-if="profile.availability_status">
<i class="bi bi-check-square me-1"></i>
ja
</div>
<div v-else>
<i class="bi bi-x-square me-1"></i>
nein
</div>
<span
class="ms-3"
v-if="profile.availability_status && profile.availability_hours_per_week">
({{ profile.availability_hours_per_week }} Stunden pro Woche)
</span>
</div>
<div v-if="profile.availability_text" class="mt-3">
<label class="form-label fw-bold">
Anmerkungen
</label>
<div>{{ profile.availability_text }}</div>
</div>
2021-10-03 17:56:52 +02:00
</Section>
<Section
v-if="profile.contacts && profile.contacts.length > 0"
title="Meine Kontaktmöglichkeiten"
>
<div style="margin-bottom: -.5rem;">
<Contact
class="me-2 mb-2"
v-for="profileContact in profile.contacts"
:key="profileContact.id"
:profileContact="profileContact"
/>
</div>
</Section>
<Section
v-if="profile.volunteerwork || profile.freetext"
title="Sonstiges">
<div v-if="profile.freetext" :class="{ 'lh-base': true, 'mb-4': profile.volunteerwork }">
<h5>Über mich</h5>
{{ profile.freetext }}
</div>
<div v-if="profile.volunteerwork" class="lh-base">
<h5>Ehrentamtliche Arbeit</h5>
{{ profile.volunteerwork }}
</div>
</Section>
</template>
2021-07-26 17:10:28 +02:00
</div>
2021-06-07 17:41:25 +02:00
</template>
<script>
2021-10-03 17:56:52 +02:00
import { mapState, mapActions } from 'vuex'
2021-09-19 17:30:37 +02:00
2021-10-03 17:56:52 +02:00
import ViewError from '@/components/ViewError'
import ProfileHeader from '@/components/profile/Header'
import Section from '@/components/profile/Section'
import Contact from '@/components/profile/Contact'
import Language from '@/components/profile/Language'
import Skill from '@/components/Skill'
2021-07-26 17:10:28 +02:00
2021-06-07 17:41:25 +02:00
export default {
2021-10-03 17:56:52 +02:00
name: 'profileView',
2021-07-26 17:10:28 +02:00
components: {
2021-10-03 17:56:52 +02:00
Contact,
Language,
ProfileHeader,
Section,
Skill,
ViewError,
},
methods: {
...mapActions({
2021-10-10 19:41:45 +02:00
loadProfile: 'profile/load',
clearStore: 'profile/clear',
2021-10-03 17:56:52 +02:00
})
2021-07-26 17:10:28 +02:00
},
2021-09-19 17:30:37 +02:00
computed: {
...mapState({
2021-10-03 17:56:52 +02:00
profile: state => state.profile.profile,
error: state => state.profile.error,
notFound: state => state.profile.notFound,
isOwnProfile: state => state.profile.isOwnProfile,
showSpinner: state => state.profile.showSpinner
2021-09-19 17:30:37 +02:00
})
2021-07-26 17:10:28 +02:00
},
async created() {
2021-10-03 17:56:52 +02:00
const id = parseInt(this.$route.params.memberId, 10)
2021-10-10 19:41:45 +02:00
this.loadProfile(id)
},
unmounted() {
this.clearStore()
},
2021-07-26 17:10:28 +02:00
};
2021-07-28 21:52:12 +02:00
</script>
2021-10-03 17:56:52 +02:00
<style>
</style>