123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- import { __extends } from "tslib";
- import ComponentModel from '../../model/Component.js';
- import SeriesData from '../../data/SeriesData.js';
- import { each, isObject, clone } from 'zrender/lib/core/util.js';
- import { convertOptionIdName, getDataItemValue } from '../../util/model.js';
- var TimelineModel = function (_super) {
- __extends(TimelineModel, _super);
- function TimelineModel() {
- var _this = _super !== null && _super.apply(this, arguments) || this;
- _this.type = TimelineModel.type;
- _this.layoutMode = 'box';
- return _this;
- }
-
- TimelineModel.prototype.init = function (option, parentModel, ecModel) {
- this.mergeDefaultAndTheme(option, ecModel);
- this._initData();
- };
-
- TimelineModel.prototype.mergeOption = function (option) {
- _super.prototype.mergeOption.apply(this, arguments);
- this._initData();
- };
- TimelineModel.prototype.setCurrentIndex = function (currentIndex) {
- if (currentIndex == null) {
- currentIndex = this.option.currentIndex;
- }
- var count = this._data.count();
- if (this.option.loop) {
- currentIndex = (currentIndex % count + count) % count;
- } else {
- currentIndex >= count && (currentIndex = count - 1);
- currentIndex < 0 && (currentIndex = 0);
- }
- this.option.currentIndex = currentIndex;
- };
-
- TimelineModel.prototype.getCurrentIndex = function () {
- return this.option.currentIndex;
- };
-
- TimelineModel.prototype.isIndexMax = function () {
- return this.getCurrentIndex() >= this._data.count() - 1;
- };
-
- TimelineModel.prototype.setPlayState = function (state) {
- this.option.autoPlay = !!state;
- };
-
- TimelineModel.prototype.getPlayState = function () {
- return !!this.option.autoPlay;
- };
-
- TimelineModel.prototype._initData = function () {
- var thisOption = this.option;
- var dataArr = thisOption.data || [];
- var axisType = thisOption.axisType;
- var names = this._names = [];
- var processedDataArr;
- if (axisType === 'category') {
- processedDataArr = [];
- each(dataArr, function (item, index) {
- var value = convertOptionIdName(getDataItemValue(item), '');
- var newItem;
- if (isObject(item)) {
- newItem = clone(item);
- newItem.value = index;
- } else {
- newItem = index;
- }
- processedDataArr.push(newItem);
- names.push(value);
- });
- } else {
- processedDataArr = dataArr;
- }
- var dimType = {
- category: 'ordinal',
- time: 'time',
- value: 'number'
- }[axisType] || 'number';
- var data = this._data = new SeriesData([{
- name: 'value',
- type: dimType
- }], this);
- data.initData(processedDataArr, names);
- };
- TimelineModel.prototype.getData = function () {
- return this._data;
- };
-
- TimelineModel.prototype.getCategories = function () {
- if (this.get('axisType') === 'category') {
- return this._names.slice();
- }
- };
- TimelineModel.type = 'timeline';
-
- TimelineModel.defaultOption = {
-
- z: 4,
- show: true,
- axisType: 'time',
- realtime: true,
- left: '20%',
- top: null,
- right: '20%',
- bottom: 0,
- width: null,
- height: 40,
- padding: 5,
- controlPosition: 'left',
- autoPlay: false,
- rewind: false,
- loop: true,
- playInterval: 2000,
- currentIndex: 0,
- itemStyle: {},
- label: {
- color: '#000'
- },
- data: []
- };
- return TimelineModel;
- }(ComponentModel);
- export default TimelineModel;
|