material-editor/src/components/MaterialView.vue

84 lines
2.3 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" :name="matName" :textureSrcList="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">
2025-05-30 10:44:53 +08:00
import { onBeforeUnmount, 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-05-09 19:29:09 +08:00
import { FromDeflateBase64 } from '../helpers/helper.material';
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();
2025-05-30 10:44:53 +08:00
const textureSrc = ref<string[]>(Array.from(config.textureSrc));
const matName = ref<string>();
2025-04-10 16:37:20 +08:00
// 禁用右键菜单
document.addEventListener('contextmenu', (e) => e.preventDefault());
2025-05-09 19:29:09 +08:00
onMounted(async () => {
2025-04-14 16:37:17 +08:00
scene.Initial(container.value);
2025-05-09 19:29:09 +08:00
await HandleUpdateConfig();
eventbus.Subscribe('submit', HandleUpload);
eventbus.Subscribe('update-texture', HandleChangeTexture);
2025-05-09 19:29:09 +08:00
eventbus.Subscribe('update-config', HandleUpdateConfig)
});
onBeforeUnmount(() => {
eventbus.Unsubscribe('submit', HandleUpload);
eventbus.Unsubscribe('update-texture', HandleChangeTexture);
scene.Dispose();
2025-04-14 16:37:17 +08:00
});
function HandleUpload() {
adjusterRef.value.Upload();
}
function HandleChangeTexture() {
2025-05-30 10:44:53 +08:00
textureSrc.value = Array.from(config.textureSrc);
}
2025-05-09 19:29:09 +08:00
async function HandleUpdateConfig() {
if (config.updateModel) {
matName.value = config.updateModel.name;
const json = FromDeflateBase64(config.updateModel.file);
2025-05-09 19:29:09 +08:00
await scene.ImportMaterialAsync(json);
}
2025-05-30 10:44:53 +08:00
textureSrc.value = Array.from(config.textureSrc);
2025-05-09 19:29:09 +08:00
}
2025-04-14 16:37:17 +08:00
</script>
<style scoped lang="scss">
2025-04-14 16:37:17 +08:00
.material-view
{
2025-05-30 11:30:03 +08:00
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>