82 lines
2.9 KiB
JavaScript
82 lines
2.9 KiB
JavaScript
function _createSuper(Derived) { return function () { var Super = _getPrototypeOf(Derived), result; if (_isNativeReflectConstruct()) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
|
|
function _possibleConstructorReturn(self, call) { if (call && (typeof call === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
|
|
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
|
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
|
|
|
|
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
|
|
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
|
|
|
|
var Util = require('../util');
|
|
|
|
var Guide = require('./base');
|
|
|
|
var Region = /*#__PURE__*/function (_Guide) {
|
|
_inheritsLoose(Region, _Guide);
|
|
|
|
var _super = _createSuper(Region);
|
|
|
|
function Region() {
|
|
return _Guide.apply(this, arguments) || this;
|
|
}
|
|
|
|
var _proto = Region.prototype;
|
|
|
|
_proto.getDefaultCfg = function getDefaultCfg() {
|
|
var cfg = _Guide.prototype.getDefaultCfg.call(this);
|
|
|
|
return Util.mix({}, cfg, {
|
|
name: 'region',
|
|
zIndex: 1,
|
|
start: null,
|
|
end: null,
|
|
style: {
|
|
lineWidth: 0,
|
|
fill: '#CCD7EB',
|
|
opacity: 0.4
|
|
}
|
|
});
|
|
};
|
|
|
|
_proto.render = function render(coord, group) {
|
|
var self = this;
|
|
var rectStyle = self.get('style');
|
|
|
|
var path = self._getPath(coord);
|
|
|
|
if (!path.length) {
|
|
// path 为空时不绘制
|
|
return;
|
|
}
|
|
|
|
var regionGroup = group.addShape('path', {
|
|
zIndex: self.get('zIndex'),
|
|
attrs: Util.mix({
|
|
path: path
|
|
}, rectStyle)
|
|
});
|
|
regionGroup.name = 'guide-region';
|
|
self.get('appendInfo') && regionGroup.setSilent('appendInfo', self.get('appendInfo'));
|
|
self.set('el', regionGroup);
|
|
};
|
|
|
|
_proto._getPath = function _getPath(coord) {
|
|
var self = this;
|
|
var start = self.parsePoint(coord, self.get('start'));
|
|
var end = self.parsePoint(coord, self.get('end'));
|
|
|
|
if (!start || !end) {
|
|
return [];
|
|
}
|
|
|
|
var path = [['M', start.x, start.y], ['L', end.x, start.y], ['L', end.x, end.y], ['L', start.x, end.y], ['z']];
|
|
return path;
|
|
};
|
|
|
|
return Region;
|
|
}(Guide);
|
|
|
|
module.exports = Region; |