cione-comp-lib
Version:
`$ yarn add cione-comp-lib` 或者 `$ npm i cione-comp-lib -S`
56 lines (55 loc) • 2.16 kB
JavaScript
import { __extends } from "../../../../tslib/tslib.es6.mjs";
import LegendModel from "./LegendModel.mjs";
import { getLayoutParams, mergeLayoutParam } from "../../util/layout.mjs";
import { inheritDefaultOption } from "../../util/component.mjs";
var ScrollableLegendModel = function(_super) {
__extends(ScrollableLegendModel2, _super);
function ScrollableLegendModel2() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.type = ScrollableLegendModel2.type;
return _this;
}
ScrollableLegendModel2.prototype.setScrollDataIndex = function(scrollDataIndex) {
this.option.scrollDataIndex = scrollDataIndex;
};
ScrollableLegendModel2.prototype.init = function(option, parentModel, ecModel) {
var inputPositionParams = getLayoutParams(option);
_super.prototype.init.call(this, option, parentModel, ecModel);
mergeAndNormalizeLayoutParams(this, option, inputPositionParams);
};
ScrollableLegendModel2.prototype.mergeOption = function(option, ecModel) {
_super.prototype.mergeOption.call(this, option, ecModel);
mergeAndNormalizeLayoutParams(this, this.option, option);
};
ScrollableLegendModel2.type = "legend.scroll";
ScrollableLegendModel2.defaultOption = inheritDefaultOption(LegendModel.defaultOption, {
scrollDataIndex: 0,
pageButtonItemGap: 5,
pageButtonGap: null,
pageButtonPosition: "end",
pageFormatter: "{current}/{total}",
pageIcons: {
horizontal: ["M0,0L12,-10L12,10z", "M0,0L-12,-10L-12,10z"],
vertical: ["M0,0L20,0L10,-20z", "M0,0L20,0L10,20z"]
},
pageIconColor: "#2f4554",
pageIconInactiveColor: "#aaa",
pageIconSize: 15,
pageTextStyle: {
color: "#333"
},
animationDurationUpdate: 800
});
return ScrollableLegendModel2;
}(LegendModel);
function mergeAndNormalizeLayoutParams(legendModel, target, raw) {
var orient = legendModel.getOrient();
var ignoreSize = [1, 1];
ignoreSize[orient.index] = 0;
mergeLayoutParam(target, raw, {
type: "box",
ignoreSize: !!ignoreSize
});
}
var ScrollableLegendModel$1 = ScrollableLegendModel;
export { ScrollableLegendModel$1 as default };