rt-sim-training-client/src/jmapNew/shape/Text/index.js
2020-03-10 09:49:05 +08:00

49 lines
1.4 KiB
JavaScript

import Text from 'zrender/src/graphic/Text';
import Group from 'zrender/src/container/Group';
import {getPrdType} from '../utils/handlePath';
export default class Text2 extends Group {
constructor(model, style) {
super();
this._code = model.code;
this._type = model._type;
this.name = model.code;
this.zlevel = model.zlevel;
this.model = model;
this.style = style;
this.z = 6;
this.prdType = getPrdType();
if (model.showConditions === '01' || (model.showConditions === '02' && this.prdType === '02') || (model.showConditions === '03' && this.prdType === '01') || !model.showConditions) {
this.create();
this.setState(model);
}
}
create() {
var model = this.model;
var [direction, content] = model.content.split('::');
if (direction == 'V') {
content = content.split('').join('\n');
} else if (direction != 'H') {
content = model.content;
}
this.text = new Text({
zlevel: this.zlevel,
z: this.z,
style: {
x: model.position.x,
y: model.position.y,
text: content,
textFont: model.font,
textFill: model.fontColor,
textAlign: 'middle'
}
});
this.add(this.text);
}
setState(model) {
}
}