| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- "use strict";
- var __extends = (this && this.__extends) || (function () {
- var extendStatics = function (d, b) {
- extendStatics = Object.setPrototypeOf ||
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
- return extendStatics(d, b);
- };
- return function (d, b) {
- extendStatics(d, b);
- function __() { this.constructor = d; }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- };
- })();
- var __assign = (this && this.__assign) || function () {
- __assign = Object.assign || function(t) {
- for (var s, i = 1, n = arguments.length; i < n; i++) {
- s = arguments[i];
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
- t[p] = s[p];
- }
- return t;
- };
- return __assign.apply(this, arguments);
- };
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.ExclusiveGatewayModel = exports.ExclusiveGatewayView = void 0;
- var core_1 = require("@logicflow/core");
- var getBpmnId_1 = require("../getBpmnId");
- var ExclusiveGatewayModel = /** @class */ (function (_super) {
- __extends(ExclusiveGatewayModel, _super);
- function ExclusiveGatewayModel(data, graphModel) {
- var _this = this;
- if (!data.id) {
- data.id = "Gateway_" + getBpmnId_1.getBpmnId();
- }
- if (!data.text) {
- data.text = '';
- }
- if (data.text && typeof data.text === 'string') {
- data.text = {
- value: data.text,
- x: data.x,
- y: data.y + 40,
- };
- }
- _this = _super.call(this, data, graphModel) || this;
- _this.points = [
- [25, 0],
- [50, 25],
- [25, 50],
- [0, 25],
- ];
- return _this;
- }
- ExclusiveGatewayModel.extendKey = 'ExclusiveGatewayModel';
- return ExclusiveGatewayModel;
- }(core_1.PolygonNodeModel));
- exports.ExclusiveGatewayModel = ExclusiveGatewayModel;
- var ExclusiveGatewayView = /** @class */ (function (_super) {
- __extends(ExclusiveGatewayView, _super);
- function ExclusiveGatewayView() {
- return _super !== null && _super.apply(this, arguments) || this;
- }
- ExclusiveGatewayView.prototype.getShape = function () {
- var model = this.props.model;
- var x = model.x, y = model.y, width = model.width, height = model.height, points = model.points;
- var style = model.getNodeStyle();
- return core_1.h('g', {
- transform: "matrix(1 0 0 1 " + (x - width / 2) + " " + (y - height / 2) + ")",
- }, core_1.h('polygon', __assign(__assign({}, style), { x: x,
- y: y,
- points: points })), core_1.h('path', __assign({ d: 'm 16,15 7.42857142857143,9.714285714285715 -7.42857142857143,9.714285714285715 3.428571428571429,0 5.714285714285715,-7.464228571428572 5.714285714285715,7.464228571428572 3.428571428571429,0 -7.42857142857143,-9.714285714285715 7.42857142857143,-9.714285714285715 -3.428571428571429,0 -5.714285714285715,7.464228571428572 -5.714285714285715,-7.464228571428572 -3.428571428571429,0 z' }, style)));
- };
- ExclusiveGatewayView.extendKey = 'ExclusiveGatewayNode';
- return ExclusiveGatewayView;
- }(core_1.PolygonNode));
- exports.ExclusiveGatewayView = ExclusiveGatewayView;
- var ExclusiveGateway = {
- type: 'bpmn:exclusiveGateway',
- view: ExclusiveGatewayView,
- model: ExclusiveGatewayModel,
- };
- exports.default = ExclusiveGateway;
|