material-editor/src/components/MaterialView.vue

59 lines
1.6 KiB
Vue
Raw Normal View History

2025-04-10 16:37:20 +08:00
<template>
2025-04-14 16:37:17 +08:00
<CfFlex class="material-view">
<div ref="container" class="material-view-container" />
<MaterialAdjuster ref="adjuster" class="material-view-sider" :texture-src="textureSrc" @cancel="config.cancelCallback" @submit="config.submitCallback" />
2025-04-14 16:37:17 +08:00
</CfFlex>
2025-04-10 16:37:20 +08:00
</template>
<script setup lang="ts">
import { onMounted, ref, useTemplateRef } from 'vue';
2025-04-14 16:37:17 +08:00
import MaterialAdjuster from './MaterialAdjuster.vue';
import { useScene } from '../stores/sceneStore';
import CfFlex from './CfFlex.vue';
import { GetConfig } from '../lib/libOutputConfig';
import { useEvent } from '../stores/eventStore';
2025-04-10 16:37:20 +08:00
2025-04-14 16:37:17 +08:00
const scene = useScene();
const eventbus = useEvent();
const container = useTemplateRef('container');
const adjusterRef = useTemplateRef('adjuster');
const config = GetConfig();
const textureSrc = ref(config.textureSrc);
2025-04-10 16:37:20 +08:00
// 禁用右键菜单
document.addEventListener('contextmenu', (e) => e.preventDefault());
2025-04-10 16:37:20 +08:00
onMounted(() => {
2025-04-14 16:37:17 +08:00
scene.Initial(container.value);
eventbus.Subscribe('submit', () => adjusterRef.value.Upload());
eventbus.Subscribe('update-texture', () => {
textureSrc.value = config.textureSrc
});
2025-04-14 16:37:17 +08:00
});
</script>
<style scoped lang="scss">
2025-04-14 16:37:17 +08:00
.material-view
{
width: 100%;
height: 100%;
2025-04-14 16:37:17 +08:00
box-sizing: border-box;
padding: 0;
margin: 0;
overflow: hidden;
&-container {
flex: 3 1;
height: 100%;
box-sizing: border-box;
overflow: hidden;
}
&-sider {
flex: 1 1;
overflow-y: auto;
height: 100%;
box-sizing: border-box;
}
2025-04-10 16:37:20 +08:00
}
2025-04-14 16:37:17 +08:00
</style>