2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2023-05-29 08:13:45 +00:00
|
|
|
<MkModal ref="modal" :preferType="'dialog'" @click="onBgClick" @closed="$emit('closed')">
|
2023-05-09 09:47:06 +00:00
|
|
|
<div ref="rootEl" :class="$style.root" :style="{ width: `${width}px`, height: `min(${height}px, 100%)` }" @keydown="onKeydown">
|
|
|
|
<div ref="headerEl" :class="$style.header">
|
|
|
|
<button v-if="withOkButton" :class="$style.headerButton" class="_button" @click="$emit('close')"><i class="ti ti-x"></i></button>
|
|
|
|
<span :class="$style.title">
|
2020-01-29 19:37:25 +00:00
|
|
|
<slot name="header"></slot>
|
|
|
|
</span>
|
2023-05-09 09:47:06 +00:00
|
|
|
<button v-if="!withOkButton" :class="$style.headerButton" class="_button" data-cy-modal-window-close @click="$emit('close')"><i class="ti ti-x"></i></button>
|
|
|
|
<button v-if="withOkButton" :class="$style.headerButton" class="_button" :disabled="okButtonDisabled" @click="$emit('ok')"><i class="ti ti-check"></i></button>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
2023-05-09 09:47:06 +00:00
|
|
|
<div :class="$style.body">
|
2022-06-11 06:45:44 +00:00
|
|
|
<slot :width="bodyWidth" :height="bodyHeight"></slot>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-10-17 11:12:00 +00:00
|
|
|
</MkModal>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
2022-06-11 06:45:44 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { onMounted, onUnmounted } from 'vue';
|
2022-09-06 09:21:49 +00:00
|
|
|
import MkModal from './MkModal.vue';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-06-11 06:45:44 +00:00
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
withOkButton: boolean;
|
|
|
|
okButtonDisabled: boolean;
|
|
|
|
width: number;
|
2023-05-09 04:57:43 +00:00
|
|
|
height: number;
|
2022-06-11 06:45:44 +00:00
|
|
|
}>(), {
|
|
|
|
withOkButton: false,
|
|
|
|
okButtonDisabled: false,
|
|
|
|
width: 400,
|
2023-05-09 04:57:43 +00:00
|
|
|
height: 500,
|
2022-06-11 06:45:44 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const emit = defineEmits<{
|
|
|
|
(event: 'click'): void;
|
|
|
|
(event: 'close'): void;
|
|
|
|
(event: 'closed'): void;
|
|
|
|
(event: 'ok'): void;
|
|
|
|
}>();
|
|
|
|
|
2023-01-03 04:37:32 +00:00
|
|
|
let modal = $shallowRef<InstanceType<typeof MkModal>>();
|
2023-01-03 01:12:37 +00:00
|
|
|
let rootEl = $shallowRef<HTMLElement>();
|
|
|
|
let headerEl = $shallowRef<HTMLElement>();
|
2022-06-11 06:45:44 +00:00
|
|
|
let bodyWidth = $ref(0);
|
|
|
|
let bodyHeight = $ref(0);
|
|
|
|
|
|
|
|
const close = () => {
|
|
|
|
modal.close();
|
|
|
|
};
|
|
|
|
|
|
|
|
const onBgClick = () => {
|
|
|
|
emit('click');
|
|
|
|
};
|
|
|
|
|
|
|
|
const onKeydown = (evt) => {
|
|
|
|
if (evt.which === 27) { // Esc
|
|
|
|
evt.preventDefault();
|
|
|
|
evt.stopPropagation();
|
|
|
|
close();
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2022-06-11 06:45:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const ro = new ResizeObserver((entries, observer) => {
|
|
|
|
bodyWidth = rootEl.offsetWidth;
|
|
|
|
bodyHeight = rootEl.offsetHeight - headerEl.offsetHeight;
|
|
|
|
});
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
bodyWidth = rootEl.offsetWidth;
|
|
|
|
bodyHeight = rootEl.offsetHeight - headerEl.offsetHeight;
|
|
|
|
ro.observe(rootEl);
|
|
|
|
});
|
|
|
|
|
|
|
|
onUnmounted(() => {
|
|
|
|
ro.disconnect();
|
|
|
|
});
|
|
|
|
|
|
|
|
defineExpose({
|
|
|
|
close,
|
2020-01-29 19:37:25 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2023-05-09 09:47:06 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2023-01-14 12:04:30 +00:00
|
|
|
margin: auto;
|
2021-03-02 13:57:16 +00:00
|
|
|
overflow: hidden;
|
2020-01-29 19:37:25 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2020-10-17 11:12:00 +00:00
|
|
|
contain: content;
|
2022-06-26 10:41:21 +00:00
|
|
|
border-radius: var(--radius);
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2021-04-10 03:40:50 +00:00
|
|
|
--root-margin: 24px;
|
2020-10-17 11:12:00 +00:00
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
2021-04-10 03:40:50 +00:00
|
|
|
--root-margin: 16px;
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-05-09 09:47:06 +00:00
|
|
|
--headerHeight: 46px;
|
|
|
|
--headerHeightNarrow: 42px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header {
|
|
|
|
display: flex;
|
|
|
|
flex-shrink: 0;
|
|
|
|
background: var(--windowHeader);
|
|
|
|
-webkit-backdrop-filter: var(--blur, blur(15px));
|
|
|
|
backdrop-filter: var(--blur, blur(15px));
|
|
|
|
}
|
|
|
|
|
|
|
|
.headerButton {
|
|
|
|
height: var(--headerHeight);
|
|
|
|
width: var(--headerHeight);
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
height: var(--headerHeightNarrow);
|
|
|
|
width: var(--headerHeightNarrow);
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2023-05-09 09:47:06 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-05-09 09:47:06 +00:00
|
|
|
.title {
|
|
|
|
flex: 1;
|
|
|
|
line-height: var(--headerHeight);
|
|
|
|
padding-left: 32px;
|
|
|
|
font-weight: bold;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
line-height: var(--headerHeightNarrow);
|
|
|
|
padding-left: 16px;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
}
|
2023-05-09 09:47:06 +00:00
|
|
|
|
|
|
|
.headerButton + .title {
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.body {
|
|
|
|
flex: 1;
|
|
|
|
overflow: auto;
|
|
|
|
background: var(--panel);
|
|
|
|
container-type: size;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
</style>
|