Modal updates

- Add options for removing backdrop and preventing closing
- Add close button
- Style tweaks
This commit is contained in:
James Lyne 2021-09-01 01:00:42 +01:00
parent 1e4c8a080f
commit 21cb8da32f
6 changed files with 91 additions and 18 deletions

View File

@ -141,6 +141,8 @@
logoutTitle: 'Logout',
logoutErrorUnknown: 'Unexpected error while logging out',
logoutSuccess: 'Logged out successfully',
closeTitle: 'Close',
},
ui: {

View File

@ -15,8 +15,15 @@
-->
<template>
<div :class="{'modal': true, 'modal--visible': visible}" role="dialog" :id="`modal--${id}`"
:aria-labelledby="`${id}__heading`" aria-modal="true" @click="onClick" ref="modal">
<div :class="{'modal': true, 'modal--visible': visible, 'modal--backdrop': backdrop}"
role="dialog" :id="`modal--${id}`" :aria-labelledby="`${id}__heading`" aria-modal="true"
@click="onBackdropClick" ref="modal">
<div class="modal__header">
<slot name="header"></slot>
<button v-if="closeable" class="modal__close" type="button" @click="close" :aria-label="messageClose">
<SvgIcon name="cross"></SvgIcon>
</button>
</div>
<div class="modal__content">
<slot></slot>
</div>
@ -29,44 +36,59 @@ import {useStore} from "@/store";
import {MutationTypes} from "@/store/mutation-types";
import {LiveAtlasUIModal} from "@/index";
import {computed, ref} from "vue";
import SvgIcon from "@/components/SvgIcon.vue";
export default defineComponent({
components: {SvgIcon},
props: {
id: {
required: true,
type: String,
},
closeable: {
default: true,
type: Boolean,
},
backdrop: {
default: true,
type: Boolean,
}
},
setup(props) {
const store = useStore(),
modal = ref<HTMLElement | null>(null),
messageClose = computed(() => store.state.messages.closeTitle),
visible = computed(() => store.state.ui.visibleModal === props.id);
const onKeydown = (e: KeyboardEvent) => {
if(visible.value && e.key === 'Escape') {
store.commit(MutationTypes.HIDE_UI_MODAL, props.id as LiveAtlasUIModal);
if(props.closeable && visible.value && e.key === 'Escape') {
close();
e.preventDefault();
e.stopImmediatePropagation();
}
};
const onClick = (e: MouseEvent) => {
if(e.target === modal.value) {
store.commit(MutationTypes.HIDE_UI_MODAL, props.id as LiveAtlasUIModal);
const onBackdropClick = (e: MouseEvent) => {
if(props.closeable && e.target === modal.value) {
close();
}
};
const close = () => props.closeable && store.commit(MutationTypes.HIDE_UI_MODAL, props.id as LiveAtlasUIModal);
onMounted(() => {
window.addEventListener('keydown', onKeydown);
});
onUnmounted(() => {
window.addEventListener('keydown', onKeydown);
window.removeEventListener('keydown', onKeydown);
});
return {
visible,
modal,
onClick,
onBackdropClick,
close,
messageClose
}
}
});
@ -83,20 +105,61 @@ export default defineComponent({
bottom: 0;
left: 0;
display: none;
align-items: flex-start;
justify-content: center;
align-items: center;
flex-direction: column;
justify-content: flex-start;
padding: 10vh 1rem;
background-color: rgba(0, 0, 0, 0.8);
overflow: auto;
pointer-events: none;
cursor: default;
&.modal--backdrop {
pointer-events: auto;
background-color: rgba(0, 0, 0, 0.8);
}
&.modal--visible {
display: flex;
}
.modal__header,
.modal__content {
@extend %panel;
max-width: 80rem;
box-sizing: border-box;
width: 100%;
padding: 2rem;
pointer-events: auto;
}
.modal__header {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
position: relative;
padding: 2rem 3rem 0;
text-align: center;
}
.modal__close {
position: absolute;
top: 0;
right: 0;
padding: 1rem;
width: 3.5rem;
height: 3.5rem;
display: block;
border-top-left-radius: 0;
border-bottom-right-radius: 0;
.svg-icon {
width: 1.5rem !important;
height: 1.5rem !important;
}
}
.modal__content {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
}
</style>

View File

@ -15,9 +15,10 @@
-->
<template>
<Modal id="login">
<h2 id="login__heading">{{ heading }}</h2>
<Modal id="login" :closeable="!required" :backdrop="!required">
<template v-slot:header>
<h2 id="login__heading">{{ heading }}</h2>
</template>
<LoginForm></LoginForm>
<RegisterForm></RegisterForm>
</Modal>
@ -33,6 +34,12 @@ import Modal from "@/components/Modal.vue";
export default defineComponent({
components: {Modal, RegisterForm, LoginForm},
props: {
required: {
default: false,
type: Boolean,
}
},
setup() {
const store = useStore(),
heading = computed(() => store.state.messages.loginTitle);
@ -54,7 +61,6 @@ export default defineComponent({
justify-content: space-between;
}
#login__heading,
#login__error {
width: 100%;
text-align: center;
@ -62,8 +68,7 @@ export default defineComponent({
}
.form {
width: 50%;
padding: 1rem;
width: calc(50% - 1.5rem);
box-sizing: border-box;
}
}

1
src/index.d.ts vendored
View File

@ -121,6 +121,7 @@ interface LiveAtlasGlobalMessageConfig {
logoutTitle: string;
logoutErrorUnknown: string;
logoutSuccess: string;
closeTitle: string;
}
// Messages defined by dynmap configuration responses and can vary per server

View File

@ -158,6 +158,7 @@ export const mutations: MutationTree<State> & Mutations = {
logoutTitle: messageConfig.logoutTitle || '',
logoutErrorUnknown: messageConfig.logoutErrorUnknown || '',
logoutSuccess: messageConfig.logoutSuccess || '',
closeTitle: messageConfig.closeTitle || '',
}
state.messages = Object.assign(state.messages, messages);

View File

@ -166,6 +166,7 @@ export const state: State = {
logoutTitle: '',
logoutErrorUnknown: '',
logoutSuccess: '',
closeTitle: '',
},
loggedIn: false,