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