forked from rancher/dashboard
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: port AppModal component to harvester source code
Signed-off-by: andy.lee <[email protected]>
- Loading branch information
Showing
3 changed files
with
172 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,170 @@ | ||
<script lang="ts"> | ||
import { defineComponent } from 'vue'; | ||
export default defineComponent({ | ||
name: 'AppModal', | ||
// emits: ['close'], | ||
inheritAttrs: false, | ||
props: { | ||
/** | ||
* If set to false, it will not be possible to close modal by clicking on | ||
* the background or by pressing Esc key. | ||
*/ | ||
clickToClose: { | ||
type: Boolean, | ||
default: true, | ||
}, | ||
/** | ||
* Width in pixels or percents (50, "50px", "50%"). | ||
* | ||
* Supported string values are <number>% and <number>px | ||
*/ | ||
width: { | ||
type: [Number, String], | ||
default: 600, | ||
validator(value) { | ||
if (typeof value === 'number') { | ||
return value > 0; | ||
} | ||
if (typeof value === 'string') { | ||
return /^(0*(?:[1-9][0-9]*|0)\.?\d*)+(px|%)$/.test(value); | ||
} | ||
return false; | ||
} | ||
}, | ||
/** | ||
* List of class that will be applied to the modal window | ||
*/ | ||
customClass: { | ||
type: String, | ||
default: '', | ||
}, | ||
/** | ||
* Style that will be applied to the modal window | ||
*/ | ||
styles: { | ||
type: String, | ||
default: '', | ||
}, | ||
/** | ||
* Name of the modal | ||
*/ | ||
name: { | ||
type: String, | ||
default: '', | ||
} | ||
}, | ||
computed: { | ||
modalWidth(): string { | ||
const uom = typeof (this.width) === 'number' ? 'px' : ''; | ||
return `${ this.width }${ uom }`; | ||
}, | ||
stylesPropToObj(): object { | ||
return this.styles.split(';') | ||
.map(line => line.trim().split(':')) | ||
.reduce((lines, [key, val]) => { | ||
return { | ||
...lines, | ||
[key]: val | ||
}; | ||
}, { }); | ||
}, | ||
modalStyles(): object { | ||
return { | ||
width: this.modalWidth, | ||
...this.stylesPropToObj, | ||
}; | ||
} | ||
}, | ||
mounted() { | ||
document.addEventListener('keydown', this.handleEscapeKey); | ||
}, | ||
beforeDestroy() { | ||
document.removeEventListener('keydown', this.handleEscapeKey); | ||
}, | ||
methods: { | ||
handleClickOutside(event: MouseEvent) { | ||
if ( | ||
this.clickToClose && | ||
this.$refs.modalRef && | ||
!(this.$refs.modalRef as HTMLElement).contains(event.target as Node) | ||
) { | ||
this.$emit('close'); | ||
} | ||
}, | ||
handleEscapeKey(event: KeyboardEvent) { | ||
if (this.clickToClose && event.key === 'Escape') { | ||
this.$emit('close'); | ||
} | ||
} | ||
} | ||
}); | ||
</script> | ||
|
||
<template> | ||
<mounting-portal | ||
mountTo="#__layout" | ||
name="source" | ||
append | ||
> | ||
<transition | ||
name="modal-fade" | ||
appear | ||
> | ||
<div | ||
class="modal-overlay" | ||
:data-modal="name" | ||
@click="handleClickOutside" | ||
> | ||
<div | ||
v-bind="$attrs" | ||
ref="modalRef" | ||
:class="customClass" | ||
class="modal-container" | ||
:style="modalStyles" | ||
@click.stop | ||
> | ||
<slot><!--Empty content--></slot> | ||
</div> | ||
</div> | ||
</transition> | ||
</mounting-portal> | ||
</template> | ||
|
||
<style lang="scss"> | ||
.modal-overlay { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
width: 100vw; | ||
height: 100vh; | ||
background-color: var(--overlay-bg); | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
z-index: 20; | ||
.modal-container { | ||
background-color: var(--modal-bg); | ||
border-radius: var(--border-radius); | ||
max-height: 95vh; | ||
overflow: auto; | ||
border: 2px solid var(--modal-border); | ||
} | ||
} | ||
.modal-fade-enter-active, | ||
.modal-fade-leave-active { | ||
transition: opacity 200ms; | ||
} | ||
.modal-fade-enter, | ||
.modal-fade-leave-to { | ||
opacity: 0; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters