FoundKey/packages/client/src/components/global/spacer.vue

93 lines
1.7 KiB
Vue
Raw Normal View History

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>
<script lang="ts">
2021-12-03 04:52:57 +00:00
import { defineComponent, inject, onMounted, onUnmounted, ref } from 'vue';
2021-10-14 11:55:59 +00:00
export default defineComponent({
props: {
contentMax: {
type: Number,
required: false,
default: null,
2021-11-28 11:07:37 +00:00
},
marginMin: {
type: Number,
required: false,
default: 12,
},
marginMax: {
type: Number,
required: false,
2021-12-03 07:07:50 +00:00
default: 24,
2021-11-28 11:07:37 +00:00
},
2021-10-14 11:55:59 +00:00
},
setup(props, context) {
let ro: ResizeObserver;
2021-11-28 11:07:37 +00:00
const root = ref<HTMLElement>();
const content = ref<HTMLElement>();
2021-10-14 11:55:59 +00:00
const margin = ref(0);
2021-12-03 04:52:57 +00:00
const shouldSpacerMin = inject('shouldSpacerMin', false);
2021-10-14 11:55:59 +00:00
const adjust = (rect: { width: number; height: number; }) => {
2021-12-03 04:52:57 +00:00
if (shouldSpacerMin) {
margin.value = props.marginMin;
return;
}
2022-01-04 06:36:14 +00:00
if (rect.width > props.contentMax || (rect.width > 360 && window.innerWidth > 400)) {
2021-11-28 11:07:37 +00:00
margin.value = props.marginMax;
2021-10-14 11:55:59 +00:00
} else {
2021-11-28 11:07:37 +00:00
margin.value = props.marginMin;
2021-10-14 11:55:59 +00:00
}
};
onMounted(() => {
ro = new ResizeObserver((entries) => {
2021-10-16 10:18:46 +00:00
/* iOS
2021-10-14 11:55:59 +00:00
adjust({
width: entries[0].borderBoxSize[0].inlineSize,
height: entries[0].borderBoxSize[0].blockSize,
});
2021-10-16 10:18:46 +00:00
*/
adjust({
2021-11-28 11:07:37 +00:00
width: root.value!.offsetWidth,
height: root.value!.offsetHeight,
2021-10-16 10:18:46 +00:00
});
2021-10-14 11:55:59 +00:00
});
2021-11-28 11:07:37 +00:00
ro.observe(root.value!);
2021-10-14 11:55:59 +00:00
if (props.contentMax) {
2021-11-28 11:07:37 +00:00
content.value!.style.maxWidth = `${props.contentMax}px`;
2021-10-14 11:55:59 +00: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>