move handleEdgeSelection into store, fix hooks
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
import { getContext, type Snippet } from 'svelte';
|
||||
|
||||
import { EdgeLabelRenderer } from '$lib/components/EdgeLabelRenderer';
|
||||
import { useHandleEdgeSelect } from '$lib/hooks/useHandleEdgeSelect';
|
||||
import { useStore } from '$lib/store';
|
||||
|
||||
let {
|
||||
style,
|
||||
@@ -16,7 +16,7 @@
|
||||
children?: Snippet;
|
||||
} = $props();
|
||||
|
||||
const handleEdgeSelect = useHandleEdgeSelect();
|
||||
const store = useStore();
|
||||
|
||||
const id = getContext<string>('svelteflow__edge_id');
|
||||
</script>
|
||||
@@ -30,7 +30,7 @@
|
||||
tabindex="-1"
|
||||
onkeyup={() => {}}
|
||||
onclick={() => {
|
||||
if (id) handleEdgeSelect(id);
|
||||
if (id) store.handleEdgeSelection(id);
|
||||
}}
|
||||
>
|
||||
{@render children?.()}
|
||||
|
||||
@@ -5,7 +5,6 @@
|
||||
import { getMarkerId } from '@xyflow/system';
|
||||
|
||||
import { BezierEdgeInternal } from '$lib/components/edges';
|
||||
import { useHandleEdgeSelect } from '$lib/hooks/useHandleEdgeSelect';
|
||||
|
||||
import type { EdgeLayouted, Edge, EdgeEvents } from '$lib/types';
|
||||
import type { SvelteFlowStore } from '$lib/store/types';
|
||||
@@ -61,13 +60,11 @@
|
||||
markerEnd ? `url('#${getMarkerId(markerEnd, store.flowId)}')` : undefined
|
||||
);
|
||||
|
||||
const handleEdgeSelect = useHandleEdgeSelect();
|
||||
|
||||
function onclick(event: MouseEvent | TouchEvent) {
|
||||
const edge = store.edgeLookup.get(id);
|
||||
|
||||
if (edge) {
|
||||
handleEdgeSelect(id);
|
||||
store.handleEdgeSelection(id);
|
||||
onedgeclick?.({ event, edge });
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,30 +0,0 @@
|
||||
import { errorMessages } from '@xyflow/system';
|
||||
|
||||
import { useStore } from '$lib/store';
|
||||
|
||||
export function useHandleEdgeSelect() {
|
||||
const store = useStore();
|
||||
|
||||
return (id: string) => {
|
||||
const edge = store.edgeLookup.get(id);
|
||||
|
||||
if (!edge) {
|
||||
console.warn('012', errorMessages['error012'](id));
|
||||
return;
|
||||
}
|
||||
|
||||
const selectable =
|
||||
edge.selectable || (store.elementsSelectable && typeof edge.selectable === 'undefined');
|
||||
|
||||
if (selectable) {
|
||||
store.selectionRect = null;
|
||||
store.selectionRectMode = null;
|
||||
|
||||
if (!edge.selected) {
|
||||
store.addSelectedEdges([id]);
|
||||
} else if (edge.selected && store.multiselectionKeyPressed) {
|
||||
store.unselectNodesAndEdges({ nodes: [], edges: [edge] });
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
+10
-7
@@ -1,15 +1,16 @@
|
||||
import { useStore } from '$lib/store';
|
||||
import type { Readable } from 'svelte/store';
|
||||
|
||||
/**
|
||||
* Hook for seeing if nodes are initialized
|
||||
* @returns - nodesInitialized Writable
|
||||
*/
|
||||
export function useNodesInitialized() {
|
||||
const { nodesInitialized } = useStore();
|
||||
const { nodesInitialized } = $derived(useStore());
|
||||
return {
|
||||
subscribe: nodesInitialized.subscribe
|
||||
} as Readable<boolean>;
|
||||
get current() {
|
||||
return nodesInitialized;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -17,8 +18,10 @@ export function useNodesInitialized() {
|
||||
* @returns - initialized Writable
|
||||
*/
|
||||
export function useInitialized() {
|
||||
const { initialized } = useStore();
|
||||
const { initialized } = $derived(useStore());
|
||||
return {
|
||||
subscribe: initialized.subscribe
|
||||
} as Readable<boolean>;
|
||||
get current() {
|
||||
return initialized;
|
||||
}
|
||||
};
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
import { useStore } from '$lib/store';
|
||||
import type { InternalNode } from '$lib/types';
|
||||
|
||||
/**
|
||||
* Hook to get an internal node by id.
|
||||
*
|
||||
* @public
|
||||
* @param id - the node id
|
||||
* @returns a readable with an internal node or undefined
|
||||
*/
|
||||
export function useInternalNode(id: string): { current: InternalNode | undefined } {
|
||||
const { nodeLookup, nodes } = $derived(useStore());
|
||||
|
||||
const node = $derived.by(() => {
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
|
||||
nodes;
|
||||
return nodeLookup.get(id);
|
||||
});
|
||||
|
||||
return {
|
||||
get current() {
|
||||
return node;
|
||||
}
|
||||
};
|
||||
}
|
||||
@@ -1,17 +0,0 @@
|
||||
import { derived, type Readable } from 'svelte/store';
|
||||
|
||||
import { useStore } from '$lib/store';
|
||||
import type { InternalNode } from '$lib/types';
|
||||
|
||||
/**
|
||||
* Hook to get an internal node by id.
|
||||
*
|
||||
* @public
|
||||
* @param id - the node id
|
||||
* @returns a readable with an internal node or undefined
|
||||
*/
|
||||
export function useInternalNode(id: string): Readable<InternalNode | undefined> {
|
||||
const { nodeLookup, nodes } = useStore();
|
||||
|
||||
return derived([nodeLookup, nodes], ([nodeLookup]) => nodeLookup.get(id));
|
||||
}
|
||||
@@ -37,8 +37,8 @@ export * from '$lib/hooks/useConnection.svelte';
|
||||
export * from '$lib/hooks/useNodesEdgesViewport.svelte';
|
||||
export * from '$lib/hooks/useHandleConnections.svelte';
|
||||
export * from '$lib/hooks/useNodesData.svelte';
|
||||
export * from '$lib/hooks/useInternalNode';
|
||||
export { useInitialized, useNodesInitialized } from '$lib/hooks/useInitialized';
|
||||
export * from '$lib/hooks/useInternalNode.svelte';
|
||||
export { useInitialized, useNodesInitialized } from '$lib/hooks/useInitialized.svelte';
|
||||
|
||||
// types
|
||||
export type {
|
||||
|
||||
@@ -309,6 +309,29 @@ export function createStore(signals: StoreSignals): SvelteFlowStore {
|
||||
}
|
||||
}
|
||||
|
||||
function handleEdgeSelection(id: string) {
|
||||
const edge = store.edgeLookup.get(id);
|
||||
|
||||
if (!edge) {
|
||||
console.warn('012', errorMessages['error012'](id));
|
||||
return;
|
||||
}
|
||||
|
||||
const selectable =
|
||||
edge.selectable || (store.elementsSelectable && typeof edge.selectable === 'undefined');
|
||||
|
||||
if (selectable) {
|
||||
store.selectionRect = null;
|
||||
store.selectionRectMode = null;
|
||||
|
||||
if (!edge.selected) {
|
||||
addSelectedEdges([id]);
|
||||
} else if (edge.selected && store.multiselectionKeyPressed) {
|
||||
unselectNodesAndEdges({ nodes: [], edges: [edge] });
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function panBy(delta: XYPosition) {
|
||||
return panBySystem({
|
||||
delta,
|
||||
@@ -354,6 +377,7 @@ export function createStore(signals: StoreSignals): SvelteFlowStore {
|
||||
addSelectedNodes,
|
||||
addSelectedEdges,
|
||||
handleNodeSelection,
|
||||
handleEdgeSelection,
|
||||
panBy,
|
||||
updateConnection,
|
||||
cancelConnection,
|
||||
|
||||
@@ -30,6 +30,7 @@ export type SvelteFlowStoreActions = {
|
||||
addSelectedNodes: (ids: string[]) => void;
|
||||
addSelectedEdges: (ids: string[]) => void;
|
||||
handleNodeSelection: (id: string) => void;
|
||||
handleEdgeSelection: (id: string) => void;
|
||||
panBy: (delta: XYPosition) => Promise<boolean>;
|
||||
updateConnection: UpdateConnection;
|
||||
cancelConnection: () => void;
|
||||
|
||||
Reference in New Issue
Block a user