mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-07 00:20:07 +00:00
194 lines
5.2 KiB
Vue
194 lines
5.2 KiB
Vue
<template>
|
|
<div class="relative w-full h-full">
|
|
<Load3DScene
|
|
:node="node"
|
|
:type="type"
|
|
:backgroundColor="backgroundColor"
|
|
:showGrid="showGrid"
|
|
:lightIntensity="lightIntensity"
|
|
:fov="fov"
|
|
:cameraType="cameraType"
|
|
:showPreview="showPreview"
|
|
:backgroundImage="backgroundImage"
|
|
:upDirection="upDirection"
|
|
:materialMode="materialMode"
|
|
@materialModeChange="listenMaterialModeChange"
|
|
@backgroundColorChange="listenBackgroundColorChange"
|
|
@lightIntensityChange="listenLightIntensityChange"
|
|
@fovChange="listenFOVChange"
|
|
@cameraTypeChange="listenCameraTypeChange"
|
|
@showGridChange="listenShowGridChange"
|
|
@showPreviewChange="listenShowPreviewChange"
|
|
@backgroundImageChange="listenBackgroundImageChange"
|
|
@upDirectionChange="listenUpDirectionChange"
|
|
/>
|
|
<Load3DControls
|
|
:backgroundColor="backgroundColor"
|
|
:showGrid="showGrid"
|
|
:showPreview="showPreview"
|
|
:lightIntensity="lightIntensity"
|
|
:showLightIntensityButton="showLightIntensityButton"
|
|
:fov="fov"
|
|
:showFOVButton="showFOVButton"
|
|
:showPreviewButton="showPreviewButton"
|
|
:cameraType="cameraType"
|
|
:hasBackgroundImage="hasBackgroundImage"
|
|
:upDirection="upDirection"
|
|
:materialMode="materialMode"
|
|
:isAnimation="false"
|
|
@updateBackgroundImage="handleBackgroundImageUpdate"
|
|
@switchCamera="switchCamera"
|
|
@toggleGrid="toggleGrid"
|
|
@updateBackgroundColor="handleBackgroundColorChange"
|
|
@updateLightIntensity="handleUpdateLightIntensity"
|
|
@togglePreview="togglePreview"
|
|
@updateFOV="handleUpdateFOV"
|
|
@updateUpDirection="handleUpdateUpDirection"
|
|
@updateMaterialMode="handleUpdateMaterialMode"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { computed, ref } from 'vue'
|
|
|
|
import Load3DControls from '@/components/load3d/Load3DControls.vue'
|
|
import Load3DScene from '@/components/load3d/Load3DScene.vue'
|
|
import Load3dUtils from '@/extensions/core/load3d/Load3dUtils'
|
|
import {
|
|
CameraType,
|
|
MaterialMode,
|
|
UpDirection
|
|
} from '@/extensions/core/load3d/interfaces'
|
|
|
|
const props = defineProps<{
|
|
node: any
|
|
type: 'Load3D' | 'Preview3D'
|
|
}>()
|
|
|
|
const node = ref(props.node)
|
|
const backgroundColor = ref('#000000')
|
|
const showGrid = ref(true)
|
|
const showPreview = ref(false)
|
|
const lightIntensity = ref(5)
|
|
const showLightIntensityButton = ref(true)
|
|
const fov = ref(75)
|
|
const showFOVButton = ref(true)
|
|
const cameraType = ref<CameraType>('perspective')
|
|
const hasBackgroundImage = ref(false)
|
|
const backgroundImage = ref('')
|
|
const upDirection = ref<UpDirection>('original')
|
|
const materialMode = ref<MaterialMode>('original')
|
|
|
|
const showPreviewButton = computed(() => {
|
|
return !props.type.includes('Preview')
|
|
})
|
|
|
|
const switchCamera = () => {
|
|
cameraType.value =
|
|
cameraType.value === 'perspective' ? 'orthographic' : 'perspective'
|
|
|
|
showFOVButton.value = cameraType.value === 'perspective'
|
|
|
|
node.value.properties['Camera Type'] = cameraType.value
|
|
}
|
|
|
|
const togglePreview = (value: boolean) => {
|
|
showPreview.value = value
|
|
|
|
node.value.properties['Show Preview'] = showPreview.value
|
|
}
|
|
|
|
const toggleGrid = (value: boolean) => {
|
|
showGrid.value = value
|
|
|
|
node.value.properties['Show Grid'] = showGrid.value
|
|
}
|
|
|
|
const handleUpdateLightIntensity = (value: number) => {
|
|
lightIntensity.value = value
|
|
|
|
node.value.properties['Light Intensity'] = lightIntensity.value
|
|
}
|
|
|
|
const handleBackgroundImageUpdate = async (file: File | null) => {
|
|
if (!file) {
|
|
hasBackgroundImage.value = false
|
|
backgroundImage.value = ''
|
|
node.value.properties['Background Image'] = ''
|
|
return
|
|
}
|
|
|
|
backgroundImage.value = await Load3dUtils.uploadFile(file)
|
|
|
|
node.value.properties['Background Image'] = backgroundImage.value
|
|
}
|
|
|
|
const handleUpdateFOV = (value: number) => {
|
|
fov.value = value
|
|
|
|
node.value.properties['FOV'] = fov.value
|
|
}
|
|
|
|
const handleBackgroundColorChange = (value: string) => {
|
|
backgroundColor.value = value
|
|
|
|
node.value.properties['Background Color'] = value
|
|
}
|
|
|
|
const handleUpdateUpDirection = (value: UpDirection) => {
|
|
upDirection.value = value
|
|
|
|
node.value.properties['Up Direction'] = value
|
|
}
|
|
|
|
const handleUpdateMaterialMode = (value: MaterialMode) => {
|
|
materialMode.value = value
|
|
|
|
node.value.properties['Material Mode'] = value
|
|
}
|
|
|
|
const listenMaterialModeChange = (mode: MaterialMode) => {
|
|
materialMode.value = mode
|
|
|
|
showLightIntensityButton.value = mode === 'original'
|
|
}
|
|
|
|
const listenUpDirectionChange = (value: UpDirection) => {
|
|
upDirection.value = value
|
|
}
|
|
|
|
const listenBackgroundColorChange = (value: string) => {
|
|
backgroundColor.value = value
|
|
}
|
|
|
|
const listenLightIntensityChange = (value: number) => {
|
|
lightIntensity.value = value
|
|
}
|
|
|
|
const listenFOVChange = (value: number) => {
|
|
fov.value = value
|
|
}
|
|
|
|
const listenCameraTypeChange = (value: CameraType) => {
|
|
cameraType.value = value
|
|
showFOVButton.value = cameraType.value === 'perspective'
|
|
}
|
|
|
|
const listenShowGridChange = (value: boolean) => {
|
|
showGrid.value = value
|
|
}
|
|
|
|
const listenShowPreviewChange = (value: boolean) => {
|
|
showPreview.value = value
|
|
}
|
|
|
|
const listenBackgroundImageChange = (value: string) => {
|
|
backgroundImage.value = value
|
|
|
|
if (backgroundImage.value && backgroundImage.value !== '') {
|
|
hasBackgroundImage.value = true
|
|
}
|
|
}
|
|
</script>
|