dataflow-rs 2.1.5

A lightweight rules engine for building IFTTT-style automation and data processing pipelines in Rust. Define rules with JSONLogic conditions, execute actions, and chain workflows.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { memo } from 'react';
import { Handle, Position, type NodeProps } from '@xyflow/react';
import { SkipForward } from 'lucide-react';

export const FlowSkipNode = memo(function FlowSkipNode({ data: _data }: NodeProps) {
  return (
    <div className="df-flow-skip-node">
      <Handle type="target" position={Position.Top} className="df-flow-handle" />
      <SkipForward size={14} />
      <span>Skip</span>
      <Handle type="source" position={Position.Bottom} className="df-flow-handle" />
    </div>
  );
});