knowyt/client/src/pages/index.vue
Settel 0d2ae30b24
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
refactor: move version/copyright notice to own component
2023-01-29 17:50:20 +01:00

88 lines
1.8 KiB
Vue

<template>
<div>
<TitleBox />
<div class="page-index__action-box">
<div class="page-index__space" />
<div class="page-index__login">
<LoginBox />
</div>
<div class="page-index__separator" />
<div class="page-index__create-team">
<Button :border="false" @click="createTeam">{{ $t('create-team') }}</Button>
</div>
<div class="page-index__space" />
</div>
<CopyrightNotice />
<CreateTeamDialog v-if="showCreateTeamDialog" @close="closeCreateTeamDialog" />
</div>
</template>
<script setup lang="ts">
import { ref } from 'vue'
import useAuth from '@/composables/useAuth'
import useI18n from '@/composables/useI18n'
import CopyrightNotice from '../components/CopyrightNotice.vue';
const { $t } = useI18n({
'create-team': { en: 'Create Team ...', de: 'Team erstellen ...' },
})
await useAuth().authenticateAndLoadUserInfo([''])
const showCreateTeamDialog = ref(false)
const createTeam = () => { showCreateTeamDialog.value = true }
const closeCreateTeamDialog = () => { showCreateTeamDialog.value = false }
</script>
<style lang="scss">
@import '~/assets/css/components';
body {
background-color: $background-primary-color;
color: $text-primary-color;
margin: 0;
}
.page-index {
&__action-box {
display: flex;
width: 100%;
height: 120px;
@media (max-width: $phone-max-width) {
margin: 32px 0 0 0;
}
}
&__login,
&__create-team {
width: 320px;
align-self: center;
@media (max-width: $phone-max-width) {
width: auto;
}
}
&__create-team {
@media (max-width: $phone-max-width) {
display: none;
}
}
&__separator {
width: 1px;
margin: 0 48px;
border-left: $box-primary-border;
@media (max-width: $phone-max-width) {
display: none;
}
}
&__space {
flex-grow: 1;
}
}
</style>