import { GraphModel, h, DiamondNode, DiamondNodeModel } from "@logicflow/core";
import { ColorEnum, NodeStateEnum } from "../types/enums";

class JoinModel extends DiamondNodeModel {
  constructor(data: any, graphModel: GraphModel) {
    super(data, graphModel);
  }

  setAttributes(): void {
    this.text.value = "";
    this.text.draggable = false;
    this.text.editable = false;

    const baseSize = 48;
    if (this.properties._width) {
      this.rx = this.properties._width / 2;
      this.ry = this.properties._width / 2;
    } else if (this.properties._height) {
      this.rx = this.properties._height / 2;
      this.ry = this.properties._height / 2;
    } else {
      this.rx = baseSize / 2;
      this.ry = baseSize / 2;
    }

    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 = ColorEnum.primaryColor;
      style.fill = `${ColorEnum.primaryColor}10`;
    }

    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 JoinView extends DiamondNode {
  private getJoinIcon() {
    const { model } = this.props;
    const { x, y } = model;
    const style = model.getNodeStyle();
    const iconSize = 16;

    return h("circle", {
      cx: x,
      cy: y,
      r: iconSize / 2,
      fill: style.stroke,
      stroke: "none"
    });
  }

  getResizeShape() {
    const { model } = this.props;
    const { x, y, width, height } = model;
    const style = model.getNodeStyle();
    return h("g", {}, [
      h("path", {
        ...style,
        d: `M ${x} ${y - height/2} L ${x + width/2} ${y} L ${x} ${y + height/2} L ${x - width/2} ${y} Z`
      }),
      this.getJoinIcon()
    ]);
  }

  getShape() {
    return this.getResizeShape();
  }
}

export default {
  type: "join",
  view: JoinView,
  model: JoinModel,
};
