123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491 |
- import { normalizeToArray
- } from '../util/model.js';
- import { each, clone, map, isTypedArray, setAsPrimitive, isArray, isObject
- } from 'zrender/lib/core/util.js';
- import { error } from '../util/log.js';
- var QUERY_REG = /^(min|max)?(.+)$/;
- var OptionManager =
- function () {
-
-
-
-
-
-
-
-
- function OptionManager(api) {
- this._timelineOptions = [];
- this._mediaList = [];
-
- this._currentMediaIndices = [];
- this._api = api;
- }
- OptionManager.prototype.setOption = function (rawOption, optionPreprocessorFuncs, opt) {
- if (rawOption) {
-
- each(normalizeToArray(rawOption.series), function (series) {
- series && series.data && isTypedArray(series.data) && setAsPrimitive(series.data);
- });
- each(normalizeToArray(rawOption.dataset), function (dataset) {
- dataset && dataset.source && isTypedArray(dataset.source) && setAsPrimitive(dataset.source);
- });
- }
-
-
- rawOption = clone(rawOption);
-
-
- var optionBackup = this._optionBackup;
- var newParsedOption = parseRawOption(rawOption, optionPreprocessorFuncs, !optionBackup);
- this._newBaseOption = newParsedOption.baseOption;
- if (optionBackup) {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- if (newParsedOption.timelineOptions.length) {
- optionBackup.timelineOptions = newParsedOption.timelineOptions;
- }
- if (newParsedOption.mediaList.length) {
- optionBackup.mediaList = newParsedOption.mediaList;
- }
- if (newParsedOption.mediaDefault) {
- optionBackup.mediaDefault = newParsedOption.mediaDefault;
- }
- } else {
- this._optionBackup = newParsedOption;
- }
- };
- OptionManager.prototype.mountOption = function (isRecreate) {
- var optionBackup = this._optionBackup;
- this._timelineOptions = optionBackup.timelineOptions;
- this._mediaList = optionBackup.mediaList;
- this._mediaDefault = optionBackup.mediaDefault;
- this._currentMediaIndices = [];
- return clone(isRecreate
-
-
-
-
- ? optionBackup.baseOption : this._newBaseOption);
- };
- OptionManager.prototype.getTimelineOption = function (ecModel) {
- var option;
- var timelineOptions = this._timelineOptions;
- if (timelineOptions.length) {
-
-
- var timelineModel = ecModel.getComponent('timeline');
- if (timelineModel) {
- option = clone(
- timelineOptions[timelineModel.getCurrentIndex()]);
- }
- }
- return option;
- };
- OptionManager.prototype.getMediaOption = function (ecModel) {
- var ecWidth = this._api.getWidth();
- var ecHeight = this._api.getHeight();
- var mediaList = this._mediaList;
- var mediaDefault = this._mediaDefault;
- var indices = [];
- var result = [];
- if (!mediaList.length && !mediaDefault) {
- return result;
- }
- for (var i = 0, len = mediaList.length; i < len; i++) {
- if (applyMediaQuery(mediaList[i].query, ecWidth, ecHeight)) {
- indices.push(i);
- }
- }
-
-
- if (!indices.length && mediaDefault) {
- indices = [-1];
- }
- if (indices.length && !indicesEquals(indices, this._currentMediaIndices)) {
- result = map(indices, function (index) {
- return clone(index === -1 ? mediaDefault.option : mediaList[index].option);
- });
- }
- this._currentMediaIndices = indices;
- return result;
- };
- return OptionManager;
- }();
- function parseRawOption(
- rawOption, optionPreprocessorFuncs, isNew) {
- var mediaList = [];
- var mediaDefault;
- var baseOption;
- var declaredBaseOption = rawOption.baseOption;
- var timelineOnRoot = rawOption.timeline;
- var timelineOptionsOnRoot = rawOption.options;
- var mediaOnRoot = rawOption.media;
- var hasMedia = !!rawOption.media;
- var hasTimeline = !!(timelineOptionsOnRoot || timelineOnRoot || declaredBaseOption && declaredBaseOption.timeline);
- if (declaredBaseOption) {
- baseOption = declaredBaseOption;
- if (!baseOption.timeline) {
- baseOption.timeline = timelineOnRoot;
- }
- }
-
- else {
- if (hasTimeline || hasMedia) {
- rawOption.options = rawOption.media = null;
- }
- baseOption = rawOption;
- }
- if (hasMedia) {
- if (isArray(mediaOnRoot)) {
- each(mediaOnRoot, function (singleMedia) {
- if (process.env.NODE_ENV !== 'production') {
-
- if (singleMedia && !singleMedia.option && isObject(singleMedia.query) && isObject(singleMedia.query.option)) {
- error('Illegal media option. Must be like { media: [ { query: {}, option: {} } ] }');
- }
- }
- if (singleMedia && singleMedia.option) {
- if (singleMedia.query) {
- mediaList.push(singleMedia);
- } else if (!mediaDefault) {
-
- mediaDefault = singleMedia;
- }
- }
- });
- } else {
- if (process.env.NODE_ENV !== 'production') {
-
- error('Illegal media option. Must be an array. Like { media: [ {...}, {...} ] }');
- }
- }
- }
- doPreprocess(baseOption);
- each(timelineOptionsOnRoot, function (option) {
- return doPreprocess(option);
- });
- each(mediaList, function (media) {
- return doPreprocess(media.option);
- });
- function doPreprocess(option) {
- each(optionPreprocessorFuncs, function (preProcess) {
- preProcess(option, isNew);
- });
- }
- return {
- baseOption: baseOption,
- timelineOptions: timelineOptionsOnRoot || [],
- mediaDefault: mediaDefault,
- mediaList: mediaList
- };
- }
- function applyMediaQuery(query, ecWidth, ecHeight) {
- var realMap = {
- width: ecWidth,
- height: ecHeight,
- aspectratio: ecWidth / ecHeight
- };
- var applicable = true;
- each(query, function (value, attr) {
- var matched = attr.match(QUERY_REG);
- if (!matched || !matched[1] || !matched[2]) {
- return;
- }
- var operator = matched[1];
- var realAttr = matched[2].toLowerCase();
- if (!compare(realMap[realAttr], value, operator)) {
- applicable = false;
- }
- });
- return applicable;
- }
- function compare(real, expect, operator) {
- if (operator === 'min') {
- return real >= expect;
- } else if (operator === 'max') {
- return real <= expect;
- } else {
-
- return real === expect;
- }
- }
- function indicesEquals(indices1, indices2) {
-
- return indices1.join(',') === indices2.join(',');
- }
- export default OptionManager;
|