2021-10-14 11:55:59 +00:00
|
|
|
<template>
|
|
|
|
<div ref="root" :class="$style.root" :style="{ padding: margin + 'px' }">
|
|
|
|
<div ref="content" :class="$style.content">
|
|
|
|
<slot></slot>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-06-22 07:29:31 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { inject, onMounted, onUnmounted, ref } from 'vue';
|
2022-02-11 13:16:20 +00:00
|
|
|
import { deviceKind } from '@/scripts/device-kind';
|
2021-10-14 11:55:59 +00:00
|
|
|
|
2022-06-22 07:29:31 +00:00
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
contentMax?: number | null;
|
|
|
|
marginMin?: number;
|
|
|
|
marginMax?: number;
|
|
|
|
}>(), {
|
|
|
|
contentMax: null,
|
|
|
|
marginMin: 12,
|
|
|
|
marginMax: 24,
|
|
|
|
});
|
2021-10-14 11:55:59 +00:00
|
|
|
|
2022-06-22 07:29:31 +00:00
|
|
|
let ro: ResizeObserver;
|
|
|
|
let root = $ref<HTMLElement>();
|
|
|
|
let content = $ref<HTMLElement>();
|
|
|
|
let margin = $ref(0);
|
|
|
|
const shouldSpacerMin = inject('shouldSpacerMin', false);
|
2021-12-03 04:52:57 +00:00
|
|
|
|
2022-06-22 07:29:31 +00:00
|
|
|
const adjust = (rect: { width: number; height: number; }) => {
|
|
|
|
if (shouldSpacerMin || deviceKind === 'smartphone') {
|
|
|
|
margin = props.marginMin;
|
|
|
|
return;
|
|
|
|
}
|
2021-10-14 11:55:59 +00:00
|
|
|
|
2022-06-22 07:29:31 +00:00
|
|
|
if (rect.width > (props.contentMax ?? 0) || (rect.width > 360 && window.innerWidth > 400)) {
|
|
|
|
margin = props.marginMax;
|
|
|
|
} else {
|
|
|
|
margin = props.marginMin;
|
|
|
|
}
|
|
|
|
};
|
2021-10-14 11:55:59 +00:00
|
|
|
|
2022-06-22 07:29:31 +00:00
|
|
|
onMounted(() => {
|
|
|
|
ro = new ResizeObserver((entries) => {
|
|
|
|
/* iOSが対応していない
|
|
|
|
adjust({
|
|
|
|
width: entries[0].borderBoxSize[0].inlineSize,
|
|
|
|
height: entries[0].borderBoxSize[0].blockSize,
|
2021-10-14 11:55:59 +00:00
|
|
|
});
|
2022-06-22 07:29:31 +00:00
|
|
|
*/
|
|
|
|
adjust({
|
|
|
|
width: root!.offsetWidth,
|
|
|
|
height: root!.offsetHeight,
|
2021-10-14 11:55:59 +00:00
|
|
|
});
|
2022-06-22 07:29:31 +00:00
|
|
|
});
|
|
|
|
ro.observe(root!);
|
|
|
|
|
|
|
|
if (props.contentMax) {
|
|
|
|
content!.style.maxWidth = `${props.contentMax}px`;
|
|
|
|
}
|
|
|
|
});
|
2021-10-14 11:55:59 +00:00
|
|
|
|
2022-06-22 07:29:31 +00:00
|
|
|
onUnmounted(() => {
|
|
|
|
ro.disconnect();
|
2021-10-14 11:55:59 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
</style>
|