import { GraphModel, h, RectNode, RectNodeModel } from "@logicflow/core";
import { ColorEnum, NodeSizeEnum, NodeStateEnum } from "../types/enums";

class CustomModel extends RectNodeModel {
  constructor(data: any, graphModel: GraphModel) {
    super(data, graphModel);
  }

  setAttributes(): void {
    if((this.text && this.text.value == "") || !this.text) {
      this.text.value = "自定义";
    }

    if (this.properties._width) {
      this.width = this.properties._width;
    } else {
      this.width = NodeSizeEnum.width;
    }

    if (this.properties._height) {
      this.height = this.properties._height;
    } else {
      this.height = NodeSizeEnum.height;
    }

    if (this.properties._radius !== undefined) {
      this.radius = this.properties._radius;
    } else {
      this.radius = 4;
    }

    if (this.properties._stroke) {
      this.properties.stroke = this.properties._stroke;
    }
    if (this.properties._fill) {
      this.properties.fill = this.properties._fill;
    }
    if (this.properties._strokeWidth) {
      this.properties.strokeWidth = this.properties._strokeWidth;
    }
    if (this.properties._opacity) {
      this.properties.opacity = this.properties._opacity;
    }
  }

  getNodeStyle() {
    const style = super.getNodeStyle();
    const state = this.properties.state;

    if(state === NodeStateEnum.history) {
      style.stroke = ColorEnum.historyColor;
      style.fill = `${ColorEnum.historyColor}10`;
    } else if(state === NodeStateEnum.active) {
      style.stroke = ColorEnum.activeColor;
      style.fill = `${ColorEnum.activeColor}10`;
    } else if(state === NodeStateEnum.error) {
      style.stroke = ColorEnum.errorColor;
      style.fill = `${ColorEnum.errorColor}10`;
    } else {
      style.stroke = '#909399';
      style.fill = '#f5f5f5';
    }

    if (this.properties._stroke) {
      style.stroke = this.properties._stroke;
    }
    if (this.properties._fill) {
      style.fill = this.properties._fill;
    }
    if (this.properties._strokeWidth) {
      style.strokeWidth = this.properties._strokeWidth;
    }
    if (this.properties._opacity !== undefined) {
      style.opacity = this.properties._opacity;
    }

    return style;
  }
}

class CustomView extends RectNode {
  private getGearIcon() {
    const { model } = this.props;
    const { x, y, width } = model;
    const style = model.getNodeStyle();
    const iconSize = 16;
    const padding = 8;

    const centerX = x - width / 2 + padding + iconSize / 2;
    const centerY = y;
    const outerR = iconSize / 2;
    const innerR = iconSize / 3.5;
    const teeth = 6;

    let path = '';
    for (let i = 0; i < teeth * 2; i++) {
      const angle = (i * Math.PI) / teeth;
      const r = i % 2 === 0 ? outerR : innerR;
      const px = centerX + r * Math.cos(angle);
      const py = centerY + r * Math.sin(angle);
      path += (i === 0 ? 'M' : 'L') + px + ',' + py;
    }
    path += 'Z';

    return h("g", {}, [
      h("circle", {
        cx: centerX,
        cy: centerY,
        r: innerR * 0.6,
        fill: style.stroke,
        stroke: "none"
      }),
      h("path", {
        d: path,
        fill: "none",
        stroke: style.stroke,
        strokeWidth: 2
      })
    ]);
  }

  private getLeftBar() {
    const { model } = this.props;
    const { x, y, width, height } = model;
    const style = model.getNodeStyle();
    const barWidth = 3;

    return h("rect", {
      x: x - width / 2,
      y: y - height / 2,
      width: barWidth,
      height,
      rx: 1.5,
      ry: 1.5,
      fill: style.stroke,
      opacity: 0.7
    });
  }

  getResizeShape() {
    const { model } = this.props;
    const { x, y, width, height, radius } = model;
    const style = model.getNodeStyle();
    return h("g", {}, [
      h("rect", {
        ...style,
        x: x - width / 2,
        y: y - height / 2,
        rx: radius,
        ry: radius,
        width,
        height
      }),
      this.getLeftBar(),
      this.getGearIcon()
    ]);
  }

  getShape() {
    return this.getResizeShape();
  }
}

export default {
  type: "custom",
  view: CustomView,
  model: CustomModel,
};
