WIP: Add mobile modal, refactor modal

This commit is contained in:
Christian Cueni 2022-08-04 17:44:50 +02:00
parent 03cd0fd32b
commit 1e2bc078cd
4 changed files with 228 additions and 185 deletions

View File

@ -1,8 +1,9 @@
<script setup> <script setup lang="ts">
import * as log from 'loglevel'; import * as log from 'loglevel';
import { onMounted, reactive} from 'vue'; import { onMounted, reactive} from 'vue';
import { useUserStore } from '@/stores/user'; import { useUserStore } from '@/stores/user';
import { useLearningPathStore } from '@/stores/learningPath';
import { useRoute, useRouter } from 'vue-router'; import { useRoute, useRouter } from 'vue-router';
import { useAppStore } from '@/stores/app'; import { useAppStore } from '@/stores/app';
import IconLogout from "@/components/icons/IconLogout.vue"; import IconLogout from "@/components/icons/IconLogout.vue";
@ -16,16 +17,13 @@ const route = useRoute()
const router = useRouter() const router = useRouter()
const userStore = useUserStore(); const userStore = useUserStore();
const appStore = useAppStore(); const appStore = useAppStore();
const learningPathStore = useLearningPathStore();
const state = reactive({showMenu: false}); const state = reactive({showMenu: false});
function toggleNav() { function toggleNav() {
state.showMenu = !state.showMenu; state.showMenu = !state.showMenu;
} }
function calcNavigationMobileOpenClasses() {
return state.showMenu ? ['fixed', 'w-full', 'h-screen'] : [];
}
function menuActive(checkPath) { function menuActive(checkPath) {
return route.path.startsWith(checkPath); return route.path.startsWith(checkPath);
} }
@ -34,6 +32,10 @@ function inLearningPath() {
return route.path.startsWith('/learningpath/') || route.path.startsWith('/circle/'); return route.path.startsWith('/learningpath/') || route.path.startsWith('/circle/');
} }
function learningPathName (): string {
return inLearningPath() && learningPathStore.learningPath ? learningPathStore.learningPath.title : '';
}
function backButtonUrl() { function backButtonUrl() {
if (route.path.startsWith('/circle/')) { if (route.path.startsWith('/circle/')) {
return '/learningpath/versicherungsvermittlerin'; return '/learningpath/versicherungsvermittlerin';
@ -83,13 +85,18 @@ const profileDropdownData = [
</script> </script>
<template> <template>
<div>
<Teleport to="body"> <Teleport to="body">
<MobileMenu <MobileMenu
v-if="learningPathName()"
:user="userStore"
:show="state.showMenu" :show="state.showMenu"
:learning-path-name="learningPathName()"
@closemodal="state.showMenu = false"
/> />
</Teleport> </Teleport>
<Transition name="nav"> <Transition name="nav">
<div v-if="appStore.showMainNavigationBar" class="navigation bg-blue-900" :class="calcNavigationMobileOpenClasses()"> <div v-if="appStore.showMainNavigationBar" class="navigation bg-blue-900">
<nav <nav
class=" class="
px-8 px-8
@ -122,7 +129,7 @@ const profileDropdownData = [
</router-link> </router-link>
</div> </div>
<div class="flex items-center"> <div class="flex items-center lg:hidden">
<router-link <router-link
to="/messages" to="/messages"
class="nav-item flex flex-row items-center" class="nav-item flex flex-row items-center"
@ -130,7 +137,7 @@ const profileDropdownData = [
<it-icon-message class="w-8 h-8 mr-6"/> <it-icon-message class="w-8 h-8 mr-6"/>
</router-link> </router-link>
<!-- Mobile menu button --> <!-- Mobile menu button -->
<div @click="toggleNav" class="flex lg:hidden"> <div @click="toggleNav" class="flex">
<button <button
type="button" type="button"
class=" class="
@ -153,14 +160,10 @@ const profileDropdownData = [
:class="state.showMenu ? 'flex' : 'hidden'" :class="state.showMenu ? 'flex' : 'hidden'"
class=" class="
flex-auto flex-auto
flex-col
mt-8 mt-8
space-y-8
lg:flex lg:space-y-0 lg:flex-row lg:items-center lg:space-x-10 lg:mt-0 lg:flex lg:space-y-0 lg:flex-row lg:items-center lg:space-x-10 lg:mt-0
" "
> >
<router-link <router-link
v-if="inLearningPath()" v-if="inLearningPath()"
to="/learningpath/versicherungsvermittlerin" to="/learningpath/versicherungsvermittlerin"
@ -194,6 +197,12 @@ const profileDropdownData = [
> >
Mediathek Mediathek
</router-link> </router-link>
<router-link
to="/messages"
class="nav-item flex flex-row items-center"
>
<it-icon-message class="w-8 h-8 mr-6"/>
</router-link>
<div class="nav-item flex items-center" v-if="userStore.loggedIn"> <div class="nav-item flex items-center" v-if="userStore.loggedIn">
<ItDropdown <ItDropdown
:button-classes="[]" :button-classes="[]"
@ -216,6 +225,7 @@ const profileDropdownData = [
</nav> </nav>
</div> </div>
</Transition> </Transition>
</div>
</template> </template>
<style lang="postcss" scoped> <style lang="postcss" scoped>

View File

@ -1,20 +1,36 @@
<script setup lang="ts"> <script setup lang="ts">
import ItFullScreenModal from '@/components/ui/ItFullScreenModal.vue'
const props = defineProps<{
show: boolean,
user: object,
learningPathName: string
}>()
const emits = defineEmits(['closemodal'])
</script> </script>
<template> <template>
<ItFullScreenModal
:show="show"
@closemodal="$emit('closemodal')"
>
<div> <div>
<div> <div>
<div> <div>
<img> <div v-if="user.avatar_url">
<div> <img class="inline-block h-8 w-8 rounded-full"
<h3>Jan</h3> :src="user.avatar_url"
link alt=""/>
</div>
</div> </div>
<div> <div>
<h4>Kurs:</h4> <h3>{{user.first_name}} {{user.last_name}}</h3>
<a>Kontoeinstellungen</a>
</div>
</div>
<div v-if="learningPathName">
<h4>Kurs: {{learningPathName}}</h4>
<ul> <ul>
<li>Lernpfad</li> <li>Lernpfad</li>
<li>Komp</li> <li>Komp</li>
@ -31,4 +47,5 @@
</div> </div>
</div> </div>
</div> </div>
</ItFullScreenModal>
</template> </template>

View File

@ -1,6 +1,6 @@
<script setup lang="ts"> <script setup lang="ts">
// inspiration https://vuejs.org/examples/#modal
import {Circle} from '@/services/circle'; import {Circle} from '@/services/circle';
import ItFullScreenModal from '@/components/ui/ItFullScreenModal.vue'
const props = defineProps<{ const props = defineProps<{
circle: Circle, circle: Circle,
@ -12,19 +12,10 @@ const emits = defineEmits(['closemodal'])
</script> </script>
<template> <template>
<Transition mode="in-out"> <ItFullScreenModal
<div :show="show"
v-if="show" @closemodal="$emit('closemodal')"
class="circle-overview px-4 py-16 lg:px-16 lg:py-24 fixed top-0 overflow-y-scroll bg-white h-full w-full">
<button
type="button"
class="w-8 h-8 absolute right-4 top-4 cursor-pointer"
@click="$emit('closemodal')"
> >
<it-icon-close></it-icon-close>
</button>
<h1 class="">Überblick: Circle "{{ circle.title }}"</h1> <h1 class="">Überblick: Circle "{{ circle.title }}"</h1>
<p class="mt-8 text-xl">Hier zeigen wir dir, was du in diesem Circle lernen wirst.</p> <p class="mt-8 text-xl">Hier zeigen wir dir, was du in diesem Circle lernen wirst.</p>
@ -53,9 +44,7 @@ const emits = defineEmits(['closemodal'])
{{jobSituation.value}} {{jobSituation.value}}
</li> </li>
</ul> </ul>
</ItFullScreenModal>
</div>
</Transition>
</template> </template>
<style scoped> <style scoped>

View File

@ -0,0 +1,27 @@
<script setup lang="ts">
// inspiration https://vuejs.org/examples/#modal
const props = defineProps<{
show: boolean
}>()
const emits = defineEmits(['closemodal'])
</script>
<template>
<Transition mode="in-out">
<div
v-if="show"
class="circle-overview px-4 py-16 lg:px-16 lg:py-24 fixed top-0 overflow-y-scroll bg-white h-full w-full">
<button
type="button"
class="w-8 h-8 absolute right-4 top-4 cursor-pointer"
@click="$emit('closemodal')"
>
<it-icon-close></it-icon-close>
</button>
<slot></slot>
</div>
</Transition>
</template>