implement modal service/component
This commit is contained in:
parent
c91b284d70
commit
e1611b95f4
5 changed files with 86 additions and 7 deletions
|
@ -1,4 +1,4 @@
|
||||||
//import { ModalService } from 'src/components/services/modal'
|
import { useModalStore } from 'src/modal'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Queries for HTMLImageElement nodes and inflates them with extra functionality
|
* Queries for HTMLImageElement nodes and inflates them with extra functionality
|
||||||
|
@ -42,10 +42,12 @@ export class ImageElement {
|
||||||
* @param event the click event
|
* @param event the click event
|
||||||
*/
|
*/
|
||||||
onClick = (event: Event) => {
|
onClick = (event: Event) => {
|
||||||
// event.preventDefault()
|
event.preventDefault()
|
||||||
// let cloned = this.wrapper.cloneNode(true) as HTMLElement
|
let cloned = this.wrapper.cloneNode(true) as HTMLElement
|
||||||
// let image = cloned.firstChild as HTMLElement
|
let image = cloned.firstChild as HTMLElement
|
||||||
// image.removeEventListener('click', this.onClick)
|
image.removeEventListener('click', this.onClick)
|
||||||
// ModalService.open(cloned)
|
const store = useModalStore()
|
||||||
|
store.content = cloned.outerHTML
|
||||||
|
store.isOpen = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
56
projects/frontend/src/components/shared/content-modal.vue
Normal file
56
projects/frontend/src/components/shared/content-modal.vue
Normal file
|
@ -0,0 +1,56 @@
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { useModalStore } from 'src/modal'
|
||||||
|
|
||||||
|
const modalState = useModalStore()
|
||||||
|
|
||||||
|
const onClose = (event: Event) => {
|
||||||
|
event.preventDefault()
|
||||||
|
modalState.isOpen = false
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template lang="pug">
|
||||||
|
.modal-outlet
|
||||||
|
.modal-wrapper(
|
||||||
|
v-if='modalState.isOpen'
|
||||||
|
)
|
||||||
|
.modal-container
|
||||||
|
.modal-header
|
||||||
|
.modal-title
|
||||||
|
span(
|
||||||
|
v-if="!!modalState.title"
|
||||||
|
)
|
||||||
|
span {{ modalState.title }}
|
||||||
|
.modal-controls
|
||||||
|
button(
|
||||||
|
@click='onClose($event)'
|
||||||
|
) Close
|
||||||
|
.modal-content(
|
||||||
|
v-if='modalState.content'
|
||||||
|
v-html='modalState.content'
|
||||||
|
)
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped lang="sass">
|
||||||
|
.modal-outlet
|
||||||
|
.modal-wrapper
|
||||||
|
position: fixed
|
||||||
|
top: 0
|
||||||
|
left: 0
|
||||||
|
right: 0
|
||||||
|
bottom: 0
|
||||||
|
z-index: 9999
|
||||||
|
.modal-container
|
||||||
|
height: 100%
|
||||||
|
overflow: auto
|
||||||
|
width: 100%
|
||||||
|
.modal-header
|
||||||
|
display: flex
|
||||||
|
width: 100%
|
||||||
|
.modal-title
|
||||||
|
margin-right: auto
|
||||||
|
.modal-controls
|
||||||
|
flex: 0 1 auto
|
||||||
|
button
|
||||||
|
cursor: pointer
|
||||||
|
</style>
|
|
@ -7,8 +7,9 @@ import { injectStylesheet } from 'src/utilities/dom'
|
||||||
import { storage } from './utilities/fetch'
|
import { storage } from './utilities/fetch'
|
||||||
import { useRouteStore } from 'src/routes'
|
import { useRouteStore } from 'src/routes'
|
||||||
|
|
||||||
import type { Link, RoutedWindow, WarningModal } from '@goldenwere/mackenzii-types'
|
import type { RoutedWindow, WarningModal } from '@goldenwere/mackenzii-types'
|
||||||
|
|
||||||
|
import ContentModal from 'src/components/shared/content-modal.vue'
|
||||||
import HeaderLink from 'src/components/shared/header-link.vue'
|
import HeaderLink from 'src/components/shared/header-link.vue'
|
||||||
import ThemePicker from 'src/components/shared/theme-picker.vue'
|
import ThemePicker from 'src/components/shared/theme-picker.vue'
|
||||||
import WarningPrompt from 'src/components/shared/warning-prompt.vue'
|
import WarningPrompt from 'src/components/shared/warning-prompt.vue'
|
||||||
|
@ -182,6 +183,7 @@ onMounted(async () => {
|
||||||
:warning='warning'
|
:warning='warning'
|
||||||
@acknowledged='onAcknowledgedWarning()'
|
@acknowledged='onAcknowledgedWarning()'
|
||||||
)
|
)
|
||||||
|
ContentModal
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped lang="sass">
|
<style scoped lang="sass">
|
||||||
|
|
14
projects/frontend/src/modal.ts
Normal file
14
projects/frontend/src/modal.ts
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
import { defineStore } from 'pinia'
|
||||||
|
|
||||||
|
export const useModalStore = defineStore('modalStore', {
|
||||||
|
state: () => ({
|
||||||
|
content: '',
|
||||||
|
isOpen: false,
|
||||||
|
title: '',
|
||||||
|
}),
|
||||||
|
})
|
||||||
|
|
||||||
|
export type ModalStoreDefinition = Omit<
|
||||||
|
ReturnType<typeof useModalStore>,
|
||||||
|
keyof ReturnType<typeof defineStore>
|
||||||
|
>
|
|
@ -1,6 +1,11 @@
|
||||||
@import './mixins.scss'
|
@import './mixins.scss'
|
||||||
@import './tag.sass'
|
@import './tag.sass'
|
||||||
|
|
||||||
|
.modal-outlet
|
||||||
|
.embed
|
||||||
|
img
|
||||||
|
cursor: default
|
||||||
|
|
||||||
.embed
|
.embed
|
||||||
video,
|
video,
|
||||||
iframe,
|
iframe,
|
||||||
|
|
Loading…
Add table
Reference in a new issue