chore(core): lint

This commit is contained in:
braks
2022-10-10 21:33:44 +02:00
committed by Braks
parent 78f9ee1cb7
commit ef3111bde0
2 changed files with 4 additions and 17 deletions
@@ -5,7 +5,7 @@ import type { GraphNode, HandleConnectable, NodeComponent, SnapGrid, XYZPosition
import { NodeId, NodeRef } from '../../context'
import { getConnectedEdges, getXYZPos, handleNodeClick } from '../../utils'
const { id, type, name, draggable, selectable, connectable, snapGrid, ...props } = defineProps<{
const { id, type, name, draggable, selectable, connectable, ...props } = defineProps<{
id: string
draggable: boolean
selectable: boolean
@@ -20,9 +20,7 @@ const { id, type, name, draggable, selectable, connectable, snapGrid, ...props }
provide(NodeId, id)
const {
nodeExtent,
edges,
viewport,
noPanClassName,
selectNodesOnDrag,
nodesSelectionActive,
@@ -1,27 +1,16 @@
<script lang="ts" setup>
import { NodeWrapper } from '../../components'
import type { GraphNode, NodeComponent, SnapGrid } from '../../types'
import type { GraphNode, HandleConnectable, NodeComponent } from '../../types'
import { useVueFlow } from '../../composables'
import { Slots } from '../../context'
const slots = inject(Slots)
const {
nodesDraggable,
elementsSelectable,
nodesConnectable,
noPanClassName,
snapToGrid,
snapGrid,
getNode,
getNodes,
getNodeTypes,
updateNodeDimensions,
} = $(useVueFlow())
const { nodesDraggable, elementsSelectable, nodesConnectable, getNodes, getNodeTypes, updateNodeDimensions } = $(useVueFlow())
const draggable = (d?: boolean) => (typeof d === 'undefined' ? nodesDraggable : d)
const selectable = (s?: boolean) => (typeof s === 'undefined' ? elementsSelectable : s)
const connectable = (c?: boolean) => (typeof c === 'undefined' ? nodesConnectable : c)
const connectable = (c?: HandleConnectable) => (typeof c === 'undefined' ? nodesConnectable : c)
const resizeObserver = ref<ResizeObserver>()