/* * This file is part of the kernelstudio package. * * (c) 2014-2026 zlin * * For the full copyright and license information, please view the LICENSE file * that was distributed with this source code. */ import type { GraphRect, GraphTaskElement } from '../graph'; import { generateKey } from '@/utils/strings'; import type { PlatformWithComponents } from './types'; export const createGraphTaskElementFromScenario = ( platform: PlatformWithComponents, rect?: GraphRect, ): GraphTaskElement => { let realRect = { width: 120, height: 80, x: 0, y: 0, ...rect || {} }; console.info('rect', rect); return { id: 0, key: generateKey(), type: 'scenario', template: platform.id, templateType: null, name: null, category: null, group: null, description: platform.description, order: 0, position: { x: realRect.x ?? 0, y: realRect.y ?? 0, }, width: realRect.width, height: realRect.height, inputs: null, outputs: null, parameters: [], variables: [], } as GraphTaskElement; };