|
- webpackJsonp([60],{
-
- /***/ 1032:
- /***/ (function(module, exports, __webpack_require__) {
-
- var ListCache = __webpack_require__(872);
-
- /**
- * Removes all key-value entries from the stack.
- *
- * @private
- * @name clear
- * @memberOf Stack
- */
- function stackClear() {
- this.__data__ = new ListCache;
- this.size = 0;
- }
-
- module.exports = stackClear;
-
-
- /***/ }),
-
- /***/ 1033:
- /***/ (function(module, exports) {
-
- /**
- * Removes `key` and its value from the stack.
- *
- * @private
- * @name delete
- * @memberOf Stack
- * @param {string} key The key of the value to remove.
- * @returns {boolean} Returns `true` if the entry was removed, else `false`.
- */
- function stackDelete(key) {
- var data = this.__data__,
- result = data['delete'](key);
-
- this.size = data.size;
- return result;
- }
-
- module.exports = stackDelete;
-
-
- /***/ }),
-
- /***/ 1034:
- /***/ (function(module, exports) {
-
- /**
- * Gets the stack value for `key`.
- *
- * @private
- * @name get
- * @memberOf Stack
- * @param {string} key The key of the value to get.
- * @returns {*} Returns the entry value.
- */
- function stackGet(key) {
- return this.__data__.get(key);
- }
-
- module.exports = stackGet;
-
-
- /***/ }),
-
- /***/ 1035:
- /***/ (function(module, exports) {
-
- /**
- * Checks if a stack value for `key` exists.
- *
- * @private
- * @name has
- * @memberOf Stack
- * @param {string} key The key of the entry to check.
- * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
- */
- function stackHas(key) {
- return this.__data__.has(key);
- }
-
- module.exports = stackHas;
-
-
- /***/ }),
-
- /***/ 1036:
- /***/ (function(module, exports, __webpack_require__) {
-
- var ListCache = __webpack_require__(872),
- Map = __webpack_require__(876),
- MapCache = __webpack_require__(877);
-
- /** Used as the size to enable large array optimizations. */
- var LARGE_ARRAY_SIZE = 200;
-
- /**
- * Sets the stack `key` to `value`.
- *
- * @private
- * @name set
- * @memberOf Stack
- * @param {string} key The key of the value to set.
- * @param {*} value The value to set.
- * @returns {Object} Returns the stack cache instance.
- */
- function stackSet(key, value) {
- var data = this.__data__;
- if (data instanceof ListCache) {
- var pairs = data.__data__;
- if (!Map || (pairs.length < LARGE_ARRAY_SIZE - 1)) {
- pairs.push([key, value]);
- this.size = ++data.size;
- return this;
- }
- data = this.__data__ = new MapCache(pairs);
- }
- data.set(key, value);
- this.size = data.size;
- return this;
- }
-
- module.exports = stackSet;
-
-
- /***/ }),
-
- /***/ 1037:
- /***/ (function(module, exports) {
-
- /**
- * This method returns `false`.
- *
- * @static
- * @memberOf _
- * @since 4.13.0
- * @category Util
- * @returns {boolean} Returns `false`.
- * @example
- *
- * _.times(2, _.stubFalse);
- * // => [false, false]
- */
- function stubFalse() {
- return false;
- }
-
- module.exports = stubFalse;
-
-
- /***/ }),
-
- /***/ 1038:
- /***/ (function(module, exports, __webpack_require__) {
-
- var baseGetTag = __webpack_require__(304),
- isLength = __webpack_require__(875),
- isObjectLike = __webpack_require__(302);
-
- /** `Object#toString` result references. */
- var argsTag = '[object Arguments]',
- arrayTag = '[object Array]',
- boolTag = '[object Boolean]',
- dateTag = '[object Date]',
- errorTag = '[object Error]',
- funcTag = '[object Function]',
- mapTag = '[object Map]',
- numberTag = '[object Number]',
- objectTag = '[object Object]',
- regexpTag = '[object RegExp]',
- setTag = '[object Set]',
- stringTag = '[object String]',
- weakMapTag = '[object WeakMap]';
-
- var arrayBufferTag = '[object ArrayBuffer]',
- dataViewTag = '[object DataView]',
- float32Tag = '[object Float32Array]',
- float64Tag = '[object Float64Array]',
- int8Tag = '[object Int8Array]',
- int16Tag = '[object Int16Array]',
- int32Tag = '[object Int32Array]',
- uint8Tag = '[object Uint8Array]',
- uint8ClampedTag = '[object Uint8ClampedArray]',
- uint16Tag = '[object Uint16Array]',
- uint32Tag = '[object Uint32Array]';
-
- /** Used to identify `toStringTag` values of typed arrays. */
- var typedArrayTags = {};
- typedArrayTags[float32Tag] = typedArrayTags[float64Tag] =
- typedArrayTags[int8Tag] = typedArrayTags[int16Tag] =
- typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] =
- typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] =
- typedArrayTags[uint32Tag] = true;
- typedArrayTags[argsTag] = typedArrayTags[arrayTag] =
- typedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] =
- typedArrayTags[dataViewTag] = typedArrayTags[dateTag] =
- typedArrayTags[errorTag] = typedArrayTags[funcTag] =
- typedArrayTags[mapTag] = typedArrayTags[numberTag] =
- typedArrayTags[objectTag] = typedArrayTags[regexpTag] =
- typedArrayTags[setTag] = typedArrayTags[stringTag] =
- typedArrayTags[weakMapTag] = false;
-
- /**
- * The base implementation of `_.isTypedArray` without Node.js optimizations.
- *
- * @private
- * @param {*} value The value to check.
- * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.
- */
- function baseIsTypedArray(value) {
- return isObjectLike(value) &&
- isLength(value.length) && !!typedArrayTags[baseGetTag(value)];
- }
-
- module.exports = baseIsTypedArray;
-
-
- /***/ }),
-
- /***/ 1039:
- /***/ (function(module, exports) {
-
- /**
- * The base implementation of `_.times` without support for iteratee shorthands
- * or max array length checks.
- *
- * @private
- * @param {number} n The number of times to invoke `iteratee`.
- * @param {Function} iteratee The function invoked per iteration.
- * @returns {Array} Returns the array of results.
- */
- function baseTimes(n, iteratee) {
- var index = -1,
- result = Array(n);
-
- while (++index < n) {
- result[index] = iteratee(index);
- }
- return result;
- }
-
- module.exports = baseTimes;
-
-
- /***/ }),
-
- /***/ 1059:
- /***/ (function(module, exports, __webpack_require__) {
-
- // style-loader: Adds some css to the DOM by adding a <style> tag
-
- // load the styles
- var content = __webpack_require__(1060);
- if(typeof content === 'string') content = [[module.i, content, '']];
- // Prepare cssTransformation
- var transform;
-
- var options = {"hmr":false}
- options.transform = transform
- // add the styles to the DOM
- var update = __webpack_require__(300)(content, options);
- if(content.locals) module.exports = content.locals;
-
-
- /***/ }),
-
- /***/ 1060:
- /***/ (function(module, exports, __webpack_require__) {
-
- exports = module.exports = __webpack_require__(299)(true);
- // imports
-
-
- // module
- exports.push([module.i, ".ant-dropdown{-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:14px;font-variant:tabular-nums;line-height:1.5;list-style:none;-webkit-font-feature-settings:\"tnum\";font-feature-settings:\"tnum\";position:absolute;top:-9999px;left:-9999px;z-index:1050;display:block}.ant-dropdown:before{position:absolute;top:-7px;right:0;bottom:-7px;left:-7px;z-index:-9999;opacity:.0001;content:\" \"}.ant-dropdown-wrap{position:relative}.ant-dropdown-wrap .ant-btn>.anticon-down{display:inline-block;font-size:12px;font-size:10px\\9;-webkit-transform:scale(.83333333) rotate(0deg);-ms-transform:scale(.83333333) rotate(0deg);transform:scale(.83333333) rotate(0deg)}:root .ant-dropdown-wrap .ant-btn>.anticon-down{font-size:12px}.ant-dropdown-wrap .anticon-down:before{-webkit-transition:-webkit-transform .2s;transition:-webkit-transform .2s;-o-transition:transform .2s;transition:transform .2s;transition:transform .2s,-webkit-transform .2s}.ant-dropdown-wrap-open .anticon-down:before{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.ant-dropdown-hidden,.ant-dropdown-menu-hidden{display:none}.ant-dropdown-menu{position:relative;margin:0;padding:4px 0;text-align:left;list-style-type:none;background-color:#fff;background-clip:padding-box;border-radius:4px;outline:none;-webkit-box-shadow:0 2px 8px rgba(0,0,0,.15);box-shadow:0 2px 8px rgba(0,0,0,.15);-webkit-transform:translateZ(0)}.ant-dropdown-menu-item-group-title{padding:5px 12px;color:rgba(0,0,0,.45);-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.ant-dropdown-menu-submenu-popup{position:absolute;z-index:1050}.ant-dropdown-menu-submenu-popup>.ant-dropdown-menu{-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0}.ant-dropdown-menu-submenu-popup li,.ant-dropdown-menu-submenu-popup ul{list-style:none}.ant-dropdown-menu-submenu-popup ul{margin-right:.3em;margin-left:.3em;padding:0}.ant-dropdown-menu-item,.ant-dropdown-menu-submenu-title{clear:both;margin:0;padding:5px 12px;color:rgba(0,0,0,.65);font-weight:400;font-size:14px;line-height:22px;white-space:nowrap;cursor:pointer;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.ant-dropdown-menu-item>.anticon:first-child,.ant-dropdown-menu-item>span>.anticon:first-child,.ant-dropdown-menu-submenu-title>.anticon:first-child,.ant-dropdown-menu-submenu-title>span>.anticon:first-child{min-width:12px;margin-right:8px;font-size:12px}.ant-dropdown-menu-item>a,.ant-dropdown-menu-submenu-title>a{display:block;margin:-5px -12px;padding:5px 12px;color:rgba(0,0,0,.65);-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.ant-dropdown-menu-item-selected,.ant-dropdown-menu-item-selected>a,.ant-dropdown-menu-submenu-title-selected,.ant-dropdown-menu-submenu-title-selected>a{color:#1890ff;background-color:#e6f7ff}.ant-dropdown-menu-item:hover,.ant-dropdown-menu-submenu-title:hover{background-color:#e6f7ff}.ant-dropdown-menu-item-disabled,.ant-dropdown-menu-submenu-title-disabled{color:rgba(0,0,0,.25);cursor:not-allowed}.ant-dropdown-menu-item-disabled:hover,.ant-dropdown-menu-submenu-title-disabled:hover{color:rgba(0,0,0,.25);background-color:#fff;cursor:not-allowed}.ant-dropdown-menu-item-divider,.ant-dropdown-menu-submenu-title-divider{height:1px;margin:4px 0;overflow:hidden;line-height:0;background-color:#e8e8e8}.ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow,.ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow{position:absolute;right:8px}.ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow-icon,.ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon{color:rgba(0,0,0,.45);font-style:normal;display:inline-block;font-size:12px;font-size:10px\\9;-webkit-transform:scale(.83333333) rotate(0deg);-ms-transform:scale(.83333333) rotate(0deg);transform:scale(.83333333) rotate(0deg)}:root .ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow-icon,:root .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon{font-size:12px}.ant-dropdown-menu-item-group-list{margin:0 8px;padding:0;list-style:none}.ant-dropdown-menu-submenu-title{padding-right:26px}.ant-dropdown-menu-submenu-vertical{position:relative}.ant-dropdown-menu-submenu-vertical>.ant-dropdown-menu{position:absolute;top:0;left:100%;min-width:100%;margin-left:4px;-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0}.ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-disabled .ant-dropdown-menu-submenu-title,.ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-disabled .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon{color:rgba(0,0,0,.25);background-color:#fff;cursor:not-allowed}.ant-dropdown-menu-submenu-selected .ant-dropdown-menu-submenu-title{color:#1890ff}.ant-dropdown.slide-down-appear.slide-down-appear-active.ant-dropdown-placement-bottomCenter,.ant-dropdown.slide-down-appear.slide-down-appear-active.ant-dropdown-placement-bottomLeft,.ant-dropdown.slide-down-appear.slide-down-appear-active.ant-dropdown-placement-bottomRight,.ant-dropdown.slide-down-enter.slide-down-enter-active.ant-dropdown-placement-bottomCenter,.ant-dropdown.slide-down-enter.slide-down-enter-active.ant-dropdown-placement-bottomLeft,.ant-dropdown.slide-down-enter.slide-down-enter-active.ant-dropdown-placement-bottomRight{-webkit-animation-name:antSlideUpIn;animation-name:antSlideUpIn}.ant-dropdown.slide-up-appear.slide-up-appear-active.ant-dropdown-placement-topCenter,.ant-dropdown.slide-up-appear.slide-up-appear-active.ant-dropdown-placement-topLeft,.ant-dropdown.slide-up-appear.slide-up-appear-active.ant-dropdown-placement-topRight,.ant-dropdown.slide-up-enter.slide-up-enter-active.ant-dropdown-placement-topCenter,.ant-dropdown.slide-up-enter.slide-up-enter-active.ant-dropdown-placement-topLeft,.ant-dropdown.slide-up-enter.slide-up-enter-active.ant-dropdown-placement-topRight{-webkit-animation-name:antSlideDownIn;animation-name:antSlideDownIn}.ant-dropdown.slide-down-leave.slide-down-leave-active.ant-dropdown-placement-bottomCenter,.ant-dropdown.slide-down-leave.slide-down-leave-active.ant-dropdown-placement-bottomLeft,.ant-dropdown.slide-down-leave.slide-down-leave-active.ant-dropdown-placement-bottomRight{-webkit-animation-name:antSlideUpOut;animation-name:antSlideUpOut}.ant-dropdown.slide-up-leave.slide-up-leave-active.ant-dropdown-placement-topCenter,.ant-dropdown.slide-up-leave.slide-up-leave-active.ant-dropdown-placement-topLeft,.ant-dropdown.slide-up-leave.slide-up-leave-active.ant-dropdown-placement-topRight{-webkit-animation-name:antSlideDownOut;animation-name:antSlideDownOut}.ant-dropdown-link>.anticon.anticon-down,.ant-dropdown-trigger>.anticon.anticon-down{display:inline-block;font-size:12px;font-size:10px\\9;-webkit-transform:scale(.83333333) rotate(0deg);-ms-transform:scale(.83333333) rotate(0deg);transform:scale(.83333333) rotate(0deg)}:root .ant-dropdown-link>.anticon.anticon-down,:root .ant-dropdown-trigger>.anticon.anticon-down{font-size:12px}.ant-dropdown-button{white-space:nowrap}.ant-dropdown-button.ant-btn-group>.ant-btn:last-child:not(:first-child){padding-right:8px;padding-left:8px}.ant-dropdown-button .anticon.anticon-down{display:inline-block;font-size:12px;font-size:10px\\9;-webkit-transform:scale(.83333333) rotate(0deg);-ms-transform:scale(.83333333) rotate(0deg);transform:scale(.83333333) rotate(0deg)}:root .ant-dropdown-button .anticon.anticon-down{font-size:12px}.ant-dropdown-menu-dark,.ant-dropdown-menu-dark .ant-dropdown-menu{background:#001529}.ant-dropdown-menu-dark .ant-dropdown-menu-item,.ant-dropdown-menu-dark .ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow:after,.ant-dropdown-menu-dark .ant-dropdown-menu-item>a,.ant-dropdown-menu-dark .ant-dropdown-menu-item>a .ant-dropdown-menu-submenu-arrow:after,.ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title,.ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow:after{color:hsla(0,0%,100%,.65)}.ant-dropdown-menu-dark .ant-dropdown-menu-item:hover,.ant-dropdown-menu-dark .ant-dropdown-menu-item>a:hover,.ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title:hover{color:#fff;background:transparent}.ant-dropdown-menu-dark .ant-dropdown-menu-item-selected,.ant-dropdown-menu-dark .ant-dropdown-menu-item-selected:hover,.ant-dropdown-menu-dark .ant-dropdown-menu-item-selected>a{color:#fff;background:#1890ff}", "", {"version":3,"sources":["/Users/jasder/work/trustie3.0/educoder/public/react/node_modules/antd/lib/dropdown/style/index.css"],"names":[],"mappings":"AAIA,cACE,8BAA+B,AACvB,sBAAuB,AAC/B,SAAU,AACV,UAAW,AACX,sBAA2B,AAC3B,eAAgB,AAChB,0BAA2B,AAC3B,gBAAiB,AACjB,gBAAiB,AACjB,qCAAsC,AAC9B,6BAA8B,AACtC,kBAAmB,AACnB,YAAa,AACb,aAAc,AACd,aAAc,AACd,aAAe,CAChB,AACD,qBACE,kBAAmB,AACnB,SAAU,AACV,QAAS,AACT,YAAa,AACb,UAAW,AACX,cAAe,AACf,cAAgB,AAChB,WAAa,CACd,AACD,mBACE,iBAAmB,CACpB,AACD,0CACE,qBAAsB,AACtB,eAAgB,AAChB,iBAAmB,AACnB,gDAAkD,AAC9C,4CAA8C,AAC1C,uCAA0C,CACnD,AACD,gDACE,cAAgB,CACjB,AACD,wCACE,yCAA2C,AAC3C,iCAAmC,AACnC,4BAA8B,AAC9B,yBAA2B,AAC3B,8CAAmD,CACpD,AACD,6CACE,iCAAkC,AAC9B,6BAA8B,AAC1B,wBAA0B,CACnC,AACD,+CAEE,YAAc,CACf,AACD,mBACE,kBAAmB,AACnB,SAAU,AACV,cAAe,AACf,gBAAiB,AACjB,qBAAsB,AACtB,sBAAuB,AACvB,4BAA6B,AAC7B,kBAAmB,AACnB,aAAc,AACd,6CAAkD,AAC1C,qCAA0C,AAClD,+BAAwC,CACzC,AACD,oCACE,iBAAkB,AAClB,sBAA2B,AAC3B,2BAA6B,AAC7B,sBAAwB,AACxB,kBAAqB,CACtB,AACD,iCACE,kBAAmB,AACnB,YAAc,CACf,AACD,oDACE,6BAA8B,AAC1B,yBAA0B,AACtB,oBAAsB,CAC/B,AACD,wEAEE,eAAiB,CAClB,AACD,oCACE,kBAAoB,AACpB,iBAAmB,AACnB,SAAW,CACZ,AACD,yDAEE,WAAY,AACZ,SAAU,AACV,iBAAkB,AAClB,sBAA2B,AAC3B,gBAAoB,AACpB,eAAgB,AAChB,iBAAkB,AAClB,mBAAoB,AACpB,eAAgB,AAChB,2BAA6B,AAC7B,sBAAwB,AACxB,kBAAqB,CACtB,AACD,gNAIE,eAAgB,AAChB,iBAAkB,AAClB,cAAgB,CACjB,AACD,6DAEE,cAAe,AACf,kBAAmB,AACnB,iBAAkB,AAClB,sBAA2B,AAC3B,2BAA6B,AAC7B,sBAAwB,AACxB,kBAAqB,CACtB,AACD,0JAIE,cAAe,AACf,wBAA0B,CAC3B,AACD,qEAEE,wBAA0B,CAC3B,AACD,2EAEE,sBAA2B,AAC3B,kBAAoB,CACrB,AACD,uFAEE,sBAA2B,AAC3B,sBAAuB,AACvB,kBAAoB,CACrB,AACD,yEAEE,WAAY,AACZ,aAAc,AACd,gBAAiB,AACjB,cAAe,AACf,wBAA0B,CAC3B,AACD,2HAEE,kBAAmB,AACnB,SAAW,CACZ,AACD,qIAEE,sBAA2B,AAC3B,kBAAmB,AACnB,qBAAsB,AACtB,eAAgB,AAChB,iBAAmB,AACnB,gDAAkD,AAC9C,4CAA8C,AAC1C,uCAA0C,CACnD,AACD,iJAEE,cAAgB,CACjB,AACD,mCACE,aAAc,AACd,UAAW,AACX,eAAiB,CAClB,AACD,iCACE,kBAAoB,CACrB,AACD,oCACE,iBAAmB,CACpB,AACD,uDACE,kBAAmB,AACnB,MAAO,AACP,UAAW,AACX,eAAgB,AAChB,gBAAiB,AACjB,6BAA8B,AAC1B,yBAA0B,AACtB,oBAAsB,CAC/B,AACD,oOAEE,sBAA2B,AAC3B,sBAAuB,AACvB,kBAAoB,CACrB,AACD,qEACE,aAAe,CAChB,AACD,kiBAME,oCAAqC,AAC7B,2BAA6B,CACtC,AACD,wfAME,sCAAuC,AAC/B,6BAA+B,CACxC,AACD,8QAGE,qCAAsC,AAC9B,4BAA8B,CACvC,AACD,yPAGE,uCAAwC,AAChC,8BAAgC,CACzC,AACD,qFAEE,qBAAsB,AACtB,eAAgB,AAChB,iBAAmB,AACnB,gDAAkD,AAC9C,4CAA8C,AAC1C,uCAA0C,CACnD,AACD,iGAEE,cAAgB,CACjB,AACD,qBACE,kBAAoB,CACrB,AACD,yEACE,kBAAmB,AACnB,gBAAkB,CACnB,AACD,2CACE,qBAAsB,AACtB,eAAgB,AAChB,iBAAmB,AACnB,gDAAkD,AAC9C,4CAA8C,AAC1C,uCAA0C,CACnD,AACD,iDACE,cAAgB,CACjB,AACD,mEAEE,kBAAoB,CACrB,AAMD,2aAGE,yBAAiC,CAClC,AACD,6KAGE,WAAY,AACZ,sBAAwB,CACzB,AACD,mLAGE,WAAY,AACZ,kBAAoB,CACrB","file":"index.css","sourcesContent":["/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */\n/* stylelint-disable no-duplicate-selectors */\n/* stylelint-disable */\n/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */\n.ant-dropdown {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n margin: 0;\n padding: 0;\n color: rgba(0, 0, 0, 0.65);\n font-size: 14px;\n font-variant: tabular-nums;\n line-height: 1.5;\n list-style: none;\n -webkit-font-feature-settings: 'tnum';\n font-feature-settings: 'tnum';\n position: absolute;\n top: -9999px;\n left: -9999px;\n z-index: 1050;\n display: block;\n}\n.ant-dropdown::before {\n position: absolute;\n top: -7px;\n right: 0;\n bottom: -7px;\n left: -7px;\n z-index: -9999;\n opacity: 0.0001;\n content: ' ';\n}\n.ant-dropdown-wrap {\n position: relative;\n}\n.ant-dropdown-wrap .ant-btn > .anticon-down {\n display: inline-block;\n font-size: 12px;\n font-size: 10px \\9;\n -webkit-transform: scale(0.83333333) rotate(0deg);\n -ms-transform: scale(0.83333333) rotate(0deg);\n transform: scale(0.83333333) rotate(0deg);\n}\n:root .ant-dropdown-wrap .ant-btn > .anticon-down {\n font-size: 12px;\n}\n.ant-dropdown-wrap .anticon-down::before {\n -webkit-transition: -webkit-transform 0.2s;\n transition: -webkit-transform 0.2s;\n -o-transition: transform 0.2s;\n transition: transform 0.2s;\n transition: transform 0.2s, -webkit-transform 0.2s;\n}\n.ant-dropdown-wrap-open .anticon-down::before {\n -webkit-transform: rotate(180deg);\n -ms-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n.ant-dropdown-hidden,\n.ant-dropdown-menu-hidden {\n display: none;\n}\n.ant-dropdown-menu {\n position: relative;\n margin: 0;\n padding: 4px 0;\n text-align: left;\n list-style-type: none;\n background-color: #fff;\n background-clip: padding-box;\n border-radius: 4px;\n outline: none;\n -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);\n box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);\n -webkit-transform: translate3d(0, 0, 0);\n}\n.ant-dropdown-menu-item-group-title {\n padding: 5px 12px;\n color: rgba(0, 0, 0, 0.45);\n -webkit-transition: all 0.3s;\n -o-transition: all 0.3s;\n transition: all 0.3s;\n}\n.ant-dropdown-menu-submenu-popup {\n position: absolute;\n z-index: 1050;\n}\n.ant-dropdown-menu-submenu-popup > .ant-dropdown-menu {\n -webkit-transform-origin: 0 0;\n -ms-transform-origin: 0 0;\n transform-origin: 0 0;\n}\n.ant-dropdown-menu-submenu-popup ul,\n.ant-dropdown-menu-submenu-popup li {\n list-style: none;\n}\n.ant-dropdown-menu-submenu-popup ul {\n margin-right: 0.3em;\n margin-left: 0.3em;\n padding: 0;\n}\n.ant-dropdown-menu-item,\n.ant-dropdown-menu-submenu-title {\n clear: both;\n margin: 0;\n padding: 5px 12px;\n color: rgba(0, 0, 0, 0.65);\n font-weight: normal;\n font-size: 14px;\n line-height: 22px;\n white-space: nowrap;\n cursor: pointer;\n -webkit-transition: all 0.3s;\n -o-transition: all 0.3s;\n transition: all 0.3s;\n}\n.ant-dropdown-menu-item > .anticon:first-child,\n.ant-dropdown-menu-submenu-title > .anticon:first-child,\n.ant-dropdown-menu-item > span > .anticon:first-child,\n.ant-dropdown-menu-submenu-title > span > .anticon:first-child {\n min-width: 12px;\n margin-right: 8px;\n font-size: 12px;\n}\n.ant-dropdown-menu-item > a,\n.ant-dropdown-menu-submenu-title > a {\n display: block;\n margin: -5px -12px;\n padding: 5px 12px;\n color: rgba(0, 0, 0, 0.65);\n -webkit-transition: all 0.3s;\n -o-transition: all 0.3s;\n transition: all 0.3s;\n}\n.ant-dropdown-menu-item-selected,\n.ant-dropdown-menu-submenu-title-selected,\n.ant-dropdown-menu-item-selected > a,\n.ant-dropdown-menu-submenu-title-selected > a {\n color: #1890ff;\n background-color: #e6f7ff;\n}\n.ant-dropdown-menu-item:hover,\n.ant-dropdown-menu-submenu-title:hover {\n background-color: #e6f7ff;\n}\n.ant-dropdown-menu-item-disabled,\n.ant-dropdown-menu-submenu-title-disabled {\n color: rgba(0, 0, 0, 0.25);\n cursor: not-allowed;\n}\n.ant-dropdown-menu-item-disabled:hover,\n.ant-dropdown-menu-submenu-title-disabled:hover {\n color: rgba(0, 0, 0, 0.25);\n background-color: #fff;\n cursor: not-allowed;\n}\n.ant-dropdown-menu-item-divider,\n.ant-dropdown-menu-submenu-title-divider {\n height: 1px;\n margin: 4px 0;\n overflow: hidden;\n line-height: 0;\n background-color: #e8e8e8;\n}\n.ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow,\n.ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow {\n position: absolute;\n right: 8px;\n}\n.ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow-icon,\n.ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon {\n color: rgba(0, 0, 0, 0.45);\n font-style: normal;\n display: inline-block;\n font-size: 12px;\n font-size: 10px \\9;\n -webkit-transform: scale(0.83333333) rotate(0deg);\n -ms-transform: scale(0.83333333) rotate(0deg);\n transform: scale(0.83333333) rotate(0deg);\n}\n:root .ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow-icon,\n:root .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon {\n font-size: 12px;\n}\n.ant-dropdown-menu-item-group-list {\n margin: 0 8px;\n padding: 0;\n list-style: none;\n}\n.ant-dropdown-menu-submenu-title {\n padding-right: 26px;\n}\n.ant-dropdown-menu-submenu-vertical {\n position: relative;\n}\n.ant-dropdown-menu-submenu-vertical > .ant-dropdown-menu {\n position: absolute;\n top: 0;\n left: 100%;\n min-width: 100%;\n margin-left: 4px;\n -webkit-transform-origin: 0 0;\n -ms-transform-origin: 0 0;\n transform-origin: 0 0;\n}\n.ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-disabled .ant-dropdown-menu-submenu-title,\n.ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-disabled .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon {\n color: rgba(0, 0, 0, 0.25);\n background-color: #fff;\n cursor: not-allowed;\n}\n.ant-dropdown-menu-submenu-selected .ant-dropdown-menu-submenu-title {\n color: #1890ff;\n}\n.ant-dropdown.slide-down-enter.slide-down-enter-active.ant-dropdown-placement-bottomLeft,\n.ant-dropdown.slide-down-appear.slide-down-appear-active.ant-dropdown-placement-bottomLeft,\n.ant-dropdown.slide-down-enter.slide-down-enter-active.ant-dropdown-placement-bottomCenter,\n.ant-dropdown.slide-down-appear.slide-down-appear-active.ant-dropdown-placement-bottomCenter,\n.ant-dropdown.slide-down-enter.slide-down-enter-active.ant-dropdown-placement-bottomRight,\n.ant-dropdown.slide-down-appear.slide-down-appear-active.ant-dropdown-placement-bottomRight {\n -webkit-animation-name: antSlideUpIn;\n animation-name: antSlideUpIn;\n}\n.ant-dropdown.slide-up-enter.slide-up-enter-active.ant-dropdown-placement-topLeft,\n.ant-dropdown.slide-up-appear.slide-up-appear-active.ant-dropdown-placement-topLeft,\n.ant-dropdown.slide-up-enter.slide-up-enter-active.ant-dropdown-placement-topCenter,\n.ant-dropdown.slide-up-appear.slide-up-appear-active.ant-dropdown-placement-topCenter,\n.ant-dropdown.slide-up-enter.slide-up-enter-active.ant-dropdown-placement-topRight,\n.ant-dropdown.slide-up-appear.slide-up-appear-active.ant-dropdown-placement-topRight {\n -webkit-animation-name: antSlideDownIn;\n animation-name: antSlideDownIn;\n}\n.ant-dropdown.slide-down-leave.slide-down-leave-active.ant-dropdown-placement-bottomLeft,\n.ant-dropdown.slide-down-leave.slide-down-leave-active.ant-dropdown-placement-bottomCenter,\n.ant-dropdown.slide-down-leave.slide-down-leave-active.ant-dropdown-placement-bottomRight {\n -webkit-animation-name: antSlideUpOut;\n animation-name: antSlideUpOut;\n}\n.ant-dropdown.slide-up-leave.slide-up-leave-active.ant-dropdown-placement-topLeft,\n.ant-dropdown.slide-up-leave.slide-up-leave-active.ant-dropdown-placement-topCenter,\n.ant-dropdown.slide-up-leave.slide-up-leave-active.ant-dropdown-placement-topRight {\n -webkit-animation-name: antSlideDownOut;\n animation-name: antSlideDownOut;\n}\n.ant-dropdown-trigger > .anticon.anticon-down,\n.ant-dropdown-link > .anticon.anticon-down {\n display: inline-block;\n font-size: 12px;\n font-size: 10px \\9;\n -webkit-transform: scale(0.83333333) rotate(0deg);\n -ms-transform: scale(0.83333333) rotate(0deg);\n transform: scale(0.83333333) rotate(0deg);\n}\n:root .ant-dropdown-trigger > .anticon.anticon-down,\n:root .ant-dropdown-link > .anticon.anticon-down {\n font-size: 12px;\n}\n.ant-dropdown-button {\n white-space: nowrap;\n}\n.ant-dropdown-button.ant-btn-group > .ant-btn:last-child:not(:first-child) {\n padding-right: 8px;\n padding-left: 8px;\n}\n.ant-dropdown-button .anticon.anticon-down {\n display: inline-block;\n font-size: 12px;\n font-size: 10px \\9;\n -webkit-transform: scale(0.83333333) rotate(0deg);\n -ms-transform: scale(0.83333333) rotate(0deg);\n transform: scale(0.83333333) rotate(0deg);\n}\n:root .ant-dropdown-button .anticon.anticon-down {\n font-size: 12px;\n}\n.ant-dropdown-menu-dark,\n.ant-dropdown-menu-dark .ant-dropdown-menu {\n background: #001529;\n}\n.ant-dropdown-menu-dark .ant-dropdown-menu-item,\n.ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title,\n.ant-dropdown-menu-dark .ant-dropdown-menu-item > a {\n color: rgba(255, 255, 255, 0.65);\n}\n.ant-dropdown-menu-dark .ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow::after,\n.ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow::after,\n.ant-dropdown-menu-dark .ant-dropdown-menu-item > a .ant-dropdown-menu-submenu-arrow::after {\n color: rgba(255, 255, 255, 0.65);\n}\n.ant-dropdown-menu-dark .ant-dropdown-menu-item:hover,\n.ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title:hover,\n.ant-dropdown-menu-dark .ant-dropdown-menu-item > a:hover {\n color: #fff;\n background: transparent;\n}\n.ant-dropdown-menu-dark .ant-dropdown-menu-item-selected,\n.ant-dropdown-menu-dark .ant-dropdown-menu-item-selected:hover,\n.ant-dropdown-menu-dark .ant-dropdown-menu-item-selected > a {\n color: #fff;\n background: #1890ff;\n}\n"],"sourceRoot":""}]);
-
- // exports
-
-
- /***/ }),
-
- /***/ 1061:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__Dropdown__ = __webpack_require__(1062);
-
- /* harmony default export */ __webpack_exports__["default"] = (__WEBPACK_IMPORTED_MODULE_0__Dropdown__["a" /* default */]);
-
- /***/ }),
-
- /***/ 1062:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react__ = __webpack_require__(0);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_react__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_prop_types__ = __webpack_require__(1);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_prop_types__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_react_dom__ = __webpack_require__(4);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_react_dom___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_react_dom__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_rc_trigger__ = __webpack_require__(91);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_classnames__ = __webpack_require__(3);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_classnames__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__placements__ = __webpack_require__(1063);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_react_lifecycles_compat__ = __webpack_require__(7);
- var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
-
- function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; }
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
-
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
-
-
-
-
-
-
-
-
-
- var Dropdown = function (_Component) {
- _inherits(Dropdown, _Component);
-
- function Dropdown(props) {
- _classCallCheck(this, Dropdown);
-
- var _this = _possibleConstructorReturn(this, _Component.call(this, props));
-
- _initialiseProps.call(_this);
-
- if ('visible' in props) {
- _this.state = {
- visible: props.visible
- };
- } else {
- _this.state = {
- visible: props.defaultVisible
- };
- }
- return _this;
- }
-
- Dropdown.getDerivedStateFromProps = function getDerivedStateFromProps(nextProps) {
- if ('visible' in nextProps) {
- return {
- visible: nextProps.visible
- };
- }
- return null;
- };
-
- Dropdown.prototype.getOverlayElement = function getOverlayElement() {
- var overlay = this.props.overlay;
-
- var overlayElement = void 0;
- if (typeof overlay === 'function') {
- overlayElement = overlay();
- } else {
- overlayElement = overlay;
- }
- return overlayElement;
- };
-
- Dropdown.prototype.getMenuElementOrLambda = function getMenuElementOrLambda() {
- var overlay = this.props.overlay;
-
- if (typeof overlay === 'function') {
- return this.getMenuElement;
- }
- return this.getMenuElement();
- };
-
- Dropdown.prototype.getPopupDomNode = function getPopupDomNode() {
- return this.trigger.getPopupDomNode();
- };
-
- Dropdown.prototype.getOpenClassName = function getOpenClassName() {
- var _props = this.props,
- openClassName = _props.openClassName,
- prefixCls = _props.prefixCls;
-
- if (openClassName !== undefined) {
- return openClassName;
- }
- return prefixCls + '-open';
- };
-
- Dropdown.prototype.renderChildren = function renderChildren() {
- var children = this.props.children;
- var visible = this.state.visible;
-
- var childrenProps = children.props ? children.props : {};
- var childClassName = __WEBPACK_IMPORTED_MODULE_4_classnames___default()(childrenProps.className, this.getOpenClassName());
- return visible && children ? Object(__WEBPACK_IMPORTED_MODULE_0_react__["cloneElement"])(children, { className: childClassName }) : children;
- };
-
- Dropdown.prototype.render = function render() {
- var _props2 = this.props,
- prefixCls = _props2.prefixCls,
- transitionName = _props2.transitionName,
- animation = _props2.animation,
- align = _props2.align,
- placement = _props2.placement,
- getPopupContainer = _props2.getPopupContainer,
- showAction = _props2.showAction,
- hideAction = _props2.hideAction,
- overlayClassName = _props2.overlayClassName,
- overlayStyle = _props2.overlayStyle,
- trigger = _props2.trigger,
- otherProps = _objectWithoutProperties(_props2, ['prefixCls', 'transitionName', 'animation', 'align', 'placement', 'getPopupContainer', 'showAction', 'hideAction', 'overlayClassName', 'overlayStyle', 'trigger']);
-
- var triggerHideAction = hideAction;
- if (!triggerHideAction && trigger.indexOf('contextMenu') !== -1) {
- triggerHideAction = ['click'];
- }
-
- return __WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement(
- __WEBPACK_IMPORTED_MODULE_3_rc_trigger__["default"],
- _extends({}, otherProps, {
- prefixCls: prefixCls,
- ref: this.saveTrigger,
- popupClassName: overlayClassName,
- popupStyle: overlayStyle,
- builtinPlacements: __WEBPACK_IMPORTED_MODULE_5__placements__["a" /* default */],
- action: trigger,
- showAction: showAction,
- hideAction: triggerHideAction || [],
- popupPlacement: placement,
- popupAlign: align,
- popupTransitionName: transitionName,
- popupAnimation: animation,
- popupVisible: this.state.visible,
- afterPopupVisibleChange: this.afterVisibleChange,
- popup: this.getMenuElementOrLambda(),
- onPopupVisibleChange: this.onVisibleChange,
- getPopupContainer: getPopupContainer
- }),
- this.renderChildren()
- );
- };
-
- return Dropdown;
- }(__WEBPACK_IMPORTED_MODULE_0_react__["Component"]);
-
- Dropdown.propTypes = {
- minOverlayWidthMatchTrigger: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.bool,
- onVisibleChange: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.func,
- onOverlayClick: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.func,
- prefixCls: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.string,
- children: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.any,
- transitionName: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.string,
- overlayClassName: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.string,
- openClassName: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.string,
- animation: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.any,
- align: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.object,
- overlayStyle: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.object,
- placement: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.string,
- overlay: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.oneOfType([__WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.node, __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.func]),
- trigger: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.array,
- alignPoint: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.bool,
- showAction: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.array,
- hideAction: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.array,
- getPopupContainer: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.func,
- visible: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.bool,
- defaultVisible: __WEBPACK_IMPORTED_MODULE_1_prop_types___default.a.bool
- };
- Dropdown.defaultProps = {
- prefixCls: 'rc-dropdown',
- trigger: ['hover'],
- showAction: [],
- overlayClassName: '',
- overlayStyle: {},
- defaultVisible: false,
- onVisibleChange: function onVisibleChange() {},
-
- placement: 'bottomLeft'
- };
-
- var _initialiseProps = function _initialiseProps() {
- var _this2 = this;
-
- this.onClick = function (e) {
- var props = _this2.props;
- var overlayProps = _this2.getOverlayElement().props;
- // do no call onVisibleChange, if you need click to hide, use onClick and control visible
- if (!('visible' in props)) {
- _this2.setState({
- visible: false
- });
- }
- if (props.onOverlayClick) {
- props.onOverlayClick(e);
- }
- if (overlayProps.onClick) {
- overlayProps.onClick(e);
- }
- };
-
- this.onVisibleChange = function (visible) {
- var props = _this2.props;
- if (!('visible' in props)) {
- _this2.setState({
- visible: visible
- });
- }
- props.onVisibleChange(visible);
- };
-
- this.getMinOverlayWidthMatchTrigger = function () {
- var _props3 = _this2.props,
- minOverlayWidthMatchTrigger = _props3.minOverlayWidthMatchTrigger,
- alignPoint = _props3.alignPoint;
-
- if ('minOverlayWidthMatchTrigger' in _this2.props) {
- return minOverlayWidthMatchTrigger;
- }
-
- return !alignPoint;
- };
-
- this.getMenuElement = function () {
- var prefixCls = _this2.props.prefixCls;
-
- var overlayElement = _this2.getOverlayElement();
- var extraOverlayProps = {
- prefixCls: prefixCls + '-menu',
- onClick: _this2.onClick
- };
- if (typeof overlayElement.type === 'string') {
- delete extraOverlayProps.prefixCls;
- }
- return __WEBPACK_IMPORTED_MODULE_0_react___default.a.cloneElement(overlayElement, extraOverlayProps);
- };
-
- this.afterVisibleChange = function (visible) {
- if (visible && _this2.getMinOverlayWidthMatchTrigger()) {
- var overlayNode = _this2.getPopupDomNode();
- var rootNode = __WEBPACK_IMPORTED_MODULE_2_react_dom___default.a.findDOMNode(_this2);
- if (rootNode && overlayNode && rootNode.offsetWidth > overlayNode.offsetWidth) {
- overlayNode.style.minWidth = rootNode.offsetWidth + 'px';
- if (_this2.trigger && _this2.trigger._component && _this2.trigger._component.alignInstance) {
- _this2.trigger._component.alignInstance.forceAlign();
- }
- }
- }
- };
-
- this.saveTrigger = function (node) {
- _this2.trigger = node;
- };
- };
-
- Object(__WEBPACK_IMPORTED_MODULE_6_react_lifecycles_compat__["polyfill"])(Dropdown);
-
- /* harmony default export */ __webpack_exports__["a"] = (Dropdown);
-
- /***/ }),
-
- /***/ 1063:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- /* unused harmony export placements */
- var autoAdjustOverflow = {
- adjustX: 1,
- adjustY: 1
- };
-
- var targetOffset = [0, 0];
-
- var placements = {
- topLeft: {
- points: ['bl', 'tl'],
- overflow: autoAdjustOverflow,
- offset: [0, -4],
- targetOffset: targetOffset
- },
- topCenter: {
- points: ['bc', 'tc'],
- overflow: autoAdjustOverflow,
- offset: [0, -4],
- targetOffset: targetOffset
- },
- topRight: {
- points: ['br', 'tr'],
- overflow: autoAdjustOverflow,
- offset: [0, -4],
- targetOffset: targetOffset
- },
- bottomLeft: {
- points: ['tl', 'bl'],
- overflow: autoAdjustOverflow,
- offset: [0, 4],
- targetOffset: targetOffset
- },
- bottomCenter: {
- points: ['tc', 'bc'],
- overflow: autoAdjustOverflow,
- offset: [0, 4],
- targetOffset: targetOffset
- },
- bottomRight: {
- points: ['tr', 'br'],
- overflow: autoAdjustOverflow,
- offset: [0, 4],
- targetOffset: targetOffset
- }
- };
-
- /* harmony default export */ __webpack_exports__["a"] = (placements);
-
- /***/ }),
-
- /***/ 1064:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var env = __webpack_require__(1316);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var each = zrUtil.each;
- var isObject = zrUtil.isObject;
- var isArray = zrUtil.isArray;
- /**
- * Make the name displayable. But we should
- * make sure it is not duplicated with user
- * specified name, so use '\0';
- */
-
- var DUMMY_COMPONENT_NAME_PREFIX = 'series\0';
- /**
- * If value is not array, then translate it to array.
- * @param {*} value
- * @return {Array} [value] or value
- */
-
- function normalizeToArray(value) {
- return value instanceof Array ? value : value == null ? [] : [value];
- }
- /**
- * Sync default option between normal and emphasis like `position` and `show`
- * In case some one will write code like
- * label: {
- * show: false,
- * position: 'outside',
- * fontSize: 18
- * },
- * emphasis: {
- * label: { show: true }
- * }
- * @param {Object} opt
- * @param {string} key
- * @param {Array.<string>} subOpts
- */
-
-
- function defaultEmphasis(opt, key, subOpts) {
- // Caution: performance sensitive.
- if (opt) {
- opt[key] = opt[key] || {};
- opt.emphasis = opt.emphasis || {};
- opt.emphasis[key] = opt.emphasis[key] || {}; // Default emphasis option from normal
-
- for (var i = 0, len = subOpts.length; i < len; i++) {
- var subOptName = subOpts[i];
-
- if (!opt.emphasis[key].hasOwnProperty(subOptName) && opt[key].hasOwnProperty(subOptName)) {
- opt.emphasis[key][subOptName] = opt[key][subOptName];
- }
- }
- }
- }
-
- var TEXT_STYLE_OPTIONS = ['fontStyle', 'fontWeight', 'fontSize', 'fontFamily', 'rich', 'tag', 'color', 'textBorderColor', 'textBorderWidth', 'width', 'height', 'lineHeight', 'align', 'verticalAlign', 'baseline', 'shadowColor', 'shadowBlur', 'shadowOffsetX', 'shadowOffsetY', 'textShadowColor', 'textShadowBlur', 'textShadowOffsetX', 'textShadowOffsetY', 'backgroundColor', 'borderColor', 'borderWidth', 'borderRadius', 'padding']; // modelUtil.LABEL_OPTIONS = modelUtil.TEXT_STYLE_OPTIONS.concat([
- // 'position', 'offset', 'rotate', 'origin', 'show', 'distance', 'formatter',
- // 'fontStyle', 'fontWeight', 'fontSize', 'fontFamily',
- // // FIXME: deprecated, check and remove it.
- // 'textStyle'
- // ]);
-
- /**
- * The method do not ensure performance.
- * data could be [12, 2323, {value: 223}, [1221, 23], {value: [2, 23]}]
- * This helper method retieves value from data.
- * @param {string|number|Date|Array|Object} dataItem
- * @return {number|string|Date|Array.<number|string|Date>}
- */
-
- function getDataItemValue(dataItem) {
- return isObject(dataItem) && !isArray(dataItem) && !(dataItem instanceof Date) ? dataItem.value : dataItem;
- }
- /**
- * data could be [12, 2323, {value: 223}, [1221, 23], {value: [2, 23]}]
- * This helper method determine if dataItem has extra option besides value
- * @param {string|number|Date|Array|Object} dataItem
- */
-
-
- function isDataItemOption(dataItem) {
- return isObject(dataItem) && !(dataItem instanceof Array); // // markLine data can be array
- // && !(dataItem[0] && isObject(dataItem[0]) && !(dataItem[0] instanceof Array));
- }
- /**
- * Mapping to exists for merge.
- *
- * @public
- * @param {Array.<Object>|Array.<module:echarts/model/Component>} exists
- * @param {Object|Array.<Object>} newCptOptions
- * @return {Array.<Object>} Result, like [{exist: ..., option: ...}, {}],
- * index of which is the same as exists.
- */
-
-
- function mappingToExists(exists, newCptOptions) {
- // Mapping by the order by original option (but not order of
- // new option) in merge mode. Because we should ensure
- // some specified index (like xAxisIndex) is consistent with
- // original option, which is easy to understand, espatially in
- // media query. And in most case, merge option is used to
- // update partial option but not be expected to change order.
- newCptOptions = (newCptOptions || []).slice();
- var result = zrUtil.map(exists || [], function (obj, index) {
- return {
- exist: obj
- };
- }); // Mapping by id or name if specified.
-
- each(newCptOptions, function (cptOption, index) {
- if (!isObject(cptOption)) {
- return;
- } // id has highest priority.
-
-
- for (var i = 0; i < result.length; i++) {
- if (!result[i].option // Consider name: two map to one.
- && cptOption.id != null && result[i].exist.id === cptOption.id + '') {
- result[i].option = cptOption;
- newCptOptions[index] = null;
- return;
- }
- }
-
- for (var i = 0; i < result.length; i++) {
- var exist = result[i].exist;
-
- if (!result[i].option // Consider name: two map to one.
- // Can not match when both ids exist but different.
- && (exist.id == null || cptOption.id == null) && cptOption.name != null && !isIdInner(cptOption) && !isIdInner(exist) && exist.name === cptOption.name + '') {
- result[i].option = cptOption;
- newCptOptions[index] = null;
- return;
- }
- }
- }); // Otherwise mapping by index.
-
- each(newCptOptions, function (cptOption, index) {
- if (!isObject(cptOption)) {
- return;
- }
-
- var i = 0;
-
- for (; i < result.length; i++) {
- var exist = result[i].exist;
-
- if (!result[i].option // Existing model that already has id should be able to
- // mapped to (because after mapping performed model may
- // be assigned with a id, whish should not affect next
- // mapping), except those has inner id.
- && !isIdInner(exist) // Caution:
- // Do not overwrite id. But name can be overwritten,
- // because axis use name as 'show label text'.
- // 'exist' always has id and name and we dont
- // need to check it.
- && cptOption.id == null) {
- result[i].option = cptOption;
- break;
- }
- }
-
- if (i >= result.length) {
- result.push({
- option: cptOption
- });
- }
- });
- return result;
- }
- /**
- * Make id and name for mapping result (result of mappingToExists)
- * into `keyInfo` field.
- *
- * @public
- * @param {Array.<Object>} Result, like [{exist: ..., option: ...}, {}],
- * which order is the same as exists.
- * @return {Array.<Object>} The input.
- */
-
-
- function makeIdAndName(mapResult) {
- // We use this id to hash component models and view instances
- // in echarts. id can be specified by user, or auto generated.
- // The id generation rule ensures new view instance are able
- // to mapped to old instance when setOption are called in
- // no-merge mode. So we generate model id by name and plus
- // type in view id.
- // name can be duplicated among components, which is convenient
- // to specify multi components (like series) by one name.
- // Ensure that each id is distinct.
- var idMap = zrUtil.createHashMap();
- each(mapResult, function (item, index) {
- var existCpt = item.exist;
- existCpt && idMap.set(existCpt.id, item);
- });
- each(mapResult, function (item, index) {
- var opt = item.option;
- zrUtil.assert(!opt || opt.id == null || !idMap.get(opt.id) || idMap.get(opt.id) === item, 'id duplicates: ' + (opt && opt.id));
- opt && opt.id != null && idMap.set(opt.id, item);
- !item.keyInfo && (item.keyInfo = {});
- }); // Make name and id.
-
- each(mapResult, function (item, index) {
- var existCpt = item.exist;
- var opt = item.option;
- var keyInfo = item.keyInfo;
-
- if (!isObject(opt)) {
- return;
- } // name can be overwitten. Consider case: axis.name = '20km'.
- // But id generated by name will not be changed, which affect
- // only in that case: setOption with 'not merge mode' and view
- // instance will be recreated, which can be accepted.
-
-
- keyInfo.name = opt.name != null ? opt.name + '' : existCpt ? existCpt.name // Avoid diffferent series has the same name,
- // because name may be used like in color pallet.
- : DUMMY_COMPONENT_NAME_PREFIX + index;
-
- if (existCpt) {
- keyInfo.id = existCpt.id;
- } else if (opt.id != null) {
- keyInfo.id = opt.id + '';
- } else {
- // Consider this situatoin:
- // optionA: [{name: 'a'}, {name: 'a'}, {..}]
- // optionB [{..}, {name: 'a'}, {name: 'a'}]
- // Series with the same name between optionA and optionB
- // should be mapped.
- var idNum = 0;
-
- do {
- keyInfo.id = '\0' + keyInfo.name + '\0' + idNum++;
- } while (idMap.get(keyInfo.id));
- }
-
- idMap.set(keyInfo.id, item);
- });
- }
-
- function isNameSpecified(componentModel) {
- var name = componentModel.name; // Is specified when `indexOf` get -1 or > 0.
-
- return !!(name && name.indexOf(DUMMY_COMPONENT_NAME_PREFIX));
- }
- /**
- * @public
- * @param {Object} cptOption
- * @return {boolean}
- */
-
-
- function isIdInner(cptOption) {
- return isObject(cptOption) && cptOption.id && (cptOption.id + '').indexOf('\0_ec_\0') === 0;
- }
- /**
- * A helper for removing duplicate items between batchA and batchB,
- * and in themselves, and categorize by series.
- *
- * @param {Array.<Object>} batchA Like: [{seriesId: 2, dataIndex: [32, 4, 5]}, ...]
- * @param {Array.<Object>} batchB Like: [{seriesId: 2, dataIndex: [32, 4, 5]}, ...]
- * @return {Array.<Array.<Object>, Array.<Object>>} result: [resultBatchA, resultBatchB]
- */
-
-
- function compressBatches(batchA, batchB) {
- var mapA = {};
- var mapB = {};
- makeMap(batchA || [], mapA);
- makeMap(batchB || [], mapB, mapA);
- return [mapToArray(mapA), mapToArray(mapB)];
-
- function makeMap(sourceBatch, map, otherMap) {
- for (var i = 0, len = sourceBatch.length; i < len; i++) {
- var seriesId = sourceBatch[i].seriesId;
- var dataIndices = normalizeToArray(sourceBatch[i].dataIndex);
- var otherDataIndices = otherMap && otherMap[seriesId];
-
- for (var j = 0, lenj = dataIndices.length; j < lenj; j++) {
- var dataIndex = dataIndices[j];
-
- if (otherDataIndices && otherDataIndices[dataIndex]) {
- otherDataIndices[dataIndex] = null;
- } else {
- (map[seriesId] || (map[seriesId] = {}))[dataIndex] = 1;
- }
- }
- }
- }
-
- function mapToArray(map, isData) {
- var result = [];
-
- for (var i in map) {
- if (map.hasOwnProperty(i) && map[i] != null) {
- if (isData) {
- result.push(+i);
- } else {
- var dataIndices = mapToArray(map[i], true);
- dataIndices.length && result.push({
- seriesId: i,
- dataIndex: dataIndices
- });
- }
- }
- }
-
- return result;
- }
- }
- /**
- * @param {module:echarts/data/List} data
- * @param {Object} payload Contains dataIndex (means rawIndex) / dataIndexInside / name
- * each of which can be Array or primary type.
- * @return {number|Array.<number>} dataIndex If not found, return undefined/null.
- */
-
-
- function queryDataIndex(data, payload) {
- if (payload.dataIndexInside != null) {
- return payload.dataIndexInside;
- } else if (payload.dataIndex != null) {
- return zrUtil.isArray(payload.dataIndex) ? zrUtil.map(payload.dataIndex, function (value) {
- return data.indexOfRawIndex(value);
- }) : data.indexOfRawIndex(payload.dataIndex);
- } else if (payload.name != null) {
- return zrUtil.isArray(payload.name) ? zrUtil.map(payload.name, function (value) {
- return data.indexOfName(value);
- }) : data.indexOfName(payload.name);
- }
- }
- /**
- * Enable property storage to any host object.
- * Notice: Serialization is not supported.
- *
- * For example:
- * var inner = zrUitl.makeInner();
- *
- * function some1(hostObj) {
- * inner(hostObj).someProperty = 1212;
- * ...
- * }
- * function some2() {
- * var fields = inner(this);
- * fields.someProperty1 = 1212;
- * fields.someProperty2 = 'xx';
- * ...
- * }
- *
- * @return {Function}
- */
-
-
- function makeInner() {
- // Consider different scope by es module import.
- var key = '__\0ec_inner_' + innerUniqueIndex++ + '_' + Math.random().toFixed(5);
- return function (hostObj) {
- return hostObj[key] || (hostObj[key] = {});
- };
- }
-
- var innerUniqueIndex = 0;
- /**
- * @param {module:echarts/model/Global} ecModel
- * @param {string|Object} finder
- * If string, e.g., 'geo', means {geoIndex: 0}.
- * If Object, could contain some of these properties below:
- * {
- * seriesIndex, seriesId, seriesName,
- * geoIndex, geoId, geoName,
- * bmapIndex, bmapId, bmapName,
- * xAxisIndex, xAxisId, xAxisName,
- * yAxisIndex, yAxisId, yAxisName,
- * gridIndex, gridId, gridName,
- * ... (can be extended)
- * }
- * Each properties can be number|string|Array.<number>|Array.<string>
- * For example, a finder could be
- * {
- * seriesIndex: 3,
- * geoId: ['aa', 'cc'],
- * gridName: ['xx', 'rr']
- * }
- * xxxIndex can be set as 'all' (means all xxx) or 'none' (means not specify)
- * If nothing or null/undefined specified, return nothing.
- * @param {Object} [opt]
- * @param {string} [opt.defaultMainType]
- * @param {Array.<string>} [opt.includeMainTypes]
- * @return {Object} result like:
- * {
- * seriesModels: [seriesModel1, seriesModel2],
- * seriesModel: seriesModel1, // The first model
- * geoModels: [geoModel1, geoModel2],
- * geoModel: geoModel1, // The first model
- * ...
- * }
- */
-
- function parseFinder(ecModel, finder, opt) {
- if (zrUtil.isString(finder)) {
- var obj = {};
- obj[finder + 'Index'] = 0;
- finder = obj;
- }
-
- var defaultMainType = opt && opt.defaultMainType;
-
- if (defaultMainType && !has(finder, defaultMainType + 'Index') && !has(finder, defaultMainType + 'Id') && !has(finder, defaultMainType + 'Name')) {
- finder[defaultMainType + 'Index'] = 0;
- }
-
- var result = {};
- each(finder, function (value, key) {
- var value = finder[key]; // Exclude 'dataIndex' and other illgal keys.
-
- if (key === 'dataIndex' || key === 'dataIndexInside') {
- result[key] = value;
- return;
- }
-
- var parsedKey = key.match(/^(\w+)(Index|Id|Name)$/) || [];
- var mainType = parsedKey[1];
- var queryType = (parsedKey[2] || '').toLowerCase();
-
- if (!mainType || !queryType || value == null || queryType === 'index' && value === 'none' || opt && opt.includeMainTypes && zrUtil.indexOf(opt.includeMainTypes, mainType) < 0) {
- return;
- }
-
- var queryParam = {
- mainType: mainType
- };
-
- if (queryType !== 'index' || value !== 'all') {
- queryParam[queryType] = value;
- }
-
- var models = ecModel.queryComponents(queryParam);
- result[mainType + 'Models'] = models;
- result[mainType + 'Model'] = models[0];
- });
- return result;
- }
-
- function has(obj, prop) {
- return obj && obj.hasOwnProperty(prop);
- }
-
- function setAttribute(dom, key, value) {
- dom.setAttribute ? dom.setAttribute(key, value) : dom[key] = value;
- }
-
- function getAttribute(dom, key) {
- return dom.getAttribute ? dom.getAttribute(key) : dom[key];
- }
-
- function getTooltipRenderMode(renderModeOption) {
- if (renderModeOption === 'auto') {
- // Using html when `document` exists, use richText otherwise
- return env.domSupported ? 'html' : 'richText';
- } else {
- return renderModeOption || 'html';
- }
- }
- /**
- * Group a list by key.
- *
- * @param {Array} array
- * @param {Function} getKey
- * param {*} Array item
- * return {string} key
- * @return {Object} Result
- * {Array}: keys,
- * {module:zrender/core/util/HashMap} buckets: {key -> Array}
- */
-
-
- function groupData(array, getKey) {
- var buckets = zrUtil.createHashMap();
- var keys = [];
- zrUtil.each(array, function (item) {
- var key = getKey(item);
- (buckets.get(key) || (keys.push(key), buckets.set(key, []))).push(item);
- });
- return {
- keys: keys,
- buckets: buckets
- };
- }
-
- exports.normalizeToArray = normalizeToArray;
- exports.defaultEmphasis = defaultEmphasis;
- exports.TEXT_STYLE_OPTIONS = TEXT_STYLE_OPTIONS;
- exports.getDataItemValue = getDataItemValue;
- exports.isDataItemOption = isDataItemOption;
- exports.mappingToExists = mappingToExists;
- exports.makeIdAndName = makeIdAndName;
- exports.isNameSpecified = isNameSpecified;
- exports.isIdInner = isIdInner;
- exports.compressBatches = compressBatches;
- exports.queryDataIndex = queryDataIndex;
- exports.makeInner = makeInner;
- exports.parseFinder = parseFinder;
- exports.setAttribute = setAttribute;
- exports.getAttribute = getAttribute;
- exports.getTooltipRenderMode = getTooltipRenderMode;
- exports.groupData = groupData;
-
- /***/ }),
-
- /***/ 1065:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports["default"] = void 0;
-
- var React = _interopRequireWildcard(__webpack_require__(0));
-
- var _classnames = _interopRequireDefault(__webpack_require__(3));
-
- var _button = _interopRequireDefault(__webpack_require__(75));
-
- var _configProvider = __webpack_require__(11);
-
- var _dropdown = _interopRequireDefault(__webpack_require__(911));
-
- var _icon = _interopRequireDefault(__webpack_require__(26));
-
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
-
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
-
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
-
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
-
- function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
-
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
-
- 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 _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
-
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
-
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
-
- var __rest = void 0 && (void 0).__rest || function (s, e) {
- var t = {};
-
- for (var p in s) {
- if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
- }
-
- if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
- }
- return t;
- };
-
- var ButtonGroup = _button["default"].Group;
-
- var DropdownButton =
- /*#__PURE__*/
- function (_React$Component) {
- _inherits(DropdownButton, _React$Component);
-
- function DropdownButton() {
- var _this;
-
- _classCallCheck(this, DropdownButton);
-
- _this = _possibleConstructorReturn(this, _getPrototypeOf(DropdownButton).apply(this, arguments));
-
- _this.renderButton = function (_ref) {
- var getContextPopupContainer = _ref.getPopupContainer,
- getPrefixCls = _ref.getPrefixCls;
-
- var _a = _this.props,
- customizePrefixCls = _a.prefixCls,
- type = _a.type,
- disabled = _a.disabled,
- onClick = _a.onClick,
- htmlType = _a.htmlType,
- children = _a.children,
- className = _a.className,
- overlay = _a.overlay,
- trigger = _a.trigger,
- align = _a.align,
- visible = _a.visible,
- onVisibleChange = _a.onVisibleChange,
- placement = _a.placement,
- getPopupContainer = _a.getPopupContainer,
- href = _a.href,
- _a$icon = _a.icon,
- icon = _a$icon === void 0 ? React.createElement(_icon["default"], {
- type: "ellipsis"
- }) : _a$icon,
- title = _a.title,
- restProps = __rest(_a, ["prefixCls", "type", "disabled", "onClick", "htmlType", "children", "className", "overlay", "trigger", "align", "visible", "onVisibleChange", "placement", "getPopupContainer", "href", "icon", "title"]);
-
- var prefixCls = getPrefixCls('dropdown-button', customizePrefixCls);
- var dropdownProps = {
- align: align,
- overlay: overlay,
- disabled: disabled,
- trigger: disabled ? [] : trigger,
- onVisibleChange: onVisibleChange,
- placement: placement,
- getPopupContainer: getPopupContainer || getContextPopupContainer
- };
-
- if ('visible' in _this.props) {
- dropdownProps.visible = visible;
- }
-
- return React.createElement(ButtonGroup, _extends({}, restProps, {
- className: (0, _classnames["default"])(prefixCls, className)
- }), React.createElement(_button["default"], {
- type: type,
- disabled: disabled,
- onClick: onClick,
- htmlType: htmlType,
- href: href,
- title: title
- }, children), React.createElement(_dropdown["default"], dropdownProps, React.createElement(_button["default"], {
- type: type
- }, icon)));
- };
-
- return _this;
- }
-
- _createClass(DropdownButton, [{
- key: "render",
- value: function render() {
- return React.createElement(_configProvider.ConfigConsumer, null, this.renderButton);
- }
- }]);
-
- return DropdownButton;
- }(React.Component);
-
- exports["default"] = DropdownButton;
- DropdownButton.defaultProps = {
- placement: 'bottomRight',
- type: 'default'
- };
- //# sourceMappingURL=dropdown-button.js.map
-
-
- /***/ }),
-
- /***/ 1071:
- /***/ (function(module, exports, __webpack_require__) {
-
- var overArg = __webpack_require__(975);
-
- /** Built-in value references. */
- var getPrototype = overArg(Object.getPrototypeOf, Object);
-
- module.exports = getPrototype;
-
-
- /***/ }),
-
- /***/ 1072:
- /***/ (function(module, exports, __webpack_require__) {
-
- var arrayLikeKeys = __webpack_require__(976),
- baseKeysIn = __webpack_require__(1202),
- isArrayLike = __webpack_require__(896);
-
- /**
- * Creates an array of the own and inherited enumerable property names of `object`.
- *
- * **Note:** Non-object values are coerced to objects.
- *
- * @static
- * @memberOf _
- * @since 3.0.0
- * @category Object
- * @param {Object} object The object to query.
- * @returns {Array} Returns the array of property names.
- * @example
- *
- * function Foo() {
- * this.a = 1;
- * this.b = 2;
- * }
- *
- * Foo.prototype.c = 3;
- *
- * _.keysIn(new Foo);
- * // => ['a', 'b', 'c'] (iteration order is not guaranteed)
- */
- function keysIn(object) {
- return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object);
- }
-
- module.exports = keysIn;
-
-
- /***/ }),
-
- /***/ 1081:
- /***/ (function(module, exports, __webpack_require__) {
-
- /* WEBPACK VAR INJECTION */(function(global) {
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // (1) The code `if (__DEV__) ...` can be removed by build tool.
- // (2) If intend to use `__DEV__`, this module should be imported. Use a global
- // variable `__DEV__` may cause that miss the declaration (see #6535), or the
- // declaration is behind of the using position (for example in `Model.extent`,
- // And tools like rollup can not analysis the dependency if not import).
- var dev; // In browser
-
- if (typeof window !== 'undefined') {
- dev = window.__DEV__;
- } // In node
- else if (typeof global !== 'undefined') {
- dev = global.__DEV__;
- }
-
- if (typeof dev === 'undefined') {
- dev = true;
- }
-
- var __DEV__ = dev;
- exports.__DEV__ = __DEV__;
- /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(32)))
-
- /***/ }),
-
- /***/ 1085:
- /***/ (function(module, exports, __webpack_require__) {
-
- var baseAssignValue = __webpack_require__(887),
- eq = __webpack_require__(870);
-
- /**
- * This function is like `assignValue` except that it doesn't assign
- * `undefined` values.
- *
- * @private
- * @param {Object} object The object to modify.
- * @param {string} key The key of the property to assign.
- * @param {*} value The value to assign.
- */
- function assignMergeValue(object, key, value) {
- if ((value !== undefined && !eq(object[key], value)) ||
- (value === undefined && !(key in object))) {
- baseAssignValue(object, key, value);
- }
- }
-
- module.exports = assignMergeValue;
-
-
- /***/ }),
-
- /***/ 1086:
- /***/ (function(module, exports) {
-
- /**
- * Gets the value at `key`, unless `key` is "__proto__" or "constructor".
- *
- * @private
- * @param {Object} object The object to query.
- * @param {string} key The key of the property to get.
- * @returns {*} Returns the property value.
- */
- function safeGet(object, key) {
- if (key === 'constructor' && typeof object[key] === 'function') {
- return;
- }
-
- if (key == '__proto__') {
- return;
- }
-
- return object[key];
- }
-
- module.exports = safeGet;
-
-
- /***/ }),
-
- /***/ 1103:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
-
- function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
-
- function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
-
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
-
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
-
- 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 _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
-
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
-
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
-
- var __importStar = this && this.__importStar || function (mod) {
- if (mod && mod.__esModule) return mod;
- var result = {};
- if (mod != null) for (var k in mod) {
- if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
- }
- result["default"] = mod;
- return result;
- };
-
- var __importDefault = this && this.__importDefault || function (mod) {
- return mod && mod.__esModule ? mod : {
- "default": mod
- };
- };
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
-
- var React = __importStar(__webpack_require__(0));
-
- var PropTypes = __importStar(__webpack_require__(1));
-
- var mini_store_1 = __webpack_require__(90);
-
- var classnames_1 = __importDefault(__webpack_require__(3));
-
- var ColGroup_1 = __importDefault(__webpack_require__(1289));
-
- var TableHeader_1 = __importDefault(__webpack_require__(1290));
-
- var TableRow_1 = __importDefault(__webpack_require__(1104));
-
- var ExpandableRow_1 = __importDefault(__webpack_require__(1293));
-
- var BaseTable =
- /*#__PURE__*/
- function (_React$Component) {
- _inherits(BaseTable, _React$Component);
-
- function BaseTable() {
- var _this;
-
- _classCallCheck(this, BaseTable);
-
- _this = _possibleConstructorReturn(this, _getPrototypeOf(BaseTable).apply(this, arguments));
-
- _this.handleRowHover = function (isHover, key) {
- _this.props.store.setState({
- currentHoverKey: isHover ? key : null
- });
- };
-
- _this.renderRows = function (renderData, indent) {
- var ancestorKeys = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : [];
- var table = _this.context.table;
- var columnManager = table.columnManager,
- components = table.components;
- var _table$props = table.props,
- prefixCls = _table$props.prefixCls,
- childrenColumnName = _table$props.childrenColumnName,
- rowClassName = _table$props.rowClassName,
- rowRef = _table$props.rowRef,
- onRowClick = _table$props.onRowClick,
- onRowDoubleClick = _table$props.onRowDoubleClick,
- onRowContextMenu = _table$props.onRowContextMenu,
- onRowMouseEnter = _table$props.onRowMouseEnter,
- onRowMouseLeave = _table$props.onRowMouseLeave,
- onRow = _table$props.onRow;
- var _this$props = _this.props,
- getRowKey = _this$props.getRowKey,
- fixed = _this$props.fixed,
- expander = _this$props.expander,
- isAnyColumnsFixed = _this$props.isAnyColumnsFixed;
- var rows = [];
-
- var _loop = function _loop(i) {
- var record = renderData[i];
- var key = getRowKey(record, i);
- var className = typeof rowClassName === 'string' ? rowClassName : rowClassName(record, i, indent);
- var onHoverProps = {};
-
- if (columnManager.isAnyColumnsFixed()) {
- onHoverProps.onHover = _this.handleRowHover;
- }
-
- var leafColumns = void 0;
-
- if (fixed === 'left') {
- leafColumns = columnManager.leftLeafColumns();
- } else if (fixed === 'right') {
- leafColumns = columnManager.rightLeafColumns();
- } else {
- leafColumns = _this.getColumns(columnManager.leafColumns());
- }
-
- var rowPrefixCls = "".concat(prefixCls, "-row");
- var row = React.createElement(ExpandableRow_1.default, Object.assign({}, expander.props, {
- fixed: fixed,
- index: i,
- prefixCls: rowPrefixCls,
- record: record,
- key: key,
- rowKey: key,
- onRowClick: onRowClick,
- needIndentSpaced: expander.needIndentSpaced,
- onExpandedChange: expander.handleExpandChange
- }), function (expandableRow) {
- return React.createElement(TableRow_1.default, Object.assign({
- fixed: fixed,
- indent: indent,
- className: className,
- record: record,
- index: i,
- prefixCls: rowPrefixCls,
- childrenColumnName: childrenColumnName,
- columns: leafColumns,
- onRow: onRow,
- onRowDoubleClick: onRowDoubleClick,
- onRowContextMenu: onRowContextMenu,
- onRowMouseEnter: onRowMouseEnter,
- onRowMouseLeave: onRowMouseLeave
- }, onHoverProps, {
- rowKey: key,
- ancestorKeys: ancestorKeys,
- ref: rowRef(record, i, indent),
- components: components,
- isAnyColumnsFixed: isAnyColumnsFixed
- }, expandableRow));
- });
- rows.push(row);
- expander.renderRows(_this.renderRows, rows, record, i, indent, fixed, key, ancestorKeys);
- };
-
- for (var i = 0; i < renderData.length; i += 1) {
- _loop(i);
- }
-
- return rows;
- };
-
- return _this;
- }
-
- _createClass(BaseTable, [{
- key: "getColumns",
- value: function getColumns(cols) {
- var _this$props2 = this.props,
- _this$props2$columns = _this$props2.columns,
- columns = _this$props2$columns === void 0 ? [] : _this$props2$columns,
- fixed = _this$props2.fixed;
- var table = this.context.table;
- var prefixCls = table.props.prefixCls;
- return (cols || columns).map(function (column) {
- return _objectSpread({}, column, {
- className: !!column.fixed && !fixed ? classnames_1.default("".concat(prefixCls, "-fixed-columns-in-body"), column.className) : column.className
- });
- });
- }
- }, {
- key: "render",
- value: function render() {
- var table = this.context.table;
- var components = table.components;
- var _table$props2 = table.props,
- prefixCls = _table$props2.prefixCls,
- scroll = _table$props2.scroll,
- data = _table$props2.data,
- getBodyWrapper = _table$props2.getBodyWrapper;
- var _this$props3 = this.props,
- expander = _this$props3.expander,
- tableClassName = _this$props3.tableClassName,
- hasHead = _this$props3.hasHead,
- hasBody = _this$props3.hasBody,
- fixed = _this$props3.fixed;
- var tableStyle = {};
-
- if (!fixed && scroll.x) {
- // not set width, then use content fixed width
- tableStyle.width = scroll.x === true ? 'auto' : scroll.x;
- }
-
- var Table = hasBody ? components.table : 'table';
- var BodyWrapper = components.body.wrapper;
- var body;
-
- if (hasBody) {
- body = React.createElement(BodyWrapper, {
- className: "".concat(prefixCls, "-tbody")
- }, this.renderRows(data, 0));
-
- if (getBodyWrapper) {
- body = getBodyWrapper(body);
- }
- }
-
- var columns = this.getColumns();
- return React.createElement(Table, {
- className: tableClassName,
- style: tableStyle,
- key: "table"
- }, React.createElement(ColGroup_1.default, {
- columns: columns,
- fixed: fixed
- }), hasHead && React.createElement(TableHeader_1.default, {
- expander: expander,
- columns: columns,
- fixed: fixed
- }), body);
- }
- }]);
-
- return BaseTable;
- }(React.Component);
-
- BaseTable.contextTypes = {
- table: PropTypes.any
- };
- exports.default = mini_store_1.connect()(BaseTable);
-
- /***/ }),
-
- /***/ 1104:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
-
- function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
-
- function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
-
- function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
-
- function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
-
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
-
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
-
- 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 _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
-
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
-
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
-
- var __importStar = this && this.__importStar || function (mod) {
- if (mod && mod.__esModule) return mod;
- var result = {};
- if (mod != null) for (var k in mod) {
- if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
- }
- result["default"] = mod;
- return result;
- };
-
- var __importDefault = this && this.__importDefault || function (mod) {
- return mod && mod.__esModule ? mod : {
- "default": mod
- };
- };
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
-
- var React = __importStar(__webpack_require__(0));
-
- var react_dom_1 = __importDefault(__webpack_require__(4));
-
- var warning_1 = __importDefault(__webpack_require__(186));
-
- var mini_store_1 = __webpack_require__(90);
-
- var react_lifecycles_compat_1 = __webpack_require__(7);
-
- var classnames_1 = __importDefault(__webpack_require__(3));
-
- var TableCell_1 = __importDefault(__webpack_require__(1292));
-
- var TableRow =
- /*#__PURE__*/
- function (_React$Component) {
- _inherits(TableRow, _React$Component);
-
- function TableRow() {
- var _this;
-
- _classCallCheck(this, TableRow);
-
- _this = _possibleConstructorReturn(this, _getPrototypeOf(TableRow).apply(this, arguments));
- _this.state = {};
-
- _this.onTriggerEvent = function (rowPropFunc, legacyFunc, additionalFunc) {
- var _this$props = _this.props,
- record = _this$props.record,
- index = _this$props.index;
- return function () {
- // Additional function like trigger `this.onHover` to handle self logic
- if (additionalFunc) {
- additionalFunc();
- } // [Legacy] Some legacy function like `onRowClick`.
-
-
- for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
- args[_key] = arguments[_key];
- }
-
- var event = args[0];
-
- if (legacyFunc) {
- legacyFunc(record, index, event);
- } // Pass to the function from `onRow`
-
-
- if (rowPropFunc) {
- rowPropFunc.apply(void 0, args);
- }
- };
- };
-
- _this.onMouseEnter = function () {
- var _this$props2 = _this.props,
- onHover = _this$props2.onHover,
- rowKey = _this$props2.rowKey;
- onHover(true, rowKey);
- };
-
- _this.onMouseLeave = function () {
- var _this$props3 = _this.props,
- onHover = _this$props3.onHover,
- rowKey = _this$props3.rowKey;
- onHover(false, rowKey);
- };
-
- return _this;
- }
-
- _createClass(TableRow, [{
- key: "componentDidMount",
- value: function componentDidMount() {
- if (this.state.shouldRender) {
- this.saveRowRef();
- }
- }
- }, {
- key: "shouldComponentUpdate",
- value: function shouldComponentUpdate(nextProps) {
- return !!(this.props.visible || nextProps.visible);
- }
- }, {
- key: "componentDidUpdate",
- value: function componentDidUpdate() {
- if (this.state.shouldRender && !this.rowRef) {
- this.saveRowRef();
- }
- }
- }, {
- key: "setExpandedRowHeight",
- value: function setExpandedRowHeight() {
- var _this$props4 = this.props,
- store = _this$props4.store,
- rowKey = _this$props4.rowKey;
-
- var _store$getState = store.getState(),
- expandedRowsHeight = _store$getState.expandedRowsHeight;
-
- var _this$rowRef$getBound = this.rowRef.getBoundingClientRect(),
- height = _this$rowRef$getBound.height;
-
- expandedRowsHeight = _objectSpread({}, expandedRowsHeight, _defineProperty({}, rowKey, height));
- store.setState({
- expandedRowsHeight: expandedRowsHeight
- });
- }
- }, {
- key: "setRowHeight",
- value: function setRowHeight() {
- var _this$props5 = this.props,
- store = _this$props5.store,
- rowKey = _this$props5.rowKey;
-
- var _store$getState2 = store.getState(),
- fixedColumnsBodyRowsHeight = _store$getState2.fixedColumnsBodyRowsHeight;
-
- var _this$rowRef$getBound2 = this.rowRef.getBoundingClientRect(),
- height = _this$rowRef$getBound2.height;
-
- store.setState({
- fixedColumnsBodyRowsHeight: _objectSpread({}, fixedColumnsBodyRowsHeight, _defineProperty({}, rowKey, height))
- });
- }
- }, {
- key: "getStyle",
- value: function getStyle() {
- var _this$props6 = this.props,
- height = _this$props6.height,
- visible = _this$props6.visible;
-
- if (height && height !== this.style.height) {
- this.style = _objectSpread({}, this.style, {
- height: height
- });
- }
-
- if (!visible && !this.style.display) {
- this.style = _objectSpread({}, this.style, {
- display: 'none'
- });
- }
-
- return this.style;
- }
- }, {
- key: "saveRowRef",
- value: function saveRowRef() {
- this.rowRef = react_dom_1.default.findDOMNode(this);
- var _this$props7 = this.props,
- isAnyColumnsFixed = _this$props7.isAnyColumnsFixed,
- fixed = _this$props7.fixed,
- expandedRow = _this$props7.expandedRow,
- ancestorKeys = _this$props7.ancestorKeys;
-
- if (!isAnyColumnsFixed || !this.rowRef) {
- return;
- }
-
- if (!fixed && expandedRow) {
- this.setExpandedRowHeight();
- }
-
- if (!fixed && ancestorKeys.length >= 0) {
- this.setRowHeight();
- }
- }
- }, {
- key: "render",
- value: function render() {
- if (!this.state.shouldRender) {
- return null;
- }
-
- var _this$props8 = this.props,
- prefixCls = _this$props8.prefixCls,
- columns = _this$props8.columns,
- record = _this$props8.record,
- rowKey = _this$props8.rowKey,
- index = _this$props8.index,
- onRow = _this$props8.onRow,
- indent = _this$props8.indent,
- indentSize = _this$props8.indentSize,
- hovered = _this$props8.hovered,
- height = _this$props8.height,
- visible = _this$props8.visible,
- components = _this$props8.components,
- hasExpandIcon = _this$props8.hasExpandIcon,
- renderExpandIcon = _this$props8.renderExpandIcon,
- renderExpandIconCell = _this$props8.renderExpandIconCell,
- onRowClick = _this$props8.onRowClick,
- onRowDoubleClick = _this$props8.onRowDoubleClick,
- onRowMouseEnter = _this$props8.onRowMouseEnter,
- onRowMouseLeave = _this$props8.onRowMouseLeave,
- onRowContextMenu = _this$props8.onRowContextMenu;
- var BodyRow = components.body.row;
- var BodyCell = components.body.cell;
- var className = this.props.className;
-
- if (hovered) {
- className += " ".concat(prefixCls, "-hover");
- }
-
- var cells = [];
- renderExpandIconCell(cells);
-
- for (var i = 0; i < columns.length; i += 1) {
- var column = columns[i];
- warning_1.default(column.onCellClick === undefined, 'column[onCellClick] is deprecated, please use column[onCell] instead.');
- cells.push(React.createElement(TableCell_1.default, {
- prefixCls: prefixCls,
- record: record,
- indentSize: indentSize,
- indent: indent,
- index: index,
- column: column,
- key: column.key || column.dataIndex,
- expandIcon: hasExpandIcon(i) && renderExpandIcon(),
- component: BodyCell
- }));
- }
-
- var _ref = onRow(record, index) || {},
- customClassName = _ref.className,
- customStyle = _ref.style,
- rowProps = _objectWithoutProperties(_ref, ["className", "style"]);
-
- var style = {
- height: height
- };
-
- if (!visible) {
- style.display = 'none';
- }
-
- style = _objectSpread({}, style, {}, customStyle);
- var rowClassName = classnames_1.default(prefixCls, className, "".concat(prefixCls, "-level-").concat(indent), customClassName);
- return React.createElement(BodyRow, Object.assign({}, rowProps, {
- onClick: this.onTriggerEvent(rowProps.onClick, onRowClick),
- onDoubleClick: this.onTriggerEvent(rowProps.onDoubleClick, onRowDoubleClick),
- onMouseEnter: this.onTriggerEvent(rowProps.onMouseEnter, onRowMouseEnter, this.onMouseEnter),
- onMouseLeave: this.onTriggerEvent(rowProps.onMouseLeave, onRowMouseLeave, this.onMouseLeave),
- onContextMenu: this.onTriggerEvent(rowProps.onContextMenu, onRowContextMenu),
- className: rowClassName,
- style: style,
- "data-row-key": rowKey
- }), cells);
- }
- }], [{
- key: "getDerivedStateFromProps",
- value: function getDerivedStateFromProps(nextProps, prevState) {
- if (prevState.visible || !prevState.visible && nextProps.visible) {
- return {
- shouldRender: true,
- visible: nextProps.visible
- };
- }
-
- return {
- visible: nextProps.visible
- };
- }
- }]);
-
- return TableRow;
- }(React.Component);
-
- TableRow.defaultProps = {
- onRow: function onRow() {},
- onHover: function onHover() {},
- hasExpandIcon: function hasExpandIcon() {},
- renderExpandIcon: function renderExpandIcon() {},
- renderExpandIconCell: function renderExpandIconCell() {}
- };
-
- function getRowHeight(state, props) {
- var expandedRowsHeight = state.expandedRowsHeight,
- fixedColumnsBodyRowsHeight = state.fixedColumnsBodyRowsHeight;
- var fixed = props.fixed,
- rowKey = props.rowKey;
-
- if (!fixed) {
- return null;
- }
-
- if (expandedRowsHeight[rowKey]) {
- return expandedRowsHeight[rowKey];
- }
-
- if (fixedColumnsBodyRowsHeight[rowKey]) {
- return fixedColumnsBodyRowsHeight[rowKey];
- }
-
- return null;
- }
-
- react_lifecycles_compat_1.polyfill(TableRow);
- exports.default = mini_store_1.connect(function (state, props) {
- var currentHoverKey = state.currentHoverKey,
- _state$expandedRowKey = state.expandedRowKeys,
- expandedRowKeys = _state$expandedRowKey === void 0 ? [] : _state$expandedRowKey;
- var rowKey = props.rowKey,
- ancestorKeys = props.ancestorKeys;
- var visible = ancestorKeys.length === 0 || ancestorKeys.every(function (k) {
- return expandedRowKeys.includes(k);
- });
- return {
- visible: visible,
- hovered: currentHoverKey === rowKey,
- height: getRowHeight(state, props)
- };
- })(TableRow);
-
- /***/ }),
-
- /***/ 1105:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
-
- var Column = function Column() {
- return null;
- };
-
- exports.default = Column;
-
- /***/ }),
-
- /***/ 1106:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- 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 _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
-
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
-
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
-
- var __importStar = this && this.__importStar || function (mod) {
- if (mod && mod.__esModule) return mod;
- var result = {};
- if (mod != null) for (var k in mod) {
- if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
- }
- result["default"] = mod;
- return result;
- };
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
-
- var React = __importStar(__webpack_require__(0));
-
- var ColumnGroup =
- /*#__PURE__*/
- function (_React$Component) {
- _inherits(ColumnGroup, _React$Component);
-
- function ColumnGroup() {
- _classCallCheck(this, ColumnGroup);
-
- return _possibleConstructorReturn(this, _getPrototypeOf(ColumnGroup).apply(this, arguments));
- }
-
- return ColumnGroup;
- }(React.Component);
-
- exports.default = ColumnGroup;
- ColumnGroup.isTableColumnGroup = true;
-
- /***/ }),
-
- /***/ 1107:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.flatArray = flatArray;
- exports.treeMap = treeMap;
- exports.flatFilter = flatFilter;
- exports.normalizeColumns = normalizeColumns;
- exports.generateValueMaps = generateValueMaps;
-
- var React = _interopRequireWildcard(__webpack_require__(0));
-
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
-
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
-
- function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _nonIterableSpread(); }
-
- function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance"); }
-
- function _iterableToArray(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); }
-
- function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } }
-
- function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
-
- function flatArray() {
- var data = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
- var childrenName = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'children';
- var result = [];
-
- var loop = function loop(array) {
- array.forEach(function (item) {
- if (item[childrenName]) {
- var newItem = _extends({}, item);
-
- delete newItem[childrenName];
- result.push(newItem);
-
- if (item[childrenName].length > 0) {
- loop(item[childrenName]);
- }
- } else {
- result.push(item);
- }
- });
- };
-
- loop(data);
- return result;
- }
-
- function treeMap(tree, mapper) {
- var childrenName = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'children';
- return tree.map(function (node, index) {
- var extra = {};
-
- if (node[childrenName]) {
- extra[childrenName] = treeMap(node[childrenName], mapper, childrenName);
- }
-
- return _extends(_extends({}, mapper(node, index)), extra);
- });
- }
-
- function flatFilter(tree, callback) {
- return tree.reduce(function (acc, node) {
- if (callback(node)) {
- acc.push(node);
- }
-
- if (node.children) {
- var children = flatFilter(node.children, callback);
- acc.push.apply(acc, _toConsumableArray(children));
- }
-
- return acc;
- }, []);
- }
-
- function normalizeColumns(elements) {
- var columns = [];
- React.Children.forEach(elements, function (element) {
- if (!React.isValidElement(element)) {
- return;
- }
-
- var column = _extends({}, element.props);
-
- if (element.key) {
- column.key = element.key;
- }
-
- if (element.type && element.type.__ANT_TABLE_COLUMN_GROUP) {
- column.children = normalizeColumns(column.children);
- }
-
- columns.push(column);
- });
- return columns;
- }
-
- function generateValueMaps(items) {
- var maps = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
- (items || []).forEach(function (_ref) {
- var value = _ref.value,
- children = _ref.children;
- maps[value.toString()] = value;
- generateValueMaps(children, maps);
- });
- return maps;
- }
- //# sourceMappingURL=util.js.map
-
-
- /***/ }),
-
- /***/ 1147:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- __webpack_require__(29);
-
- __webpack_require__(1210);
- //# sourceMappingURL=css.js.map
-
-
- /***/ }),
-
- /***/ 1148:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports["default"] = void 0;
-
- var React = _interopRequireWildcard(__webpack_require__(0));
-
- var _classnames = _interopRequireDefault(__webpack_require__(3));
-
- var _rcInputNumber = _interopRequireDefault(__webpack_require__(1212));
-
- var _icon = _interopRequireDefault(__webpack_require__(26));
-
- var _configProvider = __webpack_require__(11);
-
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
-
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
-
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
-
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
-
- function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
-
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
-
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
-
- 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 _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
-
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
-
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
-
- var __rest = void 0 && (void 0).__rest || function (s, e) {
- var t = {};
-
- for (var p in s) {
- if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
- }
-
- if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
- }
- return t;
- };
-
- var InputNumber =
- /*#__PURE__*/
- function (_React$Component) {
- _inherits(InputNumber, _React$Component);
-
- function InputNumber() {
- var _this;
-
- _classCallCheck(this, InputNumber);
-
- _this = _possibleConstructorReturn(this, _getPrototypeOf(InputNumber).apply(this, arguments));
-
- _this.saveInputNumber = function (inputNumberRef) {
- _this.inputNumberRef = inputNumberRef;
- };
-
- _this.renderInputNumber = function (_ref) {
- var _classNames;
-
- var getPrefixCls = _ref.getPrefixCls;
-
- var _a = _this.props,
- className = _a.className,
- size = _a.size,
- customizePrefixCls = _a.prefixCls,
- others = __rest(_a, ["className", "size", "prefixCls"]);
-
- var prefixCls = getPrefixCls('input-number', customizePrefixCls);
- var inputNumberClass = (0, _classnames["default"])((_classNames = {}, _defineProperty(_classNames, "".concat(prefixCls, "-lg"), size === 'large'), _defineProperty(_classNames, "".concat(prefixCls, "-sm"), size === 'small'), _classNames), className);
- var upIcon = React.createElement(_icon["default"], {
- type: "up",
- className: "".concat(prefixCls, "-handler-up-inner")
- });
- var downIcon = React.createElement(_icon["default"], {
- type: "down",
- className: "".concat(prefixCls, "-handler-down-inner")
- });
- return React.createElement(_rcInputNumber["default"], _extends({
- ref: _this.saveInputNumber,
- className: inputNumberClass,
- upHandler: upIcon,
- downHandler: downIcon,
- prefixCls: prefixCls
- }, others));
- };
-
- return _this;
- }
-
- _createClass(InputNumber, [{
- key: "focus",
- value: function focus() {
- this.inputNumberRef.focus();
- }
- }, {
- key: "blur",
- value: function blur() {
- this.inputNumberRef.blur();
- }
- }, {
- key: "render",
- value: function render() {
- return React.createElement(_configProvider.ConfigConsumer, null, this.renderInputNumber);
- }
- }]);
-
- return InputNumber;
- }(React.Component);
-
- exports["default"] = InputNumber;
- InputNumber.defaultProps = {
- step: 1
- };
- //# sourceMappingURL=index.js.map
-
-
- /***/ }),
-
- /***/ 1171:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var BoundingRect = __webpack_require__(1185);
-
- var _number = __webpack_require__(985);
-
- var parsePercent = _number.parsePercent;
-
- var formatUtil = __webpack_require__(1186);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // Layout helpers for each component positioning
- var each = zrUtil.each;
- /**
- * @public
- */
-
- var LOCATION_PARAMS = ['left', 'right', 'top', 'bottom', 'width', 'height'];
- /**
- * @public
- */
-
- var HV_NAMES = [['width', 'left', 'right'], ['height', 'top', 'bottom']];
-
- function boxLayout(orient, group, gap, maxWidth, maxHeight) {
- var x = 0;
- var y = 0;
-
- if (maxWidth == null) {
- maxWidth = Infinity;
- }
-
- if (maxHeight == null) {
- maxHeight = Infinity;
- }
-
- var currentLineMaxSize = 0;
- group.eachChild(function (child, idx) {
- var position = child.position;
- var rect = child.getBoundingRect();
- var nextChild = group.childAt(idx + 1);
- var nextChildRect = nextChild && nextChild.getBoundingRect();
- var nextX;
- var nextY;
-
- if (orient === 'horizontal') {
- var moveX = rect.width + (nextChildRect ? -nextChildRect.x + rect.x : 0);
- nextX = x + moveX; // Wrap when width exceeds maxWidth or meet a `newline` group
- // FIXME compare before adding gap?
-
- if (nextX > maxWidth || child.newline) {
- x = 0;
- nextX = moveX;
- y += currentLineMaxSize + gap;
- currentLineMaxSize = rect.height;
- } else {
- // FIXME: consider rect.y is not `0`?
- currentLineMaxSize = Math.max(currentLineMaxSize, rect.height);
- }
- } else {
- var moveY = rect.height + (nextChildRect ? -nextChildRect.y + rect.y : 0);
- nextY = y + moveY; // Wrap when width exceeds maxHeight or meet a `newline` group
-
- if (nextY > maxHeight || child.newline) {
- x += currentLineMaxSize + gap;
- y = 0;
- nextY = moveY;
- currentLineMaxSize = rect.width;
- } else {
- currentLineMaxSize = Math.max(currentLineMaxSize, rect.width);
- }
- }
-
- if (child.newline) {
- return;
- }
-
- position[0] = x;
- position[1] = y;
- orient === 'horizontal' ? x = nextX + gap : y = nextY + gap;
- });
- }
- /**
- * VBox or HBox layouting
- * @param {string} orient
- * @param {module:zrender/container/Group} group
- * @param {number} gap
- * @param {number} [width=Infinity]
- * @param {number} [height=Infinity]
- */
-
-
- var box = boxLayout;
- /**
- * VBox layouting
- * @param {module:zrender/container/Group} group
- * @param {number} gap
- * @param {number} [width=Infinity]
- * @param {number} [height=Infinity]
- */
-
- var vbox = zrUtil.curry(boxLayout, 'vertical');
- /**
- * HBox layouting
- * @param {module:zrender/container/Group} group
- * @param {number} gap
- * @param {number} [width=Infinity]
- * @param {number} [height=Infinity]
- */
-
- var hbox = zrUtil.curry(boxLayout, 'horizontal');
- /**
- * If x or x2 is not specified or 'center' 'left' 'right',
- * the width would be as long as possible.
- * If y or y2 is not specified or 'middle' 'top' 'bottom',
- * the height would be as long as possible.
- *
- * @param {Object} positionInfo
- * @param {number|string} [positionInfo.x]
- * @param {number|string} [positionInfo.y]
- * @param {number|string} [positionInfo.x2]
- * @param {number|string} [positionInfo.y2]
- * @param {Object} containerRect {width, height}
- * @param {string|number} margin
- * @return {Object} {width, height}
- */
-
- function getAvailableSize(positionInfo, containerRect, margin) {
- var containerWidth = containerRect.width;
- var containerHeight = containerRect.height;
- var x = parsePercent(positionInfo.x, containerWidth);
- var y = parsePercent(positionInfo.y, containerHeight);
- var x2 = parsePercent(positionInfo.x2, containerWidth);
- var y2 = parsePercent(positionInfo.y2, containerHeight);
- (isNaN(x) || isNaN(parseFloat(positionInfo.x))) && (x = 0);
- (isNaN(x2) || isNaN(parseFloat(positionInfo.x2))) && (x2 = containerWidth);
- (isNaN(y) || isNaN(parseFloat(positionInfo.y))) && (y = 0);
- (isNaN(y2) || isNaN(parseFloat(positionInfo.y2))) && (y2 = containerHeight);
- margin = formatUtil.normalizeCssArray(margin || 0);
- return {
- width: Math.max(x2 - x - margin[1] - margin[3], 0),
- height: Math.max(y2 - y - margin[0] - margin[2], 0)
- };
- }
- /**
- * Parse position info.
- *
- * @param {Object} positionInfo
- * @param {number|string} [positionInfo.left]
- * @param {number|string} [positionInfo.top]
- * @param {number|string} [positionInfo.right]
- * @param {number|string} [positionInfo.bottom]
- * @param {number|string} [positionInfo.width]
- * @param {number|string} [positionInfo.height]
- * @param {number|string} [positionInfo.aspect] Aspect is width / height
- * @param {Object} containerRect
- * @param {string|number} [margin]
- *
- * @return {module:zrender/core/BoundingRect}
- */
-
-
- function getLayoutRect(positionInfo, containerRect, margin) {
- margin = formatUtil.normalizeCssArray(margin || 0);
- var containerWidth = containerRect.width;
- var containerHeight = containerRect.height;
- var left = parsePercent(positionInfo.left, containerWidth);
- var top = parsePercent(positionInfo.top, containerHeight);
- var right = parsePercent(positionInfo.right, containerWidth);
- var bottom = parsePercent(positionInfo.bottom, containerHeight);
- var width = parsePercent(positionInfo.width, containerWidth);
- var height = parsePercent(positionInfo.height, containerHeight);
- var verticalMargin = margin[2] + margin[0];
- var horizontalMargin = margin[1] + margin[3];
- var aspect = positionInfo.aspect; // If width is not specified, calculate width from left and right
-
- if (isNaN(width)) {
- width = containerWidth - right - horizontalMargin - left;
- }
-
- if (isNaN(height)) {
- height = containerHeight - bottom - verticalMargin - top;
- }
-
- if (aspect != null) {
- // If width and height are not given
- // 1. Graph should not exceeds the container
- // 2. Aspect must be keeped
- // 3. Graph should take the space as more as possible
- // FIXME
- // Margin is not considered, because there is no case that both
- // using margin and aspect so far.
- if (isNaN(width) && isNaN(height)) {
- if (aspect > containerWidth / containerHeight) {
- width = containerWidth * 0.8;
- } else {
- height = containerHeight * 0.8;
- }
- } // Calculate width or height with given aspect
-
-
- if (isNaN(width)) {
- width = aspect * height;
- }
-
- if (isNaN(height)) {
- height = width / aspect;
- }
- } // If left is not specified, calculate left from right and width
-
-
- if (isNaN(left)) {
- left = containerWidth - right - width - horizontalMargin;
- }
-
- if (isNaN(top)) {
- top = containerHeight - bottom - height - verticalMargin;
- } // Align left and top
-
-
- switch (positionInfo.left || positionInfo.right) {
- case 'center':
- left = containerWidth / 2 - width / 2 - margin[3];
- break;
-
- case 'right':
- left = containerWidth - width - horizontalMargin;
- break;
- }
-
- switch (positionInfo.top || positionInfo.bottom) {
- case 'middle':
- case 'center':
- top = containerHeight / 2 - height / 2 - margin[0];
- break;
-
- case 'bottom':
- top = containerHeight - height - verticalMargin;
- break;
- } // If something is wrong and left, top, width, height are calculated as NaN
-
-
- left = left || 0;
- top = top || 0;
-
- if (isNaN(width)) {
- // Width may be NaN if only one value is given except width
- width = containerWidth - horizontalMargin - left - (right || 0);
- }
-
- if (isNaN(height)) {
- // Height may be NaN if only one value is given except height
- height = containerHeight - verticalMargin - top - (bottom || 0);
- }
-
- var rect = new BoundingRect(left + margin[3], top + margin[0], width, height);
- rect.margin = margin;
- return rect;
- }
- /**
- * Position a zr element in viewport
- * Group position is specified by either
- * {left, top}, {right, bottom}
- * If all properties exists, right and bottom will be igonred.
- *
- * Logic:
- * 1. Scale (against origin point in parent coord)
- * 2. Rotate (against origin point in parent coord)
- * 3. Traslate (with el.position by this method)
- * So this method only fixes the last step 'Traslate', which does not affect
- * scaling and rotating.
- *
- * If be called repeatly with the same input el, the same result will be gotten.
- *
- * @param {module:zrender/Element} el Should have `getBoundingRect` method.
- * @param {Object} positionInfo
- * @param {number|string} [positionInfo.left]
- * @param {number|string} [positionInfo.top]
- * @param {number|string} [positionInfo.right]
- * @param {number|string} [positionInfo.bottom]
- * @param {number|string} [positionInfo.width] Only for opt.boundingModel: 'raw'
- * @param {number|string} [positionInfo.height] Only for opt.boundingModel: 'raw'
- * @param {Object} containerRect
- * @param {string|number} margin
- * @param {Object} [opt]
- * @param {Array.<number>} [opt.hv=[1,1]] Only horizontal or only vertical.
- * @param {Array.<number>} [opt.boundingMode='all']
- * Specify how to calculate boundingRect when locating.
- * 'all': Position the boundingRect that is transformed and uioned
- * both itself and its descendants.
- * This mode simplies confine the elements in the bounding
- * of their container (e.g., using 'right: 0').
- * 'raw': Position the boundingRect that is not transformed and only itself.
- * This mode is useful when you want a element can overflow its
- * container. (Consider a rotated circle needs to be located in a corner.)
- * In this mode positionInfo.width/height can only be number.
- */
-
-
- function positionElement(el, positionInfo, containerRect, margin, opt) {
- var h = !opt || !opt.hv || opt.hv[0];
- var v = !opt || !opt.hv || opt.hv[1];
- var boundingMode = opt && opt.boundingMode || 'all';
-
- if (!h && !v) {
- return;
- }
-
- var rect;
-
- if (boundingMode === 'raw') {
- rect = el.type === 'group' ? new BoundingRect(0, 0, +positionInfo.width || 0, +positionInfo.height || 0) : el.getBoundingRect();
- } else {
- rect = el.getBoundingRect();
-
- if (el.needLocalTransform()) {
- var transform = el.getLocalTransform(); // Notice: raw rect may be inner object of el,
- // which should not be modified.
-
- rect = rect.clone();
- rect.applyTransform(transform);
- }
- } // The real width and height can not be specified but calculated by the given el.
-
-
- positionInfo = getLayoutRect(zrUtil.defaults({
- width: rect.width,
- height: rect.height
- }, positionInfo), containerRect, margin); // Because 'tranlate' is the last step in transform
- // (see zrender/core/Transformable#getLocalTransform),
- // we can just only modify el.position to get final result.
-
- var elPos = el.position;
- var dx = h ? positionInfo.x - rect.x : 0;
- var dy = v ? positionInfo.y - rect.y : 0;
- el.attr('position', boundingMode === 'raw' ? [dx, dy] : [elPos[0] + dx, elPos[1] + dy]);
- }
- /**
- * @param {Object} option Contains some of the properties in HV_NAMES.
- * @param {number} hvIdx 0: horizontal; 1: vertical.
- */
-
-
- function sizeCalculable(option, hvIdx) {
- return option[HV_NAMES[hvIdx][0]] != null || option[HV_NAMES[hvIdx][1]] != null && option[HV_NAMES[hvIdx][2]] != null;
- }
- /**
- * Consider Case:
- * When defulat option has {left: 0, width: 100}, and we set {right: 0}
- * through setOption or media query, using normal zrUtil.merge will cause
- * {right: 0} does not take effect.
- *
- * @example
- * ComponentModel.extend({
- * init: function () {
- * ...
- * var inputPositionParams = layout.getLayoutParams(option);
- * this.mergeOption(inputPositionParams);
- * },
- * mergeOption: function (newOption) {
- * newOption && zrUtil.merge(thisOption, newOption, true);
- * layout.mergeLayoutParam(thisOption, newOption);
- * }
- * });
- *
- * @param {Object} targetOption
- * @param {Object} newOption
- * @param {Object|string} [opt]
- * @param {boolean|Array.<boolean>} [opt.ignoreSize=false] Used for the components
- * that width (or height) should not be calculated by left and right (or top and bottom).
- */
-
-
- function mergeLayoutParam(targetOption, newOption, opt) {
- !zrUtil.isObject(opt) && (opt = {});
- var ignoreSize = opt.ignoreSize;
- !zrUtil.isArray(ignoreSize) && (ignoreSize = [ignoreSize, ignoreSize]);
- var hResult = merge(HV_NAMES[0], 0);
- var vResult = merge(HV_NAMES[1], 1);
- copy(HV_NAMES[0], targetOption, hResult);
- copy(HV_NAMES[1], targetOption, vResult);
-
- function merge(names, hvIdx) {
- var newParams = {};
- var newValueCount = 0;
- var merged = {};
- var mergedValueCount = 0;
- var enoughParamNumber = 2;
- each(names, function (name) {
- merged[name] = targetOption[name];
- });
- each(names, function (name) {
- // Consider case: newOption.width is null, which is
- // set by user for removing width setting.
- hasProp(newOption, name) && (newParams[name] = merged[name] = newOption[name]);
- hasValue(newParams, name) && newValueCount++;
- hasValue(merged, name) && mergedValueCount++;
- });
-
- if (ignoreSize[hvIdx]) {
- // Only one of left/right is premitted to exist.
- if (hasValue(newOption, names[1])) {
- merged[names[2]] = null;
- } else if (hasValue(newOption, names[2])) {
- merged[names[1]] = null;
- }
-
- return merged;
- } // Case: newOption: {width: ..., right: ...},
- // or targetOption: {right: ...} and newOption: {width: ...},
- // There is no conflict when merged only has params count
- // little than enoughParamNumber.
-
-
- if (mergedValueCount === enoughParamNumber || !newValueCount) {
- return merged;
- } // Case: newOption: {width: ..., right: ...},
- // Than we can make sure user only want those two, and ignore
- // all origin params in targetOption.
- else if (newValueCount >= enoughParamNumber) {
- return newParams;
- } else {
- // Chose another param from targetOption by priority.
- for (var i = 0; i < names.length; i++) {
- var name = names[i];
-
- if (!hasProp(newParams, name) && hasProp(targetOption, name)) {
- newParams[name] = targetOption[name];
- break;
- }
- }
-
- return newParams;
- }
- }
-
- function hasProp(obj, name) {
- return obj.hasOwnProperty(name);
- }
-
- function hasValue(obj, name) {
- return obj[name] != null && obj[name] !== 'auto';
- }
-
- function copy(names, target, source) {
- each(names, function (name) {
- target[name] = source[name];
- });
- }
- }
- /**
- * Retrieve 'left', 'right', 'top', 'bottom', 'width', 'height' from object.
- * @param {Object} source
- * @return {Object} Result contains those props.
- */
-
-
- function getLayoutParams(source) {
- return copyLayoutParams({}, source);
- }
- /**
- * Retrieve 'left', 'right', 'top', 'bottom', 'width', 'height' from object.
- * @param {Object} source
- * @return {Object} Result contains those props.
- */
-
-
- function copyLayoutParams(target, source) {
- source && target && each(LOCATION_PARAMS, function (name) {
- source.hasOwnProperty(name) && (target[name] = source[name]);
- });
- return target;
- }
-
- exports.LOCATION_PARAMS = LOCATION_PARAMS;
- exports.HV_NAMES = HV_NAMES;
- exports.box = box;
- exports.vbox = vbox;
- exports.hbox = hbox;
- exports.getAvailableSize = getAvailableSize;
- exports.getLayoutRect = getLayoutRect;
- exports.positionElement = positionElement;
- exports.sizeCalculable = sizeCalculable;
- exports.mergeLayoutParam = mergeLayoutParam;
- exports.getLayoutParams = getLayoutParams;
- exports.copyLayoutParams = copyLayoutParams;
-
- /***/ }),
-
- /***/ 1174:
- /***/ (function(module, exports, __webpack_require__) {
-
- var assignValue = __webpack_require__(917),
- baseAssignValue = __webpack_require__(887);
-
- /**
- * Copies properties of `source` to `object`.
- *
- * @private
- * @param {Object} source The object to copy properties from.
- * @param {Array} props The property identifiers to copy.
- * @param {Object} [object={}] The object to copy properties to.
- * @param {Function} [customizer] The function to customize copied values.
- * @returns {Object} Returns `object`.
- */
- function copyObject(source, props, object, customizer) {
- var isNew = !object;
- object || (object = {});
-
- var index = -1,
- length = props.length;
-
- while (++index < length) {
- var key = props[index];
-
- var newValue = customizer
- ? customizer(object[key], source[key], key, object, source)
- : undefined;
-
- if (newValue === undefined) {
- newValue = source[key];
- }
- if (isNew) {
- baseAssignValue(object, key, newValue);
- } else {
- assignValue(object, key, newValue);
- }
- }
- return object;
- }
-
- module.exports = copyObject;
-
-
- /***/ }),
-
- /***/ 1178:
- /***/ (function(module, exports, __webpack_require__) {
-
- var baseMerge = __webpack_require__(1218),
- createAssigner = __webpack_require__(1222);
-
- /**
- * This method is like `_.assign` except that it recursively merges own and
- * inherited enumerable string keyed properties of source objects into the
- * destination object. Source properties that resolve to `undefined` are
- * skipped if a destination value exists. Array and plain object properties
- * are merged recursively. Other objects and value types are overridden by
- * assignment. Source objects are applied from left to right. Subsequent
- * sources overwrite property assignments of previous sources.
- *
- * **Note:** This method mutates `object`.
- *
- * @static
- * @memberOf _
- * @since 0.5.0
- * @category Object
- * @param {Object} object The destination object.
- * @param {...Object} [sources] The source objects.
- * @returns {Object} Returns `object`.
- * @example
- *
- * var object = {
- * 'a': [{ 'b': 2 }, { 'd': 4 }]
- * };
- *
- * var other = {
- * 'a': [{ 'c': 3 }, { 'e': 5 }]
- * };
- *
- * _.merge(object, other);
- * // => { 'a': [{ 'b': 2, 'c': 3 }, { 'd': 4, 'e': 5 }] }
- */
- var merge = createAssigner(function(object, source, srcIndex) {
- baseMerge(object, source, srcIndex);
- });
-
- module.exports = merge;
-
-
- /***/ }),
-
- /***/ 1179:
- /***/ (function(module, exports, __webpack_require__) {
-
- var Uint8Array = __webpack_require__(974);
-
- /**
- * Creates a clone of `arrayBuffer`.
- *
- * @private
- * @param {ArrayBuffer} arrayBuffer The array buffer to clone.
- * @returns {ArrayBuffer} Returns the cloned array buffer.
- */
- function cloneArrayBuffer(arrayBuffer) {
- var result = new arrayBuffer.constructor(arrayBuffer.byteLength);
- new Uint8Array(result).set(new Uint8Array(arrayBuffer));
- return result;
- }
-
- module.exports = cloneArrayBuffer;
-
-
- /***/ }),
-
- /***/ 1180:
- /***/ (function(module, exports) {
-
- /* global Float32Array */
- var ArrayCtor = typeof Float32Array === 'undefined' ? Array : Float32Array;
- /**
- * 创建一个向量
- * @param {number} [x=0]
- * @param {number} [y=0]
- * @return {Vector2}
- */
-
- function create(x, y) {
- var out = new ArrayCtor(2);
-
- if (x == null) {
- x = 0;
- }
-
- if (y == null) {
- y = 0;
- }
-
- out[0] = x;
- out[1] = y;
- return out;
- }
- /**
- * 复制向量数据
- * @param {Vector2} out
- * @param {Vector2} v
- * @return {Vector2}
- */
-
-
- function copy(out, v) {
- out[0] = v[0];
- out[1] = v[1];
- return out;
- }
- /**
- * 克隆一个向量
- * @param {Vector2} v
- * @return {Vector2}
- */
-
-
- function clone(v) {
- var out = new ArrayCtor(2);
- out[0] = v[0];
- out[1] = v[1];
- return out;
- }
- /**
- * 设置向量的两个项
- * @param {Vector2} out
- * @param {number} a
- * @param {number} b
- * @return {Vector2} 结果
- */
-
-
- function set(out, a, b) {
- out[0] = a;
- out[1] = b;
- return out;
- }
- /**
- * 向量相加
- * @param {Vector2} out
- * @param {Vector2} v1
- * @param {Vector2} v2
- */
-
-
- function add(out, v1, v2) {
- out[0] = v1[0] + v2[0];
- out[1] = v1[1] + v2[1];
- return out;
- }
- /**
- * 向量缩放后相加
- * @param {Vector2} out
- * @param {Vector2} v1
- * @param {Vector2} v2
- * @param {number} a
- */
-
-
- function scaleAndAdd(out, v1, v2, a) {
- out[0] = v1[0] + v2[0] * a;
- out[1] = v1[1] + v2[1] * a;
- return out;
- }
- /**
- * 向量相减
- * @param {Vector2} out
- * @param {Vector2} v1
- * @param {Vector2} v2
- */
-
-
- function sub(out, v1, v2) {
- out[0] = v1[0] - v2[0];
- out[1] = v1[1] - v2[1];
- return out;
- }
- /**
- * 向量长度
- * @param {Vector2} v
- * @return {number}
- */
-
-
- function len(v) {
- return Math.sqrt(lenSquare(v));
- }
-
- var length = len; // jshint ignore:line
-
- /**
- * 向量长度平方
- * @param {Vector2} v
- * @return {number}
- */
-
- function lenSquare(v) {
- return v[0] * v[0] + v[1] * v[1];
- }
-
- var lengthSquare = lenSquare;
- /**
- * 向量乘法
- * @param {Vector2} out
- * @param {Vector2} v1
- * @param {Vector2} v2
- */
-
- function mul(out, v1, v2) {
- out[0] = v1[0] * v2[0];
- out[1] = v1[1] * v2[1];
- return out;
- }
- /**
- * 向量除法
- * @param {Vector2} out
- * @param {Vector2} v1
- * @param {Vector2} v2
- */
-
-
- function div(out, v1, v2) {
- out[0] = v1[0] / v2[0];
- out[1] = v1[1] / v2[1];
- return out;
- }
- /**
- * 向量点乘
- * @param {Vector2} v1
- * @param {Vector2} v2
- * @return {number}
- */
-
-
- function dot(v1, v2) {
- return v1[0] * v2[0] + v1[1] * v2[1];
- }
- /**
- * 向量缩放
- * @param {Vector2} out
- * @param {Vector2} v
- * @param {number} s
- */
-
-
- function scale(out, v, s) {
- out[0] = v[0] * s;
- out[1] = v[1] * s;
- return out;
- }
- /**
- * 向量归一化
- * @param {Vector2} out
- * @param {Vector2} v
- */
-
-
- function normalize(out, v) {
- var d = len(v);
-
- if (d === 0) {
- out[0] = 0;
- out[1] = 0;
- } else {
- out[0] = v[0] / d;
- out[1] = v[1] / d;
- }
-
- return out;
- }
- /**
- * 计算向量间距离
- * @param {Vector2} v1
- * @param {Vector2} v2
- * @return {number}
- */
-
-
- function distance(v1, v2) {
- return Math.sqrt((v1[0] - v2[0]) * (v1[0] - v2[0]) + (v1[1] - v2[1]) * (v1[1] - v2[1]));
- }
-
- var dist = distance;
- /**
- * 向量距离平方
- * @param {Vector2} v1
- * @param {Vector2} v2
- * @return {number}
- */
-
- function distanceSquare(v1, v2) {
- return (v1[0] - v2[0]) * (v1[0] - v2[0]) + (v1[1] - v2[1]) * (v1[1] - v2[1]);
- }
-
- var distSquare = distanceSquare;
- /**
- * 求负向量
- * @param {Vector2} out
- * @param {Vector2} v
- */
-
- function negate(out, v) {
- out[0] = -v[0];
- out[1] = -v[1];
- return out;
- }
- /**
- * 插值两个点
- * @param {Vector2} out
- * @param {Vector2} v1
- * @param {Vector2} v2
- * @param {number} t
- */
-
-
- function lerp(out, v1, v2, t) {
- out[0] = v1[0] + t * (v2[0] - v1[0]);
- out[1] = v1[1] + t * (v2[1] - v1[1]);
- return out;
- }
- /**
- * 矩阵左乘向量
- * @param {Vector2} out
- * @param {Vector2} v
- * @param {Vector2} m
- */
-
-
- function applyTransform(out, v, m) {
- var x = v[0];
- var y = v[1];
- out[0] = m[0] * x + m[2] * y + m[4];
- out[1] = m[1] * x + m[3] * y + m[5];
- return out;
- }
- /**
- * 求两个向量最小值
- * @param {Vector2} out
- * @param {Vector2} v1
- * @param {Vector2} v2
- */
-
-
- function min(out, v1, v2) {
- out[0] = Math.min(v1[0], v2[0]);
- out[1] = Math.min(v1[1], v2[1]);
- return out;
- }
- /**
- * 求两个向量最大值
- * @param {Vector2} out
- * @param {Vector2} v1
- * @param {Vector2} v2
- */
-
-
- function max(out, v1, v2) {
- out[0] = Math.max(v1[0], v2[0]);
- out[1] = Math.max(v1[1], v2[1]);
- return out;
- }
-
- exports.create = create;
- exports.copy = copy;
- exports.clone = clone;
- exports.set = set;
- exports.add = add;
- exports.scaleAndAdd = scaleAndAdd;
- exports.sub = sub;
- exports.len = len;
- exports.length = length;
- exports.lenSquare = lenSquare;
- exports.lengthSquare = lengthSquare;
- exports.mul = mul;
- exports.div = div;
- exports.dot = dot;
- exports.scale = scale;
- exports.normalize = normalize;
- exports.distance = distance;
- exports.dist = dist;
- exports.distanceSquare = distanceSquare;
- exports.distSquare = distSquare;
- exports.negate = negate;
- exports.lerp = lerp;
- exports.applyTransform = applyTransform;
- exports.min = min;
- exports.max = max;
-
- /***/ }),
-
- /***/ 1183:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- __webpack_require__(29);
-
- __webpack_require__(1281);
-
- __webpack_require__(188);
-
- __webpack_require__(178);
-
- __webpack_require__(308);
-
- __webpack_require__(971);
-
- __webpack_require__(76);
-
- __webpack_require__(901);
- //# sourceMappingURL=css.js.map
-
-
- /***/ }),
-
- /***/ 1184:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports["default"] = void 0;
-
- var _Table = _interopRequireDefault(__webpack_require__(1284));
-
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
-
- var _default = _Table["default"];
- exports["default"] = _default;
- //# sourceMappingURL=index.js.map
-
-
- /***/ }),
-
- /***/ 1185:
- /***/ (function(module, exports, __webpack_require__) {
-
- var vec2 = __webpack_require__(1180);
-
- var matrix = __webpack_require__(1350);
-
- /**
- * @module echarts/core/BoundingRect
- */
- var v2ApplyTransform = vec2.applyTransform;
- var mathMin = Math.min;
- var mathMax = Math.max;
- /**
- * @alias module:echarts/core/BoundingRect
- */
-
- function BoundingRect(x, y, width, height) {
- if (width < 0) {
- x = x + width;
- width = -width;
- }
-
- if (height < 0) {
- y = y + height;
- height = -height;
- }
- /**
- * @type {number}
- */
-
-
- this.x = x;
- /**
- * @type {number}
- */
-
- this.y = y;
- /**
- * @type {number}
- */
-
- this.width = width;
- /**
- * @type {number}
- */
-
- this.height = height;
- }
-
- BoundingRect.prototype = {
- constructor: BoundingRect,
-
- /**
- * @param {module:echarts/core/BoundingRect} other
- */
- union: function (other) {
- var x = mathMin(other.x, this.x);
- var y = mathMin(other.y, this.y);
- this.width = mathMax(other.x + other.width, this.x + this.width) - x;
- this.height = mathMax(other.y + other.height, this.y + this.height) - y;
- this.x = x;
- this.y = y;
- },
-
- /**
- * @param {Array.<number>} m
- * @methods
- */
- applyTransform: function () {
- var lt = [];
- var rb = [];
- var lb = [];
- var rt = [];
- return function (m) {
- // In case usage like this
- // el.getBoundingRect().applyTransform(el.transform)
- // And element has no transform
- if (!m) {
- return;
- }
-
- lt[0] = lb[0] = this.x;
- lt[1] = rt[1] = this.y;
- rb[0] = rt[0] = this.x + this.width;
- rb[1] = lb[1] = this.y + this.height;
- v2ApplyTransform(lt, lt, m);
- v2ApplyTransform(rb, rb, m);
- v2ApplyTransform(lb, lb, m);
- v2ApplyTransform(rt, rt, m);
- this.x = mathMin(lt[0], rb[0], lb[0], rt[0]);
- this.y = mathMin(lt[1], rb[1], lb[1], rt[1]);
- var maxX = mathMax(lt[0], rb[0], lb[0], rt[0]);
- var maxY = mathMax(lt[1], rb[1], lb[1], rt[1]);
- this.width = maxX - this.x;
- this.height = maxY - this.y;
- };
- }(),
-
- /**
- * Calculate matrix of transforming from self to target rect
- * @param {module:zrender/core/BoundingRect} b
- * @return {Array.<number>}
- */
- calculateTransform: function (b) {
- var a = this;
- var sx = b.width / a.width;
- var sy = b.height / a.height;
- var m = matrix.create(); // 矩阵右乘
-
- matrix.translate(m, m, [-a.x, -a.y]);
- matrix.scale(m, m, [sx, sy]);
- matrix.translate(m, m, [b.x, b.y]);
- return m;
- },
-
- /**
- * @param {(module:echarts/core/BoundingRect|Object)} b
- * @return {boolean}
- */
- intersect: function (b) {
- if (!b) {
- return false;
- }
-
- if (!(b instanceof BoundingRect)) {
- // Normalize negative width/height.
- b = BoundingRect.create(b);
- }
-
- var a = this;
- var ax0 = a.x;
- var ax1 = a.x + a.width;
- var ay0 = a.y;
- var ay1 = a.y + a.height;
- var bx0 = b.x;
- var bx1 = b.x + b.width;
- var by0 = b.y;
- var by1 = b.y + b.height;
- return !(ax1 < bx0 || bx1 < ax0 || ay1 < by0 || by1 < ay0);
- },
- contain: function (x, y) {
- var rect = this;
- return x >= rect.x && x <= rect.x + rect.width && y >= rect.y && y <= rect.y + rect.height;
- },
-
- /**
- * @return {module:echarts/core/BoundingRect}
- */
- clone: function () {
- return new BoundingRect(this.x, this.y, this.width, this.height);
- },
-
- /**
- * Copy from another rect
- */
- copy: function (other) {
- this.x = other.x;
- this.y = other.y;
- this.width = other.width;
- this.height = other.height;
- },
- plain: function () {
- return {
- x: this.x,
- y: this.y,
- width: this.width,
- height: this.height
- };
- }
- };
- /**
- * @param {Object|module:zrender/core/BoundingRect} rect
- * @param {number} rect.x
- * @param {number} rect.y
- * @param {number} rect.width
- * @param {number} rect.height
- * @return {module:zrender/core/BoundingRect}
- */
-
- BoundingRect.create = function (rect) {
- return new BoundingRect(rect.x, rect.y, rect.width, rect.height);
- };
-
- var _default = BoundingRect;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1186:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var textContain = __webpack_require__(1402);
-
- var numberUtil = __webpack_require__(985);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // import Text from 'zrender/src/graphic/Text';
-
- /**
- * 每三位默认加,格式化
- * @param {string|number} x
- * @return {string}
- */
- function addCommas(x) {
- if (isNaN(x)) {
- return '-';
- }
-
- x = (x + '').split('.');
- return x[0].replace(/(\d{1,3})(?=(?:\d{3})+(?!\d))/g, '$1,') + (x.length > 1 ? '.' + x[1] : '');
- }
- /**
- * @param {string} str
- * @param {boolean} [upperCaseFirst=false]
- * @return {string} str
- */
-
-
- function toCamelCase(str, upperCaseFirst) {
- str = (str || '').toLowerCase().replace(/-(.)/g, function (match, group1) {
- return group1.toUpperCase();
- });
-
- if (upperCaseFirst && str) {
- str = str.charAt(0).toUpperCase() + str.slice(1);
- }
-
- return str;
- }
-
- var normalizeCssArray = zrUtil.normalizeCssArray;
- var replaceReg = /([&<>"'])/g;
- var replaceMap = {
- '&': '&',
- '<': '<',
- '>': '>',
- '"': '"',
- '\'': '''
- };
-
- function encodeHTML(source) {
- return source == null ? '' : (source + '').replace(replaceReg, function (str, c) {
- return replaceMap[c];
- });
- }
-
- var TPL_VAR_ALIAS = ['a', 'b', 'c', 'd', 'e', 'f', 'g'];
-
- var wrapVar = function (varName, seriesIdx) {
- return '{' + varName + (seriesIdx == null ? '' : seriesIdx) + '}';
- };
- /**
- * Template formatter
- * @param {string} tpl
- * @param {Array.<Object>|Object} paramsList
- * @param {boolean} [encode=false]
- * @return {string}
- */
-
-
- function formatTpl(tpl, paramsList, encode) {
- if (!zrUtil.isArray(paramsList)) {
- paramsList = [paramsList];
- }
-
- var seriesLen = paramsList.length;
-
- if (!seriesLen) {
- return '';
- }
-
- var $vars = paramsList[0].$vars || [];
-
- for (var i = 0; i < $vars.length; i++) {
- var alias = TPL_VAR_ALIAS[i];
- tpl = tpl.replace(wrapVar(alias), wrapVar(alias, 0));
- }
-
- for (var seriesIdx = 0; seriesIdx < seriesLen; seriesIdx++) {
- for (var k = 0; k < $vars.length; k++) {
- var val = paramsList[seriesIdx][$vars[k]];
- tpl = tpl.replace(wrapVar(TPL_VAR_ALIAS[k], seriesIdx), encode ? encodeHTML(val) : val);
- }
- }
-
- return tpl;
- }
- /**
- * simple Template formatter
- *
- * @param {string} tpl
- * @param {Object} param
- * @param {boolean} [encode=false]
- * @return {string}
- */
-
-
- function formatTplSimple(tpl, param, encode) {
- zrUtil.each(param, function (value, key) {
- tpl = tpl.replace('{' + key + '}', encode ? encodeHTML(value) : value);
- });
- return tpl;
- }
- /**
- * @param {Object|string} [opt] If string, means color.
- * @param {string} [opt.color]
- * @param {string} [opt.extraCssText]
- * @param {string} [opt.type='item'] 'item' or 'subItem'
- * @param {string} [opt.renderMode='html'] render mode of tooltip, 'html' or 'richText'
- * @param {string} [opt.markerId='X'] id name for marker. If only one marker is in a rich text, this can be omitted.
- * @return {string}
- */
-
-
- function getTooltipMarker(opt, extraCssText) {
- opt = zrUtil.isString(opt) ? {
- color: opt,
- extraCssText: extraCssText
- } : opt || {};
- var color = opt.color;
- var type = opt.type;
- var extraCssText = opt.extraCssText;
- var renderMode = opt.renderMode || 'html';
- var markerId = opt.markerId || 'X';
-
- if (!color) {
- return '';
- }
-
- if (renderMode === 'html') {
- return type === 'subItem' ? '<span style="display:inline-block;vertical-align:middle;margin-right:8px;margin-left:3px;' + 'border-radius:4px;width:4px;height:4px;background-color:' + encodeHTML(color) + ';' + (extraCssText || '') + '"></span>' : '<span style="display:inline-block;margin-right:5px;' + 'border-radius:10px;width:10px;height:10px;background-color:' + encodeHTML(color) + ';' + (extraCssText || '') + '"></span>';
- } else {
- // Space for rich element marker
- return {
- renderMode: renderMode,
- content: '{marker' + markerId + '|} ',
- style: {
- color: color
- }
- };
- }
- }
-
- function pad(str, len) {
- str += '';
- return '0000'.substr(0, len - str.length) + str;
- }
- /**
- * ISO Date format
- * @param {string} tpl
- * @param {number} value
- * @param {boolean} [isUTC=false] Default in local time.
- * see `module:echarts/scale/Time`
- * and `module:echarts/util/number#parseDate`.
- * @inner
- */
-
-
- function formatTime(tpl, value, isUTC) {
- if (tpl === 'week' || tpl === 'month' || tpl === 'quarter' || tpl === 'half-year' || tpl === 'year') {
- tpl = 'MM-dd\nyyyy';
- }
-
- var date = numberUtil.parseDate(value);
- var utc = isUTC ? 'UTC' : '';
- var y = date['get' + utc + 'FullYear']();
- var M = date['get' + utc + 'Month']() + 1;
- var d = date['get' + utc + 'Date']();
- var h = date['get' + utc + 'Hours']();
- var m = date['get' + utc + 'Minutes']();
- var s = date['get' + utc + 'Seconds']();
- var S = date['get' + utc + 'Milliseconds']();
- tpl = tpl.replace('MM', pad(M, 2)).replace('M', M).replace('yyyy', y).replace('yy', y % 100).replace('dd', pad(d, 2)).replace('d', d).replace('hh', pad(h, 2)).replace('h', h).replace('mm', pad(m, 2)).replace('m', m).replace('ss', pad(s, 2)).replace('s', s).replace('SSS', pad(S, 3));
- return tpl;
- }
- /**
- * Capital first
- * @param {string} str
- * @return {string}
- */
-
-
- function capitalFirst(str) {
- return str ? str.charAt(0).toUpperCase() + str.substr(1) : str;
- }
-
- var truncateText = textContain.truncateText;
- /**
- * @public
- * @param {Object} opt
- * @param {string} opt.text
- * @param {string} opt.font
- * @param {string} [opt.textAlign='left']
- * @param {string} [opt.textVerticalAlign='top']
- * @param {Array.<number>} [opt.textPadding]
- * @param {number} [opt.textLineHeight]
- * @param {Object} [opt.rich]
- * @param {Object} [opt.truncate]
- * @return {Object} {x, y, width, height, lineHeight}
- */
-
- function getTextBoundingRect(opt) {
- return textContain.getBoundingRect(opt.text, opt.font, opt.textAlign, opt.textVerticalAlign, opt.textPadding, opt.textLineHeight, opt.rich, opt.truncate);
- }
- /**
- * @deprecated
- * the `textLineHeight` was added later.
- * For backward compatiblility, put it as the last parameter.
- * But deprecated this interface. Please use `getTextBoundingRect` instead.
- */
-
-
- function getTextRect(text, font, textAlign, textVerticalAlign, textPadding, rich, truncate, textLineHeight) {
- return textContain.getBoundingRect(text, font, textAlign, textVerticalAlign, textPadding, textLineHeight, rich, truncate);
- }
-
- exports.addCommas = addCommas;
- exports.toCamelCase = toCamelCase;
- exports.normalizeCssArray = normalizeCssArray;
- exports.encodeHTML = encodeHTML;
- exports.formatTpl = formatTpl;
- exports.formatTplSimple = formatTplSimple;
- exports.getTooltipMarker = getTooltipMarker;
- exports.formatTime = formatTime;
- exports.capitalFirst = capitalFirst;
- exports.truncateText = truncateText;
- exports.getTextBoundingRect = getTextBoundingRect;
- exports.getTextRect = getTextRect;
-
- /***/ }),
-
- /***/ 1190:
- /***/ (function(module, exports, __webpack_require__) {
-
- var createBaseFor = __webpack_require__(1200);
-
- /**
- * The base implementation of `baseForOwn` which iterates over `object`
- * properties returned by `keysFunc` and invokes `iteratee` for each property.
- * Iteratee functions may exit iteration early by explicitly returning `false`.
- *
- * @private
- * @param {Object} object The object to iterate over.
- * @param {Function} iteratee The function invoked per iteration.
- * @param {Function} keysFunc The function to get the keys of `object`.
- * @returns {Object} Returns `object`.
- */
- var baseFor = createBaseFor();
-
- module.exports = baseFor;
-
-
- /***/ }),
-
- /***/ 1191:
- /***/ (function(module, exports, __webpack_require__) {
-
- /* WEBPACK VAR INJECTION */(function(module) {var root = __webpack_require__(170);
-
- /** Detect free variable `exports`. */
- var freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports;
-
- /** Detect free variable `module`. */
- var freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module;
-
- /** Detect the popular CommonJS extension `module.exports`. */
- var moduleExports = freeModule && freeModule.exports === freeExports;
-
- /** Built-in value references. */
- var Buffer = moduleExports ? root.Buffer : undefined,
- allocUnsafe = Buffer ? Buffer.allocUnsafe : undefined;
-
- /**
- * Creates a clone of `buffer`.
- *
- * @private
- * @param {Buffer} buffer The buffer to clone.
- * @param {boolean} [isDeep] Specify a deep clone.
- * @returns {Buffer} Returns the cloned buffer.
- */
- function cloneBuffer(buffer, isDeep) {
- if (isDeep) {
- return buffer.slice();
- }
- var length = buffer.length,
- result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length);
-
- buffer.copy(result);
- return result;
- }
-
- module.exports = cloneBuffer;
-
- /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(309)(module)))
-
- /***/ }),
-
- /***/ 1192:
- /***/ (function(module, exports, __webpack_require__) {
-
- var cloneArrayBuffer = __webpack_require__(1179);
-
- /**
- * Creates a clone of `typedArray`.
- *
- * @private
- * @param {Object} typedArray The typed array to clone.
- * @param {boolean} [isDeep] Specify a deep clone.
- * @returns {Object} Returns the cloned typed array.
- */
- function cloneTypedArray(typedArray, isDeep) {
- var buffer = isDeep ? cloneArrayBuffer(typedArray.buffer) : typedArray.buffer;
- return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length);
- }
-
- module.exports = cloneTypedArray;
-
-
- /***/ }),
-
- /***/ 1193:
- /***/ (function(module, exports) {
-
- /**
- * Copies the values of `source` to `array`.
- *
- * @private
- * @param {Array} source The array to copy values from.
- * @param {Array} [array=[]] The array to copy values to.
- * @returns {Array} Returns `array`.
- */
- function copyArray(source, array) {
- var index = -1,
- length = source.length;
-
- array || (array = Array(length));
- while (++index < length) {
- array[index] = source[index];
- }
- return array;
- }
-
- module.exports = copyArray;
-
-
- /***/ }),
-
- /***/ 1194:
- /***/ (function(module, exports, __webpack_require__) {
-
- var baseCreate = __webpack_require__(1201),
- getPrototype = __webpack_require__(1071),
- isPrototype = __webpack_require__(947);
-
- /**
- * Initializes an object clone.
- *
- * @private
- * @param {Object} object The object to clone.
- * @returns {Object} Returns the initialized clone.
- */
- function initCloneObject(object) {
- return (typeof object.constructor == 'function' && !isPrototype(object))
- ? baseCreate(getPrototype(object))
- : {};
- }
-
- module.exports = initCloneObject;
-
-
- /***/ }),
-
- /***/ 1195:
- /***/ (function(module, exports, __webpack_require__) {
-
- var baseGetTag = __webpack_require__(304),
- getPrototype = __webpack_require__(1071),
- isObjectLike = __webpack_require__(302);
-
- /** `Object#toString` result references. */
- var objectTag = '[object Object]';
-
- /** Used for built-in method references. */
- var funcProto = Function.prototype,
- objectProto = Object.prototype;
-
- /** Used to resolve the decompiled source of functions. */
- var funcToString = funcProto.toString;
-
- /** Used to check objects for own properties. */
- var hasOwnProperty = objectProto.hasOwnProperty;
-
- /** Used to infer the `Object` constructor. */
- var objectCtorString = funcToString.call(Object);
-
- /**
- * Checks if `value` is a plain object, that is, an object created by the
- * `Object` constructor or one with a `[[Prototype]]` of `null`.
- *
- * @static
- * @memberOf _
- * @since 0.8.0
- * @category Lang
- * @param {*} value The value to check.
- * @returns {boolean} Returns `true` if `value` is a plain object, else `false`.
- * @example
- *
- * function Foo() {
- * this.a = 1;
- * }
- *
- * _.isPlainObject(new Foo);
- * // => false
- *
- * _.isPlainObject([1, 2, 3]);
- * // => false
- *
- * _.isPlainObject({ 'x': 0, 'y': 0 });
- * // => true
- *
- * _.isPlainObject(Object.create(null));
- * // => true
- */
- function isPlainObject(value) {
- if (!isObjectLike(value) || baseGetTag(value) != objectTag) {
- return false;
- }
- var proto = getPrototype(value);
- if (proto === null) {
- return true;
- }
- var Ctor = hasOwnProperty.call(proto, 'constructor') && proto.constructor;
- return typeof Ctor == 'function' && Ctor instanceof Ctor &&
- funcToString.call(Ctor) == objectCtorString;
- }
-
- module.exports = isPlainObject;
-
-
- /***/ }),
-
- /***/ 1200:
- /***/ (function(module, exports) {
-
- /**
- * Creates a base function for methods like `_.forIn` and `_.forOwn`.
- *
- * @private
- * @param {boolean} [fromRight] Specify iterating from right to left.
- * @returns {Function} Returns the new base function.
- */
- function createBaseFor(fromRight) {
- return function(object, iteratee, keysFunc) {
- var index = -1,
- iterable = Object(object),
- props = keysFunc(object),
- length = props.length;
-
- while (length--) {
- var key = props[fromRight ? length : ++index];
- if (iteratee(iterable[key], key, iterable) === false) {
- break;
- }
- }
- return object;
- };
- }
-
- module.exports = createBaseFor;
-
-
- /***/ }),
-
- /***/ 1201:
- /***/ (function(module, exports, __webpack_require__) {
-
- var isObject = __webpack_require__(171);
-
- /** Built-in value references. */
- var objectCreate = Object.create;
-
- /**
- * The base implementation of `_.create` without support for assigning
- * properties to the created object.
- *
- * @private
- * @param {Object} proto The object to inherit from.
- * @returns {Object} Returns the new object.
- */
- var baseCreate = (function() {
- function object() {}
- return function(proto) {
- if (!isObject(proto)) {
- return {};
- }
- if (objectCreate) {
- return objectCreate(proto);
- }
- object.prototype = proto;
- var result = new object;
- object.prototype = undefined;
- return result;
- };
- }());
-
- module.exports = baseCreate;
-
-
- /***/ }),
-
- /***/ 1202:
- /***/ (function(module, exports, __webpack_require__) {
-
- var isObject = __webpack_require__(171),
- isPrototype = __webpack_require__(947),
- nativeKeysIn = __webpack_require__(1203);
-
- /** Used for built-in method references. */
- var objectProto = Object.prototype;
-
- /** Used to check objects for own properties. */
- var hasOwnProperty = objectProto.hasOwnProperty;
-
- /**
- * The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense.
- *
- * @private
- * @param {Object} object The object to query.
- * @returns {Array} Returns the array of property names.
- */
- function baseKeysIn(object) {
- if (!isObject(object)) {
- return nativeKeysIn(object);
- }
- var isProto = isPrototype(object),
- result = [];
-
- for (var key in object) {
- if (!(key == 'constructor' && (isProto || !hasOwnProperty.call(object, key)))) {
- result.push(key);
- }
- }
- return result;
- }
-
- module.exports = baseKeysIn;
-
-
- /***/ }),
-
- /***/ 1203:
- /***/ (function(module, exports) {
-
- /**
- * This function is like
- * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)
- * except that it includes inherited enumerable properties.
- *
- * @private
- * @param {Object} object The object to query.
- * @returns {Array} Returns the array of property names.
- */
- function nativeKeysIn(object) {
- var result = [];
- if (object != null) {
- for (var key in Object(object)) {
- result.push(key);
- }
- }
- return result;
- }
-
- module.exports = nativeKeysIn;
-
-
- /***/ }),
-
- /***/ 1210:
- /***/ (function(module, exports, __webpack_require__) {
-
- // style-loader: Adds some css to the DOM by adding a <style> tag
-
- // load the styles
- var content = __webpack_require__(1211);
- if(typeof content === 'string') content = [[module.i, content, '']];
- // Prepare cssTransformation
- var transform;
-
- var options = {"hmr":false}
- options.transform = transform
- // add the styles to the DOM
- var update = __webpack_require__(300)(content, options);
- if(content.locals) module.exports = content.locals;
-
-
- /***/ }),
-
- /***/ 1211:
- /***/ (function(module, exports, __webpack_require__) {
-
- exports = module.exports = __webpack_require__(299)(true);
- // imports
-
-
- // module
- exports.push([module.i, ".ant-input-number{-webkit-box-sizing:border-box;box-sizing:border-box;font-variant:tabular-nums;list-style:none;-webkit-font-feature-settings:\"tnum\";font-feature-settings:\"tnum\";position:relative;width:100%;height:32px;padding:4px 11px;color:rgba(0,0,0,.65);font-size:14px;line-height:1.5;background-color:#fff;background-image:none;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s;display:inline-block;width:90px;margin:0;padding:0;border:1px solid #d9d9d9;border-radius:4px}.ant-input-number::-moz-placeholder{color:#bfbfbf;opacity:1}.ant-input-number:-ms-input-placeholder{color:#bfbfbf}.ant-input-number::-webkit-input-placeholder{color:#bfbfbf}.ant-input-number:placeholder-shown{-o-text-overflow:ellipsis;text-overflow:ellipsis}.ant-input-number:focus{border-color:#40a9ff;border-right-width:1px!important;outline:0;-webkit-box-shadow:0 0 0 2px rgba(24,144,255,.2);box-shadow:0 0 0 2px rgba(24,144,255,.2)}.ant-input-number[disabled]{color:rgba(0,0,0,.25);background-color:#f5f5f5;cursor:not-allowed;opacity:1}.ant-input-number[disabled]:hover{border-color:#d9d9d9;border-right-width:1px!important}textarea.ant-input-number{max-width:100%;height:auto;min-height:32px;line-height:1.5;vertical-align:bottom;-webkit-transition:all .3s,height 0s;-o-transition:all .3s,height 0s;transition:all .3s,height 0s}.ant-input-number-lg{height:40px;padding:6px 11px}.ant-input-number-sm{height:24px;padding:1px 7px}.ant-input-number-handler{position:relative;display:block;width:100%;height:50%;overflow:hidden;color:rgba(0,0,0,.45);font-weight:700;line-height:0;text-align:center;-webkit-transition:all .1s linear;-o-transition:all .1s linear;transition:all .1s linear}.ant-input-number-handler:active{background:#f4f4f4}.ant-input-number-handler:hover .ant-input-number-handler-down-inner,.ant-input-number-handler:hover .ant-input-number-handler-up-inner{color:#40a9ff}.ant-input-number-handler-down-inner,.ant-input-number-handler-up-inner{display:inline-block;color:inherit;font-style:normal;line-height:0;text-align:center;text-transform:none;vertical-align:-.125em;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:absolute;right:4px;width:12px;height:12px;color:rgba(0,0,0,.45);line-height:12px;-webkit-transition:all .1s linear;-o-transition:all .1s linear;transition:all .1s linear;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ant-input-number-handler-down-inner>*,.ant-input-number-handler-up-inner>*{line-height:1}.ant-input-number-handler-down-inner svg,.ant-input-number-handler-up-inner svg{display:inline-block}.ant-input-number-handler-down-inner:before,.ant-input-number-handler-up-inner:before{display:none}.ant-input-number-handler-down-inner .ant-input-number-handler-down-inner-icon,.ant-input-number-handler-down-inner .ant-input-number-handler-up-inner-icon,.ant-input-number-handler-up-inner .ant-input-number-handler-down-inner-icon,.ant-input-number-handler-up-inner .ant-input-number-handler-up-inner-icon{display:block}.ant-input-number-focused,.ant-input-number:hover{border-color:#40a9ff;border-right-width:1px!important}.ant-input-number-focused{outline:0;-webkit-box-shadow:0 0 0 2px rgba(24,144,255,.2);box-shadow:0 0 0 2px rgba(24,144,255,.2)}.ant-input-number-disabled{color:rgba(0,0,0,.25);background-color:#f5f5f5;cursor:not-allowed;opacity:1}.ant-input-number-disabled:hover{border-color:#d9d9d9;border-right-width:1px!important}.ant-input-number-disabled .ant-input-number-input{cursor:not-allowed}.ant-input-number-disabled .ant-input-number-handler-wrap{display:none}.ant-input-number-input{width:100%;height:30px;padding:0 11px;text-align:left;background-color:transparent;border:0;border-radius:4px;outline:0;-webkit-transition:all .3s linear;-o-transition:all .3s linear;transition:all .3s linear;-moz-appearance:textfield!important}.ant-input-number-input::-moz-placeholder{color:#bfbfbf;opacity:1}.ant-input-number-input:-ms-input-placeholder{color:#bfbfbf}.ant-input-number-input::-webkit-input-placeholder{color:#bfbfbf}.ant-input-number-input:placeholder-shown{-o-text-overflow:ellipsis;text-overflow:ellipsis}.ant-input-number-input[type=number]::-webkit-inner-spin-button,.ant-input-number-input[type=number]::-webkit-outer-spin-button{margin:0;-webkit-appearance:none}.ant-input-number-lg{padding:0;font-size:16px}.ant-input-number-lg input{height:38px}.ant-input-number-sm{padding:0}.ant-input-number-sm input{height:22px;padding:0 7px}.ant-input-number-handler-wrap{position:absolute;top:0;right:0;width:22px;height:100%;background:#fff;border-left:1px solid #d9d9d9;border-radius:0 4px 4px 0;opacity:0;-webkit-transition:opacity .24s linear .1s;-o-transition:opacity .24s linear .1s;transition:opacity .24s linear .1s}.ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-down-inner,.ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-up-inner{display:inline-block;font-size:12px;font-size:7px\\9;-webkit-transform:scale(.58333333) rotate(0deg);-ms-transform:scale(.58333333) rotate(0deg);transform:scale(.58333333) rotate(0deg);min-width:auto;margin-right:0}:root .ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-down-inner,:root .ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-up-inner{font-size:12px}.ant-input-number-handler-wrap:hover .ant-input-number-handler{height:40%}.ant-input-number:hover .ant-input-number-handler-wrap{opacity:1}.ant-input-number-handler-up{border-top-right-radius:4px;cursor:pointer}.ant-input-number-handler-up-inner{top:50%;margin-top:-5px;text-align:center}.ant-input-number-handler-up:hover{height:60%!important}.ant-input-number-handler-down{top:0;border-top:1px solid #d9d9d9;border-bottom-right-radius:4px;cursor:pointer}.ant-input-number-handler-down-inner{top:50%;margin-top:-6px;text-align:center}.ant-input-number-handler-down:hover{height:60%!important}.ant-input-number-handler-down-disabled,.ant-input-number-handler-up-disabled{cursor:not-allowed}.ant-input-number-handler-down-disabled:hover .ant-input-number-handler-down-inner,.ant-input-number-handler-up-disabled:hover .ant-input-number-handler-up-inner{color:rgba(0,0,0,.25)}", "", {"version":3,"sources":["/Users/jasder/work/trustie3.0/educoder/public/react/node_modules/antd/lib/input-number/style/index.css"],"names":[],"mappings":"AAIA,kBACE,8BAA+B,AACvB,sBAAuB,AAC/B,0BAA2B,AAC3B,gBAAiB,AACjB,qCAAsC,AAC9B,6BAA8B,AACtC,kBAAmB,AACnB,WAAY,AACZ,YAAa,AACb,iBAAkB,AAClB,sBAA2B,AAC3B,eAAgB,AAChB,gBAAiB,AACjB,sBAAuB,AACvB,sBAAuB,AACvB,2BAA6B,AAC7B,sBAAwB,AACxB,mBAAqB,AACrB,qBAAsB,AACtB,WAAY,AACZ,SAAU,AACV,UAAW,AACX,yBAA0B,AAC1B,iBAAmB,CACpB,AACD,oCACE,cAAe,AACf,SAAW,CACZ,AACD,wCACE,aAAe,CAChB,AACD,6CACE,aAAe,CAChB,AACD,oCACE,0BAA2B,AACxB,sBAAwB,CAC5B,AAKD,wBACE,qBAAsB,AACtB,iCAAmC,AACnC,UAAW,AACX,iDAAsD,AAC9C,wCAA8C,CACvD,AAWD,4BACE,sBAA2B,AAC3B,yBAA0B,AAC1B,mBAAoB,AACpB,SAAW,CACZ,AACD,kCACE,qBAAsB,AACtB,gCAAmC,CACpC,AACD,0BACE,eAAgB,AAChB,YAAa,AACb,gBAAiB,AACjB,gBAAiB,AACjB,sBAAuB,AACvB,qCAAwC,AACxC,gCAAmC,AACnC,4BAAgC,CACjC,AACD,qBACE,YAAa,AACb,gBAAkB,CAEnB,AACD,qBACE,YAAa,AACb,eAAiB,CAClB,AACD,0BACE,kBAAmB,AACnB,cAAe,AACf,WAAY,AACZ,WAAY,AACZ,gBAAiB,AACjB,sBAA2B,AAC3B,gBAAkB,AAClB,cAAe,AACf,kBAAmB,AACnB,kCAAoC,AACpC,6BAA+B,AAC/B,yBAA4B,CAC7B,AACD,iCACE,kBAAoB,CACrB,AACD,wIAEE,aAAe,CAChB,AACD,wEAEE,qBAAsB,AACtB,cAAe,AACf,kBAAmB,AACnB,cAAe,AACf,kBAAmB,AACnB,oBAAqB,AACrB,uBAAyB,AACzB,kCAAmC,AACnC,mCAAoC,AACpC,kCAAmC,AACnC,kBAAmB,AACnB,UAAW,AACX,WAAY,AACZ,YAAa,AACb,sBAA2B,AAC3B,iBAAkB,AAClB,kCAAoC,AACpC,6BAA+B,AAC/B,0BAA4B,AAC5B,yBAA0B,AACvB,sBAAuB,AACtB,qBAAsB,AAClB,gBAAkB,CAC3B,AACD,4EAEE,aAAe,CAChB,AACD,gFAEE,oBAAsB,CACvB,AACD,sFAEE,YAAc,CACf,AACD,oTAIE,aAAe,CAChB,AAKD,kDAHE,qBAAsB,AACtB,gCAAmC,CAQpC,AAND,0BAGE,UAAW,AACX,iDAAsD,AAC9C,wCAA8C,CACvD,AACD,2BACE,sBAA2B,AAC3B,yBAA0B,AAC1B,mBAAoB,AACpB,SAAW,CACZ,AACD,iCACE,qBAAsB,AACtB,gCAAmC,CACpC,AACD,mDACE,kBAAoB,CACrB,AACD,0DACE,YAAc,CACf,AACD,wBACE,WAAY,AACZ,YAAa,AACb,eAAgB,AAChB,gBAAiB,AACjB,6BAA8B,AAC9B,SAAU,AACV,kBAAmB,AACnB,UAAW,AACX,kCAAoC,AACpC,6BAA+B,AAC/B,0BAA4B,AAC5B,mCAAsC,CACvC,AACD,0CACE,cAAe,AACf,SAAW,CACZ,AACD,8CACE,aAAe,CAChB,AACD,mDACE,aAAe,CAChB,AACD,0CACE,0BAA2B,AACxB,sBAAwB,CAC5B,AACD,gIAEE,SAAU,AACV,uBAAyB,CAC1B,AACD,qBACE,UAAW,AACX,cAAgB,CACjB,AACD,2BACE,WAAa,CACd,AACD,qBACE,SAAW,CACZ,AACD,2BACE,YAAa,AACb,aAAe,CAChB,AACD,+BACE,kBAAmB,AACnB,MAAO,AACP,QAAS,AACT,WAAY,AACZ,YAAa,AACb,gBAAiB,AACjB,8BAA+B,AAC/B,0BAA2B,AAC3B,UAAW,AACX,2CAA8C,AAC9C,sCAAyC,AACzC,kCAAsC,CACvC,AACD,0LAEE,qBAAsB,AACtB,eAAgB,AAChB,gBAAkB,AAClB,gDAAkD,AAC9C,4CAA8C,AAC1C,wCAA0C,AAClD,eAAgB,AAChB,cAAgB,CACjB,AACD,sMAEE,cAAgB,CACjB,AACD,+DACE,UAAY,CACb,AACD,uDACE,SAAW,CACZ,AACD,6BACE,4BAA6B,AAC7B,cAAgB,CACjB,AACD,mCACE,QAAS,AACT,gBAAiB,AACjB,iBAAmB,CACpB,AACD,mCACE,oBAAuB,CACxB,AACD,+BACE,MAAO,AACP,6BAA8B,AAC9B,+BAAgC,AAChC,cAAgB,CACjB,AACD,qCACE,QAAS,AACT,gBAAiB,AACjB,iBAAmB,CACpB,AACD,qCACE,oBAAuB,CACxB,AACD,8EAEE,kBAAoB,CACrB,AACD,kKAEE,qBAA2B,CAC5B","file":"index.css","sourcesContent":["/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */\n/* stylelint-disable no-duplicate-selectors */\n/* stylelint-disable */\n/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */\n.ant-input-number {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n font-variant: tabular-nums;\n list-style: none;\n -webkit-font-feature-settings: 'tnum';\n font-feature-settings: 'tnum';\n position: relative;\n width: 100%;\n height: 32px;\n padding: 4px 11px;\n color: rgba(0, 0, 0, 0.65);\n font-size: 14px;\n line-height: 1.5;\n background-color: #fff;\n background-image: none;\n -webkit-transition: all 0.3s;\n -o-transition: all 0.3s;\n transition: all 0.3s;\n display: inline-block;\n width: 90px;\n margin: 0;\n padding: 0;\n border: 1px solid #d9d9d9;\n border-radius: 4px;\n}\n.ant-input-number::-moz-placeholder {\n color: #bfbfbf;\n opacity: 1;\n}\n.ant-input-number:-ms-input-placeholder {\n color: #bfbfbf;\n}\n.ant-input-number::-webkit-input-placeholder {\n color: #bfbfbf;\n}\n.ant-input-number:placeholder-shown {\n -o-text-overflow: ellipsis;\n text-overflow: ellipsis;\n}\n.ant-input-number:hover {\n border-color: #40a9ff;\n border-right-width: 1px !important;\n}\n.ant-input-number:focus {\n border-color: #40a9ff;\n border-right-width: 1px !important;\n outline: 0;\n -webkit-box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);\n box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);\n}\n.ant-input-number-disabled {\n color: rgba(0, 0, 0, 0.25);\n background-color: #f5f5f5;\n cursor: not-allowed;\n opacity: 1;\n}\n.ant-input-number-disabled:hover {\n border-color: #d9d9d9;\n border-right-width: 1px !important;\n}\n.ant-input-number[disabled] {\n color: rgba(0, 0, 0, 0.25);\n background-color: #f5f5f5;\n cursor: not-allowed;\n opacity: 1;\n}\n.ant-input-number[disabled]:hover {\n border-color: #d9d9d9;\n border-right-width: 1px !important;\n}\ntextarea.ant-input-number {\n max-width: 100%;\n height: auto;\n min-height: 32px;\n line-height: 1.5;\n vertical-align: bottom;\n -webkit-transition: all 0.3s, height 0s;\n -o-transition: all 0.3s, height 0s;\n transition: all 0.3s, height 0s;\n}\n.ant-input-number-lg {\n height: 40px;\n padding: 6px 11px;\n font-size: 16px;\n}\n.ant-input-number-sm {\n height: 24px;\n padding: 1px 7px;\n}\n.ant-input-number-handler {\n position: relative;\n display: block;\n width: 100%;\n height: 50%;\n overflow: hidden;\n color: rgba(0, 0, 0, 0.45);\n font-weight: bold;\n line-height: 0;\n text-align: center;\n -webkit-transition: all 0.1s linear;\n -o-transition: all 0.1s linear;\n transition: all 0.1s linear;\n}\n.ant-input-number-handler:active {\n background: #f4f4f4;\n}\n.ant-input-number-handler:hover .ant-input-number-handler-up-inner,\n.ant-input-number-handler:hover .ant-input-number-handler-down-inner {\n color: #40a9ff;\n}\n.ant-input-number-handler-up-inner,\n.ant-input-number-handler-down-inner {\n display: inline-block;\n color: inherit;\n font-style: normal;\n line-height: 0;\n text-align: center;\n text-transform: none;\n vertical-align: -0.125em;\n text-rendering: optimizeLegibility;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n position: absolute;\n right: 4px;\n width: 12px;\n height: 12px;\n color: rgba(0, 0, 0, 0.45);\n line-height: 12px;\n -webkit-transition: all 0.1s linear;\n -o-transition: all 0.1s linear;\n transition: all 0.1s linear;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.ant-input-number-handler-up-inner > *,\n.ant-input-number-handler-down-inner > * {\n line-height: 1;\n}\n.ant-input-number-handler-up-inner svg,\n.ant-input-number-handler-down-inner svg {\n display: inline-block;\n}\n.ant-input-number-handler-up-inner::before,\n.ant-input-number-handler-down-inner::before {\n display: none;\n}\n.ant-input-number-handler-up-inner .ant-input-number-handler-up-inner-icon,\n.ant-input-number-handler-up-inner .ant-input-number-handler-down-inner-icon,\n.ant-input-number-handler-down-inner .ant-input-number-handler-up-inner-icon,\n.ant-input-number-handler-down-inner .ant-input-number-handler-down-inner-icon {\n display: block;\n}\n.ant-input-number:hover {\n border-color: #40a9ff;\n border-right-width: 1px !important;\n}\n.ant-input-number-focused {\n border-color: #40a9ff;\n border-right-width: 1px !important;\n outline: 0;\n -webkit-box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);\n box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);\n}\n.ant-input-number-disabled {\n color: rgba(0, 0, 0, 0.25);\n background-color: #f5f5f5;\n cursor: not-allowed;\n opacity: 1;\n}\n.ant-input-number-disabled:hover {\n border-color: #d9d9d9;\n border-right-width: 1px !important;\n}\n.ant-input-number-disabled .ant-input-number-input {\n cursor: not-allowed;\n}\n.ant-input-number-disabled .ant-input-number-handler-wrap {\n display: none;\n}\n.ant-input-number-input {\n width: 100%;\n height: 30px;\n padding: 0 11px;\n text-align: left;\n background-color: transparent;\n border: 0;\n border-radius: 4px;\n outline: 0;\n -webkit-transition: all 0.3s linear;\n -o-transition: all 0.3s linear;\n transition: all 0.3s linear;\n -moz-appearance: textfield !important;\n}\n.ant-input-number-input::-moz-placeholder {\n color: #bfbfbf;\n opacity: 1;\n}\n.ant-input-number-input:-ms-input-placeholder {\n color: #bfbfbf;\n}\n.ant-input-number-input::-webkit-input-placeholder {\n color: #bfbfbf;\n}\n.ant-input-number-input:placeholder-shown {\n -o-text-overflow: ellipsis;\n text-overflow: ellipsis;\n}\n.ant-input-number-input[type='number']::-webkit-inner-spin-button,\n.ant-input-number-input[type='number']::-webkit-outer-spin-button {\n margin: 0;\n -webkit-appearance: none;\n}\n.ant-input-number-lg {\n padding: 0;\n font-size: 16px;\n}\n.ant-input-number-lg input {\n height: 38px;\n}\n.ant-input-number-sm {\n padding: 0;\n}\n.ant-input-number-sm input {\n height: 22px;\n padding: 0 7px;\n}\n.ant-input-number-handler-wrap {\n position: absolute;\n top: 0;\n right: 0;\n width: 22px;\n height: 100%;\n background: #fff;\n border-left: 1px solid #d9d9d9;\n border-radius: 0 4px 4px 0;\n opacity: 0;\n -webkit-transition: opacity 0.24s linear 0.1s;\n -o-transition: opacity 0.24s linear 0.1s;\n transition: opacity 0.24s linear 0.1s;\n}\n.ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-up-inner,\n.ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-down-inner {\n display: inline-block;\n font-size: 12px;\n font-size: 7px \\9;\n -webkit-transform: scale(0.58333333) rotate(0deg);\n -ms-transform: scale(0.58333333) rotate(0deg);\n transform: scale(0.58333333) rotate(0deg);\n min-width: auto;\n margin-right: 0;\n}\n:root .ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-up-inner,\n:root .ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-down-inner {\n font-size: 12px;\n}\n.ant-input-number-handler-wrap:hover .ant-input-number-handler {\n height: 40%;\n}\n.ant-input-number:hover .ant-input-number-handler-wrap {\n opacity: 1;\n}\n.ant-input-number-handler-up {\n border-top-right-radius: 4px;\n cursor: pointer;\n}\n.ant-input-number-handler-up-inner {\n top: 50%;\n margin-top: -5px;\n text-align: center;\n}\n.ant-input-number-handler-up:hover {\n height: 60% !important;\n}\n.ant-input-number-handler-down {\n top: 0;\n border-top: 1px solid #d9d9d9;\n border-bottom-right-radius: 4px;\n cursor: pointer;\n}\n.ant-input-number-handler-down-inner {\n top: 50%;\n margin-top: -6px;\n text-align: center;\n}\n.ant-input-number-handler-down:hover {\n height: 60% !important;\n}\n.ant-input-number-handler-up-disabled,\n.ant-input-number-handler-down-disabled {\n cursor: not-allowed;\n}\n.ant-input-number-handler-up-disabled:hover .ant-input-number-handler-up-inner,\n.ant-input-number-handler-down-disabled:hover .ant-input-number-handler-down-inner {\n color: rgba(0, 0, 0, 0.25);\n}\n"],"sourceRoot":""}]);
-
- // exports
-
-
- /***/ }),
-
- /***/ 1212:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_objectWithoutProperties__ = __webpack_require__(74);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_objectWithoutProperties___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_objectWithoutProperties__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_extends__ = __webpack_require__(25);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_extends___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_extends__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_babel_runtime_helpers_classCallCheck__ = __webpack_require__(12);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_babel_runtime_helpers_classCallCheck___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_babel_runtime_helpers_classCallCheck__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_babel_runtime_helpers_possibleConstructorReturn__ = __webpack_require__(13);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_babel_runtime_helpers_possibleConstructorReturn___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_babel_runtime_helpers_possibleConstructorReturn__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_babel_runtime_helpers_inherits__ = __webpack_require__(14);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_babel_runtime_helpers_inherits___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_babel_runtime_helpers_inherits__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_react__ = __webpack_require__(0);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_react__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_prop_types__ = __webpack_require__(1);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_prop_types__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_classnames__ = __webpack_require__(3);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7_classnames__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8_rc_util_es_KeyCode__ = __webpack_require__(52);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__InputHandler__ = __webpack_require__(1213);
-
-
-
-
-
-
-
-
-
-
-
- function noop() {}
-
- function preventDefault(e) {
- e.preventDefault();
- }
-
- function defaultParser(input) {
- return input.replace(/[^\w\.-]+/g, '');
- }
-
- /**
- * When click and hold on a button - the speed of auto changin the value.
- */
- var SPEED = 200;
-
- /**
- * When click and hold on a button - the delay before auto changin the value.
- */
- var DELAY = 600;
-
- /**
- * Max Safe Integer -- on IE this is not available, so manually set the number in that case.
- * The reason this is used, instead of Infinity is because numbers above the MSI are unstable
- */
- var MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || Math.pow(2, 53) - 1;
-
- var isValidProps = function isValidProps(value) {
- return value !== undefined && value !== null;
- };
-
- var isEqual = function isEqual(oldValue, newValue) {
- return newValue === oldValue || typeof newValue === 'number' && typeof oldValue === 'number' && isNaN(newValue) && isNaN(oldValue);
- };
-
- var InputNumber = function (_React$Component) {
- __WEBPACK_IMPORTED_MODULE_4_babel_runtime_helpers_inherits___default()(InputNumber, _React$Component);
-
- function InputNumber(props) {
- __WEBPACK_IMPORTED_MODULE_2_babel_runtime_helpers_classCallCheck___default()(this, InputNumber);
-
- var _this = __WEBPACK_IMPORTED_MODULE_3_babel_runtime_helpers_possibleConstructorReturn___default()(this, _React$Component.call(this, props));
-
- _initialiseProps.call(_this);
-
- var value = void 0;
- if ('value' in props) {
- value = props.value;
- } else {
- value = props.defaultValue;
- }
- _this.state = {
- focused: props.autoFocus
- };
- var validValue = _this.getValidValue(_this.toNumber(value));
- _this.state = __WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_extends___default()({}, _this.state, {
- inputValue: _this.toPrecisionAsStep(validValue),
- value: validValue
- });
- return _this;
- }
-
- InputNumber.prototype.componentDidMount = function componentDidMount() {
- this.componentDidUpdate();
- };
-
- InputNumber.prototype.componentDidUpdate = function componentDidUpdate(prevProps) {
- var _props = this.props,
- value = _props.value,
- onChange = _props.onChange,
- max = _props.max,
- min = _props.min;
- var focused = this.state.focused;
-
- // Don't trigger in componentDidMount
-
- if (prevProps) {
- if (!isEqual(prevProps.value, value) || !isEqual(prevProps.max, max) || !isEqual(prevProps.min, min)) {
- var validValue = focused ? value : this.getValidValue(value);
- var nextInputValue = void 0;
- if (this.pressingUpOrDown) {
- nextInputValue = validValue;
- } else if (this.inputting) {
- nextInputValue = this.rawInput;
- } else {
- nextInputValue = this.toPrecisionAsStep(validValue);
- }
- this.setState({ // eslint-disable-line
- value: validValue,
- inputValue: nextInputValue
- });
- }
-
- // Trigger onChange when max or min change
- // https://github.com/ant-design/ant-design/issues/11574
- var nextValue = 'value' in this.props ? value : this.state.value;
- // ref: null < 20 === true
- // https://github.com/ant-design/ant-design/issues/14277
- if ('max' in this.props && prevProps.max !== max && typeof nextValue === 'number' && nextValue > max && onChange) {
- onChange(max);
- }
- if ('min' in this.props && prevProps.min !== min && typeof nextValue === 'number' && nextValue < min && onChange) {
- onChange(min);
- }
- }
-
- // Restore cursor
- try {
- // Firefox set the input cursor after it get focused.
- // This caused that if an input didn't init with the selection,
- // set will cause cursor not correct when first focus.
- // Safari will focus input if set selection. We need skip this.
- if (this.cursorStart !== undefined && this.state.focused) {
- // In most cases, the string after cursor is stable.
- // We can move the cursor before it
-
- if (
- // If not match full str, try to match part of str
- !this.partRestoreByAfter(this.cursorAfter) && this.state.value !== this.props.value) {
- // If not match any of then, let's just keep the position
- // TODO: Logic should not reach here, need check if happens
- var pos = this.cursorStart + 1;
-
- // If not have last string, just position to the end
- if (!this.cursorAfter) {
- pos = this.input.value.length;
- } else if (this.lastKeyCode === __WEBPACK_IMPORTED_MODULE_8_rc_util_es_KeyCode__["a" /* default */].BACKSPACE) {
- pos = this.cursorStart - 1;
- } else if (this.lastKeyCode === __WEBPACK_IMPORTED_MODULE_8_rc_util_es_KeyCode__["a" /* default */].DELETE) {
- pos = this.cursorStart;
- }
- this.fixCaret(pos, pos);
- } else if (this.currentValue === this.input.value) {
- // Handle some special key code
- switch (this.lastKeyCode) {
- case __WEBPACK_IMPORTED_MODULE_8_rc_util_es_KeyCode__["a" /* default */].BACKSPACE:
- this.fixCaret(this.cursorStart - 1, this.cursorStart - 1);
- break;
- case __WEBPACK_IMPORTED_MODULE_8_rc_util_es_KeyCode__["a" /* default */].DELETE:
- this.fixCaret(this.cursorStart + 1, this.cursorStart + 1);
- break;
- default:
- // Do nothing
- }
- }
- }
- } catch (e) {}
- // Do nothing
-
-
- // Reset last key
- this.lastKeyCode = null;
-
- // pressingUpOrDown is true means that someone just click up or down button
- if (!this.pressingUpOrDown) {
- return;
- }
- if (this.props.focusOnUpDown && this.state.focused) {
- if (document.activeElement !== this.input) {
- this.focus();
- }
- }
-
- this.pressingUpOrDown = false;
- };
-
- InputNumber.prototype.componentWillUnmount = function componentWillUnmount() {
- this.stop();
- };
-
- InputNumber.prototype.getCurrentValidValue = function getCurrentValidValue(value) {
- var val = value;
- if (val === '') {
- val = '';
- } else if (!this.isNotCompleteNumber(parseFloat(val, 10))) {
- val = this.getValidValue(val);
- } else {
- val = this.state.value;
- }
- return this.toNumber(val);
- };
-
- InputNumber.prototype.getRatio = function getRatio(e) {
- var ratio = 1;
- if (e.metaKey || e.ctrlKey) {
- ratio = 0.1;
- } else if (e.shiftKey) {
- ratio = 10;
- }
- return ratio;
- };
-
- InputNumber.prototype.getValueFromEvent = function getValueFromEvent(e) {
- // optimize for chinese input expierence
- // https://github.com/ant-design/ant-design/issues/8196
- var value = e.target.value.trim().replace(/。/g, '.');
-
- if (isValidProps(this.props.decimalSeparator)) {
- value = value.replace(this.props.decimalSeparator, '.');
- }
-
- return value;
- };
-
- InputNumber.prototype.getValidValue = function getValidValue(value) {
- var min = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : this.props.min;
- var max = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : this.props.max;
-
- var val = parseFloat(value, 10);
- // https://github.com/ant-design/ant-design/issues/7358
- if (isNaN(val)) {
- return value;
- }
- if (val < min) {
- val = min;
- }
- if (val > max) {
- val = max;
- }
- return val;
- };
-
- InputNumber.prototype.setValue = function setValue(v, callback) {
- // trigger onChange
- var precision = this.props.precision;
-
- var newValue = this.isNotCompleteNumber(parseFloat(v, 10)) ? null : parseFloat(v, 10);
- var _state = this.state,
- _state$value = _state.value,
- value = _state$value === undefined ? null : _state$value,
- _state$inputValue = _state.inputValue,
- inputValue = _state$inputValue === undefined ? null : _state$inputValue;
- // https://github.com/ant-design/ant-design/issues/7363
- // https://github.com/ant-design/ant-design/issues/16622
-
- var newValueInString = typeof newValue === 'number' ? newValue.toFixed(precision) : '' + newValue;
- var changed = newValue !== value || newValueInString !== '' + inputValue;
- if (!('value' in this.props)) {
- this.setState({
- value: newValue,
- inputValue: this.toPrecisionAsStep(v)
- }, callback);
- } else {
- // always set input value same as value
- this.setState({
- inputValue: this.toPrecisionAsStep(this.state.value)
- }, callback);
- }
- if (changed) {
- this.props.onChange(newValue);
- }
-
- return newValue;
- };
-
- InputNumber.prototype.getPrecision = function getPrecision(value) {
- if (isValidProps(this.props.precision)) {
- return this.props.precision;
- }
- var valueString = value.toString();
- if (valueString.indexOf('e-') >= 0) {
- return parseInt(valueString.slice(valueString.indexOf('e-') + 2), 10);
- }
- var precision = 0;
- if (valueString.indexOf('.') >= 0) {
- precision = valueString.length - valueString.indexOf('.') - 1;
- }
- return precision;
- };
-
- // step={1.0} value={1.51}
- // press +
- // then value should be 2.51, rather than 2.5
- // if this.props.precision is undefined
- // https://github.com/react-component/input-number/issues/39
-
-
- InputNumber.prototype.getMaxPrecision = function getMaxPrecision(currentValue) {
- var ratio = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 1;
- var _props2 = this.props,
- precision = _props2.precision,
- step = _props2.step;
-
- if (isValidProps(precision)) {
- return precision;
- }
- var ratioPrecision = this.getPrecision(ratio);
- var stepPrecision = this.getPrecision(step);
- var currentValuePrecision = this.getPrecision(currentValue);
- if (!currentValue) {
- return ratioPrecision + stepPrecision;
- }
- return Math.max(currentValuePrecision, ratioPrecision + stepPrecision);
- };
-
- InputNumber.prototype.getPrecisionFactor = function getPrecisionFactor(currentValue) {
- var ratio = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 1;
-
- var precision = this.getMaxPrecision(currentValue, ratio);
- return Math.pow(10, precision);
- };
-
- InputNumber.prototype.fixCaret = function fixCaret(start, end) {
- if (start === undefined || end === undefined || !this.input || !this.input.value) {
- return;
- }
-
- try {
- var currentStart = this.input.selectionStart;
- var currentEnd = this.input.selectionEnd;
-
- if (start !== currentStart || end !== currentEnd) {
- this.input.setSelectionRange(start, end);
- }
- } catch (e) {
- // Fix error in Chrome:
- // Failed to read the 'selectionStart' property from 'HTMLInputElement'
- // http://stackoverflow.com/q/21177489/3040605
- }
- };
-
- InputNumber.prototype.focus = function focus() {
- this.input.focus();
- this.recordCursorPosition();
- };
-
- InputNumber.prototype.blur = function blur() {
- this.input.blur();
- };
-
- InputNumber.prototype.formatWrapper = function formatWrapper(num) {
- // http://2ality.com/2012/03/signedzero.html
- // https://github.com/ant-design/ant-design/issues/9439
- if (this.props.formatter) {
- return this.props.formatter(num);
- }
- return num;
- };
-
- InputNumber.prototype.toPrecisionAsStep = function toPrecisionAsStep(num) {
- if (this.isNotCompleteNumber(num) || num === '') {
- return num;
- }
- var precision = Math.abs(this.getMaxPrecision(num));
- if (!isNaN(precision)) {
- return Number(num).toFixed(precision);
- }
- return num.toString();
- };
-
- // '1.' '1x' 'xx' '' => are not complete numbers
-
-
- InputNumber.prototype.isNotCompleteNumber = function isNotCompleteNumber(num) {
- return isNaN(num) || num === '' || num === null || num && num.toString().indexOf('.') === num.toString().length - 1;
- };
-
- InputNumber.prototype.toNumber = function toNumber(num) {
- var precision = this.props.precision;
- var focused = this.state.focused;
- // num.length > 16 => This is to prevent input of large numbers
-
- var numberIsTooLarge = num && num.length > 16 && focused;
- if (this.isNotCompleteNumber(num) || numberIsTooLarge) {
- return num;
- }
- if (isValidProps(precision)) {
- return Math.round(num * Math.pow(10, precision)) / Math.pow(10, precision);
- }
- return Number(num);
- };
-
- InputNumber.prototype.upStep = function upStep(val, rat) {
- var step = this.props.step;
-
- var precisionFactor = this.getPrecisionFactor(val, rat);
- var precision = Math.abs(this.getMaxPrecision(val, rat));
- var result = ((precisionFactor * val + precisionFactor * step * rat) / precisionFactor).toFixed(precision);
- return this.toNumber(result);
- };
-
- InputNumber.prototype.downStep = function downStep(val, rat) {
- var step = this.props.step;
-
- var precisionFactor = this.getPrecisionFactor(val, rat);
- var precision = Math.abs(this.getMaxPrecision(val, rat));
- var result = ((precisionFactor * val - precisionFactor * step * rat) / precisionFactor).toFixed(precision);
- return this.toNumber(result);
- };
-
- InputNumber.prototype.step = function step(type, e) {
- var _this2 = this;
-
- var ratio = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 1;
- var recursive = arguments[3];
-
- this.stop();
- if (e) {
- e.persist();
- e.preventDefault();
- }
- var props = this.props;
- if (props.disabled) {
- return;
- }
- var value = this.getCurrentValidValue(this.state.inputValue) || 0;
- if (this.isNotCompleteNumber(value)) {
- return;
- }
- var val = this[type + 'Step'](value, ratio);
- var outOfRange = val > props.max || val < props.min;
- if (val > props.max) {
- val = props.max;
- } else if (val < props.min) {
- val = props.min;
- }
- this.setValue(val);
- this.setState({
- focused: true
- });
- if (outOfRange) {
- return;
- }
- this.autoStepTimer = setTimeout(function () {
- _this2[type](e, ratio, true);
- }, recursive ? SPEED : DELAY);
- };
-
- InputNumber.prototype.render = function render() {
- var _classNames;
-
- var props = __WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_extends___default()({}, this.props);
-
- var prefixCls = props.prefixCls,
- disabled = props.disabled,
- readOnly = props.readOnly,
- useTouch = props.useTouch,
- autoComplete = props.autoComplete,
- upHandler = props.upHandler,
- downHandler = props.downHandler,
- rest = __WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_objectWithoutProperties___default()(props, ['prefixCls', 'disabled', 'readOnly', 'useTouch', 'autoComplete', 'upHandler', 'downHandler']);
-
- var classes = __WEBPACK_IMPORTED_MODULE_7_classnames___default()((_classNames = {}, _classNames[prefixCls] = true, _classNames[props.className] = !!props.className, _classNames[prefixCls + '-disabled'] = disabled, _classNames[prefixCls + '-focused'] = this.state.focused, _classNames));
- var upDisabledClass = '';
- var downDisabledClass = '';
- var value = this.state.value;
-
- if (value || value === 0) {
- if (!isNaN(value)) {
- var val = Number(value);
- if (val >= props.max) {
- upDisabledClass = prefixCls + '-handler-up-disabled';
- }
- if (val <= props.min) {
- downDisabledClass = prefixCls + '-handler-down-disabled';
- }
- } else {
- upDisabledClass = prefixCls + '-handler-up-disabled';
- downDisabledClass = prefixCls + '-handler-down-disabled';
- }
- }
-
- var dataOrAriaAttributeProps = {};
- for (var key in props) {
- if (props.hasOwnProperty(key) && (key.substr(0, 5) === 'data-' || key.substr(0, 5) === 'aria-' || key === 'role')) {
- dataOrAriaAttributeProps[key] = props[key];
- }
- }
-
- var editable = !props.readOnly && !props.disabled;
-
- // focus state, show input value
- // unfocus state, show valid value
- var inputDisplayValue = this.getInputDisplayValue();
-
- var upEvents = void 0;
- var downEvents = void 0;
- if (useTouch) {
- upEvents = {
- onTouchStart: editable && !upDisabledClass ? this.up : noop,
- onTouchEnd: this.stop
- };
- downEvents = {
- onTouchStart: editable && !downDisabledClass ? this.down : noop,
- onTouchEnd: this.stop
- };
- } else {
- upEvents = {
- onMouseDown: editable && !upDisabledClass ? this.up : noop,
- onMouseUp: this.stop,
- onMouseLeave: this.stop
- };
- downEvents = {
- onMouseDown: editable && !downDisabledClass ? this.down : noop,
- onMouseUp: this.stop,
- onMouseLeave: this.stop
- };
- }
-
- var isUpDisabled = !!upDisabledClass || disabled || readOnly;
- var isDownDisabled = !!downDisabledClass || disabled || readOnly;
- // ref for test
- return __WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement(
- 'div',
- {
- className: classes,
- style: props.style,
- title: props.title,
- onMouseEnter: props.onMouseEnter,
- onMouseLeave: props.onMouseLeave,
- onMouseOver: props.onMouseOver,
- onMouseOut: props.onMouseOut
- },
- __WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement(
- 'div',
- { className: prefixCls + '-handler-wrap' },
- __WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement(
- __WEBPACK_IMPORTED_MODULE_9__InputHandler__["a" /* default */],
- __WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_extends___default()({
- ref: this.saveUp,
- disabled: isUpDisabled,
- prefixCls: prefixCls,
- unselectable: 'unselectable'
- }, upEvents, {
- role: 'button',
- 'aria-label': 'Increase Value',
- 'aria-disabled': !!isUpDisabled,
- className: prefixCls + '-handler ' + prefixCls + '-handler-up ' + upDisabledClass
- }),
- upHandler || __WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement('span', {
- unselectable: 'unselectable',
- className: prefixCls + '-handler-up-inner',
- onClick: preventDefault
- })
- ),
- __WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement(
- __WEBPACK_IMPORTED_MODULE_9__InputHandler__["a" /* default */],
- __WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_extends___default()({
- ref: this.saveDown,
- disabled: isDownDisabled,
- prefixCls: prefixCls,
- unselectable: 'unselectable'
- }, downEvents, {
- role: 'button',
- 'aria-label': 'Decrease Value',
- 'aria-disabled': !!isDownDisabled,
- className: prefixCls + '-handler ' + prefixCls + '-handler-down ' + downDisabledClass
- }),
- downHandler || __WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement('span', {
- unselectable: 'unselectable',
- className: prefixCls + '-handler-down-inner',
- onClick: preventDefault
- })
- )
- ),
- __WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement(
- 'div',
- {
- className: prefixCls + '-input-wrap'
- },
- __WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement('input', __WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_extends___default()({
- role: 'spinbutton',
- 'aria-valuemin': props.min,
- 'aria-valuemax': props.max,
- 'aria-valuenow': value,
- required: props.required,
- type: props.type,
- placeholder: props.placeholder,
- onClick: props.onClick,
- onMouseUp: this.onMouseUp,
- className: prefixCls + '-input',
- tabIndex: props.tabIndex,
- autoComplete: autoComplete,
- onFocus: this.onFocus,
- onBlur: this.onBlur,
- onKeyDown: editable ? this.onKeyDown : noop,
- onKeyUp: editable ? this.onKeyUp : noop,
- autoFocus: props.autoFocus,
- maxLength: props.maxLength,
- readOnly: props.readOnly,
- disabled: props.disabled,
- max: props.max,
- min: props.min,
- step: props.step,
- name: props.name,
- title: props.title,
- id: props.id,
- onChange: this.onChange,
- ref: this.saveInput,
- value: inputDisplayValue,
- pattern: props.pattern,
- inputMode: props.inputMode
- }, dataOrAriaAttributeProps))
- )
- );
- };
-
- return InputNumber;
- }(__WEBPACK_IMPORTED_MODULE_5_react___default.a.Component);
-
- InputNumber.propTypes = {
- value: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.oneOfType([__WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.number, __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.string]),
- defaultValue: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.oneOfType([__WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.number, __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.string]),
- focusOnUpDown: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.bool,
- autoFocus: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.bool,
- onChange: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.func,
- onPressEnter: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.func,
- onKeyDown: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.func,
- onKeyUp: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.func,
- prefixCls: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.string,
- tabIndex: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.oneOfType([__WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.string, __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.number]),
- disabled: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.bool,
- onFocus: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.func,
- onBlur: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.func,
- readOnly: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.bool,
- max: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.number,
- min: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.number,
- step: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.oneOfType([__WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.number, __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.string]),
- upHandler: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.node,
- downHandler: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.node,
- useTouch: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.bool,
- formatter: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.func,
- parser: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.func,
- onMouseEnter: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.func,
- onMouseLeave: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.func,
- onMouseOver: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.func,
- onMouseOut: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.func,
- onMouseUp: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.func,
- precision: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.number,
- required: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.bool,
- pattern: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.string,
- decimalSeparator: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.string,
- inputMode: __WEBPACK_IMPORTED_MODULE_6_prop_types___default.a.string
- };
- InputNumber.defaultProps = {
- focusOnUpDown: true,
- useTouch: false,
- prefixCls: 'rc-input-number',
- min: -MAX_SAFE_INTEGER,
- step: 1,
- style: {},
- onChange: noop,
- onKeyDown: noop,
- onPressEnter: noop,
- onFocus: noop,
- onBlur: noop,
- parser: defaultParser,
- required: false,
- autoComplete: 'off'
- };
-
- var _initialiseProps = function _initialiseProps() {
- var _this3 = this;
-
- this.onKeyDown = function (e) {
- for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
- args[_key - 1] = arguments[_key];
- }
-
- var _props3 = _this3.props,
- onKeyDown = _props3.onKeyDown,
- onPressEnter = _props3.onPressEnter;
-
-
- if (e.keyCode === __WEBPACK_IMPORTED_MODULE_8_rc_util_es_KeyCode__["a" /* default */].UP) {
- var ratio = _this3.getRatio(e);
- _this3.up(e, ratio);
- _this3.stop();
- } else if (e.keyCode === __WEBPACK_IMPORTED_MODULE_8_rc_util_es_KeyCode__["a" /* default */].DOWN) {
- var _ratio = _this3.getRatio(e);
- _this3.down(e, _ratio);
- _this3.stop();
- } else if (e.keyCode === __WEBPACK_IMPORTED_MODULE_8_rc_util_es_KeyCode__["a" /* default */].ENTER && onPressEnter) {
- onPressEnter(e);
- }
-
- // Trigger user key down
- _this3.recordCursorPosition();
- _this3.lastKeyCode = e.keyCode;
- if (onKeyDown) {
- onKeyDown.apply(undefined, [e].concat(args));
- }
- };
-
- this.onKeyUp = function (e) {
- for (var _len2 = arguments.length, args = Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
- args[_key2 - 1] = arguments[_key2];
- }
-
- var onKeyUp = _this3.props.onKeyUp;
-
-
- _this3.stop();
-
- _this3.recordCursorPosition();
-
- // Trigger user key up
- if (onKeyUp) {
- onKeyUp.apply(undefined, [e].concat(args));
- }
- };
-
- this.onChange = function (e) {
- var onChange = _this3.props.onChange;
-
-
- if (_this3.state.focused) {
- _this3.inputting = true;
- }
- _this3.rawInput = _this3.props.parser(_this3.getValueFromEvent(e));
- _this3.setState({ inputValue: _this3.rawInput });
- onChange(_this3.toNumber(_this3.rawInput)); // valid number or invalid string
- };
-
- this.onMouseUp = function () {
- var onMouseUp = _this3.props.onMouseUp;
-
-
- _this3.recordCursorPosition();
-
- if (onMouseUp) {
- onMouseUp.apply(undefined, arguments);
- }
- };
-
- this.onFocus = function () {
- var _props4;
-
- _this3.setState({
- focused: true
- });
- (_props4 = _this3.props).onFocus.apply(_props4, arguments);
- };
-
- this.onBlur = function () {
- var onBlur = _this3.props.onBlur;
-
- _this3.inputting = false;
- _this3.setState({
- focused: false
- });
- var value = _this3.getCurrentValidValue(_this3.state.inputValue);
- var newValue = _this3.setValue(value);
-
- if (onBlur) {
- var originValue = _this3.input.value;
- var inputValue = _this3.getInputDisplayValue({ focus: false, value: newValue });
- _this3.input.value = inputValue;
- onBlur.apply(undefined, arguments);
- _this3.input.value = originValue;
- }
- };
-
- this.getInputDisplayValue = function (state) {
- var _ref = state || _this3.state,
- focused = _ref.focused,
- inputValue = _ref.inputValue,
- value = _ref.value;
-
- var inputDisplayValue = void 0;
- if (focused) {
- inputDisplayValue = inputValue;
- } else {
- inputDisplayValue = _this3.toPrecisionAsStep(value);
- }
-
- if (inputDisplayValue === undefined || inputDisplayValue === null) {
- inputDisplayValue = '';
- }
-
- var inputDisplayValueFormat = _this3.formatWrapper(inputDisplayValue);
- if (isValidProps(_this3.props.decimalSeparator)) {
- inputDisplayValueFormat = inputDisplayValueFormat.toString().replace('.', _this3.props.decimalSeparator);
- }
-
- return inputDisplayValueFormat;
- };
-
- this.recordCursorPosition = function () {
- // Record position
- try {
- _this3.cursorStart = _this3.input.selectionStart;
- _this3.cursorEnd = _this3.input.selectionEnd;
- _this3.currentValue = _this3.input.value;
- _this3.cursorBefore = _this3.input.value.substring(0, _this3.cursorStart);
- _this3.cursorAfter = _this3.input.value.substring(_this3.cursorEnd);
- } catch (e) {
- // Fix error in Chrome:
- // Failed to read the 'selectionStart' property from 'HTMLInputElement'
- // http://stackoverflow.com/q/21177489/3040605
- }
- };
-
- this.restoreByAfter = function (str) {
- if (str === undefined) return false;
-
- var fullStr = _this3.input.value;
- var index = fullStr.lastIndexOf(str);
-
- if (index === -1) return false;
-
- var prevCursorPos = _this3.cursorBefore.length;
- if (_this3.lastKeyCode === __WEBPACK_IMPORTED_MODULE_8_rc_util_es_KeyCode__["a" /* default */].DELETE && _this3.cursorBefore.charAt(prevCursorPos - 1) === str[0]) {
- _this3.fixCaret(prevCursorPos, prevCursorPos);
- return true;
- }
-
- if (index + str.length === fullStr.length) {
- _this3.fixCaret(index, index);
-
- return true;
- }
- return false;
- };
-
- this.partRestoreByAfter = function (str) {
- if (str === undefined) return false;
-
- // For loop from full str to the str with last char to map. e.g. 123
- // -> 123
- // -> 23
- // -> 3
- return Array.prototype.some.call(str, function (_, start) {
- var partStr = str.substring(start);
-
- return _this3.restoreByAfter(partStr);
- });
- };
-
- this.stop = function () {
- if (_this3.autoStepTimer) {
- clearTimeout(_this3.autoStepTimer);
- }
- };
-
- this.down = function (e, ratio, recursive) {
- _this3.pressingUpOrDown = true;
- _this3.step('down', e, ratio, recursive);
- };
-
- this.up = function (e, ratio, recursive) {
- _this3.pressingUpOrDown = true;
- _this3.step('up', e, ratio, recursive);
- };
-
- this.saveUp = function (node) {
- _this3.upHandler = node;
- };
-
- this.saveDown = function (node) {
- _this3.downHandler = node;
- };
-
- this.saveInput = function (node) {
- _this3.input = node;
- };
- };
-
- /* harmony default export */ __webpack_exports__["default"] = (InputNumber);
-
- /***/ }),
-
- /***/ 1213:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_objectWithoutProperties__ = __webpack_require__(74);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_objectWithoutProperties___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_objectWithoutProperties__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_classCallCheck__ = __webpack_require__(12);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_classCallCheck___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_classCallCheck__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_babel_runtime_helpers_possibleConstructorReturn__ = __webpack_require__(13);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_babel_runtime_helpers_possibleConstructorReturn___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_babel_runtime_helpers_possibleConstructorReturn__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_babel_runtime_helpers_inherits__ = __webpack_require__(14);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_babel_runtime_helpers_inherits___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_babel_runtime_helpers_inherits__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_react__ = __webpack_require__(0);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_react__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_prop_types__ = __webpack_require__(1);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_prop_types__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_rmc_feedback__ = __webpack_require__(1214);
-
-
-
-
-
-
-
-
- var InputHandler = function (_Component) {
- __WEBPACK_IMPORTED_MODULE_3_babel_runtime_helpers_inherits___default()(InputHandler, _Component);
-
- function InputHandler() {
- __WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_classCallCheck___default()(this, InputHandler);
-
- return __WEBPACK_IMPORTED_MODULE_2_babel_runtime_helpers_possibleConstructorReturn___default()(this, _Component.apply(this, arguments));
- }
-
- InputHandler.prototype.render = function render() {
- var _props = this.props,
- prefixCls = _props.prefixCls,
- disabled = _props.disabled,
- otherProps = __WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_objectWithoutProperties___default()(_props, ['prefixCls', 'disabled']);
-
- return __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(
- __WEBPACK_IMPORTED_MODULE_6_rmc_feedback__["a" /* default */],
- {
- disabled: disabled,
- activeClassName: prefixCls + '-handler-active'
- },
- __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement('span', otherProps)
- );
- };
-
- return InputHandler;
- }(__WEBPACK_IMPORTED_MODULE_4_react__["Component"]);
-
- InputHandler.propTypes = {
- prefixCls: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.string,
- disabled: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.bool,
- onTouchStart: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.func,
- onTouchEnd: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.func,
- onMouseDown: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.func,
- onMouseUp: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.func,
- onMouseLeave: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.func
- };
-
- /* harmony default export */ __webpack_exports__["a"] = (InputHandler);
-
- /***/ }),
-
- /***/ 1214:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__TouchFeedback__ = __webpack_require__(1215);
- /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return __WEBPACK_IMPORTED_MODULE_0__TouchFeedback__["a"]; });
-
-
- /***/ }),
-
- /***/ 1215:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_extends__ = __webpack_require__(25);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_extends___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_extends__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_classCallCheck__ = __webpack_require__(12);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_classCallCheck___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_classCallCheck__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_babel_runtime_helpers_createClass__ = __webpack_require__(46);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_babel_runtime_helpers_createClass___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_babel_runtime_helpers_createClass__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_babel_runtime_helpers_possibleConstructorReturn__ = __webpack_require__(13);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_babel_runtime_helpers_possibleConstructorReturn___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_babel_runtime_helpers_possibleConstructorReturn__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_babel_runtime_helpers_inherits__ = __webpack_require__(14);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_babel_runtime_helpers_inherits___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_babel_runtime_helpers_inherits__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_react__ = __webpack_require__(0);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_react__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_classnames__ = __webpack_require__(3);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_classnames__);
-
-
-
-
-
-
-
-
- var TouchFeedback = function (_React$Component) {
- __WEBPACK_IMPORTED_MODULE_4_babel_runtime_helpers_inherits___default()(TouchFeedback, _React$Component);
-
- function TouchFeedback() {
- __WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_classCallCheck___default()(this, TouchFeedback);
-
- var _this = __WEBPACK_IMPORTED_MODULE_3_babel_runtime_helpers_possibleConstructorReturn___default()(this, (TouchFeedback.__proto__ || Object.getPrototypeOf(TouchFeedback)).apply(this, arguments));
-
- _this.state = {
- active: false
- };
- _this.onTouchStart = function (e) {
- _this.triggerEvent('TouchStart', true, e);
- };
- _this.onTouchMove = function (e) {
- _this.triggerEvent('TouchMove', false, e);
- };
- _this.onTouchEnd = function (e) {
- _this.triggerEvent('TouchEnd', false, e);
- };
- _this.onTouchCancel = function (e) {
- _this.triggerEvent('TouchCancel', false, e);
- };
- _this.onMouseDown = function (e) {
- // pc simulate mobile
- _this.triggerEvent('MouseDown', true, e);
- };
- _this.onMouseUp = function (e) {
- _this.triggerEvent('MouseUp', false, e);
- };
- _this.onMouseLeave = function (e) {
- _this.triggerEvent('MouseLeave', false, e);
- };
- return _this;
- }
-
- __WEBPACK_IMPORTED_MODULE_2_babel_runtime_helpers_createClass___default()(TouchFeedback, [{
- key: 'componentDidUpdate',
- value: function componentDidUpdate() {
- if (this.props.disabled && this.state.active) {
- this.setState({
- active: false
- });
- }
- }
- }, {
- key: 'triggerEvent',
- value: function triggerEvent(type, isActive, ev) {
- var eventType = 'on' + type;
- var children = this.props.children;
-
- if (children.props[eventType]) {
- children.props[eventType](ev);
- }
- if (isActive !== this.state.active) {
- this.setState({
- active: isActive
- });
- }
- }
- }, {
- key: 'render',
- value: function render() {
- var _props = this.props,
- children = _props.children,
- disabled = _props.disabled,
- activeClassName = _props.activeClassName,
- activeStyle = _props.activeStyle;
-
- var events = disabled ? undefined : {
- onTouchStart: this.onTouchStart,
- onTouchMove: this.onTouchMove,
- onTouchEnd: this.onTouchEnd,
- onTouchCancel: this.onTouchCancel,
- onMouseDown: this.onMouseDown,
- onMouseUp: this.onMouseUp,
- onMouseLeave: this.onMouseLeave
- };
- var child = __WEBPACK_IMPORTED_MODULE_5_react___default.a.Children.only(children);
- if (!disabled && this.state.active) {
- var _child$props = child.props,
- style = _child$props.style,
- className = _child$props.className;
-
- if (activeStyle !== false) {
- if (activeStyle) {
- style = __WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_extends___default()({}, style, activeStyle);
- }
- className = __WEBPACK_IMPORTED_MODULE_6_classnames___default()(className, activeClassName);
- }
- return __WEBPACK_IMPORTED_MODULE_5_react___default.a.cloneElement(child, __WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_extends___default()({ className: className,
- style: style }, events));
- }
- return __WEBPACK_IMPORTED_MODULE_5_react___default.a.cloneElement(child, events);
- }
- }]);
-
- return TouchFeedback;
- }(__WEBPACK_IMPORTED_MODULE_5_react___default.a.Component);
-
- /* harmony default export */ __webpack_exports__["a"] = (TouchFeedback);
-
- TouchFeedback.defaultProps = {
- disabled: false
- };
-
- /***/ }),
-
- /***/ 1218:
- /***/ (function(module, exports, __webpack_require__) {
-
- var Stack = __webpack_require__(916),
- assignMergeValue = __webpack_require__(1085),
- baseFor = __webpack_require__(1190),
- baseMergeDeep = __webpack_require__(1219),
- isObject = __webpack_require__(171),
- keysIn = __webpack_require__(1072),
- safeGet = __webpack_require__(1086);
-
- /**
- * The base implementation of `_.merge` without support for multiple sources.
- *
- * @private
- * @param {Object} object The destination object.
- * @param {Object} source The source object.
- * @param {number} srcIndex The index of `source`.
- * @param {Function} [customizer] The function to customize merged values.
- * @param {Object} [stack] Tracks traversed source values and their merged
- * counterparts.
- */
- function baseMerge(object, source, srcIndex, customizer, stack) {
- if (object === source) {
- return;
- }
- baseFor(source, function(srcValue, key) {
- stack || (stack = new Stack);
- if (isObject(srcValue)) {
- baseMergeDeep(object, source, key, srcIndex, baseMerge, customizer, stack);
- }
- else {
- var newValue = customizer
- ? customizer(safeGet(object, key), srcValue, (key + ''), object, source, stack)
- : undefined;
-
- if (newValue === undefined) {
- newValue = srcValue;
- }
- assignMergeValue(object, key, newValue);
- }
- }, keysIn);
- }
-
- module.exports = baseMerge;
-
-
- /***/ }),
-
- /***/ 1219:
- /***/ (function(module, exports, __webpack_require__) {
-
- var assignMergeValue = __webpack_require__(1085),
- cloneBuffer = __webpack_require__(1191),
- cloneTypedArray = __webpack_require__(1192),
- copyArray = __webpack_require__(1193),
- initCloneObject = __webpack_require__(1194),
- isArguments = __webpack_require__(882),
- isArray = __webpack_require__(865),
- isArrayLikeObject = __webpack_require__(1220),
- isBuffer = __webpack_require__(897),
- isFunction = __webpack_require__(878),
- isObject = __webpack_require__(171),
- isPlainObject = __webpack_require__(1195),
- isTypedArray = __webpack_require__(899),
- safeGet = __webpack_require__(1086),
- toPlainObject = __webpack_require__(1221);
-
- /**
- * A specialized version of `baseMerge` for arrays and objects which performs
- * deep merges and tracks traversed objects enabling objects with circular
- * references to be merged.
- *
- * @private
- * @param {Object} object The destination object.
- * @param {Object} source The source object.
- * @param {string} key The key of the value to merge.
- * @param {number} srcIndex The index of `source`.
- * @param {Function} mergeFunc The function to merge values.
- * @param {Function} [customizer] The function to customize assigned values.
- * @param {Object} [stack] Tracks traversed source values and their merged
- * counterparts.
- */
- function baseMergeDeep(object, source, key, srcIndex, mergeFunc, customizer, stack) {
- var objValue = safeGet(object, key),
- srcValue = safeGet(source, key),
- stacked = stack.get(srcValue);
-
- if (stacked) {
- assignMergeValue(object, key, stacked);
- return;
- }
- var newValue = customizer
- ? customizer(objValue, srcValue, (key + ''), object, source, stack)
- : undefined;
-
- var isCommon = newValue === undefined;
-
- if (isCommon) {
- var isArr = isArray(srcValue),
- isBuff = !isArr && isBuffer(srcValue),
- isTyped = !isArr && !isBuff && isTypedArray(srcValue);
-
- newValue = srcValue;
- if (isArr || isBuff || isTyped) {
- if (isArray(objValue)) {
- newValue = objValue;
- }
- else if (isArrayLikeObject(objValue)) {
- newValue = copyArray(objValue);
- }
- else if (isBuff) {
- isCommon = false;
- newValue = cloneBuffer(srcValue, true);
- }
- else if (isTyped) {
- isCommon = false;
- newValue = cloneTypedArray(srcValue, true);
- }
- else {
- newValue = [];
- }
- }
- else if (isPlainObject(srcValue) || isArguments(srcValue)) {
- newValue = objValue;
- if (isArguments(objValue)) {
- newValue = toPlainObject(objValue);
- }
- else if (!isObject(objValue) || isFunction(objValue)) {
- newValue = initCloneObject(srcValue);
- }
- }
- else {
- isCommon = false;
- }
- }
- if (isCommon) {
- // Recursively merge objects and arrays (susceptible to call stack limits).
- stack.set(srcValue, newValue);
- mergeFunc(newValue, srcValue, srcIndex, customizer, stack);
- stack['delete'](srcValue);
- }
- assignMergeValue(object, key, newValue);
- }
-
- module.exports = baseMergeDeep;
-
-
- /***/ }),
-
- /***/ 1220:
- /***/ (function(module, exports, __webpack_require__) {
-
- var isArrayLike = __webpack_require__(896),
- isObjectLike = __webpack_require__(302);
-
- /**
- * This method is like `_.isArrayLike` except that it also checks if `value`
- * is an object.
- *
- * @static
- * @memberOf _
- * @since 4.0.0
- * @category Lang
- * @param {*} value The value to check.
- * @returns {boolean} Returns `true` if `value` is an array-like object,
- * else `false`.
- * @example
- *
- * _.isArrayLikeObject([1, 2, 3]);
- * // => true
- *
- * _.isArrayLikeObject(document.body.children);
- * // => true
- *
- * _.isArrayLikeObject('abc');
- * // => false
- *
- * _.isArrayLikeObject(_.noop);
- * // => false
- */
- function isArrayLikeObject(value) {
- return isObjectLike(value) && isArrayLike(value);
- }
-
- module.exports = isArrayLikeObject;
-
-
- /***/ }),
-
- /***/ 1221:
- /***/ (function(module, exports, __webpack_require__) {
-
- var copyObject = __webpack_require__(1174),
- keysIn = __webpack_require__(1072);
-
- /**
- * Converts `value` to a plain object flattening inherited enumerable string
- * keyed properties of `value` to own properties of the plain object.
- *
- * @static
- * @memberOf _
- * @since 3.0.0
- * @category Lang
- * @param {*} value The value to convert.
- * @returns {Object} Returns the converted plain object.
- * @example
- *
- * function Foo() {
- * this.b = 2;
- * }
- *
- * Foo.prototype.c = 3;
- *
- * _.assign({ 'a': 1 }, new Foo);
- * // => { 'a': 1, 'b': 2 }
- *
- * _.assign({ 'a': 1 }, _.toPlainObject(new Foo));
- * // => { 'a': 1, 'b': 2, 'c': 3 }
- */
- function toPlainObject(value) {
- return copyObject(value, keysIn(value));
- }
-
- module.exports = toPlainObject;
-
-
- /***/ }),
-
- /***/ 1222:
- /***/ (function(module, exports, __webpack_require__) {
-
- var baseRest = __webpack_require__(1223),
- isIterateeCall = __webpack_require__(1230);
-
- /**
- * Creates a function like `_.assign`.
- *
- * @private
- * @param {Function} assigner The function to assign values.
- * @returns {Function} Returns the new assigner function.
- */
- function createAssigner(assigner) {
- return baseRest(function(object, sources) {
- var index = -1,
- length = sources.length,
- customizer = length > 1 ? sources[length - 1] : undefined,
- guard = length > 2 ? sources[2] : undefined;
-
- customizer = (assigner.length > 3 && typeof customizer == 'function')
- ? (length--, customizer)
- : undefined;
-
- if (guard && isIterateeCall(sources[0], sources[1], guard)) {
- customizer = length < 3 ? undefined : customizer;
- length = 1;
- }
- object = Object(object);
- while (++index < length) {
- var source = sources[index];
- if (source) {
- assigner(object, source, index, customizer);
- }
- }
- return object;
- });
- }
-
- module.exports = createAssigner;
-
-
- /***/ }),
-
- /***/ 1223:
- /***/ (function(module, exports, __webpack_require__) {
-
- var identity = __webpack_require__(948),
- overRest = __webpack_require__(1224),
- setToString = __webpack_require__(1226);
-
- /**
- * The base implementation of `_.rest` which doesn't validate or coerce arguments.
- *
- * @private
- * @param {Function} func The function to apply a rest parameter to.
- * @param {number} [start=func.length-1] The start position of the rest parameter.
- * @returns {Function} Returns the new function.
- */
- function baseRest(func, start) {
- return setToString(overRest(func, start, identity), func + '');
- }
-
- module.exports = baseRest;
-
-
- /***/ }),
-
- /***/ 1224:
- /***/ (function(module, exports, __webpack_require__) {
-
- var apply = __webpack_require__(1225);
-
- /* Built-in method references for those with the same name as other `lodash` methods. */
- var nativeMax = Math.max;
-
- /**
- * A specialized version of `baseRest` which transforms the rest array.
- *
- * @private
- * @param {Function} func The function to apply a rest parameter to.
- * @param {number} [start=func.length-1] The start position of the rest parameter.
- * @param {Function} transform The rest array transform.
- * @returns {Function} Returns the new function.
- */
- function overRest(func, start, transform) {
- start = nativeMax(start === undefined ? (func.length - 1) : start, 0);
- return function() {
- var args = arguments,
- index = -1,
- length = nativeMax(args.length - start, 0),
- array = Array(length);
-
- while (++index < length) {
- array[index] = args[start + index];
- }
- index = -1;
- var otherArgs = Array(start + 1);
- while (++index < start) {
- otherArgs[index] = args[index];
- }
- otherArgs[start] = transform(array);
- return apply(func, this, otherArgs);
- };
- }
-
- module.exports = overRest;
-
-
- /***/ }),
-
- /***/ 1225:
- /***/ (function(module, exports) {
-
- /**
- * A faster alternative to `Function#apply`, this function invokes `func`
- * with the `this` binding of `thisArg` and the arguments of `args`.
- *
- * @private
- * @param {Function} func The function to invoke.
- * @param {*} thisArg The `this` binding of `func`.
- * @param {Array} args The arguments to invoke `func` with.
- * @returns {*} Returns the result of `func`.
- */
- function apply(func, thisArg, args) {
- switch (args.length) {
- case 0: return func.call(thisArg);
- case 1: return func.call(thisArg, args[0]);
- case 2: return func.call(thisArg, args[0], args[1]);
- case 3: return func.call(thisArg, args[0], args[1], args[2]);
- }
- return func.apply(thisArg, args);
- }
-
- module.exports = apply;
-
-
- /***/ }),
-
- /***/ 1226:
- /***/ (function(module, exports, __webpack_require__) {
-
- var baseSetToString = __webpack_require__(1227),
- shortOut = __webpack_require__(1229);
-
- /**
- * Sets the `toString` method of `func` to return `string`.
- *
- * @private
- * @param {Function} func The function to modify.
- * @param {Function} string The `toString` result.
- * @returns {Function} Returns `func`.
- */
- var setToString = shortOut(baseSetToString);
-
- module.exports = setToString;
-
-
- /***/ }),
-
- /***/ 1227:
- /***/ (function(module, exports, __webpack_require__) {
-
- var constant = __webpack_require__(1228),
- defineProperty = __webpack_require__(902),
- identity = __webpack_require__(948);
-
- /**
- * The base implementation of `setToString` without support for hot loop shorting.
- *
- * @private
- * @param {Function} func The function to modify.
- * @param {Function} string The `toString` result.
- * @returns {Function} Returns `func`.
- */
- var baseSetToString = !defineProperty ? identity : function(func, string) {
- return defineProperty(func, 'toString', {
- 'configurable': true,
- 'enumerable': false,
- 'value': constant(string),
- 'writable': true
- });
- };
-
- module.exports = baseSetToString;
-
-
- /***/ }),
-
- /***/ 1228:
- /***/ (function(module, exports) {
-
- /**
- * Creates a function that returns `value`.
- *
- * @static
- * @memberOf _
- * @since 2.4.0
- * @category Util
- * @param {*} value The value to return from the new function.
- * @returns {Function} Returns the new constant function.
- * @example
- *
- * var objects = _.times(2, _.constant({ 'a': 1 }));
- *
- * console.log(objects);
- * // => [{ 'a': 1 }, { 'a': 1 }]
- *
- * console.log(objects[0] === objects[1]);
- * // => true
- */
- function constant(value) {
- return function() {
- return value;
- };
- }
-
- module.exports = constant;
-
-
- /***/ }),
-
- /***/ 1229:
- /***/ (function(module, exports) {
-
- /** Used to detect hot functions by number of calls within a span of milliseconds. */
- var HOT_COUNT = 800,
- HOT_SPAN = 16;
-
- /* Built-in method references for those with the same name as other `lodash` methods. */
- var nativeNow = Date.now;
-
- /**
- * Creates a function that'll short out and invoke `identity` instead
- * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN`
- * milliseconds.
- *
- * @private
- * @param {Function} func The function to restrict.
- * @returns {Function} Returns the new shortable function.
- */
- function shortOut(func) {
- var count = 0,
- lastCalled = 0;
-
- return function() {
- var stamp = nativeNow(),
- remaining = HOT_SPAN - (stamp - lastCalled);
-
- lastCalled = stamp;
- if (remaining > 0) {
- if (++count >= HOT_COUNT) {
- return arguments[0];
- }
- } else {
- count = 0;
- }
- return func.apply(undefined, arguments);
- };
- }
-
- module.exports = shortOut;
-
-
- /***/ }),
-
- /***/ 1230:
- /***/ (function(module, exports, __webpack_require__) {
-
- var eq = __webpack_require__(870),
- isArrayLike = __webpack_require__(896),
- isIndex = __webpack_require__(873),
- isObject = __webpack_require__(171);
-
- /**
- * Checks if the given arguments are from an iteratee call.
- *
- * @private
- * @param {*} value The potential iteratee value argument.
- * @param {*} index The potential iteratee index or key argument.
- * @param {*} object The potential iteratee object argument.
- * @returns {boolean} Returns `true` if the arguments are from an iteratee call,
- * else `false`.
- */
- function isIterateeCall(value, index, object) {
- if (!isObject(object)) {
- return false;
- }
- var type = typeof index;
- if (type == 'number'
- ? (isArrayLike(object) && isIndex(index, object.length))
- : (type == 'string' && index in object)
- ) {
- return eq(object[index], value);
- }
- return false;
- }
-
- module.exports = isIterateeCall;
-
-
- /***/ }),
-
- /***/ 1231:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports["default"] = void 0;
-
- var React = _interopRequireWildcard(__webpack_require__(0));
-
- var _KeyCode = _interopRequireDefault(__webpack_require__(311));
-
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
-
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
-
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
-
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
-
- function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
-
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
-
- 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 _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
-
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
-
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
-
- var __rest = void 0 && (void 0).__rest || function (s, e) {
- var t = {};
-
- for (var p in s) {
- if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
- }
-
- if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
- }
- return t;
- };
- /**
- * Wrap of sub component which need use as Button capacity (like Icon component).
- * This helps accessibility reader to tread as a interactive button to operation.
- */
-
-
- var inlineStyle = {
- border: 0,
- background: 'transparent',
- padding: 0,
- lineHeight: 'inherit',
- display: 'inline-block'
- };
-
- var TransButton =
- /*#__PURE__*/
- function (_React$Component) {
- _inherits(TransButton, _React$Component);
-
- function TransButton() {
- var _this;
-
- _classCallCheck(this, TransButton);
-
- _this = _possibleConstructorReturn(this, _getPrototypeOf(TransButton).apply(this, arguments));
-
- _this.onKeyDown = function (event) {
- var keyCode = event.keyCode;
-
- if (keyCode === _KeyCode["default"].ENTER) {
- event.preventDefault();
- }
- };
-
- _this.onKeyUp = function (event) {
- var keyCode = event.keyCode;
- var onClick = _this.props.onClick;
-
- if (keyCode === _KeyCode["default"].ENTER && onClick) {
- onClick();
- }
- };
-
- _this.setRef = function (btn) {
- _this.div = btn;
- };
-
- return _this;
- }
-
- _createClass(TransButton, [{
- key: "focus",
- value: function focus() {
- if (this.div) {
- this.div.focus();
- }
- }
- }, {
- key: "blur",
- value: function blur() {
- if (this.div) {
- this.div.blur();
- }
- }
- }, {
- key: "render",
- value: function render() {
- var _a = this.props,
- style = _a.style,
- noStyle = _a.noStyle,
- restProps = __rest(_a, ["style", "noStyle"]);
-
- return React.createElement("div", _extends({
- role: "button",
- tabIndex: 0,
- ref: this.setRef
- }, restProps, {
- onKeyDown: this.onKeyDown,
- onKeyUp: this.onKeyUp,
- style: _extends(_extends({}, !noStyle ? inlineStyle : null), style)
- }));
- }
- }]);
-
- return TransButton;
- }(React.Component);
-
- var _default = TransButton;
- exports["default"] = _default;
- //# sourceMappingURL=transButton.js.map
-
-
- /***/ }),
-
- /***/ 1280:
- /***/ (function(module, exports, __webpack_require__) {
-
- var Displayable = __webpack_require__(1656);
-
- var zrUtil = __webpack_require__(864);
-
- var PathProxy = __webpack_require__(1600);
-
- var pathContain = __webpack_require__(2523);
-
- var Pattern = __webpack_require__(2263);
-
- var getCanvasPattern = Pattern.prototype.getCanvasPattern;
- var abs = Math.abs;
- var pathProxyForDraw = new PathProxy(true);
- /**
- * @alias module:zrender/graphic/Path
- * @extends module:zrender/graphic/Displayable
- * @constructor
- * @param {Object} opts
- */
-
- function Path(opts) {
- Displayable.call(this, opts);
- /**
- * @type {module:zrender/core/PathProxy}
- * @readOnly
- */
-
- this.path = null;
- }
-
- Path.prototype = {
- constructor: Path,
- type: 'path',
- __dirtyPath: true,
- strokeContainThreshold: 5,
- // This item default to be false. But in map series in echarts,
- // in order to improve performance, it should be set to true,
- // so the shorty segment won't draw.
- segmentIgnoreThreshold: 0,
-
- /**
- * See `module:zrender/src/graphic/helper/subPixelOptimize`.
- * @type {boolean}
- */
- subPixelOptimize: false,
- brush: function (ctx, prevEl) {
- var style = this.style;
- var path = this.path || pathProxyForDraw;
- var hasStroke = style.hasStroke();
- var hasFill = style.hasFill();
- var fill = style.fill;
- var stroke = style.stroke;
- var hasFillGradient = hasFill && !!fill.colorStops;
- var hasStrokeGradient = hasStroke && !!stroke.colorStops;
- var hasFillPattern = hasFill && !!fill.image;
- var hasStrokePattern = hasStroke && !!stroke.image;
- style.bind(ctx, this, prevEl);
- this.setTransform(ctx);
-
- if (this.__dirty) {
- var rect; // Update gradient because bounding rect may changed
-
- if (hasFillGradient) {
- rect = rect || this.getBoundingRect();
- this._fillGradient = style.getGradient(ctx, fill, rect);
- }
-
- if (hasStrokeGradient) {
- rect = rect || this.getBoundingRect();
- this._strokeGradient = style.getGradient(ctx, stroke, rect);
- }
- } // Use the gradient or pattern
-
-
- if (hasFillGradient) {
- // PENDING If may have affect the state
- ctx.fillStyle = this._fillGradient;
- } else if (hasFillPattern) {
- ctx.fillStyle = getCanvasPattern.call(fill, ctx);
- }
-
- if (hasStrokeGradient) {
- ctx.strokeStyle = this._strokeGradient;
- } else if (hasStrokePattern) {
- ctx.strokeStyle = getCanvasPattern.call(stroke, ctx);
- }
-
- var lineDash = style.lineDash;
- var lineDashOffset = style.lineDashOffset;
- var ctxLineDash = !!ctx.setLineDash; // Update path sx, sy
-
- var scale = this.getGlobalScale();
- path.setScale(scale[0], scale[1], this.segmentIgnoreThreshold); // Proxy context
- // Rebuild path in following 2 cases
- // 1. Path is dirty
- // 2. Path needs javascript implemented lineDash stroking.
- // In this case, lineDash information will not be saved in PathProxy
-
- if (this.__dirtyPath || lineDash && !ctxLineDash && hasStroke) {
- path.beginPath(ctx); // Setting line dash before build path
-
- if (lineDash && !ctxLineDash) {
- path.setLineDash(lineDash);
- path.setLineDashOffset(lineDashOffset);
- }
-
- this.buildPath(path, this.shape, false); // Clear path dirty flag
-
- if (this.path) {
- this.__dirtyPath = false;
- }
- } else {
- // Replay path building
- ctx.beginPath();
- this.path.rebuildPath(ctx);
- }
-
- if (hasFill) {
- if (style.fillOpacity != null) {
- var originalGlobalAlpha = ctx.globalAlpha;
- ctx.globalAlpha = style.fillOpacity * style.opacity;
- path.fill(ctx);
- ctx.globalAlpha = originalGlobalAlpha;
- } else {
- path.fill(ctx);
- }
- }
-
- if (lineDash && ctxLineDash) {
- ctx.setLineDash(lineDash);
- ctx.lineDashOffset = lineDashOffset;
- }
-
- if (hasStroke) {
- if (style.strokeOpacity != null) {
- var originalGlobalAlpha = ctx.globalAlpha;
- ctx.globalAlpha = style.strokeOpacity * style.opacity;
- path.stroke(ctx);
- ctx.globalAlpha = originalGlobalAlpha;
- } else {
- path.stroke(ctx);
- }
- }
-
- if (lineDash && ctxLineDash) {
- // PENDING
- // Remove lineDash
- ctx.setLineDash([]);
- } // Draw rect text
-
-
- if (style.text != null) {
- // Only restore transform when needs draw text.
- this.restoreTransform(ctx);
- this.drawRectText(ctx, this.getBoundingRect());
- }
- },
- // When bundling path, some shape may decide if use moveTo to begin a new subpath or closePath
- // Like in circle
- buildPath: function (ctx, shapeCfg, inBundle) {},
- createPathProxy: function () {
- this.path = new PathProxy();
- },
- getBoundingRect: function () {
- var rect = this._rect;
- var style = this.style;
- var needsUpdateRect = !rect;
-
- if (needsUpdateRect) {
- var path = this.path;
-
- if (!path) {
- // Create path on demand.
- path = this.path = new PathProxy();
- }
-
- if (this.__dirtyPath) {
- path.beginPath();
- this.buildPath(path, this.shape, false);
- }
-
- rect = path.getBoundingRect();
- }
-
- this._rect = rect;
-
- if (style.hasStroke()) {
- // Needs update rect with stroke lineWidth when
- // 1. Element changes scale or lineWidth
- // 2. Shape is changed
- var rectWithStroke = this._rectWithStroke || (this._rectWithStroke = rect.clone());
-
- if (this.__dirty || needsUpdateRect) {
- rectWithStroke.copy(rect); // FIXME Must after updateTransform
-
- var w = style.lineWidth; // PENDING, Min line width is needed when line is horizontal or vertical
-
- var lineScale = style.strokeNoScale ? this.getLineScale() : 1; // Only add extra hover lineWidth when there are no fill
-
- if (!style.hasFill()) {
- w = Math.max(w, this.strokeContainThreshold || 4);
- } // Consider line width
- // Line scale can't be 0;
-
-
- if (lineScale > 1e-10) {
- rectWithStroke.width += w / lineScale;
- rectWithStroke.height += w / lineScale;
- rectWithStroke.x -= w / lineScale / 2;
- rectWithStroke.y -= w / lineScale / 2;
- }
- } // Return rect with stroke
-
-
- return rectWithStroke;
- }
-
- return rect;
- },
- contain: function (x, y) {
- var localPos = this.transformCoordToLocal(x, y);
- var rect = this.getBoundingRect();
- var style = this.style;
- x = localPos[0];
- y = localPos[1];
-
- if (rect.contain(x, y)) {
- var pathData = this.path.data;
-
- if (style.hasStroke()) {
- var lineWidth = style.lineWidth;
- var lineScale = style.strokeNoScale ? this.getLineScale() : 1; // Line scale can't be 0;
-
- if (lineScale > 1e-10) {
- // Only add extra hover lineWidth when there are no fill
- if (!style.hasFill()) {
- lineWidth = Math.max(lineWidth, this.strokeContainThreshold);
- }
-
- if (pathContain.containStroke(pathData, lineWidth / lineScale, x, y)) {
- return true;
- }
- }
- }
-
- if (style.hasFill()) {
- return pathContain.contain(pathData, x, y);
- }
- }
-
- return false;
- },
-
- /**
- * @param {boolean} dirtyPath
- */
- dirty: function (dirtyPath) {
- if (dirtyPath == null) {
- dirtyPath = true;
- } // Only mark dirty, not mark clean
-
-
- if (dirtyPath) {
- this.__dirtyPath = dirtyPath;
- this._rect = null;
- }
-
- this.__dirty = this.__dirtyText = true;
- this.__zr && this.__zr.refresh(); // Used as a clipping path
-
- if (this.__clipTarget) {
- this.__clipTarget.dirty();
- }
- },
-
- /**
- * Alias for animate('shape')
- * @param {boolean} loop
- */
- animateShape: function (loop) {
- return this.animate('shape', loop);
- },
- // Overwrite attrKV
- attrKV: function (key, value) {
- // FIXME
- if (key === 'shape') {
- this.setShape(value);
- this.__dirtyPath = true;
- this._rect = null;
- } else {
- Displayable.prototype.attrKV.call(this, key, value);
- }
- },
-
- /**
- * @param {Object|string} key
- * @param {*} value
- */
- setShape: function (key, value) {
- var shape = this.shape; // Path from string may not have shape
-
- if (shape) {
- if (zrUtil.isObject(key)) {
- for (var name in key) {
- if (key.hasOwnProperty(name)) {
- shape[name] = key[name];
- }
- }
- } else {
- shape[key] = value;
- }
-
- this.dirty(true);
- }
-
- return this;
- },
- getLineScale: function () {
- var m = this.transform; // Get the line scale.
- // Determinant of `m` means how much the area is enlarged by the
- // transformation. So its square root can be used as a scale factor
- // for width.
-
- return m && abs(m[0] - 1) > 1e-10 && abs(m[3] - 1) > 1e-10 ? Math.sqrt(abs(m[0] * m[3] - m[2] * m[1])) : 1;
- }
- };
- /**
- * 扩展一个 Path element, 比如星形,圆等。
- * Extend a path element
- * @param {Object} props
- * @param {string} props.type Path type
- * @param {Function} props.init Initialize
- * @param {Function} props.buildPath Overwrite buildPath method
- * @param {Object} [props.style] Extended default style config
- * @param {Object} [props.shape] Extended default shape config
- */
-
- Path.extend = function (defaults) {
- var Sub = function (opts) {
- Path.call(this, opts);
-
- if (defaults.style) {
- // Extend default style
- this.style.extendFrom(defaults.style, false);
- } // Extend default shape
-
-
- var defaultShape = defaults.shape;
-
- if (defaultShape) {
- this.shape = this.shape || {};
- var thisShape = this.shape;
-
- for (var name in defaultShape) {
- if (!thisShape.hasOwnProperty(name) && defaultShape.hasOwnProperty(name)) {
- thisShape[name] = defaultShape[name];
- }
- }
- }
-
- defaults.init && defaults.init.call(this, opts);
- };
-
- zrUtil.inherits(Sub, Path); // FIXME 不能 extend position, rotation 等引用对象
-
- for (var name in defaults) {
- // Extending prototype values and methods
- if (name !== 'style' && name !== 'shape') {
- Sub.prototype[name] = defaults[name];
- }
- }
-
- return Sub;
- };
-
- zrUtil.inherits(Path, Displayable);
- var _default = Path;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1281:
- /***/ (function(module, exports, __webpack_require__) {
-
- // style-loader: Adds some css to the DOM by adding a <style> tag
-
- // load the styles
- var content = __webpack_require__(1283);
- if(typeof content === 'string') content = [[module.i, content, '']];
- // Prepare cssTransformation
- var transform;
-
- var options = {"hmr":false}
- options.transform = transform
- // add the styles to the DOM
- var update = __webpack_require__(300)(content, options);
- if(content.locals) module.exports = content.locals;
-
-
- /***/ }),
-
- /***/ 1283:
- /***/ (function(module, exports, __webpack_require__) {
-
- exports = module.exports = __webpack_require__(299)(true);
- // imports
-
-
- // module
- exports.push([module.i, ".ant-table-wrapper{zoom:1}.ant-table-wrapper:after,.ant-table-wrapper:before{display:table;content:\"\"}.ant-table-wrapper:after{clear:both}.ant-table{-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,.65);font-size:14px;font-variant:tabular-nums;line-height:1.5;list-style:none;-webkit-font-feature-settings:\"tnum\";font-feature-settings:\"tnum\";position:relative;clear:both}.ant-table-body{-webkit-transition:opacity .3s;-o-transition:opacity .3s;transition:opacity .3s}.ant-table-empty .ant-table-body{overflow-x:auto!important;overflow-y:hidden!important}.ant-table table{width:100%;text-align:left;border-radius:4px 4px 0 0;border-collapse:separate;border-spacing:0}.ant-table-layout-fixed table{table-layout:fixed}.ant-table-thead>tr>th{color:rgba(0,0,0,.85);font-weight:500;text-align:left;background:#fafafa;border-bottom:1px solid #e8e8e8;-webkit-transition:background .3s ease;-o-transition:background .3s ease;transition:background .3s ease}.ant-table-thead>tr>th[colspan]:not([colspan=\"1\"]){text-align:center}.ant-table-thead>tr>th .ant-table-filter-icon,.ant-table-thead>tr>th .anticon-filter{position:absolute;top:0;right:0;width:28px;height:100%;color:#bfbfbf;font-size:12px;text-align:center;cursor:pointer;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.ant-table-thead>tr>th .ant-table-filter-icon>svg,.ant-table-thead>tr>th .anticon-filter>svg{position:absolute;top:50%;left:50%;margin-top:-5px;margin-left:-6px}.ant-table-thead>tr>th .ant-table-filter-selected.anticon-filter{color:#1890ff}.ant-table-thead>tr>th .ant-table-column-sorter{display:table-cell;vertical-align:middle}.ant-table-thead>tr>th .ant-table-column-sorter .ant-table-column-sorter-inner{height:1em;margin-top:.35em;margin-left:.57142857em;color:#bfbfbf;line-height:1em;text-align:center;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.ant-table-thead>tr>th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-down,.ant-table-thead>tr>th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-up{display:inline-block;font-size:12px;font-size:11px\\9;-webkit-transform:scale(.91666667) rotate(0deg);-ms-transform:scale(.91666667) rotate(0deg);transform:scale(.91666667) rotate(0deg);display:block;height:1em;line-height:1em;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}:root .ant-table-thead>tr>th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-down,:root .ant-table-thead>tr>th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-up{font-size:12px}.ant-table-thead>tr>th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-down.on,.ant-table-thead>tr>th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-up.on{color:#1890ff}.ant-table-thead>tr>th .ant-table-column-sorter .ant-table-column-sorter-inner-full{margin-top:-.15em}.ant-table-thead>tr>th .ant-table-column-sorter .ant-table-column-sorter-inner-full .ant-table-column-sorter-down,.ant-table-thead>tr>th .ant-table-column-sorter .ant-table-column-sorter-inner-full .ant-table-column-sorter-up{height:.5em;line-height:.5em}.ant-table-thead>tr>th .ant-table-column-sorter .ant-table-column-sorter-inner-full .ant-table-column-sorter-down{margin-top:.125em}.ant-table-thead>tr>th.ant-table-column-has-actions{position:relative;background-clip:padding-box;-webkit-background-clip:border-box}.ant-table-thead>tr>th.ant-table-column-has-actions.ant-table-column-has-filters{padding-right:30px!important}.ant-table-thead>tr>th.ant-table-column-has-actions.ant-table-column-has-filters .ant-table-filter-icon.ant-table-filter-open,.ant-table-thead>tr>th.ant-table-column-has-actions.ant-table-column-has-filters .anticon-filter.ant-table-filter-open,.ant-table-thead>tr>th.ant-table-column-has-actions.ant-table-column-has-filters:hover .ant-table-filter-icon:hover,.ant-table-thead>tr>th.ant-table-column-has-actions.ant-table-column-has-filters:hover .anticon-filter:hover{color:rgba(0,0,0,.45);background:#e5e5e5}.ant-table-thead>tr>th.ant-table-column-has-actions.ant-table-column-has-filters:hover .ant-table-filter-icon:active,.ant-table-thead>tr>th.ant-table-column-has-actions.ant-table-column-has-filters:hover .anticon-filter:active{color:rgba(0,0,0,.65)}.ant-table-thead>tr>th.ant-table-column-has-actions.ant-table-column-has-sorters{cursor:pointer}.ant-table-thead>tr>th.ant-table-column-has-actions.ant-table-column-has-sorters:hover,.ant-table-thead>tr>th.ant-table-column-has-actions.ant-table-column-has-sorters:hover .ant-table-filter-icon,.ant-table-thead>tr>th.ant-table-column-has-actions.ant-table-column-has-sorters:hover .anticon-filter{background:#f2f2f2}.ant-table-thead>tr>th.ant-table-column-has-actions.ant-table-column-has-sorters:active .ant-table-column-sorter-down:not(.on),.ant-table-thead>tr>th.ant-table-column-has-actions.ant-table-column-has-sorters:active .ant-table-column-sorter-up:not(.on){color:rgba(0,0,0,.45)}.ant-table-thead>tr>th .ant-table-header-column{display:inline-block;max-width:100%;vertical-align:top}.ant-table-thead>tr>th .ant-table-header-column .ant-table-column-sorters{display:table}.ant-table-thead>tr>th .ant-table-header-column .ant-table-column-sorters>.ant-table-column-title{display:table-cell;vertical-align:middle}.ant-table-thead>tr>th .ant-table-header-column .ant-table-column-sorters>:not(.ant-table-column-sorter){position:relative}.ant-table-thead>tr>th .ant-table-header-column .ant-table-column-sorters:before{position:absolute;top:0;right:0;bottom:0;left:0;background:transparent;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s;content:\"\"}.ant-table-thead>tr>th .ant-table-header-column .ant-table-column-sorters:hover:before{background:rgba(0,0,0,.04)}.ant-table-thead>tr>th.ant-table-column-has-sorters{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ant-table-thead>tr:first-child>th:first-child{border-top-left-radius:4px}.ant-table-thead>tr:first-child>th:last-child{border-top-right-radius:4px}.ant-table-thead>tr:not(:last-child)>th[colspan]{border-bottom:0}.ant-table-tbody>tr>td{border-bottom:1px solid #e8e8e8;-webkit-transition:all .3s,border 0s;-o-transition:all .3s,border 0s;transition:all .3s,border 0s}.ant-table-tbody>tr,.ant-table-thead>tr{-webkit-transition:all .3s,height 0s;-o-transition:all .3s,height 0s;transition:all .3s,height 0s}.ant-table-tbody>tr.ant-table-row-hover:not(.ant-table-expanded-row):not(.ant-table-row-selected)>td,.ant-table-tbody>tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected)>td,.ant-table-thead>tr.ant-table-row-hover:not(.ant-table-expanded-row):not(.ant-table-row-selected)>td,.ant-table-thead>tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected)>td{background:#e6f7ff}.ant-table-tbody>tr.ant-table-row-selected>td.ant-table-column-sort,.ant-table-tbody>tr:hover.ant-table-row-selected>td,.ant-table-tbody>tr:hover.ant-table-row-selected>td.ant-table-column-sort,.ant-table-thead>tr.ant-table-row-selected>td.ant-table-column-sort,.ant-table-thead>tr:hover.ant-table-row-selected>td,.ant-table-thead>tr:hover.ant-table-row-selected>td.ant-table-column-sort{background:#fafafa}.ant-table-thead>tr:hover{background:none}.ant-table-footer{position:relative;padding:16px;color:rgba(0,0,0,.85);background:#fafafa;border-top:1px solid #e8e8e8;border-radius:0 0 4px 4px}.ant-table-footer:before{position:absolute;top:-1px;left:0;width:100%;height:1px;background:#fafafa;content:\"\"}.ant-table.ant-table-bordered .ant-table-footer{border:1px solid #e8e8e8}.ant-table-title{position:relative;top:1px;padding:16px 0;border-radius:4px 4px 0 0}.ant-table.ant-table-bordered .ant-table-title{padding-right:16px;padding-left:16px;border:1px solid #e8e8e8}.ant-table-title+.ant-table-content{position:relative;border-radius:4px 4px 0 0}.ant-table-bordered .ant-table-title+.ant-table-content,.ant-table-bordered .ant-table-title+.ant-table-content .ant-table-thead>tr:first-child>th,.ant-table-bordered .ant-table-title+.ant-table-content table,.ant-table-without-column-header .ant-table-title+.ant-table-content,.ant-table-without-column-header table{border-radius:0}.ant-table-without-column-header.ant-table-bordered.ant-table-empty .ant-table-placeholder{border-top:1px solid #e8e8e8;border-radius:4px}.ant-table-tbody>tr.ant-table-row-selected td{color:inherit;background:#fafafa}.ant-table-thead>tr>th.ant-table-column-sort{background:#f5f5f5}.ant-table-tbody>tr>td.ant-table-column-sort{background:rgba(0,0,0,.01)}.ant-table-tbody>tr>td,.ant-table-thead>tr>th{padding:16px;overflow-wrap:break-word}.ant-table-expand-icon-th,.ant-table-row-expand-icon-cell{width:50px;min-width:50px;text-align:center}.ant-table-header{overflow:hidden;background:#fafafa}.ant-table-header table{border-radius:4px 4px 0 0}.ant-table-loading{position:relative}.ant-table-loading .ant-table-body{background:#fff;opacity:.5}.ant-table-loading .ant-table-spin-holder{position:absolute;top:50%;left:50%;height:20px;margin-left:-30px;line-height:20px}.ant-table-loading .ant-table-with-pagination{margin-top:-20px}.ant-table-loading .ant-table-without-pagination{margin-top:10px}.ant-table-bordered .ant-table-body>table,.ant-table-bordered .ant-table-fixed-left table,.ant-table-bordered .ant-table-fixed-right table,.ant-table-bordered .ant-table-header>table{border:1px solid #e8e8e8;border-right:0;border-bottom:0}.ant-table-bordered.ant-table-empty .ant-table-placeholder{border-right:1px solid #e8e8e8;border-left:1px solid #e8e8e8}.ant-table-bordered.ant-table-fixed-header .ant-table-header>table{border-bottom:0}.ant-table-bordered.ant-table-fixed-header .ant-table-body>table{border-top-left-radius:0;border-top-right-radius:0}.ant-table-bordered.ant-table-fixed-header .ant-table-body-inner>table,.ant-table-bordered.ant-table-fixed-header .ant-table-header+.ant-table-body>table{border-top:0}.ant-table-bordered .ant-table-thead>tr:not(:last-child)>th{border-bottom:1px solid #e8e8e8}.ant-table-bordered .ant-table-tbody>tr>td,.ant-table-bordered .ant-table-thead>tr>th{border-right:1px solid #e8e8e8}.ant-table-placeholder{position:relative;z-index:1;margin-top:-1px;padding:16px;color:rgba(0,0,0,.25);font-size:14px;text-align:center;background:#fff;border-top:1px solid #e8e8e8;border-bottom:1px solid #e8e8e8;border-radius:0 0 4px 4px}.ant-table-pagination.ant-pagination{float:right;margin:16px 0}.ant-table-filter-dropdown{position:relative;min-width:96px;margin-left:-8px;background:#fff;border-radius:4px;-webkit-box-shadow:0 2px 8px rgba(0,0,0,.15);box-shadow:0 2px 8px rgba(0,0,0,.15)}.ant-table-filter-dropdown .ant-dropdown-menu{border:0;border-radius:4px 4px 0 0;-webkit-box-shadow:none;box-shadow:none}.ant-table-filter-dropdown .ant-dropdown-menu-without-submenu{max-height:400px;overflow-x:hidden}.ant-table-filter-dropdown .ant-dropdown-menu-item>label+span{padding-right:0}.ant-table-filter-dropdown .ant-dropdown-menu-sub{border-radius:4px;-webkit-box-shadow:0 2px 8px rgba(0,0,0,.15);box-shadow:0 2px 8px rgba(0,0,0,.15)}.ant-table-filter-dropdown .ant-dropdown-menu .ant-dropdown-submenu-contain-selected .ant-dropdown-menu-submenu-title:after{color:#1890ff;font-weight:700;text-shadow:0 0 2px #bae7ff}.ant-table-filter-dropdown .ant-dropdown-menu-item{overflow:hidden}.ant-table-filter-dropdown>.ant-dropdown-menu>.ant-dropdown-menu-item:last-child,.ant-table-filter-dropdown>.ant-dropdown-menu>.ant-dropdown-menu-submenu:last-child .ant-dropdown-menu-submenu-title{border-radius:0}.ant-table-filter-dropdown-btns{padding:7px 8px;overflow:hidden;border-top:1px solid #e8e8e8}.ant-table-filter-dropdown-link{color:#1890ff}.ant-table-filter-dropdown-link:hover{color:#40a9ff}.ant-table-filter-dropdown-link:active{color:#096dd9}.ant-table-filter-dropdown-link.confirm{float:left}.ant-table-filter-dropdown-link.clear{float:right}.ant-table-selection{white-space:nowrap}.ant-table-selection-select-all-custom{margin-right:4px!important}.ant-table-selection .anticon-down{color:#bfbfbf;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.ant-table-selection-menu{min-width:96px;margin-top:5px;margin-left:-30px;background:#fff;border-radius:4px;-webkit-box-shadow:0 2px 8px rgba(0,0,0,.15);box-shadow:0 2px 8px rgba(0,0,0,.15)}.ant-table-selection-menu .ant-action-down{color:#bfbfbf}.ant-table-selection-down{display:inline-block;padding:0;line-height:1;cursor:pointer}.ant-table-selection-down:hover .anticon-down{color:rgba(0,0,0,.6)}.ant-table-row-expand-icon{color:#1890ff;text-decoration:none;cursor:pointer;-webkit-transition:color .3s;-o-transition:color .3s;transition:color .3s;display:inline-block;width:17px;height:17px;color:inherit;line-height:13px;text-align:center;background:#fff;border:1px solid #e8e8e8;border-radius:2px;outline:none;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ant-table-row-expand-icon:focus,.ant-table-row-expand-icon:hover{color:#40a9ff}.ant-table-row-expand-icon:active{color:#096dd9}.ant-table-row-expand-icon:active,.ant-table-row-expand-icon:focus,.ant-table-row-expand-icon:hover{border-color:currentColor}.ant-table-row-expanded:after{content:\"-\"}.ant-table-row-collapsed:after{content:\"+\"}.ant-table-row-spaced{visibility:hidden}.ant-table-row-spaced:after{content:\".\"}.ant-table-row-cell-ellipsis,.ant-table-row-cell-ellipsis .ant-table-column-title{overflow:hidden;white-space:nowrap;-o-text-overflow:ellipsis;text-overflow:ellipsis}.ant-table-row-cell-ellipsis .ant-table-column-title{display:block}.ant-table-row-cell-break-word{word-wrap:break-word;word-break:break-word}tr.ant-table-expanded-row,tr.ant-table-expanded-row:hover{background:#fbfbfb}tr.ant-table-expanded-row td>.ant-table-wrapper{margin:-16px -16px -17px}.ant-table .ant-table-row-indent+.ant-table-row-expand-icon{margin-right:8px}.ant-table-scroll{overflow:auto;overflow-x:hidden}.ant-table-scroll table{min-width:100%}.ant-table-scroll table .ant-table-fixed-columns-in-body:not([colspan]){color:transparent}.ant-table-scroll table .ant-table-fixed-columns-in-body:not([colspan])>*{visibility:hidden}.ant-table-body-inner{height:100%}.ant-table-fixed-header>.ant-table-content>.ant-table-scroll>.ant-table-body{position:relative;background:#fff}.ant-table-fixed-header .ant-table-body-inner{overflow:scroll}.ant-table-fixed-header .ant-table-scroll .ant-table-header{margin-bottom:-20px;padding-bottom:20px;overflow:scroll;opacity:.9999}.ant-table-fixed-header .ant-table-scroll .ant-table-header::-webkit-scrollbar{border:1px solid #e8e8e8;border-width:0 0 1px}.ant-table-hide-scrollbar{scrollbar-color:transparent transparent;min-width:unset}.ant-table-hide-scrollbar::-webkit-scrollbar{min-width:inherit;background-color:transparent}.ant-table-bordered.ant-table-fixed-header .ant-table-scroll .ant-table-header::-webkit-scrollbar{border:1px solid #e8e8e8;border-width:1px 1px 1px 0}.ant-table-bordered.ant-table-fixed-header .ant-table-scroll .ant-table-header.ant-table-hide-scrollbar .ant-table-thead>tr:only-child>th:last-child{border-right-color:transparent}.ant-table-fixed-left,.ant-table-fixed-right{position:absolute;top:0;z-index:auto;overflow:hidden;border-radius:0;-webkit-transition:-webkit-box-shadow .3s ease;transition:-webkit-box-shadow .3s ease;-o-transition:box-shadow .3s ease;transition:box-shadow .3s ease;transition:box-shadow .3s ease,-webkit-box-shadow .3s ease}.ant-table-fixed-left table,.ant-table-fixed-right table{width:auto;background:#fff}.ant-table-fixed-header .ant-table-fixed-left .ant-table-body-outer .ant-table-fixed,.ant-table-fixed-header .ant-table-fixed-right .ant-table-body-outer .ant-table-fixed{border-radius:0}.ant-table-fixed-left{left:0;-webkit-box-shadow:6px 0 6px -4px rgba(0,0,0,.15);box-shadow:6px 0 6px -4px rgba(0,0,0,.15)}.ant-table-fixed-left .ant-table-header{overflow-y:hidden}.ant-table-fixed-left .ant-table-body-inner{margin-right:-20px;padding-right:20px}.ant-table-fixed-header .ant-table-fixed-left .ant-table-body-inner{padding-right:0}.ant-table-fixed-left,.ant-table-fixed-left table{border-radius:4px 0 0 0}.ant-table-fixed-left .ant-table-thead>tr>th:last-child{border-top-right-radius:0}.ant-table-fixed-right{right:0;-webkit-box-shadow:-6px 0 6px -4px rgba(0,0,0,.15);box-shadow:-6px 0 6px -4px rgba(0,0,0,.15)}.ant-table-fixed-right,.ant-table-fixed-right table{border-radius:0 4px 0 0}.ant-table-fixed-right .ant-table-expanded-row{color:transparent;pointer-events:none}.ant-table-fixed-right .ant-table-thead>tr>th:first-child{border-top-left-radius:0}.ant-table.ant-table-scroll-position-left .ant-table-fixed-left,.ant-table.ant-table-scroll-position-right .ant-table-fixed-right{-webkit-box-shadow:none;box-shadow:none}.ant-table colgroup>col.ant-table-selection-col{width:60px}.ant-table-thead>tr>th.ant-table-selection-column-custom .ant-table-selection{margin-right:-15px}.ant-table-tbody>tr>td.ant-table-selection-column,.ant-table-thead>tr>th.ant-table-selection-column{text-align:center}.ant-table-tbody>tr>td.ant-table-selection-column .ant-radio-wrapper,.ant-table-thead>tr>th.ant-table-selection-column .ant-radio-wrapper{margin-right:0}.ant-table-row[class*=ant-table-row-level-0] .ant-table-selection-column>span{display:inline-block}.ant-table-filter-dropdown-submenu .ant-checkbox-wrapper+span,.ant-table-filter-dropdown .ant-checkbox-wrapper+span{padding-left:8px}@supports (-moz-appearance:meterbar){.ant-table-thead>tr>th.ant-table-column-has-actions{background-clip:padding-box}}.ant-table-middle>.ant-table-content>.ant-table-body>table>.ant-table-tbody>tr>td,.ant-table-middle>.ant-table-content>.ant-table-body>table>.ant-table-thead>tr>th,.ant-table-middle>.ant-table-content>.ant-table-fixed-left>.ant-table-body-outer>.ant-table-body-inner>table>.ant-table-tbody>tr>td,.ant-table-middle>.ant-table-content>.ant-table-fixed-left>.ant-table-body-outer>.ant-table-body-inner>table>.ant-table-thead>tr>th,.ant-table-middle>.ant-table-content>.ant-table-fixed-left>.ant-table-header>table>.ant-table-tbody>tr>td,.ant-table-middle>.ant-table-content>.ant-table-fixed-left>.ant-table-header>table>.ant-table-thead>tr>th,.ant-table-middle>.ant-table-content>.ant-table-fixed-right>.ant-table-body-outer>.ant-table-body-inner>table>.ant-table-tbody>tr>td,.ant-table-middle>.ant-table-content>.ant-table-fixed-right>.ant-table-body-outer>.ant-table-body-inner>table>.ant-table-thead>tr>th,.ant-table-middle>.ant-table-content>.ant-table-fixed-right>.ant-table-header>table>.ant-table-tbody>tr>td,.ant-table-middle>.ant-table-content>.ant-table-fixed-right>.ant-table-header>table>.ant-table-thead>tr>th,.ant-table-middle>.ant-table-content>.ant-table-footer,.ant-table-middle>.ant-table-content>.ant-table-header>table>.ant-table-tbody>tr>td,.ant-table-middle>.ant-table-content>.ant-table-header>table>.ant-table-thead>tr>th,.ant-table-middle>.ant-table-content>.ant-table-scroll>.ant-table-body>table>.ant-table-tbody>tr>td,.ant-table-middle>.ant-table-content>.ant-table-scroll>.ant-table-body>table>.ant-table-thead>tr>th,.ant-table-middle>.ant-table-content>.ant-table-scroll>.ant-table-header>table>.ant-table-tbody>tr>td,.ant-table-middle>.ant-table-content>.ant-table-scroll>.ant-table-header>table>.ant-table-thead>tr>th,.ant-table-middle>.ant-table-title{padding:12px 8px}.ant-table-middle tr.ant-table-expanded-row td>.ant-table-wrapper{margin:-12px -8px -13px}.ant-table-small{border:1px solid #e8e8e8;border-radius:4px}.ant-table-small>.ant-table-content>.ant-table-footer,.ant-table-small>.ant-table-title{padding:8px}.ant-table-small>.ant-table-title{top:0;border-bottom:1px solid #e8e8e8}.ant-table-small>.ant-table-content>.ant-table-footer{background-color:transparent;border-top:1px solid #e8e8e8}.ant-table-small>.ant-table-content>.ant-table-footer:before{background-color:transparent}.ant-table-small>.ant-table-content>.ant-table-body{margin:0 8px}.ant-table-small>.ant-table-content>.ant-table-body>table,.ant-table-small>.ant-table-content>.ant-table-fixed-left>.ant-table-body-outer>.ant-table-body-inner>table,.ant-table-small>.ant-table-content>.ant-table-fixed-left>.ant-table-header>table,.ant-table-small>.ant-table-content>.ant-table-fixed-right>.ant-table-body-outer>.ant-table-body-inner>table,.ant-table-small>.ant-table-content>.ant-table-fixed-right>.ant-table-header>table,.ant-table-small>.ant-table-content>.ant-table-header>table,.ant-table-small>.ant-table-content>.ant-table-scroll>.ant-table-body>table,.ant-table-small>.ant-table-content>.ant-table-scroll>.ant-table-header>table{border:0}.ant-table-small>.ant-table-content>.ant-table-body>table>.ant-table-tbody>tr>td,.ant-table-small>.ant-table-content>.ant-table-body>table>.ant-table-thead>tr>th,.ant-table-small>.ant-table-content>.ant-table-fixed-left>.ant-table-body-outer>.ant-table-body-inner>table>.ant-table-tbody>tr>td,.ant-table-small>.ant-table-content>.ant-table-fixed-left>.ant-table-body-outer>.ant-table-body-inner>table>.ant-table-thead>tr>th,.ant-table-small>.ant-table-content>.ant-table-fixed-left>.ant-table-header>table>.ant-table-tbody>tr>td,.ant-table-small>.ant-table-content>.ant-table-fixed-left>.ant-table-header>table>.ant-table-thead>tr>th,.ant-table-small>.ant-table-content>.ant-table-fixed-right>.ant-table-body-outer>.ant-table-body-inner>table>.ant-table-tbody>tr>td,.ant-table-small>.ant-table-content>.ant-table-fixed-right>.ant-table-body-outer>.ant-table-body-inner>table>.ant-table-thead>tr>th,.ant-table-small>.ant-table-content>.ant-table-fixed-right>.ant-table-header>table>.ant-table-tbody>tr>td,.ant-table-small>.ant-table-content>.ant-table-fixed-right>.ant-table-header>table>.ant-table-thead>tr>th,.ant-table-small>.ant-table-content>.ant-table-header>table>.ant-table-tbody>tr>td,.ant-table-small>.ant-table-content>.ant-table-header>table>.ant-table-thead>tr>th,.ant-table-small>.ant-table-content>.ant-table-scroll>.ant-table-body>table>.ant-table-tbody>tr>td,.ant-table-small>.ant-table-content>.ant-table-scroll>.ant-table-body>table>.ant-table-thead>tr>th,.ant-table-small>.ant-table-content>.ant-table-scroll>.ant-table-header>table>.ant-table-tbody>tr>td,.ant-table-small>.ant-table-content>.ant-table-scroll>.ant-table-header>table>.ant-table-thead>tr>th{padding:8px}.ant-table-small>.ant-table-content>.ant-table-body>table>.ant-table-thead>tr>th,.ant-table-small>.ant-table-content>.ant-table-fixed-left>.ant-table-body-outer>.ant-table-body-inner>table>.ant-table-thead>tr>th,.ant-table-small>.ant-table-content>.ant-table-fixed-left>.ant-table-header>table>.ant-table-thead>tr>th,.ant-table-small>.ant-table-content>.ant-table-fixed-right>.ant-table-body-outer>.ant-table-body-inner>table>.ant-table-thead>tr>th,.ant-table-small>.ant-table-content>.ant-table-fixed-right>.ant-table-header>table>.ant-table-thead>tr>th,.ant-table-small>.ant-table-content>.ant-table-header>table>.ant-table-thead>tr>th,.ant-table-small>.ant-table-content>.ant-table-scroll>.ant-table-body>table>.ant-table-thead>tr>th,.ant-table-small>.ant-table-content>.ant-table-scroll>.ant-table-header>table>.ant-table-thead>tr>th{background-color:transparent}.ant-table-small>.ant-table-content>.ant-table-body>table>.ant-table-thead>tr,.ant-table-small>.ant-table-content>.ant-table-fixed-left>.ant-table-body-outer>.ant-table-body-inner>table>.ant-table-thead>tr,.ant-table-small>.ant-table-content>.ant-table-fixed-left>.ant-table-header>table>.ant-table-thead>tr,.ant-table-small>.ant-table-content>.ant-table-fixed-right>.ant-table-body-outer>.ant-table-body-inner>table>.ant-table-thead>tr,.ant-table-small>.ant-table-content>.ant-table-fixed-right>.ant-table-header>table>.ant-table-thead>tr,.ant-table-small>.ant-table-content>.ant-table-header>table>.ant-table-thead>tr,.ant-table-small>.ant-table-content>.ant-table-scroll>.ant-table-body>table>.ant-table-thead>tr,.ant-table-small>.ant-table-content>.ant-table-scroll>.ant-table-header>table>.ant-table-thead>tr{border-bottom:1px solid #e8e8e8}.ant-table-small>.ant-table-content>.ant-table-body>table>.ant-table-thead>tr>th.ant-table-column-sort,.ant-table-small>.ant-table-content>.ant-table-fixed-left>.ant-table-body-outer>.ant-table-body-inner>table>.ant-table-thead>tr>th.ant-table-column-sort,.ant-table-small>.ant-table-content>.ant-table-fixed-left>.ant-table-header>table>.ant-table-thead>tr>th.ant-table-column-sort,.ant-table-small>.ant-table-content>.ant-table-fixed-right>.ant-table-body-outer>.ant-table-body-inner>table>.ant-table-thead>tr>th.ant-table-column-sort,.ant-table-small>.ant-table-content>.ant-table-fixed-right>.ant-table-header>table>.ant-table-thead>tr>th.ant-table-column-sort,.ant-table-small>.ant-table-content>.ant-table-header>table>.ant-table-thead>tr>th.ant-table-column-sort,.ant-table-small>.ant-table-content>.ant-table-scroll>.ant-table-body>table>.ant-table-thead>tr>th.ant-table-column-sort,.ant-table-small>.ant-table-content>.ant-table-scroll>.ant-table-header>table>.ant-table-thead>tr>th.ant-table-column-sort{background-color:rgba(0,0,0,.01)}.ant-table-small>.ant-table-content>.ant-table-fixed-left>.ant-table-body-outer>.ant-table-body-inner>table,.ant-table-small>.ant-table-content>.ant-table-fixed-left>.ant-table-header>table,.ant-table-small>.ant-table-content>.ant-table-fixed-right>.ant-table-body-outer>.ant-table-body-inner>table,.ant-table-small>.ant-table-content>.ant-table-fixed-right>.ant-table-header>table,.ant-table-small>.ant-table-content>.ant-table-scroll>.ant-table-body>table,.ant-table-small>.ant-table-content>.ant-table-scroll>.ant-table-header>table{padding:0}.ant-table-small>.ant-table-content .ant-table-header{background-color:transparent;border-radius:4px 4px 0 0}.ant-table-small>.ant-table-content .ant-table-placeholder,.ant-table-small>.ant-table-content .ant-table-row:last-child td{border-bottom:0}.ant-table-small.ant-table-bordered{border-right:0}.ant-table-small.ant-table-bordered .ant-table-title{border:0;border-right:1px solid #e8e8e8;border-bottom:1px solid #e8e8e8}.ant-table-small.ant-table-bordered .ant-table-content{border-right:1px solid #e8e8e8}.ant-table-small.ant-table-bordered .ant-table-footer{border:0;border-top:1px solid #e8e8e8}.ant-table-small.ant-table-bordered .ant-table-footer:before{display:none}.ant-table-small.ant-table-bordered .ant-table-placeholder{border-right:0;border-bottom:0;border-left:0}.ant-table-small.ant-table-bordered .ant-table-tbody>tr>td:last-child,.ant-table-small.ant-table-bordered .ant-table-thead>tr>th.ant-table-row-cell-last{border-right:none}.ant-table-small.ant-table-bordered .ant-table-fixed-left .ant-table-tbody>tr>td:last-child,.ant-table-small.ant-table-bordered .ant-table-fixed-left .ant-table-thead>tr>th:last-child{border-right:1px solid #e8e8e8}.ant-table-small.ant-table-bordered .ant-table-fixed-right{border-right:1px solid #e8e8e8;border-left:1px solid #e8e8e8}.ant-table-small tr.ant-table-expanded-row td>.ant-table-wrapper{margin:-8px -8px -9px}.ant-table-small.ant-table-fixed-header>.ant-table-content>.ant-table-scroll>.ant-table-body{border-radius:0 0 4px 4px}", "", {"version":3,"sources":["/Users/jasder/work/trustie3.0/educoder/public/react/node_modules/antd/lib/table/style/index.css"],"names":[],"mappings":"AAIA,mBACE,MAAQ,CACT,AACD,mDAEE,cAAe,AACf,UAAY,CACb,AACD,yBACE,UAAY,CACb,AACD,WACE,8BAA+B,AACvB,sBAAuB,AAC/B,SAAU,AACV,UAAW,AACX,sBAA2B,AAC3B,eAAgB,AAChB,0BAA2B,AAC3B,gBAAiB,AACjB,gBAAiB,AACjB,qCAAsC,AAC9B,6BAA8B,AACtC,kBAAmB,AACnB,UAAY,CACb,AACD,gBACE,+BAAiC,AACjC,0BAA4B,AAC5B,sBAAyB,CAC1B,AACD,iCACE,0BAA4B,AAC5B,2BAA8B,CAC/B,AACD,iBACE,WAAY,AACZ,gBAAiB,AACjB,0BAA2B,AAC3B,yBAA0B,AAC1B,gBAAkB,CACnB,AACD,8BACE,kBAAoB,CACrB,AACD,uBACE,sBAA2B,AAC3B,gBAAiB,AACjB,gBAAiB,AACjB,mBAAoB,AACpB,gCAAiC,AACjC,uCAAyC,AACzC,kCAAoC,AACpC,8BAAiC,CAClC,AACD,mDACE,iBAAmB,CACpB,AACD,qFAEE,kBAAmB,AACnB,MAAO,AACP,QAAS,AACT,WAAY,AACZ,YAAa,AACb,cAAe,AACf,eAAgB,AAChB,kBAAmB,AACnB,eAAgB,AAChB,2BAA6B,AAC7B,sBAAwB,AACxB,kBAAqB,CACtB,AACD,6FAEE,kBAAmB,AACnB,QAAS,AACT,SAAU,AACV,gBAAiB,AACjB,gBAAkB,CACnB,AACD,iEACE,aAAe,CAChB,AACD,gDACE,mBAAoB,AACpB,qBAAuB,CACxB,AACD,+EACE,WAAY,AACZ,iBAAmB,AACnB,wBAA0B,AAC1B,cAAe,AACf,gBAAiB,AACjB,kBAAmB,AACnB,2BAA6B,AAC7B,sBAAwB,AACxB,kBAAqB,CACtB,AACD,wNAEE,qBAAsB,AACtB,eAAgB,AAChB,iBAAmB,AACnB,gDAAkD,AAC9C,4CAA8C,AAC1C,wCAA0C,AAClD,cAAe,AACf,WAAY,AACZ,gBAAiB,AACjB,2BAA6B,AAC7B,sBAAwB,AACxB,kBAAqB,CACtB,AACD,oOAEE,cAAgB,CACjB,AACD,8NAEE,aAAe,CAChB,AACD,oFACE,iBAAoB,CACrB,AACD,kOAEE,YAAc,AACd,gBAAmB,CACpB,AACD,kHACE,iBAAoB,CACrB,AACD,oDACE,kBAAmB,AACnB,4BAA6B,AAE7B,kCAAoC,CACrC,AACD,iFACE,4BAA+B,CAChC,AAMD,sdAEE,sBAA2B,AAC3B,kBAAoB,CACrB,AACD,mOAEE,qBAA2B,CAC5B,AACD,iFACE,cAAgB,CACjB,AAID,4SAEE,kBAAoB,CACrB,AACD,4PAEE,qBAA2B,CAC5B,AACD,gDACE,qBAAsB,AACtB,eAAgB,AAChB,kBAAoB,CACrB,AACD,0EACE,aAAe,CAChB,AACD,kGACE,mBAAoB,AACpB,qBAAuB,CACxB,AACD,yGACE,iBAAmB,CACpB,AACD,iFACE,kBAAmB,AACnB,MAAO,AACP,QAAS,AACT,SAAU,AACV,OAAQ,AACR,uBAAwB,AACxB,2BAA6B,AAC7B,sBAAwB,AACxB,mBAAqB,AACrB,UAAY,CACb,AACD,uFACE,0BAAgC,CACjC,AACD,oDACE,yBAA0B,AACvB,sBAAuB,AACtB,qBAAsB,AAClB,gBAAkB,CAC3B,AACD,+CACE,0BAA4B,CAC7B,AACD,8CACE,2BAA6B,CAC9B,AACD,iDACE,eAAiB,CAClB,AACD,uBACE,gCAAiC,AACjC,qCAAwC,AACxC,gCAAmC,AACnC,4BAAgC,CACjC,AACD,wCAEE,qCAAwC,AACxC,gCAAmC,AACnC,4BAAgC,CACjC,AACD,wXAIE,kBAAoB,CACrB,AASD,oYAEE,kBAAoB,CACrB,AACD,0BACE,eAAiB,CAClB,AACD,kBACE,kBAAmB,AACnB,aAAmB,AACnB,sBAA2B,AAC3B,mBAAoB,AACpB,6BAA8B,AAC9B,yBAA2B,CAC5B,AACD,yBACE,kBAAmB,AACnB,SAAU,AACV,OAAQ,AACR,WAAY,AACZ,WAAY,AACZ,mBAAoB,AACpB,UAAY,CACb,AACD,gDACE,wBAA0B,CAC3B,AACD,iBACE,kBAAmB,AACnB,QAAS,AACT,eAAgB,AAChB,yBAA2B,CAC5B,AACD,+CACE,mBAAoB,AACpB,kBAAmB,AACnB,wBAA0B,CAC3B,AACD,oCACE,kBAAmB,AACnB,yBAA2B,CAC5B,AAMD,6TAEE,eAAiB,CAClB,AACD,2FACE,6BAA8B,AAC9B,iBAAmB,CACpB,AACD,8CACE,cAAe,AACf,kBAAoB,CACrB,AACD,6CACE,kBAAoB,CACrB,AACD,6CACE,0BAAgC,CACjC,AACD,8CAEE,aAAmB,AACnB,wBAA0B,CAC3B,AACD,0DAEE,WAAY,AACZ,eAAgB,AAChB,iBAAmB,CACpB,AACD,kBACE,gBAAiB,AACjB,kBAAoB,CACrB,AACD,wBACE,yBAA2B,CAC5B,AACD,mBACE,iBAAmB,CACpB,AACD,mCACE,gBAAiB,AACjB,UAAa,CACd,AACD,0CACE,kBAAmB,AACnB,QAAS,AACT,SAAU,AACV,YAAa,AACb,kBAAmB,AACnB,gBAAkB,CACnB,AACD,8CACE,gBAAkB,CACnB,AACD,iDACE,eAAiB,CAClB,AACD,uLAIE,yBAA0B,AAC1B,eAAgB,AAChB,eAAiB,CAClB,AACD,2DACE,+BAAgC,AAChC,6BAA+B,CAChC,AACD,mEACE,eAAiB,CAClB,AACD,iEACE,yBAA0B,AAC1B,yBAA2B,CAC5B,AACD,0JAEE,YAAc,CACf,AACD,4DACE,+BAAiC,CAClC,AACD,sFAEE,8BAAgC,CACjC,AACD,uBACE,kBAAmB,AACnB,UAAW,AACX,gBAAiB,AACjB,aAAmB,AACnB,sBAA2B,AAC3B,eAAgB,AAChB,kBAAmB,AACnB,gBAAiB,AACjB,6BAA8B,AAC9B,gCAAiC,AACjC,yBAA2B,CAC5B,AACD,qCACE,YAAa,AACb,aAAe,CAChB,AACD,2BACE,kBAAmB,AACnB,eAAgB,AAChB,iBAAkB,AAClB,gBAAiB,AACjB,kBAAmB,AACnB,6CAAkD,AAC1C,oCAA0C,CACnD,AACD,8CACE,SAAU,AACV,0BAA2B,AAC3B,wBAAyB,AACjB,eAAiB,CAC1B,AACD,8DACE,iBAAkB,AAClB,iBAAmB,CACpB,AACD,8DACE,eAAiB,CAClB,AACD,kDACE,kBAAmB,AACnB,6CAAkD,AAC1C,oCAA0C,CACnD,AACD,4HACE,cAAe,AACf,gBAAkB,AAClB,2BAA6B,CAC9B,AACD,mDACE,eAAiB,CAClB,AACD,sMAEE,eAAiB,CAClB,AACD,gCACE,gBAAiB,AACjB,gBAAiB,AACjB,4BAA8B,CAC/B,AACD,gCACE,aAAe,CAChB,AACD,sCACE,aAAe,CAChB,AACD,uCACE,aAAe,CAChB,AACD,wCACE,UAAY,CACb,AACD,sCACE,WAAa,CACd,AACD,qBACE,kBAAoB,CACrB,AACD,uCACE,0BAA6B,CAC9B,AACD,mCACE,cAAe,AACf,2BAA6B,AAC7B,sBAAwB,AACxB,kBAAqB,CACtB,AACD,0BACE,eAAgB,AAChB,eAAgB,AAChB,kBAAmB,AACnB,gBAAiB,AACjB,kBAAmB,AACnB,6CAAkD,AAC1C,oCAA0C,CACnD,AACD,2CACE,aAAe,CAChB,AACD,0BACE,qBAAsB,AACtB,UAAW,AACX,cAAe,AACf,cAAgB,CACjB,AACD,8CACE,oBAA0B,CAC3B,AACD,2BACE,cAAe,AACf,qBAAsB,AACtB,eAAgB,AAChB,6BAA+B,AAC/B,wBAA0B,AAC1B,qBAAuB,AACvB,qBAAsB,AACtB,WAAY,AACZ,YAAa,AACb,cAAe,AACf,iBAAkB,AAClB,kBAAmB,AACnB,gBAAiB,AACjB,yBAA0B,AAC1B,kBAAmB,AACnB,aAAc,AACd,2BAA6B,AAC7B,sBAAwB,AACxB,mBAAqB,AACrB,yBAA0B,AACvB,sBAAuB,AACtB,qBAAsB,AAClB,gBAAkB,CAC3B,AACD,kEAEE,aAAe,CAChB,AACD,kCACE,aAAe,CAChB,AACD,oGAGE,yBAA2B,CAC5B,AACD,8BACE,WAAa,CACd,AACD,+BACE,WAAa,CACd,AACD,sBACE,iBAAmB,CACpB,AACD,4BACE,WAAa,CACd,AACD,kFAEE,gBAAiB,AACjB,mBAAoB,AACpB,0BAA2B,AACxB,sBAAwB,CAC5B,AACD,qDACE,aAAe,CAChB,AACD,+BACE,qBAAsB,AACtB,qBAAuB,CACxB,AACD,0DAEE,kBAAoB,CACrB,AACD,gDACE,wBAA0B,CAC3B,AACD,4DACE,gBAAkB,CACnB,AACD,kBACE,cAAe,AACf,iBAAmB,CACpB,AACD,wBACE,cAAgB,CACjB,AACD,wEACE,iBAAmB,CACpB,AACD,0EACE,iBAAmB,CACpB,AACD,sBACE,WAAa,CACd,AACD,6EACE,kBAAmB,AACnB,eAAiB,CAClB,AACD,8CACE,eAAiB,CAClB,AACD,4DACE,oBAAqB,AACrB,oBAAqB,AACrB,gBAAiB,AACjB,aAAgB,CACjB,AACD,+EACE,yBAA0B,AAC1B,oBAAwB,CACzB,AACD,0BACE,wCAAyC,AACzC,eAAiB,CAClB,AACD,6CACE,kBAAmB,AACnB,4BAA8B,CAC/B,AACD,kGACE,yBAA0B,AAC1B,0BAA4B,CAC7B,AACD,qJACE,8BAAgC,CACjC,AACD,6CAEE,kBAAmB,AACnB,MAAO,AACP,aAAc,AACd,gBAAiB,AACjB,gBAAiB,AACjB,+CAAiD,AACjD,uCAAyC,AACzC,kCAAoC,AACpC,+BAAiC,AACjC,0DAA+D,CAChE,AACD,yDAEE,WAAY,AACZ,eAAiB,CAClB,AACD,2KAEE,eAAiB,CAClB,AACD,sBACE,OAAQ,AACR,kDAAuD,AAC/C,yCAA+C,CACxD,AACD,wCACE,iBAAmB,CACpB,AACD,4CACE,mBAAoB,AACpB,kBAAoB,CACrB,AACD,oEACE,eAAiB,CAClB,AACD,kDAEE,uBAAyB,CAC1B,AACD,wDACE,yBAA2B,CAC5B,AACD,uBACE,QAAS,AACT,mDAAwD,AAChD,0CAAgD,CACzD,AACD,oDAEE,uBAAyB,CAC1B,AACD,+CACE,kBAAmB,AACnB,mBAAqB,CACtB,AACD,0DACE,wBAA0B,CAC3B,AAKD,kIACE,wBAAyB,AACjB,eAAiB,CAC1B,AACD,gDACE,UAAY,CACb,AACD,8EACE,kBAAoB,CACrB,AACD,oGAEE,iBAAmB,CACpB,AACD,0IAEE,cAAgB,CACjB,AACD,8EACE,oBAAsB,CACvB,AACD,oHAEE,gBAAkB,CACnB,AAID,qCACE,oDACE,2BAA6B,CAC9B,CACF,AAKD,svDAgBE,gBAAkB,CACnB,AACD,kEACE,uBAAyB,CAC1B,AACD,iBACE,yBAA0B,AAC1B,iBAAmB,CACpB,AACD,wFAEE,WAAiB,CAClB,AACD,kCACE,MAAO,AACP,+BAAiC,CAClC,AACD,sDACE,6BAA8B,AAC9B,4BAA8B,CAC/B,AACD,6DACE,4BAA8B,CAC/B,AACD,oDACE,YAAc,CACf,AACD,8oBAQE,QAAU,CACX,AACD,4oDAgBE,WAAiB,CAClB,AACD,s0BAQE,4BAA8B,CAC/B,AACD,8yBAQE,+BAAiC,CAClC,AACD,s/BAQE,gCAAsC,CACvC,AACD,whBAME,SAAW,CACZ,AACD,sDACE,6BAA8B,AAC9B,yBAA2B,CAC5B,AACD,4HAEE,eAAiB,CAClB,AACD,oCACE,cAAgB,CACjB,AACD,qDACE,SAAU,AACV,+BAAgC,AAChC,+BAAiC,CAClC,AACD,uDACE,8BAAgC,CACjC,AACD,sDACE,SAAU,AACV,4BAA8B,CAC/B,AACD,6DACE,YAAc,CACf,AACD,2DACE,eAAgB,AAChB,gBAAiB,AACjB,aAAe,CAChB,AACD,yJAEE,iBAAmB,CACpB,AACD,wLAEE,8BAAgC,CACjC,AACD,2DACE,+BAAgC,AAChC,6BAA+B,CAChC,AACD,iEACE,qBAAuB,CACxB,AACD,6FACE,yBAA2B,CAC5B","file":"index.css","sourcesContent":["/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */\n/* stylelint-disable no-duplicate-selectors */\n/* stylelint-disable */\n/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */\n.ant-table-wrapper {\n zoom: 1;\n}\n.ant-table-wrapper::before,\n.ant-table-wrapper::after {\n display: table;\n content: '';\n}\n.ant-table-wrapper::after {\n clear: both;\n}\n.ant-table {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n margin: 0;\n padding: 0;\n color: rgba(0, 0, 0, 0.65);\n font-size: 14px;\n font-variant: tabular-nums;\n line-height: 1.5;\n list-style: none;\n -webkit-font-feature-settings: 'tnum';\n font-feature-settings: 'tnum';\n position: relative;\n clear: both;\n}\n.ant-table-body {\n -webkit-transition: opacity 0.3s;\n -o-transition: opacity 0.3s;\n transition: opacity 0.3s;\n}\n.ant-table-empty .ant-table-body {\n overflow-x: auto !important;\n overflow-y: hidden !important;\n}\n.ant-table table {\n width: 100%;\n text-align: left;\n border-radius: 4px 4px 0 0;\n border-collapse: separate;\n border-spacing: 0;\n}\n.ant-table-layout-fixed table {\n table-layout: fixed;\n}\n.ant-table-thead > tr > th {\n color: rgba(0, 0, 0, 0.85);\n font-weight: 500;\n text-align: left;\n background: #fafafa;\n border-bottom: 1px solid #e8e8e8;\n -webkit-transition: background 0.3s ease;\n -o-transition: background 0.3s ease;\n transition: background 0.3s ease;\n}\n.ant-table-thead > tr > th[colspan]:not([colspan='1']) {\n text-align: center;\n}\n.ant-table-thead > tr > th .anticon-filter,\n.ant-table-thead > tr > th .ant-table-filter-icon {\n position: absolute;\n top: 0;\n right: 0;\n width: 28px;\n height: 100%;\n color: #bfbfbf;\n font-size: 12px;\n text-align: center;\n cursor: pointer;\n -webkit-transition: all 0.3s;\n -o-transition: all 0.3s;\n transition: all 0.3s;\n}\n.ant-table-thead > tr > th .anticon-filter > svg,\n.ant-table-thead > tr > th .ant-table-filter-icon > svg {\n position: absolute;\n top: 50%;\n left: 50%;\n margin-top: -5px;\n margin-left: -6px;\n}\n.ant-table-thead > tr > th .ant-table-filter-selected.anticon-filter {\n color: #1890ff;\n}\n.ant-table-thead > tr > th .ant-table-column-sorter {\n display: table-cell;\n vertical-align: middle;\n}\n.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner {\n height: 1em;\n margin-top: 0.35em;\n margin-left: 0.57142857em;\n color: #bfbfbf;\n line-height: 1em;\n text-align: center;\n -webkit-transition: all 0.3s;\n -o-transition: all 0.3s;\n transition: all 0.3s;\n}\n.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-up,\n.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-down {\n display: inline-block;\n font-size: 12px;\n font-size: 11px \\9;\n -webkit-transform: scale(0.91666667) rotate(0deg);\n -ms-transform: scale(0.91666667) rotate(0deg);\n transform: scale(0.91666667) rotate(0deg);\n display: block;\n height: 1em;\n line-height: 1em;\n -webkit-transition: all 0.3s;\n -o-transition: all 0.3s;\n transition: all 0.3s;\n}\n:root .ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-up,\n:root .ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-down {\n font-size: 12px;\n}\n.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-up.on,\n.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-down.on {\n color: #1890ff;\n}\n.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner-full {\n margin-top: -0.15em;\n}\n.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner-full .ant-table-column-sorter-up,\n.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner-full .ant-table-column-sorter-down {\n height: 0.5em;\n line-height: 0.5em;\n}\n.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner-full .ant-table-column-sorter-down {\n margin-top: 0.125em;\n}\n.ant-table-thead > tr > th.ant-table-column-has-actions {\n position: relative;\n background-clip: padding-box;\n /* stylelint-disable-next-line */\n -webkit-background-clip: border-box;\n}\n.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters {\n padding-right: 30px !important;\n}\n.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters .anticon-filter.ant-table-filter-open,\n.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters .ant-table-filter-icon.ant-table-filter-open {\n color: rgba(0, 0, 0, 0.45);\n background: #e5e5e5;\n}\n.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters:hover .anticon-filter:hover,\n.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters:hover .ant-table-filter-icon:hover {\n color: rgba(0, 0, 0, 0.45);\n background: #e5e5e5;\n}\n.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters:hover .anticon-filter:active,\n.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters:hover .ant-table-filter-icon:active {\n color: rgba(0, 0, 0, 0.65);\n}\n.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-sorters {\n cursor: pointer;\n}\n.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-sorters:hover {\n background: #f2f2f2;\n}\n.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-sorters:hover .anticon-filter,\n.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-sorters:hover .ant-table-filter-icon {\n background: #f2f2f2;\n}\n.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-sorters:active .ant-table-column-sorter-up:not(.on),\n.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-sorters:active .ant-table-column-sorter-down:not(.on) {\n color: rgba(0, 0, 0, 0.45);\n}\n.ant-table-thead > tr > th .ant-table-header-column {\n display: inline-block;\n max-width: 100%;\n vertical-align: top;\n}\n.ant-table-thead > tr > th .ant-table-header-column .ant-table-column-sorters {\n display: table;\n}\n.ant-table-thead > tr > th .ant-table-header-column .ant-table-column-sorters > .ant-table-column-title {\n display: table-cell;\n vertical-align: middle;\n}\n.ant-table-thead > tr > th .ant-table-header-column .ant-table-column-sorters > *:not(.ant-table-column-sorter) {\n position: relative;\n}\n.ant-table-thead > tr > th .ant-table-header-column .ant-table-column-sorters::before {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n background: transparent;\n -webkit-transition: all 0.3s;\n -o-transition: all 0.3s;\n transition: all 0.3s;\n content: '';\n}\n.ant-table-thead > tr > th .ant-table-header-column .ant-table-column-sorters:hover::before {\n background: rgba(0, 0, 0, 0.04);\n}\n.ant-table-thead > tr > th.ant-table-column-has-sorters {\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.ant-table-thead > tr:first-child > th:first-child {\n border-top-left-radius: 4px;\n}\n.ant-table-thead > tr:first-child > th:last-child {\n border-top-right-radius: 4px;\n}\n.ant-table-thead > tr:not(:last-child) > th[colspan] {\n border-bottom: 0;\n}\n.ant-table-tbody > tr > td {\n border-bottom: 1px solid #e8e8e8;\n -webkit-transition: all 0.3s, border 0s;\n -o-transition: all 0.3s, border 0s;\n transition: all 0.3s, border 0s;\n}\n.ant-table-thead > tr,\n.ant-table-tbody > tr {\n -webkit-transition: all 0.3s, height 0s;\n -o-transition: all 0.3s, height 0s;\n transition: all 0.3s, height 0s;\n}\n.ant-table-thead > tr.ant-table-row-hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td,\n.ant-table-tbody > tr.ant-table-row-hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td,\n.ant-table-thead > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td,\n.ant-table-tbody > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td {\n background: #e6f7ff;\n}\n.ant-table-thead > tr.ant-table-row-selected > td.ant-table-column-sort,\n.ant-table-tbody > tr.ant-table-row-selected > td.ant-table-column-sort {\n background: #fafafa;\n}\n.ant-table-thead > tr:hover.ant-table-row-selected > td,\n.ant-table-tbody > tr:hover.ant-table-row-selected > td {\n background: #fafafa;\n}\n.ant-table-thead > tr:hover.ant-table-row-selected > td.ant-table-column-sort,\n.ant-table-tbody > tr:hover.ant-table-row-selected > td.ant-table-column-sort {\n background: #fafafa;\n}\n.ant-table-thead > tr:hover {\n background: none;\n}\n.ant-table-footer {\n position: relative;\n padding: 16px 16px;\n color: rgba(0, 0, 0, 0.85);\n background: #fafafa;\n border-top: 1px solid #e8e8e8;\n border-radius: 0 0 4px 4px;\n}\n.ant-table-footer::before {\n position: absolute;\n top: -1px;\n left: 0;\n width: 100%;\n height: 1px;\n background: #fafafa;\n content: '';\n}\n.ant-table.ant-table-bordered .ant-table-footer {\n border: 1px solid #e8e8e8;\n}\n.ant-table-title {\n position: relative;\n top: 1px;\n padding: 16px 0;\n border-radius: 4px 4px 0 0;\n}\n.ant-table.ant-table-bordered .ant-table-title {\n padding-right: 16px;\n padding-left: 16px;\n border: 1px solid #e8e8e8;\n}\n.ant-table-title + .ant-table-content {\n position: relative;\n border-radius: 4px 4px 0 0;\n}\n.ant-table-bordered .ant-table-title + .ant-table-content,\n.ant-table-bordered .ant-table-title + .ant-table-content table,\n.ant-table-bordered .ant-table-title + .ant-table-content .ant-table-thead > tr:first-child > th {\n border-radius: 0;\n}\n.ant-table-without-column-header .ant-table-title + .ant-table-content,\n.ant-table-without-column-header table {\n border-radius: 0;\n}\n.ant-table-without-column-header.ant-table-bordered.ant-table-empty .ant-table-placeholder {\n border-top: 1px solid #e8e8e8;\n border-radius: 4px;\n}\n.ant-table-tbody > tr.ant-table-row-selected td {\n color: inherit;\n background: #fafafa;\n}\n.ant-table-thead > tr > th.ant-table-column-sort {\n background: #f5f5f5;\n}\n.ant-table-tbody > tr > td.ant-table-column-sort {\n background: rgba(0, 0, 0, 0.01);\n}\n.ant-table-thead > tr > th,\n.ant-table-tbody > tr > td {\n padding: 16px 16px;\n overflow-wrap: break-word;\n}\n.ant-table-expand-icon-th,\n.ant-table-row-expand-icon-cell {\n width: 50px;\n min-width: 50px;\n text-align: center;\n}\n.ant-table-header {\n overflow: hidden;\n background: #fafafa;\n}\n.ant-table-header table {\n border-radius: 4px 4px 0 0;\n}\n.ant-table-loading {\n position: relative;\n}\n.ant-table-loading .ant-table-body {\n background: #fff;\n opacity: 0.5;\n}\n.ant-table-loading .ant-table-spin-holder {\n position: absolute;\n top: 50%;\n left: 50%;\n height: 20px;\n margin-left: -30px;\n line-height: 20px;\n}\n.ant-table-loading .ant-table-with-pagination {\n margin-top: -20px;\n}\n.ant-table-loading .ant-table-without-pagination {\n margin-top: 10px;\n}\n.ant-table-bordered .ant-table-header > table,\n.ant-table-bordered .ant-table-body > table,\n.ant-table-bordered .ant-table-fixed-left table,\n.ant-table-bordered .ant-table-fixed-right table {\n border: 1px solid #e8e8e8;\n border-right: 0;\n border-bottom: 0;\n}\n.ant-table-bordered.ant-table-empty .ant-table-placeholder {\n border-right: 1px solid #e8e8e8;\n border-left: 1px solid #e8e8e8;\n}\n.ant-table-bordered.ant-table-fixed-header .ant-table-header > table {\n border-bottom: 0;\n}\n.ant-table-bordered.ant-table-fixed-header .ant-table-body > table {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n.ant-table-bordered.ant-table-fixed-header .ant-table-header + .ant-table-body > table,\n.ant-table-bordered.ant-table-fixed-header .ant-table-body-inner > table {\n border-top: 0;\n}\n.ant-table-bordered .ant-table-thead > tr:not(:last-child) > th {\n border-bottom: 1px solid #e8e8e8;\n}\n.ant-table-bordered .ant-table-thead > tr > th,\n.ant-table-bordered .ant-table-tbody > tr > td {\n border-right: 1px solid #e8e8e8;\n}\n.ant-table-placeholder {\n position: relative;\n z-index: 1;\n margin-top: -1px;\n padding: 16px 16px;\n color: rgba(0, 0, 0, 0.25);\n font-size: 14px;\n text-align: center;\n background: #fff;\n border-top: 1px solid #e8e8e8;\n border-bottom: 1px solid #e8e8e8;\n border-radius: 0 0 4px 4px;\n}\n.ant-table-pagination.ant-pagination {\n float: right;\n margin: 16px 0;\n}\n.ant-table-filter-dropdown {\n position: relative;\n min-width: 96px;\n margin-left: -8px;\n background: #fff;\n border-radius: 4px;\n -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);\n box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);\n}\n.ant-table-filter-dropdown .ant-dropdown-menu {\n border: 0;\n border-radius: 4px 4px 0 0;\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.ant-table-filter-dropdown .ant-dropdown-menu-without-submenu {\n max-height: 400px;\n overflow-x: hidden;\n}\n.ant-table-filter-dropdown .ant-dropdown-menu-item > label + span {\n padding-right: 0;\n}\n.ant-table-filter-dropdown .ant-dropdown-menu-sub {\n border-radius: 4px;\n -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);\n box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);\n}\n.ant-table-filter-dropdown .ant-dropdown-menu .ant-dropdown-submenu-contain-selected .ant-dropdown-menu-submenu-title::after {\n color: #1890ff;\n font-weight: bold;\n text-shadow: 0 0 2px #bae7ff;\n}\n.ant-table-filter-dropdown .ant-dropdown-menu-item {\n overflow: hidden;\n}\n.ant-table-filter-dropdown > .ant-dropdown-menu > .ant-dropdown-menu-item:last-child,\n.ant-table-filter-dropdown > .ant-dropdown-menu > .ant-dropdown-menu-submenu:last-child .ant-dropdown-menu-submenu-title {\n border-radius: 0;\n}\n.ant-table-filter-dropdown-btns {\n padding: 7px 8px;\n overflow: hidden;\n border-top: 1px solid #e8e8e8;\n}\n.ant-table-filter-dropdown-link {\n color: #1890ff;\n}\n.ant-table-filter-dropdown-link:hover {\n color: #40a9ff;\n}\n.ant-table-filter-dropdown-link:active {\n color: #096dd9;\n}\n.ant-table-filter-dropdown-link.confirm {\n float: left;\n}\n.ant-table-filter-dropdown-link.clear {\n float: right;\n}\n.ant-table-selection {\n white-space: nowrap;\n}\n.ant-table-selection-select-all-custom {\n margin-right: 4px !important;\n}\n.ant-table-selection .anticon-down {\n color: #bfbfbf;\n -webkit-transition: all 0.3s;\n -o-transition: all 0.3s;\n transition: all 0.3s;\n}\n.ant-table-selection-menu {\n min-width: 96px;\n margin-top: 5px;\n margin-left: -30px;\n background: #fff;\n border-radius: 4px;\n -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);\n box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);\n}\n.ant-table-selection-menu .ant-action-down {\n color: #bfbfbf;\n}\n.ant-table-selection-down {\n display: inline-block;\n padding: 0;\n line-height: 1;\n cursor: pointer;\n}\n.ant-table-selection-down:hover .anticon-down {\n color: rgba(0, 0, 0, 0.6);\n}\n.ant-table-row-expand-icon {\n color: #1890ff;\n text-decoration: none;\n cursor: pointer;\n -webkit-transition: color 0.3s;\n -o-transition: color 0.3s;\n transition: color 0.3s;\n display: inline-block;\n width: 17px;\n height: 17px;\n color: inherit;\n line-height: 13px;\n text-align: center;\n background: #fff;\n border: 1px solid #e8e8e8;\n border-radius: 2px;\n outline: none;\n -webkit-transition: all 0.3s;\n -o-transition: all 0.3s;\n transition: all 0.3s;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.ant-table-row-expand-icon:focus,\n.ant-table-row-expand-icon:hover {\n color: #40a9ff;\n}\n.ant-table-row-expand-icon:active {\n color: #096dd9;\n}\n.ant-table-row-expand-icon:focus,\n.ant-table-row-expand-icon:hover,\n.ant-table-row-expand-icon:active {\n border-color: currentColor;\n}\n.ant-table-row-expanded::after {\n content: '-';\n}\n.ant-table-row-collapsed::after {\n content: '+';\n}\n.ant-table-row-spaced {\n visibility: hidden;\n}\n.ant-table-row-spaced::after {\n content: '.';\n}\n.ant-table-row-cell-ellipsis,\n.ant-table-row-cell-ellipsis .ant-table-column-title {\n overflow: hidden;\n white-space: nowrap;\n -o-text-overflow: ellipsis;\n text-overflow: ellipsis;\n}\n.ant-table-row-cell-ellipsis .ant-table-column-title {\n display: block;\n}\n.ant-table-row-cell-break-word {\n word-wrap: break-word;\n word-break: break-word;\n}\ntr.ant-table-expanded-row,\ntr.ant-table-expanded-row:hover {\n background: #fbfbfb;\n}\ntr.ant-table-expanded-row td > .ant-table-wrapper {\n margin: -16px -16px -17px;\n}\n.ant-table .ant-table-row-indent + .ant-table-row-expand-icon {\n margin-right: 8px;\n}\n.ant-table-scroll {\n overflow: auto;\n overflow-x: hidden;\n}\n.ant-table-scroll table {\n min-width: 100%;\n}\n.ant-table-scroll table .ant-table-fixed-columns-in-body:not([colspan]) {\n color: transparent;\n}\n.ant-table-scroll table .ant-table-fixed-columns-in-body:not([colspan]) > * {\n visibility: hidden;\n}\n.ant-table-body-inner {\n height: 100%;\n}\n.ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body {\n position: relative;\n background: #fff;\n}\n.ant-table-fixed-header .ant-table-body-inner {\n overflow: scroll;\n}\n.ant-table-fixed-header .ant-table-scroll .ant-table-header {\n margin-bottom: -20px;\n padding-bottom: 20px;\n overflow: scroll;\n opacity: 0.9999;\n}\n.ant-table-fixed-header .ant-table-scroll .ant-table-header::-webkit-scrollbar {\n border: 1px solid #e8e8e8;\n border-width: 0 0 1px 0;\n}\n.ant-table-hide-scrollbar {\n scrollbar-color: transparent transparent;\n min-width: unset;\n}\n.ant-table-hide-scrollbar::-webkit-scrollbar {\n min-width: inherit;\n background-color: transparent;\n}\n.ant-table-bordered.ant-table-fixed-header .ant-table-scroll .ant-table-header::-webkit-scrollbar {\n border: 1px solid #e8e8e8;\n border-width: 1px 1px 1px 0;\n}\n.ant-table-bordered.ant-table-fixed-header .ant-table-scroll .ant-table-header.ant-table-hide-scrollbar .ant-table-thead > tr:only-child > th:last-child {\n border-right-color: transparent;\n}\n.ant-table-fixed-left,\n.ant-table-fixed-right {\n position: absolute;\n top: 0;\n z-index: auto;\n overflow: hidden;\n border-radius: 0;\n -webkit-transition: -webkit-box-shadow 0.3s ease;\n transition: -webkit-box-shadow 0.3s ease;\n -o-transition: box-shadow 0.3s ease;\n transition: box-shadow 0.3s ease;\n transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;\n}\n.ant-table-fixed-left table,\n.ant-table-fixed-right table {\n width: auto;\n background: #fff;\n}\n.ant-table-fixed-header .ant-table-fixed-left .ant-table-body-outer .ant-table-fixed,\n.ant-table-fixed-header .ant-table-fixed-right .ant-table-body-outer .ant-table-fixed {\n border-radius: 0;\n}\n.ant-table-fixed-left {\n left: 0;\n -webkit-box-shadow: 6px 0 6px -4px rgba(0, 0, 0, 0.15);\n box-shadow: 6px 0 6px -4px rgba(0, 0, 0, 0.15);\n}\n.ant-table-fixed-left .ant-table-header {\n overflow-y: hidden;\n}\n.ant-table-fixed-left .ant-table-body-inner {\n margin-right: -20px;\n padding-right: 20px;\n}\n.ant-table-fixed-header .ant-table-fixed-left .ant-table-body-inner {\n padding-right: 0;\n}\n.ant-table-fixed-left,\n.ant-table-fixed-left table {\n border-radius: 4px 0 0 0;\n}\n.ant-table-fixed-left .ant-table-thead > tr > th:last-child {\n border-top-right-radius: 0;\n}\n.ant-table-fixed-right {\n right: 0;\n -webkit-box-shadow: -6px 0 6px -4px rgba(0, 0, 0, 0.15);\n box-shadow: -6px 0 6px -4px rgba(0, 0, 0, 0.15);\n}\n.ant-table-fixed-right,\n.ant-table-fixed-right table {\n border-radius: 0 4px 0 0;\n}\n.ant-table-fixed-right .ant-table-expanded-row {\n color: transparent;\n pointer-events: none;\n}\n.ant-table-fixed-right .ant-table-thead > tr > th:first-child {\n border-top-left-radius: 0;\n}\n.ant-table.ant-table-scroll-position-left .ant-table-fixed-left {\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.ant-table.ant-table-scroll-position-right .ant-table-fixed-right {\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.ant-table colgroup > col.ant-table-selection-col {\n width: 60px;\n}\n.ant-table-thead > tr > th.ant-table-selection-column-custom .ant-table-selection {\n margin-right: -15px;\n}\n.ant-table-thead > tr > th.ant-table-selection-column,\n.ant-table-tbody > tr > td.ant-table-selection-column {\n text-align: center;\n}\n.ant-table-thead > tr > th.ant-table-selection-column .ant-radio-wrapper,\n.ant-table-tbody > tr > td.ant-table-selection-column .ant-radio-wrapper {\n margin-right: 0;\n}\n.ant-table-row[class*='ant-table-row-level-0'] .ant-table-selection-column > span {\n display: inline-block;\n}\n.ant-table-filter-dropdown .ant-checkbox-wrapper + span,\n.ant-table-filter-dropdown-submenu .ant-checkbox-wrapper + span {\n padding-left: 8px;\n}\n/**\n* Another fix of Firefox:\n*/\n@supports (-moz-appearance: meterbar) {\n .ant-table-thead > tr > th.ant-table-column-has-actions {\n background-clip: padding-box;\n }\n}\n.ant-table-middle > .ant-table-title,\n.ant-table-middle > .ant-table-content > .ant-table-footer {\n padding: 12px 8px;\n}\n.ant-table-middle > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th,\n.ant-table-middle > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th,\n.ant-table-middle > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th,\n.ant-table-middle > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th,\n.ant-table-middle > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr > th,\n.ant-table-middle > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr > th,\n.ant-table-middle > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th,\n.ant-table-middle > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th,\n.ant-table-middle > .ant-table-content > .ant-table-header > table > .ant-table-tbody > tr > td,\n.ant-table-middle > .ant-table-content > .ant-table-body > table > .ant-table-tbody > tr > td,\n.ant-table-middle > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-tbody > tr > td,\n.ant-table-middle > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-tbody > tr > td,\n.ant-table-middle > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-tbody > tr > td,\n.ant-table-middle > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-tbody > tr > td,\n.ant-table-middle > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-tbody > tr > td,\n.ant-table-middle > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-tbody > tr > td {\n padding: 12px 8px;\n}\n.ant-table-middle tr.ant-table-expanded-row td > .ant-table-wrapper {\n margin: -12px -8px -13px;\n}\n.ant-table-small {\n border: 1px solid #e8e8e8;\n border-radius: 4px;\n}\n.ant-table-small > .ant-table-title,\n.ant-table-small > .ant-table-content > .ant-table-footer {\n padding: 8px 8px;\n}\n.ant-table-small > .ant-table-title {\n top: 0;\n border-bottom: 1px solid #e8e8e8;\n}\n.ant-table-small > .ant-table-content > .ant-table-footer {\n background-color: transparent;\n border-top: 1px solid #e8e8e8;\n}\n.ant-table-small > .ant-table-content > .ant-table-footer::before {\n background-color: transparent;\n}\n.ant-table-small > .ant-table-content > .ant-table-body {\n margin: 0 8px;\n}\n.ant-table-small > .ant-table-content > .ant-table-header > table,\n.ant-table-small > .ant-table-content > .ant-table-body > table,\n.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table,\n.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table,\n.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table,\n.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table,\n.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table,\n.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table {\n border: 0;\n}\n.ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th,\n.ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th,\n.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th,\n.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th,\n.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr > th,\n.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr > th,\n.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th,\n.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th,\n.ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-tbody > tr > td,\n.ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-tbody > tr > td,\n.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-tbody > tr > td,\n.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-tbody > tr > td,\n.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-tbody > tr > td,\n.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-tbody > tr > td,\n.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-tbody > tr > td,\n.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-tbody > tr > td {\n padding: 8px 8px;\n}\n.ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th,\n.ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th,\n.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th,\n.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th,\n.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr > th,\n.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr > th,\n.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th,\n.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th {\n background-color: transparent;\n}\n.ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr,\n.ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr,\n.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr,\n.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr,\n.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr,\n.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr,\n.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr,\n.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr {\n border-bottom: 1px solid #e8e8e8;\n}\n.ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th.ant-table-column-sort,\n.ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th.ant-table-column-sort,\n.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th.ant-table-column-sort,\n.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th.ant-table-column-sort,\n.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr > th.ant-table-column-sort,\n.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr > th.ant-table-column-sort,\n.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th.ant-table-column-sort,\n.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th.ant-table-column-sort {\n background-color: rgba(0, 0, 0, 0.01);\n}\n.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table,\n.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table,\n.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table,\n.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table,\n.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table,\n.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table {\n padding: 0;\n}\n.ant-table-small > .ant-table-content .ant-table-header {\n background-color: transparent;\n border-radius: 4px 4px 0 0;\n}\n.ant-table-small > .ant-table-content .ant-table-placeholder,\n.ant-table-small > .ant-table-content .ant-table-row:last-child td {\n border-bottom: 0;\n}\n.ant-table-small.ant-table-bordered {\n border-right: 0;\n}\n.ant-table-small.ant-table-bordered .ant-table-title {\n border: 0;\n border-right: 1px solid #e8e8e8;\n border-bottom: 1px solid #e8e8e8;\n}\n.ant-table-small.ant-table-bordered .ant-table-content {\n border-right: 1px solid #e8e8e8;\n}\n.ant-table-small.ant-table-bordered .ant-table-footer {\n border: 0;\n border-top: 1px solid #e8e8e8;\n}\n.ant-table-small.ant-table-bordered .ant-table-footer::before {\n display: none;\n}\n.ant-table-small.ant-table-bordered .ant-table-placeholder {\n border-right: 0;\n border-bottom: 0;\n border-left: 0;\n}\n.ant-table-small.ant-table-bordered .ant-table-thead > tr > th.ant-table-row-cell-last,\n.ant-table-small.ant-table-bordered .ant-table-tbody > tr > td:last-child {\n border-right: none;\n}\n.ant-table-small.ant-table-bordered .ant-table-fixed-left .ant-table-thead > tr > th:last-child,\n.ant-table-small.ant-table-bordered .ant-table-fixed-left .ant-table-tbody > tr > td:last-child {\n border-right: 1px solid #e8e8e8;\n}\n.ant-table-small.ant-table-bordered .ant-table-fixed-right {\n border-right: 1px solid #e8e8e8;\n border-left: 1px solid #e8e8e8;\n}\n.ant-table-small tr.ant-table-expanded-row td > .ant-table-wrapper {\n margin: -8px -8px -9px;\n}\n.ant-table-small.ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body {\n border-radius: 0 0 4px 4px;\n}\n"],"sourceRoot":""}]);
-
- // exports
-
-
- /***/ }),
-
- /***/ 1284:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports["default"] = void 0;
-
- var React = _interopRequireWildcard(__webpack_require__(0));
-
- var _omit = _interopRequireDefault(__webpack_require__(47));
-
- var _rcTable = _interopRequireWildcard(__webpack_require__(1285));
-
- var PropTypes = _interopRequireWildcard(__webpack_require__(1));
-
- var _classnames = _interopRequireDefault(__webpack_require__(3));
-
- var _shallowequal = _interopRequireDefault(__webpack_require__(59));
-
- var _reactLifecyclesCompat = __webpack_require__(7);
-
- var _filterDropdown = _interopRequireDefault(__webpack_require__(1297));
-
- var _createStore = _interopRequireDefault(__webpack_require__(1301));
-
- var _SelectionBox = _interopRequireDefault(__webpack_require__(1302));
-
- var _SelectionCheckboxAll = _interopRequireDefault(__webpack_require__(1303));
-
- var _Column = _interopRequireDefault(__webpack_require__(1304));
-
- var _ColumnGroup = _interopRequireDefault(__webpack_require__(1305));
-
- var _createBodyRow = _interopRequireDefault(__webpack_require__(1306));
-
- var _util = __webpack_require__(1107);
-
- var _scrollTo = _interopRequireDefault(__webpack_require__(1307));
-
- var _pagination = _interopRequireDefault(__webpack_require__(903));
-
- var _icon = _interopRequireDefault(__webpack_require__(26));
-
- var _spin = _interopRequireDefault(__webpack_require__(77));
-
- var _transButton = _interopRequireDefault(__webpack_require__(1231));
-
- var _LocaleReceiver = _interopRequireDefault(__webpack_require__(73));
-
- var _default2 = _interopRequireDefault(__webpack_require__(180));
-
- var _configProvider = __webpack_require__(11);
-
- var _warning = _interopRequireDefault(__webpack_require__(43));
-
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
-
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
-
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
-
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
-
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
-
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
-
- 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 _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
-
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
-
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
-
- function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
-
- var __rest = void 0 && (void 0).__rest || function (s, e) {
- var t = {};
-
- for (var p in s) {
- if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
- }
-
- if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
- }
- return t;
- };
- /* eslint-disable prefer-spread */
-
-
- function noop() {}
-
- function stopPropagation(e) {
- e.stopPropagation();
- }
-
- function getRowSelection(props) {
- return props.rowSelection || {};
- }
-
- function getColumnKey(column, index) {
- return column.key || column.dataIndex || index;
- }
-
- function isSameColumn(a, b) {
- if (a && b && a.key && a.key === b.key) {
- return true;
- }
-
- return a === b || (0, _shallowequal["default"])(a, b, function (value, other) {
- // https://github.com/ant-design/ant-design/issues/12737
- if (typeof value === 'function' && typeof other === 'function') {
- return value === other || value.toString() === other.toString();
- } // https://github.com/ant-design/ant-design/issues/19398
-
-
- if (Array.isArray(value) && Array.isArray(other)) {
- return value === other || (0, _shallowequal["default"])(value, other);
- }
- });
- }
-
- var defaultPagination = {
- onChange: noop,
- onShowSizeChange: noop
- };
- /**
- * Avoid creating new object, so that parent component's shouldComponentUpdate
- * can works appropriately。
- */
-
- var emptyObject = {};
-
- var createComponents = function createComponents() {
- var components = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
- var bodyRow = components && components.body && components.body.row;
- return _extends(_extends({}, components), {
- body: _extends(_extends({}, components.body), {
- row: (0, _createBodyRow["default"])(bodyRow)
- })
- });
- };
-
- function isTheSameComponents() {
- var components1 = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
- var components2 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
- return components1 === components2 || ['table', 'header', 'body'].every(function (key) {
- return (0, _shallowequal["default"])(components1[key], components2[key]);
- });
- }
-
- function getFilteredValueColumns(state, columns) {
- return (0, _util.flatFilter)(columns || (state || {}).columns || [], function (column) {
- return typeof column.filteredValue !== 'undefined';
- });
- }
-
- function getFiltersFromColumns() {
- var state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
- var columns = arguments.length > 1 ? arguments[1] : undefined;
- var filters = {};
- getFilteredValueColumns(state, columns).forEach(function (col) {
- var colKey = getColumnKey(col);
- filters[colKey] = col.filteredValue;
- });
- return filters;
- }
-
- function isFiltersChanged(state, filters) {
- if (Object.keys(filters).length !== Object.keys(state.filters).length) {
- return true;
- }
-
- return Object.keys(filters).some(function (columnKey) {
- return filters[columnKey] !== state.filters[columnKey];
- });
- }
-
- var Table =
- /*#__PURE__*/
- function (_React$Component) {
- _inherits(Table, _React$Component);
-
- function Table(props) {
- var _this;
-
- _classCallCheck(this, Table);
-
- _this = _possibleConstructorReturn(this, _getPrototypeOf(Table).call(this, props));
-
- _this.setTableRef = function (table) {
- _this.rcTable = table;
- };
-
- _this.getCheckboxPropsByItem = function (item, index) {
- var rowSelection = getRowSelection(_this.props);
-
- if (!rowSelection.getCheckboxProps) {
- return {};
- }
-
- var key = _this.getRecordKey(item, index); // Cache checkboxProps
-
-
- if (!_this.props.checkboxPropsCache[key]) {
- _this.props.checkboxPropsCache[key] = rowSelection.getCheckboxProps(item) || {};
- var checkboxProps = _this.props.checkboxPropsCache[key];
- (0, _warning["default"])(!('checked' in checkboxProps) && !('defaultChecked' in checkboxProps), 'Table', 'Do not set `checked` or `defaultChecked` in `getCheckboxProps`. Please use `selectedRowKeys` instead.');
- }
-
- return _this.props.checkboxPropsCache[key];
- };
-
- _this.getRecordKey = function (record, index) {
- var rowKey = _this.props.rowKey;
- var recordKey = typeof rowKey === 'function' ? rowKey(record, index) : record[rowKey];
- (0, _warning["default"])(recordKey !== undefined, 'Table', 'Each record in dataSource of table should have a unique `key` prop, ' + 'or set `rowKey` of Table to an unique primary key, ' + 'see https://u.ant.design/table-row-key');
- return recordKey === undefined ? index : recordKey;
- };
-
- _this.onRow = function (prefixCls, record, index) {
- var onRow = _this.props.onRow;
- var custom = onRow ? onRow(record, index) : {};
- return _extends(_extends({}, custom), {
- prefixCls: prefixCls,
- store: _this.props.store,
- rowKey: _this.getRecordKey(record, index)
- });
- };
-
- _this.generatePopupContainerFunc = function (getPopupContainer) {
- var scroll = _this.props.scroll;
- var table = _this.rcTable;
-
- if (getPopupContainer) {
- return getPopupContainer;
- } // Use undefined to let rc component use default logic.
-
-
- return scroll && table ? function () {
- return table.tableNode;
- } : undefined;
- };
-
- _this.scrollToFirstRow = function () {
- var scroll = _this.props.scroll;
-
- if (scroll && scroll.scrollToFirstRowOnChange !== false) {
- (0, _scrollTo["default"])(0, {
- getContainer: function getContainer() {
- return _this.rcTable.bodyTable;
- }
- });
- }
- };
-
- _this.handleFilter = function (column, nextFilters) {
- var props = _this.props;
-
- var pagination = _extends({}, _this.state.pagination);
-
- var filters = _extends(_extends({}, _this.state.filters), _defineProperty({}, getColumnKey(column), nextFilters)); // Remove filters not in current columns
-
-
- var currentColumnKeys = [];
- (0, _util.treeMap)(_this.state.columns, function (c) {
- if (!c.children) {
- currentColumnKeys.push(getColumnKey(c));
- }
- });
- Object.keys(filters).forEach(function (columnKey) {
- if (currentColumnKeys.indexOf(columnKey) < 0) {
- delete filters[columnKey];
- }
- });
-
- if (props.pagination) {
- // Reset current prop
- pagination.current = 1;
- pagination.onChange(pagination.current);
- }
-
- var newState = {
- pagination: pagination,
- filters: {}
- };
-
- var filtersToSetState = _extends({}, filters); // Remove filters which is controlled
-
-
- getFilteredValueColumns(_this.state).forEach(function (col) {
- var columnKey = getColumnKey(col);
-
- if (columnKey) {
- delete filtersToSetState[columnKey];
- }
- });
-
- if (Object.keys(filtersToSetState).length > 0) {
- newState.filters = filtersToSetState;
- } // Controlled current prop will not respond user interaction
-
-
- if (_typeof(props.pagination) === 'object' && 'current' in props.pagination) {
- newState.pagination = _extends(_extends({}, pagination), {
- current: _this.state.pagination.current
- });
- }
-
- _this.setState(newState, function () {
- _this.scrollToFirstRow();
-
- _this.props.store.setState({
- selectionDirty: false
- });
-
- var onChange = _this.props.onChange;
-
- if (onChange) {
- onChange.apply(null, _this.prepareParamsArguments(_extends(_extends({}, _this.state), {
- selectionDirty: false,
- filters: filters,
- pagination: pagination
- })));
- }
- });
- };
-
- _this.handleSelect = function (record, rowIndex, e) {
- var checked = e.target.checked;
- var nativeEvent = e.nativeEvent;
- var defaultSelection = _this.props.store.getState().selectionDirty ? [] : _this.getDefaultSelection();
-
- var selectedRowKeys = _this.props.store.getState().selectedRowKeys.concat(defaultSelection);
-
- var key = _this.getRecordKey(record, rowIndex);
-
- var pivot = _this.state.pivot;
-
- var rows = _this.getFlatCurrentPageData();
-
- var realIndex = rowIndex;
-
- if (_this.props.expandedRowRender) {
- realIndex = rows.findIndex(function (row) {
- return _this.getRecordKey(row, rowIndex) === key;
- });
- }
-
- if (nativeEvent.shiftKey && pivot !== undefined && realIndex !== pivot) {
- var changeRowKeys = [];
- var direction = Math.sign(pivot - realIndex);
- var dist = Math.abs(pivot - realIndex);
- var step = 0;
-
- var _loop = function _loop() {
- var i = realIndex + step * direction;
- step += 1;
- var row = rows[i];
-
- var rowKey = _this.getRecordKey(row, i);
-
- var checkboxProps = _this.getCheckboxPropsByItem(row, i);
-
- if (!checkboxProps.disabled) {
- if (selectedRowKeys.includes(rowKey)) {
- if (!checked) {
- selectedRowKeys = selectedRowKeys.filter(function (j) {
- return rowKey !== j;
- });
- changeRowKeys.push(rowKey);
- }
- } else if (checked) {
- selectedRowKeys.push(rowKey);
- changeRowKeys.push(rowKey);
- }
- }
- };
-
- while (step <= dist) {
- _loop();
- }
-
- _this.setState({
- pivot: realIndex
- });
-
- _this.props.store.setState({
- selectionDirty: true
- });
-
- _this.setSelectedRowKeys(selectedRowKeys, {
- selectWay: 'onSelectMultiple',
- record: record,
- checked: checked,
- changeRowKeys: changeRowKeys,
- nativeEvent: nativeEvent
- });
- } else {
- if (checked) {
- selectedRowKeys.push(_this.getRecordKey(record, realIndex));
- } else {
- selectedRowKeys = selectedRowKeys.filter(function (i) {
- return key !== i;
- });
- }
-
- _this.setState({
- pivot: realIndex
- });
-
- _this.props.store.setState({
- selectionDirty: true
- });
-
- _this.setSelectedRowKeys(selectedRowKeys, {
- selectWay: 'onSelect',
- record: record,
- checked: checked,
- changeRowKeys: undefined,
- nativeEvent: nativeEvent
- });
- }
- };
-
- _this.handleRadioSelect = function (record, rowIndex, e) {
- var checked = e.target.checked;
- var nativeEvent = e.nativeEvent;
-
- var key = _this.getRecordKey(record, rowIndex);
-
- var selectedRowKeys = [key];
-
- _this.props.store.setState({
- selectionDirty: true
- });
-
- _this.setSelectedRowKeys(selectedRowKeys, {
- selectWay: 'onSelect',
- record: record,
- checked: checked,
- changeRowKeys: undefined,
- nativeEvent: nativeEvent
- });
- };
-
- _this.handleSelectRow = function (selectionKey, index, onSelectFunc) {
- var data = _this.getFlatCurrentPageData();
-
- var defaultSelection = _this.props.store.getState().selectionDirty ? [] : _this.getDefaultSelection();
-
- var selectedRowKeys = _this.props.store.getState().selectedRowKeys.concat(defaultSelection);
-
- var changeableRowKeys = data.filter(function (item, i) {
- return !_this.getCheckboxPropsByItem(item, i).disabled;
- }).map(function (item, i) {
- return _this.getRecordKey(item, i);
- });
- var changeRowKeys = [];
- var selectWay = 'onSelectAll';
- var checked; // handle default selection
-
- switch (selectionKey) {
- case 'all':
- changeableRowKeys.forEach(function (key) {
- if (selectedRowKeys.indexOf(key) < 0) {
- selectedRowKeys.push(key);
- changeRowKeys.push(key);
- }
- });
- selectWay = 'onSelectAll';
- checked = true;
- break;
-
- case 'removeAll':
- changeableRowKeys.forEach(function (key) {
- if (selectedRowKeys.indexOf(key) >= 0) {
- selectedRowKeys.splice(selectedRowKeys.indexOf(key), 1);
- changeRowKeys.push(key);
- }
- });
- selectWay = 'onSelectAll';
- checked = false;
- break;
-
- case 'invert':
- changeableRowKeys.forEach(function (key) {
- if (selectedRowKeys.indexOf(key) < 0) {
- selectedRowKeys.push(key);
- } else {
- selectedRowKeys.splice(selectedRowKeys.indexOf(key), 1);
- }
-
- changeRowKeys.push(key);
- selectWay = 'onSelectInvert';
- });
- break;
-
- default:
- break;
- }
-
- _this.props.store.setState({
- selectionDirty: true
- }); // when select custom selection, callback selections[n].onSelect
-
-
- var rowSelection = _this.props.rowSelection;
- var customSelectionStartIndex = 2;
-
- if (rowSelection && rowSelection.hideDefaultSelections) {
- customSelectionStartIndex = 0;
- }
-
- if (index >= customSelectionStartIndex && typeof onSelectFunc === 'function') {
- return onSelectFunc(changeableRowKeys);
- }
-
- _this.setSelectedRowKeys(selectedRowKeys, {
- selectWay: selectWay,
- checked: checked,
- changeRowKeys: changeRowKeys
- });
- };
-
- _this.handlePageChange = function (current) {
- var props = _this.props;
-
- var pagination = _extends({}, _this.state.pagination);
-
- if (current) {
- pagination.current = current;
- } else {
- pagination.current = pagination.current || 1;
- }
-
- for (var _len = arguments.length, otherArguments = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
- otherArguments[_key - 1] = arguments[_key];
- }
-
- pagination.onChange.apply(pagination, [pagination.current].concat(otherArguments));
- var newState = {
- pagination: pagination
- }; // Controlled current prop will not respond user interaction
-
- if (props.pagination && _typeof(props.pagination) === 'object' && 'current' in props.pagination) {
- newState.pagination = _extends(_extends({}, pagination), {
- current: _this.state.pagination.current
- });
- }
-
- _this.setState(newState, _this.scrollToFirstRow);
-
- _this.props.store.setState({
- selectionDirty: false
- });
-
- var onChange = _this.props.onChange;
-
- if (onChange) {
- onChange.apply(null, _this.prepareParamsArguments(_extends(_extends({}, _this.state), {
- selectionDirty: false,
- pagination: pagination
- })));
- }
- };
-
- _this.handleShowSizeChange = function (current, pageSize) {
- var pagination = _this.state.pagination;
- pagination.onShowSizeChange(current, pageSize);
-
- var nextPagination = _extends(_extends({}, pagination), {
- pageSize: pageSize,
- current: current
- });
-
- _this.setState({
- pagination: nextPagination
- }, _this.scrollToFirstRow);
-
- var onChange = _this.props.onChange;
-
- if (onChange) {
- onChange.apply(null, _this.prepareParamsArguments(_extends(_extends({}, _this.state), {
- pagination: nextPagination
- })));
- }
- };
-
- _this.renderExpandIcon = function (prefixCls) {
- return function (_ref) {
- var expandable = _ref.expandable,
- expanded = _ref.expanded,
- needIndentSpaced = _ref.needIndentSpaced,
- record = _ref.record,
- onExpand = _ref.onExpand;
-
- if (expandable) {
- return React.createElement(_LocaleReceiver["default"], {
- componentName: "Table",
- defaultLocale: _default2["default"].Table
- }, function (locale) {
- var _classNames;
-
- return React.createElement(_transButton["default"], {
- className: (0, _classnames["default"])("".concat(prefixCls, "-row-expand-icon"), (_classNames = {}, _defineProperty(_classNames, "".concat(prefixCls, "-row-collapsed"), !expanded), _defineProperty(_classNames, "".concat(prefixCls, "-row-expanded"), expanded), _classNames)),
- onClick: function onClick(event) {
- onExpand(record, event);
- },
- "aria-label": expanded ? locale.collapse : locale.expand,
- noStyle: true
- });
- });
- }
-
- if (needIndentSpaced) {
- return React.createElement("span", {
- className: "".concat(prefixCls, "-row-expand-icon ").concat(prefixCls, "-row-spaced")
- });
- }
-
- return null;
- };
- };
-
- _this.renderSelectionBox = function (type) {
- return function (_, record, index) {
- var rowKey = _this.getRecordKey(record, index);
-
- var props = _this.getCheckboxPropsByItem(record, index);
-
- var handleChange = function handleChange(e) {
- return type === 'radio' ? _this.handleRadioSelect(record, index, e) : _this.handleSelect(record, index, e);
- };
-
- return React.createElement("span", {
- onClick: stopPropagation
- }, React.createElement(_SelectionBox["default"], _extends({
- type: type,
- store: _this.props.store,
- rowIndex: rowKey,
- onChange: handleChange,
- defaultSelection: _this.getDefaultSelection()
- }, props)));
- };
- };
-
- _this.renderTable = function (_ref2) {
- var _classNames2;
-
- var prefixCls = _ref2.prefixCls,
- renderEmpty = _ref2.renderEmpty,
- dropdownPrefixCls = _ref2.dropdownPrefixCls,
- contextLocale = _ref2.contextLocale,
- contextGetPopupContainer = _ref2.getPopupContainer;
-
- var _a = _this.props,
- showHeader = _a.showHeader,
- locale = _a.locale,
- getPopupContainer = _a.getPopupContainer,
- restTableProps = __rest(_a, ["showHeader", "locale", "getPopupContainer"]); // do not pass prop.style to rc-table, since already apply it to container div
-
-
- var restProps = (0, _omit["default"])(restTableProps, ['style']);
-
- var data = _this.getCurrentPageData();
-
- var expandIconAsCell = _this.props.expandedRowRender && _this.props.expandIconAsCell !== false; // use props.getPopupContainer first
-
- var realGetPopupContainer = getPopupContainer || contextGetPopupContainer; // Merge too locales
-
- var mergedLocale = _extends(_extends({}, contextLocale), locale);
-
- if (!locale || !locale.emptyText) {
- mergedLocale.emptyText = renderEmpty('Table');
- }
-
- var classString = (0, _classnames["default"])("".concat(prefixCls, "-").concat(_this.props.size), (_classNames2 = {}, _defineProperty(_classNames2, "".concat(prefixCls, "-bordered"), _this.props.bordered), _defineProperty(_classNames2, "".concat(prefixCls, "-empty"), !data.length), _defineProperty(_classNames2, "".concat(prefixCls, "-without-column-header"), !showHeader), _classNames2));
-
- var columnsWithRowSelection = _this.renderRowSelection({
- prefixCls: prefixCls,
- locale: mergedLocale,
- getPopupContainer: realGetPopupContainer
- });
-
- var columns = _this.renderColumnsDropdown({
- columns: columnsWithRowSelection,
- prefixCls: prefixCls,
- dropdownPrefixCls: dropdownPrefixCls,
- locale: mergedLocale,
- getPopupContainer: realGetPopupContainer
- }).map(function (column, i) {
- var newColumn = _extends({}, column);
-
- newColumn.key = getColumnKey(newColumn, i);
- return newColumn;
- });
-
- var expandIconColumnIndex = columns[0] && columns[0].key === 'selection-column' ? 1 : 0;
-
- if ('expandIconColumnIndex' in restProps) {
- expandIconColumnIndex = restProps.expandIconColumnIndex;
- }
-
- return React.createElement(_rcTable["default"], _extends({
- ref: _this.setTableRef,
- key: "table",
- expandIcon: _this.renderExpandIcon(prefixCls)
- }, restProps, {
- onRow: function onRow(record, index) {
- return _this.onRow(prefixCls, record, index);
- },
- components: _this.state.components,
- prefixCls: prefixCls,
- data: data,
- columns: columns,
- showHeader: showHeader,
- className: classString,
- expandIconColumnIndex: expandIconColumnIndex,
- expandIconAsCell: expandIconAsCell,
- emptyText: mergedLocale.emptyText
- }));
- };
-
- _this.renderComponent = function (_ref3) {
- var getPrefixCls = _ref3.getPrefixCls,
- renderEmpty = _ref3.renderEmpty,
- getPopupContainer = _ref3.getPopupContainer;
- var _this$props = _this.props,
- customizePrefixCls = _this$props.prefixCls,
- customizeDropdownPrefixCls = _this$props.dropdownPrefixCls,
- style = _this$props.style,
- className = _this$props.className;
-
- var data = _this.getCurrentPageData();
-
- var loading = _this.props.loading;
-
- if (typeof loading === 'boolean') {
- loading = {
- spinning: loading
- };
- }
-
- var prefixCls = getPrefixCls('table', customizePrefixCls);
- var dropdownPrefixCls = getPrefixCls('dropdown', customizeDropdownPrefixCls);
- var table = React.createElement(_LocaleReceiver["default"], {
- componentName: "Table",
- defaultLocale: _default2["default"].Table
- }, function (locale) {
- return _this.renderTable({
- prefixCls: prefixCls,
- renderEmpty: renderEmpty,
- dropdownPrefixCls: dropdownPrefixCls,
- contextLocale: locale,
- getPopupContainer: getPopupContainer
- });
- }); // if there is no pagination or no data,
- // the height of spin should decrease by half of pagination
-
- var paginationPatchClass = _this.hasPagination() && data && data.length !== 0 ? "".concat(prefixCls, "-with-pagination") : "".concat(prefixCls, "-without-pagination");
- return React.createElement("div", {
- className: (0, _classnames["default"])("".concat(prefixCls, "-wrapper"), className),
- style: style
- }, React.createElement(_spin["default"], _extends({}, loading, {
- className: loading.spinning ? "".concat(paginationPatchClass, " ").concat(prefixCls, "-spin-holder") : ''
- }), _this.renderPagination(prefixCls, 'top'), table, _this.renderPagination(prefixCls, 'bottom')));
- };
-
- var expandedRowRender = props.expandedRowRender,
- columnsProp = props.columns;
- (0, _warning["default"])(!('columnsPageRange' in props || 'columnsPageSize' in props), 'Table', '`columnsPageRange` and `columnsPageSize` are removed, please use ' + 'fixed columns instead, see: https://u.ant.design/fixed-columns.');
-
- if (expandedRowRender && (columnsProp || []).some(function (_ref4) {
- var fixed = _ref4.fixed;
- return !!fixed;
- })) {
- (0, _warning["default"])(false, 'Table', '`expandedRowRender` and `Column.fixed` are not compatible. Please use one of them at one time.');
- }
-
- var columns = columnsProp || (0, _util.normalizeColumns)(props.children);
- _this.state = _extends(_extends({}, _this.getDefaultSortOrder(columns || [])), {
- // 减少状态
- filters: _this.getDefaultFilters(columns),
- pagination: _this.getDefaultPagination(props),
- pivot: undefined,
- prevProps: props,
- components: createComponents(props.components),
- columns: columns
- });
- return _this;
- }
-
- _createClass(Table, [{
- key: "componentDidUpdate",
- value: function componentDidUpdate() {
- var _this$state = this.state,
- columns = _this$state.columns,
- sortColumn = _this$state.sortColumn,
- sortOrder = _this$state.sortOrder;
-
- if (this.getSortOrderColumns(columns).length > 0) {
- var sortState = this.getSortStateFromColumns(columns);
-
- if (!isSameColumn(sortState.sortColumn, sortColumn) || sortState.sortOrder !== sortOrder) {
- this.setState(sortState);
- }
- }
- }
- }, {
- key: "getDefaultSelection",
- value: function getDefaultSelection() {
- var _this2 = this;
-
- var rowSelection = getRowSelection(this.props);
-
- if (!rowSelection.getCheckboxProps) {
- return [];
- }
-
- return this.getFlatData().filter(function (item, rowIndex) {
- return _this2.getCheckboxPropsByItem(item, rowIndex).defaultChecked;
- }).map(function (record, rowIndex) {
- return _this2.getRecordKey(record, rowIndex);
- });
- }
- }, {
- key: "getDefaultPagination",
- value: function getDefaultPagination(props) {
- var pagination = _typeof(props.pagination) === 'object' ? props.pagination : {};
- var current;
-
- if ('current' in pagination) {
- current = pagination.current;
- } else if ('defaultCurrent' in pagination) {
- current = pagination.defaultCurrent;
- }
-
- var pageSize;
-
- if ('pageSize' in pagination) {
- pageSize = pagination.pageSize;
- } else if ('defaultPageSize' in pagination) {
- pageSize = pagination.defaultPageSize;
- }
-
- return this.hasPagination(props) ? _extends(_extends(_extends({}, defaultPagination), pagination), {
- current: current || 1,
- pageSize: pageSize || 10
- }) : {};
- }
- }, {
- key: "getSortOrderColumns",
- value: function getSortOrderColumns(columns) {
- return (0, _util.flatFilter)(columns || (this.state || {}).columns || [], function (column) {
- return 'sortOrder' in column;
- });
- }
- }, {
- key: "getDefaultFilters",
- value: function getDefaultFilters(columns) {
- var definedFilters = getFiltersFromColumns(this.state, columns);
- var defaultFilteredValueColumns = (0, _util.flatFilter)(columns || [], function (column) {
- return typeof column.defaultFilteredValue !== 'undefined';
- });
- var defaultFilters = defaultFilteredValueColumns.reduce(function (soFar, col) {
- var colKey = getColumnKey(col);
- soFar[colKey] = col.defaultFilteredValue;
- return soFar;
- }, {});
- return _extends(_extends({}, defaultFilters), definedFilters);
- }
- }, {
- key: "getDefaultSortOrder",
- value: function getDefaultSortOrder(columns) {
- var definedSortState = this.getSortStateFromColumns(columns);
- var defaultSortedColumn = (0, _util.flatFilter)(columns || [], function (column) {
- return column.defaultSortOrder != null;
- })[0];
-
- if (defaultSortedColumn && !definedSortState.sortColumn) {
- return {
- sortColumn: defaultSortedColumn,
- sortOrder: defaultSortedColumn.defaultSortOrder
- };
- }
-
- return definedSortState;
- }
- }, {
- key: "getSortStateFromColumns",
- value: function getSortStateFromColumns(columns) {
- // return first column which sortOrder is not falsy
- var sortedColumn = this.getSortOrderColumns(columns).filter(function (col) {
- return col.sortOrder;
- })[0];
-
- if (sortedColumn) {
- return {
- sortColumn: sortedColumn,
- sortOrder: sortedColumn.sortOrder
- };
- }
-
- return {
- sortColumn: null,
- sortOrder: null
- };
- }
- }, {
- key: "getMaxCurrent",
- value: function getMaxCurrent(total) {
- var _this$state$paginatio = this.state.pagination,
- current = _this$state$paginatio.current,
- pageSize = _this$state$paginatio.pageSize;
-
- if ((current - 1) * pageSize >= total) {
- return Math.floor((total - 1) / pageSize) + 1;
- }
-
- return current;
- }
- }, {
- key: "getSorterFn",
- value: function getSorterFn(state) {
- var _ref5 = state || this.state,
- sortOrder = _ref5.sortOrder,
- sortColumn = _ref5.sortColumn;
-
- if (!sortOrder || !sortColumn || typeof sortColumn.sorter !== 'function') {
- return;
- }
-
- return function (a, b) {
- var result = sortColumn.sorter(a, b, sortOrder);
-
- if (result !== 0) {
- return sortOrder === 'descend' ? -result : result;
- }
-
- return 0;
- };
- }
- }, {
- key: "getCurrentPageData",
- value: function getCurrentPageData() {
- var data = this.getLocalData();
- var current;
- var pageSize;
- var state = this.state; // 如果没有分页的话,默认全部展示
-
- if (!this.hasPagination()) {
- pageSize = Number.MAX_VALUE;
- current = 1;
- } else {
- pageSize = state.pagination.pageSize;
- current = this.getMaxCurrent(state.pagination.total || data.length);
- } // 分页
- // ---
- // 当数据量少于等于每页数量时,直接设置数据
- // 否则进行读取分页数据
-
-
- if (data.length > pageSize || pageSize === Number.MAX_VALUE) {
- data = data.slice((current - 1) * pageSize, current * pageSize);
- }
-
- return data;
- }
- }, {
- key: "getFlatData",
- value: function getFlatData() {
- var childrenColumnName = this.props.childrenColumnName;
- return (0, _util.flatArray)(this.getLocalData(null, false), childrenColumnName);
- }
- }, {
- key: "getFlatCurrentPageData",
- value: function getFlatCurrentPageData() {
- var childrenColumnName = this.props.childrenColumnName;
- return (0, _util.flatArray)(this.getCurrentPageData(), childrenColumnName);
- }
- }, {
- key: "getLocalData",
- value: function getLocalData(state) {
- var _this3 = this;
-
- var filter = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true;
- var currentState = state || this.state;
- var dataSource = this.props.dataSource;
- var data = dataSource || []; // 优化本地排序
-
- data = data.slice(0);
- var sorterFn = this.getSorterFn(currentState);
-
- if (sorterFn) {
- data = this.recursiveSort(data, sorterFn);
- } // 筛选
-
-
- if (filter && currentState.filters) {
- Object.keys(currentState.filters).forEach(function (columnKey) {
- var col = _this3.findColumn(columnKey);
-
- if (!col) {
- return;
- }
-
- var values = currentState.filters[columnKey] || [];
-
- if (values.length === 0) {
- return;
- }
-
- var onFilter = col.onFilter;
- data = onFilter ? data.filter(function (record) {
- return values.some(function (v) {
- return onFilter(v, record);
- });
- }) : data;
- });
- }
-
- return data;
- }
- }, {
- key: "setSelectedRowKeys",
- value: function setSelectedRowKeys(selectedRowKeys, selectionInfo) {
- var _this4 = this;
-
- var selectWay = selectionInfo.selectWay,
- record = selectionInfo.record,
- checked = selectionInfo.checked,
- changeRowKeys = selectionInfo.changeRowKeys,
- nativeEvent = selectionInfo.nativeEvent;
- var rowSelection = getRowSelection(this.props);
-
- if (rowSelection && !('selectedRowKeys' in rowSelection)) {
- this.props.store.setState({
- selectedRowKeys: selectedRowKeys
- });
- }
-
- var data = this.getFlatData();
-
- if (!rowSelection.onChange && !rowSelection[selectWay]) {
- return;
- }
-
- var selectedRows = data.filter(function (row, i) {
- return selectedRowKeys.indexOf(_this4.getRecordKey(row, i)) >= 0;
- });
-
- if (rowSelection.onChange) {
- rowSelection.onChange(selectedRowKeys, selectedRows);
- }
-
- if (selectWay === 'onSelect' && rowSelection.onSelect) {
- rowSelection.onSelect(record, checked, selectedRows, nativeEvent);
- } else if (selectWay === 'onSelectMultiple' && rowSelection.onSelectMultiple) {
- var changeRows = data.filter(function (row, i) {
- return changeRowKeys.indexOf(_this4.getRecordKey(row, i)) >= 0;
- });
- rowSelection.onSelectMultiple(checked, selectedRows, changeRows);
- } else if (selectWay === 'onSelectAll' && rowSelection.onSelectAll) {
- var _changeRows = data.filter(function (row, i) {
- return changeRowKeys.indexOf(_this4.getRecordKey(row, i)) >= 0;
- });
-
- rowSelection.onSelectAll(checked, selectedRows, _changeRows);
- } else if (selectWay === 'onSelectInvert' && rowSelection.onSelectInvert) {
- rowSelection.onSelectInvert(selectedRowKeys);
- }
- }
- }, {
- key: "toggleSortOrder",
- value: function toggleSortOrder(column) {
- var sortDirections = column.sortDirections || this.props.sortDirections;
- var _this$state2 = this.state,
- sortOrder = _this$state2.sortOrder,
- sortColumn = _this$state2.sortColumn; // 只同时允许一列进行排序,否则会导致排序顺序的逻辑问题
-
- var newSortOrder; // 切换另一列时,丢弃 sortOrder 的状态
-
- if (isSameColumn(sortColumn, column) && sortOrder !== undefined) {
- // 按照sortDirections的内容依次切换排序状态
- var methodIndex = sortDirections.indexOf(sortOrder) + 1;
- newSortOrder = methodIndex === sortDirections.length ? undefined : sortDirections[methodIndex];
- } else {
- newSortOrder = sortDirections[0];
- }
-
- var newState = {
- sortOrder: newSortOrder,
- sortColumn: newSortOrder ? column : null
- }; // Controlled
-
- if (this.getSortOrderColumns().length === 0) {
- this.setState(newState, this.scrollToFirstRow);
- }
-
- var onChange = this.props.onChange;
-
- if (onChange) {
- onChange.apply(null, this.prepareParamsArguments(_extends(_extends({}, this.state), newState), column));
- }
- }
- }, {
- key: "hasPagination",
- value: function hasPagination(props) {
- return (props || this.props).pagination !== false;
- }
- }, {
- key: "isSortColumn",
- value: function isSortColumn(column) {
- var sortColumn = this.state.sortColumn;
-
- if (!column || !sortColumn) {
- return false;
- }
-
- return getColumnKey(sortColumn) === getColumnKey(column);
- } // Get pagination, filters, sorter
-
- }, {
- key: "prepareParamsArguments",
- value: function prepareParamsArguments(state, column) {
- var pagination = _extends({}, state.pagination); // remove useless handle function in Table.onChange
-
-
- delete pagination.onChange;
- delete pagination.onShowSizeChange;
- var filters = state.filters;
- var sorter = {};
- var currentColumn = column;
-
- if (state.sortColumn && state.sortOrder) {
- currentColumn = state.sortColumn;
- sorter.column = state.sortColumn;
- sorter.order = state.sortOrder;
- }
-
- if (currentColumn) {
- sorter.field = currentColumn.dataIndex;
- sorter.columnKey = getColumnKey(currentColumn);
- }
-
- var extra = {
- currentDataSource: this.getLocalData(state)
- };
- return [pagination, filters, sorter, extra];
- }
- }, {
- key: "findColumn",
- value: function findColumn(myKey) {
- var column;
- (0, _util.treeMap)(this.state.columns, function (c) {
- if (getColumnKey(c) === myKey) {
- column = c;
- }
- });
- return column;
- }
- }, {
- key: "recursiveSort",
- value: function recursiveSort(data, sorterFn) {
- var _this5 = this;
-
- var _this$props$childrenC = this.props.childrenColumnName,
- childrenColumnName = _this$props$childrenC === void 0 ? 'children' : _this$props$childrenC;
- return data.sort(sorterFn).map(function (item) {
- return item[childrenColumnName] ? _extends(_extends({}, item), _defineProperty({}, childrenColumnName, _this5.recursiveSort(item[childrenColumnName], sorterFn))) : item;
- });
- }
- }, {
- key: "renderPagination",
- value: function renderPagination(prefixCls, paginationPosition) {
- // 强制不需要分页
- if (!this.hasPagination()) {
- return null;
- }
-
- var size = 'default';
- var pagination = this.state.pagination;
-
- if (pagination.size) {
- size = pagination.size;
- } else if (this.props.size === 'middle' || this.props.size === 'small') {
- size = 'small';
- }
-
- var position = pagination.position || 'bottom';
- var total = pagination.total || this.getLocalData().length;
- return total > 0 && (position === paginationPosition || position === 'both') ? React.createElement(_pagination["default"], _extends({
- key: "pagination-".concat(paginationPosition)
- }, pagination, {
- className: (0, _classnames["default"])(pagination.className, "".concat(prefixCls, "-pagination")),
- onChange: this.handlePageChange,
- total: total,
- size: size,
- current: this.getMaxCurrent(total),
- onShowSizeChange: this.handleShowSizeChange
- })) : null;
- }
- }, {
- key: "renderRowSelection",
- value: function renderRowSelection(_ref6) {
- var _this6 = this;
-
- var prefixCls = _ref6.prefixCls,
- locale = _ref6.locale,
- getPopupContainer = _ref6.getPopupContainer;
- var rowSelection = this.props.rowSelection;
- var columns = this.state.columns.concat();
-
- if (rowSelection) {
- var data = this.getFlatCurrentPageData().filter(function (item, index) {
- if (rowSelection.getCheckboxProps) {
- return !_this6.getCheckboxPropsByItem(item, index).disabled;
- }
-
- return true;
- });
- var selectionColumnClass = (0, _classnames["default"])("".concat(prefixCls, "-selection-column"), _defineProperty({}, "".concat(prefixCls, "-selection-column-custom"), rowSelection.selections));
-
- var selectionColumn = _defineProperty({
- key: 'selection-column',
- render: this.renderSelectionBox(rowSelection.type),
- className: selectionColumnClass,
- fixed: rowSelection.fixed,
- width: rowSelection.columnWidth,
- title: rowSelection.columnTitle
- }, _rcTable.INTERNAL_COL_DEFINE, {
- className: "".concat(prefixCls, "-selection-col")
- });
-
- if (rowSelection.type !== 'radio') {
- var checkboxAllDisabled = data.every(function (item, index) {
- return _this6.getCheckboxPropsByItem(item, index).disabled;
- });
- selectionColumn.title = selectionColumn.title || React.createElement(_SelectionCheckboxAll["default"], {
- store: this.props.store,
- locale: locale,
- data: data,
- getCheckboxPropsByItem: this.getCheckboxPropsByItem,
- getRecordKey: this.getRecordKey,
- disabled: checkboxAllDisabled,
- prefixCls: prefixCls,
- onSelect: this.handleSelectRow,
- selections: rowSelection.selections,
- hideDefaultSelections: rowSelection.hideDefaultSelections,
- getPopupContainer: this.generatePopupContainerFunc(getPopupContainer)
- });
- }
-
- if ('fixed' in rowSelection) {
- selectionColumn.fixed = rowSelection.fixed;
- } else if (columns.some(function (column) {
- return column.fixed === 'left' || column.fixed === true;
- })) {
- selectionColumn.fixed = 'left';
- }
-
- if (columns[0] && columns[0].key === 'selection-column') {
- columns[0] = selectionColumn;
- } else {
- columns.unshift(selectionColumn);
- }
- }
-
- return columns;
- }
- }, {
- key: "renderColumnsDropdown",
- value: function renderColumnsDropdown(_ref7) {
- var _this7 = this;
-
- var prefixCls = _ref7.prefixCls,
- dropdownPrefixCls = _ref7.dropdownPrefixCls,
- columns = _ref7.columns,
- locale = _ref7.locale,
- getPopupContainer = _ref7.getPopupContainer;
- var _this$state3 = this.state,
- sortOrder = _this$state3.sortOrder,
- filters = _this$state3.filters;
- return (0, _util.treeMap)(columns, function (column, i) {
- var _classNames4;
-
- var key = getColumnKey(column, i);
- var filterDropdown;
- var sortButton;
- var onHeaderCell = column.onHeaderCell;
-
- var isSortColumn = _this7.isSortColumn(column);
-
- if (column.filters && column.filters.length > 0 || column.filterDropdown) {
- var colFilters = key in filters ? filters[key] : [];
- filterDropdown = React.createElement(_filterDropdown["default"], {
- locale: locale,
- column: column,
- selectedKeys: colFilters,
- confirmFilter: _this7.handleFilter,
- prefixCls: "".concat(prefixCls, "-filter"),
- dropdownPrefixCls: dropdownPrefixCls || 'ant-dropdown',
- getPopupContainer: _this7.generatePopupContainerFunc(getPopupContainer),
- key: "filter-dropdown"
- });
- }
-
- if (column.sorter) {
- var sortDirections = column.sortDirections || _this7.props.sortDirections;
- var isAscend = isSortColumn && sortOrder === 'ascend';
- var isDescend = isSortColumn && sortOrder === 'descend';
- var ascend = sortDirections.indexOf('ascend') !== -1 && React.createElement(_icon["default"], {
- className: "".concat(prefixCls, "-column-sorter-up ").concat(isAscend ? 'on' : 'off'),
- type: "caret-up",
- theme: "filled"
- });
- var descend = sortDirections.indexOf('descend') !== -1 && React.createElement(_icon["default"], {
- className: "".concat(prefixCls, "-column-sorter-down ").concat(isDescend ? 'on' : 'off'),
- type: "caret-down",
- theme: "filled"
- });
- sortButton = React.createElement("div", {
- title: locale.sortTitle,
- className: (0, _classnames["default"])("".concat(prefixCls, "-column-sorter-inner"), ascend && descend && "".concat(prefixCls, "-column-sorter-inner-full")),
- key: "sorter"
- }, ascend, descend);
-
- onHeaderCell = function onHeaderCell(col) {
- var colProps = {}; // Get original first
-
- if (column.onHeaderCell) {
- colProps = _extends({}, column.onHeaderCell(col));
- } // Add sorter logic
-
-
- var onHeaderCellClick = colProps.onClick;
-
- colProps.onClick = function () {
- _this7.toggleSortOrder(column);
-
- if (onHeaderCellClick) {
- onHeaderCellClick.apply(void 0, arguments);
- }
- };
-
- return colProps;
- };
- }
-
- return _extends(_extends({}, column), {
- className: (0, _classnames["default"])(column.className, (_classNames4 = {}, _defineProperty(_classNames4, "".concat(prefixCls, "-column-has-actions"), sortButton || filterDropdown), _defineProperty(_classNames4, "".concat(prefixCls, "-column-has-filters"), filterDropdown), _defineProperty(_classNames4, "".concat(prefixCls, "-column-has-sorters"), sortButton), _defineProperty(_classNames4, "".concat(prefixCls, "-column-sort"), isSortColumn && sortOrder), _classNames4)),
- title: [React.createElement("span", {
- key: "title",
- className: "".concat(prefixCls, "-header-column")
- }, React.createElement("div", {
- className: sortButton ? "".concat(prefixCls, "-column-sorters") : undefined
- }, React.createElement("span", {
- className: "".concat(prefixCls, "-column-title")
- }, _this7.renderColumnTitle(column.title)), React.createElement("span", {
- className: "".concat(prefixCls, "-column-sorter")
- }, sortButton))), filterDropdown],
- onHeaderCell: onHeaderCell
- });
- });
- }
- }, {
- key: "renderColumnTitle",
- value: function renderColumnTitle(title) {
- var _this$state4 = this.state,
- filters = _this$state4.filters,
- sortOrder = _this$state4.sortOrder,
- sortColumn = _this$state4.sortColumn; // https://github.com/ant-design/ant-design/issues/11246#issuecomment-405009167
-
- if (title instanceof Function) {
- return title({
- filters: filters,
- sortOrder: sortOrder,
- sortColumn: sortColumn
- });
- }
-
- return title;
- }
- }, {
- key: "render",
- value: function render() {
- return React.createElement(_configProvider.ConfigConsumer, null, this.renderComponent);
- }
- }], [{
- key: "getDerivedStateFromProps",
- value: function getDerivedStateFromProps(nextProps, prevState) {
- var prevProps = prevState.prevProps;
- var columns = nextProps.columns || (0, _util.normalizeColumns)(nextProps.children);
-
- var nextState = _extends(_extends({}, prevState), {
- prevProps: nextProps,
- columns: columns
- });
-
- if ('pagination' in nextProps || 'pagination' in prevProps) {
- var newPagination = _extends(_extends(_extends({}, defaultPagination), prevState.pagination), nextProps.pagination);
-
- newPagination.current = newPagination.current || 1;
- newPagination.pageSize = newPagination.pageSize || 10;
- nextState = _extends(_extends({}, nextState), {
- pagination: nextProps.pagination !== false ? newPagination : emptyObject
- });
- }
-
- if (nextProps.rowSelection && 'selectedRowKeys' in nextProps.rowSelection) {
- nextProps.store.setState({
- selectedRowKeys: nextProps.rowSelection.selectedRowKeys || []
- });
- } else if (prevProps.rowSelection && !nextProps.rowSelection) {
- nextProps.store.setState({
- selectedRowKeys: []
- });
- }
-
- if ('dataSource' in nextProps && nextProps.dataSource !== prevProps.dataSource) {
- nextProps.store.setState({
- selectionDirty: false
- });
- } // https://github.com/ant-design/ant-design/issues/10133
-
-
- nextProps.setCheckboxPropsCache({}); // Update filters
-
- var filteredValueColumns = getFilteredValueColumns(nextState, nextState.columns);
-
- if (filteredValueColumns.length > 0) {
- var filtersFromColumns = getFiltersFromColumns(nextState, nextState.columns);
-
- var newFilters = _extends({}, nextState.filters);
-
- Object.keys(filtersFromColumns).forEach(function (key) {
- newFilters[key] = filtersFromColumns[key];
- });
-
- if (isFiltersChanged(nextState, newFilters)) {
- nextState = _extends(_extends({}, nextState), {
- filters: newFilters
- });
- }
- }
-
- if (!isTheSameComponents(nextProps.components, prevProps.components)) {
- var components = createComponents(nextProps.components);
- nextState = _extends(_extends({}, nextState), {
- components: components
- });
- }
-
- return nextState;
- }
- }]);
-
- return Table;
- }(React.Component);
-
- Table.propTypes = {
- dataSource: PropTypes.array,
- columns: PropTypes.array,
- prefixCls: PropTypes.string,
- useFixedHeader: PropTypes.bool,
- rowSelection: PropTypes.object,
- className: PropTypes.string,
- size: PropTypes.string,
- loading: PropTypes.oneOfType([PropTypes.bool, PropTypes.object]),
- bordered: PropTypes.bool,
- onChange: PropTypes.func,
- locale: PropTypes.object,
- dropdownPrefixCls: PropTypes.string,
- sortDirections: PropTypes.array,
- getPopupContainer: PropTypes.func
- };
- Table.defaultProps = {
- dataSource: [],
- useFixedHeader: false,
- className: '',
- size: 'default',
- loading: false,
- bordered: false,
- indentSize: 20,
- locale: {},
- rowKey: 'key',
- showHeader: true,
- sortDirections: ['ascend', 'descend'],
- childrenColumnName: 'children'
- };
- (0, _reactLifecyclesCompat.polyfill)(Table);
-
- var StoreTable =
- /*#__PURE__*/
- function (_React$Component2) {
- _inherits(StoreTable, _React$Component2);
-
- function StoreTable(props) {
- var _this8;
-
- _classCallCheck(this, StoreTable);
-
- _this8 = _possibleConstructorReturn(this, _getPrototypeOf(StoreTable).call(this, props));
-
- _this8.setCheckboxPropsCache = function (cache) {
- return _this8.CheckboxPropsCache = cache;
- };
-
- _this8.CheckboxPropsCache = {};
- _this8.store = (0, _createStore["default"])({
- selectedRowKeys: getRowSelection(props).selectedRowKeys || [],
- selectionDirty: false
- });
- return _this8;
- }
-
- _createClass(StoreTable, [{
- key: "render",
- value: function render() {
- return React.createElement(Table, _extends({}, this.props, {
- store: this.store,
- checkboxPropsCache: this.CheckboxPropsCache,
- setCheckboxPropsCache: this.setCheckboxPropsCache
- }));
- }
- }]);
-
- return StoreTable;
- }(React.Component);
-
- StoreTable.displayName = 'withStore(Table)';
- StoreTable.Column = _Column["default"];
- StoreTable.ColumnGroup = _ColumnGroup["default"];
- var _default = StoreTable;
- exports["default"] = _default;
- //# sourceMappingURL=Table.js.map
-
-
- /***/ }),
-
- /***/ 1285:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- var __importDefault = this && this.__importDefault || function (mod) {
- return mod && mod.__esModule ? mod : {
- "default": mod
- };
- };
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
-
- var Table_1 = __importDefault(__webpack_require__(1286));
-
- var Column_1 = __importDefault(__webpack_require__(1105));
-
- exports.Column = Column_1.default;
-
- var ColumnGroup_1 = __importDefault(__webpack_require__(1106));
-
- exports.ColumnGroup = ColumnGroup_1.default;
-
- var utils_1 = __webpack_require__(895);
-
- exports.INTERNAL_COL_DEFINE = utils_1.INTERNAL_COL_DEFINE;
- exports.default = Table_1.default;
-
- /***/ }),
-
- /***/ 1286:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
-
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
-
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
-
- function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
-
- function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
-
- function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
-
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
-
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
-
- var __importStar = this && this.__importStar || function (mod) {
- if (mod && mod.__esModule) return mod;
- var result = {};
- if (mod != null) for (var k in mod) {
- if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
- }
- result["default"] = mod;
- return result;
- };
-
- var __importDefault = this && this.__importDefault || function (mod) {
- return mod && mod.__esModule ? mod : {
- "default": mod
- };
- };
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
-
- var React = __importStar(__webpack_require__(0));
-
- var PropTypes = __importStar(__webpack_require__(1));
-
- var shallowequal_1 = __importDefault(__webpack_require__(59));
-
- var addEventListener_1 = __importDefault(__webpack_require__(329));
-
- var warning_1 = __importDefault(__webpack_require__(186));
-
- var mini_store_1 = __webpack_require__(90);
-
- var merge_1 = __importDefault(__webpack_require__(1178));
-
- var component_classes_1 = __importDefault(__webpack_require__(191));
-
- var classnames_1 = __importDefault(__webpack_require__(3));
-
- var react_lifecycles_compat_1 = __webpack_require__(7);
-
- var utils_1 = __webpack_require__(895);
-
- var ColumnManager_1 = __importDefault(__webpack_require__(1287));
-
- var HeadTable_1 = __importDefault(__webpack_require__(1288));
-
- var BodyTable_1 = __importDefault(__webpack_require__(1295));
-
- var Column_1 = __importDefault(__webpack_require__(1105));
-
- var ColumnGroup_1 = __importDefault(__webpack_require__(1106));
-
- var ExpandableTable_1 = __importDefault(__webpack_require__(1296));
-
- var Table =
- /*#__PURE__*/
- function (_React$Component) {
- _inherits(Table, _React$Component);
-
- function Table(props) {
- var _this;
-
- _classCallCheck(this, Table);
-
- _this = _possibleConstructorReturn(this, _getPrototypeOf(Table).call(this, props));
- _this.state = {};
-
- _this.getRowKey = function (record, index) {
- var rowKey = _this.props.rowKey;
- var key = typeof rowKey === 'function' ? rowKey(record, index) : record[rowKey];
- warning_1.default(key !== undefined, 'Each record in table should have a unique `key` prop,' + 'or set `rowKey` to an unique primary key.');
- return key === undefined ? index : key;
- };
-
- _this.handleWindowResize = function () {
- _this.syncFixedTableRowHeight();
-
- _this.setScrollPositionClassName();
- };
-
- _this.syncFixedTableRowHeight = function () {
- var tableRect = _this.tableNode.getBoundingClientRect(); // If tableNode's height less than 0, suppose it is hidden and don't recalculate rowHeight.
- // see: https://github.com/ant-design/ant-design/issues/4836
-
-
- if (tableRect.height !== undefined && tableRect.height <= 0) {
- return;
- }
-
- var prefixCls = _this.props.prefixCls;
- var headRows = _this.headTable ? _this.headTable.querySelectorAll('thead') : _this.bodyTable.querySelectorAll('thead');
- var bodyRows = _this.bodyTable.querySelectorAll(".".concat(prefixCls, "-row")) || [];
- var fixedColumnsHeadRowsHeight = [].map.call(headRows, function (row) {
- return row.getBoundingClientRect().height || 'auto';
- });
-
- var state = _this.store.getState();
-
- var fixedColumnsBodyRowsHeight = [].reduce.call(bodyRows, function (acc, row) {
- var rowKey = row.getAttribute('data-row-key');
- var height = row.getBoundingClientRect().height || state.fixedColumnsBodyRowsHeight[rowKey] || 'auto';
- acc[rowKey] = height;
- return acc;
- }, {});
-
- if (shallowequal_1.default(state.fixedColumnsHeadRowsHeight, fixedColumnsHeadRowsHeight) && shallowequal_1.default(state.fixedColumnsBodyRowsHeight, fixedColumnsBodyRowsHeight)) {
- return;
- }
-
- _this.store.setState({
- fixedColumnsHeadRowsHeight: fixedColumnsHeadRowsHeight,
- fixedColumnsBodyRowsHeight: fixedColumnsBodyRowsHeight
- });
- };
-
- _this.handleBodyScrollLeft = function (e) {
- // Fix https://github.com/ant-design/ant-design/issues/7635
- if (e.currentTarget !== e.target) {
- return;
- }
-
- var target = e.target;
- var _this$props$scroll = _this.props.scroll,
- scroll = _this$props$scroll === void 0 ? {} : _this$props$scroll;
-
- var _assertThisInitialize = _assertThisInitialized(_this),
- headTable = _assertThisInitialize.headTable,
- bodyTable = _assertThisInitialize.bodyTable;
-
- if (target.scrollLeft !== _this.lastScrollLeft && scroll.x) {
- if (target === bodyTable && headTable) {
- headTable.scrollLeft = target.scrollLeft;
- } else if (target === headTable && bodyTable) {
- bodyTable.scrollLeft = target.scrollLeft;
- }
-
- _this.setScrollPositionClassName();
- } // Remember last scrollLeft for scroll direction detecting.
-
-
- _this.lastScrollLeft = target.scrollLeft;
- };
-
- _this.handleBodyScrollTop = function (e) {
- var target = e.target; // Fix https://github.com/ant-design/ant-design/issues/9033
-
- if (e.currentTarget !== target) {
- return;
- }
-
- var _this$props$scroll2 = _this.props.scroll,
- scroll = _this$props$scroll2 === void 0 ? {} : _this$props$scroll2;
-
- var _assertThisInitialize2 = _assertThisInitialized(_this),
- headTable = _assertThisInitialize2.headTable,
- bodyTable = _assertThisInitialize2.bodyTable,
- fixedColumnsBodyLeft = _assertThisInitialize2.fixedColumnsBodyLeft,
- fixedColumnsBodyRight = _assertThisInitialize2.fixedColumnsBodyRight;
-
- if (target.scrollTop !== _this.lastScrollTop && scroll.y && target !== headTable) {
- var scrollTop = target.scrollTop;
-
- if (fixedColumnsBodyLeft && target !== fixedColumnsBodyLeft) {
- fixedColumnsBodyLeft.scrollTop = scrollTop;
- }
-
- if (fixedColumnsBodyRight && target !== fixedColumnsBodyRight) {
- fixedColumnsBodyRight.scrollTop = scrollTop;
- }
-
- if (bodyTable && target !== bodyTable) {
- bodyTable.scrollTop = scrollTop;
- }
- } // Remember last scrollTop for scroll direction detecting.
-
-
- _this.lastScrollTop = target.scrollTop;
- };
-
- _this.handleBodyScroll = function (e) {
- _this.handleBodyScrollLeft(e);
-
- _this.handleBodyScrollTop(e);
- };
-
- _this.handleWheel = function (event) {
- var _this$props$scroll3 = _this.props.scroll,
- scroll = _this$props$scroll3 === void 0 ? {} : _this$props$scroll3;
-
- if (window.navigator.userAgent.match(/Trident\/7\./) && scroll.y) {
- event.preventDefault();
- var wd = event.deltaY;
- var target = event.target;
-
- var _assertThisInitialize3 = _assertThisInitialized(_this),
- bodyTable = _assertThisInitialize3.bodyTable,
- fixedColumnsBodyLeft = _assertThisInitialize3.fixedColumnsBodyLeft,
- fixedColumnsBodyRight = _assertThisInitialize3.fixedColumnsBodyRight;
-
- var scrollTop = 0;
-
- if (_this.lastScrollTop) {
- scrollTop = _this.lastScrollTop + wd;
- } else {
- scrollTop = wd;
- }
-
- if (fixedColumnsBodyLeft && target !== fixedColumnsBodyLeft) {
- fixedColumnsBodyLeft.scrollTop = scrollTop;
- }
-
- if (fixedColumnsBodyRight && target !== fixedColumnsBodyRight) {
- fixedColumnsBodyRight.scrollTop = scrollTop;
- }
-
- if (bodyTable && target !== bodyTable) {
- bodyTable.scrollTop = scrollTop;
- }
- }
- };
-
- _this.saveRef = function (name) {
- return function (node) {
- _this[name] = node;
- };
- };
-
- _this.saveTableNodeRef = function (node) {
- _this.tableNode = node;
- };
-
- ['onRowClick', 'onRowDoubleClick', 'onRowContextMenu', 'onRowMouseEnter', 'onRowMouseLeave'].forEach(function (name) {
- warning_1.default(props[name] === undefined, "".concat(name, " is deprecated, please use onRow instead."));
- });
- warning_1.default(props.getBodyWrapper === undefined, 'getBodyWrapper is deprecated, please use custom components instead.');
- _this.columnManager = new ColumnManager_1.default(props.columns, props.children);
- _this.store = mini_store_1.create({
- currentHoverKey: null,
- fixedColumnsHeadRowsHeight: [],
- fixedColumnsBodyRowsHeight: {}
- });
-
- _this.setScrollPosition('left');
-
- _this.debouncedWindowResize = utils_1.debounce(_this.handleWindowResize, 150);
- return _this;
- }
-
- _createClass(Table, [{
- key: "getChildContext",
- value: function getChildContext() {
- return {
- table: {
- props: this.props,
- columnManager: this.columnManager,
- saveRef: this.saveRef,
- components: merge_1.default({
- table: 'table',
- header: {
- wrapper: 'thead',
- row: 'tr',
- cell: 'th'
- },
- body: {
- wrapper: 'tbody',
- row: 'tr',
- cell: 'td'
- }
- }, this.props.components)
- }
- };
- }
- }, {
- key: "componentDidMount",
- value: function componentDidMount() {
- if (this.columnManager.isAnyColumnsFixed()) {
- this.handleWindowResize();
- this.resizeEvent = addEventListener_1.default(window, 'resize', this.debouncedWindowResize);
- } // https://github.com/ant-design/ant-design/issues/11635
-
-
- if (this.headTable) {
- this.headTable.scrollLeft = 0;
- }
-
- if (this.bodyTable) {
- this.bodyTable.scrollLeft = 0;
- }
- }
- }, {
- key: "componentDidUpdate",
- value: function componentDidUpdate(prevProps) {
- if (this.columnManager.isAnyColumnsFixed()) {
- this.handleWindowResize();
-
- if (!this.resizeEvent) {
- this.resizeEvent = addEventListener_1.default(window, 'resize', this.debouncedWindowResize);
- }
- } // when table changes to empty, reset scrollLeft
-
-
- if (prevProps.data.length > 0 && this.props.data.length === 0 && this.hasScrollX()) {
- this.resetScrollX();
- }
- }
- }, {
- key: "componentWillUnmount",
- value: function componentWillUnmount() {
- if (this.resizeEvent) {
- this.resizeEvent.remove();
- }
-
- if (this.debouncedWindowResize) {
- this.debouncedWindowResize.cancel();
- }
- }
- }, {
- key: "setScrollPosition",
- value: function setScrollPosition(position) {
- this.scrollPosition = position;
-
- if (this.tableNode) {
- var prefixCls = this.props.prefixCls;
-
- if (position === 'both') {
- component_classes_1.default(this.tableNode).remove(new RegExp("^".concat(prefixCls, "-scroll-position-.+$"))).add("".concat(prefixCls, "-scroll-position-left")).add("".concat(prefixCls, "-scroll-position-right"));
- } else {
- component_classes_1.default(this.tableNode).remove(new RegExp("^".concat(prefixCls, "-scroll-position-.+$"))).add("".concat(prefixCls, "-scroll-position-").concat(position));
- }
- }
- }
- }, {
- key: "setScrollPositionClassName",
- value: function setScrollPositionClassName() {
- var node = this.bodyTable;
- var scrollToLeft = node.scrollLeft === 0;
- var scrollToRight = node.scrollLeft + 1 >= node.children[0].getBoundingClientRect().width - node.getBoundingClientRect().width;
-
- if (scrollToLeft && scrollToRight) {
- this.setScrollPosition('both');
- } else if (scrollToLeft) {
- this.setScrollPosition('left');
- } else if (scrollToRight) {
- this.setScrollPosition('right');
- } else if (this.scrollPosition !== 'middle') {
- this.setScrollPosition('middle');
- }
- }
- }, {
- key: "isTableLayoutFixed",
- value: function isTableLayoutFixed() {
- var _this$props = this.props,
- tableLayout = _this$props.tableLayout,
- _this$props$columns = _this$props.columns,
- columns = _this$props$columns === void 0 ? [] : _this$props$columns,
- useFixedHeader = _this$props.useFixedHeader,
- _this$props$scroll4 = _this$props.scroll,
- scroll = _this$props$scroll4 === void 0 ? {} : _this$props$scroll4;
-
- if (typeof tableLayout !== 'undefined') {
- return tableLayout === 'fixed';
- } // if one column is ellipsis, use fixed table layout to fix align issue
-
-
- if (columns.some(function (_ref) {
- var ellipsis = _ref.ellipsis;
- return !!ellipsis;
- })) {
- return true;
- } // if header fixed, use fixed table layout to fix align issue
-
-
- if (useFixedHeader || scroll.y) {
- return true;
- } // if scroll.x is number/px/% width value, we should fixed table layout
- // to avoid long word layout broken issue
-
-
- if (scroll.x && scroll.x !== true && scroll.x !== 'max-content') {
- return true;
- }
-
- return false;
- }
- }, {
- key: "resetScrollX",
- value: function resetScrollX() {
- if (this.headTable) {
- this.headTable.scrollLeft = 0;
- }
-
- if (this.bodyTable) {
- this.bodyTable.scrollLeft = 0;
- }
- }
- }, {
- key: "hasScrollX",
- value: function hasScrollX() {
- var _this$props$scroll5 = this.props.scroll,
- scroll = _this$props$scroll5 === void 0 ? {} : _this$props$scroll5;
- return 'x' in scroll;
- }
- }, {
- key: "renderMainTable",
- value: function renderMainTable() {
- var _this$props2 = this.props,
- scroll = _this$props2.scroll,
- prefixCls = _this$props2.prefixCls;
- var isAnyColumnsFixed = this.columnManager.isAnyColumnsFixed();
- var scrollable = isAnyColumnsFixed || scroll.x || scroll.y;
- var table = [this.renderTable({
- columns: this.columnManager.groupedColumns(),
- isAnyColumnsFixed: isAnyColumnsFixed
- }), this.renderEmptyText(), this.renderFooter()];
- return scrollable ? React.createElement("div", {
- className: "".concat(prefixCls, "-scroll")
- }, table) : table;
- }
- }, {
- key: "renderLeftFixedTable",
- value: function renderLeftFixedTable() {
- var prefixCls = this.props.prefixCls;
- return React.createElement("div", {
- className: "".concat(prefixCls, "-fixed-left")
- }, this.renderTable({
- columns: this.columnManager.leftColumns(),
- fixed: 'left'
- }));
- }
- }, {
- key: "renderRightFixedTable",
- value: function renderRightFixedTable() {
- var prefixCls = this.props.prefixCls;
- return React.createElement("div", {
- className: "".concat(prefixCls, "-fixed-right")
- }, this.renderTable({
- columns: this.columnManager.rightColumns(),
- fixed: 'right'
- }));
- }
- }, {
- key: "renderTable",
- value: function renderTable(options) {
- var columns = options.columns,
- fixed = options.fixed,
- isAnyColumnsFixed = options.isAnyColumnsFixed;
- var _this$props3 = this.props,
- prefixCls = _this$props3.prefixCls,
- _this$props3$scroll = _this$props3.scroll,
- scroll = _this$props3$scroll === void 0 ? {} : _this$props3$scroll;
- var tableClassName = scroll.x || fixed ? "".concat(prefixCls, "-fixed") : '';
- var headTable = React.createElement(HeadTable_1.default, {
- key: "head",
- columns: columns,
- fixed: fixed,
- tableClassName: tableClassName,
- handleBodyScrollLeft: this.handleBodyScrollLeft,
- expander: this.expander
- });
- var bodyTable = React.createElement(BodyTable_1.default, {
- key: "body",
- columns: columns,
- fixed: fixed,
- tableClassName: tableClassName,
- getRowKey: this.getRowKey,
- handleWheel: this.handleWheel,
- handleBodyScroll: this.handleBodyScroll,
- expander: this.expander,
- isAnyColumnsFixed: isAnyColumnsFixed
- });
- return [headTable, bodyTable];
- }
- }, {
- key: "renderTitle",
- value: function renderTitle() {
- var _this$props4 = this.props,
- title = _this$props4.title,
- prefixCls = _this$props4.prefixCls;
- return title ? React.createElement("div", {
- className: "".concat(prefixCls, "-title"),
- key: "title"
- }, title(this.props.data)) : null;
- }
- }, {
- key: "renderFooter",
- value: function renderFooter() {
- var _this$props5 = this.props,
- footer = _this$props5.footer,
- prefixCls = _this$props5.prefixCls;
- return footer ? React.createElement("div", {
- className: "".concat(prefixCls, "-footer"),
- key: "footer"
- }, footer(this.props.data)) : null;
- }
- }, {
- key: "renderEmptyText",
- value: function renderEmptyText() {
- var _this$props6 = this.props,
- emptyText = _this$props6.emptyText,
- prefixCls = _this$props6.prefixCls,
- data = _this$props6.data;
-
- if (data.length) {
- return null;
- }
-
- var emptyClassName = "".concat(prefixCls, "-placeholder");
- return React.createElement("div", {
- className: emptyClassName,
- key: "emptyText"
- }, typeof emptyText === 'function' ? emptyText() : emptyText);
- }
- }, {
- key: "render",
- value: function render() {
- var _classnames_1$default,
- _this2 = this;
-
- var props = this.props;
- var prefixCls = props.prefixCls;
-
- if (this.state.columns) {
- this.columnManager.reset(props.columns);
- } else if (this.state.children) {
- this.columnManager.reset(null, props.children);
- }
-
- var tableClassName = classnames_1.default(props.prefixCls, props.className, (_classnames_1$default = {}, _defineProperty(_classnames_1$default, "".concat(prefixCls, "-fixed-header"), props.useFixedHeader || props.scroll && props.scroll.y), _defineProperty(_classnames_1$default, "".concat(prefixCls, "-scroll-position-left ").concat(prefixCls, "-scroll-position-right"), this.scrollPosition === 'both'), _defineProperty(_classnames_1$default, "".concat(prefixCls, "-scroll-position-").concat(this.scrollPosition), this.scrollPosition !== 'both'), _defineProperty(_classnames_1$default, "".concat(prefixCls, "-layout-fixed"), this.isTableLayoutFixed()), _classnames_1$default));
- var hasLeftFixed = this.columnManager.isAnyColumnsLeftFixed();
- var hasRightFixed = this.columnManager.isAnyColumnsRightFixed();
- var dataAndAriaProps = utils_1.getDataAndAriaProps(props);
- return React.createElement(mini_store_1.Provider, {
- store: this.store
- }, React.createElement(ExpandableTable_1.default, Object.assign({}, props, {
- columnManager: this.columnManager,
- getRowKey: this.getRowKey
- }), function (expander) {
- _this2.expander = expander;
- return React.createElement("div", Object.assign({
- ref: _this2.saveTableNodeRef,
- className: tableClassName,
- style: props.style,
- id: props.id
- }, dataAndAriaProps), _this2.renderTitle(), React.createElement("div", {
- className: "".concat(prefixCls, "-content")
- }, _this2.renderMainTable(), hasLeftFixed && _this2.renderLeftFixedTable(), hasRightFixed && _this2.renderRightFixedTable()));
- }));
- }
- }], [{
- key: "getDerivedStateFromProps",
- value: function getDerivedStateFromProps(nextProps, prevState) {
- if (nextProps.columns && nextProps.columns !== prevState.columns) {
- return {
- columns: nextProps.columns,
- children: null
- };
- }
-
- if (nextProps.children !== prevState.children) {
- return {
- columns: null,
- children: nextProps.children
- };
- }
-
- return null;
- }
- }]);
-
- return Table;
- }(React.Component);
-
- Table.childContextTypes = {
- table: PropTypes.any,
- components: PropTypes.any
- };
- Table.Column = Column_1.default;
- Table.ColumnGroup = ColumnGroup_1.default;
- Table.defaultProps = {
- data: [],
- useFixedHeader: false,
- rowKey: 'key',
- rowClassName: function rowClassName() {
- return '';
- },
- onRow: function onRow() {},
- onHeaderRow: function onHeaderRow() {},
- prefixCls: 'rc-table',
- bodyStyle: {},
- style: {},
- showHeader: true,
- scroll: {},
- rowRef: function rowRef() {
- return null;
- },
- emptyText: function emptyText() {
- return 'No Data';
- }
- };
- react_lifecycles_compat_1.polyfill(Table);
- exports.default = Table;
-
- /***/ }),
-
- /***/ 1287:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _nonIterableSpread(); }
-
- function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance"); }
-
- function _iterableToArray(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); }
-
- function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } }
-
- function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
-
- function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
-
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
-
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
-
- var __importStar = this && this.__importStar || function (mod) {
- if (mod && mod.__esModule) return mod;
- var result = {};
- if (mod != null) for (var k in mod) {
- if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
- }
- result["default"] = mod;
- return result;
- };
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- /* eslint-disable no-underscore-dangle */
-
- var React = __importStar(__webpack_require__(0));
-
- var ColumnManager =
- /*#__PURE__*/
- function () {
- function ColumnManager(columns, elements) {
- _classCallCheck(this, ColumnManager);
-
- this._cached = {};
- this.columns = columns || this.normalize(elements);
- }
-
- _createClass(ColumnManager, [{
- key: "isAnyColumnsFixed",
- value: function isAnyColumnsFixed() {
- var _this = this;
-
- return this._cache('isAnyColumnsFixed', function () {
- return _this.columns.some(function (column) {
- return !!column.fixed;
- });
- });
- }
- }, {
- key: "isAnyColumnsLeftFixed",
- value: function isAnyColumnsLeftFixed() {
- var _this2 = this;
-
- return this._cache('isAnyColumnsLeftFixed', function () {
- return _this2.columns.some(function (column) {
- return column.fixed === 'left' || column.fixed === true;
- });
- });
- }
- }, {
- key: "isAnyColumnsRightFixed",
- value: function isAnyColumnsRightFixed() {
- var _this3 = this;
-
- return this._cache('isAnyColumnsRightFixed', function () {
- return _this3.columns.some(function (column) {
- return column.fixed === 'right';
- });
- });
- }
- }, {
- key: "leftColumns",
- value: function leftColumns() {
- var _this4 = this;
-
- return this._cache('leftColumns', function () {
- return _this4.groupedColumns().filter(function (column) {
- return column.fixed === 'left' || column.fixed === true;
- });
- });
- }
- }, {
- key: "rightColumns",
- value: function rightColumns() {
- var _this5 = this;
-
- return this._cache('rightColumns', function () {
- return _this5.groupedColumns().filter(function (column) {
- return column.fixed === 'right';
- });
- });
- }
- }, {
- key: "leafColumns",
- value: function leafColumns() {
- var _this6 = this;
-
- return this._cache('leafColumns', function () {
- return _this6._leafColumns(_this6.columns);
- });
- }
- }, {
- key: "leftLeafColumns",
- value: function leftLeafColumns() {
- var _this7 = this;
-
- return this._cache('leftLeafColumns', function () {
- return _this7._leafColumns(_this7.leftColumns());
- });
- }
- }, {
- key: "rightLeafColumns",
- value: function rightLeafColumns() {
- var _this8 = this;
-
- return this._cache('rightLeafColumns', function () {
- return _this8._leafColumns(_this8.rightColumns());
- });
- } // add appropriate rowspan and colspan to column
-
- }, {
- key: "groupedColumns",
- value: function groupedColumns() {
- var _this9 = this;
-
- return this._cache('groupedColumns', function () {
- var _groupColumns = function _groupColumns(columns) {
- var currentRow = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;
- var parentColumn = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
- var rows = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : [];
-
- /* eslint-disable no-param-reassign */
- // track how many rows we got
- rows[currentRow] = rows[currentRow] || [];
- var grouped = [];
-
- var setRowSpan = function setRowSpan(column) {
- var rowSpan = rows.length - currentRow;
-
- if (column && !column.children && // parent columns are supposed to be one row
- rowSpan > 1 && (!column.rowSpan || column.rowSpan < rowSpan)) {
- column.rowSpan = rowSpan;
- }
- };
-
- columns.forEach(function (column, index) {
- var newColumn = _objectSpread({}, column);
-
- rows[currentRow].push(newColumn);
- parentColumn.colSpan = parentColumn.colSpan || 0;
-
- if (newColumn.children && newColumn.children.length > 0) {
- newColumn.children = _groupColumns(newColumn.children, currentRow + 1, newColumn, rows);
- parentColumn.colSpan += newColumn.colSpan;
- } else {
- parentColumn.colSpan += 1;
- } // update rowspan to all same row columns
-
-
- for (var i = 0; i < rows[currentRow].length - 1; i += 1) {
- setRowSpan(rows[currentRow][i]);
- } // last column, update rowspan immediately
-
-
- if (index + 1 === columns.length) {
- setRowSpan(newColumn);
- }
-
- grouped.push(newColumn);
- });
- return grouped;
- /* eslint-enable no-param-reassign */
- };
-
- return _groupColumns(_this9.columns);
- });
- }
- }, {
- key: "normalize",
- value: function normalize(elements) {
- var _this10 = this;
-
- var columns = [];
- React.Children.forEach(elements, function (element) {
- if (!React.isValidElement(element)) {
- return;
- }
-
- var column = _objectSpread({}, element.props);
-
- if (element.key) {
- column.key = element.key;
- }
-
- if (element.type.isTableColumnGroup) {
- column.children = _this10.normalize(column.children);
- }
-
- columns.push(column);
- });
- return columns;
- }
- }, {
- key: "reset",
- value: function reset(columns, elements) {
- this.columns = columns || this.normalize(elements);
- this._cached = {};
- }
- }, {
- key: "_cache",
- value: function _cache(name, fn) {
- if (name in this._cached) {
- return this._cached[name];
- }
-
- this._cached[name] = fn();
- return this._cached[name];
- }
- }, {
- key: "_leafColumns",
- value: function _leafColumns(columns) {
- var _this11 = this;
-
- var leafColumns = [];
- columns.forEach(function (column) {
- if (!column.children) {
- leafColumns.push(column);
- } else {
- leafColumns.push.apply(leafColumns, _toConsumableArray(_this11._leafColumns(column.children)));
- }
- });
- return leafColumns;
- }
- }]);
-
- return ColumnManager;
- }();
-
- exports.default = ColumnManager;
- /* eslint-enable */
-
- /***/ }),
-
- /***/ 1288:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
-
- var __importStar = this && this.__importStar || function (mod) {
- if (mod && mod.__esModule) return mod;
- var result = {};
- if (mod != null) for (var k in mod) {
- if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
- }
- result["default"] = mod;
- return result;
- };
-
- var __importDefault = this && this.__importDefault || function (mod) {
- return mod && mod.__esModule ? mod : {
- "default": mod
- };
- };
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
-
- var React = __importStar(__webpack_require__(0));
-
- var PropTypes = __importStar(__webpack_require__(1));
-
- var classnames_1 = __importDefault(__webpack_require__(3));
-
- var utils_1 = __webpack_require__(895);
-
- var BaseTable_1 = __importDefault(__webpack_require__(1103));
-
- function HeadTable(props, _ref) {
- var table = _ref.table;
- var _table$props = table.props,
- prefixCls = _table$props.prefixCls,
- scroll = _table$props.scroll,
- showHeader = _table$props.showHeader;
- var columns = props.columns,
- fixed = props.fixed,
- tableClassName = props.tableClassName,
- handleBodyScrollLeft = props.handleBodyScrollLeft,
- expander = props.expander;
- var saveRef = table.saveRef;
- var useFixedHeader = table.props.useFixedHeader;
- var headStyle = {};
- var scrollbarWidth = utils_1.measureScrollbar({
- direction: 'vertical'
- });
-
- if (scroll.y) {
- useFixedHeader = true; // https://github.com/ant-design/ant-design/issues/17051
-
- var scrollbarWidthOfHeader = utils_1.measureScrollbar({
- direction: 'horizontal',
- prefixCls: prefixCls
- }); // Add negative margin bottom for scroll bar overflow bug
-
- if (scrollbarWidthOfHeader > 0 && !fixed) {
- headStyle.marginBottom = "-".concat(scrollbarWidthOfHeader, "px");
- headStyle.paddingBottom = '0px'; // https://github.com/ant-design/ant-design/pull/19986
-
- headStyle.minWidth = "".concat(scrollbarWidth, "px"); // https://github.com/ant-design/ant-design/issues/17051
-
- headStyle.overflowX = 'scroll';
- headStyle.overflowY = scrollbarWidth === 0 ? 'hidden' : 'scroll';
- }
- }
-
- if (!useFixedHeader || !showHeader) {
- return null;
- }
-
- return React.createElement("div", {
- key: "headTable",
- ref: fixed ? null : saveRef('headTable'),
- className: classnames_1.default("".concat(prefixCls, "-header"), _defineProperty({}, "".concat(prefixCls, "-hide-scrollbar"), scrollbarWidth > 0)),
- style: headStyle,
- onScroll: handleBodyScrollLeft
- }, React.createElement(BaseTable_1.default, {
- tableClassName: tableClassName,
- hasHead: true,
- hasBody: false,
- fixed: fixed,
- columns: columns,
- expander: expander
- }));
- }
-
- exports.default = HeadTable;
- HeadTable.contextTypes = {
- table: PropTypes.any
- };
-
- /***/ }),
-
- /***/ 1289:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- var __importStar = this && this.__importStar || function (mod) {
- if (mod && mod.__esModule) return mod;
- var result = {};
- if (mod != null) for (var k in mod) {
- if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
- }
- result["default"] = mod;
- return result;
- };
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
-
- var React = __importStar(__webpack_require__(0));
-
- var PropTypes = __importStar(__webpack_require__(1));
-
- var utils_1 = __webpack_require__(895);
-
- var ColGroup = function ColGroup(props, _ref) {
- var table = _ref.table;
- var _table$props = table.props,
- prefixCls = _table$props.prefixCls,
- expandIconAsCell = _table$props.expandIconAsCell;
- var fixed = props.fixed;
- var cols = [];
-
- if (expandIconAsCell && fixed !== 'right') {
- cols.push(React.createElement("col", {
- className: "".concat(prefixCls, "-expand-icon-col"),
- key: "rc-table-expand-icon-col"
- }));
- }
-
- var leafColumns;
-
- if (fixed === 'left') {
- leafColumns = table.columnManager.leftLeafColumns();
- } else if (fixed === 'right') {
- leafColumns = table.columnManager.rightLeafColumns();
- } else {
- leafColumns = table.columnManager.leafColumns();
- }
-
- cols = cols.concat(leafColumns.map(function (_ref2) {
- var key = _ref2.key,
- dataIndex = _ref2.dataIndex,
- width = _ref2.width,
- additionalProps = _ref2[utils_1.INTERNAL_COL_DEFINE];
- var mergedKey = key !== undefined ? key : dataIndex;
- return React.createElement("col", Object.assign({
- key: mergedKey,
- style: {
- width: width,
- minWidth: width
- }
- }, additionalProps));
- }));
- return React.createElement("colgroup", null, cols);
- };
-
- ColGroup.contextTypes = {
- table: PropTypes.any
- };
- exports.default = ColGroup;
-
- /***/ }),
-
- /***/ 1290:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- var __importStar = this && this.__importStar || function (mod) {
- if (mod && mod.__esModule) return mod;
- var result = {};
- if (mod != null) for (var k in mod) {
- if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
- }
- result["default"] = mod;
- return result;
- };
-
- var __importDefault = this && this.__importDefault || function (mod) {
- return mod && mod.__esModule ? mod : {
- "default": mod
- };
- };
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
-
- var React = __importStar(__webpack_require__(0));
-
- var PropTypes = __importStar(__webpack_require__(1));
-
- var TableHeaderRow_1 = __importDefault(__webpack_require__(1291));
-
- function getHeaderRows(_ref) {
- var _ref$columns = _ref.columns,
- columns = _ref$columns === void 0 ? [] : _ref$columns,
- _ref$currentRow = _ref.currentRow,
- currentRow = _ref$currentRow === void 0 ? 0 : _ref$currentRow,
- _ref$rows = _ref.rows,
- rows = _ref$rows === void 0 ? [] : _ref$rows,
- _ref$isLast = _ref.isLast,
- isLast = _ref$isLast === void 0 ? true : _ref$isLast;
- // eslint-disable-next-line no-param-reassign
- rows[currentRow] = rows[currentRow] || [];
- columns.forEach(function (column, i) {
- if (column.rowSpan && rows.length < column.rowSpan) {
- while (rows.length < column.rowSpan) {
- rows.push([]);
- }
- }
-
- var cellIsLast = isLast && i === columns.length - 1;
- var cell = {
- key: column.key,
- className: column.className || '',
- children: column.title,
- isLast: cellIsLast,
- column: column
- };
-
- if (column.children) {
- getHeaderRows({
- columns: column.children,
- currentRow: currentRow + 1,
- rows: rows,
- isLast: cellIsLast
- });
- }
-
- if ('colSpan' in column) {
- cell.colSpan = column.colSpan;
- }
-
- if ('rowSpan' in column) {
- cell.rowSpan = column.rowSpan;
- }
-
- if (cell.colSpan !== 0) {
- rows[currentRow].push(cell);
- }
- });
- return rows.filter(function (row) {
- return row.length > 0;
- });
- }
-
- var TableHeader = function TableHeader(props, _ref2) {
- var table = _ref2.table;
- var components = table.components;
- var _table$props = table.props,
- prefixCls = _table$props.prefixCls,
- showHeader = _table$props.showHeader,
- onHeaderRow = _table$props.onHeaderRow;
- var expander = props.expander,
- columns = props.columns,
- fixed = props.fixed;
-
- if (!showHeader) {
- return null;
- }
-
- var rows = getHeaderRows({
- columns: columns
- });
- expander.renderExpandIndentCell(rows, fixed);
- var HeaderWrapper = components.header.wrapper;
- return React.createElement(HeaderWrapper, {
- className: "".concat(prefixCls, "-thead")
- }, rows.map(function (row, index) {
- return React.createElement(TableHeaderRow_1.default, {
- prefixCls: prefixCls,
- key: index,
- index: index,
- fixed: fixed,
- columns: columns,
- rows: rows,
- row: row,
- components: components,
- onHeaderRow: onHeaderRow
- });
- }));
- };
-
- TableHeader.contextTypes = {
- table: PropTypes.any
- };
- exports.default = TableHeader;
-
- /***/ }),
-
- /***/ 1291:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
-
- function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
-
- function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
-
- function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
-
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
-
- var __importStar = this && this.__importStar || function (mod) {
- if (mod && mod.__esModule) return mod;
- var result = {};
- if (mod != null) for (var k in mod) {
- if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
- }
- result["default"] = mod;
- return result;
- };
-
- var __importDefault = this && this.__importDefault || function (mod) {
- return mod && mod.__esModule ? mod : {
- "default": mod
- };
- };
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
-
- var React = __importStar(__webpack_require__(0));
-
- var mini_store_1 = __webpack_require__(90);
-
- var classnames_1 = __importDefault(__webpack_require__(3));
-
- function TableHeaderRow(_ref) {
- var row = _ref.row,
- index = _ref.index,
- height = _ref.height,
- components = _ref.components,
- onHeaderRow = _ref.onHeaderRow,
- prefixCls = _ref.prefixCls;
- var HeaderRow = components.header.row;
- var HeaderCell = components.header.cell;
- var rowProps = onHeaderRow(row.map(function (cell) {
- return cell.column;
- }), index);
- var customStyle = rowProps ? rowProps.style : {};
-
- var style = _objectSpread({
- // https://github.com/ant-design/ant-design/issues/20126
- // https://github.com/ant-design/ant-design/issues/20269
- // https://github.com/ant-design/ant-design/issues/20495
- height: row.length > 1 && index === 0 && height && height !== 'auto' ? parseInt(height.toString(), 10) : height
- }, customStyle);
-
- return React.createElement(HeaderRow, Object.assign({}, rowProps, {
- style: style
- }), row.map(function (cell, i) {
- var _classnames_1$default;
-
- var column = cell.column,
- isLast = cell.isLast,
- cellProps = _objectWithoutProperties(cell, ["column", "isLast"]);
-
- var customProps = column.onHeaderCell ? column.onHeaderCell(column) : {};
-
- if (column.align) {
- customProps.style = _objectSpread({}, customProps.style, {
- textAlign: column.align
- });
- }
-
- customProps.className = classnames_1.default(customProps.className, column.className, (_classnames_1$default = {}, _defineProperty(_classnames_1$default, "".concat(prefixCls, "-align-").concat(column.align), !!column.align), _defineProperty(_classnames_1$default, "".concat(prefixCls, "-row-cell-ellipsis"), !!column.ellipsis), _defineProperty(_classnames_1$default, "".concat(prefixCls, "-row-cell-break-word"), !!column.width), _defineProperty(_classnames_1$default, "".concat(prefixCls, "-row-cell-last"), isLast), _classnames_1$default));
- return React.createElement(HeaderCell, Object.assign({}, cellProps, customProps, {
- key: column.key || column.dataIndex || i
- }));
- }));
- }
-
- function getRowHeight(state, props) {
- var fixedColumnsHeadRowsHeight = state.fixedColumnsHeadRowsHeight;
- var columns = props.columns,
- rows = props.rows,
- fixed = props.fixed;
- var headerHeight = fixedColumnsHeadRowsHeight[0];
-
- if (!fixed) {
- return null;
- }
-
- if (headerHeight && columns) {
- if (headerHeight === 'auto') {
- return 'auto';
- }
-
- return headerHeight / rows.length;
- }
-
- return null;
- }
-
- exports.default = mini_store_1.connect(function (state, props) {
- return {
- height: getRowHeight(state, props)
- };
- })(TableHeaderRow);
-
- /***/ }),
-
- /***/ 1292:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
-
- function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
-
- function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
-
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
-
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
-
- 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 _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
-
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
-
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
-
- var __importStar = this && this.__importStar || function (mod) {
- if (mod && mod.__esModule) return mod;
- var result = {};
- if (mod != null) for (var k in mod) {
- if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
- }
- result["default"] = mod;
- return result;
- };
-
- var __importDefault = this && this.__importDefault || function (mod) {
- return mod && mod.__esModule ? mod : {
- "default": mod
- };
- };
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
-
- var React = __importStar(__webpack_require__(0));
-
- var classnames_1 = __importDefault(__webpack_require__(3));
-
- var get_1 = __importDefault(__webpack_require__(888));
-
- function isInvalidRenderCellText(text) {
- return text && !React.isValidElement(text) && Object.prototype.toString.call(text) === '[object Object]';
- }
-
- var TableCell =
- /*#__PURE__*/
- function (_React$Component) {
- _inherits(TableCell, _React$Component);
-
- function TableCell() {
- var _this;
-
- _classCallCheck(this, TableCell);
-
- _this = _possibleConstructorReturn(this, _getPrototypeOf(TableCell).apply(this, arguments));
-
- _this.handleClick = function (e) {
- var _this$props = _this.props,
- record = _this$props.record,
- onCellClick = _this$props.column.onCellClick;
-
- if (onCellClick) {
- onCellClick(record, e);
- }
- };
-
- return _this;
- }
-
- _createClass(TableCell, [{
- key: "render",
- value: function render() {
- var _classnames_1$default;
-
- var _this$props2 = this.props,
- record = _this$props2.record,
- indentSize = _this$props2.indentSize,
- prefixCls = _this$props2.prefixCls,
- indent = _this$props2.indent,
- index = _this$props2.index,
- expandIcon = _this$props2.expandIcon,
- column = _this$props2.column,
- BodyCell = _this$props2.component;
- var dataIndex = column.dataIndex,
- render = column.render,
- _column$className = column.className,
- className = _column$className === void 0 ? '' : _column$className; // We should return undefined if no dataIndex is specified, but in order to
- // be compatible with object-path's behavior, we return the record object instead.
-
- var text;
-
- if (typeof dataIndex === 'number') {
- text = get_1.default(record, dataIndex);
- } else if (!dataIndex || dataIndex.length === 0) {
- text = record;
- } else {
- text = get_1.default(record, dataIndex);
- }
-
- var tdProps = {};
- var colSpan;
- var rowSpan;
-
- if (render) {
- text = render(text, record, index); // `render` support cell with additional config like `props`
-
- if (isInvalidRenderCellText(text)) {
- tdProps = text.props || tdProps;
- var _tdProps = tdProps;
- colSpan = _tdProps.colSpan;
- rowSpan = _tdProps.rowSpan;
- text = text.children;
- }
- }
-
- if (column.onCell) {
- tdProps = _objectSpread({}, tdProps, {}, column.onCell(record, index));
- } // Fix https://github.com/ant-design/ant-design/issues/1202
-
-
- if (isInvalidRenderCellText(text)) {
- text = null;
- }
-
- var indentText = expandIcon ? React.createElement("span", {
- style: {
- paddingLeft: "".concat(indentSize * indent, "px")
- },
- className: "".concat(prefixCls, "-indent indent-level-").concat(indent)
- }) : null;
-
- if (rowSpan === 0 || colSpan === 0) {
- return null;
- }
-
- if (column.align) {
- tdProps.style = _objectSpread({
- textAlign: column.align
- }, tdProps.style);
- }
-
- var cellClassName = classnames_1.default(className, (_classnames_1$default = {}, _defineProperty(_classnames_1$default, "".concat(prefixCls, "-cell-ellipsis"), !!column.ellipsis), _defineProperty(_classnames_1$default, "".concat(prefixCls, "-cell-break-word"), !!column.width), _classnames_1$default));
-
- if (column.ellipsis) {
- if (typeof text === 'string') {
- tdProps.title = text;
- } else if (text) {
- var _text = text,
- textProps = _text.props;
-
- if (textProps && textProps.children && typeof textProps.children === 'string') {
- tdProps.title = textProps.children;
- }
- }
- }
-
- return React.createElement(BodyCell, Object.assign({
- className: cellClassName,
- onClick: this.handleClick
- }, tdProps), indentText, expandIcon, text);
- }
- }]);
-
- return TableCell;
- }(React.Component);
-
- exports.default = TableCell;
-
- /***/ }),
-
- /***/ 1293:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
-
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
-
- 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 _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
-
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
-
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
-
- var __importStar = this && this.__importStar || function (mod) {
- if (mod && mod.__esModule) return mod;
- var result = {};
- if (mod != null) for (var k in mod) {
- if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
- }
- result["default"] = mod;
- return result;
- };
-
- var __importDefault = this && this.__importDefault || function (mod) {
- return mod && mod.__esModule ? mod : {
- "default": mod
- };
- };
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
-
- var React = __importStar(__webpack_require__(0));
-
- var mini_store_1 = __webpack_require__(90);
-
- var ExpandIcon_1 = __importDefault(__webpack_require__(1294));
-
- var ExpandableRow =
- /*#__PURE__*/
- function (_React$Component) {
- _inherits(ExpandableRow, _React$Component);
-
- function ExpandableRow() {
- var _this;
-
- _classCallCheck(this, ExpandableRow);
-
- _this = _possibleConstructorReturn(this, _getPrototypeOf(ExpandableRow).apply(this, arguments)); // Show icon within first column
-
- _this.hasExpandIcon = function (columnIndex) {
- var _this$props = _this.props,
- expandRowByClick = _this$props.expandRowByClick,
- expandIcon = _this$props.expandIcon;
-
- if (_this.expandIconAsCell || columnIndex !== _this.expandIconColumnIndex) {
- return false;
- }
-
- return !!expandIcon || !expandRowByClick;
- };
-
- _this.handleExpandChange = function (record, event) {
- var _this$props2 = _this.props,
- onExpandedChange = _this$props2.onExpandedChange,
- expanded = _this$props2.expanded,
- rowKey = _this$props2.rowKey;
-
- if (_this.expandable) {
- onExpandedChange(!expanded, record, event, rowKey);
- }
- };
-
- _this.handleRowClick = function (record, index, event) {
- var _this$props3 = _this.props,
- expandRowByClick = _this$props3.expandRowByClick,
- onRowClick = _this$props3.onRowClick;
-
- if (expandRowByClick) {
- _this.handleExpandChange(record, event);
- }
-
- if (onRowClick) {
- onRowClick(record, index, event);
- }
- };
-
- _this.renderExpandIcon = function () {
- var _this$props4 = _this.props,
- prefixCls = _this$props4.prefixCls,
- expanded = _this$props4.expanded,
- record = _this$props4.record,
- needIndentSpaced = _this$props4.needIndentSpaced,
- expandIcon = _this$props4.expandIcon;
-
- if (expandIcon) {
- return expandIcon({
- prefixCls: prefixCls,
- expanded: expanded,
- record: record,
- needIndentSpaced: needIndentSpaced,
- expandable: _this.expandable,
- onExpand: _this.handleExpandChange
- });
- }
-
- return React.createElement(ExpandIcon_1.default, {
- expandable: _this.expandable,
- prefixCls: prefixCls,
- onExpand: _this.handleExpandChange,
- needIndentSpaced: needIndentSpaced,
- expanded: expanded,
- record: record
- });
- };
-
- _this.renderExpandIconCell = function (cells) {
- if (!_this.expandIconAsCell) {
- return;
- }
-
- var prefixCls = _this.props.prefixCls;
- cells.push(React.createElement("td", {
- className: "".concat(prefixCls, "-expand-icon-cell"),
- key: "rc-table-expand-icon-cell"
- }, _this.renderExpandIcon()));
- };
-
- return _this;
- }
-
- _createClass(ExpandableRow, [{
- key: "componentWillUnmount",
- value: function componentWillUnmount() {
- this.handleDestroy();
- }
- }, {
- key: "handleDestroy",
- value: function handleDestroy() {
- var _this$props5 = this.props,
- onExpandedChange = _this$props5.onExpandedChange,
- rowKey = _this$props5.rowKey,
- record = _this$props5.record;
-
- if (this.expandable) {
- onExpandedChange(false, record, null, rowKey, true);
- }
- }
- }, {
- key: "render",
- value: function render() {
- var _this$props6 = this.props,
- childrenColumnName = _this$props6.childrenColumnName,
- expandedRowRender = _this$props6.expandedRowRender,
- indentSize = _this$props6.indentSize,
- record = _this$props6.record,
- fixed = _this$props6.fixed,
- expanded = _this$props6.expanded;
- this.expandIconAsCell = fixed !== 'right' ? this.props.expandIconAsCell : false;
- this.expandIconColumnIndex = fixed !== 'right' ? this.props.expandIconColumnIndex : -1;
- var childrenData = record[childrenColumnName];
- this.expandable = !!(childrenData || expandedRowRender);
- var expandableRowProps = {
- indentSize: indentSize,
- // not used in TableRow, but it's required to re-render TableRow when `expanded` changes
- expanded: expanded,
- onRowClick: this.handleRowClick,
- hasExpandIcon: this.hasExpandIcon,
- renderExpandIcon: this.renderExpandIcon,
- renderExpandIconCell: this.renderExpandIconCell
- };
- return this.props.children(expandableRowProps);
- }
- }]);
-
- return ExpandableRow;
- }(React.Component);
-
- exports.default = mini_store_1.connect(function (_ref, _ref2) {
- var _ref$expandedRowKeys = _ref.expandedRowKeys,
- expandedRowKeys = _ref$expandedRowKeys === void 0 ? [] : _ref$expandedRowKeys;
- var rowKey = _ref2.rowKey;
- return {
- expanded: expandedRowKeys.includes(rowKey)
- };
- })(ExpandableRow);
-
- /***/ }),
-
- /***/ 1294:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
-
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
-
- 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 _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
-
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
-
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
-
- var __importStar = this && this.__importStar || function (mod) {
- if (mod && mod.__esModule) return mod;
- var result = {};
- if (mod != null) for (var k in mod) {
- if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
- }
- result["default"] = mod;
- return result;
- };
-
- var __importDefault = this && this.__importDefault || function (mod) {
- return mod && mod.__esModule ? mod : {
- "default": mod
- };
- };
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
-
- var React = __importStar(__webpack_require__(0));
-
- var shallowequal_1 = __importDefault(__webpack_require__(59));
-
- var ExpandIcon =
- /*#__PURE__*/
- function (_React$Component) {
- _inherits(ExpandIcon, _React$Component);
-
- function ExpandIcon() {
- _classCallCheck(this, ExpandIcon);
-
- return _possibleConstructorReturn(this, _getPrototypeOf(ExpandIcon).apply(this, arguments));
- }
-
- _createClass(ExpandIcon, [{
- key: "shouldComponentUpdate",
- value: function shouldComponentUpdate(nextProps) {
- return !shallowequal_1.default(nextProps, this.props);
- }
- }, {
- key: "render",
- value: function render() {
- var _this$props = this.props,
- expandable = _this$props.expandable,
- prefixCls = _this$props.prefixCls,
- onExpand = _this$props.onExpand,
- needIndentSpaced = _this$props.needIndentSpaced,
- expanded = _this$props.expanded,
- record = _this$props.record;
-
- if (expandable) {
- var expandClassName = expanded ? 'expanded' : 'collapsed';
- return React.createElement("span", {
- className: "".concat(prefixCls, "-expand-icon ").concat(prefixCls, "-").concat(expandClassName),
- onClick: function onClick(e) {
- return onExpand(record, e);
- }
- });
- }
-
- if (needIndentSpaced) {
- return React.createElement("span", {
- className: "".concat(prefixCls, "-expand-icon ").concat(prefixCls, "-spaced")
- });
- }
-
- return null;
- }
- }]);
-
- return ExpandIcon;
- }(React.Component);
-
- exports.default = ExpandIcon;
-
- /***/ }),
-
- /***/ 1295:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
-
- function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
-
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
-
- var __importStar = this && this.__importStar || function (mod) {
- if (mod && mod.__esModule) return mod;
- var result = {};
- if (mod != null) for (var k in mod) {
- if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
- }
- result["default"] = mod;
- return result;
- };
-
- var __importDefault = this && this.__importDefault || function (mod) {
- return mod && mod.__esModule ? mod : {
- "default": mod
- };
- };
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
-
- var React = __importStar(__webpack_require__(0));
-
- var PropTypes = __importStar(__webpack_require__(1));
-
- var utils_1 = __webpack_require__(895);
-
- var BaseTable_1 = __importDefault(__webpack_require__(1103));
-
- function BodyTable(props, _ref) {
- var table = _ref.table;
- var _table$props = table.props,
- prefixCls = _table$props.prefixCls,
- scroll = _table$props.scroll;
- var columns = props.columns,
- fixed = props.fixed,
- tableClassName = props.tableClassName,
- getRowKey = props.getRowKey,
- handleBodyScroll = props.handleBodyScroll,
- handleWheel = props.handleWheel,
- expander = props.expander,
- isAnyColumnsFixed = props.isAnyColumnsFixed;
- var saveRef = table.saveRef;
- var useFixedHeader = table.props.useFixedHeader;
-
- var bodyStyle = _objectSpread({}, table.props.bodyStyle);
-
- var innerBodyStyle = {};
-
- if (scroll.x || fixed) {
- bodyStyle.overflowX = bodyStyle.overflowX || 'scroll'; // Fix weird webkit render bug
- // https://github.com/ant-design/ant-design/issues/7783
-
- bodyStyle.WebkitTransform = 'translate3d (0, 0, 0)';
- }
-
- if (scroll.y) {
- // maxHeight will make fixed-Table scrolling not working
- // so we only set maxHeight to body-Table here
- if (fixed) {
- innerBodyStyle.maxHeight = bodyStyle.maxHeight || scroll.y;
- innerBodyStyle.overflowY = bodyStyle.overflowY || 'scroll';
- } else {
- bodyStyle.maxHeight = bodyStyle.maxHeight || scroll.y;
- }
-
- bodyStyle.overflowY = bodyStyle.overflowY || 'scroll';
- useFixedHeader = true; // Add negative margin bottom for scroll bar overflow bug
-
- var scrollbarWidth = utils_1.measureScrollbar({
- direction: 'vertical'
- });
-
- if (scrollbarWidth > 0 && fixed) {
- bodyStyle.marginBottom = "-".concat(scrollbarWidth, "px");
- bodyStyle.paddingBottom = '0px';
- }
- }
-
- var baseTable = React.createElement(BaseTable_1.default, {
- tableClassName: tableClassName,
- hasHead: !useFixedHeader,
- hasBody: true,
- fixed: fixed,
- columns: columns,
- expander: expander,
- getRowKey: getRowKey,
- isAnyColumnsFixed: isAnyColumnsFixed
- });
-
- if (fixed && columns.length) {
- var refName;
-
- if (columns[0].fixed === 'left' || columns[0].fixed === true) {
- refName = 'fixedColumnsBodyLeft';
- } else if (columns[0].fixed === 'right') {
- refName = 'fixedColumnsBodyRight';
- }
-
- delete bodyStyle.overflowX;
- delete bodyStyle.overflowY;
- return React.createElement("div", {
- key: "bodyTable",
- className: "".concat(prefixCls, "-body-outer"),
- style: _objectSpread({}, bodyStyle)
- }, React.createElement("div", {
- className: "".concat(prefixCls, "-body-inner"),
- style: innerBodyStyle,
- ref: saveRef(refName),
- onWheel: handleWheel,
- onScroll: handleBodyScroll
- }, baseTable));
- } // Should provides `tabIndex` if use scroll to enable keyboard scroll
-
-
- var useTabIndex = scroll && (scroll.x || scroll.y);
- return React.createElement("div", {
- tabIndex: useTabIndex ? -1 : undefined,
- key: "bodyTable",
- className: "".concat(prefixCls, "-body"),
- style: bodyStyle,
- ref: saveRef('bodyTable'),
- onWheel: handleWheel,
- onScroll: handleBodyScroll
- }, baseTable);
- }
-
- exports.default = BodyTable;
- BodyTable.contextTypes = {
- table: PropTypes.any
- };
-
- /***/ }),
-
- /***/ 1296:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
-
- function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
-
- function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
-
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
-
- function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _nonIterableSpread(); }
-
- function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance"); }
-
- function _iterableToArray(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); }
-
- function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } }
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
-
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
-
- 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 _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
-
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
-
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
-
- var __importStar = this && this.__importStar || function (mod) {
- if (mod && mod.__esModule) return mod;
- var result = {};
- if (mod != null) for (var k in mod) {
- if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
- }
- result["default"] = mod;
- return result;
- };
-
- var __importDefault = this && this.__importDefault || function (mod) {
- return mod && mod.__esModule ? mod : {
- "default": mod
- };
- };
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
-
- var React = __importStar(__webpack_require__(0));
-
- var mini_store_1 = __webpack_require__(90);
-
- var react_lifecycles_compat_1 = __webpack_require__(7);
-
- var shallowequal_1 = __importDefault(__webpack_require__(59));
-
- var TableRow_1 = __importDefault(__webpack_require__(1104));
-
- var utils_1 = __webpack_require__(895);
-
- var ExpandableTable =
- /*#__PURE__*/
- function (_React$Component) {
- _inherits(ExpandableTable, _React$Component);
-
- function ExpandableTable(props) {
- var _this;
-
- _classCallCheck(this, ExpandableTable);
-
- _this = _possibleConstructorReturn(this, _getPrototypeOf(ExpandableTable).call(this, props));
-
- _this.handleExpandChange = function (expanded, record, event, rowKey) {
- var destroy = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : false;
-
- if (event) {
- event.stopPropagation();
- }
-
- var _this$props = _this.props,
- onExpandedRowsChange = _this$props.onExpandedRowsChange,
- onExpand = _this$props.onExpand;
-
- var _this$store$getState = _this.store.getState(),
- expandedRowKeys = _this$store$getState.expandedRowKeys;
-
- if (expanded) {
- // row was expanded
- expandedRowKeys = [].concat(_toConsumableArray(expandedRowKeys), [rowKey]);
- } else {
- // row was collapse
- var expandedRowIndex = expandedRowKeys.indexOf(rowKey);
-
- if (expandedRowIndex !== -1) {
- expandedRowKeys = utils_1.remove(expandedRowKeys, rowKey);
- }
- }
-
- if (!_this.props.expandedRowKeys) {
- _this.store.setState({
- expandedRowKeys: expandedRowKeys
- });
- } // De-dup of repeat call
-
-
- if (!_this.latestExpandedRows || !shallowequal_1.default(_this.latestExpandedRows, expandedRowKeys)) {
- _this.latestExpandedRows = expandedRowKeys;
- onExpandedRowsChange(expandedRowKeys);
- }
-
- if (!destroy) {
- onExpand(expanded, record);
- }
- };
-
- _this.renderExpandIndentCell = function (rows, fixed) {
- var _this$props2 = _this.props,
- prefixCls = _this$props2.prefixCls,
- expandIconAsCell = _this$props2.expandIconAsCell;
-
- if (!expandIconAsCell || fixed === 'right' || !rows.length) {
- return;
- }
-
- var iconColumn = {
- key: 'rc-table-expand-icon-cell',
- className: "".concat(prefixCls, "-expand-icon-th"),
- title: '',
- rowSpan: rows.length
- };
- rows[0].unshift(_objectSpread({}, iconColumn, {
- column: iconColumn
- }));
- };
-
- _this.renderRows = function (renderRows, rows, record, index, indent, fixed, parentKey, ancestorKeys) {
- var _this$props3 = _this.props,
- expandedRowClassName = _this$props3.expandedRowClassName,
- expandedRowRender = _this$props3.expandedRowRender,
- childrenColumnName = _this$props3.childrenColumnName;
- var childrenData = record[childrenColumnName];
- var nextAncestorKeys = [].concat(_toConsumableArray(ancestorKeys), [parentKey]);
- var nextIndent = indent + 1;
-
- if (expandedRowRender) {
- rows.push(_this.renderExpandedRow(record, index, expandedRowRender, expandedRowClassName(record, index, indent), nextAncestorKeys, nextIndent, fixed));
- }
-
- if (childrenData) {
- rows.push.apply(rows, _toConsumableArray(renderRows(childrenData, nextIndent, nextAncestorKeys)));
- }
- };
-
- var data = props.data,
- childrenColumnName = props.childrenColumnName,
- defaultExpandAllRows = props.defaultExpandAllRows,
- expandedRowKeys = props.expandedRowKeys,
- defaultExpandedRowKeys = props.defaultExpandedRowKeys,
- getRowKey = props.getRowKey;
- var finalExpandedRowKeys = [];
-
- var rows = _toConsumableArray(data);
-
- if (defaultExpandAllRows) {
- for (var i = 0; i < rows.length; i += 1) {
- var row = rows[i];
- finalExpandedRowKeys.push(getRowKey(row, i));
- rows = rows.concat(row[childrenColumnName] || []);
- }
- } else {
- finalExpandedRowKeys = expandedRowKeys || defaultExpandedRowKeys;
- }
-
- _this.columnManager = props.columnManager;
- _this.store = props.store;
-
- _this.store.setState({
- expandedRowsHeight: {},
- expandedRowKeys: finalExpandedRowKeys
- });
-
- return _this;
- }
-
- _createClass(ExpandableTable, [{
- key: "componentDidMount",
- value: function componentDidMount() {
- this.handleUpdated();
- }
- }, {
- key: "componentDidUpdate",
- value: function componentDidUpdate() {
- if ('expandedRowKeys' in this.props) {
- this.store.setState({
- expandedRowKeys: this.props.expandedRowKeys
- });
- }
-
- this.handleUpdated();
- }
- }, {
- key: "handleUpdated",
- value: function handleUpdated() {
- /**
- * We should record latest expanded rows to avoid
- * multiple rows remove cause `onExpandedRowsChange` trigger many times
- */
- this.latestExpandedRows = null;
- }
- }, {
- key: "renderExpandedRow",
- value: function renderExpandedRow(record, index, _render, className, ancestorKeys, indent, fixed) {
- var _this2 = this;
-
- var _this$props4 = this.props,
- prefixCls = _this$props4.prefixCls,
- expandIconAsCell = _this$props4.expandIconAsCell,
- indentSize = _this$props4.indentSize;
- var parentKey = ancestorKeys[ancestorKeys.length - 1];
- var rowKey = "".concat(parentKey, "-extra-row");
- var components = {
- body: {
- row: 'tr',
- cell: 'td'
- }
- };
- var colCount;
-
- if (fixed === 'left') {
- colCount = this.columnManager.leftLeafColumns().length;
- } else if (fixed === 'right') {
- colCount = this.columnManager.rightLeafColumns().length;
- } else {
- colCount = this.columnManager.leafColumns().length;
- }
-
- var columns = [{
- key: 'extra-row',
- render: function render() {
- var _this2$store$getState = _this2.store.getState(),
- _this2$store$getState2 = _this2$store$getState.expandedRowKeys,
- expandedRowKeys = _this2$store$getState2 === void 0 ? [] : _this2$store$getState2;
-
- var expanded = expandedRowKeys.includes(parentKey);
- return {
- props: {
- colSpan: colCount
- },
- children: fixed !== 'right' ? _render(record, index, indent, expanded) : ' '
- };
- }
- }];
-
- if (expandIconAsCell && fixed !== 'right') {
- columns.unshift({
- key: 'expand-icon-placeholder',
- render: function render() {
- return null;
- }
- });
- }
-
- return React.createElement(TableRow_1.default, {
- key: rowKey,
- columns: columns,
- className: className,
- rowKey: rowKey,
- ancestorKeys: ancestorKeys,
- prefixCls: "".concat(prefixCls, "-expanded-row"),
- indentSize: indentSize,
- indent: indent,
- fixed: fixed,
- components: components,
- expandedRow: true
- });
- }
- }, {
- key: "render",
- value: function render() {
- var _this$props5 = this.props,
- data = _this$props5.data,
- childrenColumnName = _this$props5.childrenColumnName,
- children = _this$props5.children;
- var needIndentSpaced = data.some(function (record) {
- return record[childrenColumnName];
- });
- return children({
- props: this.props,
- needIndentSpaced: needIndentSpaced,
- renderRows: this.renderRows,
- handleExpandChange: this.handleExpandChange,
- renderExpandIndentCell: this.renderExpandIndentCell
- });
- }
- }]);
-
- return ExpandableTable;
- }(React.Component);
-
- ExpandableTable.defaultProps = {
- expandIconAsCell: false,
- expandedRowClassName: function expandedRowClassName() {
- return '';
- },
- expandIconColumnIndex: 0,
- defaultExpandAllRows: false,
- defaultExpandedRowKeys: [],
- childrenColumnName: 'children',
- indentSize: 15,
- onExpand: function onExpand() {},
- onExpandedRowsChange: function onExpandedRowsChange() {}
- };
- react_lifecycles_compat_1.polyfill(ExpandableTable);
- exports.default = mini_store_1.connect()(ExpandableTable);
-
- /***/ }),
-
- /***/ 1297:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports["default"] = void 0;
-
- var React = _interopRequireWildcard(__webpack_require__(0));
-
- var ReactDOM = _interopRequireWildcard(__webpack_require__(4));
-
- var _reactLifecyclesCompat = __webpack_require__(7);
-
- var _rcMenu = _interopRequireWildcard(__webpack_require__(174));
-
- var _domClosest = _interopRequireDefault(__webpack_require__(1298));
-
- var _classnames = _interopRequireDefault(__webpack_require__(3));
-
- var _shallowequal = _interopRequireDefault(__webpack_require__(59));
-
- var _dropdown = _interopRequireDefault(__webpack_require__(966));
-
- var _icon = _interopRequireDefault(__webpack_require__(26));
-
- var _checkbox = _interopRequireDefault(__webpack_require__(305));
-
- var _radio = _interopRequireDefault(__webpack_require__(176));
-
- var _FilterDropdownMenuWrapper = _interopRequireDefault(__webpack_require__(1300));
-
- var _util = __webpack_require__(1107);
-
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
-
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
-
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
-
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
-
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
-
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
-
- function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
-
- function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
-
- function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
-
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
-
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
-
- function stopPropagation(e) {
- e.stopPropagation();
-
- if (e.nativeEvent.stopImmediatePropagation) {
- e.nativeEvent.stopImmediatePropagation();
- }
- }
-
- var FilterMenu =
- /*#__PURE__*/
- function (_React$Component) {
- _inherits(FilterMenu, _React$Component);
-
- function FilterMenu(props) {
- var _this;
-
- _classCallCheck(this, FilterMenu);
-
- _this = _possibleConstructorReturn(this, _getPrototypeOf(FilterMenu).call(this, props));
-
- _this.setNeverShown = function (column) {
- var rootNode = ReactDOM.findDOMNode(_assertThisInitialized(_this));
- var filterBelongToScrollBody = !!(0, _domClosest["default"])(rootNode, ".ant-table-scroll");
-
- if (filterBelongToScrollBody) {
- // When fixed column have filters, there will be two dropdown menus
- // Filter dropdown menu inside scroll body should never be shown
- // To fix https://github.com/ant-design/ant-design/issues/5010 and
- // https://github.com/ant-design/ant-design/issues/7909
- _this.neverShown = !!column.fixed;
- }
- };
-
- _this.setSelectedKeys = function (_ref) {
- var selectedKeys = _ref.selectedKeys;
-
- _this.setState({
- selectedKeys: selectedKeys
- });
- };
-
- _this.handleClearFilters = function () {
- _this.setState({
- selectedKeys: []
- }, _this.handleConfirm);
- };
-
- _this.handleConfirm = function () {
- _this.setVisible(false); // Call `setSelectedKeys` & `confirm` in the same time will make filter data not up to date
- // https://github.com/ant-design/ant-design/issues/12284
-
-
- _this.setState({}, _this.confirmFilter);
- };
-
- _this.onVisibleChange = function (visible) {
- _this.setVisible(visible);
-
- var column = _this.props.column; // https://github.com/ant-design/ant-design/issues/17833
-
- if (!visible && !(column.filterDropdown instanceof Function)) {
- _this.confirmFilter();
- }
- };
-
- _this.handleMenuItemClick = function (info) {
- var selectedKeys = _this.state.selectedKeys;
-
- if (!info.keyPath || info.keyPath.length <= 1) {
- return;
- }
-
- var keyPathOfSelectedItem = _this.state.keyPathOfSelectedItem;
-
- if (selectedKeys && selectedKeys.indexOf(info.key) >= 0) {
- // deselect SubMenu child
- delete keyPathOfSelectedItem[info.key];
- } else {
- // select SubMenu child
- keyPathOfSelectedItem[info.key] = info.keyPath;
- }
-
- _this.setState({
- keyPathOfSelectedItem: keyPathOfSelectedItem
- });
- };
-
- _this.renderFilterIcon = function () {
- var _classNames;
-
- var _this$props = _this.props,
- column = _this$props.column,
- locale = _this$props.locale,
- prefixCls = _this$props.prefixCls,
- selectedKeys = _this$props.selectedKeys;
- var filtered = selectedKeys && selectedKeys.length > 0;
- var filterIcon = column.filterIcon;
-
- if (typeof filterIcon === 'function') {
- filterIcon = filterIcon(filtered);
- }
-
- var dropdownIconClass = (0, _classnames["default"])((_classNames = {}, _defineProperty(_classNames, "".concat(prefixCls, "-selected"), filtered), _defineProperty(_classNames, "".concat(prefixCls, "-open"), _this.getDropdownVisible()), _classNames));
-
- if (!filterIcon) {
- return React.createElement(_icon["default"], {
- title: locale.filterTitle,
- type: "filter",
- theme: "filled",
- className: dropdownIconClass,
- onClick: stopPropagation
- });
- }
-
- if (React.isValidElement(filterIcon)) {
- return React.cloneElement(filterIcon, {
- title: filterIcon.props.title || locale.filterTitle,
- className: (0, _classnames["default"])("".concat(prefixCls, "-icon"), dropdownIconClass, filterIcon.props.className),
- onClick: stopPropagation
- });
- }
-
- return React.createElement("span", {
- className: (0, _classnames["default"])("".concat(prefixCls, "-icon"), dropdownIconClass)
- }, filterIcon);
- };
-
- var visible = 'filterDropdownVisible' in props.column ? props.column.filterDropdownVisible : false;
- _this.state = {
- selectedKeys: props.selectedKeys,
- valueKeys: (0, _util.generateValueMaps)(props.column.filters),
- keyPathOfSelectedItem: {},
- visible: visible,
- prevProps: props
- };
- return _this;
- }
-
- _createClass(FilterMenu, [{
- key: "componentDidMount",
- value: function componentDidMount() {
- var column = this.props.column;
- this.setNeverShown(column);
- }
- }, {
- key: "componentDidUpdate",
- value: function componentDidUpdate() {
- var column = this.props.column;
- this.setNeverShown(column);
- }
- }, {
- key: "getDropdownVisible",
- value: function getDropdownVisible() {
- return this.neverShown ? false : this.state.visible;
- }
- }, {
- key: "setVisible",
- value: function setVisible(visible) {
- var column = this.props.column;
-
- if (!('filterDropdownVisible' in column)) {
- this.setState({
- visible: visible
- });
- }
-
- if (column.onFilterDropdownVisibleChange) {
- column.onFilterDropdownVisibleChange(visible);
- }
- }
- }, {
- key: "hasSubMenu",
- value: function hasSubMenu() {
- var _this$props$column$fi = this.props.column.filters,
- filters = _this$props$column$fi === void 0 ? [] : _this$props$column$fi;
- return filters.some(function (item) {
- return !!(item.children && item.children.length > 0);
- });
- }
- }, {
- key: "confirmFilter",
- value: function confirmFilter() {
- var _this$props2 = this.props,
- column = _this$props2.column,
- propSelectedKeys = _this$props2.selectedKeys,
- confirmFilter = _this$props2.confirmFilter;
- var _this$state = this.state,
- selectedKeys = _this$state.selectedKeys,
- valueKeys = _this$state.valueKeys;
- var filterDropdown = column.filterDropdown;
-
- if (!(0, _shallowequal["default"])(selectedKeys, propSelectedKeys)) {
- confirmFilter(column, filterDropdown ? selectedKeys : selectedKeys.map(function (key) {
- return valueKeys[key];
- }).filter(function (key) {
- return key !== undefined;
- }));
- }
- }
- }, {
- key: "renderMenus",
- value: function renderMenus(items) {
- var _this2 = this;
-
- var _this$props3 = this.props,
- dropdownPrefixCls = _this$props3.dropdownPrefixCls,
- prefixCls = _this$props3.prefixCls;
- return items.map(function (item) {
- if (item.children && item.children.length > 0) {
- var keyPathOfSelectedItem = _this2.state.keyPathOfSelectedItem;
- var containSelected = Object.keys(keyPathOfSelectedItem).some(function (key) {
- return keyPathOfSelectedItem[key].indexOf(item.value) >= 0;
- });
- var subMenuCls = (0, _classnames["default"])("".concat(prefixCls, "-dropdown-submenu"), _defineProperty({}, "".concat(dropdownPrefixCls, "-submenu-contain-selected"), containSelected));
- return React.createElement(_rcMenu.SubMenu, {
- title: item.text,
- popupClassName: subMenuCls,
- key: item.value.toString()
- }, _this2.renderMenus(item.children));
- }
-
- return _this2.renderMenuItem(item);
- });
- }
- }, {
- key: "renderMenuItem",
- value: function renderMenuItem(item) {
- var column = this.props.column;
- var selectedKeys = this.state.selectedKeys;
- var multiple = 'filterMultiple' in column ? column.filterMultiple : true; // We still need trade key as string since Menu render need string
-
- var internalSelectedKeys = (selectedKeys || []).map(function (key) {
- return key.toString();
- });
- var input = multiple ? React.createElement(_checkbox["default"], {
- checked: internalSelectedKeys.indexOf(item.value.toString()) >= 0
- }) : React.createElement(_radio["default"], {
- checked: internalSelectedKeys.indexOf(item.value.toString()) >= 0
- });
- return React.createElement(_rcMenu.Item, {
- key: item.value
- }, input, React.createElement("span", null, item.text));
- }
- }, {
- key: "render",
- value: function render() {
- var _this3 = this;
-
- var originSelectedKeys = this.state.selectedKeys;
- var _this$props4 = this.props,
- column = _this$props4.column,
- locale = _this$props4.locale,
- prefixCls = _this$props4.prefixCls,
- dropdownPrefixCls = _this$props4.dropdownPrefixCls,
- getPopupContainer = _this$props4.getPopupContainer; // default multiple selection in filter dropdown
-
- var multiple = 'filterMultiple' in column ? column.filterMultiple : true;
- var dropdownMenuClass = (0, _classnames["default"])(_defineProperty({}, "".concat(dropdownPrefixCls, "-menu-without-submenu"), !this.hasSubMenu()));
- var filterDropdown = column.filterDropdown;
-
- if (filterDropdown instanceof Function) {
- filterDropdown = filterDropdown({
- prefixCls: "".concat(dropdownPrefixCls, "-custom"),
- setSelectedKeys: function setSelectedKeys(selectedKeys) {
- return _this3.setSelectedKeys({
- selectedKeys: selectedKeys
- });
- },
- selectedKeys: originSelectedKeys,
- confirm: this.handleConfirm,
- clearFilters: this.handleClearFilters,
- filters: column.filters,
- visible: this.getDropdownVisible()
- });
- }
-
- var menus = filterDropdown ? React.createElement(_FilterDropdownMenuWrapper["default"], {
- className: "".concat(prefixCls, "-dropdown")
- }, filterDropdown) : React.createElement(_FilterDropdownMenuWrapper["default"], {
- className: "".concat(prefixCls, "-dropdown")
- }, React.createElement(_rcMenu["default"], {
- multiple: multiple,
- onClick: this.handleMenuItemClick,
- prefixCls: "".concat(dropdownPrefixCls, "-menu"),
- className: dropdownMenuClass,
- onSelect: this.setSelectedKeys,
- onDeselect: this.setSelectedKeys,
- selectedKeys: originSelectedKeys && originSelectedKeys.map(function (val) {
- return val.toString();
- }),
- getPopupContainer: getPopupContainer
- }, this.renderMenus(column.filters)), React.createElement("div", {
- className: "".concat(prefixCls, "-dropdown-btns")
- }, React.createElement("a", {
- className: "".concat(prefixCls, "-dropdown-link confirm"),
- onClick: this.handleConfirm
- }, locale.filterConfirm), React.createElement("a", {
- className: "".concat(prefixCls, "-dropdown-link clear"),
- onClick: this.handleClearFilters
- }, locale.filterReset)));
- return React.createElement(_dropdown["default"], {
- trigger: ['click'],
- placement: "bottomRight",
- overlay: menus,
- visible: this.getDropdownVisible(),
- onVisibleChange: this.onVisibleChange,
- getPopupContainer: getPopupContainer,
- forceRender: true
- }, this.renderFilterIcon());
- }
- }], [{
- key: "getDerivedStateFromProps",
- value: function getDerivedStateFromProps(nextProps, prevState) {
- var column = nextProps.column;
- var prevProps = prevState.prevProps;
- var newState = {
- prevProps: nextProps
- };
- /**
- * if the state is visible the component should ignore updates on selectedKeys prop to avoid
- * that the user selection is lost
- * this happens frequently when a table is connected on some sort of realtime data
- * Fixes https://github.com/ant-design/ant-design/issues/10289 and
- * https://github.com/ant-design/ant-design/issues/10209
- */
-
- if ('selectedKeys' in nextProps && !(0, _shallowequal["default"])(prevProps.selectedKeys, nextProps.selectedKeys)) {
- newState.selectedKeys = nextProps.selectedKeys;
- }
-
- if (!(0, _shallowequal["default"])((prevProps.column || {}).filters, (nextProps.column || {}).filters)) {
- newState.valueKeys = (0, _util.generateValueMaps)(nextProps.column.filters);
- }
-
- if ('filterDropdownVisible' in column) {
- newState.visible = column.filterDropdownVisible;
- }
-
- return newState;
- }
- }]);
-
- return FilterMenu;
- }(React.Component);
-
- FilterMenu.defaultProps = {
- column: {}
- };
- (0, _reactLifecyclesCompat.polyfill)(FilterMenu);
- var _default = FilterMenu;
- exports["default"] = _default;
- //# sourceMappingURL=filterDropdown.js.map
-
-
- /***/ }),
-
- /***/ 1298:
- /***/ (function(module, exports, __webpack_require__) {
-
- /**
- * Module dependencies
- */
-
- var matches = __webpack_require__(1299);
-
- /**
- * @param element {Element}
- * @param selector {String}
- * @param context {Element}
- * @return {Element}
- */
- module.exports = function (element, selector, context) {
- context = context || document;
- // guard against orphans
- element = { parentNode: element };
-
- while ((element = element.parentNode) && element !== context) {
- if (matches(element, selector)) {
- return element;
- }
- }
- };
-
-
- /***/ }),
-
- /***/ 1299:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- /**
- * Determine if a DOM element matches a CSS selector
- *
- * @param {Element} elem
- * @param {String} selector
- * @return {Boolean}
- * @api public
- */
-
- function matches(elem, selector) {
- // Vendor-specific implementations of `Element.prototype.matches()`.
- var proto = window.Element.prototype;
- var nativeMatches = proto.matches ||
- proto.mozMatchesSelector ||
- proto.msMatchesSelector ||
- proto.oMatchesSelector ||
- proto.webkitMatchesSelector;
-
- if (!elem || elem.nodeType !== 1) {
- return false;
- }
-
- var parentElem = elem.parentNode;
-
- // use native 'matches'
- if (nativeMatches) {
- return nativeMatches.call(elem, selector);
- }
-
- // native support for `matches` is missing and a fallback is required
- var nodes = parentElem.querySelectorAll(selector);
- var len = nodes.length;
-
- for (var i = 0; i < len; i++) {
- if (nodes[i] === elem) {
- return true;
- }
- }
-
- return false;
- }
-
- /**
- * Expose `matches`
- */
-
- module.exports = matches;
-
-
- /***/ }),
-
- /***/ 1300:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports["default"] = void 0;
-
- var React = _interopRequireWildcard(__webpack_require__(0));
-
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
-
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
-
- var FilterDropdownMenuWrapper = function FilterDropdownMenuWrapper(props) {
- return React.createElement("div", {
- className: props.className,
- onClick: function onClick(e) {
- return e.stopPropagation();
- }
- }, props.children);
- };
-
- var _default = FilterDropdownMenuWrapper;
- exports["default"] = _default;
- //# sourceMappingURL=FilterDropdownMenuWrapper.js.map
-
-
- /***/ }),
-
- /***/ 1301:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports["default"] = createStore;
-
- function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
-
- function createStore(initialState) {
- var state = initialState;
- var listeners = [];
-
- function setState(partial) {
- state = _extends(_extends({}, state), partial);
-
- for (var i = 0; i < listeners.length; i++) {
- listeners[i]();
- }
- }
-
- function getState() {
- return state;
- }
-
- function subscribe(listener) {
- listeners.push(listener);
- return function unsubscribe() {
- var index = listeners.indexOf(listener);
- listeners.splice(index, 1);
- };
- }
-
- return {
- setState: setState,
- getState: getState,
- subscribe: subscribe
- };
- }
- //# sourceMappingURL=createStore.js.map
-
-
- /***/ }),
-
- /***/ 1302:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports["default"] = void 0;
-
- var React = _interopRequireWildcard(__webpack_require__(0));
-
- var _checkbox = _interopRequireDefault(__webpack_require__(305));
-
- var _radio = _interopRequireDefault(__webpack_require__(176));
-
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
-
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
-
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
-
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
-
- function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
-
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
-
- 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 _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
-
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
-
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
-
- var __rest = void 0 && (void 0).__rest || function (s, e) {
- var t = {};
-
- for (var p in s) {
- if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
- }
-
- if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
- }
- return t;
- };
-
- var SelectionBox =
- /*#__PURE__*/
- function (_React$Component) {
- _inherits(SelectionBox, _React$Component);
-
- function SelectionBox(props) {
- var _this;
-
- _classCallCheck(this, SelectionBox);
-
- _this = _possibleConstructorReturn(this, _getPrototypeOf(SelectionBox).call(this, props));
- _this.state = {
- checked: _this.getCheckState(props)
- };
- return _this;
- }
-
- _createClass(SelectionBox, [{
- key: "componentDidMount",
- value: function componentDidMount() {
- this.subscribe();
- }
- }, {
- key: "componentWillUnmount",
- value: function componentWillUnmount() {
- if (this.unsubscribe) {
- this.unsubscribe();
- }
- } // eslint-disable-next-line class-methods-use-this
-
- }, {
- key: "getCheckState",
- value: function getCheckState(props) {
- var store = props.store,
- defaultSelection = props.defaultSelection,
- rowIndex = props.rowIndex;
- var checked = false;
-
- if (store.getState().selectionDirty) {
- checked = store.getState().selectedRowKeys.indexOf(rowIndex) >= 0;
- } else {
- checked = store.getState().selectedRowKeys.indexOf(rowIndex) >= 0 || defaultSelection.indexOf(rowIndex) >= 0;
- }
-
- return checked;
- }
- }, {
- key: "subscribe",
- value: function subscribe() {
- var _this2 = this;
-
- var store = this.props.store;
- this.unsubscribe = store.subscribe(function () {
- var checked = _this2.getCheckState(_this2.props);
-
- _this2.setState({
- checked: checked
- });
- });
- }
- }, {
- key: "render",
- value: function render() {
- var _a = this.props,
- type = _a.type,
- rowIndex = _a.rowIndex,
- rest = __rest(_a, ["type", "rowIndex"]);
-
- var checked = this.state.checked;
-
- if (type === 'radio') {
- return React.createElement(_radio["default"], _extends({
- checked: checked,
- value: rowIndex
- }, rest));
- }
-
- return React.createElement(_checkbox["default"], _extends({
- checked: checked
- }, rest));
- }
- }]);
-
- return SelectionBox;
- }(React.Component);
-
- exports["default"] = SelectionBox;
- //# sourceMappingURL=SelectionBox.js.map
-
-
- /***/ }),
-
- /***/ 1303:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports["default"] = void 0;
-
- var React = _interopRequireWildcard(__webpack_require__(0));
-
- var _classnames = _interopRequireDefault(__webpack_require__(3));
-
- var _reactLifecyclesCompat = __webpack_require__(7);
-
- var _checkbox = _interopRequireDefault(__webpack_require__(305));
-
- var _dropdown = _interopRequireDefault(__webpack_require__(966));
-
- var _menu = _interopRequireDefault(__webpack_require__(915));
-
- var _icon = _interopRequireDefault(__webpack_require__(26));
-
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
-
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
-
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
-
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
-
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
-
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
-
- 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 _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
-
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
-
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
-
- function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
-
- function checkSelection(_ref) {
- var store = _ref.store,
- getCheckboxPropsByItem = _ref.getCheckboxPropsByItem,
- getRecordKey = _ref.getRecordKey,
- data = _ref.data,
- type = _ref.type,
- byDefaultChecked = _ref.byDefaultChecked;
- return byDefaultChecked ? data[type](function (item, i) {
- return getCheckboxPropsByItem(item, i).defaultChecked;
- }) : data[type](function (item, i) {
- return store.getState().selectedRowKeys.indexOf(getRecordKey(item, i)) >= 0;
- });
- }
-
- function getIndeterminateState(props) {
- var store = props.store,
- data = props.data;
-
- if (!data.length) {
- return false;
- }
-
- var someCheckedNotByDefaultChecked = checkSelection(_extends(_extends({}, props), {
- data: data,
- type: 'some',
- byDefaultChecked: false
- })) && !checkSelection(_extends(_extends({}, props), {
- data: data,
- type: 'every',
- byDefaultChecked: false
- }));
- var someCheckedByDefaultChecked = checkSelection(_extends(_extends({}, props), {
- data: data,
- type: 'some',
- byDefaultChecked: true
- })) && !checkSelection(_extends(_extends({}, props), {
- data: data,
- type: 'every',
- byDefaultChecked: true
- }));
-
- if (store.getState().selectionDirty) {
- return someCheckedNotByDefaultChecked;
- }
-
- return someCheckedNotByDefaultChecked || someCheckedByDefaultChecked;
- }
-
- function getCheckState(props) {
- var store = props.store,
- data = props.data;
-
- if (!data.length) {
- return false;
- }
-
- if (store.getState().selectionDirty) {
- return checkSelection(_extends(_extends({}, props), {
- data: data,
- type: 'every',
- byDefaultChecked: false
- }));
- }
-
- return checkSelection(_extends(_extends({}, props), {
- data: data,
- type: 'every',
- byDefaultChecked: false
- })) || checkSelection(_extends(_extends({}, props), {
- data: data,
- type: 'every',
- byDefaultChecked: true
- }));
- }
-
- var SelectionCheckboxAll =
- /*#__PURE__*/
- function (_React$Component) {
- _inherits(SelectionCheckboxAll, _React$Component);
-
- function SelectionCheckboxAll(props) {
- var _this;
-
- _classCallCheck(this, SelectionCheckboxAll);
-
- _this = _possibleConstructorReturn(this, _getPrototypeOf(SelectionCheckboxAll).call(this, props));
- _this.state = {
- checked: false,
- indeterminate: false
- };
-
- _this.handleSelectAllChange = function (e) {
- var checked = e.target.checked;
-
- _this.props.onSelect(checked ? 'all' : 'removeAll', 0, null);
- };
-
- _this.defaultSelections = props.hideDefaultSelections ? [] : [{
- key: 'all',
- text: props.locale.selectAll
- }, {
- key: 'invert',
- text: props.locale.selectInvert
- }];
- return _this;
- }
-
- _createClass(SelectionCheckboxAll, [{
- key: "componentDidMount",
- value: function componentDidMount() {
- this.subscribe();
- }
- }, {
- key: "componentWillUnmount",
- value: function componentWillUnmount() {
- if (this.unsubscribe) {
- this.unsubscribe();
- }
- }
- }, {
- key: "setCheckState",
- value: function setCheckState(props) {
- var checked = getCheckState(props);
- var indeterminate = getIndeterminateState(props);
- this.setState(function (prevState) {
- var newState = {};
-
- if (indeterminate !== prevState.indeterminate) {
- newState.indeterminate = indeterminate;
- }
-
- if (checked !== prevState.checked) {
- newState.checked = checked;
- }
-
- return newState;
- });
- }
- }, {
- key: "subscribe",
- value: function subscribe() {
- var _this2 = this;
-
- var store = this.props.store;
- this.unsubscribe = store.subscribe(function () {
- _this2.setCheckState(_this2.props);
- });
- }
- }, {
- key: "renderMenus",
- value: function renderMenus(selections) {
- var _this3 = this;
-
- return selections.map(function (selection, index) {
- return React.createElement(_menu["default"].Item, {
- key: selection.key || index
- }, React.createElement("div", {
- onClick: function onClick() {
- _this3.props.onSelect(selection.key, index, selection.onSelect);
- }
- }, selection.text));
- });
- }
- }, {
- key: "render",
- value: function render() {
- var _this$props = this.props,
- disabled = _this$props.disabled,
- prefixCls = _this$props.prefixCls,
- selections = _this$props.selections,
- getPopupContainer = _this$props.getPopupContainer;
- var _this$state = this.state,
- checked = _this$state.checked,
- indeterminate = _this$state.indeterminate;
- var selectionPrefixCls = "".concat(prefixCls, "-selection");
- var customSelections = null;
-
- if (selections) {
- var newSelections = Array.isArray(selections) ? this.defaultSelections.concat(selections) : this.defaultSelections;
- var menu = React.createElement(_menu["default"], {
- className: "".concat(selectionPrefixCls, "-menu"),
- selectedKeys: []
- }, this.renderMenus(newSelections));
- customSelections = newSelections.length > 0 ? React.createElement(_dropdown["default"], {
- overlay: menu,
- getPopupContainer: getPopupContainer
- }, React.createElement("div", {
- className: "".concat(selectionPrefixCls, "-down")
- }, React.createElement(_icon["default"], {
- type: "down"
- }))) : null;
- }
-
- return React.createElement("div", {
- className: selectionPrefixCls
- }, React.createElement(_checkbox["default"], {
- className: (0, _classnames["default"])(_defineProperty({}, "".concat(selectionPrefixCls, "-select-all-custom"), customSelections)),
- checked: checked,
- indeterminate: indeterminate,
- disabled: disabled,
- onChange: this.handleSelectAllChange
- }), customSelections);
- }
- }], [{
- key: "getDerivedStateFromProps",
- value: function getDerivedStateFromProps(props, state) {
- var checked = getCheckState(props);
- var indeterminate = getIndeterminateState(props);
- var newState = {};
-
- if (indeterminate !== state.indeterminate) {
- newState.indeterminate = indeterminate;
- }
-
- if (checked !== state.checked) {
- newState.checked = checked;
- }
-
- return newState;
- }
- }]);
-
- return SelectionCheckboxAll;
- }(React.Component);
-
- (0, _reactLifecyclesCompat.polyfill)(SelectionCheckboxAll);
- var _default = SelectionCheckboxAll;
- exports["default"] = _default;
- //# sourceMappingURL=SelectionCheckboxAll.js.map
-
-
- /***/ }),
-
- /***/ 1304:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports["default"] = void 0;
-
- var React = _interopRequireWildcard(__webpack_require__(0));
-
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
-
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
-
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- 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 _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
-
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
-
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
-
- /* eslint-disable react/prefer-stateless-function */
- var Column =
- /*#__PURE__*/
- function (_React$Component) {
- _inherits(Column, _React$Component);
-
- function Column() {
- _classCallCheck(this, Column);
-
- return _possibleConstructorReturn(this, _getPrototypeOf(Column).apply(this, arguments));
- }
-
- return Column;
- }(React.Component);
-
- exports["default"] = Column;
- //# sourceMappingURL=Column.js.map
-
-
- /***/ }),
-
- /***/ 1305:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports["default"] = void 0;
-
- var React = _interopRequireWildcard(__webpack_require__(0));
-
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
-
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
-
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- 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 _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
-
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
-
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
-
- var ColumnGroup =
- /*#__PURE__*/
- function (_React$Component) {
- _inherits(ColumnGroup, _React$Component);
-
- function ColumnGroup() {
- _classCallCheck(this, ColumnGroup);
-
- return _possibleConstructorReturn(this, _getPrototypeOf(ColumnGroup).apply(this, arguments));
- }
-
- return ColumnGroup;
- }(React.Component);
-
- exports["default"] = ColumnGroup;
- ColumnGroup.__ANT_TABLE_COLUMN_GROUP = true;
- //# sourceMappingURL=ColumnGroup.js.map
-
-
- /***/ }),
-
- /***/ 1306:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports["default"] = createBodyRow;
-
- var React = _interopRequireWildcard(__webpack_require__(0));
-
- var _classnames2 = _interopRequireDefault(__webpack_require__(3));
-
- var _omit = _interopRequireDefault(__webpack_require__(47));
-
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
-
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
-
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
-
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
-
- function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
-
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
-
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
-
- 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 _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
-
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
-
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
-
- function createBodyRow() {
- var Component = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'tr';
-
- var BodyRow =
- /*#__PURE__*/
- function (_React$Component) {
- _inherits(BodyRow, _React$Component);
-
- function BodyRow(props) {
- var _this;
-
- _classCallCheck(this, BodyRow);
-
- _this = _possibleConstructorReturn(this, _getPrototypeOf(BodyRow).call(this, props));
- _this.store = props.store;
-
- var _this$store$getState = _this.store.getState(),
- selectedRowKeys = _this$store$getState.selectedRowKeys;
-
- _this.state = {
- selected: selectedRowKeys.indexOf(props.rowKey) >= 0
- };
- return _this;
- }
-
- _createClass(BodyRow, [{
- key: "componentDidMount",
- value: function componentDidMount() {
- this.subscribe();
- }
- }, {
- key: "componentWillUnmount",
- value: function componentWillUnmount() {
- if (this.unsubscribe) {
- this.unsubscribe();
- }
- }
- }, {
- key: "subscribe",
- value: function subscribe() {
- var _this2 = this;
-
- var _this$props = this.props,
- store = _this$props.store,
- rowKey = _this$props.rowKey;
- this.unsubscribe = store.subscribe(function () {
- var _this2$store$getState = _this2.store.getState(),
- selectedRowKeys = _this2$store$getState.selectedRowKeys;
-
- var selected = selectedRowKeys.indexOf(rowKey) >= 0;
-
- if (selected !== _this2.state.selected) {
- _this2.setState({
- selected: selected
- });
- }
- });
- }
- }, {
- key: "render",
- value: function render() {
- var rowProps = (0, _omit["default"])(this.props, ['prefixCls', 'rowKey', 'store']);
- var className = (0, _classnames2["default"])(this.props.className, _defineProperty({}, "".concat(this.props.prefixCls, "-row-selected"), this.state.selected));
- return React.createElement(Component, _extends(_extends({}, rowProps), {
- className: className
- }), this.props.children);
- }
- }]);
-
- return BodyRow;
- }(React.Component);
-
- return BodyRow;
- }
- //# sourceMappingURL=createBodyRow.js.map
-
-
- /***/ }),
-
- /***/ 1307:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports["default"] = scrollTo;
-
- var _raf = _interopRequireDefault(__webpack_require__(117));
-
- var _getScroll = _interopRequireDefault(__webpack_require__(1308));
-
- var _easings = __webpack_require__(1309);
-
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
-
- function scrollTo(y) {
- var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
- var _options$getContainer = options.getContainer,
- getContainer = _options$getContainer === void 0 ? function () {
- return window;
- } : _options$getContainer,
- callback = options.callback,
- _options$duration = options.duration,
- duration = _options$duration === void 0 ? 450 : _options$duration;
- var container = getContainer();
- var scrollTop = (0, _getScroll["default"])(container, true);
- var startTime = Date.now();
-
- var frameFunc = function frameFunc() {
- var timestamp = Date.now();
- var time = timestamp - startTime;
- var nextScrollTop = (0, _easings.easeInOutCubic)(time > duration ? duration : time, scrollTop, y, duration);
-
- if (container === window) {
- window.scrollTo(window.pageXOffset, nextScrollTop);
- } else {
- container.scrollTop = nextScrollTop;
- }
-
- if (time < duration) {
- (0, _raf["default"])(frameFunc);
- } else if (typeof callback === 'function') {
- callback();
- }
- };
-
- (0, _raf["default"])(frameFunc);
- }
- //# sourceMappingURL=scrollTo.js.map
-
-
- /***/ }),
-
- /***/ 1308:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports["default"] = getScroll;
-
- function getScroll(target, top) {
- if (typeof window === 'undefined') {
- return 0;
- }
-
- var prop = top ? 'pageYOffset' : 'pageXOffset';
- var method = top ? 'scrollTop' : 'scrollLeft';
- var isWindow = target === window;
- var ret = isWindow ? target[prop] : target[method]; // ie6,7,8 standard mode
-
- if (isWindow && typeof ret !== 'number') {
- ret = document.documentElement[method];
- }
-
- return ret;
- }
- //# sourceMappingURL=getScroll.js.map
-
-
- /***/ }),
-
- /***/ 1309:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.easeInOutCubic = easeInOutCubic;
-
- // eslint-disable-next-line import/prefer-default-export
- function easeInOutCubic(t, b, c, d) {
- var cc = c - b;
- t /= d / 2;
-
- if (t < 1) {
- return cc / 2 * t * t * t + b;
- }
-
- return cc / 2 * ((t -= 2) * t * t + 2) + b;
- }
- //# sourceMappingURL=easings.js.map
-
-
- /***/ }),
-
- /***/ 1316:
- /***/ (function(module, exports) {
-
- /**
- * echarts设备环境识别
- *
- * @desc echarts基于Canvas,纯Javascript图表库,提供直观,生动,可交互,可个性化定制的数据统计图表。
- * @author firede[firede@firede.us]
- * @desc thanks zepto.
- */
-
- /* global wx */
- var env = {};
-
- if (typeof wx === 'object' && typeof wx.getSystemInfoSync === 'function') {
- // In Weixin Application
- env = {
- browser: {},
- os: {},
- node: false,
- wxa: true,
- // Weixin Application
- canvasSupported: true,
- svgSupported: false,
- touchEventsSupported: true,
- domSupported: false
- };
- } else if (typeof document === 'undefined' && typeof self !== 'undefined') {
- // In worker
- env = {
- browser: {},
- os: {},
- node: false,
- worker: true,
- canvasSupported: true,
- domSupported: false
- };
- } else if (typeof navigator === 'undefined') {
- // In node
- env = {
- browser: {},
- os: {},
- node: true,
- worker: false,
- // Assume canvas is supported
- canvasSupported: true,
- svgSupported: true,
- domSupported: false
- };
- } else {
- env = detect(navigator.userAgent);
- }
-
- var _default = env; // Zepto.js
- // (c) 2010-2013 Thomas Fuchs
- // Zepto.js may be freely distributed under the MIT license.
-
- function detect(ua) {
- var os = {};
- var browser = {}; // var webkit = ua.match(/Web[kK]it[\/]{0,1}([\d.]+)/);
- // var android = ua.match(/(Android);?[\s\/]+([\d.]+)?/);
- // var ipad = ua.match(/(iPad).*OS\s([\d_]+)/);
- // var ipod = ua.match(/(iPod)(.*OS\s([\d_]+))?/);
- // var iphone = !ipad && ua.match(/(iPhone\sOS)\s([\d_]+)/);
- // var webos = ua.match(/(webOS|hpwOS)[\s\/]([\d.]+)/);
- // var touchpad = webos && ua.match(/TouchPad/);
- // var kindle = ua.match(/Kindle\/([\d.]+)/);
- // var silk = ua.match(/Silk\/([\d._]+)/);
- // var blackberry = ua.match(/(BlackBerry).*Version\/([\d.]+)/);
- // var bb10 = ua.match(/(BB10).*Version\/([\d.]+)/);
- // var rimtabletos = ua.match(/(RIM\sTablet\sOS)\s([\d.]+)/);
- // var playbook = ua.match(/PlayBook/);
- // var chrome = ua.match(/Chrome\/([\d.]+)/) || ua.match(/CriOS\/([\d.]+)/);
-
- var firefox = ua.match(/Firefox\/([\d.]+)/); // var safari = webkit && ua.match(/Mobile\//) && !chrome;
- // var webview = ua.match(/(iPhone|iPod|iPad).*AppleWebKit(?!.*Safari)/) && !chrome;
-
- var ie = ua.match(/MSIE\s([\d.]+)/) // IE 11 Trident/7.0; rv:11.0
- || ua.match(/Trident\/.+?rv:(([\d.]+))/);
- var edge = ua.match(/Edge\/([\d.]+)/); // IE 12 and 12+
-
- var weChat = /micromessenger/i.test(ua); // Todo: clean this up with a better OS/browser seperation:
- // - discern (more) between multiple browsers on android
- // - decide if kindle fire in silk mode is android or not
- // - Firefox on Android doesn't specify the Android version
- // - possibly devide in os, device and browser hashes
- // if (browser.webkit = !!webkit) browser.version = webkit[1];
- // if (android) os.android = true, os.version = android[2];
- // if (iphone && !ipod) os.ios = os.iphone = true, os.version = iphone[2].replace(/_/g, '.');
- // if (ipad) os.ios = os.ipad = true, os.version = ipad[2].replace(/_/g, '.');
- // if (ipod) os.ios = os.ipod = true, os.version = ipod[3] ? ipod[3].replace(/_/g, '.') : null;
- // if (webos) os.webos = true, os.version = webos[2];
- // if (touchpad) os.touchpad = true;
- // if (blackberry) os.blackberry = true, os.version = blackberry[2];
- // if (bb10) os.bb10 = true, os.version = bb10[2];
- // if (rimtabletos) os.rimtabletos = true, os.version = rimtabletos[2];
- // if (playbook) browser.playbook = true;
- // if (kindle) os.kindle = true, os.version = kindle[1];
- // if (silk) browser.silk = true, browser.version = silk[1];
- // if (!silk && os.android && ua.match(/Kindle Fire/)) browser.silk = true;
- // if (chrome) browser.chrome = true, browser.version = chrome[1];
-
- if (firefox) {
- browser.firefox = true;
- browser.version = firefox[1];
- } // if (safari && (ua.match(/Safari/) || !!os.ios)) browser.safari = true;
- // if (webview) browser.webview = true;
-
-
- if (ie) {
- browser.ie = true;
- browser.version = ie[1];
- }
-
- if (edge) {
- browser.edge = true;
- browser.version = edge[1];
- } // It is difficult to detect WeChat in Win Phone precisely, because ua can
- // not be set on win phone. So we do not consider Win Phone.
-
-
- if (weChat) {
- browser.weChat = true;
- } // os.tablet = !!(ipad || playbook || (android && !ua.match(/Mobile/)) ||
- // (firefox && ua.match(/Tablet/)) || (ie && !ua.match(/Phone/) && ua.match(/Touch/)));
- // os.phone = !!(!os.tablet && !os.ipod && (android || iphone || webos ||
- // (chrome && ua.match(/Android/)) || (chrome && ua.match(/CriOS\/([\d.]+)/)) ||
- // (firefox && ua.match(/Mobile/)) || (ie && ua.match(/Touch/))));
-
-
- return {
- browser: browser,
- os: os,
- node: false,
- // 原生canvas支持,改极端点了
- // canvasSupported : !(browser.ie && parseFloat(browser.version) < 9)
- canvasSupported: !!document.createElement('canvas').getContext,
- svgSupported: typeof SVGRect !== 'undefined',
- // works on most browsers
- // IE10/11 does not support touch event, and MS Edge supports them but not by
- // default, so we dont check navigator.maxTouchPoints for them here.
- touchEventsSupported: 'ontouchstart' in window && !browser.ie && !browser.edge,
- // <http://caniuse.com/#search=pointer%20event>.
- pointerEventsSupported: // (1) Firefox supports pointer but not by default, only MS browsers are reliable on pointer
- // events currently. So we dont use that on other browsers unless tested sufficiently.
- // For example, in iOS 13 Mobile Chromium 78, if the touching behavior starts page
- // scroll, the `pointermove` event can not be fired any more. That will break some
- // features like "pan horizontally to move something and pan vertically to page scroll".
- // The horizontal pan probably be interrupted by the casually triggered page scroll.
- // (2) Although IE 10 supports pointer event, it use old style and is different from the
- // standard. So we exclude that. (IE 10 is hardly used on touch device)
- 'onpointerdown' in window && (browser.edge || browser.ie && browser.version >= 11),
- // passiveSupported: detectPassiveSupport()
- domSupported: typeof document !== 'undefined'
- };
- } // See https://github.com/WICG/EventListenerOptions/blob/gh-pages/explainer.md#feature-detection
- // function detectPassiveSupport() {
- // // Test via a getter in the options object to see if the passive property is accessed
- // var supportsPassive = false;
- // try {
- // var opts = Object.defineProperty({}, 'passive', {
- // get: function() {
- // supportsPassive = true;
- // }
- // });
- // window.addEventListener('testPassive', function() {}, opts);
- // } catch (e) {
- // }
- // return supportsPassive;
- // }
-
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1317:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var env = __webpack_require__(1316);
-
- var _model = __webpack_require__(1064);
-
- var makeInner = _model.makeInner;
-
- var _clazz = __webpack_require__(1456);
-
- var enableClassExtend = _clazz.enableClassExtend;
- var enableClassCheck = _clazz.enableClassCheck;
-
- var lineStyleMixin = __webpack_require__(2520);
-
- var areaStyleMixin = __webpack_require__(2521);
-
- var textStyleMixin = __webpack_require__(2522);
-
- var itemStyleMixin = __webpack_require__(2535);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @module echarts/model/Model
- */
- var mixin = zrUtil.mixin;
- var inner = makeInner();
- /**
- * @alias module:echarts/model/Model
- * @constructor
- * @param {Object} [option]
- * @param {module:echarts/model/Model} [parentModel]
- * @param {module:echarts/model/Global} [ecModel]
- */
-
- function Model(option, parentModel, ecModel) {
- /**
- * @type {module:echarts/model/Model}
- * @readOnly
- */
- this.parentModel = parentModel;
- /**
- * @type {module:echarts/model/Global}
- * @readOnly
- */
-
- this.ecModel = ecModel;
- /**
- * @type {Object}
- * @protected
- */
-
- this.option = option; // Simple optimization
- // if (this.init) {
- // if (arguments.length <= 4) {
- // this.init(option, parentModel, ecModel, extraOpt);
- // }
- // else {
- // this.init.apply(this, arguments);
- // }
- // }
- }
-
- Model.prototype = {
- constructor: Model,
-
- /**
- * Model 的初始化函数
- * @param {Object} option
- */
- init: null,
-
- /**
- * 从新的 Option merge
- */
- mergeOption: function (option) {
- zrUtil.merge(this.option, option, true);
- },
-
- /**
- * @param {string|Array.<string>} path
- * @param {boolean} [ignoreParent=false]
- * @return {*}
- */
- get: function (path, ignoreParent) {
- if (path == null) {
- return this.option;
- }
-
- return doGet(this.option, this.parsePath(path), !ignoreParent && getParent(this, path));
- },
-
- /**
- * @param {string} key
- * @param {boolean} [ignoreParent=false]
- * @return {*}
- */
- getShallow: function (key, ignoreParent) {
- var option = this.option;
- var val = option == null ? option : option[key];
- var parentModel = !ignoreParent && getParent(this, key);
-
- if (val == null && parentModel) {
- val = parentModel.getShallow(key);
- }
-
- return val;
- },
-
- /**
- * @param {string|Array.<string>} [path]
- * @param {module:echarts/model/Model} [parentModel]
- * @return {module:echarts/model/Model}
- */
- getModel: function (path, parentModel) {
- var obj = path == null ? this.option : doGet(this.option, path = this.parsePath(path));
- var thisParentModel;
- parentModel = parentModel || (thisParentModel = getParent(this, path)) && thisParentModel.getModel(path);
- return new Model(obj, parentModel, this.ecModel);
- },
-
- /**
- * If model has option
- */
- isEmpty: function () {
- return this.option == null;
- },
- restoreData: function () {},
- // Pending
- clone: function () {
- var Ctor = this.constructor;
- return new Ctor(zrUtil.clone(this.option));
- },
- setReadOnly: function (properties) {// clazzUtil.setReadOnly(this, properties);
- },
- // If path is null/undefined, return null/undefined.
- parsePath: function (path) {
- if (typeof path === 'string') {
- path = path.split('.');
- }
-
- return path;
- },
-
- /**
- * @param {Function} getParentMethod
- * param {Array.<string>|string} path
- * return {module:echarts/model/Model}
- */
- customizeGetParent: function (getParentMethod) {
- inner(this).getParent = getParentMethod;
- },
- isAnimationEnabled: function () {
- if (!env.node) {
- if (this.option.animation != null) {
- return !!this.option.animation;
- } else if (this.parentModel) {
- return this.parentModel.isAnimationEnabled();
- }
- }
- }
- };
-
- function doGet(obj, pathArr, parentModel) {
- for (var i = 0; i < pathArr.length; i++) {
- // Ignore empty
- if (!pathArr[i]) {
- continue;
- } // obj could be number/string/... (like 0)
-
-
- obj = obj && typeof obj === 'object' ? obj[pathArr[i]] : null;
-
- if (obj == null) {
- break;
- }
- }
-
- if (obj == null && parentModel) {
- obj = parentModel.get(pathArr);
- }
-
- return obj;
- } // `path` can be null/undefined
-
-
- function getParent(model, path) {
- var getParentMethod = inner(model).getParent;
- return getParentMethod ? getParentMethod.call(model, path) : model.parentModel;
- } // Enable Model.extend.
-
-
- enableClassExtend(Model);
- enableClassCheck(Model);
- mixin(Model, lineStyleMixin);
- mixin(Model, areaStyleMixin);
- mixin(Model, textStyleMixin);
- mixin(Model, itemStyleMixin);
- var _default = Model;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1321:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var Model = __webpack_require__(1317);
-
- var componentUtil = __webpack_require__(1657);
-
- var _clazz = __webpack_require__(1456);
-
- var enableClassManagement = _clazz.enableClassManagement;
- var parseClassType = _clazz.parseClassType;
-
- var _model = __webpack_require__(1064);
-
- var makeInner = _model.makeInner;
-
- var layout = __webpack_require__(1171);
-
- var boxLayoutMixin = __webpack_require__(2536);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Component model
- *
- * @module echarts/model/Component
- */
- var inner = makeInner();
- /**
- * @alias module:echarts/model/Component
- * @constructor
- * @param {Object} option
- * @param {module:echarts/model/Model} parentModel
- * @param {module:echarts/model/Model} ecModel
- */
-
- var ComponentModel = Model.extend({
- type: 'component',
-
- /**
- * @readOnly
- * @type {string}
- */
- id: '',
-
- /**
- * Because simplified concept is probably better, series.name (or component.name)
- * has been having too many resposibilities:
- * (1) Generating id (which requires name in option should not be modified).
- * (2) As an index to mapping series when merging option or calling API (a name
- * can refer to more then one components, which is convinient is some case).
- * (3) Display.
- * @readOnly
- */
- name: '',
-
- /**
- * @readOnly
- * @type {string}
- */
- mainType: '',
-
- /**
- * @readOnly
- * @type {string}
- */
- subType: '',
-
- /**
- * @readOnly
- * @type {number}
- */
- componentIndex: 0,
-
- /**
- * @type {Object}
- * @protected
- */
- defaultOption: null,
-
- /**
- * @type {module:echarts/model/Global}
- * @readOnly
- */
- ecModel: null,
-
- /**
- * key: componentType
- * value: Component model list, can not be null.
- * @type {Object.<string, Array.<module:echarts/model/Model>>}
- * @readOnly
- */
- dependentModels: [],
-
- /**
- * @type {string}
- * @readOnly
- */
- uid: null,
-
- /**
- * Support merge layout params.
- * Only support 'box' now (left/right/top/bottom/width/height).
- * @type {string|Object} Object can be {ignoreSize: true}
- * @readOnly
- */
- layoutMode: null,
- $constructor: function (option, parentModel, ecModel, extraOpt) {
- Model.call(this, option, parentModel, ecModel, extraOpt);
- this.uid = componentUtil.getUID('ec_cpt_model');
- },
- init: function (option, parentModel, ecModel, extraOpt) {
- this.mergeDefaultAndTheme(option, ecModel);
- },
- mergeDefaultAndTheme: function (option, ecModel) {
- var layoutMode = this.layoutMode;
- var inputPositionParams = layoutMode ? layout.getLayoutParams(option) : {};
- var themeModel = ecModel.getTheme();
- zrUtil.merge(option, themeModel.get(this.mainType));
- zrUtil.merge(option, this.getDefaultOption());
-
- if (layoutMode) {
- layout.mergeLayoutParam(option, inputPositionParams, layoutMode);
- }
- },
- mergeOption: function (option, extraOpt) {
- zrUtil.merge(this.option, option, true);
- var layoutMode = this.layoutMode;
-
- if (layoutMode) {
- layout.mergeLayoutParam(this.option, option, layoutMode);
- }
- },
- // Hooker after init or mergeOption
- optionUpdated: function (newCptOption, isInit) {},
- getDefaultOption: function () {
- var fields = inner(this);
-
- if (!fields.defaultOption) {
- var optList = [];
- var Class = this.constructor;
-
- while (Class) {
- var opt = Class.prototype.defaultOption;
- opt && optList.push(opt);
- Class = Class.superClass;
- }
-
- var defaultOption = {};
-
- for (var i = optList.length - 1; i >= 0; i--) {
- defaultOption = zrUtil.merge(defaultOption, optList[i], true);
- }
-
- fields.defaultOption = defaultOption;
- }
-
- return fields.defaultOption;
- },
- getReferringComponents: function (mainType) {
- return this.ecModel.queryComponents({
- mainType: mainType,
- index: this.get(mainType + 'Index', true),
- id: this.get(mainType + 'Id', true)
- });
- }
- }); // Reset ComponentModel.extend, add preConstruct.
- // clazzUtil.enableClassExtend(
- // ComponentModel,
- // function (option, parentModel, ecModel, extraOpt) {
- // // Set dependentModels, componentIndex, name, id, mainType, subType.
- // zrUtil.extend(this, extraOpt);
- // this.uid = componentUtil.getUID('componentModel');
- // // this.setReadOnly([
- // // 'type', 'id', 'uid', 'name', 'mainType', 'subType',
- // // 'dependentModels', 'componentIndex'
- // // ]);
- // }
- // );
- // Add capability of registerClass, getClass, hasClass, registerSubTypeDefaulter and so on.
-
- enableClassManagement(ComponentModel, {
- registerWhenExtend: true
- });
- componentUtil.enableSubTypeDefaulter(ComponentModel); // Add capability of ComponentModel.topologicalTravel.
-
- componentUtil.enableTopologicalTravel(ComponentModel, getDependencies);
-
- function getDependencies(componentType) {
- var deps = [];
- zrUtil.each(ComponentModel.getClassesByMainType(componentType), function (Clazz) {
- deps = deps.concat(Clazz.prototype.dependencies || []);
- }); // Ensure main type.
-
- deps = zrUtil.map(deps, function (type) {
- return parseClassType(type).main;
- }); // Hack dataset for convenience.
-
- if (componentType !== 'dataset' && zrUtil.indexOf(deps, 'dataset') <= 0) {
- deps.unshift('dataset');
- }
-
- return deps;
- }
-
- zrUtil.mixin(ComponentModel, boxLayoutMixin);
- var _default = ComponentModel;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1322:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var zrUtil = __webpack_require__(864);
-
- var env = __webpack_require__(1316);
-
- var _format = __webpack_require__(1186);
-
- var formatTime = _format.formatTime;
- var encodeHTML = _format.encodeHTML;
- var addCommas = _format.addCommas;
- var getTooltipMarker = _format.getTooltipMarker;
-
- var modelUtil = __webpack_require__(1064);
-
- var ComponentModel = __webpack_require__(1321);
-
- var colorPaletteMixin = __webpack_require__(2279);
-
- var dataFormatMixin = __webpack_require__(1901);
-
- var _layout = __webpack_require__(1171);
-
- var getLayoutParams = _layout.getLayoutParams;
- var mergeLayoutParam = _layout.mergeLayoutParam;
-
- var _task = __webpack_require__(1902);
-
- var createTask = _task.createTask;
-
- var _sourceHelper = __webpack_require__(1457);
-
- var prepareSource = _sourceHelper.prepareSource;
- var getSource = _sourceHelper.getSource;
-
- var _dataProvider = __webpack_require__(1518);
-
- var retrieveRawValue = _dataProvider.retrieveRawValue;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var inner = modelUtil.makeInner();
- var SeriesModel = ComponentModel.extend({
- type: 'series.__base__',
-
- /**
- * @readOnly
- */
- seriesIndex: 0,
- // coodinateSystem will be injected in the echarts/CoordinateSystem
- coordinateSystem: null,
-
- /**
- * @type {Object}
- * @protected
- */
- defaultOption: null,
-
- /**
- * legend visual provider to the legend component
- * @type {Object}
- */
- // PENDING
- legendVisualProvider: null,
-
- /**
- * Access path of color for visual
- */
- visualColorAccessPath: 'itemStyle.color',
-
- /**
- * Access path of borderColor for visual
- */
- visualBorderColorAccessPath: 'itemStyle.borderColor',
-
- /**
- * Support merge layout params.
- * Only support 'box' now (left/right/top/bottom/width/height).
- * @type {string|Object} Object can be {ignoreSize: true}
- * @readOnly
- */
- layoutMode: null,
- init: function (option, parentModel, ecModel, extraOpt) {
- /**
- * @type {number}
- * @readOnly
- */
- this.seriesIndex = this.componentIndex;
- this.dataTask = createTask({
- count: dataTaskCount,
- reset: dataTaskReset
- });
- this.dataTask.context = {
- model: this
- };
- this.mergeDefaultAndTheme(option, ecModel);
- prepareSource(this);
- var data = this.getInitialData(option, ecModel);
- wrapData(data, this);
- this.dataTask.context.data = data;
-
- /**
- * @type {module:echarts/data/List|module:echarts/data/Tree|module:echarts/data/Graph}
- * @private
- */
- inner(this).dataBeforeProcessed = data; // If we reverse the order (make data firstly, and then make
- // dataBeforeProcessed by cloneShallow), cloneShallow will
- // cause data.graph.data !== data when using
- // module:echarts/data/Graph or module:echarts/data/Tree.
- // See module:echarts/data/helper/linkList
- // Theoretically, it is unreasonable to call `seriesModel.getData()` in the model
- // init or merge stage, because the data can be restored. So we do not `restoreData`
- // and `setData` here, which forbids calling `seriesModel.getData()` in this stage.
- // Call `seriesModel.getRawData()` instead.
- // this.restoreData();
-
- autoSeriesName(this);
- },
-
- /**
- * Util for merge default and theme to option
- * @param {Object} option
- * @param {module:echarts/model/Global} ecModel
- */
- mergeDefaultAndTheme: function (option, ecModel) {
- var layoutMode = this.layoutMode;
- var inputPositionParams = layoutMode ? getLayoutParams(option) : {}; // Backward compat: using subType on theme.
- // But if name duplicate between series subType
- // (for example: parallel) add component mainType,
- // add suffix 'Series'.
-
- var themeSubType = this.subType;
-
- if (ComponentModel.hasClass(themeSubType)) {
- themeSubType += 'Series';
- }
-
- zrUtil.merge(option, ecModel.getTheme().get(this.subType));
- zrUtil.merge(option, this.getDefaultOption()); // Default label emphasis `show`
-
- modelUtil.defaultEmphasis(option, 'label', ['show']);
- this.fillDataTextStyle(option.data);
-
- if (layoutMode) {
- mergeLayoutParam(option, inputPositionParams, layoutMode);
- }
- },
- mergeOption: function (newSeriesOption, ecModel) {
- // this.settingTask.dirty();
- newSeriesOption = zrUtil.merge(this.option, newSeriesOption, true);
- this.fillDataTextStyle(newSeriesOption.data);
- var layoutMode = this.layoutMode;
-
- if (layoutMode) {
- mergeLayoutParam(this.option, newSeriesOption, layoutMode);
- }
-
- prepareSource(this);
- var data = this.getInitialData(newSeriesOption, ecModel);
- wrapData(data, this);
- this.dataTask.dirty();
- this.dataTask.context.data = data;
- inner(this).dataBeforeProcessed = data;
- autoSeriesName(this);
- },
- fillDataTextStyle: function (data) {
- // Default data label emphasis `show`
- // FIXME Tree structure data ?
- // FIXME Performance ?
- if (data && !zrUtil.isTypedArray(data)) {
- var props = ['show'];
-
- for (var i = 0; i < data.length; i++) {
- if (data[i] && data[i].label) {
- modelUtil.defaultEmphasis(data[i], 'label', props);
- }
- }
- }
- },
-
- /**
- * Init a data structure from data related option in series
- * Must be overwritten
- */
- getInitialData: function () {},
-
- /**
- * Append data to list
- * @param {Object} params
- * @param {Array|TypedArray} params.data
- */
- appendData: function (params) {
- // FIXME ???
- // (1) If data from dataset, forbidden append.
- // (2) support append data of dataset.
- var data = this.getRawData();
- data.appendData(params.data);
- },
-
- /**
- * Consider some method like `filter`, `map` need make new data,
- * We should make sure that `seriesModel.getData()` get correct
- * data in the stream procedure. So we fetch data from upstream
- * each time `task.perform` called.
- * @param {string} [dataType]
- * @return {module:echarts/data/List}
- */
- getData: function (dataType) {
- var task = getCurrentTask(this);
-
- if (task) {
- var data = task.context.data;
- return dataType == null ? data : data.getLinkedData(dataType);
- } else {
- // When series is not alive (that may happen when click toolbox
- // restore or setOption with not merge mode), series data may
- // be still need to judge animation or something when graphic
- // elements want to know whether fade out.
- return inner(this).data;
- }
- },
-
- /**
- * @param {module:echarts/data/List} data
- */
- setData: function (data) {
- var task = getCurrentTask(this);
-
- if (task) {
- var context = task.context; // Consider case: filter, data sample.
-
- if (context.data !== data && task.modifyOutputEnd) {
- task.setOutputEnd(data.count());
- }
-
- context.outputData = data; // Caution: setData should update context.data,
- // Because getData may be called multiply in a
- // single stage and expect to get the data just
- // set. (For example, AxisProxy, x y both call
- // getData and setDate sequentially).
- // So the context.data should be fetched from
- // upstream each time when a stage starts to be
- // performed.
-
- if (task !== this.dataTask) {
- context.data = data;
- }
- }
-
- inner(this).data = data;
- },
-
- /**
- * @see {module:echarts/data/helper/sourceHelper#getSource}
- * @return {module:echarts/data/Source} source
- */
- getSource: function () {
- return getSource(this);
- },
-
- /**
- * Get data before processed
- * @return {module:echarts/data/List}
- */
- getRawData: function () {
- return inner(this).dataBeforeProcessed;
- },
-
- /**
- * Get base axis if has coordinate system and has axis.
- * By default use coordSys.getBaseAxis();
- * Can be overrided for some chart.
- * @return {type} description
- */
- getBaseAxis: function () {
- var coordSys = this.coordinateSystem;
- return coordSys && coordSys.getBaseAxis && coordSys.getBaseAxis();
- },
- // FIXME
-
- /**
- * Default tooltip formatter
- *
- * @param {number} dataIndex
- * @param {boolean} [multipleSeries=false]
- * @param {number} [dataType]
- * @param {string} [renderMode='html'] valid values: 'html' and 'richText'.
- * 'html' is used for rendering tooltip in extra DOM form, and the result
- * string is used as DOM HTML content.
- * 'richText' is used for rendering tooltip in rich text form, for those where
- * DOM operation is not supported.
- * @return {Object} formatted tooltip with `html` and `markers`
- */
- formatTooltip: function (dataIndex, multipleSeries, dataType, renderMode) {
- var series = this;
- renderMode = renderMode || 'html';
- var newLine = renderMode === 'html' ? '<br/>' : '\n';
- var isRichText = renderMode === 'richText';
- var markers = {};
- var markerId = 0;
-
- function formatArrayValue(value) {
- // ??? TODO refactor these logic.
- // check: category-no-encode-has-axis-data in dataset.html
- var vertially = zrUtil.reduce(value, function (vertially, val, idx) {
- var dimItem = data.getDimensionInfo(idx);
- return vertially |= dimItem && dimItem.tooltip !== false && dimItem.displayName != null;
- }, 0);
- var result = [];
- tooltipDims.length ? zrUtil.each(tooltipDims, function (dim) {
- setEachItem(retrieveRawValue(data, dataIndex, dim), dim);
- }) // By default, all dims is used on tooltip.
- : zrUtil.each(value, setEachItem);
-
- function setEachItem(val, dim) {
- var dimInfo = data.getDimensionInfo(dim); // If `dimInfo.tooltip` is not set, show tooltip.
-
- if (!dimInfo || dimInfo.otherDims.tooltip === false) {
- return;
- }
-
- var dimType = dimInfo.type;
- var markName = 'sub' + series.seriesIndex + 'at' + markerId;
- var dimHead = getTooltipMarker({
- color: color,
- type: 'subItem',
- renderMode: renderMode,
- markerId: markName
- });
- var dimHeadStr = typeof dimHead === 'string' ? dimHead : dimHead.content;
- var valStr = (vertially ? dimHeadStr + encodeHTML(dimInfo.displayName || '-') + ': ' : '') + // FIXME should not format time for raw data?
- encodeHTML(dimType === 'ordinal' ? val + '' : dimType === 'time' ? multipleSeries ? '' : formatTime('yyyy/MM/dd hh:mm:ss', val) : addCommas(val));
- valStr && result.push(valStr);
-
- if (isRichText) {
- markers[markName] = color;
- ++markerId;
- }
- }
-
- var newLine = vertially ? isRichText ? '\n' : '<br/>' : '';
- var content = newLine + result.join(newLine || ', ');
- return {
- renderMode: renderMode,
- content: content,
- style: markers
- };
- }
-
- function formatSingleValue(val) {
- // return encodeHTML(addCommas(val));
- return {
- renderMode: renderMode,
- content: encodeHTML(addCommas(val)),
- style: markers
- };
- }
-
- var data = this.getData();
- var tooltipDims = data.mapDimension('defaultedTooltip', true);
- var tooltipDimLen = tooltipDims.length;
- var value = this.getRawValue(dataIndex);
- var isValueArr = zrUtil.isArray(value);
- var color = data.getItemVisual(dataIndex, 'color');
-
- if (zrUtil.isObject(color) && color.colorStops) {
- color = (color.colorStops[0] || {}).color;
- }
-
- color = color || 'transparent'; // Complicated rule for pretty tooltip.
-
- var formattedValue = tooltipDimLen > 1 || isValueArr && !tooltipDimLen ? formatArrayValue(value) : tooltipDimLen ? formatSingleValue(retrieveRawValue(data, dataIndex, tooltipDims[0])) : formatSingleValue(isValueArr ? value[0] : value);
- var content = formattedValue.content;
- var markName = series.seriesIndex + 'at' + markerId;
- var colorEl = getTooltipMarker({
- color: color,
- type: 'item',
- renderMode: renderMode,
- markerId: markName
- });
- markers[markName] = color;
- ++markerId;
- var name = data.getName(dataIndex);
- var seriesName = this.name;
-
- if (!modelUtil.isNameSpecified(this)) {
- seriesName = '';
- }
-
- seriesName = seriesName ? encodeHTML(seriesName) + (!multipleSeries ? newLine : ': ') : '';
- var colorStr = typeof colorEl === 'string' ? colorEl : colorEl.content;
- var html = !multipleSeries ? seriesName + colorStr + (name ? encodeHTML(name) + ': ' + content : content) : colorStr + seriesName + content;
- return {
- html: html,
- markers: markers
- };
- },
-
- /**
- * @return {boolean}
- */
- isAnimationEnabled: function () {
- if (env.node) {
- return false;
- }
-
- var animationEnabled = this.getShallow('animation');
-
- if (animationEnabled) {
- if (this.getData().count() > this.getShallow('animationThreshold')) {
- animationEnabled = false;
- }
- }
-
- return animationEnabled;
- },
- restoreData: function () {
- this.dataTask.dirty();
- },
- getColorFromPalette: function (name, scope, requestColorNum) {
- var ecModel = this.ecModel; // PENDING
-
- var color = colorPaletteMixin.getColorFromPalette.call(this, name, scope, requestColorNum);
-
- if (!color) {
- color = ecModel.getColorFromPalette(name, scope, requestColorNum);
- }
-
- return color;
- },
-
- /**
- * Use `data.mapDimension(coordDim, true)` instead.
- * @deprecated
- */
- coordDimToDataDim: function (coordDim) {
- return this.getRawData().mapDimension(coordDim, true);
- },
-
- /**
- * Get progressive rendering count each step
- * @return {number}
- */
- getProgressive: function () {
- return this.get('progressive');
- },
-
- /**
- * Get progressive rendering count each step
- * @return {number}
- */
- getProgressiveThreshold: function () {
- return this.get('progressiveThreshold');
- },
-
- /**
- * Get data indices for show tooltip content. See tooltip.
- * @abstract
- * @param {Array.<string>|string} dim
- * @param {Array.<number>} value
- * @param {module:echarts/coord/single/SingleAxis} baseAxis
- * @return {Object} {dataIndices, nestestValue}.
- */
- getAxisTooltipData: null,
-
- /**
- * See tooltip.
- * @abstract
- * @param {number} dataIndex
- * @return {Array.<number>} Point of tooltip. null/undefined can be returned.
- */
- getTooltipPosition: null,
-
- /**
- * @see {module:echarts/stream/Scheduler}
- */
- pipeTask: null,
-
- /**
- * Convinient for override in extended class.
- * @protected
- * @type {Function}
- */
- preventIncremental: null,
-
- /**
- * @public
- * @readOnly
- * @type {Object}
- */
- pipelineContext: null
- });
- zrUtil.mixin(SeriesModel, dataFormatMixin);
- zrUtil.mixin(SeriesModel, colorPaletteMixin);
- /**
- * MUST be called after `prepareSource` called
- * Here we need to make auto series, especially for auto legend. But we
- * do not modify series.name in option to avoid side effects.
- */
-
- function autoSeriesName(seriesModel) {
- // User specified name has higher priority, otherwise it may cause
- // series can not be queried unexpectedly.
- var name = seriesModel.name;
-
- if (!modelUtil.isNameSpecified(seriesModel)) {
- seriesModel.name = getSeriesAutoName(seriesModel) || name;
- }
- }
-
- function getSeriesAutoName(seriesModel) {
- var data = seriesModel.getRawData();
- var dataDims = data.mapDimension('seriesName', true);
- var nameArr = [];
- zrUtil.each(dataDims, function (dataDim) {
- var dimInfo = data.getDimensionInfo(dataDim);
- dimInfo.displayName && nameArr.push(dimInfo.displayName);
- });
- return nameArr.join(' ');
- }
-
- function dataTaskCount(context) {
- return context.model.getRawData().count();
- }
-
- function dataTaskReset(context) {
- var seriesModel = context.model;
- seriesModel.setData(seriesModel.getRawData().cloneShallow());
- return dataTaskProgress;
- }
-
- function dataTaskProgress(param, context) {
- // Avoid repead cloneShallow when data just created in reset.
- if (param.end > context.outputData.count()) {
- context.model.getRawData().cloneShallow(context.outputData);
- }
- } // TODO refactor
-
-
- function wrapData(data, seriesModel) {
- zrUtil.each(data.CHANGABLE_METHODS, function (methodName) {
- data.wrapMethod(methodName, zrUtil.curry(onDataSelfChange, seriesModel));
- });
- }
-
- function onDataSelfChange(seriesModel) {
- var task = getCurrentTask(seriesModel);
-
- if (task) {
- // Consider case: filter, selectRange
- task.setOutputEnd(this.count());
- }
- }
-
- function getCurrentTask(seriesModel) {
- var scheduler = (seriesModel.ecModel || {}).scheduler;
- var pipeline = scheduler && scheduler.getPipeline(seriesModel.uid);
-
- if (pipeline) {
- // When pipline finished, the currrentTask keep the last
- // task (renderTask).
- var task = pipeline.currentTask;
-
- if (task) {
- var agentStubMap = task.agentStubMap;
-
- if (agentStubMap) {
- task = agentStubMap.get(seriesModel.uid);
- }
- }
-
- return task;
- }
- }
-
- var _default = SeriesModel;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1327:
- /***/ (function(module, exports, __webpack_require__) {
-
- // style-loader: Adds some css to the DOM by adding a <style> tag
-
- // load the styles
- var content = __webpack_require__(1349);
- if(typeof content === 'string') content = [[module.i, content, '']];
- // Prepare cssTransformation
- var transform;
-
- var options = {"hmr":false}
- options.transform = transform
- // add the styles to the DOM
- var update = __webpack_require__(300)(content, options);
- if(content.locals) module.exports = content.locals;
-
-
- /***/ }),
-
- /***/ 1346:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_antd_lib_modal_style_css__ = __webpack_require__(27);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_antd_lib_modal_style_css___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_antd_lib_modal_style_css__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_antd_lib_modal__ = __webpack_require__(28);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_antd_lib_modal___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_antd_lib_modal__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_react__ = __webpack_require__(0);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_react__);
- var _createClass=function(){function defineProperties(target,props){for(var i=0;i<props.length;i++){var descriptor=props[i];descriptor.enumerable=descriptor.enumerable||false;descriptor.configurable=true;if("value"in descriptor)descriptor.writable=true;Object.defineProperty(target,descriptor.key,descriptor);}}return function(Constructor,protoProps,staticProps){if(protoProps)defineProperties(Constructor.prototype,protoProps);if(staticProps)defineProperties(Constructor,staticProps);return Constructor;};}();function _classCallCheck(instance,Constructor){if(!(instance instanceof Constructor)){throw new TypeError("Cannot call a class as a function");}}function _possibleConstructorReturn(self,call){if(!self){throw new ReferenceError("this hasn't been initialised - super() hasn't been called");}return call&&(typeof call==="object"||typeof call==="function")?call:self;}function _inherits(subClass,superClass){if(typeof superClass!=="function"&&superClass!==null){throw new TypeError("Super expression must either be null or a function, not "+typeof superClass);}subClass.prototype=Object.create(superClass&&superClass.prototype,{constructor:{value:subClass,enumerable:false,writable:true,configurable:true}});if(superClass)Object.setPrototypeOf?Object.setPrototypeOf(subClass,superClass):subClass.__proto__=superClass;}var DownloadMessageysl=function(_Component){_inherits(DownloadMessageysl,_Component);function DownloadMessageysl(props){_classCallCheck(this,DownloadMessageysl);var _this=_possibleConstructorReturn(this,(DownloadMessageysl.__proto__||Object.getPrototypeOf(DownloadMessageysl)).call(this,props));_this.setDownload=function(){_this.props.modalCancel();window.open('/messages/'+_this.props.user.login+'/message_detail?target_ids=1');};_this.state={funmodalsType:false,istype:false};return _this;}_createClass(DownloadMessageysl,[{key:'render',value:function render(){return __WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_1_antd_lib_modal___default.a,{keyboard:false,title:'\u63D0\u793A',visible:this.props.modalsType===undefined?false:this.props.modalsType,closable:false,footer:null,destroyOnClose:true,centered:true,width:'530px'},__WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement('div',{className:'task-popup-content'},this.props.value===500?__WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement('p',null,__WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement('p',{className:'task-popup-text-center font-16'},'\u56E0\u9644\u4EF6\u8D44\u6599\u8D85\u8FC7500M\uFF0C\u60A8\u53EF\u4EE5\u901A\u8FC7\u68C0\u7D22\u5206\u6279\u4E0B\u8F7D'),__WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement('p',{className:'task-popup-text-center font-16 mt5'},'\u6216\u8005\u901A\u8FC7\u5FAE\u4FE1\u6216\u8005QQ\u8054\u7CFB\u7BA1\u7406\u5458\u8F85\u52A9\u60A8\u6253\u5305\u4E0B\u8F7D')):this.props.value===100?__WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement('p',null,__WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement('p',{className:'task-popup-text-center font-16'},'\u5DF2\u8D85\u51FA\u6587\u4EF6\u5BFC\u51FA\u7684\u4E0A\u9650\u6570\u91CF\uFF08 ',__WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement('span',{className:"color-orange-tip"},'100'),' \uFF09\uFF0C\u5EFA\u8BAE\uFF1A'),__WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement('p',{className:'task-popup-text-center font-16 mt20'},'1.\u901A\u8FC7\u68C0\u7D22\u5206\u6279\u6B21\u4E0B\u8F7D'),__WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement('p',{className:'task-popup-text-center font-16 mt5'},'2.\u8054\u7CFB\u7BA1\u7406\u5458\u8F85\u52A9\u4E0B\u8F7D')):"",__WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement('div',{className:'clearfix mt30 edu-txt-center'},__WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement('a',{className:'task-btn mr30',onClick:this.props.modalCancel},'\u53D6\u6D88'),__WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement('a',{className:'task-btn task-btn-orange',onClick:this.setDownload},'\u7ACB\u5373\u8054\u7CFB'))));}}]);return DownloadMessageysl;}(__WEBPACK_IMPORTED_MODULE_2_react__["Component"]);/* harmony default export */ __webpack_exports__["a"] = (DownloadMessageysl);
-
- /***/ }),
-
- /***/ 1349:
- /***/ (function(module, exports, __webpack_require__) {
-
- exports = module.exports = __webpack_require__(299)(true);
- // imports
-
-
- // module
- exports.push([module.i, ".courseForm .formBlock{padding:20px 30px 30px;border-bottom:1px solid #ededed;margin-bottom:0;background:#fff}.courseForm .noBorder{border-bottom:none}.edu-class-container{width:1200px;margin:10px auto 20px}.courseForm .ant-form-item-label{margin-left:-10px}.courseForm .notRequired .ant-form-item-label{margin-left:0}.courseForm .ant-input:focus{border-color:#40a9ff}@media (min-width:576px){.courseForm .ant-col-sm-24{text-align:left}}.ant-form-item-control-wrapper.ant-col-xs-24.ant-col-sm-24{margin-left:2px}.errorInline.ant-form-item{margin-bottom:8px}.errorInline .ant-form-item-children input{width:auto}.errorInline .ant-form-explain{display:inline;margin-left:10px}.setemailposition{position:absolute;right:40px;top:10px}", "", {"version":3,"sources":["/Users/jasder/work/trustie3.0/educoder/public/react/src/modules/courses/common/formCommon.css"],"names":[],"mappings":"AAAA,uBACE,uBAA6B,AAC7B,gCAAiC,AACjC,gBAAmB,AACnB,eAAiB,CAClB,AACD,sBACE,kBAAoB,CACrB,AAGD,qBACE,aAAc,AACd,qBAAuB,CACxB,AAGD,iCACE,iBAAmB,CACpB,AACD,8CACE,aAAiB,CAClB,AAID,6BACE,oBAAsB,CACvB,AACD,yBACE,2BACE,eAAiB,CAClB,CACF,AACD,2DACE,eAAiB,CAClB,AAID,2BACE,iBAAmB,CACpB,AAED,2CACE,UAAW,CACZ,AACD,+BACE,eAAgB,AAChB,gBAAkB,CACnB,AAGD,kBACI,kBAAmB,AACnB,WAAY,AACZ,QAAU,CACb","file":"formCommon.css","sourcesContent":[".courseForm .formBlock {\r\n padding: 20px 30px 30px 30px;\r\n border-bottom: 1px solid #EDEDED;\r\n margin-bottom: 0px;\r\n background: #fff;\r\n}\r\n.courseForm .noBorder {\r\n border-bottom: none;\r\n}\r\n\r\n/* common */\r\n.edu-class-container {\r\n width: 1200px;\r\n margin: 10px auto 20px;\r\n}\r\n\r\n/* 小红点 */\r\n.courseForm .ant-form-item-label {\r\n margin-left: -10px;\r\n}\r\n.courseForm .notRequired .ant-form-item-label {\r\n margin-left: 0px;\r\n}\r\n\r\n\r\n/* 不知道被哪个样式影响,这里需要重置 */\r\n.courseForm .ant-input:focus {\r\n border-color: #40a9ff;\r\n}\r\n@media (min-width: 576px) {\r\n .courseForm .ant-col-sm-24 {\r\n text-align: left;\r\n }\r\n}\r\n.ant-form-item-control-wrapper.ant-col-xs-24.ant-col-sm-24 {\r\n margin-left: 2px;\r\n}\r\n\r\n\r\n/* errorInline ----------- */\r\n.errorInline.ant-form-item {\r\n margin-bottom: 8px;\r\n}\r\n/* 这里需要指定form组件的宽度 style={{ width: 270 }} */ \r\n.errorInline .ant-form-item-children input {\r\n width: auto\r\n}\r\n.errorInline .ant-form-explain {\r\n display: inline;\r\n margin-left: 10px;\r\n}\r\n/* errorInline ----------- */\r\n\r\n.setemailposition{\r\n position: absolute;\r\n right: 40px;\r\n top: 10px;\r\n}"],"sourceRoot":""}]);
-
- // exports
-
-
- /***/ }),
-
- /***/ 1350:
- /***/ (function(module, exports) {
-
- /**
- * 3x2矩阵操作类
- * @exports zrender/tool/matrix
- */
-
- /* global Float32Array */
- var ArrayCtor = typeof Float32Array === 'undefined' ? Array : Float32Array;
- /**
- * Create a identity matrix.
- * @return {Float32Array|Array.<number>}
- */
-
- function create() {
- var out = new ArrayCtor(6);
- identity(out);
- return out;
- }
- /**
- * 设置矩阵为单位矩阵
- * @param {Float32Array|Array.<number>} out
- */
-
-
- function identity(out) {
- out[0] = 1;
- out[1] = 0;
- out[2] = 0;
- out[3] = 1;
- out[4] = 0;
- out[5] = 0;
- return out;
- }
- /**
- * 复制矩阵
- * @param {Float32Array|Array.<number>} out
- * @param {Float32Array|Array.<number>} m
- */
-
-
- function copy(out, m) {
- out[0] = m[0];
- out[1] = m[1];
- out[2] = m[2];
- out[3] = m[3];
- out[4] = m[4];
- out[5] = m[5];
- return out;
- }
- /**
- * 矩阵相乘
- * @param {Float32Array|Array.<number>} out
- * @param {Float32Array|Array.<number>} m1
- * @param {Float32Array|Array.<number>} m2
- */
-
-
- function mul(out, m1, m2) {
- // Consider matrix.mul(m, m2, m);
- // where out is the same as m2.
- // So use temp variable to escape error.
- var out0 = m1[0] * m2[0] + m1[2] * m2[1];
- var out1 = m1[1] * m2[0] + m1[3] * m2[1];
- var out2 = m1[0] * m2[2] + m1[2] * m2[3];
- var out3 = m1[1] * m2[2] + m1[3] * m2[3];
- var out4 = m1[0] * m2[4] + m1[2] * m2[5] + m1[4];
- var out5 = m1[1] * m2[4] + m1[3] * m2[5] + m1[5];
- out[0] = out0;
- out[1] = out1;
- out[2] = out2;
- out[3] = out3;
- out[4] = out4;
- out[5] = out5;
- return out;
- }
- /**
- * 平移变换
- * @param {Float32Array|Array.<number>} out
- * @param {Float32Array|Array.<number>} a
- * @param {Float32Array|Array.<number>} v
- */
-
-
- function translate(out, a, v) {
- out[0] = a[0];
- out[1] = a[1];
- out[2] = a[2];
- out[3] = a[3];
- out[4] = a[4] + v[0];
- out[5] = a[5] + v[1];
- return out;
- }
- /**
- * 旋转变换
- * @param {Float32Array|Array.<number>} out
- * @param {Float32Array|Array.<number>} a
- * @param {number} rad
- */
-
-
- function rotate(out, a, rad) {
- var aa = a[0];
- var ac = a[2];
- var atx = a[4];
- var ab = a[1];
- var ad = a[3];
- var aty = a[5];
- var st = Math.sin(rad);
- var ct = Math.cos(rad);
- out[0] = aa * ct + ab * st;
- out[1] = -aa * st + ab * ct;
- out[2] = ac * ct + ad * st;
- out[3] = -ac * st + ct * ad;
- out[4] = ct * atx + st * aty;
- out[5] = ct * aty - st * atx;
- return out;
- }
- /**
- * 缩放变换
- * @param {Float32Array|Array.<number>} out
- * @param {Float32Array|Array.<number>} a
- * @param {Float32Array|Array.<number>} v
- */
-
-
- function scale(out, a, v) {
- var vx = v[0];
- var vy = v[1];
- out[0] = a[0] * vx;
- out[1] = a[1] * vy;
- out[2] = a[2] * vx;
- out[3] = a[3] * vy;
- out[4] = a[4] * vx;
- out[5] = a[5] * vy;
- return out;
- }
- /**
- * 求逆矩阵
- * @param {Float32Array|Array.<number>} out
- * @param {Float32Array|Array.<number>} a
- */
-
-
- function invert(out, a) {
- var aa = a[0];
- var ac = a[2];
- var atx = a[4];
- var ab = a[1];
- var ad = a[3];
- var aty = a[5];
- var det = aa * ad - ab * ac;
-
- if (!det) {
- return null;
- }
-
- det = 1.0 / det;
- out[0] = ad * det;
- out[1] = -ab * det;
- out[2] = -ac * det;
- out[3] = aa * det;
- out[4] = (ac * aty - ad * atx) * det;
- out[5] = (ab * atx - aa * aty) * det;
- return out;
- }
- /**
- * Clone a new matrix.
- * @param {Float32Array|Array.<number>} a
- */
-
-
- function clone(a) {
- var b = create();
- copy(b, a);
- return b;
- }
-
- exports.create = create;
- exports.identity = identity;
- exports.copy = copy;
- exports.mul = mul;
- exports.translate = translate;
- exports.rotate = rotate;
- exports.scale = scale;
- exports.invert = invert;
- exports.clone = clone;
-
- /***/ }),
-
- /***/ 1402:
- /***/ (function(module, exports, __webpack_require__) {
-
- var BoundingRect = __webpack_require__(1185);
-
- var imageHelper = __webpack_require__(1896);
-
- var _util = __webpack_require__(864);
-
- var getContext = _util.getContext;
- var extend = _util.extend;
- var retrieve2 = _util.retrieve2;
- var retrieve3 = _util.retrieve3;
- var trim = _util.trim;
- var textWidthCache = {};
- var textWidthCacheCounter = 0;
- var TEXT_CACHE_MAX = 5000;
- var STYLE_REG = /\{([a-zA-Z0-9_]+)\|([^}]*)\}/g;
- var DEFAULT_FONT = '12px sans-serif'; // Avoid assign to an exported variable, for transforming to cjs.
-
- var methods = {};
-
- function $override(name, fn) {
- methods[name] = fn;
- }
- /**
- * @public
- * @param {string} text
- * @param {string} font
- * @return {number} width
- */
-
-
- function getWidth(text, font) {
- font = font || DEFAULT_FONT;
- var key = text + ':' + font;
-
- if (textWidthCache[key]) {
- return textWidthCache[key];
- }
-
- var textLines = (text + '').split('\n');
- var width = 0;
-
- for (var i = 0, l = textLines.length; i < l; i++) {
- // textContain.measureText may be overrided in SVG or VML
- width = Math.max(measureText(textLines[i], font).width, width);
- }
-
- if (textWidthCacheCounter > TEXT_CACHE_MAX) {
- textWidthCacheCounter = 0;
- textWidthCache = {};
- }
-
- textWidthCacheCounter++;
- textWidthCache[key] = width;
- return width;
- }
- /**
- * @public
- * @param {string} text
- * @param {string} font
- * @param {string} [textAlign='left']
- * @param {string} [textVerticalAlign='top']
- * @param {Array.<number>} [textPadding]
- * @param {Object} [rich]
- * @param {Object} [truncate]
- * @return {Object} {x, y, width, height, lineHeight}
- */
-
-
- function getBoundingRect(text, font, textAlign, textVerticalAlign, textPadding, textLineHeight, rich, truncate) {
- return rich ? getRichTextRect(text, font, textAlign, textVerticalAlign, textPadding, textLineHeight, rich, truncate) : getPlainTextRect(text, font, textAlign, textVerticalAlign, textPadding, textLineHeight, truncate);
- }
-
- function getPlainTextRect(text, font, textAlign, textVerticalAlign, textPadding, textLineHeight, truncate) {
- var contentBlock = parsePlainText(text, font, textPadding, textLineHeight, truncate);
- var outerWidth = getWidth(text, font);
-
- if (textPadding) {
- outerWidth += textPadding[1] + textPadding[3];
- }
-
- var outerHeight = contentBlock.outerHeight;
- var x = adjustTextX(0, outerWidth, textAlign);
- var y = adjustTextY(0, outerHeight, textVerticalAlign);
- var rect = new BoundingRect(x, y, outerWidth, outerHeight);
- rect.lineHeight = contentBlock.lineHeight;
- return rect;
- }
-
- function getRichTextRect(text, font, textAlign, textVerticalAlign, textPadding, textLineHeight, rich, truncate) {
- var contentBlock = parseRichText(text, {
- rich: rich,
- truncate: truncate,
- font: font,
- textAlign: textAlign,
- textPadding: textPadding,
- textLineHeight: textLineHeight
- });
- var outerWidth = contentBlock.outerWidth;
- var outerHeight = contentBlock.outerHeight;
- var x = adjustTextX(0, outerWidth, textAlign);
- var y = adjustTextY(0, outerHeight, textVerticalAlign);
- return new BoundingRect(x, y, outerWidth, outerHeight);
- }
- /**
- * @public
- * @param {number} x
- * @param {number} width
- * @param {string} [textAlign='left']
- * @return {number} Adjusted x.
- */
-
-
- function adjustTextX(x, width, textAlign) {
- // FIXME Right to left language
- if (textAlign === 'right') {
- x -= width;
- } else if (textAlign === 'center') {
- x -= width / 2;
- }
-
- return x;
- }
- /**
- * @public
- * @param {number} y
- * @param {number} height
- * @param {string} [textVerticalAlign='top']
- * @return {number} Adjusted y.
- */
-
-
- function adjustTextY(y, height, textVerticalAlign) {
- if (textVerticalAlign === 'middle') {
- y -= height / 2;
- } else if (textVerticalAlign === 'bottom') {
- y -= height;
- }
-
- return y;
- }
- /**
- * Follow same interface to `Displayable.prototype.calculateTextPosition`.
- * @public
- * @param {Obejct} [out] Prepared out object. If not input, auto created in the method.
- * @param {module:zrender/graphic/Style} style where `textPosition` and `textDistance` are visited.
- * @param {Object} rect {x, y, width, height} Rect of the host elment, according to which the text positioned.
- * @return {Object} The input `out`. Set: {x, y, textAlign, textVerticalAlign}
- */
-
-
- function calculateTextPosition(out, style, rect) {
- var textPosition = style.textPosition;
- var distance = style.textDistance;
- var x = rect.x;
- var y = rect.y;
- distance = distance || 0;
- var height = rect.height;
- var width = rect.width;
- var halfHeight = height / 2;
- var textAlign = 'left';
- var textVerticalAlign = 'top';
-
- switch (textPosition) {
- case 'left':
- x -= distance;
- y += halfHeight;
- textAlign = 'right';
- textVerticalAlign = 'middle';
- break;
-
- case 'right':
- x += distance + width;
- y += halfHeight;
- textVerticalAlign = 'middle';
- break;
-
- case 'top':
- x += width / 2;
- y -= distance;
- textAlign = 'center';
- textVerticalAlign = 'bottom';
- break;
-
- case 'bottom':
- x += width / 2;
- y += height + distance;
- textAlign = 'center';
- break;
-
- case 'inside':
- x += width / 2;
- y += halfHeight;
- textAlign = 'center';
- textVerticalAlign = 'middle';
- break;
-
- case 'insideLeft':
- x += distance;
- y += halfHeight;
- textVerticalAlign = 'middle';
- break;
-
- case 'insideRight':
- x += width - distance;
- y += halfHeight;
- textAlign = 'right';
- textVerticalAlign = 'middle';
- break;
-
- case 'insideTop':
- x += width / 2;
- y += distance;
- textAlign = 'center';
- break;
-
- case 'insideBottom':
- x += width / 2;
- y += height - distance;
- textAlign = 'center';
- textVerticalAlign = 'bottom';
- break;
-
- case 'insideTopLeft':
- x += distance;
- y += distance;
- break;
-
- case 'insideTopRight':
- x += width - distance;
- y += distance;
- textAlign = 'right';
- break;
-
- case 'insideBottomLeft':
- x += distance;
- y += height - distance;
- textVerticalAlign = 'bottom';
- break;
-
- case 'insideBottomRight':
- x += width - distance;
- y += height - distance;
- textAlign = 'right';
- textVerticalAlign = 'bottom';
- break;
- }
-
- out = out || {};
- out.x = x;
- out.y = y;
- out.textAlign = textAlign;
- out.textVerticalAlign = textVerticalAlign;
- return out;
- }
- /**
- * To be removed. But still do not remove in case that some one has imported it.
- * @deprecated
- * @public
- * @param {stirng} textPosition
- * @param {Object} rect {x, y, width, height}
- * @param {number} distance
- * @return {Object} {x, y, textAlign, textVerticalAlign}
- */
-
-
- function adjustTextPositionOnRect(textPosition, rect, distance) {
- var dummyStyle = {
- textPosition: textPosition,
- textDistance: distance
- };
- return calculateTextPosition({}, dummyStyle, rect);
- }
- /**
- * Show ellipsis if overflow.
- *
- * @public
- * @param {string} text
- * @param {string} containerWidth
- * @param {string} font
- * @param {number} [ellipsis='...']
- * @param {Object} [options]
- * @param {number} [options.maxIterations=3]
- * @param {number} [options.minChar=0] If truncate result are less
- * then minChar, ellipsis will not show, which is
- * better for user hint in some cases.
- * @param {number} [options.placeholder=''] When all truncated, use the placeholder.
- * @return {string}
- */
-
-
- function truncateText(text, containerWidth, font, ellipsis, options) {
- if (!containerWidth) {
- return '';
- }
-
- var textLines = (text + '').split('\n');
- options = prepareTruncateOptions(containerWidth, font, ellipsis, options); // FIXME
- // It is not appropriate that every line has '...' when truncate multiple lines.
-
- for (var i = 0, len = textLines.length; i < len; i++) {
- textLines[i] = truncateSingleLine(textLines[i], options);
- }
-
- return textLines.join('\n');
- }
-
- function prepareTruncateOptions(containerWidth, font, ellipsis, options) {
- options = extend({}, options);
- options.font = font;
- var ellipsis = retrieve2(ellipsis, '...');
- options.maxIterations = retrieve2(options.maxIterations, 2);
- var minChar = options.minChar = retrieve2(options.minChar, 0); // FIXME
- // Other languages?
-
- options.cnCharWidth = getWidth('国', font); // FIXME
- // Consider proportional font?
-
- var ascCharWidth = options.ascCharWidth = getWidth('a', font);
- options.placeholder = retrieve2(options.placeholder, ''); // Example 1: minChar: 3, text: 'asdfzxcv', truncate result: 'asdf', but not: 'a...'.
- // Example 2: minChar: 3, text: '维度', truncate result: '维', but not: '...'.
-
- var contentWidth = containerWidth = Math.max(0, containerWidth - 1); // Reserve some gap.
-
- for (var i = 0; i < minChar && contentWidth >= ascCharWidth; i++) {
- contentWidth -= ascCharWidth;
- }
-
- var ellipsisWidth = getWidth(ellipsis, font);
-
- if (ellipsisWidth > contentWidth) {
- ellipsis = '';
- ellipsisWidth = 0;
- }
-
- contentWidth = containerWidth - ellipsisWidth;
- options.ellipsis = ellipsis;
- options.ellipsisWidth = ellipsisWidth;
- options.contentWidth = contentWidth;
- options.containerWidth = containerWidth;
- return options;
- }
-
- function truncateSingleLine(textLine, options) {
- var containerWidth = options.containerWidth;
- var font = options.font;
- var contentWidth = options.contentWidth;
-
- if (!containerWidth) {
- return '';
- }
-
- var lineWidth = getWidth(textLine, font);
-
- if (lineWidth <= containerWidth) {
- return textLine;
- }
-
- for (var j = 0;; j++) {
- if (lineWidth <= contentWidth || j >= options.maxIterations) {
- textLine += options.ellipsis;
- break;
- }
-
- var subLength = j === 0 ? estimateLength(textLine, contentWidth, options.ascCharWidth, options.cnCharWidth) : lineWidth > 0 ? Math.floor(textLine.length * contentWidth / lineWidth) : 0;
- textLine = textLine.substr(0, subLength);
- lineWidth = getWidth(textLine, font);
- }
-
- if (textLine === '') {
- textLine = options.placeholder;
- }
-
- return textLine;
- }
-
- function estimateLength(text, contentWidth, ascCharWidth, cnCharWidth) {
- var width = 0;
- var i = 0;
-
- for (var len = text.length; i < len && width < contentWidth; i++) {
- var charCode = text.charCodeAt(i);
- width += 0 <= charCode && charCode <= 127 ? ascCharWidth : cnCharWidth;
- }
-
- return i;
- }
- /**
- * @public
- * @param {string} font
- * @return {number} line height
- */
-
-
- function getLineHeight(font) {
- // FIXME A rough approach.
- return getWidth('国', font);
- }
- /**
- * @public
- * @param {string} text
- * @param {string} font
- * @return {Object} width
- */
-
-
- function measureText(text, font) {
- return methods.measureText(text, font);
- } // Avoid assign to an exported variable, for transforming to cjs.
-
-
- methods.measureText = function (text, font) {
- var ctx = getContext();
- ctx.font = font || DEFAULT_FONT;
- return ctx.measureText(text);
- };
- /**
- * @public
- * @param {string} text
- * @param {string} font
- * @param {Object} [truncate]
- * @return {Object} block: {lineHeight, lines, height, outerHeight, canCacheByTextString}
- * Notice: for performance, do not calculate outerWidth util needed.
- * `canCacheByTextString` means the result `lines` is only determined by the input `text`.
- * Thus we can simply comparing the `input` text to determin whether the result changed,
- * without travel the result `lines`.
- */
-
-
- function parsePlainText(text, font, padding, textLineHeight, truncate) {
- text != null && (text += '');
- var lineHeight = retrieve2(textLineHeight, getLineHeight(font));
- var lines = text ? text.split('\n') : [];
- var height = lines.length * lineHeight;
- var outerHeight = height;
- var canCacheByTextString = true;
-
- if (padding) {
- outerHeight += padding[0] + padding[2];
- }
-
- if (text && truncate) {
- canCacheByTextString = false;
- var truncOuterHeight = truncate.outerHeight;
- var truncOuterWidth = truncate.outerWidth;
-
- if (truncOuterHeight != null && outerHeight > truncOuterHeight) {
- text = '';
- lines = [];
- } else if (truncOuterWidth != null) {
- var options = prepareTruncateOptions(truncOuterWidth - (padding ? padding[1] + padding[3] : 0), font, truncate.ellipsis, {
- minChar: truncate.minChar,
- placeholder: truncate.placeholder
- }); // FIXME
- // It is not appropriate that every line has '...' when truncate multiple lines.
-
- for (var i = 0, len = lines.length; i < len; i++) {
- lines[i] = truncateSingleLine(lines[i], options);
- }
- }
- }
-
- return {
- lines: lines,
- height: height,
- outerHeight: outerHeight,
- lineHeight: lineHeight,
- canCacheByTextString: canCacheByTextString
- };
- }
- /**
- * For example: 'some text {a|some text}other text{b|some text}xxx{c|}xxx'
- * Also consider 'bbbb{a|xxx\nzzz}xxxx\naaaa'.
- *
- * @public
- * @param {string} text
- * @param {Object} style
- * @return {Object} block
- * {
- * width,
- * height,
- * lines: [{
- * lineHeight,
- * width,
- * tokens: [[{
- * styleName,
- * text,
- * width, // include textPadding
- * height, // include textPadding
- * textWidth, // pure text width
- * textHeight, // pure text height
- * lineHeihgt,
- * font,
- * textAlign,
- * textVerticalAlign
- * }], [...], ...]
- * }, ...]
- * }
- * If styleName is undefined, it is plain text.
- */
-
-
- function parseRichText(text, style) {
- var contentBlock = {
- lines: [],
- width: 0,
- height: 0
- };
- text != null && (text += '');
-
- if (!text) {
- return contentBlock;
- }
-
- var lastIndex = STYLE_REG.lastIndex = 0;
- var result;
-
- while ((result = STYLE_REG.exec(text)) != null) {
- var matchedIndex = result.index;
-
- if (matchedIndex > lastIndex) {
- pushTokens(contentBlock, text.substring(lastIndex, matchedIndex));
- }
-
- pushTokens(contentBlock, result[2], result[1]);
- lastIndex = STYLE_REG.lastIndex;
- }
-
- if (lastIndex < text.length) {
- pushTokens(contentBlock, text.substring(lastIndex, text.length));
- }
-
- var lines = contentBlock.lines;
- var contentHeight = 0;
- var contentWidth = 0; // For `textWidth: 100%`
-
- var pendingList = [];
- var stlPadding = style.textPadding;
- var truncate = style.truncate;
- var truncateWidth = truncate && truncate.outerWidth;
- var truncateHeight = truncate && truncate.outerHeight;
-
- if (stlPadding) {
- truncateWidth != null && (truncateWidth -= stlPadding[1] + stlPadding[3]);
- truncateHeight != null && (truncateHeight -= stlPadding[0] + stlPadding[2]);
- } // Calculate layout info of tokens.
-
-
- for (var i = 0; i < lines.length; i++) {
- var line = lines[i];
- var lineHeight = 0;
- var lineWidth = 0;
-
- for (var j = 0; j < line.tokens.length; j++) {
- var token = line.tokens[j];
- var tokenStyle = token.styleName && style.rich[token.styleName] || {}; // textPadding should not inherit from style.
-
- var textPadding = token.textPadding = tokenStyle.textPadding; // textFont has been asigned to font by `normalizeStyle`.
-
- var font = token.font = tokenStyle.font || style.font; // textHeight can be used when textVerticalAlign is specified in token.
-
- var tokenHeight = token.textHeight = retrieve2( // textHeight should not be inherited, consider it can be specified
- // as box height of the block.
- tokenStyle.textHeight, getLineHeight(font));
- textPadding && (tokenHeight += textPadding[0] + textPadding[2]);
- token.height = tokenHeight;
- token.lineHeight = retrieve3(tokenStyle.textLineHeight, style.textLineHeight, tokenHeight);
- token.textAlign = tokenStyle && tokenStyle.textAlign || style.textAlign;
- token.textVerticalAlign = tokenStyle && tokenStyle.textVerticalAlign || 'middle';
-
- if (truncateHeight != null && contentHeight + token.lineHeight > truncateHeight) {
- return {
- lines: [],
- width: 0,
- height: 0
- };
- }
-
- token.textWidth = getWidth(token.text, font);
- var tokenWidth = tokenStyle.textWidth;
- var tokenWidthNotSpecified = tokenWidth == null || tokenWidth === 'auto'; // Percent width, can be `100%`, can be used in drawing separate
- // line when box width is needed to be auto.
-
- if (typeof tokenWidth === 'string' && tokenWidth.charAt(tokenWidth.length - 1) === '%') {
- token.percentWidth = tokenWidth;
- pendingList.push(token);
- tokenWidth = 0; // Do not truncate in this case, because there is no user case
- // and it is too complicated.
- } else {
- if (tokenWidthNotSpecified) {
- tokenWidth = token.textWidth; // FIXME: If image is not loaded and textWidth is not specified, calling
- // `getBoundingRect()` will not get correct result.
-
- var textBackgroundColor = tokenStyle.textBackgroundColor;
- var bgImg = textBackgroundColor && textBackgroundColor.image; // Use cases:
- // (1) If image is not loaded, it will be loaded at render phase and call
- // `dirty()` and `textBackgroundColor.image` will be replaced with the loaded
- // image, and then the right size will be calculated here at the next tick.
- // See `graphic/helper/text.js`.
- // (2) If image loaded, and `textBackgroundColor.image` is image src string,
- // use `imageHelper.findExistImage` to find cached image.
- // `imageHelper.findExistImage` will always be called here before
- // `imageHelper.createOrUpdateImage` in `graphic/helper/text.js#renderRichText`
- // which ensures that image will not be rendered before correct size calcualted.
-
- if (bgImg) {
- bgImg = imageHelper.findExistImage(bgImg);
-
- if (imageHelper.isImageReady(bgImg)) {
- tokenWidth = Math.max(tokenWidth, bgImg.width * tokenHeight / bgImg.height);
- }
- }
- }
-
- var paddingW = textPadding ? textPadding[1] + textPadding[3] : 0;
- tokenWidth += paddingW;
- var remianTruncWidth = truncateWidth != null ? truncateWidth - lineWidth : null;
-
- if (remianTruncWidth != null && remianTruncWidth < tokenWidth) {
- if (!tokenWidthNotSpecified || remianTruncWidth < paddingW) {
- token.text = '';
- token.textWidth = tokenWidth = 0;
- } else {
- token.text = truncateText(token.text, remianTruncWidth - paddingW, font, truncate.ellipsis, {
- minChar: truncate.minChar
- });
- token.textWidth = getWidth(token.text, font);
- tokenWidth = token.textWidth + paddingW;
- }
- }
- }
-
- lineWidth += token.width = tokenWidth;
- tokenStyle && (lineHeight = Math.max(lineHeight, token.lineHeight));
- }
-
- line.width = lineWidth;
- line.lineHeight = lineHeight;
- contentHeight += lineHeight;
- contentWidth = Math.max(contentWidth, lineWidth);
- }
-
- contentBlock.outerWidth = contentBlock.width = retrieve2(style.textWidth, contentWidth);
- contentBlock.outerHeight = contentBlock.height = retrieve2(style.textHeight, contentHeight);
-
- if (stlPadding) {
- contentBlock.outerWidth += stlPadding[1] + stlPadding[3];
- contentBlock.outerHeight += stlPadding[0] + stlPadding[2];
- }
-
- for (var i = 0; i < pendingList.length; i++) {
- var token = pendingList[i];
- var percentWidth = token.percentWidth; // Should not base on outerWidth, because token can not be placed out of padding.
-
- token.width = parseInt(percentWidth, 10) / 100 * contentWidth;
- }
-
- return contentBlock;
- }
-
- function pushTokens(block, str, styleName) {
- var isEmptyStr = str === '';
- var strs = str.split('\n');
- var lines = block.lines;
-
- for (var i = 0; i < strs.length; i++) {
- var text = strs[i];
- var token = {
- styleName: styleName,
- text: text,
- isLineHolder: !text && !isEmptyStr
- }; // The first token should be appended to the last line.
-
- if (!i) {
- var tokens = (lines[lines.length - 1] || (lines[0] = {
- tokens: []
- })).tokens; // Consider cases:
- // (1) ''.split('\n') => ['', '\n', ''], the '' at the first item
- // (which is a placeholder) should be replaced by new token.
- // (2) A image backage, where token likes {a|}.
- // (3) A redundant '' will affect textAlign in line.
- // (4) tokens with the same tplName should not be merged, because
- // they should be displayed in different box (with border and padding).
-
- var tokensLen = tokens.length;
- tokensLen === 1 && tokens[0].isLineHolder ? tokens[0] = token : // Consider text is '', only insert when it is the "lineHolder" or
- // "emptyStr". Otherwise a redundant '' will affect textAlign in line.
- (text || !tokensLen || isEmptyStr) && tokens.push(token);
- } // Other tokens always start a new line.
- else {
- // If there is '', insert it as a placeholder.
- lines.push({
- tokens: [token]
- });
- }
- }
- }
-
- function makeFont(style) {
- // FIXME in node-canvas fontWeight is before fontStyle
- // Use `fontSize` `fontFamily` to check whether font properties are defined.
- var font = (style.fontSize || style.fontFamily) && [style.fontStyle, style.fontWeight, (style.fontSize || 12) + 'px', // If font properties are defined, `fontFamily` should not be ignored.
- style.fontFamily || 'sans-serif'].join(' ');
- return font && trim(font) || style.textFont || style.font;
- }
-
- exports.DEFAULT_FONT = DEFAULT_FONT;
- exports.$override = $override;
- exports.getWidth = getWidth;
- exports.getBoundingRect = getBoundingRect;
- exports.adjustTextX = adjustTextX;
- exports.adjustTextY = adjustTextY;
- exports.calculateTextPosition = calculateTextPosition;
- exports.adjustTextPositionOnRect = adjustTextPositionOnRect;
- exports.truncateText = truncateText;
- exports.getLineHeight = getLineHeight;
- exports.measureText = measureText;
- exports.parsePlainText = parsePlainText;
- exports.parseRichText = parseRichText;
- exports.makeFont = makeFont;
-
- /***/ }),
-
- /***/ 1403:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var zrUtil = __webpack_require__(864);
-
- var Model = __webpack_require__(1317);
-
- var DataDiffer = __webpack_require__(1519);
-
- var Source = __webpack_require__(1658);
-
- var _dataProvider = __webpack_require__(1518);
-
- var defaultDimValueGetters = _dataProvider.defaultDimValueGetters;
- var DefaultDataProvider = _dataProvider.DefaultDataProvider;
-
- var _dimensionHelper = __webpack_require__(1660);
-
- var summarizeDimensions = _dimensionHelper.summarizeDimensions;
-
- var DataDimensionInfo = __webpack_require__(2284);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /* global Float64Array, Int32Array, Uint32Array, Uint16Array */
-
- /**
- * List for data storage
- * @module echarts/data/List
- */
- var isObject = zrUtil.isObject;
- var UNDEFINED = 'undefined';
- var INDEX_NOT_FOUND = -1; // Use prefix to avoid index to be the same as otherIdList[idx],
- // which will cause weird udpate animation.
-
- var ID_PREFIX = 'e\0\0';
- var dataCtors = {
- 'float': typeof Float64Array === UNDEFINED ? Array : Float64Array,
- 'int': typeof Int32Array === UNDEFINED ? Array : Int32Array,
- // Ordinal data type can be string or int
- 'ordinal': Array,
- 'number': Array,
- 'time': Array
- }; // Caution: MUST not use `new CtorUint32Array(arr, 0, len)`, because the Ctor of array is
- // different from the Ctor of typed array.
-
- var CtorUint32Array = typeof Uint32Array === UNDEFINED ? Array : Uint32Array;
- var CtorInt32Array = typeof Int32Array === UNDEFINED ? Array : Int32Array;
- var CtorUint16Array = typeof Uint16Array === UNDEFINED ? Array : Uint16Array;
-
- function getIndicesCtor(list) {
- // The possible max value in this._indicies is always this._rawCount despite of filtering.
- return list._rawCount > 65535 ? CtorUint32Array : CtorUint16Array;
- }
-
- function cloneChunk(originalChunk) {
- var Ctor = originalChunk.constructor; // Only shallow clone is enough when Array.
-
- return Ctor === Array ? originalChunk.slice() : new Ctor(originalChunk);
- }
-
- var TRANSFERABLE_PROPERTIES = ['hasItemOption', '_nameList', '_idList', '_invertedIndicesMap', '_rawData', '_chunkSize', '_chunkCount', '_dimValueGetter', '_count', '_rawCount', '_nameDimIdx', '_idDimIdx'];
- var CLONE_PROPERTIES = ['_extent', '_approximateExtent', '_rawExtent'];
-
- function transferProperties(target, source) {
- zrUtil.each(TRANSFERABLE_PROPERTIES.concat(source.__wrappedMethods || []), function (propName) {
- if (source.hasOwnProperty(propName)) {
- target[propName] = source[propName];
- }
- });
- target.__wrappedMethods = source.__wrappedMethods;
- zrUtil.each(CLONE_PROPERTIES, function (propName) {
- target[propName] = zrUtil.clone(source[propName]);
- });
- target._calculationInfo = zrUtil.extend(source._calculationInfo);
- }
- /**
- * @constructor
- * @alias module:echarts/data/List
- *
- * @param {Array.<string|Object|module:data/DataDimensionInfo>} dimensions
- * For example, ['someDimName', {name: 'someDimName', type: 'someDimType'}, ...].
- * Dimensions should be concrete names like x, y, z, lng, lat, angle, radius
- * @param {module:echarts/model/Model} hostModel
- */
-
-
- var List = function (dimensions, hostModel) {
- dimensions = dimensions || ['x', 'y'];
- var dimensionInfos = {};
- var dimensionNames = [];
- var invertedIndicesMap = {};
-
- for (var i = 0; i < dimensions.length; i++) {
- // Use the original dimensions[i], where other flag props may exists.
- var dimensionInfo = dimensions[i];
-
- if (zrUtil.isString(dimensionInfo)) {
- dimensionInfo = new DataDimensionInfo({
- name: dimensionInfo
- });
- } else if (!(dimensionInfo instanceof DataDimensionInfo)) {
- dimensionInfo = new DataDimensionInfo(dimensionInfo);
- }
-
- var dimensionName = dimensionInfo.name;
- dimensionInfo.type = dimensionInfo.type || 'float';
-
- if (!dimensionInfo.coordDim) {
- dimensionInfo.coordDim = dimensionName;
- dimensionInfo.coordDimIndex = 0;
- }
-
- dimensionInfo.otherDims = dimensionInfo.otherDims || {};
- dimensionNames.push(dimensionName);
- dimensionInfos[dimensionName] = dimensionInfo;
- dimensionInfo.index = i;
-
- if (dimensionInfo.createInvertedIndices) {
- invertedIndicesMap[dimensionName] = [];
- }
- }
- /**
- * @readOnly
- * @type {Array.<string>}
- */
-
-
- this.dimensions = dimensionNames;
- /**
- * Infomation of each data dimension, like data type.
- * @type {Object}
- */
-
- this._dimensionInfos = dimensionInfos;
- /**
- * @type {module:echarts/model/Model}
- */
-
- this.hostModel = hostModel;
- /**
- * @type {module:echarts/model/Model}
- */
-
- this.dataType;
- /**
- * Indices stores the indices of data subset after filtered.
- * This data subset will be used in chart.
- * @type {Array.<number>}
- * @readOnly
- */
-
- this._indices = null;
- this._count = 0;
- this._rawCount = 0;
- /**
- * Data storage
- * @type {Object.<key, Array.<TypedArray|Array>>}
- * @private
- */
-
- this._storage = {};
- /**
- * @type {Array.<string>}
- */
-
- this._nameList = [];
- /**
- * @type {Array.<string>}
- */
-
- this._idList = [];
- /**
- * Models of data option is stored sparse for optimizing memory cost
- * @type {Array.<module:echarts/model/Model>}
- * @private
- */
-
- this._optionModels = [];
- /**
- * Global visual properties after visual coding
- * @type {Object}
- * @private
- */
-
- this._visual = {};
- /**
- * Globel layout properties.
- * @type {Object}
- * @private
- */
-
- this._layout = {};
- /**
- * Item visual properties after visual coding
- * @type {Array.<Object>}
- * @private
- */
-
- this._itemVisuals = [];
- /**
- * Key: visual type, Value: boolean
- * @type {Object}
- * @readOnly
- */
-
- this.hasItemVisual = {};
- /**
- * Item layout properties after layout
- * @type {Array.<Object>}
- * @private
- */
-
- this._itemLayouts = [];
- /**
- * Graphic elemnents
- * @type {Array.<module:zrender/Element>}
- * @private
- */
-
- this._graphicEls = [];
- /**
- * Max size of each chunk.
- * @type {number}
- * @private
- */
-
- this._chunkSize = 1e5;
- /**
- * @type {number}
- * @private
- */
-
- this._chunkCount = 0;
- /**
- * @type {Array.<Array|Object>}
- * @private
- */
-
- this._rawData;
- /**
- * Raw extent will not be cloned, but only transfered.
- * It will not be calculated util needed.
- * key: dim,
- * value: {end: number, extent: Array.<number>}
- * @type {Object}
- * @private
- */
-
- this._rawExtent = {};
- /**
- * @type {Object}
- * @private
- */
-
- this._extent = {};
- /**
- * key: dim
- * value: extent
- * @type {Object}
- * @private
- */
-
- this._approximateExtent = {};
- /**
- * Cache summary info for fast visit. See "dimensionHelper".
- * @type {Object}
- * @private
- */
-
- this._dimensionsSummary = summarizeDimensions(this);
- /**
- * @type {Object.<Array|TypedArray>}
- * @private
- */
-
- this._invertedIndicesMap = invertedIndicesMap;
- /**
- * @type {Object}
- * @private
- */
-
- this._calculationInfo = {};
- /**
- * User output info of this data.
- * DO NOT use it in other places!
- *
- * When preparing user params for user callbacks, we have
- * to clone these inner data structures to prevent users
- * from modifying them to effect built-in logic. And for
- * performance consideration we make this `userOutput` to
- * avoid clone them too many times.
- *
- * @type {Object}
- * @readOnly
- */
-
- this.userOutput = this._dimensionsSummary.userOutput;
- };
-
- var listProto = List.prototype;
- listProto.type = 'list';
- /**
- * If each data item has it's own option
- * @type {boolean}
- */
-
- listProto.hasItemOption = true;
- /**
- * The meanings of the input parameter `dim`:
- *
- * + If dim is a number (e.g., `1`), it means the index of the dimension.
- * For example, `getDimension(0)` will return 'x' or 'lng' or 'radius'.
- * + If dim is a number-like string (e.g., `"1"`):
- * + If there is the same concrete dim name defined in `this.dimensions`, it means that concrete name.
- * + If not, it will be converted to a number, which means the index of the dimension.
- * (why? because of the backward compatbility. We have been tolerating number-like string in
- * dimension setting, although now it seems that it is not a good idea.)
- * For example, `visualMap[i].dimension: "1"` is the same meaning as `visualMap[i].dimension: 1`,
- * if no dimension name is defined as `"1"`.
- * + If dim is a not-number-like string, it means the concrete dim name.
- * For example, it can be be default name `"x"`, `"y"`, `"z"`, `"lng"`, `"lat"`, `"angle"`, `"radius"`,
- * or customized in `dimensions` property of option like `"age"`.
- *
- * Get dimension name
- * @param {string|number} dim See above.
- * @return {string} Concrete dim name.
- */
-
- listProto.getDimension = function (dim) {
- if (typeof dim === 'number' // If being a number-like string but not being defined a dimension name.
- || !isNaN(dim) && !this._dimensionInfos.hasOwnProperty(dim)) {
- dim = this.dimensions[dim];
- }
-
- return dim;
- };
- /**
- * Get type and calculation info of particular dimension
- * @param {string|number} dim
- * Dimension can be concrete names like x, y, z, lng, lat, angle, radius
- * Or a ordinal number. For example getDimensionInfo(0) will return 'x' or 'lng' or 'radius'
- */
-
-
- listProto.getDimensionInfo = function (dim) {
- // Do not clone, because there may be categories in dimInfo.
- return this._dimensionInfos[this.getDimension(dim)];
- };
- /**
- * @return {Array.<string>} concrete dimension name list on coord.
- */
-
-
- listProto.getDimensionsOnCoord = function () {
- return this._dimensionsSummary.dataDimsOnCoord.slice();
- };
- /**
- * @param {string} coordDim
- * @param {number} [idx] A coordDim may map to more than one data dim.
- * If idx is `true`, return a array of all mapped dims.
- * If idx is not specified, return the first dim not extra.
- * @return {string|Array.<string>} concrete data dim.
- * If idx is number, and not found, return null/undefined.
- * If idx is `true`, and not found, return empty array (always return array).
- */
-
-
- listProto.mapDimension = function (coordDim, idx) {
- var dimensionsSummary = this._dimensionsSummary;
-
- if (idx == null) {
- return dimensionsSummary.encodeFirstDimNotExtra[coordDim];
- }
-
- var dims = dimensionsSummary.encode[coordDim];
- return idx === true // always return array if idx is `true`
- ? (dims || []).slice() : dims && dims[idx];
- };
- /**
- * Initialize from data
- * @param {Array.<Object|number|Array>} data source or data or data provider.
- * @param {Array.<string>} [nameLIst] The name of a datum is used on data diff and
- * defualt label/tooltip.
- * A name can be specified in encode.itemName,
- * or dataItem.name (only for series option data),
- * or provided in nameList from outside.
- * @param {Function} [dimValueGetter] (dataItem, dimName, dataIndex, dimIndex) => number
- */
-
-
- listProto.initData = function (data, nameList, dimValueGetter) {
- var notProvider = Source.isInstance(data) || zrUtil.isArrayLike(data);
-
- if (notProvider) {
- data = new DefaultDataProvider(data, this.dimensions.length);
- }
-
- this._rawData = data; // Clear
-
- this._storage = {};
- this._indices = null;
- this._nameList = nameList || [];
- this._idList = [];
- this._nameRepeatCount = {};
-
- if (!dimValueGetter) {
- this.hasItemOption = false;
- }
- /**
- * @readOnly
- */
-
-
- this.defaultDimValueGetter = defaultDimValueGetters[this._rawData.getSource().sourceFormat]; // Default dim value getter
-
- this._dimValueGetter = dimValueGetter = dimValueGetter || this.defaultDimValueGetter;
- this._dimValueGetterArrayRows = defaultDimValueGetters.arrayRows; // Reset raw extent.
-
- this._rawExtent = {};
-
- this._initDataFromProvider(0, data.count()); // If data has no item option.
-
-
- if (data.pure) {
- this.hasItemOption = false;
- }
- };
-
- listProto.getProvider = function () {
- return this._rawData;
- };
- /**
- * Caution: Can be only called on raw data (before `this._indices` created).
- */
-
-
- listProto.appendData = function (data) {
- var rawData = this._rawData;
- var start = this.count();
- rawData.appendData(data);
- var end = rawData.count();
-
- if (!rawData.persistent) {
- end += start;
- }
-
- this._initDataFromProvider(start, end);
- };
- /**
- * Caution: Can be only called on raw data (before `this._indices` created).
- * This method does not modify `rawData` (`dataProvider`), but only
- * add values to storage.
- *
- * The final count will be increased by `Math.max(values.length, names.length)`.
- *
- * @param {Array.<Array.<*>>} values That is the SourceType: 'arrayRows', like
- * [
- * [12, 33, 44],
- * [NaN, 43, 1],
- * ['-', 'asdf', 0]
- * ]
- * Each item is exaclty cooresponding to a dimension.
- * @param {Array.<string>} [names]
- */
-
-
- listProto.appendValues = function (values, names) {
- var chunkSize = this._chunkSize;
- var storage = this._storage;
- var dimensions = this.dimensions;
- var dimLen = dimensions.length;
- var rawExtent = this._rawExtent;
- var start = this.count();
- var end = start + Math.max(values.length, names ? names.length : 0);
- var originalChunkCount = this._chunkCount;
-
- for (var i = 0; i < dimLen; i++) {
- var dim = dimensions[i];
-
- if (!rawExtent[dim]) {
- rawExtent[dim] = getInitialExtent();
- }
-
- if (!storage[dim]) {
- storage[dim] = [];
- }
-
- prepareChunks(storage, this._dimensionInfos[dim], chunkSize, originalChunkCount, end);
- this._chunkCount = storage[dim].length;
- }
-
- var emptyDataItem = new Array(dimLen);
-
- for (var idx = start; idx < end; idx++) {
- var sourceIdx = idx - start;
- var chunkIndex = Math.floor(idx / chunkSize);
- var chunkOffset = idx % chunkSize; // Store the data by dimensions
-
- for (var k = 0; k < dimLen; k++) {
- var dim = dimensions[k];
-
- var val = this._dimValueGetterArrayRows(values[sourceIdx] || emptyDataItem, dim, sourceIdx, k);
-
- storage[dim][chunkIndex][chunkOffset] = val;
- var dimRawExtent = rawExtent[dim];
- val < dimRawExtent[0] && (dimRawExtent[0] = val);
- val > dimRawExtent[1] && (dimRawExtent[1] = val);
- }
-
- if (names) {
- this._nameList[idx] = names[sourceIdx];
- }
- }
-
- this._rawCount = this._count = end; // Reset data extent
-
- this._extent = {};
- prepareInvertedIndex(this);
- };
-
- listProto._initDataFromProvider = function (start, end) {
- // Optimize.
- if (start >= end) {
- return;
- }
-
- var chunkSize = this._chunkSize;
- var rawData = this._rawData;
- var storage = this._storage;
- var dimensions = this.dimensions;
- var dimLen = dimensions.length;
- var dimensionInfoMap = this._dimensionInfos;
- var nameList = this._nameList;
- var idList = this._idList;
- var rawExtent = this._rawExtent;
- var nameRepeatCount = this._nameRepeatCount = {};
- var nameDimIdx;
- var originalChunkCount = this._chunkCount;
-
- for (var i = 0; i < dimLen; i++) {
- var dim = dimensions[i];
-
- if (!rawExtent[dim]) {
- rawExtent[dim] = getInitialExtent();
- }
-
- var dimInfo = dimensionInfoMap[dim];
-
- if (dimInfo.otherDims.itemName === 0) {
- nameDimIdx = this._nameDimIdx = i;
- }
-
- if (dimInfo.otherDims.itemId === 0) {
- this._idDimIdx = i;
- }
-
- if (!storage[dim]) {
- storage[dim] = [];
- }
-
- prepareChunks(storage, dimInfo, chunkSize, originalChunkCount, end);
- this._chunkCount = storage[dim].length;
- }
-
- var dataItem = new Array(dimLen);
-
- for (var idx = start; idx < end; idx++) {
- // NOTICE: Try not to write things into dataItem
- dataItem = rawData.getItem(idx, dataItem); // Each data item is value
- // [1, 2]
- // 2
- // Bar chart, line chart which uses category axis
- // only gives the 'y' value. 'x' value is the indices of category
- // Use a tempValue to normalize the value to be a (x, y) value
-
- var chunkIndex = Math.floor(idx / chunkSize);
- var chunkOffset = idx % chunkSize; // Store the data by dimensions
-
- for (var k = 0; k < dimLen; k++) {
- var dim = dimensions[k];
- var dimStorage = storage[dim][chunkIndex]; // PENDING NULL is empty or zero
-
- var val = this._dimValueGetter(dataItem, dim, idx, k);
-
- dimStorage[chunkOffset] = val;
- var dimRawExtent = rawExtent[dim];
- val < dimRawExtent[0] && (dimRawExtent[0] = val);
- val > dimRawExtent[1] && (dimRawExtent[1] = val);
- } // ??? FIXME not check by pure but sourceFormat?
- // TODO refactor these logic.
-
-
- if (!rawData.pure) {
- var name = nameList[idx];
-
- if (dataItem && name == null) {
- // If dataItem is {name: ...}, it has highest priority.
- // That is appropriate for many common cases.
- if (dataItem.name != null) {
- // There is no other place to persistent dataItem.name,
- // so save it to nameList.
- nameList[idx] = name = dataItem.name;
- } else if (nameDimIdx != null) {
- var nameDim = dimensions[nameDimIdx];
- var nameDimChunk = storage[nameDim][chunkIndex];
-
- if (nameDimChunk) {
- name = nameDimChunk[chunkOffset];
- var ordinalMeta = dimensionInfoMap[nameDim].ordinalMeta;
-
- if (ordinalMeta && ordinalMeta.categories.length) {
- name = ordinalMeta.categories[name];
- }
- }
- }
- } // Try using the id in option
- // id or name is used on dynamical data, mapping old and new items.
-
-
- var id = dataItem == null ? null : dataItem.id;
-
- if (id == null && name != null) {
- // Use name as id and add counter to avoid same name
- nameRepeatCount[name] = nameRepeatCount[name] || 0;
- id = name;
-
- if (nameRepeatCount[name] > 0) {
- id += '__ec__' + nameRepeatCount[name];
- }
-
- nameRepeatCount[name]++;
- }
-
- id != null && (idList[idx] = id);
- }
- }
-
- if (!rawData.persistent && rawData.clean) {
- // Clean unused data if data source is typed array.
- rawData.clean();
- }
-
- this._rawCount = this._count = end; // Reset data extent
-
- this._extent = {};
- prepareInvertedIndex(this);
- };
-
- function prepareChunks(storage, dimInfo, chunkSize, chunkCount, end) {
- var DataCtor = dataCtors[dimInfo.type];
- var lastChunkIndex = chunkCount - 1;
- var dim = dimInfo.name;
- var resizeChunkArray = storage[dim][lastChunkIndex];
-
- if (resizeChunkArray && resizeChunkArray.length < chunkSize) {
- var newStore = new DataCtor(Math.min(end - lastChunkIndex * chunkSize, chunkSize)); // The cost of the copy is probably inconsiderable
- // within the initial chunkSize.
-
- for (var j = 0; j < resizeChunkArray.length; j++) {
- newStore[j] = resizeChunkArray[j];
- }
-
- storage[dim][lastChunkIndex] = newStore;
- } // Create new chunks.
-
-
- for (var k = chunkCount * chunkSize; k < end; k += chunkSize) {
- storage[dim].push(new DataCtor(Math.min(end - k, chunkSize)));
- }
- }
-
- function prepareInvertedIndex(list) {
- var invertedIndicesMap = list._invertedIndicesMap;
- zrUtil.each(invertedIndicesMap, function (invertedIndices, dim) {
- var dimInfo = list._dimensionInfos[dim]; // Currently, only dimensions that has ordinalMeta can create inverted indices.
-
- var ordinalMeta = dimInfo.ordinalMeta;
-
- if (ordinalMeta) {
- invertedIndices = invertedIndicesMap[dim] = new CtorInt32Array(ordinalMeta.categories.length); // The default value of TypedArray is 0. To avoid miss
- // mapping to 0, we should set it as INDEX_NOT_FOUND.
-
- for (var i = 0; i < invertedIndices.length; i++) {
- invertedIndices[i] = INDEX_NOT_FOUND;
- }
-
- for (var i = 0; i < list._count; i++) {
- // Only support the case that all values are distinct.
- invertedIndices[list.get(dim, i)] = i;
- }
- }
- });
- }
-
- function getRawValueFromStore(list, dimIndex, rawIndex) {
- var val;
-
- if (dimIndex != null) {
- var chunkSize = list._chunkSize;
- var chunkIndex = Math.floor(rawIndex / chunkSize);
- var chunkOffset = rawIndex % chunkSize;
- var dim = list.dimensions[dimIndex];
- var chunk = list._storage[dim][chunkIndex];
-
- if (chunk) {
- val = chunk[chunkOffset];
- var ordinalMeta = list._dimensionInfos[dim].ordinalMeta;
-
- if (ordinalMeta && ordinalMeta.categories.length) {
- val = ordinalMeta.categories[val];
- }
- }
- }
-
- return val;
- }
- /**
- * @return {number}
- */
-
-
- listProto.count = function () {
- return this._count;
- };
-
- listProto.getIndices = function () {
- var newIndices;
- var indices = this._indices;
-
- if (indices) {
- var Ctor = indices.constructor;
- var thisCount = this._count; // `new Array(a, b, c)` is different from `new Uint32Array(a, b, c)`.
-
- if (Ctor === Array) {
- newIndices = new Ctor(thisCount);
-
- for (var i = 0; i < thisCount; i++) {
- newIndices[i] = indices[i];
- }
- } else {
- newIndices = new Ctor(indices.buffer, 0, thisCount);
- }
- } else {
- var Ctor = getIndicesCtor(this);
- var newIndices = new Ctor(this.count());
-
- for (var i = 0; i < newIndices.length; i++) {
- newIndices[i] = i;
- }
- }
-
- return newIndices;
- };
- /**
- * Get value. Return NaN if idx is out of range.
- * @param {string} dim Dim must be concrete name.
- * @param {number} idx
- * @param {boolean} stack
- * @return {number}
- */
-
-
- listProto.get = function (dim, idx
- /*, stack */
- ) {
- if (!(idx >= 0 && idx < this._count)) {
- return NaN;
- }
-
- var storage = this._storage;
-
- if (!storage[dim]) {
- // TODO Warn ?
- return NaN;
- }
-
- idx = this.getRawIndex(idx);
- var chunkIndex = Math.floor(idx / this._chunkSize);
- var chunkOffset = idx % this._chunkSize;
- var chunkStore = storage[dim][chunkIndex];
- var value = chunkStore[chunkOffset]; // FIXME ordinal data type is not stackable
- // if (stack) {
- // var dimensionInfo = this._dimensionInfos[dim];
- // if (dimensionInfo && dimensionInfo.stackable) {
- // var stackedOn = this.stackedOn;
- // while (stackedOn) {
- // // Get no stacked data of stacked on
- // var stackedValue = stackedOn.get(dim, idx);
- // // Considering positive stack, negative stack and empty data
- // if ((value >= 0 && stackedValue > 0) // Positive stack
- // || (value <= 0 && stackedValue < 0) // Negative stack
- // ) {
- // value += stackedValue;
- // }
- // stackedOn = stackedOn.stackedOn;
- // }
- // }
- // }
-
- return value;
- };
- /**
- * @param {string} dim concrete dim
- * @param {number} rawIndex
- * @return {number|string}
- */
-
-
- listProto.getByRawIndex = function (dim, rawIdx) {
- if (!(rawIdx >= 0 && rawIdx < this._rawCount)) {
- return NaN;
- }
-
- var dimStore = this._storage[dim];
-
- if (!dimStore) {
- // TODO Warn ?
- return NaN;
- }
-
- var chunkIndex = Math.floor(rawIdx / this._chunkSize);
- var chunkOffset = rawIdx % this._chunkSize;
- var chunkStore = dimStore[chunkIndex];
- return chunkStore[chunkOffset];
- };
- /**
- * FIXME Use `get` on chrome maybe slow(in filterSelf and selectRange).
- * Hack a much simpler _getFast
- * @private
- */
-
-
- listProto._getFast = function (dim, rawIdx) {
- var chunkIndex = Math.floor(rawIdx / this._chunkSize);
- var chunkOffset = rawIdx % this._chunkSize;
- var chunkStore = this._storage[dim][chunkIndex];
- return chunkStore[chunkOffset];
- };
- /**
- * Get value for multi dimensions.
- * @param {Array.<string>} [dimensions] If ignored, using all dimensions.
- * @param {number} idx
- * @return {number}
- */
-
-
- listProto.getValues = function (dimensions, idx
- /*, stack */
- ) {
- var values = [];
-
- if (!zrUtil.isArray(dimensions)) {
- // stack = idx;
- idx = dimensions;
- dimensions = this.dimensions;
- }
-
- for (var i = 0, len = dimensions.length; i < len; i++) {
- values.push(this.get(dimensions[i], idx
- /*, stack */
- ));
- }
-
- return values;
- };
- /**
- * If value is NaN. Inlcuding '-'
- * Only check the coord dimensions.
- * @param {string} dim
- * @param {number} idx
- * @return {number}
- */
-
-
- listProto.hasValue = function (idx) {
- var dataDimsOnCoord = this._dimensionsSummary.dataDimsOnCoord;
-
- for (var i = 0, len = dataDimsOnCoord.length; i < len; i++) {
- // Ordinal type originally can be string or number.
- // But when an ordinal type is used on coord, it can
- // not be string but only number. So we can also use isNaN.
- if (isNaN(this.get(dataDimsOnCoord[i], idx))) {
- return false;
- }
- }
-
- return true;
- };
- /**
- * Get extent of data in one dimension
- * @param {string} dim
- * @param {boolean} stack
- */
-
-
- listProto.getDataExtent = function (dim
- /*, stack */
- ) {
- // Make sure use concrete dim as cache name.
- dim = this.getDimension(dim);
- var dimData = this._storage[dim];
- var initialExtent = getInitialExtent(); // stack = !!((stack || false) && this.getCalculationInfo(dim));
-
- if (!dimData) {
- return initialExtent;
- } // Make more strict checkings to ensure hitting cache.
-
-
- var currEnd = this.count(); // var cacheName = [dim, !!stack].join('_');
- // var cacheName = dim;
- // Consider the most cases when using data zoom, `getDataExtent`
- // happened before filtering. We cache raw extent, which is not
- // necessary to be cleared and recalculated when restore data.
-
- var useRaw = !this._indices; // && !stack;
-
- var dimExtent;
-
- if (useRaw) {
- return this._rawExtent[dim].slice();
- }
-
- dimExtent = this._extent[dim];
-
- if (dimExtent) {
- return dimExtent.slice();
- }
-
- dimExtent = initialExtent;
- var min = dimExtent[0];
- var max = dimExtent[1];
-
- for (var i = 0; i < currEnd; i++) {
- // var value = stack ? this.get(dim, i, true) : this._getFast(dim, this.getRawIndex(i));
- var value = this._getFast(dim, this.getRawIndex(i));
-
- value < min && (min = value);
- value > max && (max = value);
- }
-
- dimExtent = [min, max];
- this._extent[dim] = dimExtent;
- return dimExtent;
- };
- /**
- * Optimize for the scenario that data is filtered by a given extent.
- * Consider that if data amount is more than hundreds of thousand,
- * extent calculation will cost more than 10ms and the cache will
- * be erased because of the filtering.
- */
-
-
- listProto.getApproximateExtent = function (dim
- /*, stack */
- ) {
- dim = this.getDimension(dim);
- return this._approximateExtent[dim] || this.getDataExtent(dim
- /*, stack */
- );
- };
-
- listProto.setApproximateExtent = function (extent, dim
- /*, stack */
- ) {
- dim = this.getDimension(dim);
- this._approximateExtent[dim] = extent.slice();
- };
- /**
- * @param {string} key
- * @return {*}
- */
-
-
- listProto.getCalculationInfo = function (key) {
- return this._calculationInfo[key];
- };
- /**
- * @param {string|Object} key or k-v object
- * @param {*} [value]
- */
-
-
- listProto.setCalculationInfo = function (key, value) {
- isObject(key) ? zrUtil.extend(this._calculationInfo, key) : this._calculationInfo[key] = value;
- };
- /**
- * Get sum of data in one dimension
- * @param {string} dim
- */
-
-
- listProto.getSum = function (dim
- /*, stack */
- ) {
- var dimData = this._storage[dim];
- var sum = 0;
-
- if (dimData) {
- for (var i = 0, len = this.count(); i < len; i++) {
- var value = this.get(dim, i
- /*, stack */
- );
-
- if (!isNaN(value)) {
- sum += value;
- }
- }
- }
-
- return sum;
- };
- /**
- * Get median of data in one dimension
- * @param {string} dim
- */
-
-
- listProto.getMedian = function (dim
- /*, stack */
- ) {
- var dimDataArray = []; // map all data of one dimension
-
- this.each(dim, function (val, idx) {
- if (!isNaN(val)) {
- dimDataArray.push(val);
- }
- }); // TODO
- // Use quick select?
- // immutability & sort
-
- var sortedDimDataArray = [].concat(dimDataArray).sort(function (a, b) {
- return a - b;
- });
- var len = this.count(); // calculate median
-
- return len === 0 ? 0 : len % 2 === 1 ? sortedDimDataArray[(len - 1) / 2] : (sortedDimDataArray[len / 2] + sortedDimDataArray[len / 2 - 1]) / 2;
- }; // /**
- // * Retreive the index with given value
- // * @param {string} dim Concrete dimension.
- // * @param {number} value
- // * @return {number}
- // */
- // Currently incorrect: should return dataIndex but not rawIndex.
- // Do not fix it until this method is to be used somewhere.
- // FIXME Precision of float value
- // listProto.indexOf = function (dim, value) {
- // var storage = this._storage;
- // var dimData = storage[dim];
- // var chunkSize = this._chunkSize;
- // if (dimData) {
- // for (var i = 0, len = this.count(); i < len; i++) {
- // var chunkIndex = Math.floor(i / chunkSize);
- // var chunkOffset = i % chunkSize;
- // if (dimData[chunkIndex][chunkOffset] === value) {
- // return i;
- // }
- // }
- // }
- // return -1;
- // };
-
- /**
- * Only support the dimension which inverted index created.
- * Do not support other cases until required.
- * @param {string} concrete dim
- * @param {number|string} value
- * @return {number} rawIndex
- */
-
-
- listProto.rawIndexOf = function (dim, value) {
- var invertedIndices = dim && this._invertedIndicesMap[dim];
- var rawIndex = invertedIndices[value];
-
- if (rawIndex == null || isNaN(rawIndex)) {
- return INDEX_NOT_FOUND;
- }
-
- return rawIndex;
- };
- /**
- * Retreive the index with given name
- * @param {number} idx
- * @param {number} name
- * @return {number}
- */
-
-
- listProto.indexOfName = function (name) {
- for (var i = 0, len = this.count(); i < len; i++) {
- if (this.getName(i) === name) {
- return i;
- }
- }
-
- return -1;
- };
- /**
- * Retreive the index with given raw data index
- * @param {number} idx
- * @param {number} name
- * @return {number}
- */
-
-
- listProto.indexOfRawIndex = function (rawIndex) {
- if (rawIndex >= this._rawCount || rawIndex < 0) {
- return -1;
- }
-
- if (!this._indices) {
- return rawIndex;
- } // Indices are ascending
-
-
- var indices = this._indices; // If rawIndex === dataIndex
-
- var rawDataIndex = indices[rawIndex];
-
- if (rawDataIndex != null && rawDataIndex < this._count && rawDataIndex === rawIndex) {
- return rawIndex;
- }
-
- var left = 0;
- var right = this._count - 1;
-
- while (left <= right) {
- var mid = (left + right) / 2 | 0;
-
- if (indices[mid] < rawIndex) {
- left = mid + 1;
- } else if (indices[mid] > rawIndex) {
- right = mid - 1;
- } else {
- return mid;
- }
- }
-
- return -1;
- };
- /**
- * Retreive the index of nearest value
- * @param {string} dim
- * @param {number} value
- * @param {number} [maxDistance=Infinity]
- * @return {Array.<number>} If and only if multiple indices has
- * the same value, they are put to the result.
- */
-
-
- listProto.indicesOfNearest = function (dim, value, maxDistance) {
- var storage = this._storage;
- var dimData = storage[dim];
- var nearestIndices = [];
-
- if (!dimData) {
- return nearestIndices;
- }
-
- if (maxDistance == null) {
- maxDistance = Infinity;
- }
-
- var minDist = Infinity;
- var minDiff = -1;
- var nearestIndicesLen = 0; // Check the test case of `test/ut/spec/data/List.js`.
-
- for (var i = 0, len = this.count(); i < len; i++) {
- var diff = value - this.get(dim, i);
- var dist = Math.abs(diff);
-
- if (dist <= maxDistance) {
- // When the `value` is at the middle of `this.get(dim, i)` and `this.get(dim, i+1)`,
- // we'd better not push both of them to `nearestIndices`, otherwise it is easy to
- // get more than one item in `nearestIndices` (more specifically, in `tooltip`).
- // So we chose the one that `diff >= 0` in this csae.
- // But if `this.get(dim, i)` and `this.get(dim, j)` get the same value, both of them
- // should be push to `nearestIndices`.
- if (dist < minDist || dist === minDist && diff >= 0 && minDiff < 0) {
- minDist = dist;
- minDiff = diff;
- nearestIndicesLen = 0;
- }
-
- if (diff === minDiff) {
- nearestIndices[nearestIndicesLen++] = i;
- }
- }
- }
-
- nearestIndices.length = nearestIndicesLen;
- return nearestIndices;
- };
- /**
- * Get raw data index
- * @param {number} idx
- * @return {number}
- */
-
-
- listProto.getRawIndex = getRawIndexWithoutIndices;
-
- function getRawIndexWithoutIndices(idx) {
- return idx;
- }
-
- function getRawIndexWithIndices(idx) {
- if (idx < this._count && idx >= 0) {
- return this._indices[idx];
- }
-
- return -1;
- }
- /**
- * Get raw data item
- * @param {number} idx
- * @return {number}
- */
-
-
- listProto.getRawDataItem = function (idx) {
- if (!this._rawData.persistent) {
- var val = [];
-
- for (var i = 0; i < this.dimensions.length; i++) {
- var dim = this.dimensions[i];
- val.push(this.get(dim, idx));
- }
-
- return val;
- } else {
- return this._rawData.getItem(this.getRawIndex(idx));
- }
- };
- /**
- * @param {number} idx
- * @param {boolean} [notDefaultIdx=false]
- * @return {string}
- */
-
-
- listProto.getName = function (idx) {
- var rawIndex = this.getRawIndex(idx);
- return this._nameList[rawIndex] || getRawValueFromStore(this, this._nameDimIdx, rawIndex) || '';
- };
- /**
- * @param {number} idx
- * @param {boolean} [notDefaultIdx=false]
- * @return {string}
- */
-
-
- listProto.getId = function (idx) {
- return getId(this, this.getRawIndex(idx));
- };
-
- function getId(list, rawIndex) {
- var id = list._idList[rawIndex];
-
- if (id == null) {
- id = getRawValueFromStore(list, list._idDimIdx, rawIndex);
- }
-
- if (id == null) {
- // FIXME Check the usage in graph, should not use prefix.
- id = ID_PREFIX + rawIndex;
- }
-
- return id;
- }
-
- function normalizeDimensions(dimensions) {
- if (!zrUtil.isArray(dimensions)) {
- dimensions = [dimensions];
- }
-
- return dimensions;
- }
-
- function validateDimensions(list, dims) {
- for (var i = 0; i < dims.length; i++) {
- // stroage may be empty when no data, so use
- // dimensionInfos to check.
- if (!list._dimensionInfos[dims[i]]) {
- console.error('Unkown dimension ' + dims[i]);
- }
- }
- }
- /**
- * Data iteration
- * @param {string|Array.<string>}
- * @param {Function} cb
- * @param {*} [context=this]
- *
- * @example
- * list.each('x', function (x, idx) {});
- * list.each(['x', 'y'], function (x, y, idx) {});
- * list.each(function (idx) {})
- */
-
-
- listProto.each = function (dims, cb, context, contextCompat) {
- 'use strict';
-
- if (!this._count) {
- return;
- }
-
- if (typeof dims === 'function') {
- contextCompat = context;
- context = cb;
- cb = dims;
- dims = [];
- } // contextCompat just for compat echarts3
-
-
- context = context || contextCompat || this;
- dims = zrUtil.map(normalizeDimensions(dims), this.getDimension, this);
- var dimSize = dims.length;
-
- for (var i = 0; i < this.count(); i++) {
- // Simple optimization
- switch (dimSize) {
- case 0:
- cb.call(context, i);
- break;
-
- case 1:
- cb.call(context, this.get(dims[0], i), i);
- break;
-
- case 2:
- cb.call(context, this.get(dims[0], i), this.get(dims[1], i), i);
- break;
-
- default:
- var k = 0;
- var value = [];
-
- for (; k < dimSize; k++) {
- value[k] = this.get(dims[k], i);
- } // Index
-
-
- value[k] = i;
- cb.apply(context, value);
- }
- }
- };
- /**
- * Data filter
- * @param {string|Array.<string>}
- * @param {Function} cb
- * @param {*} [context=this]
- */
-
-
- listProto.filterSelf = function (dimensions, cb, context, contextCompat) {
- 'use strict';
-
- if (!this._count) {
- return;
- }
-
- if (typeof dimensions === 'function') {
- contextCompat = context;
- context = cb;
- cb = dimensions;
- dimensions = [];
- } // contextCompat just for compat echarts3
-
-
- context = context || contextCompat || this;
- dimensions = zrUtil.map(normalizeDimensions(dimensions), this.getDimension, this);
- var count = this.count();
- var Ctor = getIndicesCtor(this);
- var newIndices = new Ctor(count);
- var value = [];
- var dimSize = dimensions.length;
- var offset = 0;
- var dim0 = dimensions[0];
-
- for (var i = 0; i < count; i++) {
- var keep;
- var rawIdx = this.getRawIndex(i); // Simple optimization
-
- if (dimSize === 0) {
- keep = cb.call(context, i);
- } else if (dimSize === 1) {
- var val = this._getFast(dim0, rawIdx);
-
- keep = cb.call(context, val, i);
- } else {
- for (var k = 0; k < dimSize; k++) {
- value[k] = this._getFast(dim0, rawIdx);
- }
-
- value[k] = i;
- keep = cb.apply(context, value);
- }
-
- if (keep) {
- newIndices[offset++] = rawIdx;
- }
- } // Set indices after filtered.
-
-
- if (offset < count) {
- this._indices = newIndices;
- }
-
- this._count = offset; // Reset data extent
-
- this._extent = {};
- this.getRawIndex = this._indices ? getRawIndexWithIndices : getRawIndexWithoutIndices;
- return this;
- };
- /**
- * Select data in range. (For optimization of filter)
- * (Manually inline code, support 5 million data filtering in data zoom.)
- */
-
-
- listProto.selectRange = function (range) {
- 'use strict';
-
- if (!this._count) {
- return;
- }
-
- var dimensions = [];
-
- for (var dim in range) {
- if (range.hasOwnProperty(dim)) {
- dimensions.push(dim);
- }
- }
-
- var dimSize = dimensions.length;
-
- if (!dimSize) {
- return;
- }
-
- var originalCount = this.count();
- var Ctor = getIndicesCtor(this);
- var newIndices = new Ctor(originalCount);
- var offset = 0;
- var dim0 = dimensions[0];
- var min = range[dim0][0];
- var max = range[dim0][1];
- var quickFinished = false;
-
- if (!this._indices) {
- // Extreme optimization for common case. About 2x faster in chrome.
- var idx = 0;
-
- if (dimSize === 1) {
- var dimStorage = this._storage[dimensions[0]];
-
- for (var k = 0; k < this._chunkCount; k++) {
- var chunkStorage = dimStorage[k];
- var len = Math.min(this._count - k * this._chunkSize, this._chunkSize);
-
- for (var i = 0; i < len; i++) {
- var val = chunkStorage[i]; // NaN will not be filtered. Consider the case, in line chart, empty
- // value indicates the line should be broken. But for the case like
- // scatter plot, a data item with empty value will not be rendered,
- // but the axis extent may be effected if some other dim of the data
- // item has value. Fortunately it is not a significant negative effect.
-
- if (val >= min && val <= max || isNaN(val)) {
- newIndices[offset++] = idx;
- }
-
- idx++;
- }
- }
-
- quickFinished = true;
- } else if (dimSize === 2) {
- var dimStorage = this._storage[dim0];
- var dimStorage2 = this._storage[dimensions[1]];
- var min2 = range[dimensions[1]][0];
- var max2 = range[dimensions[1]][1];
-
- for (var k = 0; k < this._chunkCount; k++) {
- var chunkStorage = dimStorage[k];
- var chunkStorage2 = dimStorage2[k];
- var len = Math.min(this._count - k * this._chunkSize, this._chunkSize);
-
- for (var i = 0; i < len; i++) {
- var val = chunkStorage[i];
- var val2 = chunkStorage2[i]; // Do not filter NaN, see comment above.
-
- if ((val >= min && val <= max || isNaN(val)) && (val2 >= min2 && val2 <= max2 || isNaN(val2))) {
- newIndices[offset++] = idx;
- }
-
- idx++;
- }
- }
-
- quickFinished = true;
- }
- }
-
- if (!quickFinished) {
- if (dimSize === 1) {
- for (var i = 0; i < originalCount; i++) {
- var rawIndex = this.getRawIndex(i);
-
- var val = this._getFast(dim0, rawIndex); // Do not filter NaN, see comment above.
-
-
- if (val >= min && val <= max || isNaN(val)) {
- newIndices[offset++] = rawIndex;
- }
- }
- } else {
- for (var i = 0; i < originalCount; i++) {
- var keep = true;
- var rawIndex = this.getRawIndex(i);
-
- for (var k = 0; k < dimSize; k++) {
- var dimk = dimensions[k];
-
- var val = this._getFast(dim, rawIndex); // Do not filter NaN, see comment above.
-
-
- if (val < range[dimk][0] || val > range[dimk][1]) {
- keep = false;
- }
- }
-
- if (keep) {
- newIndices[offset++] = this.getRawIndex(i);
- }
- }
- }
- } // Set indices after filtered.
-
-
- if (offset < originalCount) {
- this._indices = newIndices;
- }
-
- this._count = offset; // Reset data extent
-
- this._extent = {};
- this.getRawIndex = this._indices ? getRawIndexWithIndices : getRawIndexWithoutIndices;
- return this;
- };
- /**
- * Data mapping to a plain array
- * @param {string|Array.<string>} [dimensions]
- * @param {Function} cb
- * @param {*} [context=this]
- * @return {Array}
- */
-
-
- listProto.mapArray = function (dimensions, cb, context, contextCompat) {
- 'use strict';
-
- if (typeof dimensions === 'function') {
- contextCompat = context;
- context = cb;
- cb = dimensions;
- dimensions = [];
- } // contextCompat just for compat echarts3
-
-
- context = context || contextCompat || this;
- var result = [];
- this.each(dimensions, function () {
- result.push(cb && cb.apply(this, arguments));
- }, context);
- return result;
- }; // Data in excludeDimensions is copied, otherwise transfered.
-
-
- function cloneListForMapAndSample(original, excludeDimensions) {
- var allDimensions = original.dimensions;
- var list = new List(zrUtil.map(allDimensions, original.getDimensionInfo, original), original.hostModel); // FIXME If needs stackedOn, value may already been stacked
-
- transferProperties(list, original);
- var storage = list._storage = {};
- var originalStorage = original._storage; // Init storage
-
- for (var i = 0; i < allDimensions.length; i++) {
- var dim = allDimensions[i];
-
- if (originalStorage[dim]) {
- // Notice that we do not reset invertedIndicesMap here, becuase
- // there is no scenario of mapping or sampling ordinal dimension.
- if (zrUtil.indexOf(excludeDimensions, dim) >= 0) {
- storage[dim] = cloneDimStore(originalStorage[dim]);
- list._rawExtent[dim] = getInitialExtent();
- list._extent[dim] = null;
- } else {
- // Direct reference for other dimensions
- storage[dim] = originalStorage[dim];
- }
- }
- }
-
- return list;
- }
-
- function cloneDimStore(originalDimStore) {
- var newDimStore = new Array(originalDimStore.length);
-
- for (var j = 0; j < originalDimStore.length; j++) {
- newDimStore[j] = cloneChunk(originalDimStore[j]);
- }
-
- return newDimStore;
- }
-
- function getInitialExtent() {
- return [Infinity, -Infinity];
- }
- /**
- * Data mapping to a new List with given dimensions
- * @param {string|Array.<string>} dimensions
- * @param {Function} cb
- * @param {*} [context=this]
- * @return {Array}
- */
-
-
- listProto.map = function (dimensions, cb, context, contextCompat) {
- 'use strict'; // contextCompat just for compat echarts3
-
- context = context || contextCompat || this;
- dimensions = zrUtil.map(normalizeDimensions(dimensions), this.getDimension, this);
- var list = cloneListForMapAndSample(this, dimensions); // Following properties are all immutable.
- // So we can reference to the same value
-
- list._indices = this._indices;
- list.getRawIndex = list._indices ? getRawIndexWithIndices : getRawIndexWithoutIndices;
- var storage = list._storage;
- var tmpRetValue = [];
- var chunkSize = this._chunkSize;
- var dimSize = dimensions.length;
- var dataCount = this.count();
- var values = [];
- var rawExtent = list._rawExtent;
-
- for (var dataIndex = 0; dataIndex < dataCount; dataIndex++) {
- for (var dimIndex = 0; dimIndex < dimSize; dimIndex++) {
- values[dimIndex] = this.get(dimensions[dimIndex], dataIndex
- /*, stack */
- );
- }
-
- values[dimSize] = dataIndex;
- var retValue = cb && cb.apply(context, values);
-
- if (retValue != null) {
- // a number or string (in oridinal dimension)?
- if (typeof retValue !== 'object') {
- tmpRetValue[0] = retValue;
- retValue = tmpRetValue;
- }
-
- var rawIndex = this.getRawIndex(dataIndex);
- var chunkIndex = Math.floor(rawIndex / chunkSize);
- var chunkOffset = rawIndex % chunkSize;
-
- for (var i = 0; i < retValue.length; i++) {
- var dim = dimensions[i];
- var val = retValue[i];
- var rawExtentOnDim = rawExtent[dim];
- var dimStore = storage[dim];
-
- if (dimStore) {
- dimStore[chunkIndex][chunkOffset] = val;
- }
-
- if (val < rawExtentOnDim[0]) {
- rawExtentOnDim[0] = val;
- }
-
- if (val > rawExtentOnDim[1]) {
- rawExtentOnDim[1] = val;
- }
- }
- }
- }
-
- return list;
- };
- /**
- * Large data down sampling on given dimension
- * @param {string} dimension
- * @param {number} rate
- * @param {Function} sampleValue
- * @param {Function} sampleIndex Sample index for name and id
- */
-
-
- listProto.downSample = function (dimension, rate, sampleValue, sampleIndex) {
- var list = cloneListForMapAndSample(this, [dimension]);
- var targetStorage = list._storage;
- var frameValues = [];
- var frameSize = Math.floor(1 / rate);
- var dimStore = targetStorage[dimension];
- var len = this.count();
- var chunkSize = this._chunkSize;
- var rawExtentOnDim = list._rawExtent[dimension];
- var newIndices = new (getIndicesCtor(this))(len);
- var offset = 0;
-
- for (var i = 0; i < len; i += frameSize) {
- // Last frame
- if (frameSize > len - i) {
- frameSize = len - i;
- frameValues.length = frameSize;
- }
-
- for (var k = 0; k < frameSize; k++) {
- var dataIdx = this.getRawIndex(i + k);
- var originalChunkIndex = Math.floor(dataIdx / chunkSize);
- var originalChunkOffset = dataIdx % chunkSize;
- frameValues[k] = dimStore[originalChunkIndex][originalChunkOffset];
- }
-
- var value = sampleValue(frameValues);
- var sampleFrameIdx = this.getRawIndex(Math.min(i + sampleIndex(frameValues, value) || 0, len - 1));
- var sampleChunkIndex = Math.floor(sampleFrameIdx / chunkSize);
- var sampleChunkOffset = sampleFrameIdx % chunkSize; // Only write value on the filtered data
-
- dimStore[sampleChunkIndex][sampleChunkOffset] = value;
-
- if (value < rawExtentOnDim[0]) {
- rawExtentOnDim[0] = value;
- }
-
- if (value > rawExtentOnDim[1]) {
- rawExtentOnDim[1] = value;
- }
-
- newIndices[offset++] = sampleFrameIdx;
- }
-
- list._count = offset;
- list._indices = newIndices;
- list.getRawIndex = getRawIndexWithIndices;
- return list;
- };
- /**
- * Get model of one data item.
- *
- * @param {number} idx
- */
- // FIXME Model proxy ?
-
-
- listProto.getItemModel = function (idx) {
- var hostModel = this.hostModel;
- return new Model(this.getRawDataItem(idx), hostModel, hostModel && hostModel.ecModel);
- };
- /**
- * Create a data differ
- * @param {module:echarts/data/List} otherList
- * @return {module:echarts/data/DataDiffer}
- */
-
-
- listProto.diff = function (otherList) {
- var thisList = this;
- return new DataDiffer(otherList ? otherList.getIndices() : [], this.getIndices(), function (idx) {
- return getId(otherList, idx);
- }, function (idx) {
- return getId(thisList, idx);
- });
- };
- /**
- * Get visual property.
- * @param {string} key
- */
-
-
- listProto.getVisual = function (key) {
- var visual = this._visual;
- return visual && visual[key];
- };
- /**
- * Set visual property
- * @param {string|Object} key
- * @param {*} [value]
- *
- * @example
- * setVisual('color', color);
- * setVisual({
- * 'color': color
- * });
- */
-
-
- listProto.setVisual = function (key, val) {
- if (isObject(key)) {
- for (var name in key) {
- if (key.hasOwnProperty(name)) {
- this.setVisual(name, key[name]);
- }
- }
-
- return;
- }
-
- this._visual = this._visual || {};
- this._visual[key] = val;
- };
- /**
- * Set layout property.
- * @param {string|Object} key
- * @param {*} [val]
- */
-
-
- listProto.setLayout = function (key, val) {
- if (isObject(key)) {
- for (var name in key) {
- if (key.hasOwnProperty(name)) {
- this.setLayout(name, key[name]);
- }
- }
-
- return;
- }
-
- this._layout[key] = val;
- };
- /**
- * Get layout property.
- * @param {string} key.
- * @return {*}
- */
-
-
- listProto.getLayout = function (key) {
- return this._layout[key];
- };
- /**
- * Get layout of single data item
- * @param {number} idx
- */
-
-
- listProto.getItemLayout = function (idx) {
- return this._itemLayouts[idx];
- };
- /**
- * Set layout of single data item
- * @param {number} idx
- * @param {Object} layout
- * @param {boolean=} [merge=false]
- */
-
-
- listProto.setItemLayout = function (idx, layout, merge) {
- this._itemLayouts[idx] = merge ? zrUtil.extend(this._itemLayouts[idx] || {}, layout) : layout;
- };
- /**
- * Clear all layout of single data item
- */
-
-
- listProto.clearItemLayouts = function () {
- this._itemLayouts.length = 0;
- };
- /**
- * Get visual property of single data item
- * @param {number} idx
- * @param {string} key
- * @param {boolean} [ignoreParent=false]
- */
-
-
- listProto.getItemVisual = function (idx, key, ignoreParent) {
- var itemVisual = this._itemVisuals[idx];
- var val = itemVisual && itemVisual[key];
-
- if (val == null && !ignoreParent) {
- // Use global visual property
- return this.getVisual(key);
- }
-
- return val;
- };
- /**
- * Set visual property of single data item
- *
- * @param {number} idx
- * @param {string|Object} key
- * @param {*} [value]
- *
- * @example
- * setItemVisual(0, 'color', color);
- * setItemVisual(0, {
- * 'color': color
- * });
- */
-
-
- listProto.setItemVisual = function (idx, key, value) {
- var itemVisual = this._itemVisuals[idx] || {};
- var hasItemVisual = this.hasItemVisual;
- this._itemVisuals[idx] = itemVisual;
-
- if (isObject(key)) {
- for (var name in key) {
- if (key.hasOwnProperty(name)) {
- itemVisual[name] = key[name];
- hasItemVisual[name] = true;
- }
- }
-
- return;
- }
-
- itemVisual[key] = value;
- hasItemVisual[key] = true;
- };
- /**
- * Clear itemVisuals and list visual.
- */
-
-
- listProto.clearAllVisual = function () {
- this._visual = {};
- this._itemVisuals = [];
- this.hasItemVisual = {};
- };
-
- var setItemDataAndSeriesIndex = function (child) {
- child.seriesIndex = this.seriesIndex;
- child.dataIndex = this.dataIndex;
- child.dataType = this.dataType;
- };
- /**
- * Set graphic element relative to data. It can be set as null
- * @param {number} idx
- * @param {module:zrender/Element} [el]
- */
-
-
- listProto.setItemGraphicEl = function (idx, el) {
- var hostModel = this.hostModel;
-
- if (el) {
- // Add data index and series index for indexing the data by element
- // Useful in tooltip
- el.dataIndex = idx;
- el.dataType = this.dataType;
- el.seriesIndex = hostModel && hostModel.seriesIndex;
-
- if (el.type === 'group') {
- el.traverse(setItemDataAndSeriesIndex, el);
- }
- }
-
- this._graphicEls[idx] = el;
- };
- /**
- * @param {number} idx
- * @return {module:zrender/Element}
- */
-
-
- listProto.getItemGraphicEl = function (idx) {
- return this._graphicEls[idx];
- };
- /**
- * @param {Function} cb
- * @param {*} context
- */
-
-
- listProto.eachItemGraphicEl = function (cb, context) {
- zrUtil.each(this._graphicEls, function (el, idx) {
- if (el) {
- cb && cb.call(context, el, idx);
- }
- });
- };
- /**
- * Shallow clone a new list except visual and layout properties, and graph elements.
- * New list only change the indices.
- */
-
-
- listProto.cloneShallow = function (list) {
- if (!list) {
- var dimensionInfoList = zrUtil.map(this.dimensions, this.getDimensionInfo, this);
- list = new List(dimensionInfoList, this.hostModel);
- } // FIXME
-
-
- list._storage = this._storage;
- transferProperties(list, this); // Clone will not change the data extent and indices
-
- if (this._indices) {
- var Ctor = this._indices.constructor;
- list._indices = new Ctor(this._indices);
- } else {
- list._indices = null;
- }
-
- list.getRawIndex = list._indices ? getRawIndexWithIndices : getRawIndexWithoutIndices;
- return list;
- };
- /**
- * Wrap some method to add more feature
- * @param {string} methodName
- * @param {Function} injectFunction
- */
-
-
- listProto.wrapMethod = function (methodName, injectFunction) {
- var originalMethod = this[methodName];
-
- if (typeof originalMethod !== 'function') {
- return;
- }
-
- this.__wrappedMethods = this.__wrappedMethods || [];
-
- this.__wrappedMethods.push(methodName);
-
- this[methodName] = function () {
- var res = originalMethod.apply(this, arguments);
- return injectFunction.apply(this, [res].concat(zrUtil.slice(arguments)));
- };
- }; // Methods that create a new list based on this list should be listed here.
- // Notice that those method should `RETURN` the new list.
-
-
- listProto.TRANSFERABLE_METHODS = ['cloneShallow', 'downSample', 'map']; // Methods that change indices of this list should be listed here.
-
- listProto.CHANGABLE_METHODS = ['filterSelf', 'selectRange'];
- var _default = List;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1404:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var graphic = __webpack_require__(906);
-
- var BoundingRect = __webpack_require__(1185);
-
- var _text = __webpack_require__(1402);
-
- var calculateTextPosition = _text.calculateTextPosition;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // Symbol factory
-
- /**
- * Triangle shape
- * @inner
- */
- var Triangle = graphic.extendShape({
- type: 'triangle',
- shape: {
- cx: 0,
- cy: 0,
- width: 0,
- height: 0
- },
- buildPath: function (path, shape) {
- var cx = shape.cx;
- var cy = shape.cy;
- var width = shape.width / 2;
- var height = shape.height / 2;
- path.moveTo(cx, cy - height);
- path.lineTo(cx + width, cy + height);
- path.lineTo(cx - width, cy + height);
- path.closePath();
- }
- });
- /**
- * Diamond shape
- * @inner
- */
-
- var Diamond = graphic.extendShape({
- type: 'diamond',
- shape: {
- cx: 0,
- cy: 0,
- width: 0,
- height: 0
- },
- buildPath: function (path, shape) {
- var cx = shape.cx;
- var cy = shape.cy;
- var width = shape.width / 2;
- var height = shape.height / 2;
- path.moveTo(cx, cy - height);
- path.lineTo(cx + width, cy);
- path.lineTo(cx, cy + height);
- path.lineTo(cx - width, cy);
- path.closePath();
- }
- });
- /**
- * Pin shape
- * @inner
- */
-
- var Pin = graphic.extendShape({
- type: 'pin',
- shape: {
- // x, y on the cusp
- x: 0,
- y: 0,
- width: 0,
- height: 0
- },
- buildPath: function (path, shape) {
- var x = shape.x;
- var y = shape.y;
- var w = shape.width / 5 * 3; // Height must be larger than width
-
- var h = Math.max(w, shape.height);
- var r = w / 2; // Dist on y with tangent point and circle center
-
- var dy = r * r / (h - r);
- var cy = y - h + r + dy;
- var angle = Math.asin(dy / r); // Dist on x with tangent point and circle center
-
- var dx = Math.cos(angle) * r;
- var tanX = Math.sin(angle);
- var tanY = Math.cos(angle);
- var cpLen = r * 0.6;
- var cpLen2 = r * 0.7;
- path.moveTo(x - dx, cy + dy);
- path.arc(x, cy, r, Math.PI - angle, Math.PI * 2 + angle);
- path.bezierCurveTo(x + dx - tanX * cpLen, cy + dy + tanY * cpLen, x, y - cpLen2, x, y);
- path.bezierCurveTo(x, y - cpLen2, x - dx + tanX * cpLen, cy + dy + tanY * cpLen, x - dx, cy + dy);
- path.closePath();
- }
- });
- /**
- * Arrow shape
- * @inner
- */
-
- var Arrow = graphic.extendShape({
- type: 'arrow',
- shape: {
- x: 0,
- y: 0,
- width: 0,
- height: 0
- },
- buildPath: function (ctx, shape) {
- var height = shape.height;
- var width = shape.width;
- var x = shape.x;
- var y = shape.y;
- var dx = width / 3 * 2;
- ctx.moveTo(x, y);
- ctx.lineTo(x + dx, y + height);
- ctx.lineTo(x, y + height / 4 * 3);
- ctx.lineTo(x - dx, y + height);
- ctx.lineTo(x, y);
- ctx.closePath();
- }
- });
- /**
- * Map of path contructors
- * @type {Object.<string, module:zrender/graphic/Path>}
- */
-
- var symbolCtors = {
- line: graphic.Line,
- rect: graphic.Rect,
- roundRect: graphic.Rect,
- square: graphic.Rect,
- circle: graphic.Circle,
- diamond: Diamond,
- pin: Pin,
- arrow: Arrow,
- triangle: Triangle
- };
- var symbolShapeMakers = {
- line: function (x, y, w, h, shape) {
- // FIXME
- shape.x1 = x;
- shape.y1 = y + h / 2;
- shape.x2 = x + w;
- shape.y2 = y + h / 2;
- },
- rect: function (x, y, w, h, shape) {
- shape.x = x;
- shape.y = y;
- shape.width = w;
- shape.height = h;
- },
- roundRect: function (x, y, w, h, shape) {
- shape.x = x;
- shape.y = y;
- shape.width = w;
- shape.height = h;
- shape.r = Math.min(w, h) / 4;
- },
- square: function (x, y, w, h, shape) {
- var size = Math.min(w, h);
- shape.x = x;
- shape.y = y;
- shape.width = size;
- shape.height = size;
- },
- circle: function (x, y, w, h, shape) {
- // Put circle in the center of square
- shape.cx = x + w / 2;
- shape.cy = y + h / 2;
- shape.r = Math.min(w, h) / 2;
- },
- diamond: function (x, y, w, h, shape) {
- shape.cx = x + w / 2;
- shape.cy = y + h / 2;
- shape.width = w;
- shape.height = h;
- },
- pin: function (x, y, w, h, shape) {
- shape.x = x + w / 2;
- shape.y = y + h / 2;
- shape.width = w;
- shape.height = h;
- },
- arrow: function (x, y, w, h, shape) {
- shape.x = x + w / 2;
- shape.y = y + h / 2;
- shape.width = w;
- shape.height = h;
- },
- triangle: function (x, y, w, h, shape) {
- shape.cx = x + w / 2;
- shape.cy = y + h / 2;
- shape.width = w;
- shape.height = h;
- }
- };
- var symbolBuildProxies = {};
- zrUtil.each(symbolCtors, function (Ctor, name) {
- symbolBuildProxies[name] = new Ctor();
- });
- var SymbolClz = graphic.extendShape({
- type: 'symbol',
- shape: {
- symbolType: '',
- x: 0,
- y: 0,
- width: 0,
- height: 0
- },
- calculateTextPosition: function (out, style, rect) {
- var res = calculateTextPosition(out, style, rect);
- var shape = this.shape;
-
- if (shape && shape.symbolType === 'pin' && style.textPosition === 'inside') {
- res.y = rect.y + rect.height * 0.4;
- }
-
- return res;
- },
- buildPath: function (ctx, shape, inBundle) {
- var symbolType = shape.symbolType;
-
- if (symbolType !== 'none') {
- var proxySymbol = symbolBuildProxies[symbolType];
-
- if (!proxySymbol) {
- // Default rect
- symbolType = 'rect';
- proxySymbol = symbolBuildProxies[symbolType];
- }
-
- symbolShapeMakers[symbolType](shape.x, shape.y, shape.width, shape.height, proxySymbol.shape);
- proxySymbol.buildPath(ctx, proxySymbol.shape, inBundle);
- }
- }
- }); // Provide setColor helper method to avoid determine if set the fill or stroke outside
-
- function symbolPathSetColor(color, innerColor) {
- if (this.type !== 'image') {
- var symbolStyle = this.style;
- var symbolShape = this.shape;
-
- if (symbolShape && symbolShape.symbolType === 'line') {
- symbolStyle.stroke = color;
- } else if (this.__isEmptyBrush) {
- symbolStyle.stroke = color;
- symbolStyle.fill = innerColor || '#fff';
- } else {
- // FIXME 判断图形默认是填充还是描边,使用 onlyStroke ?
- symbolStyle.fill && (symbolStyle.fill = color);
- symbolStyle.stroke && (symbolStyle.stroke = color);
- }
-
- this.dirty(false);
- }
- }
- /**
- * Create a symbol element with given symbol configuration: shape, x, y, width, height, color
- * @param {string} symbolType
- * @param {number} x
- * @param {number} y
- * @param {number} w
- * @param {number} h
- * @param {string} color
- * @param {boolean} [keepAspect=false] whether to keep the ratio of w/h,
- * for path and image only.
- */
-
-
- function createSymbol(symbolType, x, y, w, h, color, keepAspect) {
- // TODO Support image object, DynamicImage.
- var isEmpty = symbolType.indexOf('empty') === 0;
-
- if (isEmpty) {
- symbolType = symbolType.substr(5, 1).toLowerCase() + symbolType.substr(6);
- }
-
- var symbolPath;
-
- if (symbolType.indexOf('image://') === 0) {
- symbolPath = graphic.makeImage(symbolType.slice(8), new BoundingRect(x, y, w, h), keepAspect ? 'center' : 'cover');
- } else if (symbolType.indexOf('path://') === 0) {
- symbolPath = graphic.makePath(symbolType.slice(7), {}, new BoundingRect(x, y, w, h), keepAspect ? 'center' : 'cover');
- } else {
- symbolPath = new SymbolClz({
- shape: {
- symbolType: symbolType,
- x: x,
- y: y,
- width: w,
- height: h
- }
- });
- }
-
- symbolPath.__isEmptyBrush = isEmpty;
- symbolPath.setColor = symbolPathSetColor;
- symbolPath.setColor(color);
- return symbolPath;
- }
-
- exports.createSymbol = createSymbol;
-
- /***/ }),
-
- /***/ 1414:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var coordinateSystemCreators = {};
-
- function CoordinateSystemManager() {
- this._coordinateSystems = [];
- }
-
- CoordinateSystemManager.prototype = {
- constructor: CoordinateSystemManager,
- create: function (ecModel, api) {
- var coordinateSystems = [];
- zrUtil.each(coordinateSystemCreators, function (creater, type) {
- var list = creater.create(ecModel, api);
- coordinateSystems = coordinateSystems.concat(list || []);
- });
- this._coordinateSystems = coordinateSystems;
- },
- update: function (ecModel, api) {
- zrUtil.each(this._coordinateSystems, function (coordSys) {
- coordSys.update && coordSys.update(ecModel, api);
- });
- },
- getCoordinateSystems: function () {
- return this._coordinateSystems.slice();
- }
- };
-
- CoordinateSystemManager.register = function (type, coordinateSystemCreator) {
- coordinateSystemCreators[type] = coordinateSystemCreator;
- };
-
- CoordinateSystemManager.get = function (type) {
- return coordinateSystemCreators[type];
- };
-
- var _default = CoordinateSystemManager;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1415:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var zrUtil = __webpack_require__(864);
-
- var OrdinalScale = __webpack_require__(2551);
-
- var IntervalScale = __webpack_require__(1788);
-
- var Scale = __webpack_require__(1787);
-
- var numberUtil = __webpack_require__(985);
-
- var _barGrid = __webpack_require__(1789);
-
- var prepareLayoutBarSeries = _barGrid.prepareLayoutBarSeries;
- var makeColumnLayout = _barGrid.makeColumnLayout;
- var retrieveColumnLayout = _barGrid.retrieveColumnLayout;
-
- var BoundingRect = __webpack_require__(1185);
-
- __webpack_require__(2552);
-
- __webpack_require__(2288);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Get axis scale extent before niced.
- * Item of returned array can only be number (including Infinity and NaN).
- */
- function getScaleExtent(scale, model) {
- var scaleType = scale.type;
- var min = model.getMin();
- var max = model.getMax();
- var fixMin = min != null;
- var fixMax = max != null;
- var originalExtent = scale.getExtent();
- var axisDataLen;
- var boundaryGap;
- var span;
-
- if (scaleType === 'ordinal') {
- axisDataLen = model.getCategories().length;
- } else {
- boundaryGap = model.get('boundaryGap');
-
- if (!zrUtil.isArray(boundaryGap)) {
- boundaryGap = [boundaryGap || 0, boundaryGap || 0];
- }
-
- if (typeof boundaryGap[0] === 'boolean') {
- boundaryGap = [0, 0];
- }
-
- boundaryGap[0] = numberUtil.parsePercent(boundaryGap[0], 1);
- boundaryGap[1] = numberUtil.parsePercent(boundaryGap[1], 1);
- span = originalExtent[1] - originalExtent[0] || Math.abs(originalExtent[0]);
- } // Notice: When min/max is not set (that is, when there are null/undefined,
- // which is the most common case), these cases should be ensured:
- // (1) For 'ordinal', show all axis.data.
- // (2) For others:
- // + `boundaryGap` is applied (if min/max set, boundaryGap is
- // disabled).
- // + If `needCrossZero`, min/max should be zero, otherwise, min/max should
- // be the result that originalExtent enlarged by boundaryGap.
- // (3) If no data, it should be ensured that `scale.setBlank` is set.
- // FIXME
- // (1) When min/max is 'dataMin' or 'dataMax', should boundaryGap be able to used?
- // (2) When `needCrossZero` and all data is positive/negative, should it be ensured
- // that the results processed by boundaryGap are positive/negative?
-
-
- if (min == null) {
- min = scaleType === 'ordinal' ? axisDataLen ? 0 : NaN : originalExtent[0] - boundaryGap[0] * span;
- }
-
- if (max == null) {
- max = scaleType === 'ordinal' ? axisDataLen ? axisDataLen - 1 : NaN : originalExtent[1] + boundaryGap[1] * span;
- }
-
- if (min === 'dataMin') {
- min = originalExtent[0];
- } else if (typeof min === 'function') {
- min = min({
- min: originalExtent[0],
- max: originalExtent[1]
- });
- }
-
- if (max === 'dataMax') {
- max = originalExtent[1];
- } else if (typeof max === 'function') {
- max = max({
- min: originalExtent[0],
- max: originalExtent[1]
- });
- }
-
- (min == null || !isFinite(min)) && (min = NaN);
- (max == null || !isFinite(max)) && (max = NaN);
- scale.setBlank(zrUtil.eqNaN(min) || zrUtil.eqNaN(max) || scaleType === 'ordinal' && !scale.getOrdinalMeta().categories.length); // Evaluate if axis needs cross zero
-
- if (model.getNeedCrossZero()) {
- // Axis is over zero and min is not set
- if (min > 0 && max > 0 && !fixMin) {
- min = 0;
- } // Axis is under zero and max is not set
-
-
- if (min < 0 && max < 0 && !fixMax) {
- max = 0;
- }
- } // If bars are placed on a base axis of type time or interval account for axis boundary overflow and current axis
- // is base axis
- // FIXME
- // (1) Consider support value axis, where below zero and axis `onZero` should be handled properly.
- // (2) Refactor the logic with `barGrid`. Is it not need to `makeBarWidthAndOffsetInfo` twice with different extent?
- // Should not depend on series type `bar`?
- // (3) Fix that might overlap when using dataZoom.
- // (4) Consider other chart types using `barGrid`?
- // See #6728, #4862, `test/bar-overflow-time-plot.html`
-
-
- var ecModel = model.ecModel;
-
- if (ecModel && scaleType === 'time'
- /*|| scaleType === 'interval' */
- ) {
- var barSeriesModels = prepareLayoutBarSeries('bar', ecModel);
- var isBaseAxisAndHasBarSeries;
- zrUtil.each(barSeriesModels, function (seriesModel) {
- isBaseAxisAndHasBarSeries |= seriesModel.getBaseAxis() === model.axis;
- });
-
- if (isBaseAxisAndHasBarSeries) {
- // Calculate placement of bars on axis
- var barWidthAndOffset = makeColumnLayout(barSeriesModels); // Adjust axis min and max to account for overflow
-
- var adjustedScale = adjustScaleForOverflow(min, max, model, barWidthAndOffset);
- min = adjustedScale.min;
- max = adjustedScale.max;
- }
- }
-
- return [min, max];
- }
-
- function adjustScaleForOverflow(min, max, model, barWidthAndOffset) {
- // Get Axis Length
- var axisExtent = model.axis.getExtent();
- var axisLength = axisExtent[1] - axisExtent[0]; // Get bars on current base axis and calculate min and max overflow
-
- var barsOnCurrentAxis = retrieveColumnLayout(barWidthAndOffset, model.axis);
-
- if (barsOnCurrentAxis === undefined) {
- return {
- min: min,
- max: max
- };
- }
-
- var minOverflow = Infinity;
- zrUtil.each(barsOnCurrentAxis, function (item) {
- minOverflow = Math.min(item.offset, minOverflow);
- });
- var maxOverflow = -Infinity;
- zrUtil.each(barsOnCurrentAxis, function (item) {
- maxOverflow = Math.max(item.offset + item.width, maxOverflow);
- });
- minOverflow = Math.abs(minOverflow);
- maxOverflow = Math.abs(maxOverflow);
- var totalOverFlow = minOverflow + maxOverflow; // Calulate required buffer based on old range and overflow
-
- var oldRange = max - min;
- var oldRangePercentOfNew = 1 - (minOverflow + maxOverflow) / axisLength;
- var overflowBuffer = oldRange / oldRangePercentOfNew - oldRange;
- max += overflowBuffer * (maxOverflow / totalOverFlow);
- min -= overflowBuffer * (minOverflow / totalOverFlow);
- return {
- min: min,
- max: max
- };
- }
-
- function niceScaleExtent(scale, model) {
- var extent = getScaleExtent(scale, model);
- var fixMin = model.getMin() != null;
- var fixMax = model.getMax() != null;
- var splitNumber = model.get('splitNumber');
-
- if (scale.type === 'log') {
- scale.base = model.get('logBase');
- }
-
- var scaleType = scale.type;
- scale.setExtent(extent[0], extent[1]);
- scale.niceExtent({
- splitNumber: splitNumber,
- fixMin: fixMin,
- fixMax: fixMax,
- minInterval: scaleType === 'interval' || scaleType === 'time' ? model.get('minInterval') : null,
- maxInterval: scaleType === 'interval' || scaleType === 'time' ? model.get('maxInterval') : null
- }); // If some one specified the min, max. And the default calculated interval
- // is not good enough. He can specify the interval. It is often appeared
- // in angle axis with angle 0 - 360. Interval calculated in interval scale is hard
- // to be 60.
- // FIXME
-
- var interval = model.get('interval');
-
- if (interval != null) {
- scale.setInterval && scale.setInterval(interval);
- }
- }
- /**
- * @param {module:echarts/model/Model} model
- * @param {string} [axisType] Default retrieve from model.type
- * @return {module:echarts/scale/*}
- */
-
-
- function createScaleByModel(model, axisType) {
- axisType = axisType || model.get('type');
-
- if (axisType) {
- switch (axisType) {
- // Buildin scale
- case 'category':
- return new OrdinalScale(model.getOrdinalMeta ? model.getOrdinalMeta() : model.getCategories(), [Infinity, -Infinity]);
-
- case 'value':
- return new IntervalScale();
- // Extended scale, like time and log
-
- default:
- return (Scale.getClass(axisType) || IntervalScale).create(model);
- }
- }
- }
- /**
- * Check if the axis corss 0
- */
-
-
- function ifAxisCrossZero(axis) {
- var dataExtent = axis.scale.getExtent();
- var min = dataExtent[0];
- var max = dataExtent[1];
- return !(min > 0 && max > 0 || min < 0 && max < 0);
- }
- /**
- * @param {module:echarts/coord/Axis} axis
- * @return {Function} Label formatter function.
- * param: {number} tickValue,
- * param: {number} idx, the index in all ticks.
- * If category axis, this param is not requied.
- * return: {string} label string.
- */
-
-
- function makeLabelFormatter(axis) {
- var labelFormatter = axis.getLabelModel().get('formatter');
- var categoryTickStart = axis.type === 'category' ? axis.scale.getExtent()[0] : null;
-
- if (typeof labelFormatter === 'string') {
- labelFormatter = function (tpl) {
- return function (val) {
- // For category axis, get raw value; for numeric axis,
- // get foramtted label like '1,333,444'.
- val = axis.scale.getLabel(val);
- return tpl.replace('{value}', val != null ? val : '');
- };
- }(labelFormatter); // Consider empty array
-
-
- return labelFormatter;
- } else if (typeof labelFormatter === 'function') {
- return function (tickValue, idx) {
- // The original intention of `idx` is "the index of the tick in all ticks".
- // But the previous implementation of category axis do not consider the
- // `axisLabel.interval`, which cause that, for example, the `interval` is
- // `1`, then the ticks "name5", "name7", "name9" are displayed, where the
- // corresponding `idx` are `0`, `2`, `4`, but not `0`, `1`, `2`. So we keep
- // the definition here for back compatibility.
- if (categoryTickStart != null) {
- idx = tickValue - categoryTickStart;
- }
-
- return labelFormatter(getAxisRawValue(axis, tickValue), idx);
- };
- } else {
- return function (tick) {
- return axis.scale.getLabel(tick);
- };
- }
- }
-
- function getAxisRawValue(axis, value) {
- // In category axis with data zoom, tick is not the original
- // index of axis.data. So tick should not be exposed to user
- // in category axis.
- return axis.type === 'category' ? axis.scale.getLabel(value) : value;
- }
- /**
- * @param {module:echarts/coord/Axis} axis
- * @return {module:zrender/core/BoundingRect} Be null/undefined if no labels.
- */
-
-
- function estimateLabelUnionRect(axis) {
- var axisModel = axis.model;
- var scale = axis.scale;
-
- if (!axisModel.get('axisLabel.show') || scale.isBlank()) {
- return;
- }
-
- var isCategory = axis.type === 'category';
- var realNumberScaleTicks;
- var tickCount;
- var categoryScaleExtent = scale.getExtent(); // Optimize for large category data, avoid call `getTicks()`.
-
- if (isCategory) {
- tickCount = scale.count();
- } else {
- realNumberScaleTicks = scale.getTicks();
- tickCount = realNumberScaleTicks.length;
- }
-
- var axisLabelModel = axis.getLabelModel();
- var labelFormatter = makeLabelFormatter(axis);
- var rect;
- var step = 1; // Simple optimization for large amount of labels
-
- if (tickCount > 40) {
- step = Math.ceil(tickCount / 40);
- }
-
- for (var i = 0; i < tickCount; i += step) {
- var tickValue = realNumberScaleTicks ? realNumberScaleTicks[i] : categoryScaleExtent[0] + i;
- var label = labelFormatter(tickValue);
- var unrotatedSingleRect = axisLabelModel.getTextRect(label);
- var singleRect = rotateTextRect(unrotatedSingleRect, axisLabelModel.get('rotate') || 0);
- rect ? rect.union(singleRect) : rect = singleRect;
- }
-
- return rect;
- }
-
- function rotateTextRect(textRect, rotate) {
- var rotateRadians = rotate * Math.PI / 180;
- var boundingBox = textRect.plain();
- var beforeWidth = boundingBox.width;
- var beforeHeight = boundingBox.height;
- var afterWidth = beforeWidth * Math.cos(rotateRadians) + beforeHeight * Math.sin(rotateRadians);
- var afterHeight = beforeWidth * Math.sin(rotateRadians) + beforeHeight * Math.cos(rotateRadians);
- var rotatedRect = new BoundingRect(boundingBox.x, boundingBox.y, afterWidth, afterHeight);
- return rotatedRect;
- }
- /**
- * @param {module:echarts/src/model/Model} model axisLabelModel or axisTickModel
- * @return {number|String} Can be null|'auto'|number|function
- */
-
-
- function getOptionCategoryInterval(model) {
- var interval = model.get('interval');
- return interval == null ? 'auto' : interval;
- }
- /**
- * Set `categoryInterval` as 0 implicitly indicates that
- * show all labels reguardless of overlap.
- * @param {Object} axis axisModel.axis
- * @return {boolean}
- */
-
-
- function shouldShowAllLabels(axis) {
- return axis.type === 'category' && getOptionCategoryInterval(axis.getLabelModel()) === 0;
- }
-
- exports.getScaleExtent = getScaleExtent;
- exports.niceScaleExtent = niceScaleExtent;
- exports.createScaleByModel = createScaleByModel;
- exports.ifAxisCrossZero = ifAxisCrossZero;
- exports.makeLabelFormatter = makeLabelFormatter;
- exports.getAxisRawValue = getAxisRawValue;
- exports.estimateLabelUnionRect = estimateLabelUnionRect;
- exports.getOptionCategoryInterval = getOptionCategoryInterval;
- exports.shouldShowAllLabels = shouldShowAllLabels;
-
- /***/ }),
-
- /***/ 1437:
- /***/ (function(module, exports, __webpack_require__) {
-
- var Eventful = __webpack_require__(1516);
-
- exports.Dispatcher = Eventful;
-
- var env = __webpack_require__(1316);
-
- var _fourPointsTransform = __webpack_require__(2510);
-
- var buildTransformer = _fourPointsTransform.buildTransformer;
-
- /**
- * Utilities for mouse or touch events.
- */
- var isDomLevel2 = typeof window !== 'undefined' && !!window.addEventListener;
- var MOUSE_EVENT_REG = /^(?:mouse|pointer|contextmenu|drag|drop)|click/;
- var EVENT_SAVED_PROP = '___zrEVENTSAVED';
- var _calcOut = [];
- /**
- * Get the `zrX` and `zrY`, which are relative to the top-left of
- * the input `el`.
- * CSS transform (2D & 3D) is supported.
- *
- * The strategy to fetch the coords:
- * + If `calculate` is not set as `true`, users of this method should
- * ensure that `el` is the same or the same size & location as `e.target`.
- * Otherwise the result coords are probably not expected. Because we
- * firstly try to get coords from e.offsetX/e.offsetY.
- * + If `calculate` is set as `true`, the input `el` can be any element
- * and we force to calculate the coords based on `el`.
- * + The input `el` should be positionable (not position:static).
- *
- * The force `calculate` can be used in case like:
- * When mousemove event triggered on ec tooltip, `e.target` is not `el`(zr painter.dom).
- *
- * @param {HTMLElement} el DOM element.
- * @param {Event} e Mouse event or touch event.
- * @param {Object} out Get `out.zrX` and `out.zrY` as the result.
- * @param {boolean} [calculate=false] Whether to force calculate
- * the coordinates but not use ones provided by browser.
- */
-
- function clientToLocal(el, e, out, calculate) {
- out = out || {}; // According to the W3C Working Draft, offsetX and offsetY should be relative
- // to the padding edge of the target element. The only browser using this convention
- // is IE. Webkit uses the border edge, Opera uses the content edge, and FireFox does
- // not support the properties.
- // (see http://www.jacklmoore.com/notes/mouse-position/)
- // In zr painter.dom, padding edge equals to border edge.
-
- if (calculate || !env.canvasSupported) {
- calculateZrXY(el, e, out);
- } // Caution: In FireFox, layerX/layerY Mouse position relative to the closest positioned
- // ancestor element, so we should make sure el is positioned (e.g., not position:static).
- // BTW1, Webkit don't return the same results as FF in non-simple cases (like add
- // zoom-factor, overflow / opacity layers, transforms ...)
- // BTW2, (ev.offsetY || ev.pageY - $(ev.target).offset().top) is not correct in preserve-3d.
- // <https://bugs.jquery.com/ticket/8523#comment:14>
- // BTW3, In ff, offsetX/offsetY is always 0.
- else if (env.browser.firefox && e.layerX != null && e.layerX !== e.offsetX) {
- out.zrX = e.layerX;
- out.zrY = e.layerY;
- } // For IE6+, chrome, safari, opera. (When will ff support offsetX?)
- else if (e.offsetX != null) {
- out.zrX = e.offsetX;
- out.zrY = e.offsetY;
- } // For some other device, e.g., IOS safari.
- else {
- calculateZrXY(el, e, out);
- }
-
- return out;
- }
-
- function calculateZrXY(el, e, out) {
- // BlackBerry 5, iOS 3 (original iPhone) don't have getBoundingRect.
- if (el.getBoundingClientRect && env.domSupported) {
- var ex = e.clientX;
- var ey = e.clientY;
-
- if (el.nodeName.toUpperCase() === 'CANVAS') {
- // Original approach, which do not support CSS transform.
- // marker can not be locationed in a canvas container
- // (getBoundingClientRect is always 0). We do not support
- // that input a pre-created canvas to zr while using css
- // transform in iOS.
- var box = el.getBoundingClientRect();
- out.zrX = ex - box.left;
- out.zrY = ey - box.top;
- return;
- } else {
- var saved = el[EVENT_SAVED_PROP] || (el[EVENT_SAVED_PROP] = {});
- var transformer = preparePointerTransformer(prepareCoordMarkers(el, saved), saved);
-
- if (transformer) {
- transformer(_calcOut, ex, ey);
- out.zrX = _calcOut[0];
- out.zrY = _calcOut[1];
- return;
- }
- }
- }
-
- out.zrX = out.zrY = 0;
- }
-
- function prepareCoordMarkers(el, saved) {
- var markers = saved.markers;
-
- if (markers) {
- return markers;
- }
-
- markers = saved.markers = [];
- var propLR = ['left', 'right'];
- var propTB = ['top', 'bottom'];
-
- for (var i = 0; i < 4; i++) {
- var marker = document.createElement('div');
- var stl = marker.style;
- var idxLR = i % 2;
- var idxTB = (i >> 1) % 2;
- stl.cssText = ['position:absolute', 'visibility: hidden', 'padding: 0', 'margin: 0', 'border-width: 0', 'width:0', 'height:0', // 'width: 5px',
- // 'height: 5px',
- propLR[idxLR] + ':0', propTB[idxTB] + ':0', propLR[1 - idxLR] + ':auto', propTB[1 - idxTB] + ':auto', ''].join('!important;');
- el.appendChild(marker);
- markers.push(marker);
- }
-
- return markers;
- }
-
- function preparePointerTransformer(markers, saved) {
- var transformer = saved.transformer;
- var oldSrcCoords = saved.srcCoords;
- var useOld = true;
- var srcCoords = [];
- var destCoords = [];
-
- for (var i = 0; i < 4; i++) {
- var rect = markers[i].getBoundingClientRect();
- var ii = 2 * i;
- var x = rect.left;
- var y = rect.top;
- srcCoords.push(x, y);
- useOld &= oldSrcCoords && x === oldSrcCoords[ii] && y === oldSrcCoords[ii + 1];
- destCoords.push(markers[i].offsetLeft, markers[i].offsetTop);
- } // Cache to avoid time consuming of `buildTransformer`.
-
-
- return useOld ? transformer : (saved.srcCoords = srcCoords, saved.transformer = buildTransformer(srcCoords, destCoords));
- }
- /**
- * Find native event compat for legency IE.
- * Should be called at the begining of a native event listener.
- *
- * @param {Event} [e] Mouse event or touch event or pointer event.
- * For lagency IE, we use `window.event` is used.
- * @return {Event} The native event.
- */
-
-
- function getNativeEvent(e) {
- return e || window.event;
- }
- /**
- * Normalize the coordinates of the input event.
- *
- * Get the `e.zrX` and `e.zrY`, which are relative to the top-left of
- * the input `el`.
- * Get `e.zrDelta` if using mouse wheel.
- * Get `e.which`, see the comment inside this function.
- *
- * Do not calculate repeatly if `zrX` and `zrY` already exist.
- *
- * Notice: see comments in `clientToLocal`. check the relationship
- * between the result coords and the parameters `el` and `calculate`.
- *
- * @param {HTMLElement} el DOM element.
- * @param {Event} [e] See `getNativeEvent`.
- * @param {boolean} [calculate=false] Whether to force calculate
- * the coordinates but not use ones provided by browser.
- * @return {UIEvent} The normalized native UIEvent.
- */
-
-
- function normalizeEvent(el, e, calculate) {
- e = getNativeEvent(e);
-
- if (e.zrX != null) {
- return e;
- }
-
- var eventType = e.type;
- var isTouch = eventType && eventType.indexOf('touch') >= 0;
-
- if (!isTouch) {
- clientToLocal(el, e, e, calculate);
- e.zrDelta = e.wheelDelta ? e.wheelDelta / 120 : -(e.detail || 0) / 3;
- } else {
- var touch = eventType !== 'touchend' ? e.targetTouches[0] : e.changedTouches[0];
- touch && clientToLocal(el, touch, e, calculate);
- } // Add which for click: 1 === left; 2 === middle; 3 === right; otherwise: 0;
- // See jQuery: https://github.com/jquery/jquery/blob/master/src/event.js
- // If e.which has been defined, it may be readonly,
- // see: https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/which
-
-
- var button = e.button;
-
- if (e.which == null && button !== undefined && MOUSE_EVENT_REG.test(e.type)) {
- e.which = button & 1 ? 1 : button & 2 ? 3 : button & 4 ? 2 : 0;
- } // [Caution]: `e.which` from browser is not always reliable. For example,
- // when press left button and `mousemove (pointermove)` in Edge, the `e.which`
- // is 65536 and the `e.button` is -1. But the `mouseup (pointerup)` and
- // `mousedown (pointerdown)` is the same as Chrome does.
-
-
- return e;
- }
- /**
- * @param {HTMLElement} el
- * @param {string} name
- * @param {Function} handler
- * @param {Object|boolean} opt If boolean, means `opt.capture`
- * @param {boolean} [opt.capture=false]
- * @param {boolean} [opt.passive=false]
- */
-
-
- function addEventListener(el, name, handler, opt) {
- if (isDomLevel2) {
- // Reproduct the console warning:
- // [Violation] Added non-passive event listener to a scroll-blocking <some> event.
- // Consider marking event handler as 'passive' to make the page more responsive.
- // Just set console log level: verbose in chrome dev tool.
- // then the warning log will be printed when addEventListener called.
- // See https://github.com/WICG/EventListenerOptions/blob/gh-pages/explainer.md
- // We have not yet found a neat way to using passive. Because in zrender the dom event
- // listener delegate all of the upper events of element. Some of those events need
- // to prevent default. For example, the feature `preventDefaultMouseMove` of echarts.
- // Before passive can be adopted, these issues should be considered:
- // (1) Whether and how a zrender user specifies an event listener passive. And by default,
- // passive or not.
- // (2) How to tread that some zrender event listener is passive, and some is not. If
- // we use other way but not preventDefault of mousewheel and touchmove, browser
- // compatibility should be handled.
- // var opts = (env.passiveSupported && name === 'mousewheel')
- // ? {passive: true}
- // // By default, the third param of el.addEventListener is `capture: false`.
- // : void 0;
- // el.addEventListener(name, handler /* , opts */);
- el.addEventListener(name, handler, opt);
- } else {
- // For simplicity, do not implement `setCapture` for IE9-.
- el.attachEvent('on' + name, handler);
- }
- }
- /**
- * Parameter are the same as `addEventListener`.
- *
- * Notice that if a listener is registered twice, one with capture and one without,
- * remove each one separately. Removal of a capturing listener does not affect a
- * non-capturing version of the same listener, and vice versa.
- */
-
-
- function removeEventListener(el, name, handler, opt) {
- if (isDomLevel2) {
- el.removeEventListener(name, handler, opt);
- } else {
- el.detachEvent('on' + name, handler);
- }
- }
- /**
- * preventDefault and stopPropagation.
- * Notice: do not use this method in zrender. It can only be
- * used by upper applications if necessary.
- *
- * @param {Event} e A mouse or touch event.
- */
-
-
- var stop = isDomLevel2 ? function (e) {
- e.preventDefault();
- e.stopPropagation();
- e.cancelBubble = true;
- } : function (e) {
- e.returnValue = false;
- e.cancelBubble = true;
- };
- /**
- * This method only works for mouseup and mousedown. The functionality is restricted
- * for fault tolerance, See the `e.which` compatibility above.
- *
- * @param {MouseEvent} e
- * @return {boolean}
- */
-
- function isMiddleOrRightButtonOnMouseUpDown(e) {
- return e.which === 2 || e.which === 3;
- }
- /**
- * To be removed.
- * @deprecated
- */
-
-
- function notLeftMouse(e) {
- // If e.which is undefined, considered as left mouse event.
- return e.which > 1;
- } // For backward compatibility
-
-
- exports.clientToLocal = clientToLocal;
- exports.getNativeEvent = getNativeEvent;
- exports.normalizeEvent = normalizeEvent;
- exports.addEventListener = addEventListener;
- exports.removeEventListener = removeEventListener;
- exports.stop = stop;
- exports.isMiddleOrRightButtonOnMouseUpDown = isMiddleOrRightButtonOnMouseUpDown;
- exports.notLeftMouse = notLeftMouse;
-
- /***/ }),
-
- /***/ 1438:
- /***/ (function(module, exports, __webpack_require__) {
-
- var LRU = __webpack_require__(2261);
-
- var kCSSColorTable = {
- 'transparent': [0, 0, 0, 0],
- 'aliceblue': [240, 248, 255, 1],
- 'antiquewhite': [250, 235, 215, 1],
- 'aqua': [0, 255, 255, 1],
- 'aquamarine': [127, 255, 212, 1],
- 'azure': [240, 255, 255, 1],
- 'beige': [245, 245, 220, 1],
- 'bisque': [255, 228, 196, 1],
- 'black': [0, 0, 0, 1],
- 'blanchedalmond': [255, 235, 205, 1],
- 'blue': [0, 0, 255, 1],
- 'blueviolet': [138, 43, 226, 1],
- 'brown': [165, 42, 42, 1],
- 'burlywood': [222, 184, 135, 1],
- 'cadetblue': [95, 158, 160, 1],
- 'chartreuse': [127, 255, 0, 1],
- 'chocolate': [210, 105, 30, 1],
- 'coral': [255, 127, 80, 1],
- 'cornflowerblue': [100, 149, 237, 1],
- 'cornsilk': [255, 248, 220, 1],
- 'crimson': [220, 20, 60, 1],
- 'cyan': [0, 255, 255, 1],
- 'darkblue': [0, 0, 139, 1],
- 'darkcyan': [0, 139, 139, 1],
- 'darkgoldenrod': [184, 134, 11, 1],
- 'darkgray': [169, 169, 169, 1],
- 'darkgreen': [0, 100, 0, 1],
- 'darkgrey': [169, 169, 169, 1],
- 'darkkhaki': [189, 183, 107, 1],
- 'darkmagenta': [139, 0, 139, 1],
- 'darkolivegreen': [85, 107, 47, 1],
- 'darkorange': [255, 140, 0, 1],
- 'darkorchid': [153, 50, 204, 1],
- 'darkred': [139, 0, 0, 1],
- 'darksalmon': [233, 150, 122, 1],
- 'darkseagreen': [143, 188, 143, 1],
- 'darkslateblue': [72, 61, 139, 1],
- 'darkslategray': [47, 79, 79, 1],
- 'darkslategrey': [47, 79, 79, 1],
- 'darkturquoise': [0, 206, 209, 1],
- 'darkviolet': [148, 0, 211, 1],
- 'deeppink': [255, 20, 147, 1],
- 'deepskyblue': [0, 191, 255, 1],
- 'dimgray': [105, 105, 105, 1],
- 'dimgrey': [105, 105, 105, 1],
- 'dodgerblue': [30, 144, 255, 1],
- 'firebrick': [178, 34, 34, 1],
- 'floralwhite': [255, 250, 240, 1],
- 'forestgreen': [34, 139, 34, 1],
- 'fuchsia': [255, 0, 255, 1],
- 'gainsboro': [220, 220, 220, 1],
- 'ghostwhite': [248, 248, 255, 1],
- 'gold': [255, 215, 0, 1],
- 'goldenrod': [218, 165, 32, 1],
- 'gray': [128, 128, 128, 1],
- 'green': [0, 128, 0, 1],
- 'greenyellow': [173, 255, 47, 1],
- 'grey': [128, 128, 128, 1],
- 'honeydew': [240, 255, 240, 1],
- 'hotpink': [255, 105, 180, 1],
- 'indianred': [205, 92, 92, 1],
- 'indigo': [75, 0, 130, 1],
- 'ivory': [255, 255, 240, 1],
- 'khaki': [240, 230, 140, 1],
- 'lavender': [230, 230, 250, 1],
- 'lavenderblush': [255, 240, 245, 1],
- 'lawngreen': [124, 252, 0, 1],
- 'lemonchiffon': [255, 250, 205, 1],
- 'lightblue': [173, 216, 230, 1],
- 'lightcoral': [240, 128, 128, 1],
- 'lightcyan': [224, 255, 255, 1],
- 'lightgoldenrodyellow': [250, 250, 210, 1],
- 'lightgray': [211, 211, 211, 1],
- 'lightgreen': [144, 238, 144, 1],
- 'lightgrey': [211, 211, 211, 1],
- 'lightpink': [255, 182, 193, 1],
- 'lightsalmon': [255, 160, 122, 1],
- 'lightseagreen': [32, 178, 170, 1],
- 'lightskyblue': [135, 206, 250, 1],
- 'lightslategray': [119, 136, 153, 1],
- 'lightslategrey': [119, 136, 153, 1],
- 'lightsteelblue': [176, 196, 222, 1],
- 'lightyellow': [255, 255, 224, 1],
- 'lime': [0, 255, 0, 1],
- 'limegreen': [50, 205, 50, 1],
- 'linen': [250, 240, 230, 1],
- 'magenta': [255, 0, 255, 1],
- 'maroon': [128, 0, 0, 1],
- 'mediumaquamarine': [102, 205, 170, 1],
- 'mediumblue': [0, 0, 205, 1],
- 'mediumorchid': [186, 85, 211, 1],
- 'mediumpurple': [147, 112, 219, 1],
- 'mediumseagreen': [60, 179, 113, 1],
- 'mediumslateblue': [123, 104, 238, 1],
- 'mediumspringgreen': [0, 250, 154, 1],
- 'mediumturquoise': [72, 209, 204, 1],
- 'mediumvioletred': [199, 21, 133, 1],
- 'midnightblue': [25, 25, 112, 1],
- 'mintcream': [245, 255, 250, 1],
- 'mistyrose': [255, 228, 225, 1],
- 'moccasin': [255, 228, 181, 1],
- 'navajowhite': [255, 222, 173, 1],
- 'navy': [0, 0, 128, 1],
- 'oldlace': [253, 245, 230, 1],
- 'olive': [128, 128, 0, 1],
- 'olivedrab': [107, 142, 35, 1],
- 'orange': [255, 165, 0, 1],
- 'orangered': [255, 69, 0, 1],
- 'orchid': [218, 112, 214, 1],
- 'palegoldenrod': [238, 232, 170, 1],
- 'palegreen': [152, 251, 152, 1],
- 'paleturquoise': [175, 238, 238, 1],
- 'palevioletred': [219, 112, 147, 1],
- 'papayawhip': [255, 239, 213, 1],
- 'peachpuff': [255, 218, 185, 1],
- 'peru': [205, 133, 63, 1],
- 'pink': [255, 192, 203, 1],
- 'plum': [221, 160, 221, 1],
- 'powderblue': [176, 224, 230, 1],
- 'purple': [128, 0, 128, 1],
- 'red': [255, 0, 0, 1],
- 'rosybrown': [188, 143, 143, 1],
- 'royalblue': [65, 105, 225, 1],
- 'saddlebrown': [139, 69, 19, 1],
- 'salmon': [250, 128, 114, 1],
- 'sandybrown': [244, 164, 96, 1],
- 'seagreen': [46, 139, 87, 1],
- 'seashell': [255, 245, 238, 1],
- 'sienna': [160, 82, 45, 1],
- 'silver': [192, 192, 192, 1],
- 'skyblue': [135, 206, 235, 1],
- 'slateblue': [106, 90, 205, 1],
- 'slategray': [112, 128, 144, 1],
- 'slategrey': [112, 128, 144, 1],
- 'snow': [255, 250, 250, 1],
- 'springgreen': [0, 255, 127, 1],
- 'steelblue': [70, 130, 180, 1],
- 'tan': [210, 180, 140, 1],
- 'teal': [0, 128, 128, 1],
- 'thistle': [216, 191, 216, 1],
- 'tomato': [255, 99, 71, 1],
- 'turquoise': [64, 224, 208, 1],
- 'violet': [238, 130, 238, 1],
- 'wheat': [245, 222, 179, 1],
- 'white': [255, 255, 255, 1],
- 'whitesmoke': [245, 245, 245, 1],
- 'yellow': [255, 255, 0, 1],
- 'yellowgreen': [154, 205, 50, 1]
- };
-
- function clampCssByte(i) {
- // Clamp to integer 0 .. 255.
- i = Math.round(i); // Seems to be what Chrome does (vs truncation).
-
- return i < 0 ? 0 : i > 255 ? 255 : i;
- }
-
- function clampCssAngle(i) {
- // Clamp to integer 0 .. 360.
- i = Math.round(i); // Seems to be what Chrome does (vs truncation).
-
- return i < 0 ? 0 : i > 360 ? 360 : i;
- }
-
- function clampCssFloat(f) {
- // Clamp to float 0.0 .. 1.0.
- return f < 0 ? 0 : f > 1 ? 1 : f;
- }
-
- function parseCssInt(str) {
- // int or percentage.
- if (str.length && str.charAt(str.length - 1) === '%') {
- return clampCssByte(parseFloat(str) / 100 * 255);
- }
-
- return clampCssByte(parseInt(str, 10));
- }
-
- function parseCssFloat(str) {
- // float or percentage.
- if (str.length && str.charAt(str.length - 1) === '%') {
- return clampCssFloat(parseFloat(str) / 100);
- }
-
- return clampCssFloat(parseFloat(str));
- }
-
- function cssHueToRgb(m1, m2, h) {
- if (h < 0) {
- h += 1;
- } else if (h > 1) {
- h -= 1;
- }
-
- if (h * 6 < 1) {
- return m1 + (m2 - m1) * h * 6;
- }
-
- if (h * 2 < 1) {
- return m2;
- }
-
- if (h * 3 < 2) {
- return m1 + (m2 - m1) * (2 / 3 - h) * 6;
- }
-
- return m1;
- }
-
- function lerpNumber(a, b, p) {
- return a + (b - a) * p;
- }
-
- function setRgba(out, r, g, b, a) {
- out[0] = r;
- out[1] = g;
- out[2] = b;
- out[3] = a;
- return out;
- }
-
- function copyRgba(out, a) {
- out[0] = a[0];
- out[1] = a[1];
- out[2] = a[2];
- out[3] = a[3];
- return out;
- }
-
- var colorCache = new LRU(20);
- var lastRemovedArr = null;
-
- function putToCache(colorStr, rgbaArr) {
- // Reuse removed array
- if (lastRemovedArr) {
- copyRgba(lastRemovedArr, rgbaArr);
- }
-
- lastRemovedArr = colorCache.put(colorStr, lastRemovedArr || rgbaArr.slice());
- }
- /**
- * @param {string} colorStr
- * @param {Array.<number>} out
- * @return {Array.<number>}
- * @memberOf module:zrender/util/color
- */
-
-
- function parse(colorStr, rgbaArr) {
- if (!colorStr) {
- return;
- }
-
- rgbaArr = rgbaArr || [];
- var cached = colorCache.get(colorStr);
-
- if (cached) {
- return copyRgba(rgbaArr, cached);
- } // colorStr may be not string
-
-
- colorStr = colorStr + ''; // Remove all whitespace, not compliant, but should just be more accepting.
-
- var str = colorStr.replace(/ /g, '').toLowerCase(); // Color keywords (and transparent) lookup.
-
- if (str in kCSSColorTable) {
- copyRgba(rgbaArr, kCSSColorTable[str]);
- putToCache(colorStr, rgbaArr);
- return rgbaArr;
- } // #abc and #abc123 syntax.
-
-
- if (str.charAt(0) === '#') {
- if (str.length === 4) {
- var iv = parseInt(str.substr(1), 16); // TODO(deanm): Stricter parsing.
-
- if (!(iv >= 0 && iv <= 0xfff)) {
- setRgba(rgbaArr, 0, 0, 0, 1);
- return; // Covers NaN.
- }
-
- setRgba(rgbaArr, (iv & 0xf00) >> 4 | (iv & 0xf00) >> 8, iv & 0xf0 | (iv & 0xf0) >> 4, iv & 0xf | (iv & 0xf) << 4, 1);
- putToCache(colorStr, rgbaArr);
- return rgbaArr;
- } else if (str.length === 7) {
- var iv = parseInt(str.substr(1), 16); // TODO(deanm): Stricter parsing.
-
- if (!(iv >= 0 && iv <= 0xffffff)) {
- setRgba(rgbaArr, 0, 0, 0, 1);
- return; // Covers NaN.
- }
-
- setRgba(rgbaArr, (iv & 0xff0000) >> 16, (iv & 0xff00) >> 8, iv & 0xff, 1);
- putToCache(colorStr, rgbaArr);
- return rgbaArr;
- }
-
- return;
- }
-
- var op = str.indexOf('(');
- var ep = str.indexOf(')');
-
- if (op !== -1 && ep + 1 === str.length) {
- var fname = str.substr(0, op);
- var params = str.substr(op + 1, ep - (op + 1)).split(',');
- var alpha = 1; // To allow case fallthrough.
-
- switch (fname) {
- case 'rgba':
- if (params.length !== 4) {
- setRgba(rgbaArr, 0, 0, 0, 1);
- return;
- }
-
- alpha = parseCssFloat(params.pop());
- // jshint ignore:line
- // Fall through.
-
- case 'rgb':
- if (params.length !== 3) {
- setRgba(rgbaArr, 0, 0, 0, 1);
- return;
- }
-
- setRgba(rgbaArr, parseCssInt(params[0]), parseCssInt(params[1]), parseCssInt(params[2]), alpha);
- putToCache(colorStr, rgbaArr);
- return rgbaArr;
-
- case 'hsla':
- if (params.length !== 4) {
- setRgba(rgbaArr, 0, 0, 0, 1);
- return;
- }
-
- params[3] = parseCssFloat(params[3]);
- hsla2rgba(params, rgbaArr);
- putToCache(colorStr, rgbaArr);
- return rgbaArr;
-
- case 'hsl':
- if (params.length !== 3) {
- setRgba(rgbaArr, 0, 0, 0, 1);
- return;
- }
-
- hsla2rgba(params, rgbaArr);
- putToCache(colorStr, rgbaArr);
- return rgbaArr;
-
- default:
- return;
- }
- }
-
- setRgba(rgbaArr, 0, 0, 0, 1);
- return;
- }
- /**
- * @param {Array.<number>} hsla
- * @param {Array.<number>} rgba
- * @return {Array.<number>} rgba
- */
-
-
- function hsla2rgba(hsla, rgba) {
- var h = (parseFloat(hsla[0]) % 360 + 360) % 360 / 360; // 0 .. 1
- // NOTE(deanm): According to the CSS spec s/l should only be
- // percentages, but we don't bother and let float or percentage.
-
- var s = parseCssFloat(hsla[1]);
- var l = parseCssFloat(hsla[2]);
- var m2 = l <= 0.5 ? l * (s + 1) : l + s - l * s;
- var m1 = l * 2 - m2;
- rgba = rgba || [];
- setRgba(rgba, clampCssByte(cssHueToRgb(m1, m2, h + 1 / 3) * 255), clampCssByte(cssHueToRgb(m1, m2, h) * 255), clampCssByte(cssHueToRgb(m1, m2, h - 1 / 3) * 255), 1);
-
- if (hsla.length === 4) {
- rgba[3] = hsla[3];
- }
-
- return rgba;
- }
- /**
- * @param {Array.<number>} rgba
- * @return {Array.<number>} hsla
- */
-
-
- function rgba2hsla(rgba) {
- if (!rgba) {
- return;
- } // RGB from 0 to 255
-
-
- var R = rgba[0] / 255;
- var G = rgba[1] / 255;
- var B = rgba[2] / 255;
- var vMin = Math.min(R, G, B); // Min. value of RGB
-
- var vMax = Math.max(R, G, B); // Max. value of RGB
-
- var delta = vMax - vMin; // Delta RGB value
-
- var L = (vMax + vMin) / 2;
- var H;
- var S; // HSL results from 0 to 1
-
- if (delta === 0) {
- H = 0;
- S = 0;
- } else {
- if (L < 0.5) {
- S = delta / (vMax + vMin);
- } else {
- S = delta / (2 - vMax - vMin);
- }
-
- var deltaR = ((vMax - R) / 6 + delta / 2) / delta;
- var deltaG = ((vMax - G) / 6 + delta / 2) / delta;
- var deltaB = ((vMax - B) / 6 + delta / 2) / delta;
-
- if (R === vMax) {
- H = deltaB - deltaG;
- } else if (G === vMax) {
- H = 1 / 3 + deltaR - deltaB;
- } else if (B === vMax) {
- H = 2 / 3 + deltaG - deltaR;
- }
-
- if (H < 0) {
- H += 1;
- }
-
- if (H > 1) {
- H -= 1;
- }
- }
-
- var hsla = [H * 360, S, L];
-
- if (rgba[3] != null) {
- hsla.push(rgba[3]);
- }
-
- return hsla;
- }
- /**
- * @param {string} color
- * @param {number} level
- * @return {string}
- * @memberOf module:zrender/util/color
- */
-
-
- function lift(color, level) {
- var colorArr = parse(color);
-
- if (colorArr) {
- for (var i = 0; i < 3; i++) {
- if (level < 0) {
- colorArr[i] = colorArr[i] * (1 - level) | 0;
- } else {
- colorArr[i] = (255 - colorArr[i]) * level + colorArr[i] | 0;
- }
-
- if (colorArr[i] > 255) {
- colorArr[i] = 255;
- } else if (color[i] < 0) {
- colorArr[i] = 0;
- }
- }
-
- return stringify(colorArr, colorArr.length === 4 ? 'rgba' : 'rgb');
- }
- }
- /**
- * @param {string} color
- * @return {string}
- * @memberOf module:zrender/util/color
- */
-
-
- function toHex(color) {
- var colorArr = parse(color);
-
- if (colorArr) {
- return ((1 << 24) + (colorArr[0] << 16) + (colorArr[1] << 8) + +colorArr[2]).toString(16).slice(1);
- }
- }
- /**
- * Map value to color. Faster than lerp methods because color is represented by rgba array.
- * @param {number} normalizedValue A float between 0 and 1.
- * @param {Array.<Array.<number>>} colors List of rgba color array
- * @param {Array.<number>} [out] Mapped gba color array
- * @return {Array.<number>} will be null/undefined if input illegal.
- */
-
-
- function fastLerp(normalizedValue, colors, out) {
- if (!(colors && colors.length) || !(normalizedValue >= 0 && normalizedValue <= 1)) {
- return;
- }
-
- out = out || [];
- var value = normalizedValue * (colors.length - 1);
- var leftIndex = Math.floor(value);
- var rightIndex = Math.ceil(value);
- var leftColor = colors[leftIndex];
- var rightColor = colors[rightIndex];
- var dv = value - leftIndex;
- out[0] = clampCssByte(lerpNumber(leftColor[0], rightColor[0], dv));
- out[1] = clampCssByte(lerpNumber(leftColor[1], rightColor[1], dv));
- out[2] = clampCssByte(lerpNumber(leftColor[2], rightColor[2], dv));
- out[3] = clampCssFloat(lerpNumber(leftColor[3], rightColor[3], dv));
- return out;
- }
- /**
- * @deprecated
- */
-
-
- var fastMapToColor = fastLerp;
- /**
- * @param {number} normalizedValue A float between 0 and 1.
- * @param {Array.<string>} colors Color list.
- * @param {boolean=} fullOutput Default false.
- * @return {(string|Object)} Result color. If fullOutput,
- * return {color: ..., leftIndex: ..., rightIndex: ..., value: ...},
- * @memberOf module:zrender/util/color
- */
-
- function lerp(normalizedValue, colors, fullOutput) {
- if (!(colors && colors.length) || !(normalizedValue >= 0 && normalizedValue <= 1)) {
- return;
- }
-
- var value = normalizedValue * (colors.length - 1);
- var leftIndex = Math.floor(value);
- var rightIndex = Math.ceil(value);
- var leftColor = parse(colors[leftIndex]);
- var rightColor = parse(colors[rightIndex]);
- var dv = value - leftIndex;
- var color = stringify([clampCssByte(lerpNumber(leftColor[0], rightColor[0], dv)), clampCssByte(lerpNumber(leftColor[1], rightColor[1], dv)), clampCssByte(lerpNumber(leftColor[2], rightColor[2], dv)), clampCssFloat(lerpNumber(leftColor[3], rightColor[3], dv))], 'rgba');
- return fullOutput ? {
- color: color,
- leftIndex: leftIndex,
- rightIndex: rightIndex,
- value: value
- } : color;
- }
- /**
- * @deprecated
- */
-
-
- var mapToColor = lerp;
- /**
- * @param {string} color
- * @param {number=} h 0 ~ 360, ignore when null.
- * @param {number=} s 0 ~ 1, ignore when null.
- * @param {number=} l 0 ~ 1, ignore when null.
- * @return {string} Color string in rgba format.
- * @memberOf module:zrender/util/color
- */
-
- function modifyHSL(color, h, s, l) {
- color = parse(color);
-
- if (color) {
- color = rgba2hsla(color);
- h != null && (color[0] = clampCssAngle(h));
- s != null && (color[1] = parseCssFloat(s));
- l != null && (color[2] = parseCssFloat(l));
- return stringify(hsla2rgba(color), 'rgba');
- }
- }
- /**
- * @param {string} color
- * @param {number=} alpha 0 ~ 1
- * @return {string} Color string in rgba format.
- * @memberOf module:zrender/util/color
- */
-
-
- function modifyAlpha(color, alpha) {
- color = parse(color);
-
- if (color && alpha != null) {
- color[3] = clampCssFloat(alpha);
- return stringify(color, 'rgba');
- }
- }
- /**
- * @param {Array.<number>} arrColor like [12,33,44,0.4]
- * @param {string} type 'rgba', 'hsva', ...
- * @return {string} Result color. (If input illegal, return undefined).
- */
-
-
- function stringify(arrColor, type) {
- if (!arrColor || !arrColor.length) {
- return;
- }
-
- var colorStr = arrColor[0] + ',' + arrColor[1] + ',' + arrColor[2];
-
- if (type === 'rgba' || type === 'hsva' || type === 'hsla') {
- colorStr += ',' + arrColor[3];
- }
-
- return type + '(' + colorStr + ')';
- }
-
- exports.parse = parse;
- exports.lift = lift;
- exports.toHex = toHex;
- exports.fastLerp = fastLerp;
- exports.fastMapToColor = fastMapToColor;
- exports.lerp = lerp;
- exports.mapToColor = mapToColor;
- exports.modifyHSL = modifyHSL;
- exports.modifyAlpha = modifyAlpha;
- exports.stringify = stringify;
-
- /***/ }),
-
- /***/ 1439:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _util = __webpack_require__(864);
-
- var each = _util.each;
-
- var Group = __webpack_require__(1597);
-
- var componentUtil = __webpack_require__(1657);
-
- var clazzUtil = __webpack_require__(1456);
-
- var modelUtil = __webpack_require__(1064);
-
- var graphicUtil = __webpack_require__(906);
-
- var _task = __webpack_require__(1902);
-
- var createTask = _task.createTask;
-
- var createRenderPlanner = __webpack_require__(1601);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var inner = modelUtil.makeInner();
- var renderPlanner = createRenderPlanner();
-
- function Chart() {
- /**
- * @type {module:zrender/container/Group}
- * @readOnly
- */
- this.group = new Group();
- /**
- * @type {string}
- * @readOnly
- */
-
- this.uid = componentUtil.getUID('viewChart');
- this.renderTask = createTask({
- plan: renderTaskPlan,
- reset: renderTaskReset
- });
- this.renderTask.context = {
- view: this
- };
- }
-
- Chart.prototype = {
- type: 'chart',
-
- /**
- * Init the chart.
- * @param {module:echarts/model/Global} ecModel
- * @param {module:echarts/ExtensionAPI} api
- */
- init: function (ecModel, api) {},
-
- /**
- * Render the chart.
- * @param {module:echarts/model/Series} seriesModel
- * @param {module:echarts/model/Global} ecModel
- * @param {module:echarts/ExtensionAPI} api
- * @param {Object} payload
- */
- render: function (seriesModel, ecModel, api, payload) {},
-
- /**
- * Highlight series or specified data item.
- * @param {module:echarts/model/Series} seriesModel
- * @param {module:echarts/model/Global} ecModel
- * @param {module:echarts/ExtensionAPI} api
- * @param {Object} payload
- */
- highlight: function (seriesModel, ecModel, api, payload) {
- toggleHighlight(seriesModel.getData(), payload, 'emphasis');
- },
-
- /**
- * Downplay series or specified data item.
- * @param {module:echarts/model/Series} seriesModel
- * @param {module:echarts/model/Global} ecModel
- * @param {module:echarts/ExtensionAPI} api
- * @param {Object} payload
- */
- downplay: function (seriesModel, ecModel, api, payload) {
- toggleHighlight(seriesModel.getData(), payload, 'normal');
- },
-
- /**
- * Remove self.
- * @param {module:echarts/model/Global} ecModel
- * @param {module:echarts/ExtensionAPI} api
- */
- remove: function (ecModel, api) {
- this.group.removeAll();
- },
-
- /**
- * Dispose self.
- * @param {module:echarts/model/Global} ecModel
- * @param {module:echarts/ExtensionAPI} api
- */
- dispose: function () {},
-
- /**
- * Rendering preparation in progressive mode.
- * @param {module:echarts/model/Series} seriesModel
- * @param {module:echarts/model/Global} ecModel
- * @param {module:echarts/ExtensionAPI} api
- * @param {Object} payload
- */
- incrementalPrepareRender: null,
-
- /**
- * Render in progressive mode.
- * @param {Object} params See taskParams in `stream/task.js`
- * @param {module:echarts/model/Series} seriesModel
- * @param {module:echarts/model/Global} ecModel
- * @param {module:echarts/ExtensionAPI} api
- * @param {Object} payload
- */
- incrementalRender: null,
-
- /**
- * Update transform directly.
- * @param {module:echarts/model/Series} seriesModel
- * @param {module:echarts/model/Global} ecModel
- * @param {module:echarts/ExtensionAPI} api
- * @param {Object} payload
- * @return {Object} {update: true}
- */
- updateTransform: null,
-
- /**
- * The view contains the given point.
- * @interface
- * @param {Array.<number>} point
- * @return {boolean}
- */
- // containPoint: function () {}
-
- /**
- * @param {string} eventType
- * @param {Object} query
- * @param {module:zrender/Element} targetEl
- * @param {Object} packedEvent
- * @return {boolen} Pass only when return `true`.
- */
- filterForExposedEvent: null
- };
- var chartProto = Chart.prototype;
-
- chartProto.updateView = chartProto.updateLayout = chartProto.updateVisual = function (seriesModel, ecModel, api, payload) {
- this.render(seriesModel, ecModel, api, payload);
- };
- /**
- * Set state of single element
- * @param {module:zrender/Element} el
- * @param {string} state 'normal'|'emphasis'
- * @param {number} highlightDigit
- */
-
-
- function elSetState(el, state, highlightDigit) {
- if (el) {
- el.trigger(state, highlightDigit);
-
- if (el.isGroup // Simple optimize.
- && !graphicUtil.isHighDownDispatcher(el)) {
- for (var i = 0, len = el.childCount(); i < len; i++) {
- elSetState(el.childAt(i), state, highlightDigit);
- }
- }
- }
- }
- /**
- * @param {module:echarts/data/List} data
- * @param {Object} payload
- * @param {string} state 'normal'|'emphasis'
- */
-
-
- function toggleHighlight(data, payload, state) {
- var dataIndex = modelUtil.queryDataIndex(data, payload);
- var highlightDigit = payload && payload.highlightKey != null ? graphicUtil.getHighlightDigit(payload.highlightKey) : null;
-
- if (dataIndex != null) {
- each(modelUtil.normalizeToArray(dataIndex), function (dataIdx) {
- elSetState(data.getItemGraphicEl(dataIdx), state, highlightDigit);
- });
- } else {
- data.eachItemGraphicEl(function (el) {
- elSetState(el, state, highlightDigit);
- });
- }
- } // Enable Chart.extend.
-
-
- clazzUtil.enableClassExtend(Chart, ['dispose']); // Add capability of registerClass, getClass, hasClass, registerSubTypeDefaulter and so on.
-
- clazzUtil.enableClassManagement(Chart, {
- registerWhenExtend: true
- });
-
- Chart.markUpdateMethod = function (payload, methodName) {
- inner(payload).updateMethod = methodName;
- };
-
- function renderTaskPlan(context) {
- return renderPlanner(context.model);
- }
-
- function renderTaskReset(context) {
- var seriesModel = context.model;
- var ecModel = context.ecModel;
- var api = context.api;
- var payload = context.payload; // ???! remove updateView updateVisual
-
- var progressiveRender = seriesModel.pipelineContext.progressiveRender;
- var view = context.view;
- var updateMethod = payload && inner(payload).updateMethod;
- var methodName = progressiveRender ? 'incrementalPrepareRender' : updateMethod && view[updateMethod] ? updateMethod // `appendData` is also supported when data amount
- // is less than progressive threshold.
- : 'render';
-
- if (methodName !== 'render') {
- view[methodName](seriesModel, ecModel, api, payload);
- }
-
- return progressMethodMap[methodName];
- }
-
- var progressMethodMap = {
- incrementalPrepareRender: {
- progress: function (params, context) {
- context.view.incrementalRender(params, context.model, context.ecModel, context.api, context.payload);
- }
- },
- render: {
- // Put view.render in `progress` to support appendData. But in this case
- // view.render should not be called in reset, otherwise it will be called
- // twise. Use `forceFirstProgress` to make sure that view.render is called
- // in any cases.
- forceFirstProgress: true,
- progress: function (params, context) {
- context.view.render(context.model, context.ecModel, context.api, context.payload);
- }
- }
- };
- var _default = Chart;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1440:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _util = __webpack_require__(864);
-
- var each = _util.each;
- var isString = _util.isString;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Note that it is too complicated to support 3d stack by value
- * (have to create two-dimension inverted index), so in 3d case
- * we just support that stacked by index.
- *
- * @param {module:echarts/model/Series} seriesModel
- * @param {Array.<string|Object>} dimensionInfoList The same as the input of <module:echarts/data/List>.
- * The input dimensionInfoList will be modified.
- * @param {Object} [opt]
- * @param {boolean} [opt.stackedCoordDimension=''] Specify a coord dimension if needed.
- * @param {boolean} [opt.byIndex=false]
- * @return {Object} calculationInfo
- * {
- * stackedDimension: string
- * stackedByDimension: string
- * isStackedByIndex: boolean
- * stackedOverDimension: string
- * stackResultDimension: string
- * }
- */
- function enableDataStack(seriesModel, dimensionInfoList, opt) {
- opt = opt || {};
- var byIndex = opt.byIndex;
- var stackedCoordDimension = opt.stackedCoordDimension; // Compatibal: when `stack` is set as '', do not stack.
-
- var mayStack = !!(seriesModel && seriesModel.get('stack'));
- var stackedByDimInfo;
- var stackedDimInfo;
- var stackResultDimension;
- var stackedOverDimension;
- each(dimensionInfoList, function (dimensionInfo, index) {
- if (isString(dimensionInfo)) {
- dimensionInfoList[index] = dimensionInfo = {
- name: dimensionInfo
- };
- }
-
- if (mayStack && !dimensionInfo.isExtraCoord) {
- // Find the first ordinal dimension as the stackedByDimInfo.
- if (!byIndex && !stackedByDimInfo && dimensionInfo.ordinalMeta) {
- stackedByDimInfo = dimensionInfo;
- } // Find the first stackable dimension as the stackedDimInfo.
-
-
- if (!stackedDimInfo && dimensionInfo.type !== 'ordinal' && dimensionInfo.type !== 'time' && (!stackedCoordDimension || stackedCoordDimension === dimensionInfo.coordDim)) {
- stackedDimInfo = dimensionInfo;
- }
- }
- });
-
- if (stackedDimInfo && !byIndex && !stackedByDimInfo) {
- // Compatible with previous design, value axis (time axis) only stack by index.
- // It may make sense if the user provides elaborately constructed data.
- byIndex = true;
- } // Add stack dimension, they can be both calculated by coordinate system in `unionExtent`.
- // That put stack logic in List is for using conveniently in echarts extensions, but it
- // might not be a good way.
-
-
- if (stackedDimInfo) {
- // Use a weird name that not duplicated with other names.
- stackResultDimension = '__\0ecstackresult';
- stackedOverDimension = '__\0ecstackedover'; // Create inverted index to fast query index by value.
-
- if (stackedByDimInfo) {
- stackedByDimInfo.createInvertedIndices = true;
- }
-
- var stackedDimCoordDim = stackedDimInfo.coordDim;
- var stackedDimType = stackedDimInfo.type;
- var stackedDimCoordIndex = 0;
- each(dimensionInfoList, function (dimensionInfo) {
- if (dimensionInfo.coordDim === stackedDimCoordDim) {
- stackedDimCoordIndex++;
- }
- });
- dimensionInfoList.push({
- name: stackResultDimension,
- coordDim: stackedDimCoordDim,
- coordDimIndex: stackedDimCoordIndex,
- type: stackedDimType,
- isExtraCoord: true,
- isCalculationCoord: true
- });
- stackedDimCoordIndex++;
- dimensionInfoList.push({
- name: stackedOverDimension,
- // This dimension contains stack base (generally, 0), so do not set it as
- // `stackedDimCoordDim` to avoid extent calculation, consider log scale.
- coordDim: stackedOverDimension,
- coordDimIndex: stackedDimCoordIndex,
- type: stackedDimType,
- isExtraCoord: true,
- isCalculationCoord: true
- });
- }
-
- return {
- stackedDimension: stackedDimInfo && stackedDimInfo.name,
- stackedByDimension: stackedByDimInfo && stackedByDimInfo.name,
- isStackedByIndex: byIndex,
- stackedOverDimension: stackedOverDimension,
- stackResultDimension: stackResultDimension
- };
- }
- /**
- * @param {module:echarts/data/List} data
- * @param {string} stackedDim
- */
-
-
- function isDimensionStacked(data, stackedDim
- /*, stackedByDim*/
- ) {
- // Each single series only maps to one pair of axis. So we do not need to
- // check stackByDim, whatever stacked by a dimension or stacked by index.
- return !!stackedDim && stackedDim === data.getCalculationInfo('stackedDimension'); // && (
- // stackedByDim != null
- // ? stackedByDim === data.getCalculationInfo('stackedByDimension')
- // : data.getCalculationInfo('isStackedByIndex')
- // );
- }
- /**
- * @param {module:echarts/data/List} data
- * @param {string} targetDim
- * @param {string} [stackedByDim] If not input this parameter, check whether
- * stacked by index.
- * @return {string} dimension
- */
-
-
- function getStackedDimension(data, targetDim) {
- return isDimensionStacked(data, targetDim) ? data.getCalculationInfo('stackResultDimension') : targetDim;
- }
-
- exports.enableDataStack = enableDataStack;
- exports.isDimensionStacked = isDimensionStacked;
- exports.getStackedDimension = getStackedDimension;
-
- /***/ }),
-
- /***/ 1456:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var TYPE_DELIMITER = '.';
- var IS_CONTAINER = '___EC__COMPONENT__CONTAINER___';
- /**
- * Notice, parseClassType('') should returns {main: '', sub: ''}
- * @public
- */
-
- function parseClassType(componentType) {
- var ret = {
- main: '',
- sub: ''
- };
-
- if (componentType) {
- componentType = componentType.split(TYPE_DELIMITER);
- ret.main = componentType[0] || '';
- ret.sub = componentType[1] || '';
- }
-
- return ret;
- }
- /**
- * @public
- */
-
-
- function checkClassType(componentType) {
- zrUtil.assert(/^[a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)?$/.test(componentType), 'componentType "' + componentType + '" illegal');
- }
- /**
- * @public
- */
-
-
- function enableClassExtend(RootClass, mandatoryMethods) {
- RootClass.$constructor = RootClass;
-
- RootClass.extend = function (proto) {
- var superClass = this;
-
- var ExtendedClass = function () {
- if (!proto.$constructor) {
- superClass.apply(this, arguments);
- } else {
- proto.$constructor.apply(this, arguments);
- }
- };
-
- zrUtil.extend(ExtendedClass.prototype, proto);
- ExtendedClass.extend = this.extend;
- ExtendedClass.superCall = superCall;
- ExtendedClass.superApply = superApply;
- zrUtil.inherits(ExtendedClass, this);
- ExtendedClass.superClass = superClass;
- return ExtendedClass;
- };
- }
-
- var classBase = 0;
- /**
- * Can not use instanceof, consider different scope by
- * cross domain or es module import in ec extensions.
- * Mount a method "isInstance()" to Clz.
- */
-
- function enableClassCheck(Clz) {
- var classAttr = ['__\0is_clz', classBase++, Math.random().toFixed(3)].join('_');
- Clz.prototype[classAttr] = true;
-
- Clz.isInstance = function (obj) {
- return !!(obj && obj[classAttr]);
- };
- } // superCall should have class info, which can not be fetch from 'this'.
- // Consider this case:
- // class A has method f,
- // class B inherits class A, overrides method f, f call superApply('f'),
- // class C inherits class B, do not overrides method f,
- // then when method of class C is called, dead loop occured.
-
-
- function superCall(context, methodName) {
- var args = zrUtil.slice(arguments, 2);
- return this.superClass.prototype[methodName].apply(context, args);
- }
-
- function superApply(context, methodName, args) {
- return this.superClass.prototype[methodName].apply(context, args);
- }
- /**
- * @param {Object} entity
- * @param {Object} options
- * @param {boolean} [options.registerWhenExtend]
- * @public
- */
-
-
- function enableClassManagement(entity, options) {
- options = options || {};
- /**
- * Component model classes
- * key: componentType,
- * value:
- * componentClass, when componentType is 'xxx'
- * or Object.<subKey, componentClass>, when componentType is 'xxx.yy'
- * @type {Object}
- */
-
- var storage = {};
-
- entity.registerClass = function (Clazz, componentType) {
- if (componentType) {
- checkClassType(componentType);
- componentType = parseClassType(componentType);
-
- if (!componentType.sub) {
- storage[componentType.main] = Clazz;
- } else if (componentType.sub !== IS_CONTAINER) {
- var container = makeContainer(componentType);
- container[componentType.sub] = Clazz;
- }
- }
-
- return Clazz;
- };
-
- entity.getClass = function (componentMainType, subType, throwWhenNotFound) {
- var Clazz = storage[componentMainType];
-
- if (Clazz && Clazz[IS_CONTAINER]) {
- Clazz = subType ? Clazz[subType] : null;
- }
-
- if (throwWhenNotFound && !Clazz) {
- throw new Error(!subType ? componentMainType + '.' + 'type should be specified.' : 'Component ' + componentMainType + '.' + (subType || '') + ' not exists. Load it first.');
- }
-
- return Clazz;
- };
-
- entity.getClassesByMainType = function (componentType) {
- componentType = parseClassType(componentType);
- var result = [];
- var obj = storage[componentType.main];
-
- if (obj && obj[IS_CONTAINER]) {
- zrUtil.each(obj, function (o, type) {
- type !== IS_CONTAINER && result.push(o);
- });
- } else {
- result.push(obj);
- }
-
- return result;
- };
-
- entity.hasClass = function (componentType) {
- // Just consider componentType.main.
- componentType = parseClassType(componentType);
- return !!storage[componentType.main];
- };
- /**
- * @return {Array.<string>} Like ['aa', 'bb'], but can not be ['aa.xx']
- */
-
-
- entity.getAllClassMainTypes = function () {
- var types = [];
- zrUtil.each(storage, function (obj, type) {
- types.push(type);
- });
- return types;
- };
- /**
- * If a main type is container and has sub types
- * @param {string} mainType
- * @return {boolean}
- */
-
-
- entity.hasSubTypes = function (componentType) {
- componentType = parseClassType(componentType);
- var obj = storage[componentType.main];
- return obj && obj[IS_CONTAINER];
- };
-
- entity.parseClassType = parseClassType;
-
- function makeContainer(componentType) {
- var container = storage[componentType.main];
-
- if (!container || !container[IS_CONTAINER]) {
- container = storage[componentType.main] = {};
- container[IS_CONTAINER] = true;
- }
-
- return container;
- }
-
- if (options.registerWhenExtend) {
- var originalExtend = entity.extend;
-
- if (originalExtend) {
- entity.extend = function (proto) {
- var ExtendedClass = originalExtend.call(this, proto);
- return entity.registerClass(ExtendedClass, proto.type);
- };
- }
- }
-
- return entity;
- }
- /**
- * @param {string|Array.<string>} properties
- */
-
-
- function setReadOnly(obj, properties) {// FIXME It seems broken in IE8 simulation of IE11
- // if (!zrUtil.isArray(properties)) {
- // properties = properties != null ? [properties] : [];
- // }
- // zrUtil.each(properties, function (prop) {
- // var value = obj[prop];
- // Object.defineProperty
- // && Object.defineProperty(obj, prop, {
- // value: value, writable: false
- // });
- // zrUtil.isArray(obj[prop])
- // && Object.freeze
- // && Object.freeze(obj[prop]);
- // });
- }
-
- exports.parseClassType = parseClassType;
- exports.enableClassExtend = enableClassExtend;
- exports.enableClassCheck = enableClassCheck;
- exports.enableClassManagement = enableClassManagement;
- exports.setReadOnly = setReadOnly;
-
- /***/ }),
-
- /***/ 1457:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var _model = __webpack_require__(1064);
-
- var makeInner = _model.makeInner;
- var getDataItemValue = _model.getDataItemValue;
-
- var _util = __webpack_require__(864);
-
- var createHashMap = _util.createHashMap;
- var each = _util.each;
- var map = _util.map;
- var isArray = _util.isArray;
- var isString = _util.isString;
- var isObject = _util.isObject;
- var isTypedArray = _util.isTypedArray;
- var isArrayLike = _util.isArrayLike;
- var extend = _util.extend;
- var assert = _util.assert;
-
- var Source = __webpack_require__(1658);
-
- var _sourceType = __webpack_require__(1659);
-
- var SOURCE_FORMAT_ORIGINAL = _sourceType.SOURCE_FORMAT_ORIGINAL;
- var SOURCE_FORMAT_ARRAY_ROWS = _sourceType.SOURCE_FORMAT_ARRAY_ROWS;
- var SOURCE_FORMAT_OBJECT_ROWS = _sourceType.SOURCE_FORMAT_OBJECT_ROWS;
- var SOURCE_FORMAT_KEYED_COLUMNS = _sourceType.SOURCE_FORMAT_KEYED_COLUMNS;
- var SOURCE_FORMAT_UNKNOWN = _sourceType.SOURCE_FORMAT_UNKNOWN;
- var SOURCE_FORMAT_TYPED_ARRAY = _sourceType.SOURCE_FORMAT_TYPED_ARRAY;
- var SERIES_LAYOUT_BY_ROW = _sourceType.SERIES_LAYOUT_BY_ROW;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // The result of `guessOrdinal`.
- var BE_ORDINAL = {
- Must: 1,
- // Encounter string but not '-' and not number-like.
- Might: 2,
- // Encounter string but number-like.
- Not: 3 // Other cases
-
- };
- var inner = makeInner();
- /**
- * @see {module:echarts/data/Source}
- * @param {module:echarts/component/dataset/DatasetModel} datasetModel
- * @return {string} sourceFormat
- */
-
- function detectSourceFormat(datasetModel) {
- var data = datasetModel.option.source;
- var sourceFormat = SOURCE_FORMAT_UNKNOWN;
-
- if (isTypedArray(data)) {
- sourceFormat = SOURCE_FORMAT_TYPED_ARRAY;
- } else if (isArray(data)) {
- // FIXME Whether tolerate null in top level array?
- if (data.length === 0) {
- sourceFormat = SOURCE_FORMAT_ARRAY_ROWS;
- }
-
- for (var i = 0, len = data.length; i < len; i++) {
- var item = data[i];
-
- if (item == null) {
- continue;
- } else if (isArray(item)) {
- sourceFormat = SOURCE_FORMAT_ARRAY_ROWS;
- break;
- } else if (isObject(item)) {
- sourceFormat = SOURCE_FORMAT_OBJECT_ROWS;
- break;
- }
- }
- } else if (isObject(data)) {
- for (var key in data) {
- if (data.hasOwnProperty(key) && isArrayLike(data[key])) {
- sourceFormat = SOURCE_FORMAT_KEYED_COLUMNS;
- break;
- }
- }
- } else if (data != null) {
- throw new Error('Invalid data');
- }
-
- inner(datasetModel).sourceFormat = sourceFormat;
- }
- /**
- * [Scenarios]:
- * (1) Provide source data directly:
- * series: {
- * encode: {...},
- * dimensions: [...]
- * seriesLayoutBy: 'row',
- * data: [[...]]
- * }
- * (2) Refer to datasetModel.
- * series: [{
- * encode: {...}
- * // Ignore datasetIndex means `datasetIndex: 0`
- * // and the dimensions defination in dataset is used
- * }, {
- * encode: {...},
- * seriesLayoutBy: 'column',
- * datasetIndex: 1
- * }]
- *
- * Get data from series itself or datset.
- * @return {module:echarts/data/Source} source
- */
-
-
- function getSource(seriesModel) {
- return inner(seriesModel).source;
- }
- /**
- * MUST be called before mergeOption of all series.
- * @param {module:echarts/model/Global} ecModel
- */
-
-
- function resetSourceDefaulter(ecModel) {
- // `datasetMap` is used to make default encode.
- inner(ecModel).datasetMap = createHashMap();
- }
- /**
- * [Caution]:
- * MUST be called after series option merged and
- * before "series.getInitailData()" called.
- *
- * [The rule of making default encode]:
- * Category axis (if exists) alway map to the first dimension.
- * Each other axis occupies a subsequent dimension.
- *
- * [Why make default encode]:
- * Simplify the typing of encode in option, avoiding the case like that:
- * series: [{encode: {x: 0, y: 1}}, {encode: {x: 0, y: 2}}, {encode: {x: 0, y: 3}}],
- * where the "y" have to be manually typed as "1, 2, 3, ...".
- *
- * @param {module:echarts/model/Series} seriesModel
- */
-
-
- function prepareSource(seriesModel) {
- var seriesOption = seriesModel.option;
- var data = seriesOption.data;
- var sourceFormat = isTypedArray(data) ? SOURCE_FORMAT_TYPED_ARRAY : SOURCE_FORMAT_ORIGINAL;
- var fromDataset = false;
- var seriesLayoutBy = seriesOption.seriesLayoutBy;
- var sourceHeader = seriesOption.sourceHeader;
- var dimensionsDefine = seriesOption.dimensions;
- var datasetModel = getDatasetModel(seriesModel);
-
- if (datasetModel) {
- var datasetOption = datasetModel.option;
- data = datasetOption.source;
- sourceFormat = inner(datasetModel).sourceFormat;
- fromDataset = true; // These settings from series has higher priority.
-
- seriesLayoutBy = seriesLayoutBy || datasetOption.seriesLayoutBy;
- sourceHeader == null && (sourceHeader = datasetOption.sourceHeader);
- dimensionsDefine = dimensionsDefine || datasetOption.dimensions;
- }
-
- var completeResult = completeBySourceData(data, sourceFormat, seriesLayoutBy, sourceHeader, dimensionsDefine);
- inner(seriesModel).source = new Source({
- data: data,
- fromDataset: fromDataset,
- seriesLayoutBy: seriesLayoutBy,
- sourceFormat: sourceFormat,
- dimensionsDefine: completeResult.dimensionsDefine,
- startIndex: completeResult.startIndex,
- dimensionsDetectCount: completeResult.dimensionsDetectCount,
- // Note: dataset option does not have `encode`.
- encodeDefine: seriesOption.encode
- });
- } // return {startIndex, dimensionsDefine, dimensionsCount}
-
-
- function completeBySourceData(data, sourceFormat, seriesLayoutBy, sourceHeader, dimensionsDefine) {
- if (!data) {
- return {
- dimensionsDefine: normalizeDimensionsDefine(dimensionsDefine)
- };
- }
-
- var dimensionsDetectCount;
- var startIndex;
-
- if (sourceFormat === SOURCE_FORMAT_ARRAY_ROWS) {
- // Rule: Most of the first line are string: it is header.
- // Caution: consider a line with 5 string and 1 number,
- // it still can not be sure it is a head, because the
- // 5 string may be 5 values of category columns.
- if (sourceHeader === 'auto' || sourceHeader == null) {
- arrayRowsTravelFirst(function (val) {
- // '-' is regarded as null/undefined.
- if (val != null && val !== '-') {
- if (isString(val)) {
- startIndex == null && (startIndex = 1);
- } else {
- startIndex = 0;
- }
- } // 10 is an experience number, avoid long loop.
-
- }, seriesLayoutBy, data, 10);
- } else {
- startIndex = sourceHeader ? 1 : 0;
- }
-
- if (!dimensionsDefine && startIndex === 1) {
- dimensionsDefine = [];
- arrayRowsTravelFirst(function (val, index) {
- dimensionsDefine[index] = val != null ? val : '';
- }, seriesLayoutBy, data);
- }
-
- dimensionsDetectCount = dimensionsDefine ? dimensionsDefine.length : seriesLayoutBy === SERIES_LAYOUT_BY_ROW ? data.length : data[0] ? data[0].length : null;
- } else if (sourceFormat === SOURCE_FORMAT_OBJECT_ROWS) {
- if (!dimensionsDefine) {
- dimensionsDefine = objectRowsCollectDimensions(data);
- }
- } else if (sourceFormat === SOURCE_FORMAT_KEYED_COLUMNS) {
- if (!dimensionsDefine) {
- dimensionsDefine = [];
- each(data, function (colArr, key) {
- dimensionsDefine.push(key);
- });
- }
- } else if (sourceFormat === SOURCE_FORMAT_ORIGINAL) {
- var value0 = getDataItemValue(data[0]);
- dimensionsDetectCount = isArray(value0) && value0.length || 1;
- } else if (sourceFormat === SOURCE_FORMAT_TYPED_ARRAY) {}
-
- return {
- startIndex: startIndex,
- dimensionsDefine: normalizeDimensionsDefine(dimensionsDefine),
- dimensionsDetectCount: dimensionsDetectCount
- };
- } // Consider dimensions defined like ['A', 'price', 'B', 'price', 'C', 'price'],
- // which is reasonable. But dimension name is duplicated.
- // Returns undefined or an array contains only object without null/undefiend or string.
-
-
- function normalizeDimensionsDefine(dimensionsDefine) {
- if (!dimensionsDefine) {
- // The meaning of null/undefined is different from empty array.
- return;
- }
-
- var nameMap = createHashMap();
- return map(dimensionsDefine, function (item, index) {
- item = extend({}, isObject(item) ? item : {
- name: item
- }); // User can set null in dimensions.
- // We dont auto specify name, othewise a given name may
- // cause it be refered unexpectedly.
-
- if (item.name == null) {
- return item;
- } // Also consider number form like 2012.
-
-
- item.name += ''; // User may also specify displayName.
- // displayName will always exists except user not
- // specified or dim name is not specified or detected.
- // (A auto generated dim name will not be used as
- // displayName).
-
- if (item.displayName == null) {
- item.displayName = item.name;
- }
-
- var exist = nameMap.get(item.name);
-
- if (!exist) {
- nameMap.set(item.name, {
- count: 1
- });
- } else {
- item.name += '-' + exist.count++;
- }
-
- return item;
- });
- }
-
- function arrayRowsTravelFirst(cb, seriesLayoutBy, data, maxLoop) {
- maxLoop == null && (maxLoop = Infinity);
-
- if (seriesLayoutBy === SERIES_LAYOUT_BY_ROW) {
- for (var i = 0; i < data.length && i < maxLoop; i++) {
- cb(data[i] ? data[i][0] : null, i);
- }
- } else {
- var value0 = data[0] || [];
-
- for (var i = 0; i < value0.length && i < maxLoop; i++) {
- cb(value0[i], i);
- }
- }
- }
-
- function objectRowsCollectDimensions(data) {
- var firstIndex = 0;
- var obj;
-
- while (firstIndex < data.length && !(obj = data[firstIndex++])) {} // jshint ignore: line
-
-
- if (obj) {
- var dimensions = [];
- each(obj, function (value, key) {
- dimensions.push(key);
- });
- return dimensions;
- }
- }
- /**
- * [The strategy of the arrengment of data dimensions for dataset]:
- * "value way": all axes are non-category axes. So series one by one take
- * several (the number is coordSysDims.length) dimensions from dataset.
- * The result of data arrengment of data dimensions like:
- * | ser0_x | ser0_y | ser1_x | ser1_y | ser2_x | ser2_y |
- * "category way": at least one axis is category axis. So the the first data
- * dimension is always mapped to the first category axis and shared by
- * all of the series. The other data dimensions are taken by series like
- * "value way" does.
- * The result of data arrengment of data dimensions like:
- * | ser_shared_x | ser0_y | ser1_y | ser2_y |
- *
- * @param {Array.<Object|string>} coordDimensions [{name: <string>, type: <string>, dimsDef: <Array>}, ...]
- * @param {module:model/Series} seriesModel
- * @param {module:data/Source} source
- * @return {Object} encode Never be `null/undefined`.
- */
-
-
- function makeSeriesEncodeForAxisCoordSys(coordDimensions, seriesModel, source) {
- var encode = {};
- var datasetModel = getDatasetModel(seriesModel); // Currently only make default when using dataset, util more reqirements occur.
-
- if (!datasetModel || !coordDimensions) {
- return encode;
- }
-
- var encodeItemName = [];
- var encodeSeriesName = [];
- var ecModel = seriesModel.ecModel;
- var datasetMap = inner(ecModel).datasetMap;
- var key = datasetModel.uid + '_' + source.seriesLayoutBy;
- var baseCategoryDimIndex;
- var categoryWayValueDimStart;
- coordDimensions = coordDimensions.slice();
- each(coordDimensions, function (coordDimInfo, coordDimIdx) {
- !isObject(coordDimInfo) && (coordDimensions[coordDimIdx] = {
- name: coordDimInfo
- });
-
- if (coordDimInfo.type === 'ordinal' && baseCategoryDimIndex == null) {
- baseCategoryDimIndex = coordDimIdx;
- categoryWayValueDimStart = getDataDimCountOnCoordDim(coordDimensions[coordDimIdx]);
- }
-
- encode[coordDimInfo.name] = [];
- });
- var datasetRecord = datasetMap.get(key) || datasetMap.set(key, {
- categoryWayDim: categoryWayValueDimStart,
- valueWayDim: 0
- }); // TODO
- // Auto detect first time axis and do arrangement.
-
- each(coordDimensions, function (coordDimInfo, coordDimIdx) {
- var coordDimName = coordDimInfo.name;
- var count = getDataDimCountOnCoordDim(coordDimInfo); // In value way.
-
- if (baseCategoryDimIndex == null) {
- var start = datasetRecord.valueWayDim;
- pushDim(encode[coordDimName], start, count);
- pushDim(encodeSeriesName, start, count);
- datasetRecord.valueWayDim += count; // ??? TODO give a better default series name rule?
- // especially when encode x y specified.
- // consider: when mutiple series share one dimension
- // category axis, series name should better use
- // the other dimsion name. On the other hand, use
- // both dimensions name.
- } // In category way, the first category axis.
- else if (baseCategoryDimIndex === coordDimIdx) {
- pushDim(encode[coordDimName], 0, count);
- pushDim(encodeItemName, 0, count);
- } // In category way, the other axis.
- else {
- var start = datasetRecord.categoryWayDim;
- pushDim(encode[coordDimName], start, count);
- pushDim(encodeSeriesName, start, count);
- datasetRecord.categoryWayDim += count;
- }
- });
-
- function pushDim(dimIdxArr, idxFrom, idxCount) {
- for (var i = 0; i < idxCount; i++) {
- dimIdxArr.push(idxFrom + i);
- }
- }
-
- function getDataDimCountOnCoordDim(coordDimInfo) {
- var dimsDef = coordDimInfo.dimsDef;
- return dimsDef ? dimsDef.length : 1;
- }
-
- encodeItemName.length && (encode.itemName = encodeItemName);
- encodeSeriesName.length && (encode.seriesName = encodeSeriesName);
- return encode;
- }
- /**
- * Work for data like [{name: ..., value: ...}, ...].
- *
- * @param {module:model/Series} seriesModel
- * @param {module:data/Source} source
- * @return {Object} encode Never be `null/undefined`.
- */
-
-
- function makeSeriesEncodeForNameBased(seriesModel, source, dimCount) {
- var encode = {};
- var datasetModel = getDatasetModel(seriesModel); // Currently only make default when using dataset, util more reqirements occur.
-
- if (!datasetModel) {
- return encode;
- }
-
- var sourceFormat = source.sourceFormat;
- var dimensionsDefine = source.dimensionsDefine;
- var potentialNameDimIndex;
-
- if (sourceFormat === SOURCE_FORMAT_OBJECT_ROWS || sourceFormat === SOURCE_FORMAT_KEYED_COLUMNS) {
- each(dimensionsDefine, function (dim, idx) {
- if ((isObject(dim) ? dim.name : dim) === 'name') {
- potentialNameDimIndex = idx;
- }
- });
- } // idxResult: {v, n}.
-
-
- var idxResult = function () {
- var idxRes0 = {};
- var idxRes1 = {};
- var guessRecords = []; // 5 is an experience value.
-
- for (var i = 0, len = Math.min(5, dimCount); i < len; i++) {
- var guessResult = doGuessOrdinal(source.data, sourceFormat, source.seriesLayoutBy, dimensionsDefine, source.startIndex, i);
- guessRecords.push(guessResult);
- var isPureNumber = guessResult === BE_ORDINAL.Not; // [Strategy of idxRes0]: find the first BE_ORDINAL.Not as the value dim,
- // and then find a name dim with the priority:
- // "BE_ORDINAL.Might|BE_ORDINAL.Must" > "other dim" > "the value dim itself".
-
- if (isPureNumber && idxRes0.v == null && i !== potentialNameDimIndex) {
- idxRes0.v = i;
- }
-
- if (idxRes0.n == null || idxRes0.n === idxRes0.v || !isPureNumber && guessRecords[idxRes0.n] === BE_ORDINAL.Not) {
- idxRes0.n = i;
- }
-
- if (fulfilled(idxRes0) && guessRecords[idxRes0.n] !== BE_ORDINAL.Not) {
- return idxRes0;
- } // [Strategy of idxRes1]: if idxRes0 not satisfied (that is, no BE_ORDINAL.Not),
- // find the first BE_ORDINAL.Might as the value dim,
- // and then find a name dim with the priority:
- // "other dim" > "the value dim itself".
- // That is for backward compat: number-like (e.g., `'3'`, `'55'`) can be
- // treated as number.
-
-
- if (!isPureNumber) {
- if (guessResult === BE_ORDINAL.Might && idxRes1.v == null && i !== potentialNameDimIndex) {
- idxRes1.v = i;
- }
-
- if (idxRes1.n == null || idxRes1.n === idxRes1.v) {
- idxRes1.n = i;
- }
- }
- }
-
- function fulfilled(idxResult) {
- return idxResult.v != null && idxResult.n != null;
- }
-
- return fulfilled(idxRes0) ? idxRes0 : fulfilled(idxRes1) ? idxRes1 : null;
- }();
-
- if (idxResult) {
- encode.value = idxResult.v; // `potentialNameDimIndex` has highest priority.
-
- var nameDimIndex = potentialNameDimIndex != null ? potentialNameDimIndex : idxResult.n; // By default, label use itemName in charts.
- // So we dont set encodeLabel here.
-
- encode.itemName = [nameDimIndex];
- encode.seriesName = [nameDimIndex];
- }
-
- return encode;
- }
- /**
- * If return null/undefined, indicate that should not use datasetModel.
- */
-
-
- function getDatasetModel(seriesModel) {
- var option = seriesModel.option; // Caution: consider the scenario:
- // A dataset is declared and a series is not expected to use the dataset,
- // and at the beginning `setOption({series: { noData })` (just prepare other
- // option but no data), then `setOption({series: {data: [...]}); In this case,
- // the user should set an empty array to avoid that dataset is used by default.
-
- var thisData = option.data;
-
- if (!thisData) {
- return seriesModel.ecModel.getComponent('dataset', option.datasetIndex || 0);
- }
- }
- /**
- * The rule should not be complex, otherwise user might not
- * be able to known where the data is wrong.
- * The code is ugly, but how to make it neat?
- *
- * @param {module:echars/data/Source} source
- * @param {number} dimIndex
- * @return {BE_ORDINAL} guess result.
- */
-
-
- function guessOrdinal(source, dimIndex) {
- return doGuessOrdinal(source.data, source.sourceFormat, source.seriesLayoutBy, source.dimensionsDefine, source.startIndex, dimIndex);
- } // dimIndex may be overflow source data.
- // return {BE_ORDINAL}
-
-
- function doGuessOrdinal(data, sourceFormat, seriesLayoutBy, dimensionsDefine, startIndex, dimIndex) {
- var result; // Experience value.
-
- var maxLoop = 5;
-
- if (isTypedArray(data)) {
- return BE_ORDINAL.Not;
- } // When sourceType is 'objectRows' or 'keyedColumns', dimensionsDefine
- // always exists in source.
-
-
- var dimName;
- var dimType;
-
- if (dimensionsDefine) {
- var dimDefItem = dimensionsDefine[dimIndex];
-
- if (isObject(dimDefItem)) {
- dimName = dimDefItem.name;
- dimType = dimDefItem.type;
- } else if (isString(dimDefItem)) {
- dimName = dimDefItem;
- }
- }
-
- if (dimType != null) {
- return dimType === 'ordinal' ? BE_ORDINAL.Must : BE_ORDINAL.Not;
- }
-
- if (sourceFormat === SOURCE_FORMAT_ARRAY_ROWS) {
- if (seriesLayoutBy === SERIES_LAYOUT_BY_ROW) {
- var sample = data[dimIndex];
-
- for (var i = 0; i < (sample || []).length && i < maxLoop; i++) {
- if ((result = detectValue(sample[startIndex + i])) != null) {
- return result;
- }
- }
- } else {
- for (var i = 0; i < data.length && i < maxLoop; i++) {
- var row = data[startIndex + i];
-
- if (row && (result = detectValue(row[dimIndex])) != null) {
- return result;
- }
- }
- }
- } else if (sourceFormat === SOURCE_FORMAT_OBJECT_ROWS) {
- if (!dimName) {
- return BE_ORDINAL.Not;
- }
-
- for (var i = 0; i < data.length && i < maxLoop; i++) {
- var item = data[i];
-
- if (item && (result = detectValue(item[dimName])) != null) {
- return result;
- }
- }
- } else if (sourceFormat === SOURCE_FORMAT_KEYED_COLUMNS) {
- if (!dimName) {
- return BE_ORDINAL.Not;
- }
-
- var sample = data[dimName];
-
- if (!sample || isTypedArray(sample)) {
- return BE_ORDINAL.Not;
- }
-
- for (var i = 0; i < sample.length && i < maxLoop; i++) {
- if ((result = detectValue(sample[i])) != null) {
- return result;
- }
- }
- } else if (sourceFormat === SOURCE_FORMAT_ORIGINAL) {
- for (var i = 0; i < data.length && i < maxLoop; i++) {
- var item = data[i];
- var val = getDataItemValue(item);
-
- if (!isArray(val)) {
- return BE_ORDINAL.Not;
- }
-
- if ((result = detectValue(val[dimIndex])) != null) {
- return result;
- }
- }
- }
-
- function detectValue(val) {
- var beStr = isString(val); // Consider usage convenience, '1', '2' will be treated as "number".
- // `isFinit('')` get `true`.
-
- if (val != null && isFinite(val) && val !== '') {
- return beStr ? BE_ORDINAL.Might : BE_ORDINAL.Not;
- } else if (beStr && val !== '-') {
- return BE_ORDINAL.Must;
- }
- }
-
- return BE_ORDINAL.Not;
- }
-
- exports.BE_ORDINAL = BE_ORDINAL;
- exports.detectSourceFormat = detectSourceFormat;
- exports.getSource = getSource;
- exports.resetSourceDefaulter = resetSourceDefaulter;
- exports.prepareSource = prepareSource;
- exports.makeSeriesEncodeForAxisCoordSys = makeSeriesEncodeForAxisCoordSys;
- exports.makeSeriesEncodeForNameBased = makeSeriesEncodeForNameBased;
- exports.guessOrdinal = guessOrdinal;
-
- /***/ }),
-
- /***/ 1458:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var List = __webpack_require__(1403);
-
- var createDimensions = __webpack_require__(1602);
-
- var _sourceType = __webpack_require__(1659);
-
- var SOURCE_FORMAT_ORIGINAL = _sourceType.SOURCE_FORMAT_ORIGINAL;
-
- var _dimensionHelper = __webpack_require__(1660);
-
- var getDimensionTypeByAxis = _dimensionHelper.getDimensionTypeByAxis;
-
- var _model = __webpack_require__(1064);
-
- var getDataItemValue = _model.getDataItemValue;
-
- var CoordinateSystem = __webpack_require__(1414);
-
- var _referHelper = __webpack_require__(2550);
-
- var getCoordSysInfoBySeries = _referHelper.getCoordSysInfoBySeries;
-
- var Source = __webpack_require__(1658);
-
- var _dataStackHelper = __webpack_require__(1440);
-
- var enableDataStack = _dataStackHelper.enableDataStack;
-
- var _sourceHelper = __webpack_require__(1457);
-
- var makeSeriesEncodeForAxisCoordSys = _sourceHelper.makeSeriesEncodeForAxisCoordSys;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @param {module:echarts/data/Source|Array} source Or raw data.
- * @param {module:echarts/model/Series} seriesModel
- * @param {Object} [opt]
- * @param {string} [opt.generateCoord]
- * @param {boolean} [opt.useEncodeDefaulter]
- */
- function createListFromArray(source, seriesModel, opt) {
- opt = opt || {};
-
- if (!Source.isInstance(source)) {
- source = Source.seriesDataToSource(source);
- }
-
- var coordSysName = seriesModel.get('coordinateSystem');
- var registeredCoordSys = CoordinateSystem.get(coordSysName);
- var coordSysInfo = getCoordSysInfoBySeries(seriesModel);
- var coordSysDimDefs;
-
- if (coordSysInfo) {
- coordSysDimDefs = zrUtil.map(coordSysInfo.coordSysDims, function (dim) {
- var dimInfo = {
- name: dim
- };
- var axisModel = coordSysInfo.axisMap.get(dim);
-
- if (axisModel) {
- var axisType = axisModel.get('type');
- dimInfo.type = getDimensionTypeByAxis(axisType); // dimInfo.stackable = isStackable(axisType);
- }
-
- return dimInfo;
- });
- }
-
- if (!coordSysDimDefs) {
- // Get dimensions from registered coordinate system
- coordSysDimDefs = registeredCoordSys && (registeredCoordSys.getDimensionsInfo ? registeredCoordSys.getDimensionsInfo() : registeredCoordSys.dimensions.slice()) || ['x', 'y'];
- }
-
- var dimInfoList = createDimensions(source, {
- coordDimensions: coordSysDimDefs,
- generateCoord: opt.generateCoord,
- encodeDefaulter: opt.useEncodeDefaulter ? zrUtil.curry(makeSeriesEncodeForAxisCoordSys, coordSysDimDefs, seriesModel) : null
- });
- var firstCategoryDimIndex;
- var hasNameEncode;
- coordSysInfo && zrUtil.each(dimInfoList, function (dimInfo, dimIndex) {
- var coordDim = dimInfo.coordDim;
- var categoryAxisModel = coordSysInfo.categoryAxisMap.get(coordDim);
-
- if (categoryAxisModel) {
- if (firstCategoryDimIndex == null) {
- firstCategoryDimIndex = dimIndex;
- }
-
- dimInfo.ordinalMeta = categoryAxisModel.getOrdinalMeta();
- }
-
- if (dimInfo.otherDims.itemName != null) {
- hasNameEncode = true;
- }
- });
-
- if (!hasNameEncode && firstCategoryDimIndex != null) {
- dimInfoList[firstCategoryDimIndex].otherDims.itemName = 0;
- }
-
- var stackCalculationInfo = enableDataStack(seriesModel, dimInfoList);
- var list = new List(dimInfoList, seriesModel);
- list.setCalculationInfo(stackCalculationInfo);
- var dimValueGetter = firstCategoryDimIndex != null && isNeedCompleteOrdinalData(source) ? function (itemOpt, dimName, dataIndex, dimIndex) {
- // Use dataIndex as ordinal value in categoryAxis
- return dimIndex === firstCategoryDimIndex ? dataIndex : this.defaultDimValueGetter(itemOpt, dimName, dataIndex, dimIndex);
- } : null;
- list.hasItemOption = false;
- list.initData(source, null, dimValueGetter);
- return list;
- }
-
- function isNeedCompleteOrdinalData(source) {
- if (source.sourceFormat === SOURCE_FORMAT_ORIGINAL) {
- var sampleItem = firstDataNotNull(source.data || []);
- return sampleItem != null && !zrUtil.isArray(getDataItemValue(sampleItem));
- }
- }
-
- function firstDataNotNull(data) {
- var i = 0;
-
- while (i < data.length && data[i] == null) {
- i++;
- }
-
- return data[i];
- }
-
- var _default = createListFromArray;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1476:
- /***/ (function(module, exports, __webpack_require__) {
-
- // style-loader: Adds some css to the DOM by adding a <style> tag
-
- // load the styles
- var content = __webpack_require__(1646);
- if(typeof content === 'string') content = [[module.i, content, '']];
- // Prepare cssTransformation
- var transform;
-
- var options = {"hmr":false}
- options.transform = transform
- // add the styles to the DOM
- var update = __webpack_require__(300)(content, options);
- if(content.locals) module.exports = content.locals;
-
-
- /***/ }),
-
- /***/ 1481:
- /***/ (function(module, exports, __webpack_require__) {
-
- var _vector = __webpack_require__(1180);
-
- var v2Create = _vector.create;
- var v2DistSquare = _vector.distSquare;
-
- /**
- * 曲线辅助模块
- * @module zrender/core/curve
- * @author pissang(https://www.github.com/pissang)
- */
- var mathPow = Math.pow;
- var mathSqrt = Math.sqrt;
- var EPSILON = 1e-8;
- var EPSILON_NUMERIC = 1e-4;
- var THREE_SQRT = mathSqrt(3);
- var ONE_THIRD = 1 / 3; // 临时变量
-
- var _v0 = v2Create();
-
- var _v1 = v2Create();
-
- var _v2 = v2Create();
-
- function isAroundZero(val) {
- return val > -EPSILON && val < EPSILON;
- }
-
- function isNotAroundZero(val) {
- return val > EPSILON || val < -EPSILON;
- }
- /**
- * 计算三次贝塞尔值
- * @memberOf module:zrender/core/curve
- * @param {number} p0
- * @param {number} p1
- * @param {number} p2
- * @param {number} p3
- * @param {number} t
- * @return {number}
- */
-
-
- function cubicAt(p0, p1, p2, p3, t) {
- var onet = 1 - t;
- return onet * onet * (onet * p0 + 3 * t * p1) + t * t * (t * p3 + 3 * onet * p2);
- }
- /**
- * 计算三次贝塞尔导数值
- * @memberOf module:zrender/core/curve
- * @param {number} p0
- * @param {number} p1
- * @param {number} p2
- * @param {number} p3
- * @param {number} t
- * @return {number}
- */
-
-
- function cubicDerivativeAt(p0, p1, p2, p3, t) {
- var onet = 1 - t;
- return 3 * (((p1 - p0) * onet + 2 * (p2 - p1) * t) * onet + (p3 - p2) * t * t);
- }
- /**
- * 计算三次贝塞尔方程根,使用盛金公式
- * @memberOf module:zrender/core/curve
- * @param {number} p0
- * @param {number} p1
- * @param {number} p2
- * @param {number} p3
- * @param {number} val
- * @param {Array.<number>} roots
- * @return {number} 有效根数目
- */
-
-
- function cubicRootAt(p0, p1, p2, p3, val, roots) {
- // Evaluate roots of cubic functions
- var a = p3 + 3 * (p1 - p2) - p0;
- var b = 3 * (p2 - p1 * 2 + p0);
- var c = 3 * (p1 - p0);
- var d = p0 - val;
- var A = b * b - 3 * a * c;
- var B = b * c - 9 * a * d;
- var C = c * c - 3 * b * d;
- var n = 0;
-
- if (isAroundZero(A) && isAroundZero(B)) {
- if (isAroundZero(b)) {
- roots[0] = 0;
- } else {
- var t1 = -c / b; //t1, t2, t3, b is not zero
-
- if (t1 >= 0 && t1 <= 1) {
- roots[n++] = t1;
- }
- }
- } else {
- var disc = B * B - 4 * A * C;
-
- if (isAroundZero(disc)) {
- var K = B / A;
- var t1 = -b / a + K; // t1, a is not zero
-
- var t2 = -K / 2; // t2, t3
-
- if (t1 >= 0 && t1 <= 1) {
- roots[n++] = t1;
- }
-
- if (t2 >= 0 && t2 <= 1) {
- roots[n++] = t2;
- }
- } else if (disc > 0) {
- var discSqrt = mathSqrt(disc);
- var Y1 = A * b + 1.5 * a * (-B + discSqrt);
- var Y2 = A * b + 1.5 * a * (-B - discSqrt);
-
- if (Y1 < 0) {
- Y1 = -mathPow(-Y1, ONE_THIRD);
- } else {
- Y1 = mathPow(Y1, ONE_THIRD);
- }
-
- if (Y2 < 0) {
- Y2 = -mathPow(-Y2, ONE_THIRD);
- } else {
- Y2 = mathPow(Y2, ONE_THIRD);
- }
-
- var t1 = (-b - (Y1 + Y2)) / (3 * a);
-
- if (t1 >= 0 && t1 <= 1) {
- roots[n++] = t1;
- }
- } else {
- var T = (2 * A * b - 3 * a * B) / (2 * mathSqrt(A * A * A));
- var theta = Math.acos(T) / 3;
- var ASqrt = mathSqrt(A);
- var tmp = Math.cos(theta);
- var t1 = (-b - 2 * ASqrt * tmp) / (3 * a);
- var t2 = (-b + ASqrt * (tmp + THREE_SQRT * Math.sin(theta))) / (3 * a);
- var t3 = (-b + ASqrt * (tmp - THREE_SQRT * Math.sin(theta))) / (3 * a);
-
- if (t1 >= 0 && t1 <= 1) {
- roots[n++] = t1;
- }
-
- if (t2 >= 0 && t2 <= 1) {
- roots[n++] = t2;
- }
-
- if (t3 >= 0 && t3 <= 1) {
- roots[n++] = t3;
- }
- }
- }
-
- return n;
- }
- /**
- * 计算三次贝塞尔方程极限值的位置
- * @memberOf module:zrender/core/curve
- * @param {number} p0
- * @param {number} p1
- * @param {number} p2
- * @param {number} p3
- * @param {Array.<number>} extrema
- * @return {number} 有效数目
- */
-
-
- function cubicExtrema(p0, p1, p2, p3, extrema) {
- var b = 6 * p2 - 12 * p1 + 6 * p0;
- var a = 9 * p1 + 3 * p3 - 3 * p0 - 9 * p2;
- var c = 3 * p1 - 3 * p0;
- var n = 0;
-
- if (isAroundZero(a)) {
- if (isNotAroundZero(b)) {
- var t1 = -c / b;
-
- if (t1 >= 0 && t1 <= 1) {
- extrema[n++] = t1;
- }
- }
- } else {
- var disc = b * b - 4 * a * c;
-
- if (isAroundZero(disc)) {
- extrema[0] = -b / (2 * a);
- } else if (disc > 0) {
- var discSqrt = mathSqrt(disc);
- var t1 = (-b + discSqrt) / (2 * a);
- var t2 = (-b - discSqrt) / (2 * a);
-
- if (t1 >= 0 && t1 <= 1) {
- extrema[n++] = t1;
- }
-
- if (t2 >= 0 && t2 <= 1) {
- extrema[n++] = t2;
- }
- }
- }
-
- return n;
- }
- /**
- * 细分三次贝塞尔曲线
- * @memberOf module:zrender/core/curve
- * @param {number} p0
- * @param {number} p1
- * @param {number} p2
- * @param {number} p3
- * @param {number} t
- * @param {Array.<number>} out
- */
-
-
- function cubicSubdivide(p0, p1, p2, p3, t, out) {
- var p01 = (p1 - p0) * t + p0;
- var p12 = (p2 - p1) * t + p1;
- var p23 = (p3 - p2) * t + p2;
- var p012 = (p12 - p01) * t + p01;
- var p123 = (p23 - p12) * t + p12;
- var p0123 = (p123 - p012) * t + p012; // Seg0
-
- out[0] = p0;
- out[1] = p01;
- out[2] = p012;
- out[3] = p0123; // Seg1
-
- out[4] = p0123;
- out[5] = p123;
- out[6] = p23;
- out[7] = p3;
- }
- /**
- * 投射点到三次贝塞尔曲线上,返回投射距离。
- * 投射点有可能会有一个或者多个,这里只返回其中距离最短的一个。
- * @param {number} x0
- * @param {number} y0
- * @param {number} x1
- * @param {number} y1
- * @param {number} x2
- * @param {number} y2
- * @param {number} x3
- * @param {number} y3
- * @param {number} x
- * @param {number} y
- * @param {Array.<number>} [out] 投射点
- * @return {number}
- */
-
-
- function cubicProjectPoint(x0, y0, x1, y1, x2, y2, x3, y3, x, y, out) {
- // http://pomax.github.io/bezierinfo/#projections
- var t;
- var interval = 0.005;
- var d = Infinity;
- var prev;
- var next;
- var d1;
- var d2;
- _v0[0] = x;
- _v0[1] = y; // 先粗略估计一下可能的最小距离的 t 值
- // PENDING
-
- for (var _t = 0; _t < 1; _t += 0.05) {
- _v1[0] = cubicAt(x0, x1, x2, x3, _t);
- _v1[1] = cubicAt(y0, y1, y2, y3, _t);
- d1 = v2DistSquare(_v0, _v1);
-
- if (d1 < d) {
- t = _t;
- d = d1;
- }
- }
-
- d = Infinity; // At most 32 iteration
-
- for (var i = 0; i < 32; i++) {
- if (interval < EPSILON_NUMERIC) {
- break;
- }
-
- prev = t - interval;
- next = t + interval; // t - interval
-
- _v1[0] = cubicAt(x0, x1, x2, x3, prev);
- _v1[1] = cubicAt(y0, y1, y2, y3, prev);
- d1 = v2DistSquare(_v1, _v0);
-
- if (prev >= 0 && d1 < d) {
- t = prev;
- d = d1;
- } else {
- // t + interval
- _v2[0] = cubicAt(x0, x1, x2, x3, next);
- _v2[1] = cubicAt(y0, y1, y2, y3, next);
- d2 = v2DistSquare(_v2, _v0);
-
- if (next <= 1 && d2 < d) {
- t = next;
- d = d2;
- } else {
- interval *= 0.5;
- }
- }
- } // t
-
-
- if (out) {
- out[0] = cubicAt(x0, x1, x2, x3, t);
- out[1] = cubicAt(y0, y1, y2, y3, t);
- } // console.log(interval, i);
-
-
- return mathSqrt(d);
- }
- /**
- * 计算二次方贝塞尔值
- * @param {number} p0
- * @param {number} p1
- * @param {number} p2
- * @param {number} t
- * @return {number}
- */
-
-
- function quadraticAt(p0, p1, p2, t) {
- var onet = 1 - t;
- return onet * (onet * p0 + 2 * t * p1) + t * t * p2;
- }
- /**
- * 计算二次方贝塞尔导数值
- * @param {number} p0
- * @param {number} p1
- * @param {number} p2
- * @param {number} t
- * @return {number}
- */
-
-
- function quadraticDerivativeAt(p0, p1, p2, t) {
- return 2 * ((1 - t) * (p1 - p0) + t * (p2 - p1));
- }
- /**
- * 计算二次方贝塞尔方程根
- * @param {number} p0
- * @param {number} p1
- * @param {number} p2
- * @param {number} t
- * @param {Array.<number>} roots
- * @return {number} 有效根数目
- */
-
-
- function quadraticRootAt(p0, p1, p2, val, roots) {
- var a = p0 - 2 * p1 + p2;
- var b = 2 * (p1 - p0);
- var c = p0 - val;
- var n = 0;
-
- if (isAroundZero(a)) {
- if (isNotAroundZero(b)) {
- var t1 = -c / b;
-
- if (t1 >= 0 && t1 <= 1) {
- roots[n++] = t1;
- }
- }
- } else {
- var disc = b * b - 4 * a * c;
-
- if (isAroundZero(disc)) {
- var t1 = -b / (2 * a);
-
- if (t1 >= 0 && t1 <= 1) {
- roots[n++] = t1;
- }
- } else if (disc > 0) {
- var discSqrt = mathSqrt(disc);
- var t1 = (-b + discSqrt) / (2 * a);
- var t2 = (-b - discSqrt) / (2 * a);
-
- if (t1 >= 0 && t1 <= 1) {
- roots[n++] = t1;
- }
-
- if (t2 >= 0 && t2 <= 1) {
- roots[n++] = t2;
- }
- }
- }
-
- return n;
- }
- /**
- * 计算二次贝塞尔方程极限值
- * @memberOf module:zrender/core/curve
- * @param {number} p0
- * @param {number} p1
- * @param {number} p2
- * @return {number}
- */
-
-
- function quadraticExtremum(p0, p1, p2) {
- var divider = p0 + p2 - 2 * p1;
-
- if (divider === 0) {
- // p1 is center of p0 and p2
- return 0.5;
- } else {
- return (p0 - p1) / divider;
- }
- }
- /**
- * 细分二次贝塞尔曲线
- * @memberOf module:zrender/core/curve
- * @param {number} p0
- * @param {number} p1
- * @param {number} p2
- * @param {number} t
- * @param {Array.<number>} out
- */
-
-
- function quadraticSubdivide(p0, p1, p2, t, out) {
- var p01 = (p1 - p0) * t + p0;
- var p12 = (p2 - p1) * t + p1;
- var p012 = (p12 - p01) * t + p01; // Seg0
-
- out[0] = p0;
- out[1] = p01;
- out[2] = p012; // Seg1
-
- out[3] = p012;
- out[4] = p12;
- out[5] = p2;
- }
- /**
- * 投射点到二次贝塞尔曲线上,返回投射距离。
- * 投射点有可能会有一个或者多个,这里只返回其中距离最短的一个。
- * @param {number} x0
- * @param {number} y0
- * @param {number} x1
- * @param {number} y1
- * @param {number} x2
- * @param {number} y2
- * @param {number} x
- * @param {number} y
- * @param {Array.<number>} out 投射点
- * @return {number}
- */
-
-
- function quadraticProjectPoint(x0, y0, x1, y1, x2, y2, x, y, out) {
- // http://pomax.github.io/bezierinfo/#projections
- var t;
- var interval = 0.005;
- var d = Infinity;
- _v0[0] = x;
- _v0[1] = y; // 先粗略估计一下可能的最小距离的 t 值
- // PENDING
-
- for (var _t = 0; _t < 1; _t += 0.05) {
- _v1[0] = quadraticAt(x0, x1, x2, _t);
- _v1[1] = quadraticAt(y0, y1, y2, _t);
- var d1 = v2DistSquare(_v0, _v1);
-
- if (d1 < d) {
- t = _t;
- d = d1;
- }
- }
-
- d = Infinity; // At most 32 iteration
-
- for (var i = 0; i < 32; i++) {
- if (interval < EPSILON_NUMERIC) {
- break;
- }
-
- var prev = t - interval;
- var next = t + interval; // t - interval
-
- _v1[0] = quadraticAt(x0, x1, x2, prev);
- _v1[1] = quadraticAt(y0, y1, y2, prev);
- var d1 = v2DistSquare(_v1, _v0);
-
- if (prev >= 0 && d1 < d) {
- t = prev;
- d = d1;
- } else {
- // t + interval
- _v2[0] = quadraticAt(x0, x1, x2, next);
- _v2[1] = quadraticAt(y0, y1, y2, next);
- var d2 = v2DistSquare(_v2, _v0);
-
- if (next <= 1 && d2 < d) {
- t = next;
- d = d2;
- } else {
- interval *= 0.5;
- }
- }
- } // t
-
-
- if (out) {
- out[0] = quadraticAt(x0, x1, x2, t);
- out[1] = quadraticAt(y0, y1, y2, t);
- } // console.log(interval, i);
-
-
- return mathSqrt(d);
- }
-
- exports.cubicAt = cubicAt;
- exports.cubicDerivativeAt = cubicDerivativeAt;
- exports.cubicRootAt = cubicRootAt;
- exports.cubicExtrema = cubicExtrema;
- exports.cubicSubdivide = cubicSubdivide;
- exports.cubicProjectPoint = cubicProjectPoint;
- exports.quadraticAt = quadraticAt;
- exports.quadraticDerivativeAt = quadraticDerivativeAt;
- exports.quadraticRootAt = quadraticRootAt;
- exports.quadraticExtremum = quadraticExtremum;
- exports.quadraticSubdivide = quadraticSubdivide;
- exports.quadraticProjectPoint = quadraticProjectPoint;
-
- /***/ }),
-
- /***/ 1482:
- /***/ (function(module, exports) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var ORIGIN_METHOD = '\0__throttleOriginMethod';
- var RATE = '\0__throttleRate';
- var THROTTLE_TYPE = '\0__throttleType';
- /**
- * @public
- * @param {(Function)} fn
- * @param {number} [delay=0] Unit: ms.
- * @param {boolean} [debounce=false]
- * true: If call interval less than `delay`, only the last call works.
- * false: If call interval less than `delay, call works on fixed rate.
- * @return {(Function)} throttled fn.
- */
-
- function throttle(fn, delay, debounce) {
- var currCall;
- var lastCall = 0;
- var lastExec = 0;
- var timer = null;
- var diff;
- var scope;
- var args;
- var debounceNextCall;
- delay = delay || 0;
-
- function exec() {
- lastExec = new Date().getTime();
- timer = null;
- fn.apply(scope, args || []);
- }
-
- var cb = function () {
- currCall = new Date().getTime();
- scope = this;
- args = arguments;
- var thisDelay = debounceNextCall || delay;
- var thisDebounce = debounceNextCall || debounce;
- debounceNextCall = null;
- diff = currCall - (thisDebounce ? lastCall : lastExec) - thisDelay;
- clearTimeout(timer); // Here we should make sure that: the `exec` SHOULD NOT be called later
- // than a new call of `cb`, that is, preserving the command order. Consider
- // calculating "scale rate" when roaming as an example. When a call of `cb`
- // happens, either the `exec` is called dierectly, or the call is delayed.
- // But the delayed call should never be later than next call of `cb`. Under
- // this assurance, we can simply update view state each time `dispatchAction`
- // triggered by user roaming, but not need to add extra code to avoid the
- // state being "rolled-back".
-
- if (thisDebounce) {
- timer = setTimeout(exec, thisDelay);
- } else {
- if (diff >= 0) {
- exec();
- } else {
- timer = setTimeout(exec, -diff);
- }
- }
-
- lastCall = currCall;
- };
- /**
- * Clear throttle.
- * @public
- */
-
-
- cb.clear = function () {
- if (timer) {
- clearTimeout(timer);
- timer = null;
- }
- };
- /**
- * Enable debounce once.
- */
-
-
- cb.debounceNextCall = function (debounceDelay) {
- debounceNextCall = debounceDelay;
- };
-
- return cb;
- }
- /**
- * Create throttle method or update throttle rate.
- *
- * @example
- * ComponentView.prototype.render = function () {
- * ...
- * throttle.createOrUpdate(
- * this,
- * '_dispatchAction',
- * this.model.get('throttle'),
- * 'fixRate'
- * );
- * };
- * ComponentView.prototype.remove = function () {
- * throttle.clear(this, '_dispatchAction');
- * };
- * ComponentView.prototype.dispose = function () {
- * throttle.clear(this, '_dispatchAction');
- * };
- *
- * @public
- * @param {Object} obj
- * @param {string} fnAttr
- * @param {number} [rate]
- * @param {string} [throttleType='fixRate'] 'fixRate' or 'debounce'
- * @return {Function} throttled function.
- */
-
-
- function createOrUpdate(obj, fnAttr, rate, throttleType) {
- var fn = obj[fnAttr];
-
- if (!fn) {
- return;
- }
-
- var originFn = fn[ORIGIN_METHOD] || fn;
- var lastThrottleType = fn[THROTTLE_TYPE];
- var lastRate = fn[RATE];
-
- if (lastRate !== rate || lastThrottleType !== throttleType) {
- if (rate == null || !throttleType) {
- return obj[fnAttr] = originFn;
- }
-
- fn = obj[fnAttr] = throttle(originFn, rate, throttleType === 'debounce');
- fn[ORIGIN_METHOD] = originFn;
- fn[THROTTLE_TYPE] = throttleType;
- fn[RATE] = rate;
- }
-
- return fn;
- }
- /**
- * Clear throttle. Example see throttle.createOrUpdate.
- *
- * @public
- * @param {Object} obj
- * @param {string} fnAttr
- */
-
-
- function clear(obj, fnAttr) {
- var fn = obj[fnAttr];
-
- if (fn && fn[ORIGIN_METHOD]) {
- obj[fnAttr] = fn[ORIGIN_METHOD];
- }
- }
-
- exports.throttle = throttle;
- exports.createOrUpdate = createOrUpdate;
- exports.clear = clear;
-
- /***/ }),
-
- /***/ 1483:
- /***/ (function(module, exports) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Language: (Simplified) Chinese.
- */
- var _default = {
- legend: {
- selector: {
- all: '全选',
- inverse: '反选'
- }
- },
- toolbox: {
- brush: {
- title: {
- rect: '矩形选择',
- polygon: '圈选',
- lineX: '横向选择',
- lineY: '纵向选择',
- keep: '保持选择',
- clear: '清除选择'
- }
- },
- dataView: {
- title: '数据视图',
- lang: ['数据视图', '关闭', '刷新']
- },
- dataZoom: {
- title: {
- zoom: '区域缩放',
- back: '区域缩放还原'
- }
- },
- magicType: {
- title: {
- line: '切换为折线图',
- bar: '切换为柱状图',
- stack: '切换为堆叠',
- tiled: '切换为平铺'
- }
- },
- restore: {
- title: '还原'
- },
- saveAsImage: {
- title: '保存为图片',
- lang: ['右键另存为图片']
- }
- },
- series: {
- typeNames: {
- pie: '饼图',
- bar: '柱状图',
- line: '折线图',
- scatter: '散点图',
- effectScatter: '涟漪散点图',
- radar: '雷达图',
- tree: '树图',
- treemap: '矩形树图',
- boxplot: '箱型图',
- candlestick: 'K线图',
- k: 'K线图',
- heatmap: '热力图',
- map: '地图',
- parallel: '平行坐标图',
- lines: '线图',
- graph: '关系图',
- sankey: '桑基图',
- funnel: '漏斗图',
- gauge: '仪表盘图',
- pictorialBar: '象形柱图',
- themeRiver: '主题河流图',
- sunburst: '旭日图'
- }
- },
- aria: {
- general: {
- withTitle: '这是一个关于“{title}”的图表。',
- withoutTitle: '这是一个图表,'
- },
- series: {
- single: {
- prefix: '',
- withName: '图表类型是{seriesType},表示{seriesName}。',
- withoutName: '图表类型是{seriesType}。'
- },
- multiple: {
- prefix: '它由{seriesCount}个图表系列组成。',
- withName: '第{seriesId}个系列是一个表示{seriesName}的{seriesType},',
- withoutName: '第{seriesId}个系列是一个{seriesType},',
- separator: {
- middle: ';',
- end: '。'
- }
- }
- },
- data: {
- allData: '其数据是——',
- partialData: '其中,前{displayCnt}项是——',
- withName: '{name}的数据是{value}',
- withoutName: '{value}',
- separator: {
- middle: ',',
- end: ''
- }
- }
- }
- };
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1484:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _util = __webpack_require__(864);
-
- var each = _util.each;
- var map = _util.map;
-
- var _number = __webpack_require__(985);
-
- var linearMap = _number.linearMap;
- var getPixelPrecision = _number.getPixelPrecision;
- var round = _number.round;
-
- var _axisTickLabelBuilder = __webpack_require__(2553);
-
- var createAxisTicks = _axisTickLabelBuilder.createAxisTicks;
- var createAxisLabels = _axisTickLabelBuilder.createAxisLabels;
- var calculateCategoryInterval = _axisTickLabelBuilder.calculateCategoryInterval;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var NORMALIZED_EXTENT = [0, 1];
- /**
- * Base class of Axis.
- * @constructor
- */
-
- var Axis = function (dim, scale, extent) {
- /**
- * Axis dimension. Such as 'x', 'y', 'z', 'angle', 'radius'.
- * @type {string}
- */
- this.dim = dim;
- /**
- * Axis scale
- * @type {module:echarts/coord/scale/*}
- */
-
- this.scale = scale;
- /**
- * @type {Array.<number>}
- * @private
- */
-
- this._extent = extent || [0, 0];
- /**
- * @type {boolean}
- */
-
- this.inverse = false;
- /**
- * Usually true when axis has a ordinal scale
- * @type {boolean}
- */
-
- this.onBand = false;
- };
-
- Axis.prototype = {
- constructor: Axis,
-
- /**
- * If axis extent contain given coord
- * @param {number} coord
- * @return {boolean}
- */
- contain: function (coord) {
- var extent = this._extent;
- var min = Math.min(extent[0], extent[1]);
- var max = Math.max(extent[0], extent[1]);
- return coord >= min && coord <= max;
- },
-
- /**
- * If axis extent contain given data
- * @param {number} data
- * @return {boolean}
- */
- containData: function (data) {
- return this.scale.contain(data);
- },
-
- /**
- * Get coord extent.
- * @return {Array.<number>}
- */
- getExtent: function () {
- return this._extent.slice();
- },
-
- /**
- * Get precision used for formatting
- * @param {Array.<number>} [dataExtent]
- * @return {number}
- */
- getPixelPrecision: function (dataExtent) {
- return getPixelPrecision(dataExtent || this.scale.getExtent(), this._extent);
- },
-
- /**
- * Set coord extent
- * @param {number} start
- * @param {number} end
- */
- setExtent: function (start, end) {
- var extent = this._extent;
- extent[0] = start;
- extent[1] = end;
- },
-
- /**
- * Convert data to coord. Data is the rank if it has an ordinal scale
- * @param {number} data
- * @param {boolean} clamp
- * @return {number}
- */
- dataToCoord: function (data, clamp) {
- var extent = this._extent;
- var scale = this.scale;
- data = scale.normalize(data);
-
- if (this.onBand && scale.type === 'ordinal') {
- extent = extent.slice();
- fixExtentWithBands(extent, scale.count());
- }
-
- return linearMap(data, NORMALIZED_EXTENT, extent, clamp);
- },
-
- /**
- * Convert coord to data. Data is the rank if it has an ordinal scale
- * @param {number} coord
- * @param {boolean} clamp
- * @return {number}
- */
- coordToData: function (coord, clamp) {
- var extent = this._extent;
- var scale = this.scale;
-
- if (this.onBand && scale.type === 'ordinal') {
- extent = extent.slice();
- fixExtentWithBands(extent, scale.count());
- }
-
- var t = linearMap(coord, extent, NORMALIZED_EXTENT, clamp);
- return this.scale.scale(t);
- },
-
- /**
- * Convert pixel point to data in axis
- * @param {Array.<number>} point
- * @param {boolean} clamp
- * @return {number} data
- */
- pointToData: function (point, clamp) {// Should be implemented in derived class if necessary.
- },
-
- /**
- * Different from `zrUtil.map(axis.getTicks(), axis.dataToCoord, axis)`,
- * `axis.getTicksCoords` considers `onBand`, which is used by
- * `boundaryGap:true` of category axis and splitLine and splitArea.
- * @param {Object} [opt]
- * @param {Model} [opt.tickModel=axis.model.getModel('axisTick')]
- * @param {boolean} [opt.clamp] If `true`, the first and the last
- * tick must be at the axis end points. Otherwise, clip ticks
- * that outside the axis extent.
- * @return {Array.<Object>} [{
- * coord: ...,
- * tickValue: ...
- * }, ...]
- */
- getTicksCoords: function (opt) {
- opt = opt || {};
- var tickModel = opt.tickModel || this.getTickModel();
- var result = createAxisTicks(this, tickModel);
- var ticks = result.ticks;
- var ticksCoords = map(ticks, function (tickValue) {
- return {
- coord: this.dataToCoord(tickValue),
- tickValue: tickValue
- };
- }, this);
- var alignWithLabel = tickModel.get('alignWithLabel');
- fixOnBandTicksCoords(this, ticksCoords, alignWithLabel, opt.clamp);
- return ticksCoords;
- },
-
- /**
- * @return {Array.<Array.<Object>>} [{ coord: ..., tickValue: ...}]
- */
- getMinorTicksCoords: function () {
- if (this.scale.type === 'ordinal') {
- // Category axis doesn't support minor ticks
- return [];
- }
-
- var minorTickModel = this.model.getModel('minorTick');
- var splitNumber = minorTickModel.get('splitNumber'); // Protection.
-
- if (!(splitNumber > 0 && splitNumber < 100)) {
- splitNumber = 5;
- }
-
- var minorTicks = this.scale.getMinorTicks(splitNumber);
- var minorTicksCoords = map(minorTicks, function (minorTicksGroup) {
- return map(minorTicksGroup, function (minorTick) {
- return {
- coord: this.dataToCoord(minorTick),
- tickValue: minorTick
- };
- }, this);
- }, this);
- return minorTicksCoords;
- },
-
- /**
- * @return {Array.<Object>} [{
- * formattedLabel: string,
- * rawLabel: axis.scale.getLabel(tickValue)
- * tickValue: number
- * }, ...]
- */
- getViewLabels: function () {
- return createAxisLabels(this).labels;
- },
-
- /**
- * @return {module:echarts/coord/model/Model}
- */
- getLabelModel: function () {
- return this.model.getModel('axisLabel');
- },
-
- /**
- * Notice here we only get the default tick model. For splitLine
- * or splitArea, we should pass the splitLineModel or splitAreaModel
- * manually when calling `getTicksCoords`.
- * In GL, this method may be overrided to:
- * `axisModel.getModel('axisTick', grid3DModel.getModel('axisTick'));`
- * @return {module:echarts/coord/model/Model}
- */
- getTickModel: function () {
- return this.model.getModel('axisTick');
- },
-
- /**
- * Get width of band
- * @return {number}
- */
- getBandWidth: function () {
- var axisExtent = this._extent;
- var dataExtent = this.scale.getExtent();
- var len = dataExtent[1] - dataExtent[0] + (this.onBand ? 1 : 0); // Fix #2728, avoid NaN when only one data.
-
- len === 0 && (len = 1);
- var size = Math.abs(axisExtent[1] - axisExtent[0]);
- return Math.abs(size) / len;
- },
-
- /**
- * @abstract
- * @return {boolean} Is horizontal
- */
- isHorizontal: null,
-
- /**
- * @abstract
- * @return {number} Get axis rotate, by degree.
- */
- getRotate: null,
-
- /**
- * Only be called in category axis.
- * Can be overrided, consider other axes like in 3D.
- * @return {number} Auto interval for cateogry axis tick and label
- */
- calculateCategoryInterval: function () {
- return calculateCategoryInterval(this);
- }
- };
-
- function fixExtentWithBands(extent, nTick) {
- var size = extent[1] - extent[0];
- var len = nTick;
- var margin = size / len / 2;
- extent[0] += margin;
- extent[1] -= margin;
- } // If axis has labels [1, 2, 3, 4]. Bands on the axis are
- // |---1---|---2---|---3---|---4---|.
- // So the displayed ticks and splitLine/splitArea should between
- // each data item, otherwise cause misleading (e.g., split tow bars
- // of a single data item when there are two bar series).
- // Also consider if tickCategoryInterval > 0 and onBand, ticks and
- // splitLine/spliteArea should layout appropriately corresponding
- // to displayed labels. (So we should not use `getBandWidth` in this
- // case).
-
-
- function fixOnBandTicksCoords(axis, ticksCoords, alignWithLabel, clamp) {
- var ticksLen = ticksCoords.length;
-
- if (!axis.onBand || alignWithLabel || !ticksLen) {
- return;
- }
-
- var axisExtent = axis.getExtent();
- var last;
- var diffSize;
-
- if (ticksLen === 1) {
- ticksCoords[0].coord = axisExtent[0];
- last = ticksCoords[1] = {
- coord: axisExtent[0]
- };
- } else {
- var crossLen = ticksCoords[ticksLen - 1].tickValue - ticksCoords[0].tickValue;
- var shift = (ticksCoords[ticksLen - 1].coord - ticksCoords[0].coord) / crossLen;
- each(ticksCoords, function (ticksItem) {
- ticksItem.coord -= shift / 2;
- });
- var dataExtent = axis.scale.getExtent();
- diffSize = 1 + dataExtent[1] - ticksCoords[ticksLen - 1].tickValue;
- last = {
- coord: ticksCoords[ticksLen - 1].coord + shift * diffSize
- };
- ticksCoords.push(last);
- }
-
- var inverse = axisExtent[0] > axisExtent[1]; // Handling clamp.
-
- if (littleThan(ticksCoords[0].coord, axisExtent[0])) {
- clamp ? ticksCoords[0].coord = axisExtent[0] : ticksCoords.shift();
- }
-
- if (clamp && littleThan(axisExtent[0], ticksCoords[0].coord)) {
- ticksCoords.unshift({
- coord: axisExtent[0]
- });
- }
-
- if (littleThan(axisExtent[1], last.coord)) {
- clamp ? last.coord = axisExtent[1] : ticksCoords.pop();
- }
-
- if (clamp && littleThan(last.coord, axisExtent[1])) {
- ticksCoords.push({
- coord: axisExtent[1]
- });
- }
-
- function littleThan(a, b) {
- // Avoid rounding error cause calculated tick coord different with extent.
- // It may cause an extra unecessary tick added.
- a = round(a);
- b = round(b);
- return inverse ? a > b : a < b;
- }
- }
-
- var _default = Axis;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1485:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _util = __webpack_require__(864);
-
- var retrieve = _util.retrieve;
- var defaults = _util.defaults;
- var extend = _util.extend;
- var each = _util.each;
- var map = _util.map;
-
- var formatUtil = __webpack_require__(1186);
-
- var graphic = __webpack_require__(906);
-
- var Model = __webpack_require__(1317);
-
- var _number = __webpack_require__(985);
-
- var isRadianAroundZero = _number.isRadianAroundZero;
- var remRadian = _number.remRadian;
-
- var _symbol = __webpack_require__(1404);
-
- var createSymbol = _symbol.createSymbol;
-
- var matrixUtil = __webpack_require__(1350);
-
- var _vector = __webpack_require__(1180);
-
- var v2ApplyTransform = _vector.applyTransform;
-
- var _axisHelper = __webpack_require__(1415);
-
- var shouldShowAllLabels = _axisHelper.shouldShowAllLabels;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var PI = Math.PI;
- /**
- * A final axis is translated and rotated from a "standard axis".
- * So opt.position and opt.rotation is required.
- *
- * A standard axis is and axis from [0, 0] to [0, axisExtent[1]],
- * for example: (0, 0) ------------> (0, 50)
- *
- * nameDirection or tickDirection or labelDirection is 1 means tick
- * or label is below the standard axis, whereas is -1 means above
- * the standard axis. labelOffset means offset between label and axis,
- * which is useful when 'onZero', where axisLabel is in the grid and
- * label in outside grid.
- *
- * Tips: like always,
- * positive rotation represents anticlockwise, and negative rotation
- * represents clockwise.
- * The direction of position coordinate is the same as the direction
- * of screen coordinate.
- *
- * Do not need to consider axis 'inverse', which is auto processed by
- * axis extent.
- *
- * @param {module:zrender/container/Group} group
- * @param {Object} axisModel
- * @param {Object} opt Standard axis parameters.
- * @param {Array.<number>} opt.position [x, y]
- * @param {number} opt.rotation by radian
- * @param {number} [opt.nameDirection=1] 1 or -1 Used when nameLocation is 'middle' or 'center'.
- * @param {number} [opt.tickDirection=1] 1 or -1
- * @param {number} [opt.labelDirection=1] 1 or -1
- * @param {number} [opt.labelOffset=0] Usefull when onZero.
- * @param {string} [opt.axisLabelShow] default get from axisModel.
- * @param {string} [opt.axisName] default get from axisModel.
- * @param {number} [opt.axisNameAvailableWidth]
- * @param {number} [opt.labelRotate] by degree, default get from axisModel.
- * @param {number} [opt.strokeContainThreshold] Default label interval when label
- * @param {number} [opt.nameTruncateMaxWidth]
- */
-
- var AxisBuilder = function (axisModel, opt) {
- /**
- * @readOnly
- */
- this.opt = opt;
- /**
- * @readOnly
- */
-
- this.axisModel = axisModel; // Default value
-
- defaults(opt, {
- labelOffset: 0,
- nameDirection: 1,
- tickDirection: 1,
- labelDirection: 1,
- silent: true
- });
- /**
- * @readOnly
- */
-
- this.group = new graphic.Group(); // FIXME Not use a seperate text group?
-
- var dumbGroup = new graphic.Group({
- position: opt.position.slice(),
- rotation: opt.rotation
- }); // this.group.add(dumbGroup);
- // this._dumbGroup = dumbGroup;
-
- dumbGroup.updateTransform();
- this._transform = dumbGroup.transform;
- this._dumbGroup = dumbGroup;
- };
-
- AxisBuilder.prototype = {
- constructor: AxisBuilder,
- hasBuilder: function (name) {
- return !!builders[name];
- },
- add: function (name) {
- builders[name].call(this);
- },
- getGroup: function () {
- return this.group;
- }
- };
- var builders = {
- /**
- * @private
- */
- axisLine: function () {
- var opt = this.opt;
- var axisModel = this.axisModel;
-
- if (!axisModel.get('axisLine.show')) {
- return;
- }
-
- var extent = this.axisModel.axis.getExtent();
- var matrix = this._transform;
- var pt1 = [extent[0], 0];
- var pt2 = [extent[1], 0];
-
- if (matrix) {
- v2ApplyTransform(pt1, pt1, matrix);
- v2ApplyTransform(pt2, pt2, matrix);
- }
-
- var lineStyle = extend({
- lineCap: 'round'
- }, axisModel.getModel('axisLine.lineStyle').getLineStyle());
- this.group.add(new graphic.Line({
- // Id for animation
- anid: 'line',
- subPixelOptimize: true,
- shape: {
- x1: pt1[0],
- y1: pt1[1],
- x2: pt2[0],
- y2: pt2[1]
- },
- style: lineStyle,
- strokeContainThreshold: opt.strokeContainThreshold || 5,
- silent: true,
- z2: 1
- }));
- var arrows = axisModel.get('axisLine.symbol');
- var arrowSize = axisModel.get('axisLine.symbolSize');
- var arrowOffset = axisModel.get('axisLine.symbolOffset') || 0;
-
- if (typeof arrowOffset === 'number') {
- arrowOffset = [arrowOffset, arrowOffset];
- }
-
- if (arrows != null) {
- if (typeof arrows === 'string') {
- // Use the same arrow for start and end point
- arrows = [arrows, arrows];
- }
-
- if (typeof arrowSize === 'string' || typeof arrowSize === 'number') {
- // Use the same size for width and height
- arrowSize = [arrowSize, arrowSize];
- }
-
- var symbolWidth = arrowSize[0];
- var symbolHeight = arrowSize[1];
- each([{
- rotate: opt.rotation + Math.PI / 2,
- offset: arrowOffset[0],
- r: 0
- }, {
- rotate: opt.rotation - Math.PI / 2,
- offset: arrowOffset[1],
- r: Math.sqrt((pt1[0] - pt2[0]) * (pt1[0] - pt2[0]) + (pt1[1] - pt2[1]) * (pt1[1] - pt2[1]))
- }], function (point, index) {
- if (arrows[index] !== 'none' && arrows[index] != null) {
- var symbol = createSymbol(arrows[index], -symbolWidth / 2, -symbolHeight / 2, symbolWidth, symbolHeight, lineStyle.stroke, true); // Calculate arrow position with offset
-
- var r = point.r + point.offset;
- var pos = [pt1[0] + r * Math.cos(opt.rotation), pt1[1] - r * Math.sin(opt.rotation)];
- symbol.attr({
- rotation: point.rotate,
- position: pos,
- silent: true,
- z2: 11
- });
- this.group.add(symbol);
- }
- }, this);
- }
- },
-
- /**
- * @private
- */
- axisTickLabel: function () {
- var axisModel = this.axisModel;
- var opt = this.opt;
- var ticksEls = buildAxisMajorTicks(this, axisModel, opt);
- var labelEls = buildAxisLabel(this, axisModel, opt);
- fixMinMaxLabelShow(axisModel, labelEls, ticksEls);
- buildAxisMinorTicks(this, axisModel, opt);
- },
-
- /**
- * @private
- */
- axisName: function () {
- var opt = this.opt;
- var axisModel = this.axisModel;
- var name = retrieve(opt.axisName, axisModel.get('name'));
-
- if (!name) {
- return;
- }
-
- var nameLocation = axisModel.get('nameLocation');
- var nameDirection = opt.nameDirection;
- var textStyleModel = axisModel.getModel('nameTextStyle');
- var gap = axisModel.get('nameGap') || 0;
- var extent = this.axisModel.axis.getExtent();
- var gapSignal = extent[0] > extent[1] ? -1 : 1;
- var pos = [nameLocation === 'start' ? extent[0] - gapSignal * gap : nameLocation === 'end' ? extent[1] + gapSignal * gap : (extent[0] + extent[1]) / 2, // 'middle'
- // Reuse labelOffset.
- isNameLocationCenter(nameLocation) ? opt.labelOffset + nameDirection * gap : 0];
- var labelLayout;
- var nameRotation = axisModel.get('nameRotate');
-
- if (nameRotation != null) {
- nameRotation = nameRotation * PI / 180; // To radian.
- }
-
- var axisNameAvailableWidth;
-
- if (isNameLocationCenter(nameLocation)) {
- labelLayout = innerTextLayout(opt.rotation, nameRotation != null ? nameRotation : opt.rotation, // Adapt to axis.
- nameDirection);
- } else {
- labelLayout = endTextLayout(opt, nameLocation, nameRotation || 0, extent);
- axisNameAvailableWidth = opt.axisNameAvailableWidth;
-
- if (axisNameAvailableWidth != null) {
- axisNameAvailableWidth = Math.abs(axisNameAvailableWidth / Math.sin(labelLayout.rotation));
- !isFinite(axisNameAvailableWidth) && (axisNameAvailableWidth = null);
- }
- }
-
- var textFont = textStyleModel.getFont();
- var truncateOpt = axisModel.get('nameTruncate', true) || {};
- var ellipsis = truncateOpt.ellipsis;
- var maxWidth = retrieve(opt.nameTruncateMaxWidth, truncateOpt.maxWidth, axisNameAvailableWidth); // FIXME
- // truncate rich text? (consider performance)
-
- var truncatedText = ellipsis != null && maxWidth != null ? formatUtil.truncateText(name, maxWidth, textFont, ellipsis, {
- minChar: 2,
- placeholder: truncateOpt.placeholder
- }) : name;
- var tooltipOpt = axisModel.get('tooltip', true);
- var mainType = axisModel.mainType;
- var formatterParams = {
- componentType: mainType,
- name: name,
- $vars: ['name']
- };
- formatterParams[mainType + 'Index'] = axisModel.componentIndex;
- var textEl = new graphic.Text({
- // Id for animation
- anid: 'name',
- __fullText: name,
- __truncatedText: truncatedText,
- position: pos,
- rotation: labelLayout.rotation,
- silent: isLabelSilent(axisModel),
- z2: 1,
- tooltip: tooltipOpt && tooltipOpt.show ? extend({
- content: name,
- formatter: function () {
- return name;
- },
- formatterParams: formatterParams
- }, tooltipOpt) : null
- });
- graphic.setTextStyle(textEl.style, textStyleModel, {
- text: truncatedText,
- textFont: textFont,
- textFill: textStyleModel.getTextColor() || axisModel.get('axisLine.lineStyle.color'),
- textAlign: textStyleModel.get('align') || labelLayout.textAlign,
- textVerticalAlign: textStyleModel.get('verticalAlign') || labelLayout.textVerticalAlign
- });
-
- if (axisModel.get('triggerEvent')) {
- textEl.eventData = makeAxisEventDataBase(axisModel);
- textEl.eventData.targetType = 'axisName';
- textEl.eventData.name = name;
- } // FIXME
-
-
- this._dumbGroup.add(textEl);
-
- textEl.updateTransform();
- this.group.add(textEl);
- textEl.decomposeTransform();
- }
- };
-
- var makeAxisEventDataBase = AxisBuilder.makeAxisEventDataBase = function (axisModel) {
- var eventData = {
- componentType: axisModel.mainType,
- componentIndex: axisModel.componentIndex
- };
- eventData[axisModel.mainType + 'Index'] = axisModel.componentIndex;
- return eventData;
- };
- /**
- * @public
- * @static
- * @param {Object} opt
- * @param {number} axisRotation in radian
- * @param {number} textRotation in radian
- * @param {number} direction
- * @return {Object} {
- * rotation, // according to axis
- * textAlign,
- * textVerticalAlign
- * }
- */
-
-
- var innerTextLayout = AxisBuilder.innerTextLayout = function (axisRotation, textRotation, direction) {
- var rotationDiff = remRadian(textRotation - axisRotation);
- var textAlign;
- var textVerticalAlign;
-
- if (isRadianAroundZero(rotationDiff)) {
- // Label is parallel with axis line.
- textVerticalAlign = direction > 0 ? 'top' : 'bottom';
- textAlign = 'center';
- } else if (isRadianAroundZero(rotationDiff - PI)) {
- // Label is inverse parallel with axis line.
- textVerticalAlign = direction > 0 ? 'bottom' : 'top';
- textAlign = 'center';
- } else {
- textVerticalAlign = 'middle';
-
- if (rotationDiff > 0 && rotationDiff < PI) {
- textAlign = direction > 0 ? 'right' : 'left';
- } else {
- textAlign = direction > 0 ? 'left' : 'right';
- }
- }
-
- return {
- rotation: rotationDiff,
- textAlign: textAlign,
- textVerticalAlign: textVerticalAlign
- };
- };
-
- function endTextLayout(opt, textPosition, textRotate, extent) {
- var rotationDiff = remRadian(textRotate - opt.rotation);
- var textAlign;
- var textVerticalAlign;
- var inverse = extent[0] > extent[1];
- var onLeft = textPosition === 'start' && !inverse || textPosition !== 'start' && inverse;
-
- if (isRadianAroundZero(rotationDiff - PI / 2)) {
- textVerticalAlign = onLeft ? 'bottom' : 'top';
- textAlign = 'center';
- } else if (isRadianAroundZero(rotationDiff - PI * 1.5)) {
- textVerticalAlign = onLeft ? 'top' : 'bottom';
- textAlign = 'center';
- } else {
- textVerticalAlign = 'middle';
-
- if (rotationDiff < PI * 1.5 && rotationDiff > PI / 2) {
- textAlign = onLeft ? 'left' : 'right';
- } else {
- textAlign = onLeft ? 'right' : 'left';
- }
- }
-
- return {
- rotation: rotationDiff,
- textAlign: textAlign,
- textVerticalAlign: textVerticalAlign
- };
- }
-
- var isLabelSilent = AxisBuilder.isLabelSilent = function (axisModel) {
- var tooltipOpt = axisModel.get('tooltip');
- return axisModel.get('silent') // Consider mouse cursor, add these restrictions.
- || !(axisModel.get('triggerEvent') || tooltipOpt && tooltipOpt.show);
- };
-
- function fixMinMaxLabelShow(axisModel, labelEls, tickEls) {
- if (shouldShowAllLabels(axisModel.axis)) {
- return;
- } // If min or max are user set, we need to check
- // If the tick on min(max) are overlap on their neighbour tick
- // If they are overlapped, we need to hide the min(max) tick label
-
-
- var showMinLabel = axisModel.get('axisLabel.showMinLabel');
- var showMaxLabel = axisModel.get('axisLabel.showMaxLabel'); // FIXME
- // Have not consider onBand yet, where tick els is more than label els.
-
- labelEls = labelEls || [];
- tickEls = tickEls || [];
- var firstLabel = labelEls[0];
- var nextLabel = labelEls[1];
- var lastLabel = labelEls[labelEls.length - 1];
- var prevLabel = labelEls[labelEls.length - 2];
- var firstTick = tickEls[0];
- var nextTick = tickEls[1];
- var lastTick = tickEls[tickEls.length - 1];
- var prevTick = tickEls[tickEls.length - 2];
-
- if (showMinLabel === false) {
- ignoreEl(firstLabel);
- ignoreEl(firstTick);
- } else if (isTwoLabelOverlapped(firstLabel, nextLabel)) {
- if (showMinLabel) {
- ignoreEl(nextLabel);
- ignoreEl(nextTick);
- } else {
- ignoreEl(firstLabel);
- ignoreEl(firstTick);
- }
- }
-
- if (showMaxLabel === false) {
- ignoreEl(lastLabel);
- ignoreEl(lastTick);
- } else if (isTwoLabelOverlapped(prevLabel, lastLabel)) {
- if (showMaxLabel) {
- ignoreEl(prevLabel);
- ignoreEl(prevTick);
- } else {
- ignoreEl(lastLabel);
- ignoreEl(lastTick);
- }
- }
- }
-
- function ignoreEl(el) {
- el && (el.ignore = true);
- }
-
- function isTwoLabelOverlapped(current, next, labelLayout) {
- // current and next has the same rotation.
- var firstRect = current && current.getBoundingRect().clone();
- var nextRect = next && next.getBoundingRect().clone();
-
- if (!firstRect || !nextRect) {
- return;
- } // When checking intersect of two rotated labels, we use mRotationBack
- // to avoid that boundingRect is enlarge when using `boundingRect.applyTransform`.
-
-
- var mRotationBack = matrixUtil.identity([]);
- matrixUtil.rotate(mRotationBack, mRotationBack, -current.rotation);
- firstRect.applyTransform(matrixUtil.mul([], mRotationBack, current.getLocalTransform()));
- nextRect.applyTransform(matrixUtil.mul([], mRotationBack, next.getLocalTransform()));
- return firstRect.intersect(nextRect);
- }
-
- function isNameLocationCenter(nameLocation) {
- return nameLocation === 'middle' || nameLocation === 'center';
- }
-
- function createTicks(ticksCoords, tickTransform, tickEndCoord, tickLineStyle, aniid) {
- var tickEls = [];
- var pt1 = [];
- var pt2 = [];
-
- for (var i = 0; i < ticksCoords.length; i++) {
- var tickCoord = ticksCoords[i].coord;
- pt1[0] = tickCoord;
- pt1[1] = 0;
- pt2[0] = tickCoord;
- pt2[1] = tickEndCoord;
-
- if (tickTransform) {
- v2ApplyTransform(pt1, pt1, tickTransform);
- v2ApplyTransform(pt2, pt2, tickTransform);
- } // Tick line, Not use group transform to have better line draw
-
-
- var tickEl = new graphic.Line({
- // Id for animation
- anid: aniid + '_' + ticksCoords[i].tickValue,
- subPixelOptimize: true,
- shape: {
- x1: pt1[0],
- y1: pt1[1],
- x2: pt2[0],
- y2: pt2[1]
- },
- style: tickLineStyle,
- z2: 2,
- silent: true
- });
- tickEls.push(tickEl);
- }
-
- return tickEls;
- }
-
- function buildAxisMajorTicks(axisBuilder, axisModel, opt) {
- var axis = axisModel.axis;
- var tickModel = axisModel.getModel('axisTick');
-
- if (!tickModel.get('show') || axis.scale.isBlank()) {
- return;
- }
-
- var lineStyleModel = tickModel.getModel('lineStyle');
- var tickEndCoord = opt.tickDirection * tickModel.get('length');
- var ticksCoords = axis.getTicksCoords();
- var ticksEls = createTicks(ticksCoords, axisBuilder._transform, tickEndCoord, defaults(lineStyleModel.getLineStyle(), {
- stroke: axisModel.get('axisLine.lineStyle.color')
- }), 'ticks');
-
- for (var i = 0; i < ticksEls.length; i++) {
- axisBuilder.group.add(ticksEls[i]);
- }
-
- return ticksEls;
- }
-
- function buildAxisMinorTicks(axisBuilder, axisModel, opt) {
- var axis = axisModel.axis;
- var minorTickModel = axisModel.getModel('minorTick');
-
- if (!minorTickModel.get('show') || axis.scale.isBlank()) {
- return;
- }
-
- var minorTicksCoords = axis.getMinorTicksCoords();
-
- if (!minorTicksCoords.length) {
- return;
- }
-
- var lineStyleModel = minorTickModel.getModel('lineStyle');
- var tickEndCoord = opt.tickDirection * minorTickModel.get('length');
- var minorTickLineStyle = defaults(lineStyleModel.getLineStyle(), defaults(axisModel.getModel('axisTick').getLineStyle(), {
- stroke: axisModel.get('axisLine.lineStyle.color')
- }));
-
- for (var i = 0; i < minorTicksCoords.length; i++) {
- var minorTicksEls = createTicks(minorTicksCoords[i], axisBuilder._transform, tickEndCoord, minorTickLineStyle, 'minorticks_' + i);
-
- for (var k = 0; k < minorTicksEls.length; k++) {
- axisBuilder.group.add(minorTicksEls[k]);
- }
- }
- }
-
- function buildAxisLabel(axisBuilder, axisModel, opt) {
- var axis = axisModel.axis;
- var show = retrieve(opt.axisLabelShow, axisModel.get('axisLabel.show'));
-
- if (!show || axis.scale.isBlank()) {
- return;
- }
-
- var labelModel = axisModel.getModel('axisLabel');
- var labelMargin = labelModel.get('margin');
- var labels = axis.getViewLabels(); // Special label rotate.
-
- var labelRotation = (retrieve(opt.labelRotate, labelModel.get('rotate')) || 0) * PI / 180;
- var labelLayout = innerTextLayout(opt.rotation, labelRotation, opt.labelDirection);
- var rawCategoryData = axisModel.getCategories && axisModel.getCategories(true);
- var labelEls = [];
- var silent = isLabelSilent(axisModel);
- var triggerEvent = axisModel.get('triggerEvent');
- each(labels, function (labelItem, index) {
- var tickValue = labelItem.tickValue;
- var formattedLabel = labelItem.formattedLabel;
- var rawLabel = labelItem.rawLabel;
- var itemLabelModel = labelModel;
-
- if (rawCategoryData && rawCategoryData[tickValue] && rawCategoryData[tickValue].textStyle) {
- itemLabelModel = new Model(rawCategoryData[tickValue].textStyle, labelModel, axisModel.ecModel);
- }
-
- var textColor = itemLabelModel.getTextColor() || axisModel.get('axisLine.lineStyle.color');
- var tickCoord = axis.dataToCoord(tickValue);
- var pos = [tickCoord, opt.labelOffset + opt.labelDirection * labelMargin];
- var textEl = new graphic.Text({
- // Id for animation
- anid: 'label_' + tickValue,
- position: pos,
- rotation: labelLayout.rotation,
- silent: silent,
- z2: 10
- });
- graphic.setTextStyle(textEl.style, itemLabelModel, {
- text: formattedLabel,
- textAlign: itemLabelModel.getShallow('align', true) || labelLayout.textAlign,
- textVerticalAlign: itemLabelModel.getShallow('verticalAlign', true) || itemLabelModel.getShallow('baseline', true) || labelLayout.textVerticalAlign,
- textFill: typeof textColor === 'function' ? textColor( // (1) In category axis with data zoom, tick is not the original
- // index of axis.data. So tick should not be exposed to user
- // in category axis.
- // (2) Compatible with previous version, which always use formatted label as
- // input. But in interval scale the formatted label is like '223,445', which
- // maked user repalce ','. So we modify it to return original val but remain
- // it as 'string' to avoid error in replacing.
- axis.type === 'category' ? rawLabel : axis.type === 'value' ? tickValue + '' : tickValue, index) : textColor
- }); // Pack data for mouse event
-
- if (triggerEvent) {
- textEl.eventData = makeAxisEventDataBase(axisModel);
- textEl.eventData.targetType = 'axisLabel';
- textEl.eventData.value = rawLabel;
- } // FIXME
-
-
- axisBuilder._dumbGroup.add(textEl);
-
- textEl.updateTransform();
- labelEls.push(textEl);
- axisBuilder.group.add(textEl);
- textEl.decomposeTransform();
- });
- return labelEls;
- }
-
- var _default = AxisBuilder;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1486:
- /***/ (function(module, exports) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var features = {};
-
- function register(name, ctor) {
- features[name] = ctor;
- }
-
- function get(name) {
- return features[name];
- }
-
- exports.register = register;
- exports.get = get;
-
- /***/ }),
-
- /***/ 1516:
- /***/ (function(module, exports) {
-
- /**
- * Event Mixin
- * @module zrender/mixin/Eventful
- * @author Kener (@Kener-林峰, kener.linfeng@gmail.com)
- * pissang (https://www.github.com/pissang)
- */
- var arrySlice = Array.prototype.slice;
- /**
- * Event dispatcher.
- *
- * @alias module:zrender/mixin/Eventful
- * @constructor
- * @param {Object} [eventProcessor] The object eventProcessor is the scope when
- * `eventProcessor.xxx` called.
- * @param {Function} [eventProcessor.normalizeQuery]
- * param: {string|Object} Raw query.
- * return: {string|Object} Normalized query.
- * @param {Function} [eventProcessor.filter] Event will be dispatched only
- * if it returns `true`.
- * param: {string} eventType
- * param: {string|Object} query
- * return: {boolean}
- * @param {Function} [eventProcessor.afterTrigger] Called after all handlers called.
- * param: {string} eventType
- */
-
- var Eventful = function (eventProcessor) {
- this._$handlers = {};
- this._$eventProcessor = eventProcessor;
- };
-
- Eventful.prototype = {
- constructor: Eventful,
-
- /**
- * The handler can only be triggered once, then removed.
- *
- * @param {string} event The event name.
- * @param {string|Object} [query] Condition used on event filter.
- * @param {Function} handler The event handler.
- * @param {Object} context
- */
- one: function (event, query, handler, context) {
- return on(this, event, query, handler, context, true);
- },
-
- /**
- * Bind a handler.
- *
- * @param {string} event The event name.
- * @param {string|Object} [query] Condition used on event filter.
- * @param {Function} handler The event handler.
- * @param {Object} [context]
- */
- on: function (event, query, handler, context) {
- return on(this, event, query, handler, context, false);
- },
-
- /**
- * Whether any handler has bound.
- *
- * @param {string} event
- * @return {boolean}
- */
- isSilent: function (event) {
- var _h = this._$handlers;
- return !_h[event] || !_h[event].length;
- },
-
- /**
- * Unbind a event.
- *
- * @param {string} [event] The event name.
- * If no `event` input, "off" all listeners.
- * @param {Function} [handler] The event handler.
- * If no `handler` input, "off" all listeners of the `event`.
- */
- off: function (event, handler) {
- var _h = this._$handlers;
-
- if (!event) {
- this._$handlers = {};
- return this;
- }
-
- if (handler) {
- if (_h[event]) {
- var newList = [];
-
- for (var i = 0, l = _h[event].length; i < l; i++) {
- if (_h[event][i].h !== handler) {
- newList.push(_h[event][i]);
- }
- }
-
- _h[event] = newList;
- }
-
- if (_h[event] && _h[event].length === 0) {
- delete _h[event];
- }
- } else {
- delete _h[event];
- }
-
- return this;
- },
-
- /**
- * Dispatch a event.
- *
- * @param {string} type The event name.
- */
- trigger: function (type) {
- var _h = this._$handlers[type];
- var eventProcessor = this._$eventProcessor;
-
- if (_h) {
- var args = arguments;
- var argLen = args.length;
-
- if (argLen > 3) {
- args = arrySlice.call(args, 1);
- }
-
- var len = _h.length;
-
- for (var i = 0; i < len;) {
- var hItem = _h[i];
-
- if (eventProcessor && eventProcessor.filter && hItem.query != null && !eventProcessor.filter(type, hItem.query)) {
- i++;
- continue;
- } // Optimize advise from backbone
-
-
- switch (argLen) {
- case 1:
- hItem.h.call(hItem.ctx);
- break;
-
- case 2:
- hItem.h.call(hItem.ctx, args[1]);
- break;
-
- case 3:
- hItem.h.call(hItem.ctx, args[1], args[2]);
- break;
-
- default:
- // have more than 2 given arguments
- hItem.h.apply(hItem.ctx, args);
- break;
- }
-
- if (hItem.one) {
- _h.splice(i, 1);
-
- len--;
- } else {
- i++;
- }
- }
- }
-
- eventProcessor && eventProcessor.afterTrigger && eventProcessor.afterTrigger(type);
- return this;
- },
-
- /**
- * Dispatch a event with context, which is specified at the last parameter.
- *
- * @param {string} type The event name.
- */
- triggerWithContext: function (type) {
- var _h = this._$handlers[type];
- var eventProcessor = this._$eventProcessor;
-
- if (_h) {
- var args = arguments;
- var argLen = args.length;
-
- if (argLen > 4) {
- args = arrySlice.call(args, 1, args.length - 1);
- }
-
- var ctx = args[args.length - 1];
- var len = _h.length;
-
- for (var i = 0; i < len;) {
- var hItem = _h[i];
-
- if (eventProcessor && eventProcessor.filter && hItem.query != null && !eventProcessor.filter(type, hItem.query)) {
- i++;
- continue;
- } // Optimize advise from backbone
-
-
- switch (argLen) {
- case 1:
- hItem.h.call(ctx);
- break;
-
- case 2:
- hItem.h.call(ctx, args[1]);
- break;
-
- case 3:
- hItem.h.call(ctx, args[1], args[2]);
- break;
-
- default:
- // have more than 2 given arguments
- hItem.h.apply(ctx, args);
- break;
- }
-
- if (hItem.one) {
- _h.splice(i, 1);
-
- len--;
- } else {
- i++;
- }
- }
- }
-
- eventProcessor && eventProcessor.afterTrigger && eventProcessor.afterTrigger(type);
- return this;
- }
- };
-
- function normalizeQuery(host, query) {
- var eventProcessor = host._$eventProcessor;
-
- if (query != null && eventProcessor && eventProcessor.normalizeQuery) {
- query = eventProcessor.normalizeQuery(query);
- }
-
- return query;
- }
-
- function on(eventful, event, query, handler, context, isOnce) {
- var _h = eventful._$handlers;
-
- if (typeof query === 'function') {
- context = handler;
- handler = query;
- query = null;
- }
-
- if (!handler || !event) {
- return eventful;
- }
-
- query = normalizeQuery(eventful, query);
-
- if (!_h[event]) {
- _h[event] = [];
- }
-
- for (var i = 0; i < _h[event].length; i++) {
- if (_h[event][i].h === handler) {
- return eventful;
- }
- }
-
- var wrap = {
- h: handler,
- one: isOnce,
- query: query,
- ctx: context || eventful,
- // FIXME
- // Do not publish this feature util it is proved that it makes sense.
- callAtLast: handler.zrEventfulCallAtLast
- };
- var lastIndex = _h[event].length - 1;
- var lastWrap = _h[event][lastIndex];
- lastWrap && lastWrap.callAtLast ? _h[event].splice(lastIndex, 0, wrap) : _h[event].push(wrap);
- return eventful;
- } // ----------------------
- // The events in zrender
- // ----------------------
-
- /**
- * @event module:zrender/mixin/Eventful#onclick
- * @type {Function}
- * @default null
- */
-
- /**
- * @event module:zrender/mixin/Eventful#onmouseover
- * @type {Function}
- * @default null
- */
-
- /**
- * @event module:zrender/mixin/Eventful#onmouseout
- * @type {Function}
- * @default null
- */
-
- /**
- * @event module:zrender/mixin/Eventful#onmousemove
- * @type {Function}
- * @default null
- */
-
- /**
- * @event module:zrender/mixin/Eventful#onmousewheel
- * @type {Function}
- * @default null
- */
-
- /**
- * @event module:zrender/mixin/Eventful#onmousedown
- * @type {Function}
- * @default null
- */
-
- /**
- * @event module:zrender/mixin/Eventful#onmouseup
- * @type {Function}
- * @default null
- */
-
- /**
- * @event module:zrender/mixin/Eventful#ondrag
- * @type {Function}
- * @default null
- */
-
- /**
- * @event module:zrender/mixin/Eventful#ondragstart
- * @type {Function}
- * @default null
- */
-
- /**
- * @event module:zrender/mixin/Eventful#ondragend
- * @type {Function}
- * @default null
- */
-
- /**
- * @event module:zrender/mixin/Eventful#ondragenter
- * @type {Function}
- * @default null
- */
-
- /**
- * @event module:zrender/mixin/Eventful#ondragleave
- * @type {Function}
- * @default null
- */
-
- /**
- * @event module:zrender/mixin/Eventful#ondragover
- * @type {Function}
- * @default null
- */
-
- /**
- * @event module:zrender/mixin/Eventful#ondrop
- * @type {Function}
- * @default null
- */
-
-
- var _default = Eventful;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1517:
- /***/ (function(module, exports, __webpack_require__) {
-
- var Displayable = __webpack_require__(1656);
-
- var zrUtil = __webpack_require__(864);
-
- var textContain = __webpack_require__(1402);
-
- var textHelper = __webpack_require__(1783);
-
- var _constant = __webpack_require__(1782);
-
- var ContextCachedBy = _constant.ContextCachedBy;
-
- /**
- * @alias zrender/graphic/Text
- * @extends module:zrender/graphic/Displayable
- * @constructor
- * @param {Object} opts
- */
- var Text = function (opts) {
- // jshint ignore:line
- Displayable.call(this, opts);
- };
-
- Text.prototype = {
- constructor: Text,
- type: 'text',
- brush: function (ctx, prevEl) {
- var style = this.style; // Optimize, avoid normalize every time.
-
- this.__dirty && textHelper.normalizeTextStyle(style, true); // Use props with prefix 'text'.
-
- style.fill = style.stroke = style.shadowBlur = style.shadowColor = style.shadowOffsetX = style.shadowOffsetY = null;
- var text = style.text; // Convert to string
-
- text != null && (text += ''); // Do not apply style.bind in Text node. Because the real bind job
- // is in textHelper.renderText, and performance of text render should
- // be considered.
- // style.bind(ctx, this, prevEl);
-
- if (!textHelper.needDrawText(text, style)) {
- // The current el.style is not applied
- // and should not be used as cache.
- ctx.__attrCachedBy = ContextCachedBy.NONE;
- return;
- }
-
- this.setTransform(ctx);
- textHelper.renderText(this, ctx, text, style, null, prevEl);
- this.restoreTransform(ctx);
- },
- getBoundingRect: function () {
- var style = this.style; // Optimize, avoid normalize every time.
-
- this.__dirty && textHelper.normalizeTextStyle(style, true);
-
- if (!this._rect) {
- var text = style.text;
- text != null ? text += '' : text = '';
- var rect = textContain.getBoundingRect(style.text + '', style.font, style.textAlign, style.textVerticalAlign, style.textPadding, style.textLineHeight, style.rich);
- rect.x += style.x || 0;
- rect.y += style.y || 0;
-
- if (textHelper.getStroke(style.textStroke, style.textStrokeWidth)) {
- var w = style.textStrokeWidth;
- rect.x -= w / 2;
- rect.y -= w / 2;
- rect.width += w;
- rect.height += w;
- }
-
- this._rect = rect;
- }
-
- return this._rect;
- }
- };
- zrUtil.inherits(Text, Displayable);
- var _default = Text;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1518:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var _util = __webpack_require__(864);
-
- var isTypedArray = _util.isTypedArray;
- var extend = _util.extend;
- var assert = _util.assert;
- var each = _util.each;
- var isObject = _util.isObject;
-
- var _model = __webpack_require__(1064);
-
- var getDataItemValue = _model.getDataItemValue;
- var isDataItemOption = _model.isDataItemOption;
-
- var _number = __webpack_require__(985);
-
- var parseDate = _number.parseDate;
-
- var Source = __webpack_require__(1658);
-
- var _sourceType = __webpack_require__(1659);
-
- var SOURCE_FORMAT_TYPED_ARRAY = _sourceType.SOURCE_FORMAT_TYPED_ARRAY;
- var SOURCE_FORMAT_ARRAY_ROWS = _sourceType.SOURCE_FORMAT_ARRAY_ROWS;
- var SOURCE_FORMAT_ORIGINAL = _sourceType.SOURCE_FORMAT_ORIGINAL;
- var SOURCE_FORMAT_OBJECT_ROWS = _sourceType.SOURCE_FORMAT_OBJECT_ROWS;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // TODO
- // ??? refactor? check the outer usage of data provider.
- // merge with defaultDimValueGetter?
-
- /**
- * If normal array used, mutable chunk size is supported.
- * If typed array used, chunk size must be fixed.
- */
- function DefaultDataProvider(source, dimSize) {
- if (!Source.isInstance(source)) {
- source = Source.seriesDataToSource(source);
- }
-
- this._source = source;
- var data = this._data = source.data;
- var sourceFormat = source.sourceFormat; // Typed array. TODO IE10+?
-
- if (sourceFormat === SOURCE_FORMAT_TYPED_ARRAY) {
- this._offset = 0;
- this._dimSize = dimSize;
- this._data = data;
- }
-
- var methods = providerMethods[sourceFormat === SOURCE_FORMAT_ARRAY_ROWS ? sourceFormat + '_' + source.seriesLayoutBy : sourceFormat];
- extend(this, methods);
- }
-
- var providerProto = DefaultDataProvider.prototype; // If data is pure without style configuration
-
- providerProto.pure = false; // If data is persistent and will not be released after use.
-
- providerProto.persistent = true; // ???! FIXME legacy data provider do not has method getSource
-
- providerProto.getSource = function () {
- return this._source;
- };
-
- var providerMethods = {
- 'arrayRows_column': {
- pure: true,
- count: function () {
- return Math.max(0, this._data.length - this._source.startIndex);
- },
- getItem: function (idx) {
- return this._data[idx + this._source.startIndex];
- },
- appendData: appendDataSimply
- },
- 'arrayRows_row': {
- pure: true,
- count: function () {
- var row = this._data[0];
- return row ? Math.max(0, row.length - this._source.startIndex) : 0;
- },
- getItem: function (idx) {
- idx += this._source.startIndex;
- var item = [];
- var data = this._data;
-
- for (var i = 0; i < data.length; i++) {
- var row = data[i];
- item.push(row ? row[idx] : null);
- }
-
- return item;
- },
- appendData: function () {
- throw new Error('Do not support appendData when set seriesLayoutBy: "row".');
- }
- },
- 'objectRows': {
- pure: true,
- count: countSimply,
- getItem: getItemSimply,
- appendData: appendDataSimply
- },
- 'keyedColumns': {
- pure: true,
- count: function () {
- var dimName = this._source.dimensionsDefine[0].name;
- var col = this._data[dimName];
- return col ? col.length : 0;
- },
- getItem: function (idx) {
- var item = [];
- var dims = this._source.dimensionsDefine;
-
- for (var i = 0; i < dims.length; i++) {
- var col = this._data[dims[i].name];
- item.push(col ? col[idx] : null);
- }
-
- return item;
- },
- appendData: function (newData) {
- var data = this._data;
- each(newData, function (newCol, key) {
- var oldCol = data[key] || (data[key] = []);
-
- for (var i = 0; i < (newCol || []).length; i++) {
- oldCol.push(newCol[i]);
- }
- });
- }
- },
- 'original': {
- count: countSimply,
- getItem: getItemSimply,
- appendData: appendDataSimply
- },
- 'typedArray': {
- persistent: false,
- pure: true,
- count: function () {
- return this._data ? this._data.length / this._dimSize : 0;
- },
- getItem: function (idx, out) {
- idx = idx - this._offset;
- out = out || [];
- var offset = this._dimSize * idx;
-
- for (var i = 0; i < this._dimSize; i++) {
- out[i] = this._data[offset + i];
- }
-
- return out;
- },
- appendData: function (newData) {
- this._data = newData;
- },
- // Clean self if data is already used.
- clean: function () {
- // PENDING
- this._offset += this.count();
- this._data = null;
- }
- }
- };
-
- function countSimply() {
- return this._data.length;
- }
-
- function getItemSimply(idx) {
- return this._data[idx];
- }
-
- function appendDataSimply(newData) {
- for (var i = 0; i < newData.length; i++) {
- this._data.push(newData[i]);
- }
- }
-
- var rawValueGetters = {
- arrayRows: getRawValueSimply,
- objectRows: function (dataItem, dataIndex, dimIndex, dimName) {
- return dimIndex != null ? dataItem[dimName] : dataItem;
- },
- keyedColumns: getRawValueSimply,
- original: function (dataItem, dataIndex, dimIndex, dimName) {
- // FIXME
- // In some case (markpoint in geo (geo-map.html)), dataItem
- // is {coord: [...]}
- var value = getDataItemValue(dataItem);
- return dimIndex == null || !(value instanceof Array) ? value : value[dimIndex];
- },
- typedArray: getRawValueSimply
- };
-
- function getRawValueSimply(dataItem, dataIndex, dimIndex, dimName) {
- return dimIndex != null ? dataItem[dimIndex] : dataItem;
- }
-
- var defaultDimValueGetters = {
- arrayRows: getDimValueSimply,
- objectRows: function (dataItem, dimName, dataIndex, dimIndex) {
- return converDataValue(dataItem[dimName], this._dimensionInfos[dimName]);
- },
- keyedColumns: getDimValueSimply,
- original: function (dataItem, dimName, dataIndex, dimIndex) {
- // Performance sensitive, do not use modelUtil.getDataItemValue.
- // If dataItem is an plain object with no value field, the var `value`
- // will be assigned with the object, but it will be tread correctly
- // in the `convertDataValue`.
- var value = dataItem && (dataItem.value == null ? dataItem : dataItem.value); // If any dataItem is like { value: 10 }
-
- if (!this._rawData.pure && isDataItemOption(dataItem)) {
- this.hasItemOption = true;
- }
-
- return converDataValue(value instanceof Array ? value[dimIndex] // If value is a single number or something else not array.
- : value, this._dimensionInfos[dimName]);
- },
- typedArray: function (dataItem, dimName, dataIndex, dimIndex) {
- return dataItem[dimIndex];
- }
- };
-
- function getDimValueSimply(dataItem, dimName, dataIndex, dimIndex) {
- return converDataValue(dataItem[dimIndex], this._dimensionInfos[dimName]);
- }
- /**
- * This helper method convert value in data.
- * @param {string|number|Date} value
- * @param {Object|string} [dimInfo] If string (like 'x'), dimType defaults 'number'.
- * If "dimInfo.ordinalParseAndSave", ordinal value can be parsed.
- */
-
-
- function converDataValue(value, dimInfo) {
- // Performance sensitive.
- var dimType = dimInfo && dimInfo.type;
-
- if (dimType === 'ordinal') {
- // If given value is a category string
- var ordinalMeta = dimInfo && dimInfo.ordinalMeta;
- return ordinalMeta ? ordinalMeta.parseAndCollect(value) : value;
- }
-
- if (dimType === 'time' // spead up when using timestamp
- && typeof value !== 'number' && value != null && value !== '-') {
- value = +parseDate(value);
- } // dimType defaults 'number'.
- // If dimType is not ordinal and value is null or undefined or NaN or '-',
- // parse to NaN.
-
-
- return value == null || value === '' ? NaN // If string (like '-'), using '+' parse to NaN
- // If object, also parse to NaN
- : +value;
- } // ??? FIXME can these logic be more neat: getRawValue, getRawDataItem,
- // Consider persistent.
- // Caution: why use raw value to display on label or tooltip?
- // A reason is to avoid format. For example time value we do not know
- // how to format is expected. More over, if stack is used, calculated
- // value may be 0.91000000001, which have brings trouble to display.
- // TODO: consider how to treat null/undefined/NaN when display?
-
- /**
- * @param {module:echarts/data/List} data
- * @param {number} dataIndex
- * @param {string|number} [dim] dimName or dimIndex
- * @return {Array.<number>|string|number} can be null/undefined.
- */
-
-
- function retrieveRawValue(data, dataIndex, dim) {
- if (!data) {
- return;
- } // Consider data may be not persistent.
-
-
- var dataItem = data.getRawDataItem(dataIndex);
-
- if (dataItem == null) {
- return;
- }
-
- var sourceFormat = data.getProvider().getSource().sourceFormat;
- var dimName;
- var dimIndex;
- var dimInfo = data.getDimensionInfo(dim);
-
- if (dimInfo) {
- dimName = dimInfo.name;
- dimIndex = dimInfo.index;
- }
-
- return rawValueGetters[sourceFormat](dataItem, dataIndex, dimIndex, dimName);
- }
- /**
- * Compatible with some cases (in pie, map) like:
- * data: [{name: 'xx', value: 5, selected: true}, ...]
- * where only sourceFormat is 'original' and 'objectRows' supported.
- *
- * ??? TODO
- * Supported detail options in data item when using 'arrayRows'.
- *
- * @param {module:echarts/data/List} data
- * @param {number} dataIndex
- * @param {string} attr like 'selected'
- */
-
-
- function retrieveRawAttr(data, dataIndex, attr) {
- if (!data) {
- return;
- }
-
- var sourceFormat = data.getProvider().getSource().sourceFormat;
-
- if (sourceFormat !== SOURCE_FORMAT_ORIGINAL && sourceFormat !== SOURCE_FORMAT_OBJECT_ROWS) {
- return;
- }
-
- var dataItem = data.getRawDataItem(dataIndex);
-
- if (sourceFormat === SOURCE_FORMAT_ORIGINAL && !isObject(dataItem)) {
- dataItem = null;
- }
-
- if (dataItem) {
- return dataItem[attr];
- }
- }
-
- exports.DefaultDataProvider = DefaultDataProvider;
- exports.defaultDimValueGetters = defaultDimValueGetters;
- exports.retrieveRawValue = retrieveRawValue;
- exports.retrieveRawAttr = retrieveRawAttr;
-
- /***/ }),
-
- /***/ 1519:
- /***/ (function(module, exports) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function defaultKeyGetter(item) {
- return item;
- }
- /**
- * @param {Array} oldArr
- * @param {Array} newArr
- * @param {Function} oldKeyGetter
- * @param {Function} newKeyGetter
- * @param {Object} [context] Can be visited by this.context in callback.
- */
-
-
- function DataDiffer(oldArr, newArr, oldKeyGetter, newKeyGetter, context) {
- this._old = oldArr;
- this._new = newArr;
- this._oldKeyGetter = oldKeyGetter || defaultKeyGetter;
- this._newKeyGetter = newKeyGetter || defaultKeyGetter;
- this.context = context;
- }
-
- DataDiffer.prototype = {
- constructor: DataDiffer,
-
- /**
- * Callback function when add a data
- */
- add: function (func) {
- this._add = func;
- return this;
- },
-
- /**
- * Callback function when update a data
- */
- update: function (func) {
- this._update = func;
- return this;
- },
-
- /**
- * Callback function when remove a data
- */
- remove: function (func) {
- this._remove = func;
- return this;
- },
- execute: function () {
- var oldArr = this._old;
- var newArr = this._new;
- var oldDataIndexMap = {};
- var newDataIndexMap = {};
- var oldDataKeyArr = [];
- var newDataKeyArr = [];
- var i;
- initIndexMap(oldArr, oldDataIndexMap, oldDataKeyArr, '_oldKeyGetter', this);
- initIndexMap(newArr, newDataIndexMap, newDataKeyArr, '_newKeyGetter', this);
-
- for (i = 0; i < oldArr.length; i++) {
- var key = oldDataKeyArr[i];
- var idx = newDataIndexMap[key]; // idx can never be empty array here. see 'set null' logic below.
-
- if (idx != null) {
- // Consider there is duplicate key (for example, use dataItem.name as key).
- // We should make sure every item in newArr and oldArr can be visited.
- var len = idx.length;
-
- if (len) {
- len === 1 && (newDataIndexMap[key] = null);
- idx = idx.shift();
- } else {
- newDataIndexMap[key] = null;
- }
-
- this._update && this._update(idx, i);
- } else {
- this._remove && this._remove(i);
- }
- }
-
- for (var i = 0; i < newDataKeyArr.length; i++) {
- var key = newDataKeyArr[i];
-
- if (newDataIndexMap.hasOwnProperty(key)) {
- var idx = newDataIndexMap[key];
-
- if (idx == null) {
- continue;
- } // idx can never be empty array here. see 'set null' logic above.
-
-
- if (!idx.length) {
- this._add && this._add(idx);
- } else {
- for (var j = 0, len = idx.length; j < len; j++) {
- this._add && this._add(idx[j]);
- }
- }
- }
- }
- }
- };
-
- function initIndexMap(arr, map, keyArr, keyGetterName, dataDiffer) {
- for (var i = 0; i < arr.length; i++) {
- // Add prefix to avoid conflict with Object.prototype.
- var key = '_ec_' + dataDiffer[keyGetterName](arr[i], i);
- var existence = map[key];
-
- if (existence == null) {
- keyArr.push(key);
- map[key] = i;
- } else {
- if (!existence.length) {
- map[key] = existence = [existence];
- }
-
- existence.push(i);
- }
- }
- }
-
- var _default = DataDiffer;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1520:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _util = __webpack_require__(864);
-
- var isFunction = _util.isFunction;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function _default(seriesType, defaultSymbolType, legendSymbol) {
- // Encoding visual for all series include which is filtered for legend drawing
- return {
- seriesType: seriesType,
- // For legend.
- performRawSeries: true,
- reset: function (seriesModel, ecModel, api) {
- var data = seriesModel.getData();
- var symbolType = seriesModel.get('symbol');
- var symbolSize = seriesModel.get('symbolSize');
- var keepAspect = seriesModel.get('symbolKeepAspect');
- var hasSymbolTypeCallback = isFunction(symbolType);
- var hasSymbolSizeCallback = isFunction(symbolSize);
- var hasCallback = hasSymbolTypeCallback || hasSymbolSizeCallback;
- var seriesSymbol = !hasSymbolTypeCallback && symbolType ? symbolType : defaultSymbolType;
- var seriesSymbolSize = !hasSymbolSizeCallback ? symbolSize : null;
- data.setVisual({
- legendSymbol: legendSymbol || seriesSymbol,
- // If seting callback functions on `symbol` or `symbolSize`, for simplicity and avoiding
- // to bring trouble, we do not pick a reuslt from one of its calling on data item here,
- // but just use the default value. Callback on `symbol` or `symbolSize` is convenient in
- // some cases but generally it is not recommanded.
- symbol: seriesSymbol,
- symbolSize: seriesSymbolSize,
- symbolKeepAspect: keepAspect
- }); // Only visible series has each data be visual encoded
-
- if (ecModel.isSeriesFiltered(seriesModel)) {
- return;
- }
-
- function dataEach(data, idx) {
- if (hasCallback) {
- var rawValue = seriesModel.getRawValue(idx);
- var params = seriesModel.getDataParams(idx);
- hasSymbolTypeCallback && data.setItemVisual(idx, 'symbol', symbolType(rawValue, params));
- hasSymbolSizeCallback && data.setItemVisual(idx, 'symbolSize', symbolSize(rawValue, params));
- }
-
- if (data.hasItemOption) {
- var itemModel = data.getItemModel(idx);
- var itemSymbolType = itemModel.getShallow('symbol', true);
- var itemSymbolSize = itemModel.getShallow('symbolSize', true);
- var itemSymbolKeepAspect = itemModel.getShallow('symbolKeepAspect', true); // If has item symbol
-
- if (itemSymbolType != null) {
- data.setItemVisual(idx, 'symbol', itemSymbolType);
- }
-
- if (itemSymbolSize != null) {
- // PENDING Transform symbolSize ?
- data.setItemVisual(idx, 'symbolSize', itemSymbolSize);
- }
-
- if (itemSymbolKeepAspect != null) {
- data.setItemVisual(idx, 'symbolKeepAspect', itemSymbolKeepAspect);
- }
- }
- }
-
- return {
- dataEach: data.hasItemOption || hasCallback ? dataEach : null
- };
- }
- };
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1521:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var echarts = __webpack_require__(881);
-
- var axisPointerModelHelper = __webpack_require__(1792);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Base class of AxisView.
- */
- var AxisView = echarts.extendComponentView({
- type: 'axis',
-
- /**
- * @private
- */
- _axisPointer: null,
-
- /**
- * @protected
- * @type {string}
- */
- axisPointerClass: null,
-
- /**
- * @override
- */
- render: function (axisModel, ecModel, api, payload) {
- // FIXME
- // This process should proformed after coordinate systems updated
- // (axis scale updated), and should be performed each time update.
- // So put it here temporarily, although it is not appropriate to
- // put a model-writing procedure in `view`.
- this.axisPointerClass && axisPointerModelHelper.fixValue(axisModel);
- AxisView.superApply(this, 'render', arguments);
- updateAxisPointer(this, axisModel, ecModel, api, payload, true);
- },
-
- /**
- * Action handler.
- * @public
- * @param {module:echarts/coord/cartesian/AxisModel} axisModel
- * @param {module:echarts/model/Global} ecModel
- * @param {module:echarts/ExtensionAPI} api
- * @param {Object} payload
- */
- updateAxisPointer: function (axisModel, ecModel, api, payload, force) {
- updateAxisPointer(this, axisModel, ecModel, api, payload, false);
- },
-
- /**
- * @override
- */
- remove: function (ecModel, api) {
- var axisPointer = this._axisPointer;
- axisPointer && axisPointer.remove(api);
- AxisView.superApply(this, 'remove', arguments);
- },
-
- /**
- * @override
- */
- dispose: function (ecModel, api) {
- disposeAxisPointer(this, api);
- AxisView.superApply(this, 'dispose', arguments);
- }
- });
-
- function updateAxisPointer(axisView, axisModel, ecModel, api, payload, forceRender) {
- var Clazz = AxisView.getAxisPointerClass(axisView.axisPointerClass);
-
- if (!Clazz) {
- return;
- }
-
- var axisPointerModel = axisPointerModelHelper.getAxisPointerModel(axisModel);
- axisPointerModel ? (axisView._axisPointer || (axisView._axisPointer = new Clazz())).render(axisModel, axisPointerModel, api, forceRender) : disposeAxisPointer(axisView, api);
- }
-
- function disposeAxisPointer(axisView, ecModel, api) {
- var axisPointer = axisView._axisPointer;
- axisPointer && axisPointer.dispose(ecModel, api);
- axisView._axisPointer = null;
- }
-
- var axisPointerClazz = [];
-
- AxisView.registerAxisPointerClass = function (type, clazz) {
- axisPointerClazz[type] = clazz;
- };
-
- AxisView.getAxisPointerClass = function (type) {
- return type && axisPointerClazz[type];
- };
-
- var _default = AxisView;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1522:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function retrieveTargetInfo(payload, validPayloadTypes, seriesModel) {
- if (payload && zrUtil.indexOf(validPayloadTypes, payload.type) >= 0) {
- var root = seriesModel.getData().tree.root;
- var targetNode = payload.targetNode;
-
- if (typeof targetNode === 'string') {
- targetNode = root.getNodeById(targetNode);
- }
-
- if (targetNode && root.contains(targetNode)) {
- return {
- node: targetNode
- };
- }
-
- var targetNodeId = payload.targetNodeId;
-
- if (targetNodeId != null && (targetNode = root.getNodeById(targetNodeId))) {
- return {
- node: targetNode
- };
- }
- }
- } // Not includes the given node at the last item.
-
-
- function getPathToRoot(node) {
- var path = [];
-
- while (node) {
- node = node.parentNode;
- node && path.push(node);
- }
-
- return path.reverse();
- }
-
- function aboveViewRoot(viewRoot, node) {
- var viewPath = getPathToRoot(viewRoot);
- return zrUtil.indexOf(viewPath, node) >= 0;
- } // From root to the input node (the input node will be included).
-
-
- function wrapTreePathInfo(node, seriesModel) {
- var treePathInfo = [];
-
- while (node) {
- var nodeDataIndex = node.dataIndex;
- treePathInfo.push({
- name: node.name,
- dataIndex: nodeDataIndex,
- value: seriesModel.getRawValue(nodeDataIndex)
- });
- node = node.parentNode;
- }
-
- treePathInfo.reverse();
- return treePathInfo;
- }
-
- exports.retrieveTargetInfo = retrieveTargetInfo;
- exports.getPathToRoot = getPathToRoot;
- exports.aboveViewRoot = aboveViewRoot;
- exports.wrapTreePathInfo = wrapTreePathInfo;
-
- /***/ }),
-
- /***/ 1523:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var zrColor = __webpack_require__(1438);
-
- var _number = __webpack_require__(985);
-
- var linearMap = _number.linearMap;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var each = zrUtil.each;
- var isObject = zrUtil.isObject;
- var CATEGORY_DEFAULT_VISUAL_INDEX = -1;
- /**
- * @param {Object} option
- * @param {string} [option.type] See visualHandlers.
- * @param {string} [option.mappingMethod] 'linear' or 'piecewise' or 'category' or 'fixed'
- * @param {Array.<number>=} [option.dataExtent] [minExtent, maxExtent],
- * required when mappingMethod is 'linear'
- * @param {Array.<Object>=} [option.pieceList] [
- * {value: someValue},
- * {interval: [min1, max1], visual: {...}},
- * {interval: [min2, max2]}
- * ],
- * required when mappingMethod is 'piecewise'.
- * Visual for only each piece can be specified.
- * @param {Array.<string|Object>=} [option.categories] ['cate1', 'cate2']
- * required when mappingMethod is 'category'.
- * If no option.categories, categories is set
- * as [0, 1, 2, ...].
- * @param {boolean} [option.loop=false] Whether loop mapping when mappingMethod is 'category'.
- * @param {(Array|Object|*)} [option.visual] Visual data.
- * when mappingMethod is 'category',
- * visual data can be array or object
- * (like: {cate1: '#222', none: '#fff'})
- * or primary types (which represents
- * defualt category visual), otherwise visual
- * can be array or primary (which will be
- * normalized to array).
- *
- */
-
- var VisualMapping = function (option) {
- var mappingMethod = option.mappingMethod;
- var visualType = option.type;
- /**
- * @readOnly
- * @type {Object}
- */
-
- var thisOption = this.option = zrUtil.clone(option);
- /**
- * @readOnly
- * @type {string}
- */
-
- this.type = visualType;
- /**
- * @readOnly
- * @type {string}
- */
-
- this.mappingMethod = mappingMethod;
- /**
- * @private
- * @type {Function}
- */
-
- this._normalizeData = normalizers[mappingMethod];
- var visualHandler = visualHandlers[visualType];
- /**
- * @public
- * @type {Function}
- */
-
- this.applyVisual = visualHandler.applyVisual;
- /**
- * @public
- * @type {Function}
- */
-
- this.getColorMapper = visualHandler.getColorMapper;
- /**
- * @private
- * @type {Function}
- */
-
- this._doMap = visualHandler._doMap[mappingMethod];
-
- if (mappingMethod === 'piecewise') {
- normalizeVisualRange(thisOption);
- preprocessForPiecewise(thisOption);
- } else if (mappingMethod === 'category') {
- thisOption.categories ? preprocessForSpecifiedCategory(thisOption) // categories is ordinal when thisOption.categories not specified,
- // which need no more preprocess except normalize visual.
- : normalizeVisualRange(thisOption, true);
- } else {
- // mappingMethod === 'linear' or 'fixed'
- zrUtil.assert(mappingMethod !== 'linear' || thisOption.dataExtent);
- normalizeVisualRange(thisOption);
- }
- };
-
- VisualMapping.prototype = {
- constructor: VisualMapping,
- mapValueToVisual: function (value) {
- var normalized = this._normalizeData(value);
-
- return this._doMap(normalized, value);
- },
- getNormalizer: function () {
- return zrUtil.bind(this._normalizeData, this);
- }
- };
- var visualHandlers = VisualMapping.visualHandlers = {
- color: {
- applyVisual: makeApplyVisual('color'),
-
- /**
- * Create a mapper function
- * @return {Function}
- */
- getColorMapper: function () {
- var thisOption = this.option;
- return zrUtil.bind(thisOption.mappingMethod === 'category' ? function (value, isNormalized) {
- !isNormalized && (value = this._normalizeData(value));
- return doMapCategory.call(this, value);
- } : function (value, isNormalized, out) {
- // If output rgb array
- // which will be much faster and useful in pixel manipulation
- var returnRGBArray = !!out;
- !isNormalized && (value = this._normalizeData(value));
- out = zrColor.fastLerp(value, thisOption.parsedVisual, out);
- return returnRGBArray ? out : zrColor.stringify(out, 'rgba');
- }, this);
- },
- _doMap: {
- linear: function (normalized) {
- return zrColor.stringify(zrColor.fastLerp(normalized, this.option.parsedVisual), 'rgba');
- },
- category: doMapCategory,
- piecewise: function (normalized, value) {
- var result = getSpecifiedVisual.call(this, value);
-
- if (result == null) {
- result = zrColor.stringify(zrColor.fastLerp(normalized, this.option.parsedVisual), 'rgba');
- }
-
- return result;
- },
- fixed: doMapFixed
- }
- },
- colorHue: makePartialColorVisualHandler(function (color, value) {
- return zrColor.modifyHSL(color, value);
- }),
- colorSaturation: makePartialColorVisualHandler(function (color, value) {
- return zrColor.modifyHSL(color, null, value);
- }),
- colorLightness: makePartialColorVisualHandler(function (color, value) {
- return zrColor.modifyHSL(color, null, null, value);
- }),
- colorAlpha: makePartialColorVisualHandler(function (color, value) {
- return zrColor.modifyAlpha(color, value);
- }),
- opacity: {
- applyVisual: makeApplyVisual('opacity'),
- _doMap: makeDoMap([0, 1])
- },
- liftZ: {
- applyVisual: makeApplyVisual('liftZ'),
- _doMap: {
- linear: doMapFixed,
- category: doMapFixed,
- piecewise: doMapFixed,
- fixed: doMapFixed
- }
- },
- symbol: {
- applyVisual: function (value, getter, setter) {
- var symbolCfg = this.mapValueToVisual(value);
-
- if (zrUtil.isString(symbolCfg)) {
- setter('symbol', symbolCfg);
- } else if (isObject(symbolCfg)) {
- for (var name in symbolCfg) {
- if (symbolCfg.hasOwnProperty(name)) {
- setter(name, symbolCfg[name]);
- }
- }
- }
- },
- _doMap: {
- linear: doMapToArray,
- category: doMapCategory,
- piecewise: function (normalized, value) {
- var result = getSpecifiedVisual.call(this, value);
-
- if (result == null) {
- result = doMapToArray.call(this, normalized);
- }
-
- return result;
- },
- fixed: doMapFixed
- }
- },
- symbolSize: {
- applyVisual: makeApplyVisual('symbolSize'),
- _doMap: makeDoMap([0, 1])
- }
- };
-
- function preprocessForPiecewise(thisOption) {
- var pieceList = thisOption.pieceList;
- thisOption.hasSpecialVisual = false;
- zrUtil.each(pieceList, function (piece, index) {
- piece.originIndex = index; // piece.visual is "result visual value" but not
- // a visual range, so it does not need to be normalized.
-
- if (piece.visual != null) {
- thisOption.hasSpecialVisual = true;
- }
- });
- }
-
- function preprocessForSpecifiedCategory(thisOption) {
- // Hash categories.
- var categories = thisOption.categories;
- var visual = thisOption.visual;
- var categoryMap = thisOption.categoryMap = {};
- each(categories, function (cate, index) {
- categoryMap[cate] = index;
- }); // Process visual map input.
-
- if (!zrUtil.isArray(visual)) {
- var visualArr = [];
-
- if (zrUtil.isObject(visual)) {
- each(visual, function (v, cate) {
- var index = categoryMap[cate];
- visualArr[index != null ? index : CATEGORY_DEFAULT_VISUAL_INDEX] = v;
- });
- } else {
- // Is primary type, represents default visual.
- visualArr[CATEGORY_DEFAULT_VISUAL_INDEX] = visual;
- }
-
- visual = setVisualToOption(thisOption, visualArr);
- } // Remove categories that has no visual,
- // then we can mapping them to CATEGORY_DEFAULT_VISUAL_INDEX.
-
-
- for (var i = categories.length - 1; i >= 0; i--) {
- if (visual[i] == null) {
- delete categoryMap[categories[i]];
- categories.pop();
- }
- }
- }
-
- function normalizeVisualRange(thisOption, isCategory) {
- var visual = thisOption.visual;
- var visualArr = [];
-
- if (zrUtil.isObject(visual)) {
- each(visual, function (v) {
- visualArr.push(v);
- });
- } else if (visual != null) {
- visualArr.push(visual);
- }
-
- var doNotNeedPair = {
- color: 1,
- symbol: 1
- };
-
- if (!isCategory && visualArr.length === 1 && !doNotNeedPair.hasOwnProperty(thisOption.type)) {
- // Do not care visualArr.length === 0, which is illegal.
- visualArr[1] = visualArr[0];
- }
-
- setVisualToOption(thisOption, visualArr);
- }
-
- function makePartialColorVisualHandler(applyValue) {
- return {
- applyVisual: function (value, getter, setter) {
- value = this.mapValueToVisual(value); // Must not be array value
-
- setter('color', applyValue(getter('color'), value));
- },
- _doMap: makeDoMap([0, 1])
- };
- }
-
- function doMapToArray(normalized) {
- var visual = this.option.visual;
- return visual[Math.round(linearMap(normalized, [0, 1], [0, visual.length - 1], true))] || {};
- }
-
- function makeApplyVisual(visualType) {
- return function (value, getter, setter) {
- setter(visualType, this.mapValueToVisual(value));
- };
- }
-
- function doMapCategory(normalized) {
- var visual = this.option.visual;
- return visual[this.option.loop && normalized !== CATEGORY_DEFAULT_VISUAL_INDEX ? normalized % visual.length : normalized];
- }
-
- function doMapFixed() {
- return this.option.visual[0];
- }
-
- function makeDoMap(sourceExtent) {
- return {
- linear: function (normalized) {
- return linearMap(normalized, sourceExtent, this.option.visual, true);
- },
- category: doMapCategory,
- piecewise: function (normalized, value) {
- var result = getSpecifiedVisual.call(this, value);
-
- if (result == null) {
- result = linearMap(normalized, sourceExtent, this.option.visual, true);
- }
-
- return result;
- },
- fixed: doMapFixed
- };
- }
-
- function getSpecifiedVisual(value) {
- var thisOption = this.option;
- var pieceList = thisOption.pieceList;
-
- if (thisOption.hasSpecialVisual) {
- var pieceIndex = VisualMapping.findPieceIndex(value, pieceList);
- var piece = pieceList[pieceIndex];
-
- if (piece && piece.visual) {
- return piece.visual[this.type];
- }
- }
- }
-
- function setVisualToOption(thisOption, visualArr) {
- thisOption.visual = visualArr;
-
- if (thisOption.type === 'color') {
- thisOption.parsedVisual = zrUtil.map(visualArr, function (item) {
- return zrColor.parse(item);
- });
- }
-
- return visualArr;
- }
- /**
- * Normalizers by mapping methods.
- */
-
-
- var normalizers = {
- linear: function (value) {
- return linearMap(value, this.option.dataExtent, [0, 1], true);
- },
- piecewise: function (value) {
- var pieceList = this.option.pieceList;
- var pieceIndex = VisualMapping.findPieceIndex(value, pieceList, true);
-
- if (pieceIndex != null) {
- return linearMap(pieceIndex, [0, pieceList.length - 1], [0, 1], true);
- }
- },
- category: function (value) {
- var index = this.option.categories ? this.option.categoryMap[value] : value; // ordinal
-
- return index == null ? CATEGORY_DEFAULT_VISUAL_INDEX : index;
- },
- fixed: zrUtil.noop
- };
- /**
- * List available visual types.
- *
- * @public
- * @return {Array.<string>}
- */
-
- VisualMapping.listVisualTypes = function () {
- var visualTypes = [];
- zrUtil.each(visualHandlers, function (handler, key) {
- visualTypes.push(key);
- });
- return visualTypes;
- };
- /**
- * @public
- */
-
-
- VisualMapping.addVisualHandler = function (name, handler) {
- visualHandlers[name] = handler;
- };
- /**
- * @public
- */
-
-
- VisualMapping.isValidType = function (visualType) {
- return visualHandlers.hasOwnProperty(visualType);
- };
- /**
- * Convinent method.
- * Visual can be Object or Array or primary type.
- *
- * @public
- */
-
-
- VisualMapping.eachVisual = function (visual, callback, context) {
- if (zrUtil.isObject(visual)) {
- zrUtil.each(visual, callback, context);
- } else {
- callback.call(context, visual);
- }
- };
-
- VisualMapping.mapVisual = function (visual, callback, context) {
- var isPrimary;
- var newVisual = zrUtil.isArray(visual) ? [] : zrUtil.isObject(visual) ? {} : (isPrimary = true, null);
- VisualMapping.eachVisual(visual, function (v, key) {
- var newVal = callback.call(context, v, key);
- isPrimary ? newVisual = newVal : newVisual[key] = newVal;
- });
- return newVisual;
- };
- /**
- * @public
- * @param {Object} obj
- * @return {Object} new object containers visual values.
- * If no visuals, return null.
- */
-
-
- VisualMapping.retrieveVisuals = function (obj) {
- var ret = {};
- var hasVisual;
- obj && each(visualHandlers, function (h, visualType) {
- if (obj.hasOwnProperty(visualType)) {
- ret[visualType] = obj[visualType];
- hasVisual = true;
- }
- });
- return hasVisual ? ret : null;
- };
- /**
- * Give order to visual types, considering colorSaturation, colorAlpha depends on color.
- *
- * @public
- * @param {(Object|Array)} visualTypes If Object, like: {color: ..., colorSaturation: ...}
- * IF Array, like: ['color', 'symbol', 'colorSaturation']
- * @return {Array.<string>} Sorted visual types.
- */
-
-
- VisualMapping.prepareVisualTypes = function (visualTypes) {
- if (isObject(visualTypes)) {
- var types = [];
- each(visualTypes, function (item, type) {
- types.push(type);
- });
- visualTypes = types;
- } else if (zrUtil.isArray(visualTypes)) {
- visualTypes = visualTypes.slice();
- } else {
- return [];
- }
-
- visualTypes.sort(function (type1, type2) {
- // color should be front of colorSaturation, colorAlpha, ...
- // symbol and symbolSize do not matter.
- return type2 === 'color' && type1 !== 'color' && type1.indexOf('color') === 0 ? 1 : -1;
- });
- return visualTypes;
- };
- /**
- * 'color', 'colorSaturation', 'colorAlpha', ... are depends on 'color'.
- * Other visuals are only depends on themself.
- *
- * @public
- * @param {string} visualType1
- * @param {string} visualType2
- * @return {boolean}
- */
-
-
- VisualMapping.dependsOn = function (visualType1, visualType2) {
- return visualType2 === 'color' ? !!(visualType1 && visualType1.indexOf(visualType2) === 0) : visualType1 === visualType2;
- };
- /**
- * @param {number} value
- * @param {Array.<Object>} pieceList [{value: ..., interval: [min, max]}, ...]
- * Always from small to big.
- * @param {boolean} [findClosestWhenOutside=false]
- * @return {number} index
- */
-
-
- VisualMapping.findPieceIndex = function (value, pieceList, findClosestWhenOutside) {
- var possibleI;
- var abs = Infinity; // value has the higher priority.
-
- for (var i = 0, len = pieceList.length; i < len; i++) {
- var pieceValue = pieceList[i].value;
-
- if (pieceValue != null) {
- if (pieceValue === value // FIXME
- // It is supposed to compare value according to value type of dimension,
- // but currently value type can exactly be string or number.
- // Compromise for numeric-like string (like '12'), especially
- // in the case that visualMap.categories is ['22', '33'].
- || typeof pieceValue === 'string' && pieceValue === value + '') {
- return i;
- }
-
- findClosestWhenOutside && updatePossible(pieceValue, i);
- }
- }
-
- for (var i = 0, len = pieceList.length; i < len; i++) {
- var piece = pieceList[i];
- var interval = piece.interval;
- var close = piece.close;
-
- if (interval) {
- if (interval[0] === -Infinity) {
- if (littleThan(close[1], value, interval[1])) {
- return i;
- }
- } else if (interval[1] === Infinity) {
- if (littleThan(close[0], interval[0], value)) {
- return i;
- }
- } else if (littleThan(close[0], interval[0], value) && littleThan(close[1], value, interval[1])) {
- return i;
- }
-
- findClosestWhenOutside && updatePossible(interval[0], i);
- findClosestWhenOutside && updatePossible(interval[1], i);
- }
- }
-
- if (findClosestWhenOutside) {
- return value === Infinity ? pieceList.length - 1 : value === -Infinity ? 0 : possibleI;
- }
-
- function updatePossible(val, index) {
- var newAbs = Math.abs(val - value);
-
- if (newAbs < abs) {
- abs = newAbs;
- possibleI = index;
- }
- }
- };
-
- function littleThan(close, a, b) {
- return close ? a <= b : a < b;
- }
-
- var _default = VisualMapping;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1597:
- /***/ (function(module, exports, __webpack_require__) {
-
- var zrUtil = __webpack_require__(864);
-
- var Element = __webpack_require__(2259);
-
- var BoundingRect = __webpack_require__(1185);
-
- /**
- * Group是一个容器,可以插入子节点,Group的变换也会被应用到子节点上
- * @module zrender/graphic/Group
- * @example
- * var Group = require('zrender/container/Group');
- * var Circle = require('zrender/graphic/shape/Circle');
- * var g = new Group();
- * g.position[0] = 100;
- * g.position[1] = 100;
- * g.add(new Circle({
- * style: {
- * x: 100,
- * y: 100,
- * r: 20,
- * }
- * }));
- * zr.add(g);
- */
-
- /**
- * @alias module:zrender/graphic/Group
- * @constructor
- * @extends module:zrender/mixin/Transformable
- * @extends module:zrender/mixin/Eventful
- */
- var Group = function (opts) {
- opts = opts || {};
- Element.call(this, opts);
-
- for (var key in opts) {
- if (opts.hasOwnProperty(key)) {
- this[key] = opts[key];
- }
- }
-
- this._children = [];
- this.__storage = null;
- this.__dirty = true;
- };
-
- Group.prototype = {
- constructor: Group,
- isGroup: true,
-
- /**
- * @type {string}
- */
- type: 'group',
-
- /**
- * 所有子孙元素是否响应鼠标事件
- * @name module:/zrender/container/Group#silent
- * @type {boolean}
- * @default false
- */
- silent: false,
-
- /**
- * @return {Array.<module:zrender/Element>}
- */
- children: function () {
- return this._children.slice();
- },
-
- /**
- * 获取指定 index 的儿子节点
- * @param {number} idx
- * @return {module:zrender/Element}
- */
- childAt: function (idx) {
- return this._children[idx];
- },
-
- /**
- * 获取指定名字的儿子节点
- * @param {string} name
- * @return {module:zrender/Element}
- */
- childOfName: function (name) {
- var children = this._children;
-
- for (var i = 0; i < children.length; i++) {
- if (children[i].name === name) {
- return children[i];
- }
- }
- },
-
- /**
- * @return {number}
- */
- childCount: function () {
- return this._children.length;
- },
-
- /**
- * 添加子节点到最后
- * @param {module:zrender/Element} child
- */
- add: function (child) {
- if (child && child !== this && child.parent !== this) {
- this._children.push(child);
-
- this._doAdd(child);
- }
-
- return this;
- },
-
- /**
- * 添加子节点在 nextSibling 之前
- * @param {module:zrender/Element} child
- * @param {module:zrender/Element} nextSibling
- */
- addBefore: function (child, nextSibling) {
- if (child && child !== this && child.parent !== this && nextSibling && nextSibling.parent === this) {
- var children = this._children;
- var idx = children.indexOf(nextSibling);
-
- if (idx >= 0) {
- children.splice(idx, 0, child);
-
- this._doAdd(child);
- }
- }
-
- return this;
- },
- _doAdd: function (child) {
- if (child.parent) {
- child.parent.remove(child);
- }
-
- child.parent = this;
- var storage = this.__storage;
- var zr = this.__zr;
-
- if (storage && storage !== child.__storage) {
- storage.addToStorage(child);
-
- if (child instanceof Group) {
- child.addChildrenToStorage(storage);
- }
- }
-
- zr && zr.refresh();
- },
-
- /**
- * 移除子节点
- * @param {module:zrender/Element} child
- */
- remove: function (child) {
- var zr = this.__zr;
- var storage = this.__storage;
- var children = this._children;
- var idx = zrUtil.indexOf(children, child);
-
- if (idx < 0) {
- return this;
- }
-
- children.splice(idx, 1);
- child.parent = null;
-
- if (storage) {
- storage.delFromStorage(child);
-
- if (child instanceof Group) {
- child.delChildrenFromStorage(storage);
- }
- }
-
- zr && zr.refresh();
- return this;
- },
-
- /**
- * 移除所有子节点
- */
- removeAll: function () {
- var children = this._children;
- var storage = this.__storage;
- var child;
- var i;
-
- for (i = 0; i < children.length; i++) {
- child = children[i];
-
- if (storage) {
- storage.delFromStorage(child);
-
- if (child instanceof Group) {
- child.delChildrenFromStorage(storage);
- }
- }
-
- child.parent = null;
- }
-
- children.length = 0;
- return this;
- },
-
- /**
- * 遍历所有子节点
- * @param {Function} cb
- * @param {} context
- */
- eachChild: function (cb, context) {
- var children = this._children;
-
- for (var i = 0; i < children.length; i++) {
- var child = children[i];
- cb.call(context, child, i);
- }
-
- return this;
- },
-
- /**
- * 深度优先遍历所有子孙节点
- * @param {Function} cb
- * @param {} context
- */
- traverse: function (cb, context) {
- for (var i = 0; i < this._children.length; i++) {
- var child = this._children[i];
- cb.call(context, child);
-
- if (child.type === 'group') {
- child.traverse(cb, context);
- }
- }
-
- return this;
- },
- addChildrenToStorage: function (storage) {
- for (var i = 0; i < this._children.length; i++) {
- var child = this._children[i];
- storage.addToStorage(child);
-
- if (child instanceof Group) {
- child.addChildrenToStorage(storage);
- }
- }
- },
- delChildrenFromStorage: function (storage) {
- for (var i = 0; i < this._children.length; i++) {
- var child = this._children[i];
- storage.delFromStorage(child);
-
- if (child instanceof Group) {
- child.delChildrenFromStorage(storage);
- }
- }
- },
- dirty: function () {
- this.__dirty = true;
- this.__zr && this.__zr.refresh();
- return this;
- },
-
- /**
- * @return {module:zrender/core/BoundingRect}
- */
- getBoundingRect: function (includeChildren) {
- // TODO Caching
- var rect = null;
- var tmpRect = new BoundingRect(0, 0, 0, 0);
- var children = includeChildren || this._children;
- var tmpMat = [];
-
- for (var i = 0; i < children.length; i++) {
- var child = children[i];
-
- if (child.ignore || child.invisible) {
- continue;
- }
-
- var childRect = child.getBoundingRect();
- var transform = child.getLocalTransform(tmpMat); // TODO
- // The boundingRect cacluated by transforming original
- // rect may be bigger than the actual bundingRect when rotation
- // is used. (Consider a circle rotated aginst its center, where
- // the actual boundingRect should be the same as that not be
- // rotated.) But we can not find better approach to calculate
- // actual boundingRect yet, considering performance.
-
- if (transform) {
- tmpRect.copy(childRect);
- tmpRect.applyTransform(transform);
- rect = rect || tmpRect.clone();
- rect.union(tmpRect);
- } else {
- rect = rect || childRect.clone();
- rect.union(childRect);
- }
- }
-
- return rect || tmpRect;
- }
- };
- zrUtil.inherits(Group, Element);
- var _default = Group;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1598:
- /***/ (function(module, exports, __webpack_require__) {
-
- var Displayable = __webpack_require__(1656);
-
- var BoundingRect = __webpack_require__(1185);
-
- var zrUtil = __webpack_require__(864);
-
- var imageHelper = __webpack_require__(1896);
-
- /**
- * @alias zrender/graphic/Image
- * @extends module:zrender/graphic/Displayable
- * @constructor
- * @param {Object} opts
- */
- function ZImage(opts) {
- Displayable.call(this, opts);
- }
-
- ZImage.prototype = {
- constructor: ZImage,
- type: 'image',
- brush: function (ctx, prevEl) {
- var style = this.style;
- var src = style.image; // Must bind each time
-
- style.bind(ctx, this, prevEl);
- var image = this._image = imageHelper.createOrUpdateImage(src, this._image, this, this.onload);
-
- if (!image || !imageHelper.isImageReady(image)) {
- return;
- } // 图片已经加载完成
- // if (image.nodeName.toUpperCase() == 'IMG') {
- // if (!image.complete) {
- // return;
- // }
- // }
- // Else is canvas
-
-
- var x = style.x || 0;
- var y = style.y || 0;
- var width = style.width;
- var height = style.height;
- var aspect = image.width / image.height;
-
- if (width == null && height != null) {
- // Keep image/height ratio
- width = height * aspect;
- } else if (height == null && width != null) {
- height = width / aspect;
- } else if (width == null && height == null) {
- width = image.width;
- height = image.height;
- } // 设置transform
-
-
- this.setTransform(ctx);
-
- if (style.sWidth && style.sHeight) {
- var sx = style.sx || 0;
- var sy = style.sy || 0;
- ctx.drawImage(image, sx, sy, style.sWidth, style.sHeight, x, y, width, height);
- } else if (style.sx && style.sy) {
- var sx = style.sx;
- var sy = style.sy;
- var sWidth = width - sx;
- var sHeight = height - sy;
- ctx.drawImage(image, sx, sy, sWidth, sHeight, x, y, width, height);
- } else {
- ctx.drawImage(image, x, y, width, height);
- } // Draw rect text
-
-
- if (style.text != null) {
- // Only restore transform when needs draw text.
- this.restoreTransform(ctx);
- this.drawRectText(ctx, this.getBoundingRect());
- }
- },
- getBoundingRect: function () {
- var style = this.style;
-
- if (!this._rect) {
- this._rect = new BoundingRect(style.x || 0, style.y || 0, style.width || 0, style.height || 0);
- }
-
- return this._rect;
- }
- };
- zrUtil.inherits(ZImage, Displayable);
- var _default = ZImage;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1599:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // TODO Parse shadow style
- // TODO Only shallow path support
- function _default(properties) {
- // Normalize
- for (var i = 0; i < properties.length; i++) {
- if (!properties[i][1]) {
- properties[i][1] = properties[i][0];
- }
- }
-
- return function (model, excludes, includes) {
- var style = {};
-
- for (var i = 0; i < properties.length; i++) {
- var propName = properties[i][1];
-
- if (excludes && zrUtil.indexOf(excludes, propName) >= 0 || includes && zrUtil.indexOf(includes, propName) < 0) {
- continue;
- }
-
- var val = model.getShallow(propName);
-
- if (val != null) {
- style[properties[i][0]] = val;
- }
- }
-
- return style;
- };
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1600:
- /***/ (function(module, exports, __webpack_require__) {
-
- var curve = __webpack_require__(1481);
-
- var vec2 = __webpack_require__(1180);
-
- var bbox = __webpack_require__(1784);
-
- var BoundingRect = __webpack_require__(1185);
-
- var _config = __webpack_require__(1781);
-
- var dpr = _config.devicePixelRatio;
-
- /**
- * Path 代理,可以在`buildPath`中用于替代`ctx`, 会保存每个path操作的命令到pathCommands属性中
- * 可以用于 isInsidePath 判断以及获取boundingRect
- *
- * @module zrender/core/PathProxy
- * @author Yi Shen (http://www.github.com/pissang)
- */
- // TODO getTotalLength, getPointAtLength
-
- /* global Float32Array */
- var CMD = {
- M: 1,
- L: 2,
- C: 3,
- Q: 4,
- A: 5,
- Z: 6,
- // Rect
- R: 7
- }; // var CMD_MEM_SIZE = {
- // M: 3,
- // L: 3,
- // C: 7,
- // Q: 5,
- // A: 9,
- // R: 5,
- // Z: 1
- // };
-
- var min = [];
- var max = [];
- var min2 = [];
- var max2 = [];
- var mathMin = Math.min;
- var mathMax = Math.max;
- var mathCos = Math.cos;
- var mathSin = Math.sin;
- var mathSqrt = Math.sqrt;
- var mathAbs = Math.abs;
- var hasTypedArray = typeof Float32Array !== 'undefined';
- /**
- * @alias module:zrender/core/PathProxy
- * @constructor
- */
-
- var PathProxy = function (notSaveData) {
- this._saveData = !(notSaveData || false);
-
- if (this._saveData) {
- /**
- * Path data. Stored as flat array
- * @type {Array.<Object>}
- */
- this.data = [];
- }
-
- this._ctx = null;
- };
- /**
- * 快速计算Path包围盒(并不是最小包围盒)
- * @return {Object}
- */
-
-
- PathProxy.prototype = {
- constructor: PathProxy,
- _xi: 0,
- _yi: 0,
- _x0: 0,
- _y0: 0,
- // Unit x, Unit y. Provide for avoiding drawing that too short line segment
- _ux: 0,
- _uy: 0,
- _len: 0,
- _lineDash: null,
- _dashOffset: 0,
- _dashIdx: 0,
- _dashSum: 0,
-
- /**
- * @readOnly
- */
- setScale: function (sx, sy, segmentIgnoreThreshold) {
- // Compat. Previously there is no segmentIgnoreThreshold.
- segmentIgnoreThreshold = segmentIgnoreThreshold || 0;
- this._ux = mathAbs(segmentIgnoreThreshold / dpr / sx) || 0;
- this._uy = mathAbs(segmentIgnoreThreshold / dpr / sy) || 0;
- },
- getContext: function () {
- return this._ctx;
- },
-
- /**
- * @param {CanvasRenderingContext2D} ctx
- * @return {module:zrender/core/PathProxy}
- */
- beginPath: function (ctx) {
- this._ctx = ctx;
- ctx && ctx.beginPath();
- ctx && (this.dpr = ctx.dpr); // Reset
-
- if (this._saveData) {
- this._len = 0;
- }
-
- if (this._lineDash) {
- this._lineDash = null;
- this._dashOffset = 0;
- }
-
- return this;
- },
-
- /**
- * @param {number} x
- * @param {number} y
- * @return {module:zrender/core/PathProxy}
- */
- moveTo: function (x, y) {
- this.addData(CMD.M, x, y);
- this._ctx && this._ctx.moveTo(x, y); // x0, y0, xi, yi 是记录在 _dashedXXXXTo 方法中使用
- // xi, yi 记录当前点, x0, y0 在 closePath 的时候回到起始点。
- // 有可能在 beginPath 之后直接调用 lineTo,这时候 x0, y0 需要
- // 在 lineTo 方法中记录,这里先不考虑这种情况,dashed line 也只在 IE10- 中不支持
-
- this._x0 = x;
- this._y0 = y;
- this._xi = x;
- this._yi = y;
- return this;
- },
-
- /**
- * @param {number} x
- * @param {number} y
- * @return {module:zrender/core/PathProxy}
- */
- lineTo: function (x, y) {
- var exceedUnit = mathAbs(x - this._xi) > this._ux || mathAbs(y - this._yi) > this._uy // Force draw the first segment
- || this._len < 5;
- this.addData(CMD.L, x, y);
-
- if (this._ctx && exceedUnit) {
- this._needsDash() ? this._dashedLineTo(x, y) : this._ctx.lineTo(x, y);
- }
-
- if (exceedUnit) {
- this._xi = x;
- this._yi = y;
- }
-
- return this;
- },
-
- /**
- * @param {number} x1
- * @param {number} y1
- * @param {number} x2
- * @param {number} y2
- * @param {number} x3
- * @param {number} y3
- * @return {module:zrender/core/PathProxy}
- */
- bezierCurveTo: function (x1, y1, x2, y2, x3, y3) {
- this.addData(CMD.C, x1, y1, x2, y2, x3, y3);
-
- if (this._ctx) {
- this._needsDash() ? this._dashedBezierTo(x1, y1, x2, y2, x3, y3) : this._ctx.bezierCurveTo(x1, y1, x2, y2, x3, y3);
- }
-
- this._xi = x3;
- this._yi = y3;
- return this;
- },
-
- /**
- * @param {number} x1
- * @param {number} y1
- * @param {number} x2
- * @param {number} y2
- * @return {module:zrender/core/PathProxy}
- */
- quadraticCurveTo: function (x1, y1, x2, y2) {
- this.addData(CMD.Q, x1, y1, x2, y2);
-
- if (this._ctx) {
- this._needsDash() ? this._dashedQuadraticTo(x1, y1, x2, y2) : this._ctx.quadraticCurveTo(x1, y1, x2, y2);
- }
-
- this._xi = x2;
- this._yi = y2;
- return this;
- },
-
- /**
- * @param {number} cx
- * @param {number} cy
- * @param {number} r
- * @param {number} startAngle
- * @param {number} endAngle
- * @param {boolean} anticlockwise
- * @return {module:zrender/core/PathProxy}
- */
- arc: function (cx, cy, r, startAngle, endAngle, anticlockwise) {
- this.addData(CMD.A, cx, cy, r, r, startAngle, endAngle - startAngle, 0, anticlockwise ? 0 : 1);
- this._ctx && this._ctx.arc(cx, cy, r, startAngle, endAngle, anticlockwise);
- this._xi = mathCos(endAngle) * r + cx;
- this._yi = mathSin(endAngle) * r + cy;
- return this;
- },
- // TODO
- arcTo: function (x1, y1, x2, y2, radius) {
- if (this._ctx) {
- this._ctx.arcTo(x1, y1, x2, y2, radius);
- }
-
- return this;
- },
- // TODO
- rect: function (x, y, w, h) {
- this._ctx && this._ctx.rect(x, y, w, h);
- this.addData(CMD.R, x, y, w, h);
- return this;
- },
-
- /**
- * @return {module:zrender/core/PathProxy}
- */
- closePath: function () {
- this.addData(CMD.Z);
- var ctx = this._ctx;
- var x0 = this._x0;
- var y0 = this._y0;
-
- if (ctx) {
- this._needsDash() && this._dashedLineTo(x0, y0);
- ctx.closePath();
- }
-
- this._xi = x0;
- this._yi = y0;
- return this;
- },
-
- /**
- * Context 从外部传入,因为有可能是 rebuildPath 完之后再 fill。
- * stroke 同样
- * @param {CanvasRenderingContext2D} ctx
- * @return {module:zrender/core/PathProxy}
- */
- fill: function (ctx) {
- ctx && ctx.fill();
- this.toStatic();
- },
-
- /**
- * @param {CanvasRenderingContext2D} ctx
- * @return {module:zrender/core/PathProxy}
- */
- stroke: function (ctx) {
- ctx && ctx.stroke();
- this.toStatic();
- },
-
- /**
- * 必须在其它绘制命令前调用
- * Must be invoked before all other path drawing methods
- * @return {module:zrender/core/PathProxy}
- */
- setLineDash: function (lineDash) {
- if (lineDash instanceof Array) {
- this._lineDash = lineDash;
- this._dashIdx = 0;
- var lineDashSum = 0;
-
- for (var i = 0; i < lineDash.length; i++) {
- lineDashSum += lineDash[i];
- }
-
- this._dashSum = lineDashSum;
- }
-
- return this;
- },
-
- /**
- * 必须在其它绘制命令前调用
- * Must be invoked before all other path drawing methods
- * @return {module:zrender/core/PathProxy}
- */
- setLineDashOffset: function (offset) {
- this._dashOffset = offset;
- return this;
- },
-
- /**
- *
- * @return {boolean}
- */
- len: function () {
- return this._len;
- },
-
- /**
- * 直接设置 Path 数据
- */
- setData: function (data) {
- var len = data.length;
-
- if (!(this.data && this.data.length === len) && hasTypedArray) {
- this.data = new Float32Array(len);
- }
-
- for (var i = 0; i < len; i++) {
- this.data[i] = data[i];
- }
-
- this._len = len;
- },
-
- /**
- * 添加子路径
- * @param {module:zrender/core/PathProxy|Array.<module:zrender/core/PathProxy>} path
- */
- appendPath: function (path) {
- if (!(path instanceof Array)) {
- path = [path];
- }
-
- var len = path.length;
- var appendSize = 0;
- var offset = this._len;
-
- for (var i = 0; i < len; i++) {
- appendSize += path[i].len();
- }
-
- if (hasTypedArray && this.data instanceof Float32Array) {
- this.data = new Float32Array(offset + appendSize);
- }
-
- for (var i = 0; i < len; i++) {
- var appendPathData = path[i].data;
-
- for (var k = 0; k < appendPathData.length; k++) {
- this.data[offset++] = appendPathData[k];
- }
- }
-
- this._len = offset;
- },
-
- /**
- * 填充 Path 数据。
- * 尽量复用而不申明新的数组。大部分图形重绘的指令数据长度都是不变的。
- */
- addData: function (cmd) {
- if (!this._saveData) {
- return;
- }
-
- var data = this.data;
-
- if (this._len + arguments.length > data.length) {
- // 因为之前的数组已经转换成静态的 Float32Array
- // 所以不够用时需要扩展一个新的动态数组
- this._expandData();
-
- data = this.data;
- }
-
- for (var i = 0; i < arguments.length; i++) {
- data[this._len++] = arguments[i];
- }
-
- this._prevCmd = cmd;
- },
- _expandData: function () {
- // Only if data is Float32Array
- if (!(this.data instanceof Array)) {
- var newData = [];
-
- for (var i = 0; i < this._len; i++) {
- newData[i] = this.data[i];
- }
-
- this.data = newData;
- }
- },
-
- /**
- * If needs js implemented dashed line
- * @return {boolean}
- * @private
- */
- _needsDash: function () {
- return this._lineDash;
- },
- _dashedLineTo: function (x1, y1) {
- var dashSum = this._dashSum;
- var offset = this._dashOffset;
- var lineDash = this._lineDash;
- var ctx = this._ctx;
- var x0 = this._xi;
- var y0 = this._yi;
- var dx = x1 - x0;
- var dy = y1 - y0;
- var dist = mathSqrt(dx * dx + dy * dy);
- var x = x0;
- var y = y0;
- var dash;
- var nDash = lineDash.length;
- var idx;
- dx /= dist;
- dy /= dist;
-
- if (offset < 0) {
- // Convert to positive offset
- offset = dashSum + offset;
- }
-
- offset %= dashSum;
- x -= offset * dx;
- y -= offset * dy;
-
- while (dx > 0 && x <= x1 || dx < 0 && x >= x1 || dx === 0 && (dy > 0 && y <= y1 || dy < 0 && y >= y1)) {
- idx = this._dashIdx;
- dash = lineDash[idx];
- x += dx * dash;
- y += dy * dash;
- this._dashIdx = (idx + 1) % nDash; // Skip positive offset
-
- if (dx > 0 && x < x0 || dx < 0 && x > x0 || dy > 0 && y < y0 || dy < 0 && y > y0) {
- continue;
- }
-
- ctx[idx % 2 ? 'moveTo' : 'lineTo'](dx >= 0 ? mathMin(x, x1) : mathMax(x, x1), dy >= 0 ? mathMin(y, y1) : mathMax(y, y1));
- } // Offset for next lineTo
-
-
- dx = x - x1;
- dy = y - y1;
- this._dashOffset = -mathSqrt(dx * dx + dy * dy);
- },
- // Not accurate dashed line to
- _dashedBezierTo: function (x1, y1, x2, y2, x3, y3) {
- var dashSum = this._dashSum;
- var offset = this._dashOffset;
- var lineDash = this._lineDash;
- var ctx = this._ctx;
- var x0 = this._xi;
- var y0 = this._yi;
- var t;
- var dx;
- var dy;
- var cubicAt = curve.cubicAt;
- var bezierLen = 0;
- var idx = this._dashIdx;
- var nDash = lineDash.length;
- var x;
- var y;
- var tmpLen = 0;
-
- if (offset < 0) {
- // Convert to positive offset
- offset = dashSum + offset;
- }
-
- offset %= dashSum; // Bezier approx length
-
- for (t = 0; t < 1; t += 0.1) {
- dx = cubicAt(x0, x1, x2, x3, t + 0.1) - cubicAt(x0, x1, x2, x3, t);
- dy = cubicAt(y0, y1, y2, y3, t + 0.1) - cubicAt(y0, y1, y2, y3, t);
- bezierLen += mathSqrt(dx * dx + dy * dy);
- } // Find idx after add offset
-
-
- for (; idx < nDash; idx++) {
- tmpLen += lineDash[idx];
-
- if (tmpLen > offset) {
- break;
- }
- }
-
- t = (tmpLen - offset) / bezierLen;
-
- while (t <= 1) {
- x = cubicAt(x0, x1, x2, x3, t);
- y = cubicAt(y0, y1, y2, y3, t); // Use line to approximate dashed bezier
- // Bad result if dash is long
-
- idx % 2 ? ctx.moveTo(x, y) : ctx.lineTo(x, y);
- t += lineDash[idx] / bezierLen;
- idx = (idx + 1) % nDash;
- } // Finish the last segment and calculate the new offset
-
-
- idx % 2 !== 0 && ctx.lineTo(x3, y3);
- dx = x3 - x;
- dy = y3 - y;
- this._dashOffset = -mathSqrt(dx * dx + dy * dy);
- },
- _dashedQuadraticTo: function (x1, y1, x2, y2) {
- // Convert quadratic to cubic using degree elevation
- var x3 = x2;
- var y3 = y2;
- x2 = (x2 + 2 * x1) / 3;
- y2 = (y2 + 2 * y1) / 3;
- x1 = (this._xi + 2 * x1) / 3;
- y1 = (this._yi + 2 * y1) / 3;
-
- this._dashedBezierTo(x1, y1, x2, y2, x3, y3);
- },
-
- /**
- * 转成静态的 Float32Array 减少堆内存占用
- * Convert dynamic array to static Float32Array
- */
- toStatic: function () {
- var data = this.data;
-
- if (data instanceof Array) {
- data.length = this._len;
-
- if (hasTypedArray) {
- this.data = new Float32Array(data);
- }
- }
- },
-
- /**
- * @return {module:zrender/core/BoundingRect}
- */
- getBoundingRect: function () {
- min[0] = min[1] = min2[0] = min2[1] = Number.MAX_VALUE;
- max[0] = max[1] = max2[0] = max2[1] = -Number.MAX_VALUE;
- var data = this.data;
- var xi = 0;
- var yi = 0;
- var x0 = 0;
- var y0 = 0;
-
- for (var i = 0; i < data.length;) {
- var cmd = data[i++];
-
- if (i === 1) {
- // 如果第一个命令是 L, C, Q
- // 则 previous point 同绘制命令的第一个 point
- //
- // 第一个命令为 Arc 的情况下会在后面特殊处理
- xi = data[i];
- yi = data[i + 1];
- x0 = xi;
- y0 = yi;
- }
-
- switch (cmd) {
- case CMD.M:
- // moveTo 命令重新创建一个新的 subpath, 并且更新新的起点
- // 在 closePath 的时候使用
- x0 = data[i++];
- y0 = data[i++];
- xi = x0;
- yi = y0;
- min2[0] = x0;
- min2[1] = y0;
- max2[0] = x0;
- max2[1] = y0;
- break;
-
- case CMD.L:
- bbox.fromLine(xi, yi, data[i], data[i + 1], min2, max2);
- xi = data[i++];
- yi = data[i++];
- break;
-
- case CMD.C:
- bbox.fromCubic(xi, yi, data[i++], data[i++], data[i++], data[i++], data[i], data[i + 1], min2, max2);
- xi = data[i++];
- yi = data[i++];
- break;
-
- case CMD.Q:
- bbox.fromQuadratic(xi, yi, data[i++], data[i++], data[i], data[i + 1], min2, max2);
- xi = data[i++];
- yi = data[i++];
- break;
-
- case CMD.A:
- // TODO Arc 判断的开销比较大
- var cx = data[i++];
- var cy = data[i++];
- var rx = data[i++];
- var ry = data[i++];
- var startAngle = data[i++];
- var endAngle = data[i++] + startAngle; // TODO Arc 旋转
-
- i += 1;
- var anticlockwise = 1 - data[i++];
-
- if (i === 1) {
- // 直接使用 arc 命令
- // 第一个命令起点还未定义
- x0 = mathCos(startAngle) * rx + cx;
- y0 = mathSin(startAngle) * ry + cy;
- }
-
- bbox.fromArc(cx, cy, rx, ry, startAngle, endAngle, anticlockwise, min2, max2);
- xi = mathCos(endAngle) * rx + cx;
- yi = mathSin(endAngle) * ry + cy;
- break;
-
- case CMD.R:
- x0 = xi = data[i++];
- y0 = yi = data[i++];
- var width = data[i++];
- var height = data[i++]; // Use fromLine
-
- bbox.fromLine(x0, y0, x0 + width, y0 + height, min2, max2);
- break;
-
- case CMD.Z:
- xi = x0;
- yi = y0;
- break;
- } // Union
-
-
- vec2.min(min, min, min2);
- vec2.max(max, max, max2);
- } // No data
-
-
- if (i === 0) {
- min[0] = min[1] = max[0] = max[1] = 0;
- }
-
- return new BoundingRect(min[0], min[1], max[0] - min[0], max[1] - min[1]);
- },
-
- /**
- * Rebuild path from current data
- * Rebuild path will not consider javascript implemented line dash.
- * @param {CanvasRenderingContext2D} ctx
- */
- rebuildPath: function (ctx) {
- var d = this.data;
- var x0;
- var y0;
- var xi;
- var yi;
- var x;
- var y;
- var ux = this._ux;
- var uy = this._uy;
- var len = this._len;
-
- for (var i = 0; i < len;) {
- var cmd = d[i++];
-
- if (i === 1) {
- // 如果第一个命令是 L, C, Q
- // 则 previous point 同绘制命令的第一个 point
- //
- // 第一个命令为 Arc 的情况下会在后面特殊处理
- xi = d[i];
- yi = d[i + 1];
- x0 = xi;
- y0 = yi;
- }
-
- switch (cmd) {
- case CMD.M:
- x0 = xi = d[i++];
- y0 = yi = d[i++];
- ctx.moveTo(xi, yi);
- break;
-
- case CMD.L:
- x = d[i++];
- y = d[i++]; // Not draw too small seg between
-
- if (mathAbs(x - xi) > ux || mathAbs(y - yi) > uy || i === len - 1) {
- ctx.lineTo(x, y);
- xi = x;
- yi = y;
- }
-
- break;
-
- case CMD.C:
- ctx.bezierCurveTo(d[i++], d[i++], d[i++], d[i++], d[i++], d[i++]);
- xi = d[i - 2];
- yi = d[i - 1];
- break;
-
- case CMD.Q:
- ctx.quadraticCurveTo(d[i++], d[i++], d[i++], d[i++]);
- xi = d[i - 2];
- yi = d[i - 1];
- break;
-
- case CMD.A:
- var cx = d[i++];
- var cy = d[i++];
- var rx = d[i++];
- var ry = d[i++];
- var theta = d[i++];
- var dTheta = d[i++];
- var psi = d[i++];
- var fs = d[i++];
- var r = rx > ry ? rx : ry;
- var scaleX = rx > ry ? 1 : rx / ry;
- var scaleY = rx > ry ? ry / rx : 1;
- var isEllipse = Math.abs(rx - ry) > 1e-3;
- var endAngle = theta + dTheta;
-
- if (isEllipse) {
- ctx.translate(cx, cy);
- ctx.rotate(psi);
- ctx.scale(scaleX, scaleY);
- ctx.arc(0, 0, r, theta, endAngle, 1 - fs);
- ctx.scale(1 / scaleX, 1 / scaleY);
- ctx.rotate(-psi);
- ctx.translate(-cx, -cy);
- } else {
- ctx.arc(cx, cy, r, theta, endAngle, 1 - fs);
- }
-
- if (i === 1) {
- // 直接使用 arc 命令
- // 第一个命令起点还未定义
- x0 = mathCos(theta) * rx + cx;
- y0 = mathSin(theta) * ry + cy;
- }
-
- xi = mathCos(endAngle) * rx + cx;
- yi = mathSin(endAngle) * ry + cy;
- break;
-
- case CMD.R:
- x0 = xi = d[i];
- y0 = yi = d[i + 1];
- ctx.rect(d[i++], d[i++], d[i++], d[i++]);
- break;
-
- case CMD.Z:
- ctx.closePath();
- xi = x0;
- yi = y0;
- }
- }
- }
- };
- PathProxy.CMD = CMD;
- var _default = PathProxy;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1601:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _model = __webpack_require__(1064);
-
- var makeInner = _model.makeInner;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @return {string} If large mode changed, return string 'reset';
- */
- function _default() {
- var inner = makeInner();
- return function (seriesModel) {
- var fields = inner(seriesModel);
- var pipelineContext = seriesModel.pipelineContext;
- var originalLarge = fields.large;
- var originalProgressive = fields.progressiveRender;
- var large = fields.large = pipelineContext.large;
- var progressive = fields.progressiveRender = pipelineContext.progressiveRender;
- return !!(originalLarge ^ large || originalProgressive ^ progressive) && 'reset';
- };
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1602:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var completeDimensions = __webpack_require__(2285);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Substitute `completeDimensions`.
- * `completeDimensions` is to be deprecated.
- */
-
- /**
- * @param {module:echarts/data/Source|module:echarts/data/List} source or data.
- * @param {Object|Array} [opt]
- * @param {Array.<string|Object>} [opt.coordDimensions=[]]
- * @param {number} [opt.dimensionsCount]
- * @param {string} [opt.generateCoord]
- * @param {string} [opt.generateCoordCount]
- * @param {Array.<string|Object>} [opt.dimensionsDefine=source.dimensionsDefine] Overwrite source define.
- * @param {Object|HashMap} [opt.encodeDefine=source.encodeDefine] Overwrite source define.
- * @param {Function} [opt.encodeDefaulter] Make default encode if user not specified.
- * @return {Array.<Object>} dimensionsInfo
- */
- function _default(source, opt) {
- opt = opt || {};
- return completeDimensions(opt.coordDimensions || [], source, {
- dimsDef: opt.dimensionsDefine || source.dimensionsDefine,
- encodeDef: opt.encodeDefine || source.encodeDefine,
- dimCount: opt.dimensionsCount,
- encodeDefaulter: opt.encodeDefaulter,
- generateCoord: opt.generateCoord,
- generateCoordCount: opt.generateCoordCount
- });
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1603:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // import * as axisHelper from './axisHelper';
- var _default = {
- /**
- * @param {boolean} origin
- * @return {number|string} min value or 'dataMin' or null/undefined (means auto) or NaN
- */
- getMin: function (origin) {
- var option = this.option;
- var min = !origin && option.rangeStart != null ? option.rangeStart : option.min;
-
- if (this.axis && min != null && min !== 'dataMin' && typeof min !== 'function' && !zrUtil.eqNaN(min)) {
- min = this.axis.scale.parse(min);
- }
-
- return min;
- },
-
- /**
- * @param {boolean} origin
- * @return {number|string} max value or 'dataMax' or null/undefined (means auto) or NaN
- */
- getMax: function (origin) {
- var option = this.option;
- var max = !origin && option.rangeEnd != null ? option.rangeEnd : option.max;
-
- if (this.axis && max != null && max !== 'dataMax' && typeof max !== 'function' && !zrUtil.eqNaN(max)) {
- max = this.axis.scale.parse(max);
- }
-
- return max;
- },
-
- /**
- * @return {boolean}
- */
- getNeedCrossZero: function () {
- var option = this.option;
- return option.rangeStart != null || option.rangeEnd != null ? false : !option.scale;
- },
-
- /**
- * Should be implemented by each axis model if necessary.
- * @return {module:echarts/model/Component} coordinate system model
- */
- getCoordSysModel: zrUtil.noop,
-
- /**
- * @param {number} rangeStart Can only be finite number or null/undefined or NaN.
- * @param {number} rangeEnd Can only be finite number or null/undefined or NaN.
- */
- setRange: function (rangeStart, rangeEnd) {
- this.option.rangeStart = rangeStart;
- this.option.rangeEnd = rangeEnd;
- },
-
- /**
- * Reset range
- */
- resetRange: function () {
- // rangeStart and rangeEnd is readonly.
- this.option.rangeStart = this.option.rangeEnd = null;
- }
- };
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1604:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var createDimensions = __webpack_require__(1602);
-
- var List = __webpack_require__(1403);
-
- var _util = __webpack_require__(864);
-
- var extend = _util.extend;
- var isArray = _util.isArray;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * [Usage]:
- * (1)
- * createListSimply(seriesModel, ['value']);
- * (2)
- * createListSimply(seriesModel, {
- * coordDimensions: ['value'],
- * dimensionsCount: 5
- * });
- *
- * @param {module:echarts/model/Series} seriesModel
- * @param {Object|Array.<string|Object>} opt opt or coordDimensions
- * The options in opt, see `echarts/data/helper/createDimensions`
- * @param {Array.<string>} [nameList]
- * @return {module:echarts/data/List}
- */
- function _default(seriesModel, opt, nameList) {
- opt = isArray(opt) && {
- coordDimensions: opt
- } || extend({}, opt);
- var source = seriesModel.getSource();
- var dimensionsInfo = createDimensions(source, opt);
- var list = new List(dimensionsInfo, seriesModel);
- list.initData(source, nameList);
- return list;
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1605:
- /***/ (function(module, exports) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Calculate slider move result.
- * Usage:
- * (1) If both handle0 and handle1 are needed to be moved, set minSpan the same as
- * maxSpan and the same as `Math.abs(handleEnd[1] - handleEnds[0])`.
- * (2) If handle0 is forbidden to cross handle1, set minSpan as `0`.
- *
- * @param {number} delta Move length.
- * @param {Array.<number>} handleEnds handleEnds[0] can be bigger then handleEnds[1].
- * handleEnds will be modified in this method.
- * @param {Array.<number>} extent handleEnds is restricted by extent.
- * extent[0] should less or equals than extent[1].
- * @param {number|string} handleIndex Can be 'all', means that both move the two handleEnds.
- * @param {number} [minSpan] The range of dataZoom can not be smaller than that.
- * If not set, handle0 and cross handle1. If set as a non-negative
- * number (including `0`), handles will push each other when reaching
- * the minSpan.
- * @param {number} [maxSpan] The range of dataZoom can not be larger than that.
- * @return {Array.<number>} The input handleEnds.
- */
- function _default(delta, handleEnds, extent, handleIndex, minSpan, maxSpan) {
- delta = delta || 0;
- var extentSpan = extent[1] - extent[0]; // Notice maxSpan and minSpan can be null/undefined.
-
- if (minSpan != null) {
- minSpan = restrict(minSpan, [0, extentSpan]);
- }
-
- if (maxSpan != null) {
- maxSpan = Math.max(maxSpan, minSpan != null ? minSpan : 0);
- }
-
- if (handleIndex === 'all') {
- var handleSpan = Math.abs(handleEnds[1] - handleEnds[0]);
- handleSpan = restrict(handleSpan, [0, extentSpan]);
- minSpan = maxSpan = restrict(handleSpan, [minSpan, maxSpan]);
- handleIndex = 0;
- }
-
- handleEnds[0] = restrict(handleEnds[0], extent);
- handleEnds[1] = restrict(handleEnds[1], extent);
- var originalDistSign = getSpanSign(handleEnds, handleIndex);
- handleEnds[handleIndex] += delta; // Restrict in extent.
-
- var extentMinSpan = minSpan || 0;
- var realExtent = extent.slice();
- originalDistSign.sign < 0 ? realExtent[0] += extentMinSpan : realExtent[1] -= extentMinSpan;
- handleEnds[handleIndex] = restrict(handleEnds[handleIndex], realExtent); // Expand span.
-
- var currDistSign = getSpanSign(handleEnds, handleIndex);
-
- if (minSpan != null && (currDistSign.sign !== originalDistSign.sign || currDistSign.span < minSpan)) {
- // If minSpan exists, 'cross' is forbidden.
- handleEnds[1 - handleIndex] = handleEnds[handleIndex] + originalDistSign.sign * minSpan;
- } // Shrink span.
-
-
- var currDistSign = getSpanSign(handleEnds, handleIndex);
-
- if (maxSpan != null && currDistSign.span > maxSpan) {
- handleEnds[1 - handleIndex] = handleEnds[handleIndex] + currDistSign.sign * maxSpan;
- }
-
- return handleEnds;
- }
-
- function getSpanSign(handleEnds, handleIndex) {
- var dist = handleEnds[handleIndex] - handleEnds[1 - handleIndex]; // If `handleEnds[0] === handleEnds[1]`, always believe that handleEnd[0]
- // is at left of handleEnds[1] for non-cross case.
-
- return {
- span: Math.abs(dist),
- sign: dist > 0 ? -1 : dist < 0 ? 1 : handleIndex ? -1 : 1
- };
- }
-
- function restrict(value, extend) {
- return Math.min(extend[1] != null ? extend[1] : Infinity, Math.max(extend[0] != null ? extend[0] : -Infinity, value));
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1606:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var env = __webpack_require__(1316);
-
- var modelUtil = __webpack_require__(1064);
-
- var helper = __webpack_require__(1919);
-
- var AxisProxy = __webpack_require__(2741);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var each = zrUtil.each;
- var eachAxisDim = helper.eachAxisDim;
- var DataZoomModel = echarts.extendComponentModel({
- type: 'dataZoom',
- dependencies: ['xAxis', 'yAxis', 'zAxis', 'radiusAxis', 'angleAxis', 'singleAxis', 'series'],
-
- /**
- * @protected
- */
- defaultOption: {
- zlevel: 0,
- z: 4,
- // Higher than normal component (z: 2).
- orient: null,
- // Default auto by axisIndex. Possible value: 'horizontal', 'vertical'.
- xAxisIndex: null,
- // Default the first horizontal category axis.
- yAxisIndex: null,
- // Default the first vertical category axis.
- filterMode: 'filter',
- // Possible values: 'filter' or 'empty' or 'weakFilter'.
- // 'filter': data items which are out of window will be removed. This option is
- // applicable when filtering outliers. For each data item, it will be
- // filtered if one of the relevant dimensions is out of the window.
- // 'weakFilter': data items which are out of window will be removed. This option
- // is applicable when filtering outliers. For each data item, it will be
- // filtered only if all of the relevant dimensions are out of the same
- // side of the window.
- // 'empty': data items which are out of window will be set to empty.
- // This option is applicable when user should not neglect
- // that there are some data items out of window.
- // 'none': Do not filter.
- // Taking line chart as an example, line will be broken in
- // the filtered points when filterModel is set to 'empty', but
- // be connected when set to 'filter'.
- throttle: null,
- // Dispatch action by the fixed rate, avoid frequency.
- // default 100. Do not throttle when use null/undefined.
- // If animation === true and animationDurationUpdate > 0,
- // default value is 100, otherwise 20.
- start: 0,
- // Start percent. 0 ~ 100
- end: 100,
- // End percent. 0 ~ 100
- startValue: null,
- // Start value. If startValue specified, start is ignored.
- endValue: null,
- // End value. If endValue specified, end is ignored.
- minSpan: null,
- // 0 ~ 100
- maxSpan: null,
- // 0 ~ 100
- minValueSpan: null,
- // The range of dataZoom can not be smaller than that.
- maxValueSpan: null,
- // The range of dataZoom can not be larger than that.
- rangeMode: null // Array, can be 'value' or 'percent'.
-
- },
-
- /**
- * @override
- */
- init: function (option, parentModel, ecModel) {
- /**
- * key like x_0, y_1
- * @private
- * @type {Object}
- */
- this._dataIntervalByAxis = {};
- /**
- * @private
- */
-
- this._dataInfo = {};
- /**
- * key like x_0, y_1
- * @private
- */
-
- this._axisProxies = {};
- /**
- * @readOnly
- */
-
- this.textStyleModel;
- /**
- * @private
- */
-
- this._autoThrottle = true;
- /**
- * It is `[rangeModeForMin, rangeModeForMax]`.
- * The optional values for `rangeMode`:
- * + `'value'` mode: the axis extent will always be determined by
- * `dataZoom.startValue` and `dataZoom.endValue`, despite
- * how data like and how `axis.min` and `axis.max` are.
- * + `'percent'` mode: `100` represents 100% of the `[dMin, dMax]`,
- * where `dMin` is `axis.min` if `axis.min` specified, otherwise `data.extent[0]`,
- * and `dMax` is `axis.max` if `axis.max` specified, otherwise `data.extent[1]`.
- * Axis extent will be determined by the result of the percent of `[dMin, dMax]`.
- *
- * For example, when users are using dynamic data (update data periodically via `setOption`),
- * if in `'value`' mode, the window will be kept in a fixed value range despite how
- * data are appended, while if in `'percent'` mode, whe window range will be changed alone with
- * the appended data (suppose `axis.min` and `axis.max` are not specified).
- *
- * @private
- */
-
- this._rangePropMode = ['percent', 'percent'];
- var inputRawOption = retrieveRawOption(option);
- /**
- * Suppose a "main process" start at the point that model prepared (that is,
- * model initialized or merged or method called in `action`).
- * We should keep the `main process` idempotent, that is, given a set of values
- * on `option`, we get the same result.
- *
- * But sometimes, values on `option` will be updated for providing users
- * a "final calculated value" (`dataZoomProcessor` will do that). Those value
- * should not be the base/input of the `main process`.
- *
- * So in that case we should save and keep the input of the `main process`
- * separately, called `settledOption`.
- *
- * For example, consider the case:
- * (Step_1) brush zoom the grid by `toolbox.dataZoom`,
- * where the original input `option.startValue`, `option.endValue` are earsed by
- * calculated value.
- * (Step)2) click the legend to hide and show a series,
- * where the new range is calculated by the earsed `startValue` and `endValue`,
- * which brings incorrect result.
- *
- * @readOnly
- */
-
- this.settledOption = inputRawOption;
- this.mergeDefaultAndTheme(option, ecModel);
- this.doInit(inputRawOption);
- },
-
- /**
- * @override
- */
- mergeOption: function (newOption) {
- var inputRawOption = retrieveRawOption(newOption); //FIX #2591
-
- zrUtil.merge(this.option, newOption, true);
- zrUtil.merge(this.settledOption, inputRawOption, true);
- this.doInit(inputRawOption);
- },
-
- /**
- * @protected
- */
- doInit: function (inputRawOption) {
- var thisOption = this.option; // Disable realtime view update if canvas is not supported.
-
- if (!env.canvasSupported) {
- thisOption.realtime = false;
- }
-
- this._setDefaultThrottle(inputRawOption);
-
- updateRangeUse(this, inputRawOption);
- var settledOption = this.settledOption;
- each([['start', 'startValue'], ['end', 'endValue']], function (names, index) {
- // start/end has higher priority over startValue/endValue if they
- // both set, but we should make chart.setOption({endValue: 1000})
- // effective, rather than chart.setOption({endValue: 1000, end: null}).
- if (this._rangePropMode[index] === 'value') {
- thisOption[names[0]] = settledOption[names[0]] = null;
- } // Otherwise do nothing and use the merge result.
-
- }, this);
- this.textStyleModel = this.getModel('textStyle');
-
- this._resetTarget();
-
- this._giveAxisProxies();
- },
-
- /**
- * @private
- */
- _giveAxisProxies: function () {
- var axisProxies = this._axisProxies;
- this.eachTargetAxis(function (dimNames, axisIndex, dataZoomModel, ecModel) {
- var axisModel = this.dependentModels[dimNames.axis][axisIndex]; // If exists, share axisProxy with other dataZoomModels.
-
- var axisProxy = axisModel.__dzAxisProxy || ( // Use the first dataZoomModel as the main model of axisProxy.
- axisModel.__dzAxisProxy = new AxisProxy(dimNames.name, axisIndex, this, ecModel)); // FIXME
- // dispose __dzAxisProxy
-
- axisProxies[dimNames.name + '_' + axisIndex] = axisProxy;
- }, this);
- },
-
- /**
- * @private
- */
- _resetTarget: function () {
- var thisOption = this.option;
-
- var autoMode = this._judgeAutoMode();
-
- eachAxisDim(function (dimNames) {
- var axisIndexName = dimNames.axisIndex;
- thisOption[axisIndexName] = modelUtil.normalizeToArray(thisOption[axisIndexName]);
- }, this);
-
- if (autoMode === 'axisIndex') {
- this._autoSetAxisIndex();
- } else if (autoMode === 'orient') {
- this._autoSetOrient();
- }
- },
-
- /**
- * @private
- */
- _judgeAutoMode: function () {
- // Auto set only works for setOption at the first time.
- // The following is user's reponsibility. So using merged
- // option is OK.
- var thisOption = this.option;
- var hasIndexSpecified = false;
- eachAxisDim(function (dimNames) {
- // When user set axisIndex as a empty array, we think that user specify axisIndex
- // but do not want use auto mode. Because empty array may be encountered when
- // some error occured.
- if (thisOption[dimNames.axisIndex] != null) {
- hasIndexSpecified = true;
- }
- }, this);
- var orient = thisOption.orient;
-
- if (orient == null && hasIndexSpecified) {
- return 'orient';
- } else if (!hasIndexSpecified) {
- if (orient == null) {
- thisOption.orient = 'horizontal';
- }
-
- return 'axisIndex';
- }
- },
-
- /**
- * @private
- */
- _autoSetAxisIndex: function () {
- var autoAxisIndex = true;
- var orient = this.get('orient', true);
- var thisOption = this.option;
- var dependentModels = this.dependentModels;
-
- if (autoAxisIndex) {
- // Find axis that parallel to dataZoom as default.
- var dimName = orient === 'vertical' ? 'y' : 'x';
-
- if (dependentModels[dimName + 'Axis'].length) {
- thisOption[dimName + 'AxisIndex'] = [0];
- autoAxisIndex = false;
- } else {
- each(dependentModels.singleAxis, function (singleAxisModel) {
- if (autoAxisIndex && singleAxisModel.get('orient', true) === orient) {
- thisOption.singleAxisIndex = [singleAxisModel.componentIndex];
- autoAxisIndex = false;
- }
- });
- }
- }
-
- if (autoAxisIndex) {
- // Find the first category axis as default. (consider polar)
- eachAxisDim(function (dimNames) {
- if (!autoAxisIndex) {
- return;
- }
-
- var axisIndices = [];
- var axisModels = this.dependentModels[dimNames.axis];
-
- if (axisModels.length && !axisIndices.length) {
- for (var i = 0, len = axisModels.length; i < len; i++) {
- if (axisModels[i].get('type') === 'category') {
- axisIndices.push(i);
- }
- }
- }
-
- thisOption[dimNames.axisIndex] = axisIndices;
-
- if (axisIndices.length) {
- autoAxisIndex = false;
- }
- }, this);
- }
-
- if (autoAxisIndex) {
- // FIXME
- // 这里是兼容ec2的写法(没指定xAxisIndex和yAxisIndex时把scatter和双数值轴折柱纳入dataZoom控制),
- // 但是实际是否需要Grid.js#getScaleByOption来判断(考虑time,log等axis type)?
- // If both dataZoom.xAxisIndex and dataZoom.yAxisIndex is not specified,
- // dataZoom component auto adopts series that reference to
- // both xAxis and yAxis which type is 'value'.
- this.ecModel.eachSeries(function (seriesModel) {
- if (this._isSeriesHasAllAxesTypeOf(seriesModel, 'value')) {
- eachAxisDim(function (dimNames) {
- var axisIndices = thisOption[dimNames.axisIndex];
- var axisIndex = seriesModel.get(dimNames.axisIndex);
- var axisId = seriesModel.get(dimNames.axisId);
- var axisModel = seriesModel.ecModel.queryComponents({
- mainType: dimNames.axis,
- index: axisIndex,
- id: axisId
- })[0];
- axisIndex = axisModel.componentIndex;
-
- if (zrUtil.indexOf(axisIndices, axisIndex) < 0) {
- axisIndices.push(axisIndex);
- }
- });
- }
- }, this);
- }
- },
-
- /**
- * @private
- */
- _autoSetOrient: function () {
- var dim; // Find the first axis
-
- this.eachTargetAxis(function (dimNames) {
- !dim && (dim = dimNames.name);
- }, this);
- this.option.orient = dim === 'y' ? 'vertical' : 'horizontal';
- },
-
- /**
- * @private
- */
- _isSeriesHasAllAxesTypeOf: function (seriesModel, axisType) {
- // FIXME
- // 需要series的xAxisIndex和yAxisIndex都首先自动设置上。
- // 例如series.type === scatter时。
- var is = true;
- eachAxisDim(function (dimNames) {
- var seriesAxisIndex = seriesModel.get(dimNames.axisIndex);
- var axisModel = this.dependentModels[dimNames.axis][seriesAxisIndex];
-
- if (!axisModel || axisModel.get('type') !== axisType) {
- is = false;
- }
- }, this);
- return is;
- },
-
- /**
- * @private
- */
- _setDefaultThrottle: function (inputRawOption) {
- // When first time user set throttle, auto throttle ends.
- if (inputRawOption.hasOwnProperty('throttle')) {
- this._autoThrottle = false;
- }
-
- if (this._autoThrottle) {
- var globalOption = this.ecModel.option;
- this.option.throttle = globalOption.animation && globalOption.animationDurationUpdate > 0 ? 100 : 20;
- }
- },
-
- /**
- * @public
- */
- getFirstTargetAxisModel: function () {
- var firstAxisModel;
- eachAxisDim(function (dimNames) {
- if (firstAxisModel == null) {
- var indices = this.get(dimNames.axisIndex);
-
- if (indices.length) {
- firstAxisModel = this.dependentModels[dimNames.axis][indices[0]];
- }
- }
- }, this);
- return firstAxisModel;
- },
-
- /**
- * @public
- * @param {Function} callback param: axisModel, dimNames, axisIndex, dataZoomModel, ecModel
- */
- eachTargetAxis: function (callback, context) {
- var ecModel = this.ecModel;
- eachAxisDim(function (dimNames) {
- each(this.get(dimNames.axisIndex), function (axisIndex) {
- callback.call(context, dimNames, axisIndex, this, ecModel);
- }, this);
- }, this);
- },
-
- /**
- * @param {string} dimName
- * @param {number} axisIndex
- * @return {module:echarts/component/dataZoom/AxisProxy} If not found, return null/undefined.
- */
- getAxisProxy: function (dimName, axisIndex) {
- return this._axisProxies[dimName + '_' + axisIndex];
- },
-
- /**
- * @param {string} dimName
- * @param {number} axisIndex
- * @return {module:echarts/model/Model} If not found, return null/undefined.
- */
- getAxisModel: function (dimName, axisIndex) {
- var axisProxy = this.getAxisProxy(dimName, axisIndex);
- return axisProxy && axisProxy.getAxisModel();
- },
-
- /**
- * If not specified, set to undefined.
- *
- * @public
- * @param {Object} opt
- * @param {number} [opt.start]
- * @param {number} [opt.end]
- * @param {number} [opt.startValue]
- * @param {number} [opt.endValue]
- */
- setRawRange: function (opt) {
- var thisOption = this.option;
- var settledOption = this.settledOption;
- each([['start', 'startValue'], ['end', 'endValue']], function (names) {
- // Consider the pair <start, startValue>:
- // If one has value and the other one is `null/undefined`, we both set them
- // to `settledOption`. This strategy enables the feature to clear the original
- // value in `settledOption` to `null/undefined`.
- // But if both of them are `null/undefined`, we do not set them to `settledOption`
- // and keep `settledOption` with the original value. This strategy enables users to
- // only set <end or endValue> but not set <start or startValue> when calling
- // `dispatchAction`.
- // The pair <end, endValue> is treated in the same way.
- if (opt[names[0]] != null || opt[names[1]] != null) {
- thisOption[names[0]] = settledOption[names[0]] = opt[names[0]];
- thisOption[names[1]] = settledOption[names[1]] = opt[names[1]];
- }
- }, this);
- updateRangeUse(this, opt);
- },
-
- /**
- * @public
- * @param {Object} opt
- * @param {number} [opt.start]
- * @param {number} [opt.end]
- * @param {number} [opt.startValue]
- * @param {number} [opt.endValue]
- */
- setCalculatedRange: function (opt) {
- var option = this.option;
- each(['start', 'startValue', 'end', 'endValue'], function (name) {
- option[name] = opt[name];
- });
- },
-
- /**
- * @public
- * @return {Array.<number>} [startPercent, endPercent]
- */
- getPercentRange: function () {
- var axisProxy = this.findRepresentativeAxisProxy();
-
- if (axisProxy) {
- return axisProxy.getDataPercentWindow();
- }
- },
-
- /**
- * @public
- * For example, chart.getModel().getComponent('dataZoom').getValueRange('y', 0);
- *
- * @param {string} [axisDimName]
- * @param {number} [axisIndex]
- * @return {Array.<number>} [startValue, endValue] value can only be '-' or finite number.
- */
- getValueRange: function (axisDimName, axisIndex) {
- if (axisDimName == null && axisIndex == null) {
- var axisProxy = this.findRepresentativeAxisProxy();
-
- if (axisProxy) {
- return axisProxy.getDataValueWindow();
- }
- } else {
- return this.getAxisProxy(axisDimName, axisIndex).getDataValueWindow();
- }
- },
-
- /**
- * @public
- * @param {module:echarts/model/Model} [axisModel] If axisModel given, find axisProxy
- * corresponding to the axisModel
- * @return {module:echarts/component/dataZoom/AxisProxy}
- */
- findRepresentativeAxisProxy: function (axisModel) {
- if (axisModel) {
- return axisModel.__dzAxisProxy;
- } // Find the first hosted axisProxy
-
-
- var axisProxies = this._axisProxies;
-
- for (var key in axisProxies) {
- if (axisProxies.hasOwnProperty(key) && axisProxies[key].hostedBy(this)) {
- return axisProxies[key];
- }
- } // If no hosted axis find not hosted axisProxy.
- // Consider this case: dataZoomModel1 and dataZoomModel2 control the same axis,
- // and the option.start or option.end settings are different. The percentRange
- // should follow axisProxy.
- // (We encounter this problem in toolbox data zoom.)
-
-
- for (var key in axisProxies) {
- if (axisProxies.hasOwnProperty(key) && !axisProxies[key].hostedBy(this)) {
- return axisProxies[key];
- }
- }
- },
-
- /**
- * @return {Array.<string>}
- */
- getRangePropMode: function () {
- return this._rangePropMode.slice();
- }
- });
- /**
- * Retrieve the those raw params from option, which will be cached separately.
- * becasue they will be overwritten by normalized/calculated values in the main
- * process.
- */
-
- function retrieveRawOption(option) {
- var ret = {};
- each(['start', 'end', 'startValue', 'endValue', 'throttle'], function (name) {
- option.hasOwnProperty(name) && (ret[name] = option[name]);
- });
- return ret;
- }
-
- function updateRangeUse(dataZoomModel, inputRawOption) {
- var rangePropMode = dataZoomModel._rangePropMode;
- var rangeModeInOption = dataZoomModel.get('rangeMode');
- each([['start', 'startValue'], ['end', 'endValue']], function (names, index) {
- var percentSpecified = inputRawOption[names[0]] != null;
- var valueSpecified = inputRawOption[names[1]] != null;
-
- if (percentSpecified && !valueSpecified) {
- rangePropMode[index] = 'percent';
- } else if (!percentSpecified && valueSpecified) {
- rangePropMode[index] = 'value';
- } else if (rangeModeInOption) {
- rangePropMode[index] = rangeModeInOption[index];
- } else if (percentSpecified) {
- // percentSpecified && valueSpecified
- rangePropMode[index] = 'percent';
- } // else remain its original setting.
-
- });
- }
-
- var _default = DataZoomModel;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1607:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var ComponentView = __webpack_require__(1786);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = ComponentView.extend({
- type: 'dataZoom',
- render: function (dataZoomModel, ecModel, api, payload) {
- this.dataZoomModel = dataZoomModel;
- this.ecModel = ecModel;
- this.api = api;
- },
-
- /**
- * Find the first target coordinate system.
- *
- * @protected
- * @return {Object} {
- * grid: [
- * {model: coord0, axisModels: [axis1, axis3], coordIndex: 1},
- * {model: coord1, axisModels: [axis0, axis2], coordIndex: 0},
- * ...
- * ], // cartesians must not be null/undefined.
- * polar: [
- * {model: coord0, axisModels: [axis4], coordIndex: 0},
- * ...
- * ], // polars must not be null/undefined.
- * singleAxis: [
- * {model: coord0, axisModels: [], coordIndex: 0}
- * ]
- */
- getTargetCoordInfo: function () {
- var dataZoomModel = this.dataZoomModel;
- var ecModel = this.ecModel;
- var coordSysLists = {};
- dataZoomModel.eachTargetAxis(function (dimNames, axisIndex) {
- var axisModel = ecModel.getComponent(dimNames.axis, axisIndex);
-
- if (axisModel) {
- var coordModel = axisModel.getCoordSysModel();
- coordModel && save(coordModel, axisModel, coordSysLists[coordModel.mainType] || (coordSysLists[coordModel.mainType] = []), coordModel.componentIndex);
- }
- }, this);
-
- function save(coordModel, axisModel, store, coordIndex) {
- var item;
-
- for (var i = 0; i < store.length; i++) {
- if (store[i].model === coordModel) {
- item = store[i];
- break;
- }
- }
-
- if (!item) {
- store.push(item = {
- model: coordModel,
- axisModels: [],
- coordIndex: coordIndex
- });
- }
-
- item.axisModels.push(axisModel);
- }
-
- return coordSysLists;
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1615:
- /***/ (function(module, exports, __webpack_require__) {
-
- //! moment.js locale configuration
-
- ;(function (global, factory) {
- true ? factory(__webpack_require__(70)) :
- typeof define === 'function' && define.amd ? define(['../moment'], factory) :
- factory(global.moment)
- }(this, (function (moment) { 'use strict';
-
-
- var zhCn = moment.defineLocale('zh-cn', {
- months : '一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月'.split('_'),
- monthsShort : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),
- weekdays : '星期日_星期一_星期二_星期三_星期四_星期五_星期六'.split('_'),
- weekdaysShort : '周日_周一_周二_周三_周四_周五_周六'.split('_'),
- weekdaysMin : '日_一_二_三_四_五_六'.split('_'),
- longDateFormat : {
- LT : 'HH:mm',
- LTS : 'HH:mm:ss',
- L : 'YYYY/MM/DD',
- LL : 'YYYY年M月D日',
- LLL : 'YYYY年M月D日Ah点mm分',
- LLLL : 'YYYY年M月D日ddddAh点mm分',
- l : 'YYYY/M/D',
- ll : 'YYYY年M月D日',
- lll : 'YYYY年M月D日 HH:mm',
- llll : 'YYYY年M月D日dddd HH:mm'
- },
- meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,
- meridiemHour: function (hour, meridiem) {
- if (hour === 12) {
- hour = 0;
- }
- if (meridiem === '凌晨' || meridiem === '早上' ||
- meridiem === '上午') {
- return hour;
- } else if (meridiem === '下午' || meridiem === '晚上') {
- return hour + 12;
- } else {
- // '中午'
- return hour >= 11 ? hour : hour + 12;
- }
- },
- meridiem : function (hour, minute, isLower) {
- var hm = hour * 100 + minute;
- if (hm < 600) {
- return '凌晨';
- } else if (hm < 900) {
- return '早上';
- } else if (hm < 1130) {
- return '上午';
- } else if (hm < 1230) {
- return '中午';
- } else if (hm < 1800) {
- return '下午';
- } else {
- return '晚上';
- }
- },
- calendar : {
- sameDay : '[今天]LT',
- nextDay : '[明天]LT',
- nextWeek : '[下]ddddLT',
- lastDay : '[昨天]LT',
- lastWeek : '[上]ddddLT',
- sameElse : 'L'
- },
- dayOfMonthOrdinalParse: /\d{1,2}(日|月|周)/,
- ordinal : function (number, period) {
- switch (period) {
- case 'd':
- case 'D':
- case 'DDD':
- return number + '日';
- case 'M':
- return number + '月';
- case 'w':
- case 'W':
- return number + '周';
- default:
- return number;
- }
- },
- relativeTime : {
- future : '%s内',
- past : '%s前',
- s : '几秒',
- ss : '%d 秒',
- m : '1 分钟',
- mm : '%d 分钟',
- h : '1 小时',
- hh : '%d 小时',
- d : '1 天',
- dd : '%d 天',
- M : '1 个月',
- MM : '%d 个月',
- y : '1 年',
- yy : '%d 年'
- },
- week : {
- // GB/T 7408-1994《数据元和交换格式·信息交换·日期和时间表示法》与ISO 8601:1988等效
- dow : 1, // Monday is the first day of the week.
- doy : 4 // The week that contains Jan 4th is the first week of the year.
- }
- });
-
- return zhCn;
-
- })));
-
-
- /***/ }),
-
- /***/ 1646:
- /***/ (function(module, exports, __webpack_require__) {
-
- exports = module.exports = __webpack_require__(299)(true);
- // imports
-
-
- // module
- exports.push([module.i, ".ant-checkbox-group>div .boardsList{padding:10px 0 20px!important}.ant-checkbox-group>div:first-child .boardsList{border-top:none}.boardsList .contentSection{-ms-flex:1 1;flex:1 1;margin-left:15px}.ant-select-selection--single,.ant-select-selection__rendered{height:40px;line-height:40px}.ant-input:focus+.ant-input-group-addon{background-color:#fff!important}.ant-input-group-addon{color:#666!important;font-size:12px;border:1px solid #d9d9d9!important;border-left:none!important}.courseForm .ant-form-item-label{margin-left:unset}.TopicDetailTable .topHead{background-color:#f5f5f5;height:56px;color:#666;padding:0 30px}.TopicDetailTable .bottomBody li span,.TopicDetailTable .topHead span{display:block;float:left;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;display:-webkit-flex;height:56px}.TopicDetailTable .bottomBody{padding:0 30px}.TopicDetailTable .bottomBody li{border-bottom:1px solid #eee;clear:both}.TopicDetailTable .bottomBody li:last-child{border-bottom:none}.maxnamewidth100,.maxnamewidth110{max-width:100px}.maxnamewidth100,.maxnamewidth110,.maxnamewidth200{overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;cursor:default}.maxnamewidth200{max-width:200px}.maxnamewidth120{max-width:120px}.maxnamewidth120,.maxnamewidth145{overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;cursor:default}.maxnamewidth145{max-width:145px}.ysyslxh{background:#fafafa}.z666{color:#666;font-size:14px}.z000{color:#000;font-size:16px}.pd30bt{padding:10px 30px 0}.bor-reds,.bor-reds input{border:1px solid red!important;border-radius:1px!important;border-top-left-radius:1px!important;border-top-right-radius:1px!important;border-bottom-right-radius:1px!important;border-bottom-left-radius:1px!important}.myslHeight{height:20px;min-height:20px}.maxnamewidth340{overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;cursor:default;width:340px;max-width:340px}", "", {"version":3,"sources":["/Users/jasder/work/trustie3.0/educoder/public/react/src/modules/courses/shixunHomework/style.css"],"names":[],"mappings":"AAAA,oCAEE,6BAAgC,CACjC,AACD,gDACE,eAAiB,CAClB,AACD,4BACE,aAAc,AACV,SAAU,AACd,gBAAkB,CACnB,AAGD,8DACE,YAAa,AACb,gBAAkB,CACnB,AAED,wCACE,+BAAiC,CAClC,AACD,uBACE,qBAAsB,AACtB,eAAgB,AAChB,mCAAoC,AACpC,0BAA4B,CAC7B,AAED,iCACE,iBAAmB,CACpB,AAGD,2BAA2B,yBAA0B,YAAa,WAAe,cAAgB,CAAC,AAClG,sEAAsE,cAAe,WAAY,qBAAsB,uBAAwB,sBAAuB,mBAAoB,qBAAsB,WAAa,CAAC,AAC9N,8BAA8B,cAAgB,CAAC,AAC/C,iCAAiC,6BAA8B,UAAY,CAAC,AAC5E,4CAA4C,kBAAoB,CAAC,AAUjE,kCACE,eAAiB,CAMlB,AAUD,mDAfE,gBAAgB,AAChB,0BAA0B,AACvB,uBAAuB,AAC1B,mBAAmB,AACnB,cAAgB,CAkBjB,AAPD,iBACE,eAAiB,CAMlB,AAUD,iBACI,eAAiB,CAMpB,AACD,kCANI,gBAAgB,AAChB,0BAA0B,AACvB,uBAAuB,AAC1B,mBAAmB,AACnB,cAAgB,CASnB,AAPD,iBACE,eAAiB,CAMlB,AACD,SACE,kBAAoB,CACrB,AAED,MACI,WAAY,AACZ,cAAe,CAClB,AACD,MACI,WAAY,AACZ,cAAe,CAClB,AAED,QACI,mBAA4B,CAC/B,AASD,0BACE,+BAAmC,AACnC,4BAA6B,AAC7B,qCAAsC,AACtC,sCAAuC,AACvC,yCAA0C,AAC1C,uCAAyC,CAC1C,AAED,YACE,YAAa,AACb,eAAiB,CAClB,AAED,iBAEE,gBAAiB,AACjB,0BAA2B,AACxB,uBAAwB,AAC3B,mBAAoB,AACpB,eAAgB,AAChB,YAAa,AACb,eAAiB,CAClB","file":"style.css","sourcesContent":[".ant-checkbox-group > div .boardsList{\n /* border-top: 1px solid #ebebeb; */\n padding:10px 0px 20px!important;\n}\n.ant-checkbox-group > div:first-child .boardsList{\n border-top: none;\n}\n.boardsList .contentSection {\n -ms-flex: 1 1;\n flex: 1 1;\n margin-left: 15px;\n}\n\n\n.ant-select-selection--single,.ant-select-selection__rendered{\n height: 40px;\n line-height: 40px;\n}\n\n.ant-input:focus + .ant-input-group-addon{\n background-color: #fff!important;\n}\n.ant-input-group-addon{\n color: #666!important;\n font-size: 12px;\n border: 1px solid #d9d9d9!important;\n border-left: none!important;\n}\n\n.courseForm .ant-form-item-label{\n margin-left: unset;\n}\n\n/* 毕设选题列表 */\n.TopicDetailTable .topHead{background-color: #F5F5F5;height: 56px;color: #666666;padding:0px 30px}\n.TopicDetailTable .topHead span,.TopicDetailTable .bottomBody li span{display: block;float: left;-ms-flex-pack: center;justify-content: center;-ms-flex-align: center;align-items: center;display: -webkit-flex;height: 56px;}\n.TopicDetailTable .bottomBody{padding:0px 30px}\n.TopicDetailTable .bottomBody li{border-bottom: 1px solid #eee;clear: both;}\n.TopicDetailTable .bottomBody li:last-child{border-bottom: none;}\n\n.maxnamewidth100{\n max-width: 100px;\n overflow:hidden;\n -o-text-overflow:ellipsis;\n text-overflow:ellipsis;\n white-space:nowrap;\n cursor: default;\n}\n.maxnamewidth110{\n max-width: 100px;\n overflow:hidden;\n -o-text-overflow:ellipsis;\n text-overflow:ellipsis;\n white-space:nowrap;\n cursor: default;\n}\n\n.maxnamewidth120 {\n max-width: 120px;\n overflow: hidden;\n -o-text-overflow: ellipsis;\n text-overflow: ellipsis;\n white-space: nowrap;\n cursor: default;\n}\n.maxnamewidth200{\n max-width: 200px;\n overflow:hidden;\n -o-text-overflow:ellipsis;\n text-overflow:ellipsis;\n white-space:nowrap;\n cursor: default;\n}\n.maxnamewidth145{\n max-width: 145px;\n overflow:hidden;\n -o-text-overflow:ellipsis;\n text-overflow:ellipsis;\n white-space:nowrap;\n cursor: default;\n}\n\n.maxnamewidth120{\n max-width: 120px;\n overflow:hidden;\n -o-text-overflow:ellipsis;\n text-overflow:ellipsis;\n white-space:nowrap;\n cursor: default;\n}\n.maxnamewidth145{\n max-width: 145px;\n overflow:hidden;\n -o-text-overflow:ellipsis;\n text-overflow:ellipsis;\n white-space:nowrap;\n cursor: default;\n}\n.ysyslxh{\n background: #fafafa;\n}\n\n.z666{\n color: #666;\n font-size:14px;\n}\n.z000{\n color: #000;\n font-size:16px;\n}\n\n.pd30bt{\n padding: 10px 30px 0px 30px;\n}\n.bor-reds{\n border:1px solid #FF0000!important;\n border-radius: 1px!important;\n border-top-left-radius: 1px!important;\n border-top-right-radius: 1px!important;\n border-bottom-right-radius: 1px!important;\n border-bottom-left-radius: 1px!important;\n}\n.bor-reds input {\n border:1px solid #FF0000!important;\n border-radius: 1px!important;\n border-top-left-radius: 1px!important;\n border-top-right-radius: 1px!important;\n border-bottom-right-radius: 1px!important;\n border-bottom-left-radius: 1px!important;\n}\n\n.myslHeight{\n height: 20px;\n min-height: 20px;\n}\n\n.maxnamewidth340 {\n max-width: 340px;\n overflow: hidden;\n -o-text-overflow: ellipsis;\n text-overflow: ellipsis;\n white-space: nowrap;\n cursor: default;\n width: 340px;\n max-width: 340px;\n}\n"],"sourceRoot":""}]);
-
- // exports
-
-
- /***/ }),
-
- /***/ 1655:
- /***/ (function(module, exports, __webpack_require__) {
-
- var _config = __webpack_require__(1781);
-
- var debugMode = _config.debugMode;
-
- var logError = function () {};
-
- if (debugMode === 1) {
- logError = console.error;
- }
-
- var _default = logError;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1656:
- /***/ (function(module, exports, __webpack_require__) {
-
- var zrUtil = __webpack_require__(864);
-
- var Style = __webpack_require__(1895);
-
- var Element = __webpack_require__(2259);
-
- var RectText = __webpack_require__(2265);
-
- /**
- * Base class of all displayable graphic objects
- * @module zrender/graphic/Displayable
- */
-
- /**
- * @alias module:zrender/graphic/Displayable
- * @extends module:zrender/Element
- * @extends module:zrender/graphic/mixin/RectText
- */
- function Displayable(opts) {
- opts = opts || {};
- Element.call(this, opts); // Extend properties
-
- for (var name in opts) {
- if (opts.hasOwnProperty(name) && name !== 'style') {
- this[name] = opts[name];
- }
- }
- /**
- * @type {module:zrender/graphic/Style}
- */
-
-
- this.style = new Style(opts.style, this);
- this._rect = null; // Shapes for cascade clipping.
- // Can only be `null`/`undefined` or an non-empty array, MUST NOT be an empty array.
- // because it is easy to only using null to check whether clipPaths changed.
-
- this.__clipPaths = null; // FIXME Stateful must be mixined after style is setted
- // Stateful.call(this, opts);
- }
-
- Displayable.prototype = {
- constructor: Displayable,
- type: 'displayable',
-
- /**
- * Dirty flag. From which painter will determine if this displayable object needs brush.
- * @name module:zrender/graphic/Displayable#__dirty
- * @type {boolean}
- */
- __dirty: true,
-
- /**
- * Whether the displayable object is visible. when it is true, the displayable object
- * is not drawn, but the mouse event can still trigger the object.
- * @name module:/zrender/graphic/Displayable#invisible
- * @type {boolean}
- * @default false
- */
- invisible: false,
-
- /**
- * @name module:/zrender/graphic/Displayable#z
- * @type {number}
- * @default 0
- */
- z: 0,
-
- /**
- * @name module:/zrender/graphic/Displayable#z
- * @type {number}
- * @default 0
- */
- z2: 0,
-
- /**
- * The z level determines the displayable object can be drawn in which layer canvas.
- * @name module:/zrender/graphic/Displayable#zlevel
- * @type {number}
- * @default 0
- */
- zlevel: 0,
-
- /**
- * Whether it can be dragged.
- * @name module:/zrender/graphic/Displayable#draggable
- * @type {boolean}
- * @default false
- */
- draggable: false,
-
- /**
- * Whether is it dragging.
- * @name module:/zrender/graphic/Displayable#draggable
- * @type {boolean}
- * @default false
- */
- dragging: false,
-
- /**
- * Whether to respond to mouse events.
- * @name module:/zrender/graphic/Displayable#silent
- * @type {boolean}
- * @default false
- */
- silent: false,
-
- /**
- * If enable culling
- * @type {boolean}
- * @default false
- */
- culling: false,
-
- /**
- * Mouse cursor when hovered
- * @name module:/zrender/graphic/Displayable#cursor
- * @type {string}
- */
- cursor: 'pointer',
-
- /**
- * If hover area is bounding rect
- * @name module:/zrender/graphic/Displayable#rectHover
- * @type {string}
- */
- rectHover: false,
-
- /**
- * Render the element progressively when the value >= 0,
- * usefull for large data.
- * @type {boolean}
- */
- progressive: false,
-
- /**
- * @type {boolean}
- */
- incremental: false,
-
- /**
- * Scale ratio for global scale.
- * @type {boolean}
- */
- globalScaleRatio: 1,
- beforeBrush: function (ctx) {},
- afterBrush: function (ctx) {},
-
- /**
- * Graphic drawing method.
- * @param {CanvasRenderingContext2D} ctx
- */
- // Interface
- brush: function (ctx, prevEl) {},
-
- /**
- * Get the minimum bounding box.
- * @return {module:zrender/core/BoundingRect}
- */
- // Interface
- getBoundingRect: function () {},
-
- /**
- * If displayable element contain coord x, y
- * @param {number} x
- * @param {number} y
- * @return {boolean}
- */
- contain: function (x, y) {
- return this.rectContain(x, y);
- },
-
- /**
- * @param {Function} cb
- * @param {} context
- */
- traverse: function (cb, context) {
- cb.call(context, this);
- },
-
- /**
- * If bounding rect of element contain coord x, y
- * @param {number} x
- * @param {number} y
- * @return {boolean}
- */
- rectContain: function (x, y) {
- var coord = this.transformCoordToLocal(x, y);
- var rect = this.getBoundingRect();
- return rect.contain(coord[0], coord[1]);
- },
-
- /**
- * Mark displayable element dirty and refresh next frame
- */
- dirty: function () {
- this.__dirty = this.__dirtyText = true;
- this._rect = null;
- this.__zr && this.__zr.refresh();
- },
-
- /**
- * If displayable object binded any event
- * @return {boolean}
- */
- // TODO, events bound by bind
- // isSilent: function () {
- // return !(
- // this.hoverable || this.draggable
- // || this.onmousemove || this.onmouseover || this.onmouseout
- // || this.onmousedown || this.onmouseup || this.onclick
- // || this.ondragenter || this.ondragover || this.ondragleave
- // || this.ondrop
- // );
- // },
-
- /**
- * Alias for animate('style')
- * @param {boolean} loop
- */
- animateStyle: function (loop) {
- return this.animate('style', loop);
- },
- attrKV: function (key, value) {
- if (key !== 'style') {
- Element.prototype.attrKV.call(this, key, value);
- } else {
- this.style.set(value);
- }
- },
-
- /**
- * @param {Object|string} key
- * @param {*} value
- */
- setStyle: function (key, value) {
- this.style.set(key, value);
- this.dirty(false);
- return this;
- },
-
- /**
- * Use given style object
- * @param {Object} obj
- */
- useStyle: function (obj) {
- this.style = new Style(obj, this);
- this.dirty(false);
- return this;
- },
-
- /**
- * The string value of `textPosition` needs to be calculated to a real postion.
- * For example, `'inside'` is calculated to `[rect.width/2, rect.height/2]`
- * by default. See `contain/text.js#calculateTextPosition` for more details.
- * But some coutom shapes like "pin", "flag" have center that is not exactly
- * `[width/2, height/2]`. So we provide this hook to customize the calculation
- * for those shapes. It will be called if the `style.textPosition` is a string.
- * @param {Obejct} [out] Prepared out object. If not provided, this method should
- * be responsible for creating one.
- * @param {module:zrender/graphic/Style} style
- * @param {Object} rect {x, y, width, height}
- * @return {Obejct} out The same as the input out.
- * {
- * x: number. mandatory.
- * y: number. mandatory.
- * textAlign: string. optional. use style.textAlign by default.
- * textVerticalAlign: string. optional. use style.textVerticalAlign by default.
- * }
- */
- calculateTextPosition: null
- };
- zrUtil.inherits(Displayable, Element);
- zrUtil.mixin(Displayable, RectText); // zrUtil.mixin(Displayable, Stateful);
-
- var _default = Displayable;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1657:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var _clazz = __webpack_require__(1456);
-
- var parseClassType = _clazz.parseClassType;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var base = 0;
- /**
- * @public
- * @param {string} type
- * @return {string}
- */
-
- function getUID(type) {
- // Considering the case of crossing js context,
- // use Math.random to make id as unique as possible.
- return [type || '', base++, Math.random().toFixed(5)].join('_');
- }
- /**
- * @inner
- */
-
-
- function enableSubTypeDefaulter(entity) {
- var subTypeDefaulters = {};
-
- entity.registerSubTypeDefaulter = function (componentType, defaulter) {
- componentType = parseClassType(componentType);
- subTypeDefaulters[componentType.main] = defaulter;
- };
-
- entity.determineSubType = function (componentType, option) {
- var type = option.type;
-
- if (!type) {
- var componentTypeMain = parseClassType(componentType).main;
-
- if (entity.hasSubTypes(componentType) && subTypeDefaulters[componentTypeMain]) {
- type = subTypeDefaulters[componentTypeMain](option);
- }
- }
-
- return type;
- };
-
- return entity;
- }
- /**
- * Topological travel on Activity Network (Activity On Vertices).
- * Dependencies is defined in Model.prototype.dependencies, like ['xAxis', 'yAxis'].
- *
- * If 'xAxis' or 'yAxis' is absent in componentTypeList, just ignore it in topology.
- *
- * If there is circle dependencey, Error will be thrown.
- *
- */
-
-
- function enableTopologicalTravel(entity, dependencyGetter) {
- /**
- * @public
- * @param {Array.<string>} targetNameList Target Component type list.
- * Can be ['aa', 'bb', 'aa.xx']
- * @param {Array.<string>} fullNameList By which we can build dependency graph.
- * @param {Function} callback Params: componentType, dependencies.
- * @param {Object} context Scope of callback.
- */
- entity.topologicalTravel = function (targetNameList, fullNameList, callback, context) {
- if (!targetNameList.length) {
- return;
- }
-
- var result = makeDepndencyGraph(fullNameList);
- var graph = result.graph;
- var stack = result.noEntryList;
- var targetNameSet = {};
- zrUtil.each(targetNameList, function (name) {
- targetNameSet[name] = true;
- });
-
- while (stack.length) {
- var currComponentType = stack.pop();
- var currVertex = graph[currComponentType];
- var isInTargetNameSet = !!targetNameSet[currComponentType];
-
- if (isInTargetNameSet) {
- callback.call(context, currComponentType, currVertex.originalDeps.slice());
- delete targetNameSet[currComponentType];
- }
-
- zrUtil.each(currVertex.successor, isInTargetNameSet ? removeEdgeAndAdd : removeEdge);
- }
-
- zrUtil.each(targetNameSet, function () {
- throw new Error('Circle dependency may exists');
- });
-
- function removeEdge(succComponentType) {
- graph[succComponentType].entryCount--;
-
- if (graph[succComponentType].entryCount === 0) {
- stack.push(succComponentType);
- }
- } // Consider this case: legend depends on series, and we call
- // chart.setOption({series: [...]}), where only series is in option.
- // If we do not have 'removeEdgeAndAdd', legendModel.mergeOption will
- // not be called, but only sereis.mergeOption is called. Thus legend
- // have no chance to update its local record about series (like which
- // name of series is available in legend).
-
-
- function removeEdgeAndAdd(succComponentType) {
- targetNameSet[succComponentType] = true;
- removeEdge(succComponentType);
- }
- };
- /**
- * DepndencyGraph: {Object}
- * key: conponentType,
- * value: {
- * successor: [conponentTypes...],
- * originalDeps: [conponentTypes...],
- * entryCount: {number}
- * }
- */
-
-
- function makeDepndencyGraph(fullNameList) {
- var graph = {};
- var noEntryList = [];
- zrUtil.each(fullNameList, function (name) {
- var thisItem = createDependencyGraphItem(graph, name);
- var originalDeps = thisItem.originalDeps = dependencyGetter(name);
- var availableDeps = getAvailableDependencies(originalDeps, fullNameList);
- thisItem.entryCount = availableDeps.length;
-
- if (thisItem.entryCount === 0) {
- noEntryList.push(name);
- }
-
- zrUtil.each(availableDeps, function (dependentName) {
- if (zrUtil.indexOf(thisItem.predecessor, dependentName) < 0) {
- thisItem.predecessor.push(dependentName);
- }
-
- var thatItem = createDependencyGraphItem(graph, dependentName);
-
- if (zrUtil.indexOf(thatItem.successor, dependentName) < 0) {
- thatItem.successor.push(name);
- }
- });
- });
- return {
- graph: graph,
- noEntryList: noEntryList
- };
- }
-
- function createDependencyGraphItem(graph, name) {
- if (!graph[name]) {
- graph[name] = {
- predecessor: [],
- successor: []
- };
- }
-
- return graph[name];
- }
-
- function getAvailableDependencies(originalDeps, fullNameList) {
- var availableDeps = [];
- zrUtil.each(originalDeps, function (dep) {
- zrUtil.indexOf(fullNameList, dep) >= 0 && availableDeps.push(dep);
- });
- return availableDeps;
- }
- }
-
- exports.getUID = getUID;
- exports.enableSubTypeDefaulter = enableSubTypeDefaulter;
- exports.enableTopologicalTravel = enableTopologicalTravel;
-
- /***/ }),
-
- /***/ 1658:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _util = __webpack_require__(864);
-
- var createHashMap = _util.createHashMap;
- var isTypedArray = _util.isTypedArray;
-
- var _clazz = __webpack_require__(1456);
-
- var enableClassCheck = _clazz.enableClassCheck;
-
- var _sourceType = __webpack_require__(1659);
-
- var SOURCE_FORMAT_ORIGINAL = _sourceType.SOURCE_FORMAT_ORIGINAL;
- var SERIES_LAYOUT_BY_COLUMN = _sourceType.SERIES_LAYOUT_BY_COLUMN;
- var SOURCE_FORMAT_UNKNOWN = _sourceType.SOURCE_FORMAT_UNKNOWN;
- var SOURCE_FORMAT_TYPED_ARRAY = _sourceType.SOURCE_FORMAT_TYPED_ARRAY;
- var SOURCE_FORMAT_KEYED_COLUMNS = _sourceType.SOURCE_FORMAT_KEYED_COLUMNS;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * [sourceFormat]
- *
- * + "original":
- * This format is only used in series.data, where
- * itemStyle can be specified in data item.
- *
- * + "arrayRows":
- * [
- * ['product', 'score', 'amount'],
- * ['Matcha Latte', 89.3, 95.8],
- * ['Milk Tea', 92.1, 89.4],
- * ['Cheese Cocoa', 94.4, 91.2],
- * ['Walnut Brownie', 85.4, 76.9]
- * ]
- *
- * + "objectRows":
- * [
- * {product: 'Matcha Latte', score: 89.3, amount: 95.8},
- * {product: 'Milk Tea', score: 92.1, amount: 89.4},
- * {product: 'Cheese Cocoa', score: 94.4, amount: 91.2},
- * {product: 'Walnut Brownie', score: 85.4, amount: 76.9}
- * ]
- *
- * + "keyedColumns":
- * {
- * 'product': ['Matcha Latte', 'Milk Tea', 'Cheese Cocoa', 'Walnut Brownie'],
- * 'count': [823, 235, 1042, 988],
- * 'score': [95.8, 81.4, 91.2, 76.9]
- * }
- *
- * + "typedArray"
- *
- * + "unknown"
- */
-
- /**
- * @constructor
- * @param {Object} fields
- * @param {string} fields.sourceFormat
- * @param {Array|Object} fields.fromDataset
- * @param {Array|Object} [fields.data]
- * @param {string} [seriesLayoutBy='column']
- * @param {Array.<Object|string>} [dimensionsDefine]
- * @param {Objet|HashMap} [encodeDefine]
- * @param {number} [startIndex=0]
- * @param {number} [dimensionsDetectCount]
- */
- function Source(fields) {
- /**
- * @type {boolean}
- */
- this.fromDataset = fields.fromDataset;
- /**
- * Not null/undefined.
- * @type {Array|Object}
- */
-
- this.data = fields.data || (fields.sourceFormat === SOURCE_FORMAT_KEYED_COLUMNS ? {} : []);
- /**
- * See also "detectSourceFormat".
- * Not null/undefined.
- * @type {string}
- */
-
- this.sourceFormat = fields.sourceFormat || SOURCE_FORMAT_UNKNOWN;
- /**
- * 'row' or 'column'
- * Not null/undefined.
- * @type {string} seriesLayoutBy
- */
-
- this.seriesLayoutBy = fields.seriesLayoutBy || SERIES_LAYOUT_BY_COLUMN;
- /**
- * dimensions definition in option.
- * can be null/undefined.
- * @type {Array.<Object|string>}
- */
-
- this.dimensionsDefine = fields.dimensionsDefine;
- /**
- * encode definition in option.
- * can be null/undefined.
- * @type {Objet|HashMap}
- */
-
- this.encodeDefine = fields.encodeDefine && createHashMap(fields.encodeDefine);
- /**
- * Not null/undefined, uint.
- * @type {number}
- */
-
- this.startIndex = fields.startIndex || 0;
- /**
- * Can be null/undefined (when unknown), uint.
- * @type {number}
- */
-
- this.dimensionsDetectCount = fields.dimensionsDetectCount;
- }
- /**
- * Wrap original series data for some compatibility cases.
- */
-
-
- Source.seriesDataToSource = function (data) {
- return new Source({
- data: data,
- sourceFormat: isTypedArray(data) ? SOURCE_FORMAT_TYPED_ARRAY : SOURCE_FORMAT_ORIGINAL,
- fromDataset: false
- });
- };
-
- enableClassCheck(Source);
- var _default = Source;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1659:
- /***/ (function(module, exports) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // Avoid typo.
- var SOURCE_FORMAT_ORIGINAL = 'original';
- var SOURCE_FORMAT_ARRAY_ROWS = 'arrayRows';
- var SOURCE_FORMAT_OBJECT_ROWS = 'objectRows';
- var SOURCE_FORMAT_KEYED_COLUMNS = 'keyedColumns';
- var SOURCE_FORMAT_UNKNOWN = 'unknown'; // ??? CHANGE A NAME
-
- var SOURCE_FORMAT_TYPED_ARRAY = 'typedArray';
- var SERIES_LAYOUT_BY_COLUMN = 'column';
- var SERIES_LAYOUT_BY_ROW = 'row';
- exports.SOURCE_FORMAT_ORIGINAL = SOURCE_FORMAT_ORIGINAL;
- exports.SOURCE_FORMAT_ARRAY_ROWS = SOURCE_FORMAT_ARRAY_ROWS;
- exports.SOURCE_FORMAT_OBJECT_ROWS = SOURCE_FORMAT_OBJECT_ROWS;
- exports.SOURCE_FORMAT_KEYED_COLUMNS = SOURCE_FORMAT_KEYED_COLUMNS;
- exports.SOURCE_FORMAT_UNKNOWN = SOURCE_FORMAT_UNKNOWN;
- exports.SOURCE_FORMAT_TYPED_ARRAY = SOURCE_FORMAT_TYPED_ARRAY;
- exports.SERIES_LAYOUT_BY_COLUMN = SERIES_LAYOUT_BY_COLUMN;
- exports.SERIES_LAYOUT_BY_ROW = SERIES_LAYOUT_BY_ROW;
-
- /***/ }),
-
- /***/ 1660:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _util = __webpack_require__(864);
-
- var each = _util.each;
- var createHashMap = _util.createHashMap;
- var assert = _util.assert;
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var OTHER_DIMENSIONS = createHashMap(['tooltip', 'label', 'itemName', 'itemId', 'seriesName']);
-
- function summarizeDimensions(data) {
- var summary = {};
- var encode = summary.encode = {};
- var notExtraCoordDimMap = createHashMap();
- var defaultedLabel = [];
- var defaultedTooltip = []; // See the comment of `List.js#userOutput`.
-
- var userOutput = summary.userOutput = {
- dimensionNames: data.dimensions.slice(),
- encode: {}
- };
- each(data.dimensions, function (dimName) {
- var dimItem = data.getDimensionInfo(dimName);
- var coordDim = dimItem.coordDim;
-
- if (coordDim) {
- var coordDimIndex = dimItem.coordDimIndex;
- getOrCreateEncodeArr(encode, coordDim)[coordDimIndex] = dimName;
-
- if (!dimItem.isExtraCoord) {
- notExtraCoordDimMap.set(coordDim, 1); // Use the last coord dim (and label friendly) as default label,
- // because when dataset is used, it is hard to guess which dimension
- // can be value dimension. If both show x, y on label is not look good,
- // and conventionally y axis is focused more.
-
- if (mayLabelDimType(dimItem.type)) {
- defaultedLabel[0] = dimName;
- } // User output encode do not contain generated coords.
- // And it only has index. User can use index to retrieve value from the raw item array.
-
-
- getOrCreateEncodeArr(userOutput.encode, coordDim)[coordDimIndex] = dimItem.index;
- }
-
- if (dimItem.defaultTooltip) {
- defaultedTooltip.push(dimName);
- }
- }
-
- OTHER_DIMENSIONS.each(function (v, otherDim) {
- var encodeArr = getOrCreateEncodeArr(encode, otherDim);
- var dimIndex = dimItem.otherDims[otherDim];
-
- if (dimIndex != null && dimIndex !== false) {
- encodeArr[dimIndex] = dimItem.name;
- }
- });
- });
- var dataDimsOnCoord = [];
- var encodeFirstDimNotExtra = {};
- notExtraCoordDimMap.each(function (v, coordDim) {
- var dimArr = encode[coordDim]; // ??? FIXME extra coord should not be set in dataDimsOnCoord.
- // But should fix the case that radar axes: simplify the logic
- // of `completeDimension`, remove `extraPrefix`.
-
- encodeFirstDimNotExtra[coordDim] = dimArr[0]; // Not necessary to remove duplicate, because a data
- // dim canot on more than one coordDim.
-
- dataDimsOnCoord = dataDimsOnCoord.concat(dimArr);
- });
- summary.dataDimsOnCoord = dataDimsOnCoord;
- summary.encodeFirstDimNotExtra = encodeFirstDimNotExtra;
- var encodeLabel = encode.label; // FIXME `encode.label` is not recommanded, because formatter can not be set
- // in this way. Use label.formatter instead. May be remove this approach someday.
-
- if (encodeLabel && encodeLabel.length) {
- defaultedLabel = encodeLabel.slice();
- }
-
- var encodeTooltip = encode.tooltip;
-
- if (encodeTooltip && encodeTooltip.length) {
- defaultedTooltip = encodeTooltip.slice();
- } else if (!defaultedTooltip.length) {
- defaultedTooltip = defaultedLabel.slice();
- }
-
- encode.defaultedLabel = defaultedLabel;
- encode.defaultedTooltip = defaultedTooltip;
- return summary;
- }
-
- function getOrCreateEncodeArr(encode, dim) {
- if (!encode.hasOwnProperty(dim)) {
- encode[dim] = [];
- }
-
- return encode[dim];
- }
-
- function getDimensionTypeByAxis(axisType) {
- return axisType === 'category' ? 'ordinal' : axisType === 'time' ? 'time' : 'float';
- }
-
- function mayLabelDimType(dimType) {
- // In most cases, ordinal and time do not suitable for label.
- // Ordinal info can be displayed on axis. Time is too long.
- return !(dimType === 'ordinal' || dimType === 'time');
- } // function findTheLastDimMayLabel(data) {
- // // Get last value dim
- // var dimensions = data.dimensions.slice();
- // var valueType;
- // var valueDim;
- // while (dimensions.length && (
- // valueDim = dimensions.pop(),
- // valueType = data.getDimensionInfo(valueDim).type,
- // valueType === 'ordinal' || valueType === 'time'
- // )) {} // jshint ignore:line
- // return valueDim;
- // }
-
-
- exports.OTHER_DIMENSIONS = OTHER_DIMENSIONS;
- exports.summarizeDimensions = summarizeDimensions;
- exports.getDimensionTypeByAxis = getDimensionTypeByAxis;
-
- /***/ }),
-
- /***/ 1661:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var graphic = __webpack_require__(906);
-
- var SymbolClz = __webpack_require__(1790);
-
- var _util = __webpack_require__(864);
-
- var isObject = _util.isObject;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @module echarts/chart/helper/SymbolDraw
- */
-
- /**
- * @constructor
- * @alias module:echarts/chart/helper/SymbolDraw
- * @param {module:zrender/graphic/Group} [symbolCtor]
- */
- function SymbolDraw(symbolCtor) {
- this.group = new graphic.Group();
- this._symbolCtor = symbolCtor || SymbolClz;
- }
-
- var symbolDrawProto = SymbolDraw.prototype;
-
- function symbolNeedsDraw(data, point, idx, opt) {
- return point && !isNaN(point[0]) && !isNaN(point[1]) && !(opt.isIgnore && opt.isIgnore(idx)) // We do not set clipShape on group, because it will cut part of
- // the symbol element shape. We use the same clip shape here as
- // the line clip.
- && !(opt.clipShape && !opt.clipShape.contain(point[0], point[1])) && data.getItemVisual(idx, 'symbol') !== 'none';
- }
- /**
- * Update symbols draw by new data
- * @param {module:echarts/data/List} data
- * @param {Object} [opt] Or isIgnore
- * @param {Function} [opt.isIgnore]
- * @param {Object} [opt.clipShape]
- */
-
-
- symbolDrawProto.updateData = function (data, opt) {
- opt = normalizeUpdateOpt(opt);
- var group = this.group;
- var seriesModel = data.hostModel;
- var oldData = this._data;
- var SymbolCtor = this._symbolCtor;
- var seriesScope = makeSeriesScope(data); // There is no oldLineData only when first rendering or switching from
- // stream mode to normal mode, where previous elements should be removed.
-
- if (!oldData) {
- group.removeAll();
- }
-
- data.diff(oldData).add(function (newIdx) {
- var point = data.getItemLayout(newIdx);
-
- if (symbolNeedsDraw(data, point, newIdx, opt)) {
- var symbolEl = new SymbolCtor(data, newIdx, seriesScope);
- symbolEl.attr('position', point);
- data.setItemGraphicEl(newIdx, symbolEl);
- group.add(symbolEl);
- }
- }).update(function (newIdx, oldIdx) {
- var symbolEl = oldData.getItemGraphicEl(oldIdx);
- var point = data.getItemLayout(newIdx);
-
- if (!symbolNeedsDraw(data, point, newIdx, opt)) {
- group.remove(symbolEl);
- return;
- }
-
- if (!symbolEl) {
- symbolEl = new SymbolCtor(data, newIdx);
- symbolEl.attr('position', point);
- } else {
- symbolEl.updateData(data, newIdx, seriesScope);
- graphic.updateProps(symbolEl, {
- position: point
- }, seriesModel);
- } // Add back
-
-
- group.add(symbolEl);
- data.setItemGraphicEl(newIdx, symbolEl);
- }).remove(function (oldIdx) {
- var el = oldData.getItemGraphicEl(oldIdx);
- el && el.fadeOut(function () {
- group.remove(el);
- });
- }).execute();
- this._data = data;
- };
-
- symbolDrawProto.isPersistent = function () {
- return true;
- };
-
- symbolDrawProto.updateLayout = function () {
- var data = this._data;
-
- if (data) {
- // Not use animation
- data.eachItemGraphicEl(function (el, idx) {
- var point = data.getItemLayout(idx);
- el.attr('position', point);
- });
- }
- };
-
- symbolDrawProto.incrementalPrepareUpdate = function (data) {
- this._seriesScope = makeSeriesScope(data);
- this._data = null;
- this.group.removeAll();
- };
- /**
- * Update symbols draw by new data
- * @param {module:echarts/data/List} data
- * @param {Object} [opt] Or isIgnore
- * @param {Function} [opt.isIgnore]
- * @param {Object} [opt.clipShape]
- */
-
-
- symbolDrawProto.incrementalUpdate = function (taskParams, data, opt) {
- opt = normalizeUpdateOpt(opt);
-
- function updateIncrementalAndHover(el) {
- if (!el.isGroup) {
- el.incremental = el.useHoverLayer = true;
- }
- }
-
- for (var idx = taskParams.start; idx < taskParams.end; idx++) {
- var point = data.getItemLayout(idx);
-
- if (symbolNeedsDraw(data, point, idx, opt)) {
- var el = new this._symbolCtor(data, idx, this._seriesScope);
- el.traverse(updateIncrementalAndHover);
- el.attr('position', point);
- this.group.add(el);
- data.setItemGraphicEl(idx, el);
- }
- }
- };
-
- function normalizeUpdateOpt(opt) {
- if (opt != null && !isObject(opt)) {
- opt = {
- isIgnore: opt
- };
- }
-
- return opt || {};
- }
-
- symbolDrawProto.remove = function (enableAnimation) {
- var group = this.group;
- var data = this._data; // Incremental model do not have this._data.
-
- if (data && enableAnimation) {
- data.eachItemGraphicEl(function (el) {
- el.fadeOut(function () {
- group.remove(el);
- });
- });
- } else {
- group.removeAll();
- }
- };
-
- function makeSeriesScope(data) {
- var seriesModel = data.hostModel;
- return {
- itemStyle: seriesModel.getModel('itemStyle').getItemStyle(['color']),
- hoverItemStyle: seriesModel.getModel('emphasis.itemStyle').getItemStyle(),
- symbolRotate: seriesModel.get('symbolRotate'),
- symbolOffset: seriesModel.get('symbolOffset'),
- hoverAnimation: seriesModel.get('hoverAnimation'),
- labelModel: seriesModel.getModel('label'),
- hoverLabelModel: seriesModel.getModel('emphasis.label'),
- cursorStyle: seriesModel.get('cursor')
- };
- }
-
- var _default = SymbolDraw;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1662:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var graphic = __webpack_require__(906);
-
- var _number = __webpack_require__(985);
-
- var round = _number.round;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function createGridClipPath(cartesian, hasAnimation, seriesModel) {
- var rect = cartesian.getArea();
- var isHorizontal = cartesian.getBaseAxis().isHorizontal();
- var x = rect.x;
- var y = rect.y;
- var width = rect.width;
- var height = rect.height;
- var lineWidth = seriesModel.get('lineStyle.width') || 2; // Expand the clip path a bit to avoid the border is clipped and looks thinner
-
- x -= lineWidth / 2;
- y -= lineWidth / 2;
- width += lineWidth;
- height += lineWidth;
- var clipPath = new graphic.Rect({
- shape: {
- x: x,
- y: y,
- width: width,
- height: height
- }
- });
-
- if (hasAnimation) {
- clipPath.shape[isHorizontal ? 'width' : 'height'] = 0;
- graphic.initProps(clipPath, {
- shape: {
- width: width,
- height: height
- }
- }, seriesModel);
- }
-
- return clipPath;
- }
-
- function createPolarClipPath(polar, hasAnimation, seriesModel) {
- var sectorArea = polar.getArea(); // Avoid float number rounding error for symbol on the edge of axis extent.
-
- var clipPath = new graphic.Sector({
- shape: {
- cx: round(polar.cx, 1),
- cy: round(polar.cy, 1),
- r0: round(sectorArea.r0, 1),
- r: round(sectorArea.r, 1),
- startAngle: sectorArea.startAngle,
- endAngle: sectorArea.endAngle,
- clockwise: sectorArea.clockwise
- }
- });
-
- if (hasAnimation) {
- clipPath.shape.endAngle = sectorArea.startAngle;
- graphic.initProps(clipPath, {
- shape: {
- endAngle: sectorArea.endAngle
- }
- }, seriesModel);
- }
-
- return clipPath;
- }
-
- function createClipPath(coordSys, hasAnimation, seriesModel) {
- if (!coordSys) {
- return null;
- } else if (coordSys.type === 'polar') {
- return createPolarClipPath(coordSys, hasAnimation, seriesModel);
- } else if (coordSys.type === 'cartesian2d') {
- return createGridClipPath(coordSys, hasAnimation, seriesModel);
- }
-
- return null;
- }
-
- exports.createGridClipPath = createGridClipPath;
- exports.createPolarClipPath = createPolarClipPath;
- exports.createClipPath = createClipPath;
-
- /***/ }),
-
- /***/ 1663:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _util = __webpack_require__(864);
-
- var map = _util.map;
-
- var createRenderPlanner = __webpack_require__(1601);
-
- var _dataStackHelper = __webpack_require__(1440);
-
- var isDimensionStacked = _dataStackHelper.isDimensionStacked;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /* global Float32Array */
- function _default(seriesType) {
- return {
- seriesType: seriesType,
- plan: createRenderPlanner(),
- reset: function (seriesModel) {
- var data = seriesModel.getData();
- var coordSys = seriesModel.coordinateSystem;
- var pipelineContext = seriesModel.pipelineContext;
- var isLargeRender = pipelineContext.large;
-
- if (!coordSys) {
- return;
- }
-
- var dims = map(coordSys.dimensions, function (dim) {
- return data.mapDimension(dim);
- }).slice(0, 2);
- var dimLen = dims.length;
- var stackResultDim = data.getCalculationInfo('stackResultDimension');
-
- if (isDimensionStacked(data, dims[0]
- /*, dims[1]*/
- )) {
- dims[0] = stackResultDim;
- }
-
- if (isDimensionStacked(data, dims[1]
- /*, dims[0]*/
- )) {
- dims[1] = stackResultDim;
- }
-
- function progress(params, data) {
- var segCount = params.end - params.start;
- var points = isLargeRender && new Float32Array(segCount * dimLen);
-
- for (var i = params.start, offset = 0, tmpIn = [], tmpOut = []; i < params.end; i++) {
- var point;
-
- if (dimLen === 1) {
- var x = data.get(dims[0], i);
- point = !isNaN(x) && coordSys.dataToPoint(x, null, tmpOut);
- } else {
- var x = tmpIn[0] = data.get(dims[0], i);
- var y = tmpIn[1] = data.get(dims[1], i); // Also {Array.<number>}, not undefined to avoid if...else... statement
-
- point = !isNaN(x) && !isNaN(y) && coordSys.dataToPoint(tmpIn, null, tmpOut);
- }
-
- if (isLargeRender) {
- points[offset++] = point ? point[0] : NaN;
- points[offset++] = point ? point[1] : NaN;
- } else {
- data.setItemLayout(i, point && point.slice() || [NaN, NaN]);
- }
- }
-
- isLargeRender && data.setLayout('symbolPoints', points);
- }
-
- return dimLen && {
- progress: progress
- };
- }
- };
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1664:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var graphic = __webpack_require__(906);
-
- __webpack_require__(1905);
-
- __webpack_require__(2563);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // Grid view
- echarts.extendComponentView({
- type: 'grid',
- render: function (gridModel, ecModel) {
- this.group.removeAll();
-
- if (gridModel.get('show')) {
- this.group.add(new graphic.Rect({
- shape: gridModel.coordinateSystem.getRect(),
- style: zrUtil.defaults({
- fill: gridModel.get('backgroundColor')
- }, gridModel.getItemStyle()),
- silent: true,
- z2: -1
- }));
- }
- }
- });
- echarts.registerPreprocessor(function (option) {
- // Only create grid when need
- if (option.xAxis && option.yAxis && !option.grid) {
- option.grid = {};
- }
- });
-
- /***/ }),
-
- /***/ 1665:
- /***/ (function(module, exports) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * LegendVisualProvider is an bridge that pick encoded color from data and
- * provide to the legend component.
- * @param {Function} getDataWithEncodedVisual Function to get data after filtered. It stores all the encoding info
- * @param {Function} getRawData Function to get raw data before filtered.
- */
- function LegendVisualProvider(getDataWithEncodedVisual, getRawData) {
- this.getAllNames = function () {
- var rawData = getRawData(); // We find the name from the raw data. In case it's filtered by the legend component.
- // Normally, the name can be found in rawData, but can't be found in filtered data will display as gray.
-
- return rawData.mapArray(rawData.getName);
- };
-
- this.containName = function (name) {
- var rawData = getRawData();
- return rawData.indexOfName(name) >= 0;
- };
-
- this.indexOfName = function (name) {
- // Only get data when necessary.
- // Because LegendVisualProvider constructor may be new in the stage that data is not prepared yet.
- // Invoking Series#getData immediately will throw an error.
- var dataWithEncodedVisual = getDataWithEncodedVisual();
- return dataWithEncodedVisual.indexOfName(name);
- };
-
- this.getItemVisual = function (dataIndex, key) {
- // Get encoded visual properties from final filtered data.
- var dataWithEncodedVisual = getDataWithEncodedVisual();
- return dataWithEncodedVisual.getItemVisual(dataIndex, key);
- };
- }
-
- var _default = LegendVisualProvider;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1666:
- /***/ (function(module, exports) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function _default(seriesType) {
- return {
- seriesType: seriesType,
- reset: function (seriesModel, ecModel) {
- var legendModels = ecModel.findComponents({
- mainType: 'legend'
- });
-
- if (!legendModels || !legendModels.length) {
- return;
- }
-
- var data = seriesModel.getData();
- data.filterSelf(function (idx) {
- var name = data.getName(idx); // If in any legend component the status is not selected.
-
- for (var i = 0; i < legendModels.length; i++) {
- if (!legendModels[i].isSelected(name)) {
- return false;
- }
- }
-
- return true;
- });
- }
- };
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1667:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var Eventful = __webpack_require__(1516);
-
- var eventTool = __webpack_require__(1437);
-
- var interactionMutex = __webpack_require__(2301);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @alias module:echarts/component/helper/RoamController
- * @constructor
- * @mixin {module:zrender/mixin/Eventful}
- *
- * @param {module:zrender/zrender~ZRender} zr
- */
- function RoamController(zr) {
- /**
- * @type {Function}
- */
- this.pointerChecker;
- /**
- * @type {module:zrender}
- */
-
- this._zr = zr;
- /**
- * @type {Object}
- */
-
- this._opt = {}; // Avoid two roamController bind the same handler
-
- var bind = zrUtil.bind;
- var mousedownHandler = bind(mousedown, this);
- var mousemoveHandler = bind(mousemove, this);
- var mouseupHandler = bind(mouseup, this);
- var mousewheelHandler = bind(mousewheel, this);
- var pinchHandler = bind(pinch, this);
- Eventful.call(this);
- /**
- * @param {Function} pointerChecker
- * input: x, y
- * output: boolean
- */
-
- this.setPointerChecker = function (pointerChecker) {
- this.pointerChecker = pointerChecker;
- };
- /**
- * Notice: only enable needed types. For example, if 'zoom'
- * is not needed, 'zoom' should not be enabled, otherwise
- * default mousewheel behaviour (scroll page) will be disabled.
- *
- * @param {boolean|string} [controlType=true] Specify the control type,
- * which can be null/undefined or true/false
- * or 'pan/move' or 'zoom'/'scale'
- * @param {Object} [opt]
- * @param {Object} [opt.zoomOnMouseWheel=true] The value can be: true / false / 'shift' / 'ctrl' / 'alt'.
- * @param {Object} [opt.moveOnMouseMove=true] The value can be: true / false / 'shift' / 'ctrl' / 'alt'.
- * @param {Object} [opt.moveOnMouseWheel=false] The value can be: true / false / 'shift' / 'ctrl' / 'alt'.
- * @param {Object} [opt.preventDefaultMouseMove=true] When pan.
- */
-
-
- this.enable = function (controlType, opt) {
- // Disable previous first
- this.disable();
- this._opt = zrUtil.defaults(zrUtil.clone(opt) || {}, {
- zoomOnMouseWheel: true,
- moveOnMouseMove: true,
- // By default, wheel do not trigger move.
- moveOnMouseWheel: false,
- preventDefaultMouseMove: true
- });
-
- if (controlType == null) {
- controlType = true;
- }
-
- if (controlType === true || controlType === 'move' || controlType === 'pan') {
- zr.on('mousedown', mousedownHandler);
- zr.on('mousemove', mousemoveHandler);
- zr.on('mouseup', mouseupHandler);
- }
-
- if (controlType === true || controlType === 'scale' || controlType === 'zoom') {
- zr.on('mousewheel', mousewheelHandler);
- zr.on('pinch', pinchHandler);
- }
- };
-
- this.disable = function () {
- zr.off('mousedown', mousedownHandler);
- zr.off('mousemove', mousemoveHandler);
- zr.off('mouseup', mouseupHandler);
- zr.off('mousewheel', mousewheelHandler);
- zr.off('pinch', pinchHandler);
- };
-
- this.dispose = this.disable;
-
- this.isDragging = function () {
- return this._dragging;
- };
-
- this.isPinching = function () {
- return this._pinching;
- };
- }
-
- zrUtil.mixin(RoamController, Eventful);
-
- function mousedown(e) {
- if (eventTool.isMiddleOrRightButtonOnMouseUpDown(e) || e.target && e.target.draggable) {
- return;
- }
-
- var x = e.offsetX;
- var y = e.offsetY; // Only check on mosedown, but not mousemove.
- // Mouse can be out of target when mouse moving.
-
- if (this.pointerChecker && this.pointerChecker(e, x, y)) {
- this._x = x;
- this._y = y;
- this._dragging = true;
- }
- }
-
- function mousemove(e) {
- if (!this._dragging || !isAvailableBehavior('moveOnMouseMove', e, this._opt) || e.gestureEvent === 'pinch' || interactionMutex.isTaken(this._zr, 'globalPan')) {
- return;
- }
-
- var x = e.offsetX;
- var y = e.offsetY;
- var oldX = this._x;
- var oldY = this._y;
- var dx = x - oldX;
- var dy = y - oldY;
- this._x = x;
- this._y = y;
- this._opt.preventDefaultMouseMove && eventTool.stop(e.event);
- trigger(this, 'pan', 'moveOnMouseMove', e, {
- dx: dx,
- dy: dy,
- oldX: oldX,
- oldY: oldY,
- newX: x,
- newY: y
- });
- }
-
- function mouseup(e) {
- if (!eventTool.isMiddleOrRightButtonOnMouseUpDown(e)) {
- this._dragging = false;
- }
- }
-
- function mousewheel(e) {
- var shouldZoom = isAvailableBehavior('zoomOnMouseWheel', e, this._opt);
- var shouldMove = isAvailableBehavior('moveOnMouseWheel', e, this._opt);
- var wheelDelta = e.wheelDelta;
- var absWheelDeltaDelta = Math.abs(wheelDelta);
- var originX = e.offsetX;
- var originY = e.offsetY; // wheelDelta maybe -0 in chrome mac.
-
- if (wheelDelta === 0 || !shouldZoom && !shouldMove) {
- return;
- } // If both `shouldZoom` and `shouldMove` is true, trigger
- // their event both, and the final behavior is determined
- // by event listener themselves.
-
-
- if (shouldZoom) {
- // Convenience:
- // Mac and VM Windows on Mac: scroll up: zoom out.
- // Windows: scroll up: zoom in.
- // FIXME: Should do more test in different environment.
- // wheelDelta is too complicated in difference nvironment
- // (https://developer.mozilla.org/en-US/docs/Web/Events/mousewheel),
- // although it has been normallized by zrender.
- // wheelDelta of mouse wheel is bigger than touch pad.
- var factor = absWheelDeltaDelta > 3 ? 1.4 : absWheelDeltaDelta > 1 ? 1.2 : 1.1;
- var scale = wheelDelta > 0 ? factor : 1 / factor;
- checkPointerAndTrigger(this, 'zoom', 'zoomOnMouseWheel', e, {
- scale: scale,
- originX: originX,
- originY: originY
- });
- }
-
- if (shouldMove) {
- // FIXME: Should do more test in different environment.
- var absDelta = Math.abs(wheelDelta); // wheelDelta of mouse wheel is bigger than touch pad.
-
- var scrollDelta = (wheelDelta > 0 ? 1 : -1) * (absDelta > 3 ? 0.4 : absDelta > 1 ? 0.15 : 0.05);
- checkPointerAndTrigger(this, 'scrollMove', 'moveOnMouseWheel', e, {
- scrollDelta: scrollDelta,
- originX: originX,
- originY: originY
- });
- }
- }
-
- function pinch(e) {
- if (interactionMutex.isTaken(this._zr, 'globalPan')) {
- return;
- }
-
- var scale = e.pinchScale > 1 ? 1.1 : 1 / 1.1;
- checkPointerAndTrigger(this, 'zoom', null, e, {
- scale: scale,
- originX: e.pinchX,
- originY: e.pinchY
- });
- }
-
- function checkPointerAndTrigger(controller, eventName, behaviorToCheck, e, contollerEvent) {
- if (controller.pointerChecker && controller.pointerChecker(e, contollerEvent.originX, contollerEvent.originY)) {
- // When mouse is out of roamController rect,
- // default befavoius should not be be disabled, otherwise
- // page sliding is disabled, contrary to expectation.
- eventTool.stop(e.event);
- trigger(controller, eventName, behaviorToCheck, e, contollerEvent);
- }
- }
-
- function trigger(controller, eventName, behaviorToCheck, e, contollerEvent) {
- // Also provide behavior checker for event listener, for some case that
- // multiple components share one listener.
- contollerEvent.isAvailableBehavior = zrUtil.bind(isAvailableBehavior, null, behaviorToCheck, e);
- controller.trigger(eventName, contollerEvent);
- } // settings: {
- // zoomOnMouseWheel
- // moveOnMouseMove
- // moveOnMouseWheel
- // }
- // The value can be: true / false / 'shift' / 'ctrl' / 'alt'.
-
-
- function isAvailableBehavior(behaviorToCheck, e, settings) {
- var setting = settings[behaviorToCheck];
- return !behaviorToCheck || setting && (!zrUtil.isString(setting) || e.event[setting + 'Key']);
- }
-
- var _default = RoamController;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1668:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var axisPointerModelHelper = __webpack_require__(1792);
-
- var axisTrigger = __webpack_require__(2692);
-
- __webpack_require__(2693);
-
- __webpack_require__(2694);
-
- __webpack_require__(2320);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // CartesianAxisPointer is not supposed to be required here. But consider
- // echarts.simple.js and online build tooltip, which only require gridSimple,
- // CartesianAxisPointer should be able to required somewhere.
- echarts.registerPreprocessor(function (option) {
- // Always has a global axisPointerModel for default setting.
- if (option) {
- (!option.axisPointer || option.axisPointer.length === 0) && (option.axisPointer = {});
- var link = option.axisPointer.link; // Normalize to array to avoid object mergin. But if link
- // is not set, remain null/undefined, otherwise it will
- // override existent link setting.
-
- if (link && !zrUtil.isArray(link)) {
- option.axisPointer.link = [link];
- }
- }
- }); // This process should proformed after coordinate systems created
- // and series data processed. So put it on statistic processing stage.
-
- echarts.registerProcessor(echarts.PRIORITY.PROCESSOR.STATISTIC, function (ecModel, api) {
- // Build axisPointerModel, mergin tooltip.axisPointer model for each axis.
- // allAxesInfo should be updated when setOption performed.
- ecModel.getComponent('axisPointer').coordSysAxesInfo = axisPointerModelHelper.collect(ecModel, api);
- }); // Broadcast to all views.
-
- echarts.registerAction({
- type: 'updateAxisPointer',
- event: 'updateAxisPointer',
- update: ':updateAxisPointer'
- }, axisTrigger);
-
- /***/ }),
-
- /***/ 1780:
- /***/ (function(module, exports, __webpack_require__) {
-
- var guid = __webpack_require__(2258);
-
- var env = __webpack_require__(1316);
-
- var zrUtil = __webpack_require__(864);
-
- var Handler = __webpack_require__(2508);
-
- var Storage = __webpack_require__(2512);
-
- var Painter = __webpack_require__(2516);
-
- var Animation = __webpack_require__(2518);
-
- var HandlerProxy = __webpack_require__(2519);
-
- /*!
- * ZRender, a high performance 2d drawing library.
- *
- * Copyright (c) 2013, Baidu Inc.
- * All rights reserved.
- *
- * LICENSE
- * https://github.com/ecomfe/zrender/blob/master/LICENSE.txt
- */
- var useVML = !env.canvasSupported;
- var painterCtors = {
- canvas: Painter
- };
- var instances = {}; // ZRender实例map索引
-
- /**
- * @type {string}
- */
-
- var version = '4.2.0';
- /**
- * Initializing a zrender instance
- * @param {HTMLElement} dom
- * @param {Object} [opts]
- * @param {string} [opts.renderer='canvas'] 'canvas' or 'svg'
- * @param {number} [opts.devicePixelRatio]
- * @param {number|string} [opts.width] Can be 'auto' (the same as null/undefined)
- * @param {number|string} [opts.height] Can be 'auto' (the same as null/undefined)
- * @return {module:zrender/ZRender}
- */
-
- function init(dom, opts) {
- var zr = new ZRender(guid(), dom, opts);
- instances[zr.id] = zr;
- return zr;
- }
- /**
- * Dispose zrender instance
- * @param {module:zrender/ZRender} zr
- */
-
-
- function dispose(zr) {
- if (zr) {
- zr.dispose();
- } else {
- for (var key in instances) {
- if (instances.hasOwnProperty(key)) {
- instances[key].dispose();
- }
- }
-
- instances = {};
- }
-
- return this;
- }
- /**
- * Get zrender instance by id
- * @param {string} id zrender instance id
- * @return {module:zrender/ZRender}
- */
-
-
- function getInstance(id) {
- return instances[id];
- }
-
- function registerPainter(name, Ctor) {
- painterCtors[name] = Ctor;
- }
-
- function delInstance(id) {
- delete instances[id];
- }
- /**
- * @module zrender/ZRender
- */
-
- /**
- * @constructor
- * @alias module:zrender/ZRender
- * @param {string} id
- * @param {HTMLElement} dom
- * @param {Object} opts
- * @param {string} [opts.renderer='canvas'] 'canvas' or 'svg'
- * @param {number} [opts.devicePixelRatio]
- * @param {number} [opts.width] Can be 'auto' (the same as null/undefined)
- * @param {number} [opts.height] Can be 'auto' (the same as null/undefined)
- */
-
-
- var ZRender = function (id, dom, opts) {
- opts = opts || {};
- /**
- * @type {HTMLDomElement}
- */
-
- this.dom = dom;
- /**
- * @type {string}
- */
-
- this.id = id;
- var self = this;
- var storage = new Storage();
- var rendererType = opts.renderer; // TODO WebGL
-
- if (useVML) {
- if (!painterCtors.vml) {
- throw new Error('You need to require \'zrender/vml/vml\' to support IE8');
- }
-
- rendererType = 'vml';
- } else if (!rendererType || !painterCtors[rendererType]) {
- rendererType = 'canvas';
- }
-
- var painter = new painterCtors[rendererType](dom, storage, opts, id);
- this.storage = storage;
- this.painter = painter;
- var handerProxy = !env.node && !env.worker ? new HandlerProxy(painter.getViewportRoot(), painter.root) : null;
- this.handler = new Handler(storage, painter, handerProxy, painter.root);
- /**
- * @type {module:zrender/animation/Animation}
- */
-
- this.animation = new Animation({
- stage: {
- update: zrUtil.bind(this.flush, this)
- }
- });
- this.animation.start();
- /**
- * @type {boolean}
- * @private
- */
-
- this._needsRefresh; // 修改 storage.delFromStorage, 每次删除元素之前删除动画
- // FIXME 有点ugly
-
- var oldDelFromStorage = storage.delFromStorage;
- var oldAddToStorage = storage.addToStorage;
-
- storage.delFromStorage = function (el) {
- oldDelFromStorage.call(storage, el);
- el && el.removeSelfFromZr(self);
- };
-
- storage.addToStorage = function (el) {
- oldAddToStorage.call(storage, el);
- el.addSelfToZr(self);
- };
- };
-
- ZRender.prototype = {
- constructor: ZRender,
-
- /**
- * 获取实例唯一标识
- * @return {string}
- */
- getId: function () {
- return this.id;
- },
-
- /**
- * 添加元素
- * @param {module:zrender/Element} el
- */
- add: function (el) {
- this.storage.addRoot(el);
- this._needsRefresh = true;
- },
-
- /**
- * 删除元素
- * @param {module:zrender/Element} el
- */
- remove: function (el) {
- this.storage.delRoot(el);
- this._needsRefresh = true;
- },
-
- /**
- * Change configuration of layer
- * @param {string} zLevel
- * @param {Object} config
- * @param {string} [config.clearColor=0] Clear color
- * @param {string} [config.motionBlur=false] If enable motion blur
- * @param {number} [config.lastFrameAlpha=0.7] Motion blur factor. Larger value cause longer trailer
- */
- configLayer: function (zLevel, config) {
- if (this.painter.configLayer) {
- this.painter.configLayer(zLevel, config);
- }
-
- this._needsRefresh = true;
- },
-
- /**
- * Set background color
- * @param {string} backgroundColor
- */
- setBackgroundColor: function (backgroundColor) {
- if (this.painter.setBackgroundColor) {
- this.painter.setBackgroundColor(backgroundColor);
- }
-
- this._needsRefresh = true;
- },
-
- /**
- * Repaint the canvas immediately
- */
- refreshImmediately: function () {
- // var start = new Date();
- // Clear needsRefresh ahead to avoid something wrong happens in refresh
- // Or it will cause zrender refreshes again and again.
- this._needsRefresh = this._needsRefreshHover = false;
- this.painter.refresh(); // Avoid trigger zr.refresh in Element#beforeUpdate hook
-
- this._needsRefresh = this._needsRefreshHover = false; // var end = new Date();
- // var log = document.getElementById('log');
- // if (log) {
- // log.innerHTML = log.innerHTML + '<br>' + (end - start);
- // }
- },
-
- /**
- * Mark and repaint the canvas in the next frame of browser
- */
- refresh: function () {
- this._needsRefresh = true;
- },
-
- /**
- * Perform all refresh
- */
- flush: function () {
- var triggerRendered;
-
- if (this._needsRefresh) {
- triggerRendered = true;
- this.refreshImmediately();
- }
-
- if (this._needsRefreshHover) {
- triggerRendered = true;
- this.refreshHoverImmediately();
- }
-
- triggerRendered && this.trigger('rendered');
- },
-
- /**
- * Add element to hover layer
- * @param {module:zrender/Element} el
- * @param {Object} style
- */
- addHover: function (el, style) {
- if (this.painter.addHover) {
- var elMirror = this.painter.addHover(el, style);
- this.refreshHover();
- return elMirror;
- }
- },
-
- /**
- * Add element from hover layer
- * @param {module:zrender/Element} el
- */
- removeHover: function (el) {
- if (this.painter.removeHover) {
- this.painter.removeHover(el);
- this.refreshHover();
- }
- },
-
- /**
- * Clear all hover elements in hover layer
- * @param {module:zrender/Element} el
- */
- clearHover: function () {
- if (this.painter.clearHover) {
- this.painter.clearHover();
- this.refreshHover();
- }
- },
-
- /**
- * Refresh hover in next frame
- */
- refreshHover: function () {
- this._needsRefreshHover = true;
- },
-
- /**
- * Refresh hover immediately
- */
- refreshHoverImmediately: function () {
- this._needsRefreshHover = false;
- this.painter.refreshHover && this.painter.refreshHover();
- },
-
- /**
- * Resize the canvas.
- * Should be invoked when container size is changed
- * @param {Object} [opts]
- * @param {number|string} [opts.width] Can be 'auto' (the same as null/undefined)
- * @param {number|string} [opts.height] Can be 'auto' (the same as null/undefined)
- */
- resize: function (opts) {
- opts = opts || {};
- this.painter.resize(opts.width, opts.height);
- this.handler.resize();
- },
-
- /**
- * Stop and clear all animation immediately
- */
- clearAnimation: function () {
- this.animation.clear();
- },
-
- /**
- * Get container width
- */
- getWidth: function () {
- return this.painter.getWidth();
- },
-
- /**
- * Get container height
- */
- getHeight: function () {
- return this.painter.getHeight();
- },
-
- /**
- * Export the canvas as Base64 URL
- * @param {string} type
- * @param {string} [backgroundColor='#fff']
- * @return {string} Base64 URL
- */
- // toDataURL: function(type, backgroundColor) {
- // return this.painter.getRenderedCanvas({
- // backgroundColor: backgroundColor
- // }).toDataURL(type);
- // },
-
- /**
- * Converting a path to image.
- * It has much better performance of drawing image rather than drawing a vector path.
- * @param {module:zrender/graphic/Path} e
- * @param {number} width
- * @param {number} height
- */
- pathToImage: function (e, dpr) {
- return this.painter.pathToImage(e, dpr);
- },
-
- /**
- * Set default cursor
- * @param {string} [cursorStyle='default'] 例如 crosshair
- */
- setCursorStyle: function (cursorStyle) {
- this.handler.setCursorStyle(cursorStyle);
- },
-
- /**
- * Find hovered element
- * @param {number} x
- * @param {number} y
- * @return {Object} {target, topTarget}
- */
- findHover: function (x, y) {
- return this.handler.findHover(x, y);
- },
-
- /**
- * Bind event
- *
- * @param {string} eventName Event name
- * @param {Function} eventHandler Handler function
- * @param {Object} [context] Context object
- */
- on: function (eventName, eventHandler, context) {
- this.handler.on(eventName, eventHandler, context);
- },
-
- /**
- * Unbind event
- * @param {string} eventName Event name
- * @param {Function} [eventHandler] Handler function
- */
- off: function (eventName, eventHandler) {
- this.handler.off(eventName, eventHandler);
- },
-
- /**
- * Trigger event manually
- *
- * @param {string} eventName Event name
- * @param {event=} event Event object
- */
- trigger: function (eventName, event) {
- this.handler.trigger(eventName, event);
- },
-
- /**
- * Clear all objects and the canvas.
- */
- clear: function () {
- this.storage.delRoot();
- this.painter.clear();
- },
-
- /**
- * Dispose self.
- */
- dispose: function () {
- this.animation.stop();
- this.clear();
- this.storage.dispose();
- this.painter.dispose();
- this.handler.dispose();
- this.animation = this.storage = this.painter = this.handler = null;
- delInstance(this.id);
- }
- };
- exports.version = version;
- exports.init = init;
- exports.dispose = dispose;
- exports.getInstance = getInstance;
- exports.registerPainter = registerPainter;
-
- /***/ }),
-
- /***/ 1781:
- /***/ (function(module, exports) {
-
- var dpr = 1; // If in browser environment
-
- if (typeof window !== 'undefined') {
- dpr = Math.max(window.devicePixelRatio || 1, 1);
- }
- /**
- * config默认配置项
- * @exports zrender/config
- * @author Kener (@Kener-林峰, kener.linfeng@gmail.com)
- */
-
- /**
- * Debug log mode:
- * 0: Do nothing, for release.
- * 1: console.error, for debug.
- */
-
-
- var debugMode = 0; // retina 屏幕优化
-
- var devicePixelRatio = dpr;
- exports.debugMode = debugMode;
- exports.devicePixelRatio = devicePixelRatio;
-
- /***/ }),
-
- /***/ 1782:
- /***/ (function(module, exports) {
-
- var ContextCachedBy = {
- NONE: 0,
- STYLE_BIND: 1,
- PLAIN_TEXT: 2
- }; // Avoid confused with 0/false.
-
- var WILL_BE_RESTORED = 9;
- exports.ContextCachedBy = ContextCachedBy;
- exports.WILL_BE_RESTORED = WILL_BE_RESTORED;
-
- /***/ }),
-
- /***/ 1783:
- /***/ (function(module, exports, __webpack_require__) {
-
- var _util = __webpack_require__(864);
-
- var retrieve2 = _util.retrieve2;
- var retrieve3 = _util.retrieve3;
- var each = _util.each;
- var normalizeCssArray = _util.normalizeCssArray;
- var isString = _util.isString;
- var isObject = _util.isObject;
-
- var textContain = __webpack_require__(1402);
-
- var roundRectHelper = __webpack_require__(2266);
-
- var imageHelper = __webpack_require__(1896);
-
- var fixShadow = __webpack_require__(2262);
-
- var _constant = __webpack_require__(1782);
-
- var ContextCachedBy = _constant.ContextCachedBy;
- var WILL_BE_RESTORED = _constant.WILL_BE_RESTORED;
- var DEFAULT_FONT = textContain.DEFAULT_FONT; // TODO: Have not support 'start', 'end' yet.
-
- var VALID_TEXT_ALIGN = {
- left: 1,
- right: 1,
- center: 1
- };
- var VALID_TEXT_VERTICAL_ALIGN = {
- top: 1,
- bottom: 1,
- middle: 1
- }; // Different from `STYLE_COMMON_PROPS` of `graphic/Style`,
- // the default value of shadowColor is `'transparent'`.
-
- var SHADOW_STYLE_COMMON_PROPS = [['textShadowBlur', 'shadowBlur', 0], ['textShadowOffsetX', 'shadowOffsetX', 0], ['textShadowOffsetY', 'shadowOffsetY', 0], ['textShadowColor', 'shadowColor', 'transparent']];
- var _tmpTextPositionResult = {};
- var _tmpBoxPositionResult = {};
- /**
- * @param {module:zrender/graphic/Style} style
- * @return {module:zrender/graphic/Style} The input style.
- */
-
- function normalizeTextStyle(style) {
- normalizeStyle(style);
- each(style.rich, normalizeStyle);
- return style;
- }
-
- function normalizeStyle(style) {
- if (style) {
- style.font = textContain.makeFont(style);
- var textAlign = style.textAlign;
- textAlign === 'middle' && (textAlign = 'center');
- style.textAlign = textAlign == null || VALID_TEXT_ALIGN[textAlign] ? textAlign : 'left'; // Compatible with textBaseline.
-
- var textVerticalAlign = style.textVerticalAlign || style.textBaseline;
- textVerticalAlign === 'center' && (textVerticalAlign = 'middle');
- style.textVerticalAlign = textVerticalAlign == null || VALID_TEXT_VERTICAL_ALIGN[textVerticalAlign] ? textVerticalAlign : 'top';
- var textPadding = style.textPadding;
-
- if (textPadding) {
- style.textPadding = normalizeCssArray(style.textPadding);
- }
- }
- }
- /**
- * @param {CanvasRenderingContext2D} ctx
- * @param {string} text
- * @param {module:zrender/graphic/Style} style
- * @param {Object|boolean} [rect] {x, y, width, height}
- * If set false, rect text is not used.
- * @param {Element|module:zrender/graphic/helper/constant.WILL_BE_RESTORED} [prevEl] For ctx prop cache.
- */
-
-
- function renderText(hostEl, ctx, text, style, rect, prevEl) {
- style.rich ? renderRichText(hostEl, ctx, text, style, rect, prevEl) : renderPlainText(hostEl, ctx, text, style, rect, prevEl);
- } // Avoid setting to ctx according to prevEl if possible for
- // performance in scenarios of large amount text.
-
-
- function renderPlainText(hostEl, ctx, text, style, rect, prevEl) {
- 'use strict';
-
- var needDrawBg = needDrawBackground(style);
- var prevStyle;
- var checkCache = false;
- var cachedByMe = ctx.__attrCachedBy === ContextCachedBy.PLAIN_TEXT; // Only take and check cache for `Text` el, but not RectText.
-
- if (prevEl !== WILL_BE_RESTORED) {
- if (prevEl) {
- prevStyle = prevEl.style;
- checkCache = !needDrawBg && cachedByMe && prevStyle;
- } // Prevent from using cache in `Style::bind`, because of the case:
- // ctx property is modified by other properties than `Style::bind`
- // used, and Style::bind is called next.
-
-
- ctx.__attrCachedBy = needDrawBg ? ContextCachedBy.NONE : ContextCachedBy.PLAIN_TEXT;
- } // Since this will be restored, prevent from using these props to check cache in the next
- // entering of this method. But do not need to clear other cache like `Style::bind`.
- else if (cachedByMe) {
- ctx.__attrCachedBy = ContextCachedBy.NONE;
- }
-
- var styleFont = style.font || DEFAULT_FONT; // PENDING
- // Only `Text` el set `font` and keep it (`RectText` will restore). So theoretically
- // we can make font cache on ctx, which can cache for text el that are discontinuous.
- // But layer save/restore needed to be considered.
- // if (styleFont !== ctx.__fontCache) {
- // ctx.font = styleFont;
- // if (prevEl !== WILL_BE_RESTORED) {
- // ctx.__fontCache = styleFont;
- // }
- // }
-
- if (!checkCache || styleFont !== (prevStyle.font || DEFAULT_FONT)) {
- ctx.font = styleFont;
- } // Use the final font from context-2d, because the final
- // font might not be the style.font when it is illegal.
- // But get `ctx.font` might be time consuming.
-
-
- var computedFont = hostEl.__computedFont;
-
- if (hostEl.__styleFont !== styleFont) {
- hostEl.__styleFont = styleFont;
- computedFont = hostEl.__computedFont = ctx.font;
- }
-
- var textPadding = style.textPadding;
- var textLineHeight = style.textLineHeight;
- var contentBlock = hostEl.__textCotentBlock;
-
- if (!contentBlock || hostEl.__dirtyText) {
- contentBlock = hostEl.__textCotentBlock = textContain.parsePlainText(text, computedFont, textPadding, textLineHeight, style.truncate);
- }
-
- var outerHeight = contentBlock.outerHeight;
- var textLines = contentBlock.lines;
- var lineHeight = contentBlock.lineHeight;
- var boxPos = getBoxPosition(_tmpBoxPositionResult, hostEl, style, rect);
- var baseX = boxPos.baseX;
- var baseY = boxPos.baseY;
- var textAlign = boxPos.textAlign || 'left';
- var textVerticalAlign = boxPos.textVerticalAlign; // Origin of textRotation should be the base point of text drawing.
-
- applyTextRotation(ctx, style, rect, baseX, baseY);
- var boxY = textContain.adjustTextY(baseY, outerHeight, textVerticalAlign);
- var textX = baseX;
- var textY = boxY;
-
- if (needDrawBg || textPadding) {
- // Consider performance, do not call getTextWidth util necessary.
- var textWidth = textContain.getWidth(text, computedFont);
- var outerWidth = textWidth;
- textPadding && (outerWidth += textPadding[1] + textPadding[3]);
- var boxX = textContain.adjustTextX(baseX, outerWidth, textAlign);
- needDrawBg && drawBackground(hostEl, ctx, style, boxX, boxY, outerWidth, outerHeight);
-
- if (textPadding) {
- textX = getTextXForPadding(baseX, textAlign, textPadding);
- textY += textPadding[0];
- }
- } // Always set textAlign and textBase line, because it is difficute to calculate
- // textAlign from prevEl, and we dont sure whether textAlign will be reset if
- // font set happened.
-
-
- ctx.textAlign = textAlign; // Force baseline to be "middle". Otherwise, if using "top", the
- // text will offset downward a little bit in font "Microsoft YaHei".
-
- ctx.textBaseline = 'middle'; // Set text opacity
-
- ctx.globalAlpha = style.opacity || 1; // Always set shadowBlur and shadowOffset to avoid leak from displayable.
-
- for (var i = 0; i < SHADOW_STYLE_COMMON_PROPS.length; i++) {
- var propItem = SHADOW_STYLE_COMMON_PROPS[i];
- var styleProp = propItem[0];
- var ctxProp = propItem[1];
- var val = style[styleProp];
-
- if (!checkCache || val !== prevStyle[styleProp]) {
- ctx[ctxProp] = fixShadow(ctx, ctxProp, val || propItem[2]);
- }
- } // `textBaseline` is set as 'middle'.
-
-
- textY += lineHeight / 2;
- var textStrokeWidth = style.textStrokeWidth;
- var textStrokeWidthPrev = checkCache ? prevStyle.textStrokeWidth : null;
- var strokeWidthChanged = !checkCache || textStrokeWidth !== textStrokeWidthPrev;
- var strokeChanged = !checkCache || strokeWidthChanged || style.textStroke !== prevStyle.textStroke;
- var textStroke = getStroke(style.textStroke, textStrokeWidth);
- var textFill = getFill(style.textFill);
-
- if (textStroke) {
- if (strokeWidthChanged) {
- ctx.lineWidth = textStrokeWidth;
- }
-
- if (strokeChanged) {
- ctx.strokeStyle = textStroke;
- }
- }
-
- if (textFill) {
- if (!checkCache || style.textFill !== prevStyle.textFill) {
- ctx.fillStyle = textFill;
- }
- } // Optimize simply, in most cases only one line exists.
-
-
- if (textLines.length === 1) {
- // Fill after stroke so the outline will not cover the main part.
- textStroke && ctx.strokeText(textLines[0], textX, textY);
- textFill && ctx.fillText(textLines[0], textX, textY);
- } else {
- for (var i = 0; i < textLines.length; i++) {
- // Fill after stroke so the outline will not cover the main part.
- textStroke && ctx.strokeText(textLines[i], textX, textY);
- textFill && ctx.fillText(textLines[i], textX, textY);
- textY += lineHeight;
- }
- }
- }
-
- function renderRichText(hostEl, ctx, text, style, rect, prevEl) {
- // Do not do cache for rich text because of the complexity.
- // But `RectText` this will be restored, do not need to clear other cache like `Style::bind`.
- if (prevEl !== WILL_BE_RESTORED) {
- ctx.__attrCachedBy = ContextCachedBy.NONE;
- }
-
- var contentBlock = hostEl.__textCotentBlock;
-
- if (!contentBlock || hostEl.__dirtyText) {
- contentBlock = hostEl.__textCotentBlock = textContain.parseRichText(text, style);
- }
-
- drawRichText(hostEl, ctx, contentBlock, style, rect);
- }
-
- function drawRichText(hostEl, ctx, contentBlock, style, rect) {
- var contentWidth = contentBlock.width;
- var outerWidth = contentBlock.outerWidth;
- var outerHeight = contentBlock.outerHeight;
- var textPadding = style.textPadding;
- var boxPos = getBoxPosition(_tmpBoxPositionResult, hostEl, style, rect);
- var baseX = boxPos.baseX;
- var baseY = boxPos.baseY;
- var textAlign = boxPos.textAlign;
- var textVerticalAlign = boxPos.textVerticalAlign; // Origin of textRotation should be the base point of text drawing.
-
- applyTextRotation(ctx, style, rect, baseX, baseY);
- var boxX = textContain.adjustTextX(baseX, outerWidth, textAlign);
- var boxY = textContain.adjustTextY(baseY, outerHeight, textVerticalAlign);
- var xLeft = boxX;
- var lineTop = boxY;
-
- if (textPadding) {
- xLeft += textPadding[3];
- lineTop += textPadding[0];
- }
-
- var xRight = xLeft + contentWidth;
- needDrawBackground(style) && drawBackground(hostEl, ctx, style, boxX, boxY, outerWidth, outerHeight);
-
- for (var i = 0; i < contentBlock.lines.length; i++) {
- var line = contentBlock.lines[i];
- var tokens = line.tokens;
- var tokenCount = tokens.length;
- var lineHeight = line.lineHeight;
- var usedWidth = line.width;
- var leftIndex = 0;
- var lineXLeft = xLeft;
- var lineXRight = xRight;
- var rightIndex = tokenCount - 1;
- var token;
-
- while (leftIndex < tokenCount && (token = tokens[leftIndex], !token.textAlign || token.textAlign === 'left')) {
- placeToken(hostEl, ctx, token, style, lineHeight, lineTop, lineXLeft, 'left');
- usedWidth -= token.width;
- lineXLeft += token.width;
- leftIndex++;
- }
-
- while (rightIndex >= 0 && (token = tokens[rightIndex], token.textAlign === 'right')) {
- placeToken(hostEl, ctx, token, style, lineHeight, lineTop, lineXRight, 'right');
- usedWidth -= token.width;
- lineXRight -= token.width;
- rightIndex--;
- } // The other tokens are placed as textAlign 'center' if there is enough space.
-
-
- lineXLeft += (contentWidth - (lineXLeft - xLeft) - (xRight - lineXRight) - usedWidth) / 2;
-
- while (leftIndex <= rightIndex) {
- token = tokens[leftIndex]; // Consider width specified by user, use 'center' rather than 'left'.
-
- placeToken(hostEl, ctx, token, style, lineHeight, lineTop, lineXLeft + token.width / 2, 'center');
- lineXLeft += token.width;
- leftIndex++;
- }
-
- lineTop += lineHeight;
- }
- }
-
- function applyTextRotation(ctx, style, rect, x, y) {
- // textRotation only apply in RectText.
- if (rect && style.textRotation) {
- var origin = style.textOrigin;
-
- if (origin === 'center') {
- x = rect.width / 2 + rect.x;
- y = rect.height / 2 + rect.y;
- } else if (origin) {
- x = origin[0] + rect.x;
- y = origin[1] + rect.y;
- }
-
- ctx.translate(x, y); // Positive: anticlockwise
-
- ctx.rotate(-style.textRotation);
- ctx.translate(-x, -y);
- }
- }
-
- function placeToken(hostEl, ctx, token, style, lineHeight, lineTop, x, textAlign) {
- var tokenStyle = style.rich[token.styleName] || {};
- tokenStyle.text = token.text; // 'ctx.textBaseline' is always set as 'middle', for sake of
- // the bias of "Microsoft YaHei".
-
- var textVerticalAlign = token.textVerticalAlign;
- var y = lineTop + lineHeight / 2;
-
- if (textVerticalAlign === 'top') {
- y = lineTop + token.height / 2;
- } else if (textVerticalAlign === 'bottom') {
- y = lineTop + lineHeight - token.height / 2;
- }
-
- !token.isLineHolder && needDrawBackground(tokenStyle) && drawBackground(hostEl, ctx, tokenStyle, textAlign === 'right' ? x - token.width : textAlign === 'center' ? x - token.width / 2 : x, y - token.height / 2, token.width, token.height);
- var textPadding = token.textPadding;
-
- if (textPadding) {
- x = getTextXForPadding(x, textAlign, textPadding);
- y -= token.height / 2 - textPadding[2] - token.textHeight / 2;
- }
-
- setCtx(ctx, 'shadowBlur', retrieve3(tokenStyle.textShadowBlur, style.textShadowBlur, 0));
- setCtx(ctx, 'shadowColor', tokenStyle.textShadowColor || style.textShadowColor || 'transparent');
- setCtx(ctx, 'shadowOffsetX', retrieve3(tokenStyle.textShadowOffsetX, style.textShadowOffsetX, 0));
- setCtx(ctx, 'shadowOffsetY', retrieve3(tokenStyle.textShadowOffsetY, style.textShadowOffsetY, 0));
- setCtx(ctx, 'textAlign', textAlign); // Force baseline to be "middle". Otherwise, if using "top", the
- // text will offset downward a little bit in font "Microsoft YaHei".
-
- setCtx(ctx, 'textBaseline', 'middle');
- setCtx(ctx, 'font', token.font || DEFAULT_FONT);
- var textStroke = getStroke(tokenStyle.textStroke || style.textStroke, textStrokeWidth);
- var textFill = getFill(tokenStyle.textFill || style.textFill);
- var textStrokeWidth = retrieve2(tokenStyle.textStrokeWidth, style.textStrokeWidth); // Fill after stroke so the outline will not cover the main part.
-
- if (textStroke) {
- setCtx(ctx, 'lineWidth', textStrokeWidth);
- setCtx(ctx, 'strokeStyle', textStroke);
- ctx.strokeText(token.text, x, y);
- }
-
- if (textFill) {
- setCtx(ctx, 'fillStyle', textFill);
- ctx.fillText(token.text, x, y);
- }
- }
-
- function needDrawBackground(style) {
- return !!(style.textBackgroundColor || style.textBorderWidth && style.textBorderColor);
- } // style: {textBackgroundColor, textBorderWidth, textBorderColor, textBorderRadius, text}
- // shape: {x, y, width, height}
-
-
- function drawBackground(hostEl, ctx, style, x, y, width, height) {
- var textBackgroundColor = style.textBackgroundColor;
- var textBorderWidth = style.textBorderWidth;
- var textBorderColor = style.textBorderColor;
- var isPlainBg = isString(textBackgroundColor);
- setCtx(ctx, 'shadowBlur', style.textBoxShadowBlur || 0);
- setCtx(ctx, 'shadowColor', style.textBoxShadowColor || 'transparent');
- setCtx(ctx, 'shadowOffsetX', style.textBoxShadowOffsetX || 0);
- setCtx(ctx, 'shadowOffsetY', style.textBoxShadowOffsetY || 0);
-
- if (isPlainBg || textBorderWidth && textBorderColor) {
- ctx.beginPath();
- var textBorderRadius = style.textBorderRadius;
-
- if (!textBorderRadius) {
- ctx.rect(x, y, width, height);
- } else {
- roundRectHelper.buildPath(ctx, {
- x: x,
- y: y,
- width: width,
- height: height,
- r: textBorderRadius
- });
- }
-
- ctx.closePath();
- }
-
- if (isPlainBg) {
- setCtx(ctx, 'fillStyle', textBackgroundColor);
-
- if (style.fillOpacity != null) {
- var originalGlobalAlpha = ctx.globalAlpha;
- ctx.globalAlpha = style.fillOpacity * style.opacity;
- ctx.fill();
- ctx.globalAlpha = originalGlobalAlpha;
- } else {
- ctx.fill();
- }
- } else if (isObject(textBackgroundColor)) {
- var image = textBackgroundColor.image;
- image = imageHelper.createOrUpdateImage(image, null, hostEl, onBgImageLoaded, textBackgroundColor);
-
- if (image && imageHelper.isImageReady(image)) {
- ctx.drawImage(image, x, y, width, height);
- }
- }
-
- if (textBorderWidth && textBorderColor) {
- setCtx(ctx, 'lineWidth', textBorderWidth);
- setCtx(ctx, 'strokeStyle', textBorderColor);
-
- if (style.strokeOpacity != null) {
- var originalGlobalAlpha = ctx.globalAlpha;
- ctx.globalAlpha = style.strokeOpacity * style.opacity;
- ctx.stroke();
- ctx.globalAlpha = originalGlobalAlpha;
- } else {
- ctx.stroke();
- }
- }
- }
-
- function onBgImageLoaded(image, textBackgroundColor) {
- // Replace image, so that `contain/text.js#parseRichText`
- // will get correct result in next tick.
- textBackgroundColor.image = image;
- }
-
- function getBoxPosition(out, hostEl, style, rect) {
- var baseX = style.x || 0;
- var baseY = style.y || 0;
- var textAlign = style.textAlign;
- var textVerticalAlign = style.textVerticalAlign; // Text position represented by coord
-
- if (rect) {
- var textPosition = style.textPosition;
-
- if (textPosition instanceof Array) {
- // Percent
- baseX = rect.x + parsePercent(textPosition[0], rect.width);
- baseY = rect.y + parsePercent(textPosition[1], rect.height);
- } else {
- var res = hostEl && hostEl.calculateTextPosition ? hostEl.calculateTextPosition(_tmpTextPositionResult, style, rect) : textContain.calculateTextPosition(_tmpTextPositionResult, style, rect);
- baseX = res.x;
- baseY = res.y; // Default align and baseline when has textPosition
-
- textAlign = textAlign || res.textAlign;
- textVerticalAlign = textVerticalAlign || res.textVerticalAlign;
- } // textOffset is only support in RectText, otherwise
- // we have to adjust boundingRect for textOffset.
-
-
- var textOffset = style.textOffset;
-
- if (textOffset) {
- baseX += textOffset[0];
- baseY += textOffset[1];
- }
- }
-
- out = out || {};
- out.baseX = baseX;
- out.baseY = baseY;
- out.textAlign = textAlign;
- out.textVerticalAlign = textVerticalAlign;
- return out;
- }
-
- function setCtx(ctx, prop, value) {
- ctx[prop] = fixShadow(ctx, prop, value);
- return ctx[prop];
- }
- /**
- * @param {string} [stroke] If specified, do not check style.textStroke.
- * @param {string} [lineWidth] If specified, do not check style.textStroke.
- * @param {number} style
- */
-
-
- function getStroke(stroke, lineWidth) {
- return stroke == null || lineWidth <= 0 || stroke === 'transparent' || stroke === 'none' ? null // TODO pattern and gradient?
- : stroke.image || stroke.colorStops ? '#000' : stroke;
- }
-
- function getFill(fill) {
- return fill == null || fill === 'none' ? null // TODO pattern and gradient?
- : fill.image || fill.colorStops ? '#000' : fill;
- }
-
- function parsePercent(value, maxValue) {
- if (typeof value === 'string') {
- if (value.lastIndexOf('%') >= 0) {
- return parseFloat(value) / 100 * maxValue;
- }
-
- return parseFloat(value);
- }
-
- return value;
- }
-
- function getTextXForPadding(x, textAlign, textPadding) {
- return textAlign === 'right' ? x - textPadding[1] : textAlign === 'center' ? x + textPadding[3] / 2 - textPadding[1] / 2 : x + textPadding[3];
- }
- /**
- * @param {string} text
- * @param {module:zrender/Style} style
- * @return {boolean}
- */
-
-
- function needDrawText(text, style) {
- return text != null && (text || style.textBackgroundColor || style.textBorderWidth && style.textBorderColor || style.textPadding);
- }
-
- exports.normalizeTextStyle = normalizeTextStyle;
- exports.renderText = renderText;
- exports.getBoxPosition = getBoxPosition;
- exports.getStroke = getStroke;
- exports.getFill = getFill;
- exports.parsePercent = parsePercent;
- exports.needDrawText = needDrawText;
-
- /***/ }),
-
- /***/ 1784:
- /***/ (function(module, exports, __webpack_require__) {
-
- var vec2 = __webpack_require__(1180);
-
- var curve = __webpack_require__(1481);
-
- /**
- * @author Yi Shen(https://github.com/pissang)
- */
- var mathMin = Math.min;
- var mathMax = Math.max;
- var mathSin = Math.sin;
- var mathCos = Math.cos;
- var PI2 = Math.PI * 2;
- var start = vec2.create();
- var end = vec2.create();
- var extremity = vec2.create();
- /**
- * 从顶点数组中计算出最小包围盒,写入`min`和`max`中
- * @module zrender/core/bbox
- * @param {Array<Object>} points 顶点数组
- * @param {number} min
- * @param {number} max
- */
-
- function fromPoints(points, min, max) {
- if (points.length === 0) {
- return;
- }
-
- var p = points[0];
- var left = p[0];
- var right = p[0];
- var top = p[1];
- var bottom = p[1];
- var i;
-
- for (i = 1; i < points.length; i++) {
- p = points[i];
- left = mathMin(left, p[0]);
- right = mathMax(right, p[0]);
- top = mathMin(top, p[1]);
- bottom = mathMax(bottom, p[1]);
- }
-
- min[0] = left;
- min[1] = top;
- max[0] = right;
- max[1] = bottom;
- }
- /**
- * @memberOf module:zrender/core/bbox
- * @param {number} x0
- * @param {number} y0
- * @param {number} x1
- * @param {number} y1
- * @param {Array.<number>} min
- * @param {Array.<number>} max
- */
-
-
- function fromLine(x0, y0, x1, y1, min, max) {
- min[0] = mathMin(x0, x1);
- min[1] = mathMin(y0, y1);
- max[0] = mathMax(x0, x1);
- max[1] = mathMax(y0, y1);
- }
-
- var xDim = [];
- var yDim = [];
- /**
- * 从三阶贝塞尔曲线(p0, p1, p2, p3)中计算出最小包围盒,写入`min`和`max`中
- * @memberOf module:zrender/core/bbox
- * @param {number} x0
- * @param {number} y0
- * @param {number} x1
- * @param {number} y1
- * @param {number} x2
- * @param {number} y2
- * @param {number} x3
- * @param {number} y3
- * @param {Array.<number>} min
- * @param {Array.<number>} max
- */
-
- function fromCubic(x0, y0, x1, y1, x2, y2, x3, y3, min, max) {
- var cubicExtrema = curve.cubicExtrema;
- var cubicAt = curve.cubicAt;
- var i;
- var n = cubicExtrema(x0, x1, x2, x3, xDim);
- min[0] = Infinity;
- min[1] = Infinity;
- max[0] = -Infinity;
- max[1] = -Infinity;
-
- for (i = 0; i < n; i++) {
- var x = cubicAt(x0, x1, x2, x3, xDim[i]);
- min[0] = mathMin(x, min[0]);
- max[0] = mathMax(x, max[0]);
- }
-
- n = cubicExtrema(y0, y1, y2, y3, yDim);
-
- for (i = 0; i < n; i++) {
- var y = cubicAt(y0, y1, y2, y3, yDim[i]);
- min[1] = mathMin(y, min[1]);
- max[1] = mathMax(y, max[1]);
- }
-
- min[0] = mathMin(x0, min[0]);
- max[0] = mathMax(x0, max[0]);
- min[0] = mathMin(x3, min[0]);
- max[0] = mathMax(x3, max[0]);
- min[1] = mathMin(y0, min[1]);
- max[1] = mathMax(y0, max[1]);
- min[1] = mathMin(y3, min[1]);
- max[1] = mathMax(y3, max[1]);
- }
- /**
- * 从二阶贝塞尔曲线(p0, p1, p2)中计算出最小包围盒,写入`min`和`max`中
- * @memberOf module:zrender/core/bbox
- * @param {number} x0
- * @param {number} y0
- * @param {number} x1
- * @param {number} y1
- * @param {number} x2
- * @param {number} y2
- * @param {Array.<number>} min
- * @param {Array.<number>} max
- */
-
-
- function fromQuadratic(x0, y0, x1, y1, x2, y2, min, max) {
- var quadraticExtremum = curve.quadraticExtremum;
- var quadraticAt = curve.quadraticAt; // Find extremities, where derivative in x dim or y dim is zero
-
- var tx = mathMax(mathMin(quadraticExtremum(x0, x1, x2), 1), 0);
- var ty = mathMax(mathMin(quadraticExtremum(y0, y1, y2), 1), 0);
- var x = quadraticAt(x0, x1, x2, tx);
- var y = quadraticAt(y0, y1, y2, ty);
- min[0] = mathMin(x0, x2, x);
- min[1] = mathMin(y0, y2, y);
- max[0] = mathMax(x0, x2, x);
- max[1] = mathMax(y0, y2, y);
- }
- /**
- * 从圆弧中计算出最小包围盒,写入`min`和`max`中
- * @method
- * @memberOf module:zrender/core/bbox
- * @param {number} x
- * @param {number} y
- * @param {number} rx
- * @param {number} ry
- * @param {number} startAngle
- * @param {number} endAngle
- * @param {number} anticlockwise
- * @param {Array.<number>} min
- * @param {Array.<number>} max
- */
-
-
- function fromArc(x, y, rx, ry, startAngle, endAngle, anticlockwise, min, max) {
- var vec2Min = vec2.min;
- var vec2Max = vec2.max;
- var diff = Math.abs(startAngle - endAngle);
-
- if (diff % PI2 < 1e-4 && diff > 1e-4) {
- // Is a circle
- min[0] = x - rx;
- min[1] = y - ry;
- max[0] = x + rx;
- max[1] = y + ry;
- return;
- }
-
- start[0] = mathCos(startAngle) * rx + x;
- start[1] = mathSin(startAngle) * ry + y;
- end[0] = mathCos(endAngle) * rx + x;
- end[1] = mathSin(endAngle) * ry + y;
- vec2Min(min, start, end);
- vec2Max(max, start, end); // Thresh to [0, Math.PI * 2]
-
- startAngle = startAngle % PI2;
-
- if (startAngle < 0) {
- startAngle = startAngle + PI2;
- }
-
- endAngle = endAngle % PI2;
-
- if (endAngle < 0) {
- endAngle = endAngle + PI2;
- }
-
- if (startAngle > endAngle && !anticlockwise) {
- endAngle += PI2;
- } else if (startAngle < endAngle && anticlockwise) {
- startAngle += PI2;
- }
-
- if (anticlockwise) {
- var tmp = endAngle;
- endAngle = startAngle;
- startAngle = tmp;
- } // var number = 0;
- // var step = (anticlockwise ? -Math.PI : Math.PI) / 2;
-
-
- for (var angle = 0; angle < endAngle; angle += Math.PI / 2) {
- if (angle > startAngle) {
- extremity[0] = mathCos(angle) * rx + x;
- extremity[1] = mathSin(angle) * ry + y;
- vec2Min(min, extremity, min);
- vec2Max(max, extremity, max);
- }
- }
- }
-
- exports.fromPoints = fromPoints;
- exports.fromLine = fromLine;
- exports.fromCubic = fromCubic;
- exports.fromQuadratic = fromQuadratic;
- exports.fromArc = fromArc;
-
- /***/ }),
-
- /***/ 1785:
- /***/ (function(module, exports) {
-
- /**
- * @param {Array.<Object>} colorStops
- */
- var Gradient = function (colorStops) {
- this.colorStops = colorStops || [];
- };
-
- Gradient.prototype = {
- constructor: Gradient,
- addColorStop: function (offset, color) {
- this.colorStops.push({
- offset: offset,
- color: color
- });
- }
- };
- var _default = Gradient;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1786:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var Group = __webpack_require__(1597);
-
- var componentUtil = __webpack_require__(1657);
-
- var clazzUtil = __webpack_require__(1456);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var Component = function () {
- /**
- * @type {module:zrender/container/Group}
- * @readOnly
- */
- this.group = new Group();
- /**
- * @type {string}
- * @readOnly
- */
-
- this.uid = componentUtil.getUID('viewComponent');
- };
-
- Component.prototype = {
- constructor: Component,
- init: function (ecModel, api) {},
- render: function (componentModel, ecModel, api, payload) {},
- dispose: function () {},
-
- /**
- * @param {string} eventType
- * @param {Object} query
- * @param {module:zrender/Element} targetEl
- * @param {Object} packedEvent
- * @return {boolen} Pass only when return `true`.
- */
- filterForExposedEvent: null
- };
- var componentProto = Component.prototype;
-
- componentProto.updateView = componentProto.updateLayout = componentProto.updateVisual = function (seriesModel, ecModel, api, payload) {// Do nothing;
- }; // Enable Component.extend.
-
-
- clazzUtil.enableClassExtend(Component); // Enable capability of registerClass, getClass, hasClass, registerSubTypeDefaulter and so on.
-
- clazzUtil.enableClassManagement(Component, {
- registerWhenExtend: true
- });
- var _default = Component;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1787:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var clazzUtil = __webpack_require__(1456);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * // Scale class management
- * @module echarts/scale/Scale
- */
-
- /**
- * @param {Object} [setting]
- */
- function Scale(setting) {
- this._setting = setting || {};
- /**
- * Extent
- * @type {Array.<number>}
- * @protected
- */
-
- this._extent = [Infinity, -Infinity];
- /**
- * Step is calculated in adjustExtent
- * @type {Array.<number>}
- * @protected
- */
-
- this._interval = 0;
- this.init && this.init.apply(this, arguments);
- }
- /**
- * Parse input val to valid inner number.
- * @param {*} val
- * @return {number}
- */
-
-
- Scale.prototype.parse = function (val) {
- // Notice: This would be a trap here, If the implementation
- // of this method depends on extent, and this method is used
- // before extent set (like in dataZoom), it would be wrong.
- // Nevertheless, parse does not depend on extent generally.
- return val;
- };
-
- Scale.prototype.getSetting = function (name) {
- return this._setting[name];
- };
-
- Scale.prototype.contain = function (val) {
- var extent = this._extent;
- return val >= extent[0] && val <= extent[1];
- };
- /**
- * Normalize value to linear [0, 1], return 0.5 if extent span is 0
- * @param {number} val
- * @return {number}
- */
-
-
- Scale.prototype.normalize = function (val) {
- var extent = this._extent;
-
- if (extent[1] === extent[0]) {
- return 0.5;
- }
-
- return (val - extent[0]) / (extent[1] - extent[0]);
- };
- /**
- * Scale normalized value
- * @param {number} val
- * @return {number}
- */
-
-
- Scale.prototype.scale = function (val) {
- var extent = this._extent;
- return val * (extent[1] - extent[0]) + extent[0];
- };
- /**
- * Set extent from data
- * @param {Array.<number>} other
- */
-
-
- Scale.prototype.unionExtent = function (other) {
- var extent = this._extent;
- other[0] < extent[0] && (extent[0] = other[0]);
- other[1] > extent[1] && (extent[1] = other[1]); // not setExtent because in log axis it may transformed to power
- // this.setExtent(extent[0], extent[1]);
- };
- /**
- * Set extent from data
- * @param {module:echarts/data/List} data
- * @param {string} dim
- */
-
-
- Scale.prototype.unionExtentFromData = function (data, dim) {
- this.unionExtent(data.getApproximateExtent(dim));
- };
- /**
- * Get extent
- * @return {Array.<number>}
- */
-
-
- Scale.prototype.getExtent = function () {
- return this._extent.slice();
- };
- /**
- * Set extent
- * @param {number} start
- * @param {number} end
- */
-
-
- Scale.prototype.setExtent = function (start, end) {
- var thisExtent = this._extent;
-
- if (!isNaN(start)) {
- thisExtent[0] = start;
- }
-
- if (!isNaN(end)) {
- thisExtent[1] = end;
- }
- };
- /**
- * When axis extent depends on data and no data exists,
- * axis ticks should not be drawn, which is named 'blank'.
- */
-
-
- Scale.prototype.isBlank = function () {
- return this._isBlank;
- },
- /**
- * When axis extent depends on data and no data exists,
- * axis ticks should not be drawn, which is named 'blank'.
- */
- Scale.prototype.setBlank = function (isBlank) {
- this._isBlank = isBlank;
- };
- /**
- * @abstract
- * @param {*} tick
- * @return {string} label of the tick.
- */
-
- Scale.prototype.getLabel = null;
- clazzUtil.enableClassExtend(Scale);
- clazzUtil.enableClassManagement(Scale, {
- registerWhenExtend: true
- });
- var _default = Scale;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1788:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var numberUtil = __webpack_require__(985);
-
- var formatUtil = __webpack_require__(1186);
-
- var Scale = __webpack_require__(1787);
-
- var helper = __webpack_require__(2287);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Interval scale
- * @module echarts/scale/Interval
- */
- var roundNumber = numberUtil.round;
- /**
- * @alias module:echarts/coord/scale/Interval
- * @constructor
- */
-
- var IntervalScale = Scale.extend({
- type: 'interval',
- _interval: 0,
- _intervalPrecision: 2,
- setExtent: function (start, end) {
- var thisExtent = this._extent; //start,end may be a Number like '25',so...
-
- if (!isNaN(start)) {
- thisExtent[0] = parseFloat(start);
- }
-
- if (!isNaN(end)) {
- thisExtent[1] = parseFloat(end);
- }
- },
- unionExtent: function (other) {
- var extent = this._extent;
- other[0] < extent[0] && (extent[0] = other[0]);
- other[1] > extent[1] && (extent[1] = other[1]); // unionExtent may called by it's sub classes
-
- IntervalScale.prototype.setExtent.call(this, extent[0], extent[1]);
- },
-
- /**
- * Get interval
- */
- getInterval: function () {
- return this._interval;
- },
-
- /**
- * Set interval
- */
- setInterval: function (interval) {
- this._interval = interval; // Dropped auto calculated niceExtent and use user setted extent
- // We assume user wan't to set both interval, min, max to get a better result
-
- this._niceExtent = this._extent.slice();
- this._intervalPrecision = helper.getIntervalPrecision(interval);
- },
-
- /**
- * @param {boolean} [expandToNicedExtent=false] If expand the ticks to niced extent.
- * @return {Array.<number>}
- */
- getTicks: function (expandToNicedExtent) {
- var interval = this._interval;
- var extent = this._extent;
- var niceTickExtent = this._niceExtent;
- var intervalPrecision = this._intervalPrecision;
- var ticks = []; // If interval is 0, return [];
-
- if (!interval) {
- return ticks;
- } // Consider this case: using dataZoom toolbox, zoom and zoom.
-
-
- var safeLimit = 10000;
-
- if (extent[0] < niceTickExtent[0]) {
- if (expandToNicedExtent) {
- ticks.push(roundNumber(niceTickExtent[0] - interval));
- } else {
- ticks.push(extent[0]);
- }
- }
-
- var tick = niceTickExtent[0];
-
- while (tick <= niceTickExtent[1]) {
- ticks.push(tick); // Avoid rounding error
-
- tick = roundNumber(tick + interval, intervalPrecision);
-
- if (tick === ticks[ticks.length - 1]) {
- // Consider out of safe float point, e.g.,
- // -3711126.9907707 + 2e-10 === -3711126.9907707
- break;
- }
-
- if (ticks.length > safeLimit) {
- return [];
- }
- } // Consider this case: the last item of ticks is smaller
- // than niceTickExtent[1] and niceTickExtent[1] === extent[1].
-
-
- var lastNiceTick = ticks.length ? ticks[ticks.length - 1] : niceTickExtent[1];
-
- if (extent[1] > lastNiceTick) {
- if (expandToNicedExtent) {
- ticks.push(lastNiceTick + interval);
- } else {
- ticks.push(extent[1]);
- }
- }
-
- return ticks;
- },
-
- /**
- * @param {number} [splitNumber=5]
- * @return {Array.<Array.<number>>}
- */
- getMinorTicks: function (splitNumber) {
- var ticks = this.getTicks(true);
- var minorTicks = [];
- var extent = this.getExtent();
-
- for (var i = 1; i < ticks.length; i++) {
- var nextTick = ticks[i];
- var prevTick = ticks[i - 1];
- var count = 0;
- var minorTicksGroup = [];
- var interval = nextTick - prevTick;
- var minorInterval = interval / splitNumber;
-
- while (count < splitNumber - 1) {
- var minorTick = numberUtil.round(prevTick + (count + 1) * minorInterval); // For the first and last interval. The count may be less than splitNumber.
-
- if (minorTick > extent[0] && minorTick < extent[1]) {
- minorTicksGroup.push(minorTick);
- }
-
- count++;
- }
-
- minorTicks.push(minorTicksGroup);
- }
-
- return minorTicks;
- },
-
- /**
- * @param {number} data
- * @param {Object} [opt]
- * @param {number|string} [opt.precision] If 'auto', use nice presision.
- * @param {boolean} [opt.pad] returns 1.50 but not 1.5 if precision is 2.
- * @return {string}
- */
- getLabel: function (data, opt) {
- if (data == null) {
- return '';
- }
-
- var precision = opt && opt.precision;
-
- if (precision == null) {
- precision = numberUtil.getPrecisionSafe(data) || 0;
- } else if (precision === 'auto') {
- // Should be more precise then tick.
- precision = this._intervalPrecision;
- } // (1) If `precision` is set, 12.005 should be display as '12.00500'.
- // (2) Use roundNumber (toFixed) to avoid scientific notation like '3.5e-7'.
-
-
- data = roundNumber(data, precision, true);
- return formatUtil.addCommas(data);
- },
-
- /**
- * Update interval and extent of intervals for nice ticks
- *
- * @param {number} [splitNumber = 5] Desired number of ticks
- * @param {number} [minInterval]
- * @param {number} [maxInterval]
- */
- niceTicks: function (splitNumber, minInterval, maxInterval) {
- splitNumber = splitNumber || 5;
- var extent = this._extent;
- var span = extent[1] - extent[0];
-
- if (!isFinite(span)) {
- return;
- } // User may set axis min 0 and data are all negative
- // FIXME If it needs to reverse ?
-
-
- if (span < 0) {
- span = -span;
- extent.reverse();
- }
-
- var result = helper.intervalScaleNiceTicks(extent, splitNumber, minInterval, maxInterval);
- this._intervalPrecision = result.intervalPrecision;
- this._interval = result.interval;
- this._niceExtent = result.niceTickExtent;
- },
-
- /**
- * Nice extent.
- * @param {Object} opt
- * @param {number} [opt.splitNumber = 5] Given approx tick number
- * @param {boolean} [opt.fixMin=false]
- * @param {boolean} [opt.fixMax=false]
- * @param {boolean} [opt.minInterval]
- * @param {boolean} [opt.maxInterval]
- */
- niceExtent: function (opt) {
- var extent = this._extent; // If extent start and end are same, expand them
-
- if (extent[0] === extent[1]) {
- if (extent[0] !== 0) {
- // Expand extent
- var expandSize = extent[0]; // In the fowllowing case
- // Axis has been fixed max 100
- // Plus data are all 100 and axis extent are [100, 100].
- // Extend to the both side will cause expanded max is larger than fixed max.
- // So only expand to the smaller side.
-
- if (!opt.fixMax) {
- extent[1] += expandSize / 2;
- extent[0] -= expandSize / 2;
- } else {
- extent[0] -= expandSize / 2;
- }
- } else {
- extent[1] = 1;
- }
- }
-
- var span = extent[1] - extent[0]; // If there are no data and extent are [Infinity, -Infinity]
-
- if (!isFinite(span)) {
- extent[0] = 0;
- extent[1] = 1;
- }
-
- this.niceTicks(opt.splitNumber, opt.minInterval, opt.maxInterval); // var extent = this._extent;
-
- var interval = this._interval;
-
- if (!opt.fixMin) {
- extent[0] = roundNumber(Math.floor(extent[0] / interval) * interval);
- }
-
- if (!opt.fixMax) {
- extent[1] = roundNumber(Math.ceil(extent[1] / interval) * interval);
- }
- }
- });
- /**
- * @return {module:echarts/scale/Time}
- */
-
- IntervalScale.create = function () {
- return new IntervalScale();
- };
-
- var _default = IntervalScale;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1789:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var _number = __webpack_require__(985);
-
- var parsePercent = _number.parsePercent;
-
- var _dataStackHelper = __webpack_require__(1440);
-
- var isDimensionStacked = _dataStackHelper.isDimensionStacked;
-
- var createRenderPlanner = __webpack_require__(1601);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /* global Float32Array */
- var STACK_PREFIX = '__ec_stack_';
- var LARGE_BAR_MIN_WIDTH = 0.5;
- var LargeArr = typeof Float32Array !== 'undefined' ? Float32Array : Array;
-
- function getSeriesStackId(seriesModel) {
- return seriesModel.get('stack') || STACK_PREFIX + seriesModel.seriesIndex;
- }
-
- function getAxisKey(axis) {
- return axis.dim + axis.index;
- }
- /**
- * @param {Object} opt
- * @param {module:echarts/coord/Axis} opt.axis Only support category axis currently.
- * @param {number} opt.count Positive interger.
- * @param {number} [opt.barWidth]
- * @param {number} [opt.barMaxWidth]
- * @param {number} [opt.barMinWidth]
- * @param {number} [opt.barGap]
- * @param {number} [opt.barCategoryGap]
- * @return {Object} {width, offset, offsetCenter} If axis.type is not 'category', return undefined.
- */
-
-
- function getLayoutOnAxis(opt) {
- var params = [];
- var baseAxis = opt.axis;
- var axisKey = 'axis0';
-
- if (baseAxis.type !== 'category') {
- return;
- }
-
- var bandWidth = baseAxis.getBandWidth();
-
- for (var i = 0; i < opt.count || 0; i++) {
- params.push(zrUtil.defaults({
- bandWidth: bandWidth,
- axisKey: axisKey,
- stackId: STACK_PREFIX + i
- }, opt));
- }
-
- var widthAndOffsets = doCalBarWidthAndOffset(params);
- var result = [];
-
- for (var i = 0; i < opt.count; i++) {
- var item = widthAndOffsets[axisKey][STACK_PREFIX + i];
- item.offsetCenter = item.offset + item.width / 2;
- result.push(item);
- }
-
- return result;
- }
-
- function prepareLayoutBarSeries(seriesType, ecModel) {
- var seriesModels = [];
- ecModel.eachSeriesByType(seriesType, function (seriesModel) {
- // Check series coordinate, do layout for cartesian2d only
- if (isOnCartesian(seriesModel) && !isInLargeMode(seriesModel)) {
- seriesModels.push(seriesModel);
- }
- });
- return seriesModels;
- }
- /**
- * Map from (baseAxis.dim + '_' + baseAxis.index) to min gap of two adjacent
- * values.
- * This works for time axes, value axes, and log axes.
- * For a single time axis, return value is in the form like
- * {'x_0': [1000000]}.
- * The value of 1000000 is in milliseconds.
- */
-
-
- function getValueAxesMinGaps(barSeries) {
- /**
- * Map from axis.index to values.
- * For a single time axis, axisValues is in the form like
- * {'x_0': [1495555200000, 1495641600000, 1495728000000]}.
- * Items in axisValues[x], e.g. 1495555200000, are time values of all
- * series.
- */
- var axisValues = {};
- zrUtil.each(barSeries, function (seriesModel) {
- var cartesian = seriesModel.coordinateSystem;
- var baseAxis = cartesian.getBaseAxis();
-
- if (baseAxis.type !== 'time' && baseAxis.type !== 'value') {
- return;
- }
-
- var data = seriesModel.getData();
- var key = baseAxis.dim + '_' + baseAxis.index;
- var dim = data.mapDimension(baseAxis.dim);
-
- for (var i = 0, cnt = data.count(); i < cnt; ++i) {
- var value = data.get(dim, i);
-
- if (!axisValues[key]) {
- // No previous data for the axis
- axisValues[key] = [value];
- } else {
- // No value in previous series
- axisValues[key].push(value);
- } // Ignore duplicated time values in the same axis
-
- }
- });
- var axisMinGaps = [];
-
- for (var key in axisValues) {
- if (axisValues.hasOwnProperty(key)) {
- var valuesInAxis = axisValues[key];
-
- if (valuesInAxis) {
- // Sort axis values into ascending order to calculate gaps
- valuesInAxis.sort(function (a, b) {
- return a - b;
- });
- var min = null;
-
- for (var j = 1; j < valuesInAxis.length; ++j) {
- var delta = valuesInAxis[j] - valuesInAxis[j - 1];
-
- if (delta > 0) {
- // Ignore 0 delta because they are of the same axis value
- min = min === null ? delta : Math.min(min, delta);
- }
- } // Set to null if only have one data
-
-
- axisMinGaps[key] = min;
- }
- }
- }
-
- return axisMinGaps;
- }
-
- function makeColumnLayout(barSeries) {
- var axisMinGaps = getValueAxesMinGaps(barSeries);
- var seriesInfoList = [];
- zrUtil.each(barSeries, function (seriesModel) {
- var cartesian = seriesModel.coordinateSystem;
- var baseAxis = cartesian.getBaseAxis();
- var axisExtent = baseAxis.getExtent();
- var bandWidth;
-
- if (baseAxis.type === 'category') {
- bandWidth = baseAxis.getBandWidth();
- } else if (baseAxis.type === 'value' || baseAxis.type === 'time') {
- var key = baseAxis.dim + '_' + baseAxis.index;
- var minGap = axisMinGaps[key];
- var extentSpan = Math.abs(axisExtent[1] - axisExtent[0]);
- var scale = baseAxis.scale.getExtent();
- var scaleSpan = Math.abs(scale[1] - scale[0]);
- bandWidth = minGap ? extentSpan / scaleSpan * minGap : extentSpan; // When there is only one data value
- } else {
- var data = seriesModel.getData();
- bandWidth = Math.abs(axisExtent[1] - axisExtent[0]) / data.count();
- }
-
- var barWidth = parsePercent(seriesModel.get('barWidth'), bandWidth);
- var barMaxWidth = parsePercent(seriesModel.get('barMaxWidth'), bandWidth);
- var barMinWidth = parsePercent( // barMinWidth by default is 1 in cartesian. Because in value axis,
- // the auto-calculated bar width might be less than 1.
- seriesModel.get('barMinWidth') || 1, bandWidth);
- var barGap = seriesModel.get('barGap');
- var barCategoryGap = seriesModel.get('barCategoryGap');
- seriesInfoList.push({
- bandWidth: bandWidth,
- barWidth: barWidth,
- barMaxWidth: barMaxWidth,
- barMinWidth: barMinWidth,
- barGap: barGap,
- barCategoryGap: barCategoryGap,
- axisKey: getAxisKey(baseAxis),
- stackId: getSeriesStackId(seriesModel)
- });
- });
- return doCalBarWidthAndOffset(seriesInfoList);
- }
-
- function doCalBarWidthAndOffset(seriesInfoList) {
- // Columns info on each category axis. Key is cartesian name
- var columnsMap = {};
- zrUtil.each(seriesInfoList, function (seriesInfo, idx) {
- var axisKey = seriesInfo.axisKey;
- var bandWidth = seriesInfo.bandWidth;
- var columnsOnAxis = columnsMap[axisKey] || {
- bandWidth: bandWidth,
- remainedWidth: bandWidth,
- autoWidthCount: 0,
- categoryGap: '20%',
- gap: '30%',
- stacks: {}
- };
- var stacks = columnsOnAxis.stacks;
- columnsMap[axisKey] = columnsOnAxis;
- var stackId = seriesInfo.stackId;
-
- if (!stacks[stackId]) {
- columnsOnAxis.autoWidthCount++;
- }
-
- stacks[stackId] = stacks[stackId] || {
- width: 0,
- maxWidth: 0
- }; // Caution: In a single coordinate system, these barGrid attributes
- // will be shared by series. Consider that they have default values,
- // only the attributes set on the last series will work.
- // Do not change this fact unless there will be a break change.
-
- var barWidth = seriesInfo.barWidth;
-
- if (barWidth && !stacks[stackId].width) {
- // See #6312, do not restrict width.
- stacks[stackId].width = barWidth;
- barWidth = Math.min(columnsOnAxis.remainedWidth, barWidth);
- columnsOnAxis.remainedWidth -= barWidth;
- }
-
- var barMaxWidth = seriesInfo.barMaxWidth;
- barMaxWidth && (stacks[stackId].maxWidth = barMaxWidth);
- var barMinWidth = seriesInfo.barMinWidth;
- barMinWidth && (stacks[stackId].minWidth = barMinWidth);
- var barGap = seriesInfo.barGap;
- barGap != null && (columnsOnAxis.gap = barGap);
- var barCategoryGap = seriesInfo.barCategoryGap;
- barCategoryGap != null && (columnsOnAxis.categoryGap = barCategoryGap);
- });
- var result = {};
- zrUtil.each(columnsMap, function (columnsOnAxis, coordSysName) {
- result[coordSysName] = {};
- var stacks = columnsOnAxis.stacks;
- var bandWidth = columnsOnAxis.bandWidth;
- var categoryGap = parsePercent(columnsOnAxis.categoryGap, bandWidth);
- var barGapPercent = parsePercent(columnsOnAxis.gap, 1);
- var remainedWidth = columnsOnAxis.remainedWidth;
- var autoWidthCount = columnsOnAxis.autoWidthCount;
- var autoWidth = (remainedWidth - categoryGap) / (autoWidthCount + (autoWidthCount - 1) * barGapPercent);
- autoWidth = Math.max(autoWidth, 0); // Find if any auto calculated bar exceeded maxBarWidth
-
- zrUtil.each(stacks, function (column) {
- var maxWidth = column.maxWidth;
- var minWidth = column.minWidth;
-
- if (!column.width) {
- var finalWidth = autoWidth;
-
- if (maxWidth && maxWidth < finalWidth) {
- finalWidth = Math.min(maxWidth, remainedWidth);
- } // `minWidth` has higher priority. `minWidth` decide that wheter the
- // bar is able to be visible. So `minWidth` should not be restricted
- // by `maxWidth` or `remainedWidth` (which is from `bandWidth`). In
- // the extreme cases for `value` axis, bars are allowed to overlap
- // with each other if `minWidth` specified.
-
-
- if (minWidth && minWidth > finalWidth) {
- finalWidth = minWidth;
- }
-
- if (finalWidth !== autoWidth) {
- column.width = finalWidth;
- remainedWidth -= finalWidth + barGapPercent * finalWidth;
- autoWidthCount--;
- }
- } else {
- // `barMinWidth/barMaxWidth` has higher priority than `barWidth`, as
- // CSS does. Becuase barWidth can be a percent value, where
- // `barMaxWidth` can be used to restrict the final width.
- var finalWidth = column.width;
-
- if (maxWidth) {
- finalWidth = Math.min(finalWidth, maxWidth);
- } // `minWidth` has higher priority, as described above
-
-
- if (minWidth) {
- finalWidth = Math.max(finalWidth, minWidth);
- }
-
- column.width = finalWidth;
- remainedWidth -= finalWidth + barGapPercent * finalWidth;
- autoWidthCount--;
- }
- }); // Recalculate width again
-
- autoWidth = (remainedWidth - categoryGap) / (autoWidthCount + (autoWidthCount - 1) * barGapPercent);
- autoWidth = Math.max(autoWidth, 0);
- var widthSum = 0;
- var lastColumn;
- zrUtil.each(stacks, function (column, idx) {
- if (!column.width) {
- column.width = autoWidth;
- }
-
- lastColumn = column;
- widthSum += column.width * (1 + barGapPercent);
- });
-
- if (lastColumn) {
- widthSum -= lastColumn.width * barGapPercent;
- }
-
- var offset = -widthSum / 2;
- zrUtil.each(stacks, function (column, stackId) {
- result[coordSysName][stackId] = result[coordSysName][stackId] || {
- bandWidth: bandWidth,
- offset: offset,
- width: column.width
- };
- offset += column.width * (1 + barGapPercent);
- });
- });
- return result;
- }
- /**
- * @param {Object} barWidthAndOffset The result of makeColumnLayout
- * @param {module:echarts/coord/Axis} axis
- * @param {module:echarts/model/Series} [seriesModel] If not provided, return all.
- * @return {Object} {stackId: {offset, width}} or {offset, width} if seriesModel provided.
- */
-
-
- function retrieveColumnLayout(barWidthAndOffset, axis, seriesModel) {
- if (barWidthAndOffset && axis) {
- var result = barWidthAndOffset[getAxisKey(axis)];
-
- if (result != null && seriesModel != null) {
- result = result[getSeriesStackId(seriesModel)];
- }
-
- return result;
- }
- }
- /**
- * @param {string} seriesType
- * @param {module:echarts/model/Global} ecModel
- */
-
-
- function layout(seriesType, ecModel) {
- var seriesModels = prepareLayoutBarSeries(seriesType, ecModel);
- var barWidthAndOffset = makeColumnLayout(seriesModels);
- var lastStackCoords = {};
- var lastStackCoordsOrigin = {};
- zrUtil.each(seriesModels, function (seriesModel) {
- var data = seriesModel.getData();
- var cartesian = seriesModel.coordinateSystem;
- var baseAxis = cartesian.getBaseAxis();
- var stackId = getSeriesStackId(seriesModel);
- var columnLayoutInfo = barWidthAndOffset[getAxisKey(baseAxis)][stackId];
- var columnOffset = columnLayoutInfo.offset;
- var columnWidth = columnLayoutInfo.width;
- var valueAxis = cartesian.getOtherAxis(baseAxis);
- var barMinHeight = seriesModel.get('barMinHeight') || 0;
- lastStackCoords[stackId] = lastStackCoords[stackId] || [];
- lastStackCoordsOrigin[stackId] = lastStackCoordsOrigin[stackId] || []; // Fix #4243
-
- data.setLayout({
- bandWidth: columnLayoutInfo.bandWidth,
- offset: columnOffset,
- size: columnWidth
- });
- var valueDim = data.mapDimension(valueAxis.dim);
- var baseDim = data.mapDimension(baseAxis.dim);
- var stacked = isDimensionStacked(data, valueDim
- /*, baseDim*/
- );
- var isValueAxisH = valueAxis.isHorizontal();
- var valueAxisStart = getValueAxisStart(baseAxis, valueAxis, stacked);
-
- for (var idx = 0, len = data.count(); idx < len; idx++) {
- var value = data.get(valueDim, idx);
- var baseValue = data.get(baseDim, idx); // If dataZoom in filteMode: 'empty', the baseValue can be set as NaN in "axisProxy".
-
- if (isNaN(value) || isNaN(baseValue)) {
- continue;
- }
-
- var sign = value >= 0 ? 'p' : 'n';
- var baseCoord = valueAxisStart; // Because of the barMinHeight, we can not use the value in
- // stackResultDimension directly.
-
- if (stacked) {
- // Only ordinal axis can be stacked.
- if (!lastStackCoords[stackId][baseValue]) {
- lastStackCoords[stackId][baseValue] = {
- p: valueAxisStart,
- // Positive stack
- n: valueAxisStart // Negative stack
-
- };
- } // Should also consider #4243
-
-
- baseCoord = lastStackCoords[stackId][baseValue][sign];
- }
-
- var x;
- var y;
- var width;
- var height;
-
- if (isValueAxisH) {
- var coord = cartesian.dataToPoint([value, baseValue]);
- x = baseCoord;
- y = coord[1] + columnOffset;
- width = coord[0] - valueAxisStart;
- height = columnWidth;
-
- if (Math.abs(width) < barMinHeight) {
- width = (width < 0 ? -1 : 1) * barMinHeight;
- }
-
- stacked && (lastStackCoords[stackId][baseValue][sign] += width);
- } else {
- var coord = cartesian.dataToPoint([baseValue, value]);
- x = coord[0] + columnOffset;
- y = baseCoord;
- width = columnWidth;
- height = coord[1] - valueAxisStart;
-
- if (Math.abs(height) < barMinHeight) {
- // Include zero to has a positive bar
- height = (height <= 0 ? -1 : 1) * barMinHeight;
- }
-
- stacked && (lastStackCoords[stackId][baseValue][sign] += height);
- }
-
- data.setItemLayout(idx, {
- x: x,
- y: y,
- width: width,
- height: height
- });
- }
- }, this);
- } // TODO: Do not support stack in large mode yet.
-
-
- var largeLayout = {
- seriesType: 'bar',
- plan: createRenderPlanner(),
- reset: function (seriesModel) {
- if (!isOnCartesian(seriesModel) || !isInLargeMode(seriesModel)) {
- return;
- }
-
- var data = seriesModel.getData();
- var cartesian = seriesModel.coordinateSystem;
- var baseAxis = cartesian.getBaseAxis();
- var valueAxis = cartesian.getOtherAxis(baseAxis);
- var valueDim = data.mapDimension(valueAxis.dim);
- var baseDim = data.mapDimension(baseAxis.dim);
- var valueAxisHorizontal = valueAxis.isHorizontal();
- var valueDimIdx = valueAxisHorizontal ? 0 : 1;
- var barWidth = retrieveColumnLayout(makeColumnLayout([seriesModel]), baseAxis, seriesModel).width;
-
- if (!(barWidth > LARGE_BAR_MIN_WIDTH)) {
- // jshint ignore:line
- barWidth = LARGE_BAR_MIN_WIDTH;
- }
-
- return {
- progress: progress
- };
-
- function progress(params, data) {
- var count = params.count;
- var largePoints = new LargeArr(count * 2);
- var largeDataIndices = new LargeArr(count);
- var dataIndex;
- var coord = [];
- var valuePair = [];
- var pointsOffset = 0;
- var idxOffset = 0;
-
- while ((dataIndex = params.next()) != null) {
- valuePair[valueDimIdx] = data.get(valueDim, dataIndex);
- valuePair[1 - valueDimIdx] = data.get(baseDim, dataIndex);
- coord = cartesian.dataToPoint(valuePair, null, coord); // Data index might not be in order, depends on `progressiveChunkMode`.
-
- largePoints[pointsOffset++] = coord[0];
- largePoints[pointsOffset++] = coord[1];
- largeDataIndices[idxOffset++] = dataIndex;
- }
-
- data.setLayout({
- largePoints: largePoints,
- largeDataIndices: largeDataIndices,
- barWidth: barWidth,
- valueAxisStart: getValueAxisStart(baseAxis, valueAxis, false),
- valueAxisHorizontal: valueAxisHorizontal
- });
- }
- }
- };
-
- function isOnCartesian(seriesModel) {
- return seriesModel.coordinateSystem && seriesModel.coordinateSystem.type === 'cartesian2d';
- }
-
- function isInLargeMode(seriesModel) {
- return seriesModel.pipelineContext && seriesModel.pipelineContext.large;
- } // See cases in `test/bar-start.html` and `#7412`, `#8747`.
-
-
- function getValueAxisStart(baseAxis, valueAxis, stacked) {
- return valueAxis.toGlobalCoord(valueAxis.dataToCoord(valueAxis.type === 'log' ? 1 : 0));
- }
-
- exports.getLayoutOnAxis = getLayoutOnAxis;
- exports.prepareLayoutBarSeries = prepareLayoutBarSeries;
- exports.makeColumnLayout = makeColumnLayout;
- exports.retrieveColumnLayout = retrieveColumnLayout;
- exports.layout = layout;
- exports.largeLayout = largeLayout;
-
- /***/ }),
-
- /***/ 1790:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var _symbol = __webpack_require__(1404);
-
- var createSymbol = _symbol.createSymbol;
-
- var graphic = __webpack_require__(906);
-
- var _number = __webpack_require__(985);
-
- var parsePercent = _number.parsePercent;
-
- var _labelHelper = __webpack_require__(1904);
-
- var getDefaultLabel = _labelHelper.getDefaultLabel;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @module echarts/chart/helper/Symbol
- */
-
- /**
- * @constructor
- * @alias {module:echarts/chart/helper/Symbol}
- * @param {module:echarts/data/List} data
- * @param {number} idx
- * @extends {module:zrender/graphic/Group}
- */
- function SymbolClz(data, idx, seriesScope) {
- graphic.Group.call(this);
- this.updateData(data, idx, seriesScope);
- }
-
- var symbolProto = SymbolClz.prototype;
- /**
- * @public
- * @static
- * @param {module:echarts/data/List} data
- * @param {number} dataIndex
- * @return {Array.<number>} [width, height]
- */
-
- var getSymbolSize = SymbolClz.getSymbolSize = function (data, idx) {
- var symbolSize = data.getItemVisual(idx, 'symbolSize');
- return symbolSize instanceof Array ? symbolSize.slice() : [+symbolSize, +symbolSize];
- };
-
- function getScale(symbolSize) {
- return [symbolSize[0] / 2, symbolSize[1] / 2];
- }
-
- function driftSymbol(dx, dy) {
- this.parent.drift(dx, dy);
- }
-
- symbolProto._createSymbol = function (symbolType, data, idx, symbolSize, keepAspect) {
- // Remove paths created before
- this.removeAll();
- var color = data.getItemVisual(idx, 'color'); // var symbolPath = createSymbol(
- // symbolType, -0.5, -0.5, 1, 1, color
- // );
- // If width/height are set too small (e.g., set to 1) on ios10
- // and macOS Sierra, a circle stroke become a rect, no matter what
- // the scale is set. So we set width/height as 2. See #4150.
-
- var symbolPath = createSymbol(symbolType, -1, -1, 2, 2, color, keepAspect);
- symbolPath.attr({
- z2: 100,
- culling: true,
- scale: getScale(symbolSize)
- }); // Rewrite drift method
-
- symbolPath.drift = driftSymbol;
- this._symbolType = symbolType;
- this.add(symbolPath);
- };
- /**
- * Stop animation
- * @param {boolean} toLastFrame
- */
-
-
- symbolProto.stopSymbolAnimation = function (toLastFrame) {
- this.childAt(0).stopAnimation(toLastFrame);
- };
- /**
- * FIXME:
- * Caution: This method breaks the encapsulation of this module,
- * but it indeed brings convenience. So do not use the method
- * unless you detailedly know all the implements of `Symbol`,
- * especially animation.
- *
- * Get symbol path element.
- */
-
-
- symbolProto.getSymbolPath = function () {
- return this.childAt(0);
- };
- /**
- * Get scale(aka, current symbol size).
- * Including the change caused by animation
- */
-
-
- symbolProto.getScale = function () {
- return this.childAt(0).scale;
- };
- /**
- * Highlight symbol
- */
-
-
- symbolProto.highlight = function () {
- this.childAt(0).trigger('emphasis');
- };
- /**
- * Downplay symbol
- */
-
-
- symbolProto.downplay = function () {
- this.childAt(0).trigger('normal');
- };
- /**
- * @param {number} zlevel
- * @param {number} z
- */
-
-
- symbolProto.setZ = function (zlevel, z) {
- var symbolPath = this.childAt(0);
- symbolPath.zlevel = zlevel;
- symbolPath.z = z;
- };
-
- symbolProto.setDraggable = function (draggable) {
- var symbolPath = this.childAt(0);
- symbolPath.draggable = draggable;
- symbolPath.cursor = draggable ? 'move' : symbolPath.cursor;
- };
- /**
- * Update symbol properties
- * @param {module:echarts/data/List} data
- * @param {number} idx
- * @param {Object} [seriesScope]
- * @param {Object} [seriesScope.itemStyle]
- * @param {Object} [seriesScope.hoverItemStyle]
- * @param {Object} [seriesScope.symbolRotate]
- * @param {Object} [seriesScope.symbolOffset]
- * @param {module:echarts/model/Model} [seriesScope.labelModel]
- * @param {module:echarts/model/Model} [seriesScope.hoverLabelModel]
- * @param {boolean} [seriesScope.hoverAnimation]
- * @param {Object} [seriesScope.cursorStyle]
- * @param {module:echarts/model/Model} [seriesScope.itemModel]
- * @param {string} [seriesScope.symbolInnerColor]
- * @param {Object} [seriesScope.fadeIn=false]
- */
-
-
- symbolProto.updateData = function (data, idx, seriesScope) {
- this.silent = false;
- var symbolType = data.getItemVisual(idx, 'symbol') || 'circle';
- var seriesModel = data.hostModel;
- var symbolSize = getSymbolSize(data, idx);
- var isInit = symbolType !== this._symbolType;
-
- if (isInit) {
- var keepAspect = data.getItemVisual(idx, 'symbolKeepAspect');
-
- this._createSymbol(symbolType, data, idx, symbolSize, keepAspect);
- } else {
- var symbolPath = this.childAt(0);
- symbolPath.silent = false;
- graphic.updateProps(symbolPath, {
- scale: getScale(symbolSize)
- }, seriesModel, idx);
- }
-
- this._updateCommon(data, idx, symbolSize, seriesScope);
-
- if (isInit) {
- var symbolPath = this.childAt(0);
- var fadeIn = seriesScope && seriesScope.fadeIn;
- var target = {
- scale: symbolPath.scale.slice()
- };
- fadeIn && (target.style = {
- opacity: symbolPath.style.opacity
- });
- symbolPath.scale = [0, 0];
- fadeIn && (symbolPath.style.opacity = 0);
- graphic.initProps(symbolPath, target, seriesModel, idx);
- }
-
- this._seriesModel = seriesModel;
- }; // Update common properties
-
-
- var normalStyleAccessPath = ['itemStyle'];
- var emphasisStyleAccessPath = ['emphasis', 'itemStyle'];
- var normalLabelAccessPath = ['label'];
- var emphasisLabelAccessPath = ['emphasis', 'label'];
- /**
- * @param {module:echarts/data/List} data
- * @param {number} idx
- * @param {Array.<number>} symbolSize
- * @param {Object} [seriesScope]
- */
-
- symbolProto._updateCommon = function (data, idx, symbolSize, seriesScope) {
- var symbolPath = this.childAt(0);
- var seriesModel = data.hostModel;
- var color = data.getItemVisual(idx, 'color'); // Reset style
-
- if (symbolPath.type !== 'image') {
- symbolPath.useStyle({
- strokeNoScale: true
- });
- } else {
- symbolPath.setStyle({
- opacity: null,
- shadowBlur: null,
- shadowOffsetX: null,
- shadowOffsetY: null,
- shadowColor: null
- });
- }
-
- var itemStyle = seriesScope && seriesScope.itemStyle;
- var hoverItemStyle = seriesScope && seriesScope.hoverItemStyle;
- var symbolRotate = seriesScope && seriesScope.symbolRotate;
- var symbolOffset = seriesScope && seriesScope.symbolOffset;
- var labelModel = seriesScope && seriesScope.labelModel;
- var hoverLabelModel = seriesScope && seriesScope.hoverLabelModel;
- var hoverAnimation = seriesScope && seriesScope.hoverAnimation;
- var cursorStyle = seriesScope && seriesScope.cursorStyle;
-
- if (!seriesScope || data.hasItemOption) {
- var itemModel = seriesScope && seriesScope.itemModel ? seriesScope.itemModel : data.getItemModel(idx); // Color must be excluded.
- // Because symbol provide setColor individually to set fill and stroke
-
- itemStyle = itemModel.getModel(normalStyleAccessPath).getItemStyle(['color']);
- hoverItemStyle = itemModel.getModel(emphasisStyleAccessPath).getItemStyle();
- symbolRotate = itemModel.getShallow('symbolRotate');
- symbolOffset = itemModel.getShallow('symbolOffset');
- labelModel = itemModel.getModel(normalLabelAccessPath);
- hoverLabelModel = itemModel.getModel(emphasisLabelAccessPath);
- hoverAnimation = itemModel.getShallow('hoverAnimation');
- cursorStyle = itemModel.getShallow('cursor');
- } else {
- hoverItemStyle = zrUtil.extend({}, hoverItemStyle);
- }
-
- var elStyle = symbolPath.style;
- symbolPath.attr('rotation', (symbolRotate || 0) * Math.PI / 180 || 0);
-
- if (symbolOffset) {
- symbolPath.attr('position', [parsePercent(symbolOffset[0], symbolSize[0]), parsePercent(symbolOffset[1], symbolSize[1])]);
- }
-
- cursorStyle && symbolPath.attr('cursor', cursorStyle); // PENDING setColor before setStyle!!!
-
- symbolPath.setColor(color, seriesScope && seriesScope.symbolInnerColor);
- symbolPath.setStyle(itemStyle);
- var opacity = data.getItemVisual(idx, 'opacity');
-
- if (opacity != null) {
- elStyle.opacity = opacity;
- }
-
- var liftZ = data.getItemVisual(idx, 'liftZ');
- var z2Origin = symbolPath.__z2Origin;
-
- if (liftZ != null) {
- if (z2Origin == null) {
- symbolPath.__z2Origin = symbolPath.z2;
- symbolPath.z2 += liftZ;
- }
- } else if (z2Origin != null) {
- symbolPath.z2 = z2Origin;
- symbolPath.__z2Origin = null;
- }
-
- var useNameLabel = seriesScope && seriesScope.useNameLabel;
- graphic.setLabelStyle(elStyle, hoverItemStyle, labelModel, hoverLabelModel, {
- labelFetcher: seriesModel,
- labelDataIndex: idx,
- defaultText: getLabelDefaultText,
- isRectText: true,
- autoColor: color
- }); // Do not execute util needed.
-
- function getLabelDefaultText(idx, opt) {
- return useNameLabel ? data.getName(idx) : getDefaultLabel(data, idx);
- }
-
- symbolPath.__symbolOriginalScale = getScale(symbolSize);
- symbolPath.hoverStyle = hoverItemStyle;
- symbolPath.highDownOnUpdate = hoverAnimation && seriesModel.isAnimationEnabled() ? highDownOnUpdate : null;
- graphic.setHoverStyle(symbolPath);
- };
-
- function highDownOnUpdate(fromState, toState) {
- // Do not support this hover animation util some scenario required.
- // Animation can only be supported in hover layer when using `el.incremetal`.
- if (this.incremental || this.useHoverLayer) {
- return;
- }
-
- if (toState === 'emphasis') {
- var scale = this.__symbolOriginalScale;
- var ratio = scale[1] / scale[0];
- var emphasisOpt = {
- scale: [Math.max(scale[0] * 1.1, scale[0] + 3), Math.max(scale[1] * 1.1, scale[1] + 3 * ratio)]
- }; // FIXME
- // modify it after support stop specified animation.
- // toState === fromState
- // ? (this.stopAnimation(), this.attr(emphasisOpt))
-
- this.animateTo(emphasisOpt, 400, 'elasticOut');
- } else if (toState === 'normal') {
- this.animateTo({
- scale: this.__symbolOriginalScale
- }, 400, 'elasticOut');
- }
- }
- /**
- * @param {Function} cb
- * @param {Object} [opt]
- * @param {Object} [opt.keepLabel=true]
- */
-
-
- symbolProto.fadeOut = function (cb, opt) {
- var symbolPath = this.childAt(0); // Avoid mistaken hover when fading out
-
- this.silent = symbolPath.silent = true; // Not show text when animating
-
- !(opt && opt.keepLabel) && (symbolPath.style.text = null);
- graphic.updateProps(symbolPath, {
- style: {
- opacity: 0
- },
- scale: [0, 0]
- }, this._seriesModel, this.dataIndex, cb);
- };
-
- zrUtil.inherits(SymbolClz, graphic.Group);
- var _default = SymbolClz;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1791:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var axisDefault = __webpack_require__(2295);
-
- var ComponentModel = __webpack_require__(1321);
-
- var _layout = __webpack_require__(1171);
-
- var getLayoutParams = _layout.getLayoutParams;
- var mergeLayoutParam = _layout.mergeLayoutParam;
-
- var OrdinalMeta = __webpack_require__(2286);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // FIXME axisType is fixed ?
- var AXIS_TYPES = ['value', 'category', 'time', 'log'];
- /**
- * Generate sub axis model class
- * @param {string} axisName 'x' 'y' 'radius' 'angle' 'parallel'
- * @param {module:echarts/model/Component} BaseAxisModelClass
- * @param {Function} axisTypeDefaulter
- * @param {Object} [extraDefaultOption]
- */
-
- function _default(axisName, BaseAxisModelClass, axisTypeDefaulter, extraDefaultOption) {
- zrUtil.each(AXIS_TYPES, function (axisType) {
- BaseAxisModelClass.extend({
- /**
- * @readOnly
- */
- type: axisName + 'Axis.' + axisType,
- mergeDefaultAndTheme: function (option, ecModel) {
- var layoutMode = this.layoutMode;
- var inputPositionParams = layoutMode ? getLayoutParams(option) : {};
- var themeModel = ecModel.getTheme();
- zrUtil.merge(option, themeModel.get(axisType + 'Axis'));
- zrUtil.merge(option, this.getDefaultOption());
- option.type = axisTypeDefaulter(axisName, option);
-
- if (layoutMode) {
- mergeLayoutParam(option, inputPositionParams, layoutMode);
- }
- },
-
- /**
- * @override
- */
- optionUpdated: function () {
- var thisOption = this.option;
-
- if (thisOption.type === 'category') {
- this.__ordinalMeta = OrdinalMeta.createByAxisModel(this);
- }
- },
-
- /**
- * Should not be called before all of 'getInitailData' finished.
- * Because categories are collected during initializing data.
- */
- getCategories: function (rawData) {
- var option = this.option; // FIXME
- // warning if called before all of 'getInitailData' finished.
-
- if (option.type === 'category') {
- if (rawData) {
- return option.data;
- }
-
- return this.__ordinalMeta.categories;
- }
- },
- getOrdinalMeta: function () {
- return this.__ordinalMeta;
- },
- defaultOption: zrUtil.mergeAll([{}, axisDefault[axisType + 'Axis'], extraDefaultOption], true)
- });
- });
- ComponentModel.registerSubTypeDefaulter(axisName + 'Axis', zrUtil.curry(axisTypeDefaulter, axisName));
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1792:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var Model = __webpack_require__(1317);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var each = zrUtil.each;
- var curry = zrUtil.curry; // Build axisPointerModel, mergin tooltip.axisPointer model for each axis.
- // allAxesInfo should be updated when setOption performed.
-
- function collect(ecModel, api) {
- var result = {
- /**
- * key: makeKey(axis.model)
- * value: {
- * axis,
- * coordSys,
- * axisPointerModel,
- * triggerTooltip,
- * involveSeries,
- * snap,
- * seriesModels,
- * seriesDataCount
- * }
- */
- axesInfo: {},
- seriesInvolved: false,
-
- /**
- * key: makeKey(coordSys.model)
- * value: Object: key makeKey(axis.model), value: axisInfo
- */
- coordSysAxesInfo: {},
- coordSysMap: {}
- };
- collectAxesInfo(result, ecModel, api); // Check seriesInvolved for performance, in case too many series in some chart.
-
- result.seriesInvolved && collectSeriesInfo(result, ecModel);
- return result;
- }
-
- function collectAxesInfo(result, ecModel, api) {
- var globalTooltipModel = ecModel.getComponent('tooltip');
- var globalAxisPointerModel = ecModel.getComponent('axisPointer'); // links can only be set on global.
-
- var linksOption = globalAxisPointerModel.get('link', true) || [];
- var linkGroups = []; // Collect axes info.
-
- each(api.getCoordinateSystems(), function (coordSys) {
- // Some coordinate system do not support axes, like geo.
- if (!coordSys.axisPointerEnabled) {
- return;
- }
-
- var coordSysKey = makeKey(coordSys.model);
- var axesInfoInCoordSys = result.coordSysAxesInfo[coordSysKey] = {};
- result.coordSysMap[coordSysKey] = coordSys; // Set tooltip (like 'cross') is a convienent way to show axisPointer
- // for user. So we enable seting tooltip on coordSys model.
-
- var coordSysModel = coordSys.model;
- var baseTooltipModel = coordSysModel.getModel('tooltip', globalTooltipModel);
- each(coordSys.getAxes(), curry(saveTooltipAxisInfo, false, null)); // If axis tooltip used, choose tooltip axis for each coordSys.
- // Notice this case: coordSys is `grid` but not `cartesian2D` here.
-
- if (coordSys.getTooltipAxes && globalTooltipModel // If tooltip.showContent is set as false, tooltip will not
- // show but axisPointer will show as normal.
- && baseTooltipModel.get('show')) {
- // Compatible with previous logic. But series.tooltip.trigger: 'axis'
- // or series.data[n].tooltip.trigger: 'axis' are not support any more.
- var triggerAxis = baseTooltipModel.get('trigger') === 'axis';
- var cross = baseTooltipModel.get('axisPointer.type') === 'cross';
- var tooltipAxes = coordSys.getTooltipAxes(baseTooltipModel.get('axisPointer.axis'));
-
- if (triggerAxis || cross) {
- each(tooltipAxes.baseAxes, curry(saveTooltipAxisInfo, cross ? 'cross' : true, triggerAxis));
- }
-
- if (cross) {
- each(tooltipAxes.otherAxes, curry(saveTooltipAxisInfo, 'cross', false));
- }
- } // fromTooltip: true | false | 'cross'
- // triggerTooltip: true | false | null
-
-
- function saveTooltipAxisInfo(fromTooltip, triggerTooltip, axis) {
- var axisPointerModel = axis.model.getModel('axisPointer', globalAxisPointerModel);
- var axisPointerShow = axisPointerModel.get('show');
-
- if (!axisPointerShow || axisPointerShow === 'auto' && !fromTooltip && !isHandleTrigger(axisPointerModel)) {
- return;
- }
-
- if (triggerTooltip == null) {
- triggerTooltip = axisPointerModel.get('triggerTooltip');
- }
-
- axisPointerModel = fromTooltip ? makeAxisPointerModel(axis, baseTooltipModel, globalAxisPointerModel, ecModel, fromTooltip, triggerTooltip) : axisPointerModel;
- var snap = axisPointerModel.get('snap');
- var key = makeKey(axis.model);
- var involveSeries = triggerTooltip || snap || axis.type === 'category'; // If result.axesInfo[key] exist, override it (tooltip has higher priority).
-
- var axisInfo = result.axesInfo[key] = {
- key: key,
- axis: axis,
- coordSys: coordSys,
- axisPointerModel: axisPointerModel,
- triggerTooltip: triggerTooltip,
- involveSeries: involveSeries,
- snap: snap,
- useHandle: isHandleTrigger(axisPointerModel),
- seriesModels: []
- };
- axesInfoInCoordSys[key] = axisInfo;
- result.seriesInvolved |= involveSeries;
- var groupIndex = getLinkGroupIndex(linksOption, axis);
-
- if (groupIndex != null) {
- var linkGroup = linkGroups[groupIndex] || (linkGroups[groupIndex] = {
- axesInfo: {}
- });
- linkGroup.axesInfo[key] = axisInfo;
- linkGroup.mapper = linksOption[groupIndex].mapper;
- axisInfo.linkGroup = linkGroup;
- }
- }
- });
- }
-
- function makeAxisPointerModel(axis, baseTooltipModel, globalAxisPointerModel, ecModel, fromTooltip, triggerTooltip) {
- var tooltipAxisPointerModel = baseTooltipModel.getModel('axisPointer');
- var volatileOption = {};
- each(['type', 'snap', 'lineStyle', 'shadowStyle', 'label', 'animation', 'animationDurationUpdate', 'animationEasingUpdate', 'z'], function (field) {
- volatileOption[field] = zrUtil.clone(tooltipAxisPointerModel.get(field));
- }); // category axis do not auto snap, otherwise some tick that do not
- // has value can not be hovered. value/time/log axis default snap if
- // triggered from tooltip and trigger tooltip.
-
- volatileOption.snap = axis.type !== 'category' && !!triggerTooltip; // Compatibel with previous behavior, tooltip axis do not show label by default.
- // Only these properties can be overrided from tooltip to axisPointer.
-
- if (tooltipAxisPointerModel.get('type') === 'cross') {
- volatileOption.type = 'line';
- }
-
- var labelOption = volatileOption.label || (volatileOption.label = {}); // Follow the convention, do not show label when triggered by tooltip by default.
-
- labelOption.show == null && (labelOption.show = false);
-
- if (fromTooltip === 'cross') {
- // When 'cross', both axes show labels.
- var tooltipAxisPointerLabelShow = tooltipAxisPointerModel.get('label.show');
- labelOption.show = tooltipAxisPointerLabelShow != null ? tooltipAxisPointerLabelShow : true; // If triggerTooltip, this is a base axis, which should better not use cross style
- // (cross style is dashed by default)
-
- if (!triggerTooltip) {
- var crossStyle = volatileOption.lineStyle = tooltipAxisPointerModel.get('crossStyle');
- crossStyle && zrUtil.defaults(labelOption, crossStyle.textStyle);
- }
- }
-
- return axis.model.getModel('axisPointer', new Model(volatileOption, globalAxisPointerModel, ecModel));
- }
-
- function collectSeriesInfo(result, ecModel) {
- // Prepare data for axis trigger
- ecModel.eachSeries(function (seriesModel) {
- // Notice this case: this coordSys is `cartesian2D` but not `grid`.
- var coordSys = seriesModel.coordinateSystem;
- var seriesTooltipTrigger = seriesModel.get('tooltip.trigger', true);
- var seriesTooltipShow = seriesModel.get('tooltip.show', true);
-
- if (!coordSys || seriesTooltipTrigger === 'none' || seriesTooltipTrigger === false || seriesTooltipTrigger === 'item' || seriesTooltipShow === false || seriesModel.get('axisPointer.show', true) === false) {
- return;
- }
-
- each(result.coordSysAxesInfo[makeKey(coordSys.model)], function (axisInfo) {
- var axis = axisInfo.axis;
-
- if (coordSys.getAxis(axis.dim) === axis) {
- axisInfo.seriesModels.push(seriesModel);
- axisInfo.seriesDataCount == null && (axisInfo.seriesDataCount = 0);
- axisInfo.seriesDataCount += seriesModel.getData().count();
- }
- });
- }, this);
- }
- /**
- * For example:
- * {
- * axisPointer: {
- * links: [{
- * xAxisIndex: [2, 4],
- * yAxisIndex: 'all'
- * }, {
- * xAxisId: ['a5', 'a7'],
- * xAxisName: 'xxx'
- * }]
- * }
- * }
- */
-
-
- function getLinkGroupIndex(linksOption, axis) {
- var axisModel = axis.model;
- var dim = axis.dim;
-
- for (var i = 0; i < linksOption.length; i++) {
- var linkOption = linksOption[i] || {};
-
- if (checkPropInLink(linkOption[dim + 'AxisId'], axisModel.id) || checkPropInLink(linkOption[dim + 'AxisIndex'], axisModel.componentIndex) || checkPropInLink(linkOption[dim + 'AxisName'], axisModel.name)) {
- return i;
- }
- }
- }
-
- function checkPropInLink(linkPropValue, axisPropValue) {
- return linkPropValue === 'all' || zrUtil.isArray(linkPropValue) && zrUtil.indexOf(linkPropValue, axisPropValue) >= 0 || linkPropValue === axisPropValue;
- }
-
- function fixValue(axisModel) {
- var axisInfo = getAxisInfo(axisModel);
-
- if (!axisInfo) {
- return;
- }
-
- var axisPointerModel = axisInfo.axisPointerModel;
- var scale = axisInfo.axis.scale;
- var option = axisPointerModel.option;
- var status = axisPointerModel.get('status');
- var value = axisPointerModel.get('value'); // Parse init value for category and time axis.
-
- if (value != null) {
- value = scale.parse(value);
- }
-
- var useHandle = isHandleTrigger(axisPointerModel); // If `handle` used, `axisPointer` will always be displayed, so value
- // and status should be initialized.
-
- if (status == null) {
- option.status = useHandle ? 'show' : 'hide';
- }
-
- var extent = scale.getExtent().slice();
- extent[0] > extent[1] && extent.reverse();
-
- if ( // Pick a value on axis when initializing.
- value == null // If both `handle` and `dataZoom` are used, value may be out of axis extent,
- // where we should re-pick a value to keep `handle` displaying normally.
- || value > extent[1]) {
- // Make handle displayed on the end of the axis when init, which looks better.
- value = extent[1];
- }
-
- if (value < extent[0]) {
- value = extent[0];
- }
-
- option.value = value;
-
- if (useHandle) {
- option.status = axisInfo.axis.scale.isBlank() ? 'hide' : 'show';
- }
- }
-
- function getAxisInfo(axisModel) {
- var coordSysAxesInfo = (axisModel.ecModel.getComponent('axisPointer') || {}).coordSysAxesInfo;
- return coordSysAxesInfo && coordSysAxesInfo.axesInfo[makeKey(axisModel)];
- }
-
- function getAxisPointerModel(axisModel) {
- var axisInfo = getAxisInfo(axisModel);
- return axisInfo && axisInfo.axisPointerModel;
- }
-
- function isHandleTrigger(axisPointerModel) {
- return !!axisPointerModel.get('handle.show');
- }
- /**
- * @param {module:echarts/model/Model} model
- * @return {string} unique key
- */
-
-
- function makeKey(model) {
- return model.type + '||' + model.id;
- }
-
- exports.collect = collect;
- exports.fixValue = fixValue;
- exports.getAxisInfo = getAxisInfo;
- exports.getAxisPointerModel = getAxisPointerModel;
- exports.makeKey = makeKey;
-
- /***/ }),
-
- /***/ 1793:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _util = __webpack_require__(864);
-
- var createHashMap = _util.createHashMap;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // Pick color from palette for each data item.
- // Applicable for charts that require applying color palette
- // in data level (like pie, funnel, chord).
- function _default(seriesType) {
- return {
- getTargetSeries: function (ecModel) {
- // Pie and funnel may use diferrent scope
- var paletteScope = {};
- var seiresModelMap = createHashMap();
- ecModel.eachSeriesByType(seriesType, function (seriesModel) {
- seriesModel.__paletteScope = paletteScope;
- seiresModelMap.set(seriesModel.uid, seriesModel);
- });
- return seiresModelMap;
- },
- reset: function (seriesModel, ecModel) {
- var dataAll = seriesModel.getRawData();
- var idxMap = {};
- var data = seriesModel.getData();
- data.each(function (idx) {
- var rawIdx = data.getRawIndex(idx);
- idxMap[rawIdx] = idx;
- });
- dataAll.each(function (rawIdx) {
- var filteredIdx = idxMap[rawIdx]; // If series.itemStyle.normal.color is a function. itemVisual may be encoded
-
- var singleDataColor = filteredIdx != null && data.getItemVisual(filteredIdx, 'color', true);
- var singleDataBorderColor = filteredIdx != null && data.getItemVisual(filteredIdx, 'borderColor', true);
- var itemModel;
-
- if (!singleDataColor || !singleDataBorderColor) {
- // FIXME Performance
- itemModel = dataAll.getItemModel(rawIdx);
- }
-
- if (!singleDataColor) {
- var color = itemModel.get('itemStyle.color') || seriesModel.getColorFromPalette(dataAll.getName(rawIdx) || rawIdx + '', seriesModel.__paletteScope, dataAll.count()); // Data is not filtered
-
- if (filteredIdx != null) {
- data.setItemVisual(filteredIdx, 'color', color);
- }
- }
-
- if (!singleDataBorderColor) {
- var borderColor = itemModel.get('itemStyle.borderColor'); // Data is not filtered
-
- if (filteredIdx != null) {
- data.setItemVisual(filteredIdx, 'borderColor', borderColor);
- }
- }
- });
- }
- };
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1794:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var _util = __webpack_require__(864);
-
- var each = _util.each;
- var createHashMap = _util.createHashMap;
-
- var mapDataStorage = __webpack_require__(1903);
-
- var geoJSONLoader = __webpack_require__(2591);
-
- var geoSVGLoader = __webpack_require__(2596);
-
- var BoundingRect = __webpack_require__(1185);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var loaders = {
- geoJSON: geoJSONLoader,
- svg: geoSVGLoader
- };
- var _default = {
- /**
- * @param {string} mapName
- * @param {Object} nameMap
- * @return {Object} source {regions, regionsMap, nameCoordMap, boundingRect}
- */
- load: function (mapName, nameMap) {
- var regions = [];
- var regionsMap = createHashMap();
- var nameCoordMap = createHashMap();
- var boundingRect;
- var mapRecords = retrieveMap(mapName);
- each(mapRecords, function (record) {
- var singleSource = loaders[record.type].load(mapName, record);
- each(singleSource.regions, function (region) {
- var regionName = region.name; // Try use the alias in geoNameMap
-
- if (nameMap && nameMap.hasOwnProperty(regionName)) {
- region = region.cloneShallow(regionName = nameMap[regionName]);
- }
-
- regions.push(region);
- regionsMap.set(regionName, region);
- nameCoordMap.set(regionName, region.center);
- });
- var rect = singleSource.boundingRect;
-
- if (rect) {
- boundingRect ? boundingRect.union(rect) : boundingRect = rect.clone();
- }
- });
- return {
- regions: regions,
- regionsMap: regionsMap,
- nameCoordMap: nameCoordMap,
- // FIXME Always return new ?
- boundingRect: boundingRect || new BoundingRect(0, 0, 0, 0)
- };
- },
-
- /**
- * @param {string} mapName
- * @param {string} hostKey For cache.
- * @return {Array.<module:zrender/Element>} Roots.
- */
- makeGraphic: makeInvoker('makeGraphic'),
-
- /**
- * @param {string} mapName
- * @param {string} hostKey For cache.
- */
- removeGraphic: makeInvoker('removeGraphic')
- };
-
- function makeInvoker(methodName) {
- return function (mapName, hostKey) {
- var mapRecords = retrieveMap(mapName);
- var results = [];
- each(mapRecords, function (record) {
- var method = loaders[record.type][methodName];
- method && results.push(method(mapName, record, hostKey));
- });
- return results;
- };
- }
-
- function mapNotExistsError(mapName) {}
-
- function retrieveMap(mapName) {
- var mapRecords = mapDataStorage.retrieveMap(mapName) || [];
- return mapRecords;
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1795:
- /***/ (function(module, exports) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var IRRELEVANT_EXCLUDES = {
- 'axisPointer': 1,
- 'tooltip': 1,
- 'brush': 1
- };
- /**
- * Avoid that: mouse click on a elements that is over geo or graph,
- * but roam is triggered.
- */
-
- function onIrrelevantElement(e, api, targetCoordSysModel) {
- var model = api.getComponentByElement(e.topTarget); // If model is axisModel, it works only if it is injected with coordinateSystem.
-
- var coordSys = model && model.coordinateSystem;
- return model && model !== targetCoordSysModel && !IRRELEVANT_EXCLUDES[model.mainType] && coordSys && coordSys.model !== targetCoordSysModel;
- }
-
- exports.onIrrelevantElement = onIrrelevantElement;
-
- /***/ }),
-
- /***/ 1796:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var graphic = __webpack_require__(906);
-
- var textContain = __webpack_require__(1402);
-
- var formatUtil = __webpack_require__(1186);
-
- var matrix = __webpack_require__(1350);
-
- var axisHelper = __webpack_require__(1415);
-
- var AxisBuilder = __webpack_require__(1485);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @param {module:echarts/model/Model} axisPointerModel
- */
- function buildElStyle(axisPointerModel) {
- var axisPointerType = axisPointerModel.get('type');
- var styleModel = axisPointerModel.getModel(axisPointerType + 'Style');
- var style;
-
- if (axisPointerType === 'line') {
- style = styleModel.getLineStyle();
- style.fill = null;
- } else if (axisPointerType === 'shadow') {
- style = styleModel.getAreaStyle();
- style.stroke = null;
- }
-
- return style;
- }
- /**
- * @param {Function} labelPos {align, verticalAlign, position}
- */
-
-
- function buildLabelElOption(elOption, axisModel, axisPointerModel, api, labelPos) {
- var value = axisPointerModel.get('value');
- var text = getValueLabel(value, axisModel.axis, axisModel.ecModel, axisPointerModel.get('seriesDataIndices'), {
- precision: axisPointerModel.get('label.precision'),
- formatter: axisPointerModel.get('label.formatter')
- });
- var labelModel = axisPointerModel.getModel('label');
- var paddings = formatUtil.normalizeCssArray(labelModel.get('padding') || 0);
- var font = labelModel.getFont();
- var textRect = textContain.getBoundingRect(text, font);
- var position = labelPos.position;
- var width = textRect.width + paddings[1] + paddings[3];
- var height = textRect.height + paddings[0] + paddings[2]; // Adjust by align.
-
- var align = labelPos.align;
- align === 'right' && (position[0] -= width);
- align === 'center' && (position[0] -= width / 2);
- var verticalAlign = labelPos.verticalAlign;
- verticalAlign === 'bottom' && (position[1] -= height);
- verticalAlign === 'middle' && (position[1] -= height / 2); // Not overflow ec container
-
- confineInContainer(position, width, height, api);
- var bgColor = labelModel.get('backgroundColor');
-
- if (!bgColor || bgColor === 'auto') {
- bgColor = axisModel.get('axisLine.lineStyle.color');
- }
-
- elOption.label = {
- shape: {
- x: 0,
- y: 0,
- width: width,
- height: height,
- r: labelModel.get('borderRadius')
- },
- position: position.slice(),
- // TODO: rich
- style: {
- text: text,
- textFont: font,
- textFill: labelModel.getTextColor(),
- textPosition: 'inside',
- textPadding: paddings,
- fill: bgColor,
- stroke: labelModel.get('borderColor') || 'transparent',
- lineWidth: labelModel.get('borderWidth') || 0,
- shadowBlur: labelModel.get('shadowBlur'),
- shadowColor: labelModel.get('shadowColor'),
- shadowOffsetX: labelModel.get('shadowOffsetX'),
- shadowOffsetY: labelModel.get('shadowOffsetY')
- },
- // Lable should be over axisPointer.
- z2: 10
- };
- } // Do not overflow ec container
-
-
- function confineInContainer(position, width, height, api) {
- var viewWidth = api.getWidth();
- var viewHeight = api.getHeight();
- position[0] = Math.min(position[0] + width, viewWidth) - width;
- position[1] = Math.min(position[1] + height, viewHeight) - height;
- position[0] = Math.max(position[0], 0);
- position[1] = Math.max(position[1], 0);
- }
- /**
- * @param {number} value
- * @param {module:echarts/coord/Axis} axis
- * @param {module:echarts/model/Global} ecModel
- * @param {Object} opt
- * @param {Array.<Object>} seriesDataIndices
- * @param {number|string} opt.precision 'auto' or a number
- * @param {string|Function} opt.formatter label formatter
- */
-
-
- function getValueLabel(value, axis, ecModel, seriesDataIndices, opt) {
- value = axis.scale.parse(value);
- var text = axis.scale.getLabel( // If `precision` is set, width can be fixed (like '12.00500'), which
- // helps to debounce when when moving label.
- value, {
- precision: opt.precision
- });
- var formatter = opt.formatter;
-
- if (formatter) {
- var params = {
- value: axisHelper.getAxisRawValue(axis, value),
- axisDimension: axis.dim,
- axisIndex: axis.index,
- seriesData: []
- };
- zrUtil.each(seriesDataIndices, function (idxItem) {
- var series = ecModel.getSeriesByIndex(idxItem.seriesIndex);
- var dataIndex = idxItem.dataIndexInside;
- var dataParams = series && series.getDataParams(dataIndex);
- dataParams && params.seriesData.push(dataParams);
- });
-
- if (zrUtil.isString(formatter)) {
- text = formatter.replace('{value}', text);
- } else if (zrUtil.isFunction(formatter)) {
- text = formatter(params);
- }
- }
-
- return text;
- }
- /**
- * @param {module:echarts/coord/Axis} axis
- * @param {number} value
- * @param {Object} layoutInfo {
- * rotation, position, labelOffset, labelDirection, labelMargin
- * }
- */
-
-
- function getTransformedPosition(axis, value, layoutInfo) {
- var transform = matrix.create();
- matrix.rotate(transform, transform, layoutInfo.rotation);
- matrix.translate(transform, transform, layoutInfo.position);
- return graphic.applyTransform([axis.dataToCoord(value), (layoutInfo.labelOffset || 0) + (layoutInfo.labelDirection || 1) * (layoutInfo.labelMargin || 0)], transform);
- }
-
- function buildCartesianSingleLabelElOption(value, elOption, layoutInfo, axisModel, axisPointerModel, api) {
- var textLayout = AxisBuilder.innerTextLayout(layoutInfo.rotation, 0, layoutInfo.labelDirection);
- layoutInfo.labelMargin = axisPointerModel.get('label.margin');
- buildLabelElOption(elOption, axisModel, axisPointerModel, api, {
- position: getTransformedPosition(axisModel.axis, value, layoutInfo),
- align: textLayout.textAlign,
- verticalAlign: textLayout.textVerticalAlign
- });
- }
- /**
- * @param {Array.<number>} p1
- * @param {Array.<number>} p2
- * @param {number} [xDimIndex=0] or 1
- */
-
-
- function makeLineShape(p1, p2, xDimIndex) {
- xDimIndex = xDimIndex || 0;
- return {
- x1: p1[xDimIndex],
- y1: p1[1 - xDimIndex],
- x2: p2[xDimIndex],
- y2: p2[1 - xDimIndex]
- };
- }
- /**
- * @param {Array.<number>} xy
- * @param {Array.<number>} wh
- * @param {number} [xDimIndex=0] or 1
- */
-
-
- function makeRectShape(xy, wh, xDimIndex) {
- xDimIndex = xDimIndex || 0;
- return {
- x: xy[xDimIndex],
- y: xy[1 - xDimIndex],
- width: wh[xDimIndex],
- height: wh[1 - xDimIndex]
- };
- }
-
- function makeSectorShape(cx, cy, r0, r, startAngle, endAngle) {
- return {
- cx: cx,
- cy: cy,
- r0: r0,
- r: r,
- startAngle: startAngle,
- endAngle: endAngle,
- clockwise: true
- };
- }
-
- exports.buildElStyle = buildElStyle;
- exports.buildLabelElOption = buildLabelElOption;
- exports.getValueLabel = getValueLabel;
- exports.getTransformedPosition = getTransformedPosition;
- exports.buildCartesianSingleLabelElOption = buildCartesianSingleLabelElOption;
- exports.makeLineShape = makeLineShape;
- exports.makeRectShape = makeRectShape;
- exports.makeSectorShape = makeSectorShape;
-
- /***/ }),
-
- /***/ 1797:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var VisualMapping = __webpack_require__(1523);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @file Visual solution, for consistent option specification.
- */
- var each = zrUtil.each;
-
- function hasKeys(obj) {
- if (obj) {
- for (var name in obj) {
- if (obj.hasOwnProperty(name)) {
- return true;
- }
- }
- }
- }
- /**
- * @param {Object} option
- * @param {Array.<string>} stateList
- * @param {Function} [supplementVisualOption]
- * @return {Object} visualMappings <state, <visualType, module:echarts/visual/VisualMapping>>
- */
-
-
- function createVisualMappings(option, stateList, supplementVisualOption) {
- var visualMappings = {};
- each(stateList, function (state) {
- var mappings = visualMappings[state] = createMappings();
- each(option[state], function (visualData, visualType) {
- if (!VisualMapping.isValidType(visualType)) {
- return;
- }
-
- var mappingOption = {
- type: visualType,
- visual: visualData
- };
- supplementVisualOption && supplementVisualOption(mappingOption, state);
- mappings[visualType] = new VisualMapping(mappingOption); // Prepare a alpha for opacity, for some case that opacity
- // is not supported, such as rendering using gradient color.
-
- if (visualType === 'opacity') {
- mappingOption = zrUtil.clone(mappingOption);
- mappingOption.type = 'colorAlpha';
- mappings.__hidden.__alphaForOpacity = new VisualMapping(mappingOption);
- }
- });
- });
- return visualMappings;
-
- function createMappings() {
- var Creater = function () {}; // Make sure hidden fields will not be visited by
- // object iteration (with hasOwnProperty checking).
-
-
- Creater.prototype.__hidden = Creater.prototype;
- var obj = new Creater();
- return obj;
- }
- }
- /**
- * @param {Object} thisOption
- * @param {Object} newOption
- * @param {Array.<string>} keys
- */
-
-
- function replaceVisualOption(thisOption, newOption, keys) {
- // Visual attributes merge is not supported, otherwise it
- // brings overcomplicated merge logic. See #2853. So if
- // newOption has anyone of these keys, all of these keys
- // will be reset. Otherwise, all keys remain.
- var has;
- zrUtil.each(keys, function (key) {
- if (newOption.hasOwnProperty(key) && hasKeys(newOption[key])) {
- has = true;
- }
- });
- has && zrUtil.each(keys, function (key) {
- if (newOption.hasOwnProperty(key) && hasKeys(newOption[key])) {
- thisOption[key] = zrUtil.clone(newOption[key]);
- } else {
- delete thisOption[key];
- }
- });
- }
- /**
- * @param {Array.<string>} stateList
- * @param {Object} visualMappings <state, Object.<visualType, module:echarts/visual/VisualMapping>>
- * @param {module:echarts/data/List} list
- * @param {Function} getValueState param: valueOrIndex, return: state.
- * @param {object} [scope] Scope for getValueState
- * @param {string} [dimension] Concrete dimension, if used.
- */
- // ???! handle brush?
-
-
- function applyVisual(stateList, visualMappings, data, getValueState, scope, dimension) {
- var visualTypesMap = {};
- zrUtil.each(stateList, function (state) {
- var visualTypes = VisualMapping.prepareVisualTypes(visualMappings[state]);
- visualTypesMap[state] = visualTypes;
- });
- var dataIndex;
-
- function getVisual(key) {
- return data.getItemVisual(dataIndex, key);
- }
-
- function setVisual(key, value) {
- data.setItemVisual(dataIndex, key, value);
- }
-
- if (dimension == null) {
- data.each(eachItem);
- } else {
- data.each([dimension], eachItem);
- }
-
- function eachItem(valueOrIndex, index) {
- dataIndex = dimension == null ? valueOrIndex : index;
- var rawDataItem = data.getRawDataItem(dataIndex); // Consider performance
-
- if (rawDataItem && rawDataItem.visualMap === false) {
- return;
- }
-
- var valueState = getValueState.call(scope, valueOrIndex);
- var mappings = visualMappings[valueState];
- var visualTypes = visualTypesMap[valueState];
-
- for (var i = 0, len = visualTypes.length; i < len; i++) {
- var type = visualTypes[i];
- mappings[type] && mappings[type].applyVisual(valueOrIndex, getVisual, setVisual);
- }
- }
- }
- /**
- * @param {module:echarts/data/List} data
- * @param {Array.<string>} stateList
- * @param {Object} visualMappings <state, Object.<visualType, module:echarts/visual/VisualMapping>>
- * @param {Function} getValueState param: valueOrIndex, return: state.
- * @param {number} [dim] dimension or dimension index.
- */
-
-
- function incrementalApplyVisual(stateList, visualMappings, getValueState, dim) {
- var visualTypesMap = {};
- zrUtil.each(stateList, function (state) {
- var visualTypes = VisualMapping.prepareVisualTypes(visualMappings[state]);
- visualTypesMap[state] = visualTypes;
- });
-
- function progress(params, data) {
- if (dim != null) {
- dim = data.getDimension(dim);
- }
-
- function getVisual(key) {
- return data.getItemVisual(dataIndex, key);
- }
-
- function setVisual(key, value) {
- data.setItemVisual(dataIndex, key, value);
- }
-
- var dataIndex;
-
- while ((dataIndex = params.next()) != null) {
- var rawDataItem = data.getRawDataItem(dataIndex); // Consider performance
-
- if (rawDataItem && rawDataItem.visualMap === false) {
- continue;
- }
-
- var value = dim != null ? data.get(dim, dataIndex, true) : dataIndex;
- var valueState = getValueState(value);
- var mappings = visualMappings[valueState];
- var visualTypes = visualTypesMap[valueState];
-
- for (var i = 0, len = visualTypes.length; i < len; i++) {
- var type = visualTypes[i];
- mappings[type] && mappings[type].applyVisual(value, getVisual, setVisual);
- }
- }
- }
-
- return {
- progress: progress
- };
- }
-
- exports.createVisualMappings = createVisualMappings;
- exports.replaceVisualOption = replaceVisualOption;
- exports.applyVisual = applyVisual;
- exports.incrementalApplyVisual = incrementalApplyVisual;
-
- /***/ }),
-
- /***/ 1893:
- /***/ (function(module, exports, __webpack_require__) {
-
- var matrix = __webpack_require__(1350);
-
- var vector = __webpack_require__(1180);
-
- /**
- * 提供变换扩展
- * @module zrender/mixin/Transformable
- * @author pissang (https://www.github.com/pissang)
- */
- var mIdentity = matrix.identity;
- var EPSILON = 5e-5;
-
- function isNotAroundZero(val) {
- return val > EPSILON || val < -EPSILON;
- }
- /**
- * @alias module:zrender/mixin/Transformable
- * @constructor
- */
-
-
- var Transformable = function (opts) {
- opts = opts || {}; // If there are no given position, rotation, scale
-
- if (!opts.position) {
- /**
- * 平移
- * @type {Array.<number>}
- * @default [0, 0]
- */
- this.position = [0, 0];
- }
-
- if (opts.rotation == null) {
- /**
- * 旋转
- * @type {Array.<number>}
- * @default 0
- */
- this.rotation = 0;
- }
-
- if (!opts.scale) {
- /**
- * 缩放
- * @type {Array.<number>}
- * @default [1, 1]
- */
- this.scale = [1, 1];
- }
- /**
- * 旋转和缩放的原点
- * @type {Array.<number>}
- * @default null
- */
-
-
- this.origin = this.origin || null;
- };
-
- var transformableProto = Transformable.prototype;
- transformableProto.transform = null;
- /**
- * 判断是否需要有坐标变换
- * 如果有坐标变换, 则从position, rotation, scale以及父节点的transform计算出自身的transform矩阵
- */
-
- transformableProto.needLocalTransform = function () {
- return isNotAroundZero(this.rotation) || isNotAroundZero(this.position[0]) || isNotAroundZero(this.position[1]) || isNotAroundZero(this.scale[0] - 1) || isNotAroundZero(this.scale[1] - 1);
- };
-
- var scaleTmp = [];
-
- transformableProto.updateTransform = function () {
- var parent = this.parent;
- var parentHasTransform = parent && parent.transform;
- var needLocalTransform = this.needLocalTransform();
- var m = this.transform;
-
- if (!(needLocalTransform || parentHasTransform)) {
- m && mIdentity(m);
- return;
- }
-
- m = m || matrix.create();
-
- if (needLocalTransform) {
- this.getLocalTransform(m);
- } else {
- mIdentity(m);
- } // 应用父节点变换
-
-
- if (parentHasTransform) {
- if (needLocalTransform) {
- matrix.mul(m, parent.transform, m);
- } else {
- matrix.copy(m, parent.transform);
- }
- } // 保存这个变换矩阵
-
-
- this.transform = m;
- var globalScaleRatio = this.globalScaleRatio;
-
- if (globalScaleRatio != null && globalScaleRatio !== 1) {
- this.getGlobalScale(scaleTmp);
- var relX = scaleTmp[0] < 0 ? -1 : 1;
- var relY = scaleTmp[1] < 0 ? -1 : 1;
- var sx = ((scaleTmp[0] - relX) * globalScaleRatio + relX) / scaleTmp[0] || 0;
- var sy = ((scaleTmp[1] - relY) * globalScaleRatio + relY) / scaleTmp[1] || 0;
- m[0] *= sx;
- m[1] *= sx;
- m[2] *= sy;
- m[3] *= sy;
- }
-
- this.invTransform = this.invTransform || matrix.create();
- matrix.invert(this.invTransform, m);
- };
-
- transformableProto.getLocalTransform = function (m) {
- return Transformable.getLocalTransform(this, m);
- };
- /**
- * 将自己的transform应用到context上
- * @param {CanvasRenderingContext2D} ctx
- */
-
-
- transformableProto.setTransform = function (ctx) {
- var m = this.transform;
- var dpr = ctx.dpr || 1;
-
- if (m) {
- ctx.setTransform(dpr * m[0], dpr * m[1], dpr * m[2], dpr * m[3], dpr * m[4], dpr * m[5]);
- } else {
- ctx.setTransform(dpr, 0, 0, dpr, 0, 0);
- }
- };
-
- transformableProto.restoreTransform = function (ctx) {
- var dpr = ctx.dpr || 1;
- ctx.setTransform(dpr, 0, 0, dpr, 0, 0);
- };
-
- var tmpTransform = [];
- var originTransform = matrix.create();
-
- transformableProto.setLocalTransform = function (m) {
- if (!m) {
- // TODO return or set identity?
- return;
- }
-
- var sx = m[0] * m[0] + m[1] * m[1];
- var sy = m[2] * m[2] + m[3] * m[3];
- var position = this.position;
- var scale = this.scale;
-
- if (isNotAroundZero(sx - 1)) {
- sx = Math.sqrt(sx);
- }
-
- if (isNotAroundZero(sy - 1)) {
- sy = Math.sqrt(sy);
- }
-
- if (m[0] < 0) {
- sx = -sx;
- }
-
- if (m[3] < 0) {
- sy = -sy;
- }
-
- position[0] = m[4];
- position[1] = m[5];
- scale[0] = sx;
- scale[1] = sy;
- this.rotation = Math.atan2(-m[1] / sy, m[0] / sx);
- };
- /**
- * 分解`transform`矩阵到`position`, `rotation`, `scale`
- */
-
-
- transformableProto.decomposeTransform = function () {
- if (!this.transform) {
- return;
- }
-
- var parent = this.parent;
- var m = this.transform;
-
- if (parent && parent.transform) {
- // Get local transform and decompose them to position, scale, rotation
- matrix.mul(tmpTransform, parent.invTransform, m);
- m = tmpTransform;
- }
-
- var origin = this.origin;
-
- if (origin && (origin[0] || origin[1])) {
- originTransform[4] = origin[0];
- originTransform[5] = origin[1];
- matrix.mul(tmpTransform, m, originTransform);
- tmpTransform[4] -= origin[0];
- tmpTransform[5] -= origin[1];
- m = tmpTransform;
- }
-
- this.setLocalTransform(m);
- };
- /**
- * Get global scale
- * @return {Array.<number>}
- */
-
-
- transformableProto.getGlobalScale = function (out) {
- var m = this.transform;
- out = out || [];
-
- if (!m) {
- out[0] = 1;
- out[1] = 1;
- return out;
- }
-
- out[0] = Math.sqrt(m[0] * m[0] + m[1] * m[1]);
- out[1] = Math.sqrt(m[2] * m[2] + m[3] * m[3]);
-
- if (m[0] < 0) {
- out[0] = -out[0];
- }
-
- if (m[3] < 0) {
- out[1] = -out[1];
- }
-
- return out;
- };
- /**
- * 变换坐标位置到 shape 的局部坐标空间
- * @method
- * @param {number} x
- * @param {number} y
- * @return {Array.<number>}
- */
-
-
- transformableProto.transformCoordToLocal = function (x, y) {
- var v2 = [x, y];
- var invTransform = this.invTransform;
-
- if (invTransform) {
- vector.applyTransform(v2, v2, invTransform);
- }
-
- return v2;
- };
- /**
- * 变换局部坐标位置到全局坐标空间
- * @method
- * @param {number} x
- * @param {number} y
- * @return {Array.<number>}
- */
-
-
- transformableProto.transformCoordToGlobal = function (x, y) {
- var v2 = [x, y];
- var transform = this.transform;
-
- if (transform) {
- vector.applyTransform(v2, v2, transform);
- }
-
- return v2;
- };
- /**
- * @static
- * @param {Object} target
- * @param {Array.<number>} target.origin
- * @param {number} target.rotation
- * @param {Array.<number>} target.position
- * @param {Array.<number>} [m]
- */
-
-
- Transformable.getLocalTransform = function (target, m) {
- m = m || [];
- mIdentity(m);
- var origin = target.origin;
- var scale = target.scale || [1, 1];
- var rotation = target.rotation || 0;
- var position = target.position || [0, 0];
-
- if (origin) {
- // Translate to origin
- m[4] -= origin[0];
- m[5] -= origin[1];
- }
-
- matrix.scale(m, m, scale);
-
- if (rotation) {
- matrix.rotate(m, m, rotation);
- }
-
- if (origin) {
- // Translate back from origin
- m[4] += origin[0];
- m[5] += origin[1];
- }
-
- m[4] += position[0];
- m[5] += position[1];
- return m;
- };
-
- var _default = Transformable;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1894:
- /***/ (function(module, exports) {
-
- // https://github.com/mziccard/node-timsort
- var DEFAULT_MIN_MERGE = 32;
- var DEFAULT_MIN_GALLOPING = 7;
- var DEFAULT_TMP_STORAGE_LENGTH = 256;
-
- function minRunLength(n) {
- var r = 0;
-
- while (n >= DEFAULT_MIN_MERGE) {
- r |= n & 1;
- n >>= 1;
- }
-
- return n + r;
- }
-
- function makeAscendingRun(array, lo, hi, compare) {
- var runHi = lo + 1;
-
- if (runHi === hi) {
- return 1;
- }
-
- if (compare(array[runHi++], array[lo]) < 0) {
- while (runHi < hi && compare(array[runHi], array[runHi - 1]) < 0) {
- runHi++;
- }
-
- reverseRun(array, lo, runHi);
- } else {
- while (runHi < hi && compare(array[runHi], array[runHi - 1]) >= 0) {
- runHi++;
- }
- }
-
- return runHi - lo;
- }
-
- function reverseRun(array, lo, hi) {
- hi--;
-
- while (lo < hi) {
- var t = array[lo];
- array[lo++] = array[hi];
- array[hi--] = t;
- }
- }
-
- function binaryInsertionSort(array, lo, hi, start, compare) {
- if (start === lo) {
- start++;
- }
-
- for (; start < hi; start++) {
- var pivot = array[start];
- var left = lo;
- var right = start;
- var mid;
-
- while (left < right) {
- mid = left + right >>> 1;
-
- if (compare(pivot, array[mid]) < 0) {
- right = mid;
- } else {
- left = mid + 1;
- }
- }
-
- var n = start - left;
-
- switch (n) {
- case 3:
- array[left + 3] = array[left + 2];
-
- case 2:
- array[left + 2] = array[left + 1];
-
- case 1:
- array[left + 1] = array[left];
- break;
-
- default:
- while (n > 0) {
- array[left + n] = array[left + n - 1];
- n--;
- }
-
- }
-
- array[left] = pivot;
- }
- }
-
- function gallopLeft(value, array, start, length, hint, compare) {
- var lastOffset = 0;
- var maxOffset = 0;
- var offset = 1;
-
- if (compare(value, array[start + hint]) > 0) {
- maxOffset = length - hint;
-
- while (offset < maxOffset && compare(value, array[start + hint + offset]) > 0) {
- lastOffset = offset;
- offset = (offset << 1) + 1;
-
- if (offset <= 0) {
- offset = maxOffset;
- }
- }
-
- if (offset > maxOffset) {
- offset = maxOffset;
- }
-
- lastOffset += hint;
- offset += hint;
- } else {
- maxOffset = hint + 1;
-
- while (offset < maxOffset && compare(value, array[start + hint - offset]) <= 0) {
- lastOffset = offset;
- offset = (offset << 1) + 1;
-
- if (offset <= 0) {
- offset = maxOffset;
- }
- }
-
- if (offset > maxOffset) {
- offset = maxOffset;
- }
-
- var tmp = lastOffset;
- lastOffset = hint - offset;
- offset = hint - tmp;
- }
-
- lastOffset++;
-
- while (lastOffset < offset) {
- var m = lastOffset + (offset - lastOffset >>> 1);
-
- if (compare(value, array[start + m]) > 0) {
- lastOffset = m + 1;
- } else {
- offset = m;
- }
- }
-
- return offset;
- }
-
- function gallopRight(value, array, start, length, hint, compare) {
- var lastOffset = 0;
- var maxOffset = 0;
- var offset = 1;
-
- if (compare(value, array[start + hint]) < 0) {
- maxOffset = hint + 1;
-
- while (offset < maxOffset && compare(value, array[start + hint - offset]) < 0) {
- lastOffset = offset;
- offset = (offset << 1) + 1;
-
- if (offset <= 0) {
- offset = maxOffset;
- }
- }
-
- if (offset > maxOffset) {
- offset = maxOffset;
- }
-
- var tmp = lastOffset;
- lastOffset = hint - offset;
- offset = hint - tmp;
- } else {
- maxOffset = length - hint;
-
- while (offset < maxOffset && compare(value, array[start + hint + offset]) >= 0) {
- lastOffset = offset;
- offset = (offset << 1) + 1;
-
- if (offset <= 0) {
- offset = maxOffset;
- }
- }
-
- if (offset > maxOffset) {
- offset = maxOffset;
- }
-
- lastOffset += hint;
- offset += hint;
- }
-
- lastOffset++;
-
- while (lastOffset < offset) {
- var m = lastOffset + (offset - lastOffset >>> 1);
-
- if (compare(value, array[start + m]) < 0) {
- offset = m;
- } else {
- lastOffset = m + 1;
- }
- }
-
- return offset;
- }
-
- function TimSort(array, compare) {
- var minGallop = DEFAULT_MIN_GALLOPING;
- var length = 0;
- var tmpStorageLength = DEFAULT_TMP_STORAGE_LENGTH;
- var stackLength = 0;
- var runStart;
- var runLength;
- var stackSize = 0;
- length = array.length;
-
- if (length < 2 * DEFAULT_TMP_STORAGE_LENGTH) {
- tmpStorageLength = length >>> 1;
- }
-
- var tmp = [];
- stackLength = length < 120 ? 5 : length < 1542 ? 10 : length < 119151 ? 19 : 40;
- runStart = [];
- runLength = [];
-
- function pushRun(_runStart, _runLength) {
- runStart[stackSize] = _runStart;
- runLength[stackSize] = _runLength;
- stackSize += 1;
- }
-
- function mergeRuns() {
- while (stackSize > 1) {
- var n = stackSize - 2;
-
- if (n >= 1 && runLength[n - 1] <= runLength[n] + runLength[n + 1] || n >= 2 && runLength[n - 2] <= runLength[n] + runLength[n - 1]) {
- if (runLength[n - 1] < runLength[n + 1]) {
- n--;
- }
- } else if (runLength[n] > runLength[n + 1]) {
- break;
- }
-
- mergeAt(n);
- }
- }
-
- function forceMergeRuns() {
- while (stackSize > 1) {
- var n = stackSize - 2;
-
- if (n > 0 && runLength[n - 1] < runLength[n + 1]) {
- n--;
- }
-
- mergeAt(n);
- }
- }
-
- function mergeAt(i) {
- var start1 = runStart[i];
- var length1 = runLength[i];
- var start2 = runStart[i + 1];
- var length2 = runLength[i + 1];
- runLength[i] = length1 + length2;
-
- if (i === stackSize - 3) {
- runStart[i + 1] = runStart[i + 2];
- runLength[i + 1] = runLength[i + 2];
- }
-
- stackSize--;
- var k = gallopRight(array[start2], array, start1, length1, 0, compare);
- start1 += k;
- length1 -= k;
-
- if (length1 === 0) {
- return;
- }
-
- length2 = gallopLeft(array[start1 + length1 - 1], array, start2, length2, length2 - 1, compare);
-
- if (length2 === 0) {
- return;
- }
-
- if (length1 <= length2) {
- mergeLow(start1, length1, start2, length2);
- } else {
- mergeHigh(start1, length1, start2, length2);
- }
- }
-
- function mergeLow(start1, length1, start2, length2) {
- var i = 0;
-
- for (i = 0; i < length1; i++) {
- tmp[i] = array[start1 + i];
- }
-
- var cursor1 = 0;
- var cursor2 = start2;
- var dest = start1;
- array[dest++] = array[cursor2++];
-
- if (--length2 === 0) {
- for (i = 0; i < length1; i++) {
- array[dest + i] = tmp[cursor1 + i];
- }
-
- return;
- }
-
- if (length1 === 1) {
- for (i = 0; i < length2; i++) {
- array[dest + i] = array[cursor2 + i];
- }
-
- array[dest + length2] = tmp[cursor1];
- return;
- }
-
- var _minGallop = minGallop;
- var count1;
- var count2;
- var exit;
-
- while (1) {
- count1 = 0;
- count2 = 0;
- exit = false;
-
- do {
- if (compare(array[cursor2], tmp[cursor1]) < 0) {
- array[dest++] = array[cursor2++];
- count2++;
- count1 = 0;
-
- if (--length2 === 0) {
- exit = true;
- break;
- }
- } else {
- array[dest++] = tmp[cursor1++];
- count1++;
- count2 = 0;
-
- if (--length1 === 1) {
- exit = true;
- break;
- }
- }
- } while ((count1 | count2) < _minGallop);
-
- if (exit) {
- break;
- }
-
- do {
- count1 = gallopRight(array[cursor2], tmp, cursor1, length1, 0, compare);
-
- if (count1 !== 0) {
- for (i = 0; i < count1; i++) {
- array[dest + i] = tmp[cursor1 + i];
- }
-
- dest += count1;
- cursor1 += count1;
- length1 -= count1;
-
- if (length1 <= 1) {
- exit = true;
- break;
- }
- }
-
- array[dest++] = array[cursor2++];
-
- if (--length2 === 0) {
- exit = true;
- break;
- }
-
- count2 = gallopLeft(tmp[cursor1], array, cursor2, length2, 0, compare);
-
- if (count2 !== 0) {
- for (i = 0; i < count2; i++) {
- array[dest + i] = array[cursor2 + i];
- }
-
- dest += count2;
- cursor2 += count2;
- length2 -= count2;
-
- if (length2 === 0) {
- exit = true;
- break;
- }
- }
-
- array[dest++] = tmp[cursor1++];
-
- if (--length1 === 1) {
- exit = true;
- break;
- }
-
- _minGallop--;
- } while (count1 >= DEFAULT_MIN_GALLOPING || count2 >= DEFAULT_MIN_GALLOPING);
-
- if (exit) {
- break;
- }
-
- if (_minGallop < 0) {
- _minGallop = 0;
- }
-
- _minGallop += 2;
- }
-
- minGallop = _minGallop;
- minGallop < 1 && (minGallop = 1);
-
- if (length1 === 1) {
- for (i = 0; i < length2; i++) {
- array[dest + i] = array[cursor2 + i];
- }
-
- array[dest + length2] = tmp[cursor1];
- } else if (length1 === 0) {
- throw new Error(); // throw new Error('mergeLow preconditions were not respected');
- } else {
- for (i = 0; i < length1; i++) {
- array[dest + i] = tmp[cursor1 + i];
- }
- }
- }
-
- function mergeHigh(start1, length1, start2, length2) {
- var i = 0;
-
- for (i = 0; i < length2; i++) {
- tmp[i] = array[start2 + i];
- }
-
- var cursor1 = start1 + length1 - 1;
- var cursor2 = length2 - 1;
- var dest = start2 + length2 - 1;
- var customCursor = 0;
- var customDest = 0;
- array[dest--] = array[cursor1--];
-
- if (--length1 === 0) {
- customCursor = dest - (length2 - 1);
-
- for (i = 0; i < length2; i++) {
- array[customCursor + i] = tmp[i];
- }
-
- return;
- }
-
- if (length2 === 1) {
- dest -= length1;
- cursor1 -= length1;
- customDest = dest + 1;
- customCursor = cursor1 + 1;
-
- for (i = length1 - 1; i >= 0; i--) {
- array[customDest + i] = array[customCursor + i];
- }
-
- array[dest] = tmp[cursor2];
- return;
- }
-
- var _minGallop = minGallop;
-
- while (true) {
- var count1 = 0;
- var count2 = 0;
- var exit = false;
-
- do {
- if (compare(tmp[cursor2], array[cursor1]) < 0) {
- array[dest--] = array[cursor1--];
- count1++;
- count2 = 0;
-
- if (--length1 === 0) {
- exit = true;
- break;
- }
- } else {
- array[dest--] = tmp[cursor2--];
- count2++;
- count1 = 0;
-
- if (--length2 === 1) {
- exit = true;
- break;
- }
- }
- } while ((count1 | count2) < _minGallop);
-
- if (exit) {
- break;
- }
-
- do {
- count1 = length1 - gallopRight(tmp[cursor2], array, start1, length1, length1 - 1, compare);
-
- if (count1 !== 0) {
- dest -= count1;
- cursor1 -= count1;
- length1 -= count1;
- customDest = dest + 1;
- customCursor = cursor1 + 1;
-
- for (i = count1 - 1; i >= 0; i--) {
- array[customDest + i] = array[customCursor + i];
- }
-
- if (length1 === 0) {
- exit = true;
- break;
- }
- }
-
- array[dest--] = tmp[cursor2--];
-
- if (--length2 === 1) {
- exit = true;
- break;
- }
-
- count2 = length2 - gallopLeft(array[cursor1], tmp, 0, length2, length2 - 1, compare);
-
- if (count2 !== 0) {
- dest -= count2;
- cursor2 -= count2;
- length2 -= count2;
- customDest = dest + 1;
- customCursor = cursor2 + 1;
-
- for (i = 0; i < count2; i++) {
- array[customDest + i] = tmp[customCursor + i];
- }
-
- if (length2 <= 1) {
- exit = true;
- break;
- }
- }
-
- array[dest--] = array[cursor1--];
-
- if (--length1 === 0) {
- exit = true;
- break;
- }
-
- _minGallop--;
- } while (count1 >= DEFAULT_MIN_GALLOPING || count2 >= DEFAULT_MIN_GALLOPING);
-
- if (exit) {
- break;
- }
-
- if (_minGallop < 0) {
- _minGallop = 0;
- }
-
- _minGallop += 2;
- }
-
- minGallop = _minGallop;
-
- if (minGallop < 1) {
- minGallop = 1;
- }
-
- if (length2 === 1) {
- dest -= length1;
- cursor1 -= length1;
- customDest = dest + 1;
- customCursor = cursor1 + 1;
-
- for (i = length1 - 1; i >= 0; i--) {
- array[customDest + i] = array[customCursor + i];
- }
-
- array[dest] = tmp[cursor2];
- } else if (length2 === 0) {
- throw new Error(); // throw new Error('mergeHigh preconditions were not respected');
- } else {
- customCursor = dest - (length2 - 1);
-
- for (i = 0; i < length2; i++) {
- array[customCursor + i] = tmp[i];
- }
- }
- }
-
- this.mergeRuns = mergeRuns;
- this.forceMergeRuns = forceMergeRuns;
- this.pushRun = pushRun;
- }
-
- function sort(array, compare, lo, hi) {
- if (!lo) {
- lo = 0;
- }
-
- if (!hi) {
- hi = array.length;
- }
-
- var remaining = hi - lo;
-
- if (remaining < 2) {
- return;
- }
-
- var runLength = 0;
-
- if (remaining < DEFAULT_MIN_MERGE) {
- runLength = makeAscendingRun(array, lo, hi, compare);
- binaryInsertionSort(array, lo, hi, lo + runLength, compare);
- return;
- }
-
- var ts = new TimSort(array, compare);
- var minRun = minRunLength(remaining);
-
- do {
- runLength = makeAscendingRun(array, lo, hi, compare);
-
- if (runLength < minRun) {
- var force = remaining;
-
- if (force > minRun) {
- force = minRun;
- }
-
- binaryInsertionSort(array, lo, lo + force, lo + runLength, compare);
- runLength = force;
- }
-
- ts.pushRun(lo, runLength);
- ts.mergeRuns();
- remaining -= runLength;
- lo += runLength;
- } while (remaining !== 0);
-
- ts.forceMergeRuns();
- }
-
- module.exports = sort;
-
- /***/ }),
-
- /***/ 1895:
- /***/ (function(module, exports, __webpack_require__) {
-
- var fixShadow = __webpack_require__(2262);
-
- var _constant = __webpack_require__(1782);
-
- var ContextCachedBy = _constant.ContextCachedBy;
- var STYLE_COMMON_PROPS = [['shadowBlur', 0], ['shadowOffsetX', 0], ['shadowOffsetY', 0], ['shadowColor', '#000'], ['lineCap', 'butt'], ['lineJoin', 'miter'], ['miterLimit', 10]]; // var SHADOW_PROPS = STYLE_COMMON_PROPS.slice(0, 4);
- // var LINE_PROPS = STYLE_COMMON_PROPS.slice(4);
-
- var Style = function (opts) {
- this.extendFrom(opts, false);
- };
-
- function createLinearGradient(ctx, obj, rect) {
- var x = obj.x == null ? 0 : obj.x;
- var x2 = obj.x2 == null ? 1 : obj.x2;
- var y = obj.y == null ? 0 : obj.y;
- var y2 = obj.y2 == null ? 0 : obj.y2;
-
- if (!obj.global) {
- x = x * rect.width + rect.x;
- x2 = x2 * rect.width + rect.x;
- y = y * rect.height + rect.y;
- y2 = y2 * rect.height + rect.y;
- } // Fix NaN when rect is Infinity
-
-
- x = isNaN(x) ? 0 : x;
- x2 = isNaN(x2) ? 1 : x2;
- y = isNaN(y) ? 0 : y;
- y2 = isNaN(y2) ? 0 : y2;
- var canvasGradient = ctx.createLinearGradient(x, y, x2, y2);
- return canvasGradient;
- }
-
- function createRadialGradient(ctx, obj, rect) {
- var width = rect.width;
- var height = rect.height;
- var min = Math.min(width, height);
- var x = obj.x == null ? 0.5 : obj.x;
- var y = obj.y == null ? 0.5 : obj.y;
- var r = obj.r == null ? 0.5 : obj.r;
-
- if (!obj.global) {
- x = x * width + rect.x;
- y = y * height + rect.y;
- r = r * min;
- }
-
- var canvasGradient = ctx.createRadialGradient(x, y, 0, x, y, r);
- return canvasGradient;
- }
-
- Style.prototype = {
- constructor: Style,
-
- /**
- * @type {string}
- */
- fill: '#000',
-
- /**
- * @type {string}
- */
- stroke: null,
-
- /**
- * @type {number}
- */
- opacity: 1,
-
- /**
- * @type {number}
- */
- fillOpacity: null,
-
- /**
- * @type {number}
- */
- strokeOpacity: null,
-
- /**
- * `true` is not supported.
- * `false`/`null`/`undefined` are the same.
- * `false` is used to remove lineDash in some
- * case that `null`/`undefined` can not be set.
- * (e.g., emphasis.lineStyle in echarts)
- * @type {Array.<number>|boolean}
- */
- lineDash: null,
-
- /**
- * @type {number}
- */
- lineDashOffset: 0,
-
- /**
- * @type {number}
- */
- shadowBlur: 0,
-
- /**
- * @type {number}
- */
- shadowOffsetX: 0,
-
- /**
- * @type {number}
- */
- shadowOffsetY: 0,
-
- /**
- * @type {number}
- */
- lineWidth: 1,
-
- /**
- * If stroke ignore scale
- * @type {Boolean}
- */
- strokeNoScale: false,
- // Bounding rect text configuration
- // Not affected by element transform
-
- /**
- * @type {string}
- */
- text: null,
-
- /**
- * If `fontSize` or `fontFamily` exists, `font` will be reset by
- * `fontSize`, `fontStyle`, `fontWeight`, `fontFamily`.
- * So do not visit it directly in upper application (like echarts),
- * but use `contain/text#makeFont` instead.
- * @type {string}
- */
- font: null,
-
- /**
- * The same as font. Use font please.
- * @deprecated
- * @type {string}
- */
- textFont: null,
-
- /**
- * It helps merging respectively, rather than parsing an entire font string.
- * @type {string}
- */
- fontStyle: null,
-
- /**
- * It helps merging respectively, rather than parsing an entire font string.
- * @type {string}
- */
- fontWeight: null,
-
- /**
- * It helps merging respectively, rather than parsing an entire font string.
- * Should be 12 but not '12px'.
- * @type {number}
- */
- fontSize: null,
-
- /**
- * It helps merging respectively, rather than parsing an entire font string.
- * @type {string}
- */
- fontFamily: null,
-
- /**
- * Reserved for special functinality, like 'hr'.
- * @type {string}
- */
- textTag: null,
-
- /**
- * @type {string}
- */
- textFill: '#000',
-
- /**
- * @type {string}
- */
- textStroke: null,
-
- /**
- * @type {number}
- */
- textWidth: null,
-
- /**
- * Only for textBackground.
- * @type {number}
- */
- textHeight: null,
-
- /**
- * textStroke may be set as some color as a default
- * value in upper applicaion, where the default value
- * of textStrokeWidth should be 0 to make sure that
- * user can choose to do not use text stroke.
- * @type {number}
- */
- textStrokeWidth: 0,
-
- /**
- * @type {number}
- */
- textLineHeight: null,
-
- /**
- * 'inside', 'left', 'right', 'top', 'bottom'
- * [x, y]
- * Based on x, y of rect.
- * @type {string|Array.<number>}
- * @default 'inside'
- */
- textPosition: 'inside',
-
- /**
- * If not specified, use the boundingRect of a `displayable`.
- * @type {Object}
- */
- textRect: null,
-
- /**
- * [x, y]
- * @type {Array.<number>}
- */
- textOffset: null,
-
- /**
- * @type {string}
- */
- textAlign: null,
-
- /**
- * @type {string}
- */
- textVerticalAlign: null,
-
- /**
- * @type {number}
- */
- textDistance: 5,
-
- /**
- * @type {string}
- */
- textShadowColor: 'transparent',
-
- /**
- * @type {number}
- */
- textShadowBlur: 0,
-
- /**
- * @type {number}
- */
- textShadowOffsetX: 0,
-
- /**
- * @type {number}
- */
- textShadowOffsetY: 0,
-
- /**
- * @type {string}
- */
- textBoxShadowColor: 'transparent',
-
- /**
- * @type {number}
- */
- textBoxShadowBlur: 0,
-
- /**
- * @type {number}
- */
- textBoxShadowOffsetX: 0,
-
- /**
- * @type {number}
- */
- textBoxShadowOffsetY: 0,
-
- /**
- * Whether transform text.
- * Only available in Path and Image element,
- * where the text is called as `RectText`.
- * @type {boolean}
- */
- transformText: false,
-
- /**
- * Text rotate around position of Path or Image.
- * The origin of the rotation can be specified by `textOrigin`.
- * Only available in Path and Image element,
- * where the text is called as `RectText`.
- */
- textRotation: 0,
-
- /**
- * Text origin of text rotation.
- * Useful in the case like label rotation of circular symbol.
- * Only available in Path and Image element, where the text is called
- * as `RectText` and the element is called as "host element".
- * The value can be:
- * + If specified as a coordinate like `[10, 40]`, it is the `[x, y]`
- * base on the left-top corner of the rect of its host element.
- * + If specified as a string `center`, it is the center of the rect of
- * its host element.
- * + By default, this origin is the `textPosition`.
- * @type {string|Array.<number>}
- */
- textOrigin: null,
-
- /**
- * @type {string}
- */
- textBackgroundColor: null,
-
- /**
- * @type {string}
- */
- textBorderColor: null,
-
- /**
- * @type {number}
- */
- textBorderWidth: 0,
-
- /**
- * @type {number}
- */
- textBorderRadius: 0,
-
- /**
- * Can be `2` or `[2, 4]` or `[2, 3, 4, 5]`
- * @type {number|Array.<number>}
- */
- textPadding: null,
-
- /**
- * Text styles for rich text.
- * @type {Object}
- */
- rich: null,
-
- /**
- * {outerWidth, outerHeight, ellipsis, placeholder}
- * @type {Object}
- */
- truncate: null,
-
- /**
- * https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/globalCompositeOperation
- * @type {string}
- */
- blend: null,
-
- /**
- * @param {CanvasRenderingContext2D} ctx
- */
- bind: function (ctx, el, prevEl) {
- var style = this;
- var prevStyle = prevEl && prevEl.style; // If no prevStyle, it means first draw.
- // Only apply cache if the last time cachced by this function.
-
- var notCheckCache = !prevStyle || ctx.__attrCachedBy !== ContextCachedBy.STYLE_BIND;
- ctx.__attrCachedBy = ContextCachedBy.STYLE_BIND;
-
- for (var i = 0; i < STYLE_COMMON_PROPS.length; i++) {
- var prop = STYLE_COMMON_PROPS[i];
- var styleName = prop[0];
-
- if (notCheckCache || style[styleName] !== prevStyle[styleName]) {
- // FIXME Invalid property value will cause style leak from previous element.
- ctx[styleName] = fixShadow(ctx, styleName, style[styleName] || prop[1]);
- }
- }
-
- if (notCheckCache || style.fill !== prevStyle.fill) {
- ctx.fillStyle = style.fill;
- }
-
- if (notCheckCache || style.stroke !== prevStyle.stroke) {
- ctx.strokeStyle = style.stroke;
- }
-
- if (notCheckCache || style.opacity !== prevStyle.opacity) {
- ctx.globalAlpha = style.opacity == null ? 1 : style.opacity;
- }
-
- if (notCheckCache || style.blend !== prevStyle.blend) {
- ctx.globalCompositeOperation = style.blend || 'source-over';
- }
-
- if (this.hasStroke()) {
- var lineWidth = style.lineWidth;
- ctx.lineWidth = lineWidth / (this.strokeNoScale && el && el.getLineScale ? el.getLineScale() : 1);
- }
- },
- hasFill: function () {
- var fill = this.fill;
- return fill != null && fill !== 'none';
- },
- hasStroke: function () {
- var stroke = this.stroke;
- return stroke != null && stroke !== 'none' && this.lineWidth > 0;
- },
-
- /**
- * Extend from other style
- * @param {zrender/graphic/Style} otherStyle
- * @param {boolean} overwrite true: overwrirte any way.
- * false: overwrite only when !target.hasOwnProperty
- * others: overwrite when property is not null/undefined.
- */
- extendFrom: function (otherStyle, overwrite) {
- if (otherStyle) {
- for (var name in otherStyle) {
- if (otherStyle.hasOwnProperty(name) && (overwrite === true || (overwrite === false ? !this.hasOwnProperty(name) : otherStyle[name] != null))) {
- this[name] = otherStyle[name];
- }
- }
- }
- },
-
- /**
- * Batch setting style with a given object
- * @param {Object|string} obj
- * @param {*} [obj]
- */
- set: function (obj, value) {
- if (typeof obj === 'string') {
- this[obj] = value;
- } else {
- this.extendFrom(obj, true);
- }
- },
-
- /**
- * Clone
- * @return {zrender/graphic/Style} [description]
- */
- clone: function () {
- var newStyle = new this.constructor();
- newStyle.extendFrom(this, true);
- return newStyle;
- },
- getGradient: function (ctx, obj, rect) {
- var method = obj.type === 'radial' ? createRadialGradient : createLinearGradient;
- var canvasGradient = method(ctx, obj, rect);
- var colorStops = obj.colorStops;
-
- for (var i = 0; i < colorStops.length; i++) {
- canvasGradient.addColorStop(colorStops[i].offset, colorStops[i].color);
- }
-
- return canvasGradient;
- }
- };
- var styleProto = Style.prototype;
-
- for (var i = 0; i < STYLE_COMMON_PROPS.length; i++) {
- var prop = STYLE_COMMON_PROPS[i];
-
- if (!(prop[0] in styleProto)) {
- styleProto[prop[0]] = prop[1];
- }
- } // Provide for others
-
-
- Style.getGradient = styleProto.getGradient;
- var _default = Style;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1896:
- /***/ (function(module, exports, __webpack_require__) {
-
- var LRU = __webpack_require__(2261);
-
- var globalImageCache = new LRU(50);
- /**
- * @param {string|HTMLImageElement|HTMLCanvasElement|Canvas} newImageOrSrc
- * @return {HTMLImageElement|HTMLCanvasElement|Canvas} image
- */
-
- function findExistImage(newImageOrSrc) {
- if (typeof newImageOrSrc === 'string') {
- var cachedImgObj = globalImageCache.get(newImageOrSrc);
- return cachedImgObj && cachedImgObj.image;
- } else {
- return newImageOrSrc;
- }
- }
- /**
- * Caution: User should cache loaded images, but not just count on LRU.
- * Consider if required images more than LRU size, will dead loop occur?
- *
- * @param {string|HTMLImageElement|HTMLCanvasElement|Canvas} newImageOrSrc
- * @param {HTMLImageElement|HTMLCanvasElement|Canvas} image Existent image.
- * @param {module:zrender/Element} [hostEl] For calling `dirty`.
- * @param {Function} [cb] params: (image, cbPayload)
- * @param {Object} [cbPayload] Payload on cb calling.
- * @return {HTMLImageElement|HTMLCanvasElement|Canvas} image
- */
-
-
- function createOrUpdateImage(newImageOrSrc, image, hostEl, cb, cbPayload) {
- if (!newImageOrSrc) {
- return image;
- } else if (typeof newImageOrSrc === 'string') {
- // Image should not be loaded repeatly.
- if (image && image.__zrImageSrc === newImageOrSrc || !hostEl) {
- return image;
- } // Only when there is no existent image or existent image src
- // is different, this method is responsible for load.
-
-
- var cachedImgObj = globalImageCache.get(newImageOrSrc);
- var pendingWrap = {
- hostEl: hostEl,
- cb: cb,
- cbPayload: cbPayload
- };
-
- if (cachedImgObj) {
- image = cachedImgObj.image;
- !isImageReady(image) && cachedImgObj.pending.push(pendingWrap);
- } else {
- image = new Image();
- image.onload = image.onerror = imageOnLoad;
- globalImageCache.put(newImageOrSrc, image.__cachedImgObj = {
- image: image,
- pending: [pendingWrap]
- });
- image.src = image.__zrImageSrc = newImageOrSrc;
- }
-
- return image;
- } // newImageOrSrc is an HTMLImageElement or HTMLCanvasElement or Canvas
- else {
- return newImageOrSrc;
- }
- }
-
- function imageOnLoad() {
- var cachedImgObj = this.__cachedImgObj;
- this.onload = this.onerror = this.__cachedImgObj = null;
-
- for (var i = 0; i < cachedImgObj.pending.length; i++) {
- var pendingWrap = cachedImgObj.pending[i];
- var cb = pendingWrap.cb;
- cb && cb(this, pendingWrap.cbPayload);
- pendingWrap.hostEl.dirty();
- }
-
- cachedImgObj.pending.length = 0;
- }
-
- function isImageReady(image) {
- return image && image.width && image.height;
- }
-
- exports.findExistImage = findExistImage;
- exports.createOrUpdateImage = createOrUpdateImage;
- exports.isImageReady = isImageReady;
-
- /***/ }),
-
- /***/ 1897:
- /***/ (function(module, exports, __webpack_require__) {
-
- var Path = __webpack_require__(1280);
-
- var roundRectHelper = __webpack_require__(2266);
-
- var _subPixelOptimize = __webpack_require__(1898);
-
- var subPixelOptimizeRect = _subPixelOptimize.subPixelOptimizeRect;
-
- /**
- * 矩形
- * @module zrender/graphic/shape/Rect
- */
- // Avoid create repeatly.
- var subPixelOptimizeOutputShape = {};
-
- var _default = Path.extend({
- type: 'rect',
- shape: {
- // 左上、右上、右下、左下角的半径依次为r1、r2、r3、r4
- // r缩写为1 相当于 [1, 1, 1, 1]
- // r缩写为[1] 相当于 [1, 1, 1, 1]
- // r缩写为[1, 2] 相当于 [1, 2, 1, 2]
- // r缩写为[1, 2, 3] 相当于 [1, 2, 3, 2]
- r: 0,
- x: 0,
- y: 0,
- width: 0,
- height: 0
- },
- buildPath: function (ctx, shape) {
- var x;
- var y;
- var width;
- var height;
-
- if (this.subPixelOptimize) {
- subPixelOptimizeRect(subPixelOptimizeOutputShape, shape, this.style);
- x = subPixelOptimizeOutputShape.x;
- y = subPixelOptimizeOutputShape.y;
- width = subPixelOptimizeOutputShape.width;
- height = subPixelOptimizeOutputShape.height;
- subPixelOptimizeOutputShape.r = shape.r;
- shape = subPixelOptimizeOutputShape;
- } else {
- x = shape.x;
- y = shape.y;
- width = shape.width;
- height = shape.height;
- }
-
- if (!shape.r) {
- ctx.rect(x, y, width, height);
- } else {
- roundRectHelper.buildPath(ctx, shape);
- }
-
- ctx.closePath();
- return;
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1898:
- /***/ (function(module, exports) {
-
- /**
- * Sub-pixel optimize for canvas rendering, prevent from blur
- * when rendering a thin vertical/horizontal line.
- */
- var round = Math.round;
- /**
- * Sub pixel optimize line for canvas
- *
- * @param {Object} outputShape The modification will be performed on `outputShape`.
- * `outputShape` and `inputShape` can be the same object.
- * `outputShape` object can be used repeatly, because all of
- * the `x1`, `x2`, `y1`, `y2` will be assigned in this method.
- * @param {Object} [inputShape]
- * @param {number} [inputShape.x1]
- * @param {number} [inputShape.y1]
- * @param {number} [inputShape.x2]
- * @param {number} [inputShape.y2]
- * @param {Object} [style]
- * @param {number} [style.lineWidth]
- */
-
- function subPixelOptimizeLine(outputShape, inputShape, style) {
- var lineWidth = style && style.lineWidth;
-
- if (!inputShape || !lineWidth) {
- return;
- }
-
- var x1 = inputShape.x1;
- var x2 = inputShape.x2;
- var y1 = inputShape.y1;
- var y2 = inputShape.y2;
-
- if (round(x1 * 2) === round(x2 * 2)) {
- outputShape.x1 = outputShape.x2 = subPixelOptimize(x1, lineWidth, true);
- } else {
- outputShape.x1 = x1;
- outputShape.x2 = x2;
- }
-
- if (round(y1 * 2) === round(y2 * 2)) {
- outputShape.y1 = outputShape.y2 = subPixelOptimize(y1, lineWidth, true);
- } else {
- outputShape.y1 = y1;
- outputShape.y2 = y2;
- }
- }
- /**
- * Sub pixel optimize rect for canvas
- *
- * @param {Object} outputShape The modification will be performed on `outputShape`.
- * `outputShape` and `inputShape` can be the same object.
- * `outputShape` object can be used repeatly, because all of
- * the `x`, `y`, `width`, `height` will be assigned in this method.
- * @param {Object} [inputShape]
- * @param {number} [inputShape.x]
- * @param {number} [inputShape.y]
- * @param {number} [inputShape.width]
- * @param {number} [inputShape.height]
- * @param {Object} [style]
- * @param {number} [style.lineWidth]
- */
-
-
- function subPixelOptimizeRect(outputShape, inputShape, style) {
- var lineWidth = style && style.lineWidth;
-
- if (!inputShape || !lineWidth) {
- return;
- }
-
- var originX = inputShape.x;
- var originY = inputShape.y;
- var originWidth = inputShape.width;
- var originHeight = inputShape.height;
- outputShape.x = subPixelOptimize(originX, lineWidth, true);
- outputShape.y = subPixelOptimize(originY, lineWidth, true);
- outputShape.width = Math.max(subPixelOptimize(originX + originWidth, lineWidth, false) - outputShape.x, originWidth === 0 ? 0 : 1);
- outputShape.height = Math.max(subPixelOptimize(originY + originHeight, lineWidth, false) - outputShape.y, originHeight === 0 ? 0 : 1);
- }
- /**
- * Sub pixel optimize for canvas
- *
- * @param {number} position Coordinate, such as x, y
- * @param {number} lineWidth Should be nonnegative integer.
- * @param {boolean=} positiveOrNegative Default false (negative).
- * @return {number} Optimized position.
- */
-
-
- function subPixelOptimize(position, lineWidth, positiveOrNegative) {
- // Assure that (position + lineWidth / 2) is near integer edge,
- // otherwise line will be fuzzy in canvas.
- var doubledPosition = round(position * 2);
- return (doubledPosition + round(lineWidth)) % 2 === 0 ? doubledPosition / 2 : (doubledPosition + (positiveOrNegative ? 1 : -1)) / 2;
- }
-
- exports.subPixelOptimizeLine = subPixelOptimizeLine;
- exports.subPixelOptimizeRect = subPixelOptimizeRect;
- exports.subPixelOptimize = subPixelOptimize;
-
- /***/ }),
-
- /***/ 1899:
- /***/ (function(module, exports, __webpack_require__) {
-
- var zrUtil = __webpack_require__(864);
-
- var Gradient = __webpack_require__(1785);
-
- /**
- * x, y, x2, y2 are all percent from 0 to 1
- * @param {number} [x=0]
- * @param {number} [y=0]
- * @param {number} [x2=1]
- * @param {number} [y2=0]
- * @param {Array.<Object>} colorStops
- * @param {boolean} [globalCoord=false]
- */
- var LinearGradient = function (x, y, x2, y2, colorStops, globalCoord) {
- // Should do nothing more in this constructor. Because gradient can be
- // declard by `color: {type: 'linear', colorStops: ...}`, where
- // this constructor will not be called.
- this.x = x == null ? 0 : x;
- this.y = y == null ? 0 : y;
- this.x2 = x2 == null ? 1 : x2;
- this.y2 = y2 == null ? 0 : y2; // Can be cloned
-
- this.type = 'linear'; // If use global coord
-
- this.global = globalCoord || false;
- Gradient.call(this, colorStops);
- };
-
- LinearGradient.prototype = {
- constructor: LinearGradient
- };
- zrUtil.inherits(LinearGradient, Gradient);
- var _default = LinearGradient;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1900:
- /***/ (function(module, exports, __webpack_require__) {
-
- var _util = __webpack_require__(864);
-
- var inherits = _util.inherits;
-
- var Displayble = __webpack_require__(1656);
-
- var BoundingRect = __webpack_require__(1185);
-
- /**
- * Displayable for incremental rendering. It will be rendered in a separate layer
- * IncrementalDisplay have two main methods. `clearDisplayables` and `addDisplayables`
- * addDisplayables will render the added displayables incremetally.
- *
- * It use a not clearFlag to tell the painter don't clear the layer if it's the first element.
- */
- // TODO Style override ?
- function IncrementalDisplayble(opts) {
- Displayble.call(this, opts);
- this._displayables = [];
- this._temporaryDisplayables = [];
- this._cursor = 0;
- this.notClear = true;
- }
-
- IncrementalDisplayble.prototype.incremental = true;
-
- IncrementalDisplayble.prototype.clearDisplaybles = function () {
- this._displayables = [];
- this._temporaryDisplayables = [];
- this._cursor = 0;
- this.dirty();
- this.notClear = false;
- };
-
- IncrementalDisplayble.prototype.addDisplayable = function (displayable, notPersistent) {
- if (notPersistent) {
- this._temporaryDisplayables.push(displayable);
- } else {
- this._displayables.push(displayable);
- }
-
- this.dirty();
- };
-
- IncrementalDisplayble.prototype.addDisplayables = function (displayables, notPersistent) {
- notPersistent = notPersistent || false;
-
- for (var i = 0; i < displayables.length; i++) {
- this.addDisplayable(displayables[i], notPersistent);
- }
- };
-
- IncrementalDisplayble.prototype.eachPendingDisplayable = function (cb) {
- for (var i = this._cursor; i < this._displayables.length; i++) {
- cb && cb(this._displayables[i]);
- }
-
- for (var i = 0; i < this._temporaryDisplayables.length; i++) {
- cb && cb(this._temporaryDisplayables[i]);
- }
- };
-
- IncrementalDisplayble.prototype.update = function () {
- this.updateTransform();
-
- for (var i = this._cursor; i < this._displayables.length; i++) {
- var displayable = this._displayables[i]; // PENDING
-
- displayable.parent = this;
- displayable.update();
- displayable.parent = null;
- }
-
- for (var i = 0; i < this._temporaryDisplayables.length; i++) {
- var displayable = this._temporaryDisplayables[i]; // PENDING
-
- displayable.parent = this;
- displayable.update();
- displayable.parent = null;
- }
- };
-
- IncrementalDisplayble.prototype.brush = function (ctx, prevEl) {
- // Render persistant displayables.
- for (var i = this._cursor; i < this._displayables.length; i++) {
- var displayable = this._displayables[i];
- displayable.beforeBrush && displayable.beforeBrush(ctx);
- displayable.brush(ctx, i === this._cursor ? null : this._displayables[i - 1]);
- displayable.afterBrush && displayable.afterBrush(ctx);
- }
-
- this._cursor = i; // Render temporary displayables.
-
- for (var i = 0; i < this._temporaryDisplayables.length; i++) {
- var displayable = this._temporaryDisplayables[i];
- displayable.beforeBrush && displayable.beforeBrush(ctx);
- displayable.brush(ctx, i === 0 ? null : this._temporaryDisplayables[i - 1]);
- displayable.afterBrush && displayable.afterBrush(ctx);
- }
-
- this._temporaryDisplayables = [];
- this.notClear = true;
- };
-
- var m = [];
-
- IncrementalDisplayble.prototype.getBoundingRect = function () {
- if (!this._rect) {
- var rect = new BoundingRect(Infinity, Infinity, -Infinity, -Infinity);
-
- for (var i = 0; i < this._displayables.length; i++) {
- var displayable = this._displayables[i];
- var childRect = displayable.getBoundingRect().clone();
-
- if (displayable.needLocalTransform()) {
- childRect.applyTransform(displayable.getLocalTransform(m));
- }
-
- rect.union(childRect);
- }
-
- this._rect = rect;
- }
-
- return this._rect;
- };
-
- IncrementalDisplayble.prototype.contain = function (x, y) {
- var localPos = this.transformCoordToLocal(x, y);
- var rect = this.getBoundingRect();
-
- if (rect.contain(localPos[0], localPos[1])) {
- for (var i = 0; i < this._displayables.length; i++) {
- var displayable = this._displayables[i];
-
- if (displayable.contain(x, y)) {
- return true;
- }
- }
- }
-
- return false;
- };
-
- inherits(IncrementalDisplayble, Displayble);
- var _default = IncrementalDisplayble;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1901:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _dataProvider = __webpack_require__(1518);
-
- var retrieveRawValue = _dataProvider.retrieveRawValue;
-
- var _format = __webpack_require__(1186);
-
- var getTooltipMarker = _format.getTooltipMarker;
- var formatTpl = _format.formatTpl;
-
- var _model = __webpack_require__(1064);
-
- var getTooltipRenderMode = _model.getTooltipRenderMode;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var DIMENSION_LABEL_REG = /\{@(.+?)\}/g; // PENDING A little ugly
-
- var _default = {
- /**
- * Get params for formatter
- * @param {number} dataIndex
- * @param {string} [dataType]
- * @return {Object}
- */
- getDataParams: function (dataIndex, dataType) {
- var data = this.getData(dataType);
- var rawValue = this.getRawValue(dataIndex, dataType);
- var rawDataIndex = data.getRawIndex(dataIndex);
- var name = data.getName(dataIndex);
- var itemOpt = data.getRawDataItem(dataIndex);
- var color = data.getItemVisual(dataIndex, 'color');
- var borderColor = data.getItemVisual(dataIndex, 'borderColor');
- var tooltipModel = this.ecModel.getComponent('tooltip');
- var renderModeOption = tooltipModel && tooltipModel.get('renderMode');
- var renderMode = getTooltipRenderMode(renderModeOption);
- var mainType = this.mainType;
- var isSeries = mainType === 'series';
- var userOutput = data.userOutput;
- return {
- componentType: mainType,
- componentSubType: this.subType,
- componentIndex: this.componentIndex,
- seriesType: isSeries ? this.subType : null,
- seriesIndex: this.seriesIndex,
- seriesId: isSeries ? this.id : null,
- seriesName: isSeries ? this.name : null,
- name: name,
- dataIndex: rawDataIndex,
- data: itemOpt,
- dataType: dataType,
- value: rawValue,
- color: color,
- borderColor: borderColor,
- dimensionNames: userOutput ? userOutput.dimensionNames : null,
- encode: userOutput ? userOutput.encode : null,
- marker: getTooltipMarker({
- color: color,
- renderMode: renderMode
- }),
- // Param name list for mapping `a`, `b`, `c`, `d`, `e`
- $vars: ['seriesName', 'name', 'value']
- };
- },
-
- /**
- * Format label
- * @param {number} dataIndex
- * @param {string} [status='normal'] 'normal' or 'emphasis'
- * @param {string} [dataType]
- * @param {number} [dimIndex] Only used in some chart that
- * use formatter in different dimensions, like radar.
- * @param {string} [labelProp='label']
- * @return {string} If not formatter, return null/undefined
- */
- getFormattedLabel: function (dataIndex, status, dataType, dimIndex, labelProp) {
- status = status || 'normal';
- var data = this.getData(dataType);
- var itemModel = data.getItemModel(dataIndex);
- var params = this.getDataParams(dataIndex, dataType);
-
- if (dimIndex != null && params.value instanceof Array) {
- params.value = params.value[dimIndex];
- }
-
- var formatter = itemModel.get(status === 'normal' ? [labelProp || 'label', 'formatter'] : [status, labelProp || 'label', 'formatter']);
-
- if (typeof formatter === 'function') {
- params.status = status;
- params.dimensionIndex = dimIndex;
- return formatter(params);
- } else if (typeof formatter === 'string') {
- var str = formatTpl(formatter, params); // Support 'aaa{@[3]}bbb{@product}ccc'.
- // Do not support '}' in dim name util have to.
-
- return str.replace(DIMENSION_LABEL_REG, function (origin, dim) {
- var len = dim.length;
-
- if (dim.charAt(0) === '[' && dim.charAt(len - 1) === ']') {
- dim = +dim.slice(1, len - 1); // Also: '[]' => 0
- }
-
- return retrieveRawValue(data, dataIndex, dim);
- });
- }
- },
-
- /**
- * Get raw value in option
- * @param {number} idx
- * @param {string} [dataType]
- * @return {Array|number|string}
- */
- getRawValue: function (idx, dataType) {
- return retrieveRawValue(this.getData(dataType), idx);
- },
-
- /**
- * Should be implemented.
- * @param {number} dataIndex
- * @param {boolean} [multipleSeries=false]
- * @param {number} [dataType]
- * @return {string} tooltip string
- */
- formatTooltip: function () {// Empty function
- }
- };
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1902:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _util = __webpack_require__(864);
-
- var assert = _util.assert;
- var isArray = _util.isArray;
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @param {Object} define
- * @return See the return of `createTask`.
- */
- function createTask(define) {
- return new Task(define);
- }
- /**
- * @constructor
- * @param {Object} define
- * @param {Function} define.reset Custom reset
- * @param {Function} [define.plan] Returns 'reset' indicate reset immediately.
- * @param {Function} [define.count] count is used to determin data task.
- * @param {Function} [define.onDirty] count is used to determin data task.
- */
-
-
- function Task(define) {
- define = define || {};
- this._reset = define.reset;
- this._plan = define.plan;
- this._count = define.count;
- this._onDirty = define.onDirty;
- this._dirty = true; // Context must be specified implicitly, to
- // avoid miss update context when model changed.
-
- this.context;
- }
-
- var taskProto = Task.prototype;
- /**
- * @param {Object} performArgs
- * @param {number} [performArgs.step] Specified step.
- * @param {number} [performArgs.skip] Skip customer perform call.
- * @param {number} [performArgs.modBy] Sampling window size.
- * @param {number} [performArgs.modDataCount] Sampling count.
- */
-
- taskProto.perform = function (performArgs) {
- var upTask = this._upstream;
- var skip = performArgs && performArgs.skip; // TODO some refactor.
- // Pull data. Must pull data each time, because context.data
- // may be updated by Series.setData.
-
- if (this._dirty && upTask) {
- var context = this.context;
- context.data = context.outputData = upTask.context.outputData;
- }
-
- if (this.__pipeline) {
- this.__pipeline.currentTask = this;
- }
-
- var planResult;
-
- if (this._plan && !skip) {
- planResult = this._plan(this.context);
- } // Support sharding by mod, which changes the render sequence and makes the rendered graphic
- // elements uniformed distributed when progress, especially when moving or zooming.
-
-
- var lastModBy = normalizeModBy(this._modBy);
- var lastModDataCount = this._modDataCount || 0;
- var modBy = normalizeModBy(performArgs && performArgs.modBy);
- var modDataCount = performArgs && performArgs.modDataCount || 0;
-
- if (lastModBy !== modBy || lastModDataCount !== modDataCount) {
- planResult = 'reset';
- }
-
- function normalizeModBy(val) {
- !(val >= 1) && (val = 1); // jshint ignore:line
-
- return val;
- }
-
- var forceFirstProgress;
-
- if (this._dirty || planResult === 'reset') {
- this._dirty = false;
- forceFirstProgress = reset(this, skip);
- }
-
- this._modBy = modBy;
- this._modDataCount = modDataCount;
- var step = performArgs && performArgs.step;
-
- if (upTask) {
- this._dueEnd = upTask._outputDueEnd;
- } // DataTask or overallTask
- else {
- this._dueEnd = this._count ? this._count(this.context) : Infinity;
- } // Note: Stubs, that its host overall task let it has progress, has progress.
- // If no progress, pass index from upstream to downstream each time plan called.
-
-
- if (this._progress) {
- var start = this._dueIndex;
- var end = Math.min(step != null ? this._dueIndex + step : Infinity, this._dueEnd);
-
- if (!skip && (forceFirstProgress || start < end)) {
- var progress = this._progress;
-
- if (isArray(progress)) {
- for (var i = 0; i < progress.length; i++) {
- doProgress(this, progress[i], start, end, modBy, modDataCount);
- }
- } else {
- doProgress(this, progress, start, end, modBy, modDataCount);
- }
- }
-
- this._dueIndex = end; // If no `outputDueEnd`, assume that output data and
- // input data is the same, so use `dueIndex` as `outputDueEnd`.
-
- var outputDueEnd = this._settedOutputEnd != null ? this._settedOutputEnd : end;
- this._outputDueEnd = outputDueEnd;
- } else {
- // (1) Some overall task has no progress.
- // (2) Stubs, that its host overall task do not let it has progress, has no progress.
- // This should always be performed so it can be passed to downstream.
- this._dueIndex = this._outputDueEnd = this._settedOutputEnd != null ? this._settedOutputEnd : this._dueEnd;
- }
-
- return this.unfinished();
- };
-
- var iterator = function () {
- var end;
- var current;
- var modBy;
- var modDataCount;
- var winCount;
- var it = {
- reset: function (s, e, sStep, sCount) {
- current = s;
- end = e;
- modBy = sStep;
- modDataCount = sCount;
- winCount = Math.ceil(modDataCount / modBy);
- it.next = modBy > 1 && modDataCount > 0 ? modNext : sequentialNext;
- }
- };
- return it;
-
- function sequentialNext() {
- return current < end ? current++ : null;
- }
-
- function modNext() {
- var dataIndex = current % winCount * modBy + Math.ceil(current / winCount);
- var result = current >= end ? null : dataIndex < modDataCount ? dataIndex // If modDataCount is smaller than data.count() (consider `appendData` case),
- // Use normal linear rendering mode.
- : current;
- current++;
- return result;
- }
- }();
-
- taskProto.dirty = function () {
- this._dirty = true;
- this._onDirty && this._onDirty(this.context);
- };
-
- function doProgress(taskIns, progress, start, end, modBy, modDataCount) {
- iterator.reset(start, end, modBy, modDataCount);
- taskIns._callingProgress = progress;
-
- taskIns._callingProgress({
- start: start,
- end: end,
- count: end - start,
- next: iterator.next
- }, taskIns.context);
- }
-
- function reset(taskIns, skip) {
- taskIns._dueIndex = taskIns._outputDueEnd = taskIns._dueEnd = 0;
- taskIns._settedOutputEnd = null;
- var progress;
- var forceFirstProgress;
-
- if (!skip && taskIns._reset) {
- progress = taskIns._reset(taskIns.context);
-
- if (progress && progress.progress) {
- forceFirstProgress = progress.forceFirstProgress;
- progress = progress.progress;
- } // To simplify no progress checking, array must has item.
-
-
- if (isArray(progress) && !progress.length) {
- progress = null;
- }
- }
-
- taskIns._progress = progress;
- taskIns._modBy = taskIns._modDataCount = null;
- var downstream = taskIns._downstream;
- downstream && downstream.dirty();
- return forceFirstProgress;
- }
- /**
- * @return {boolean}
- */
-
-
- taskProto.unfinished = function () {
- return this._progress && this._dueIndex < this._dueEnd;
- };
- /**
- * @param {Object} downTask The downstream task.
- * @return {Object} The downstream task.
- */
-
-
- taskProto.pipe = function (downTask) {
- // If already downstream, do not dirty downTask.
- if (this._downstream !== downTask || this._dirty) {
- this._downstream = downTask;
- downTask._upstream = this;
- downTask.dirty();
- }
- };
-
- taskProto.dispose = function () {
- if (this._disposed) {
- return;
- }
-
- this._upstream && (this._upstream._downstream = null);
- this._downstream && (this._downstream._upstream = null);
- this._dirty = false;
- this._disposed = true;
- };
-
- taskProto.getUpstream = function () {
- return this._upstream;
- };
-
- taskProto.getDownstream = function () {
- return this._downstream;
- };
-
- taskProto.setOutputEnd = function (end) {
- // This only happend in dataTask, dataZoom, map, currently.
- // where dataZoom do not set end each time, but only set
- // when reset. So we should record the setted end, in case
- // that the stub of dataZoom perform again and earse the
- // setted end by upstream.
- this._outputDueEnd = this._settedOutputEnd = end;
- }; ///////////////////////////////////////////////////////////
- // For stream debug (Should be commented out after used!)
- // Usage: printTask(this, 'begin');
- // Usage: printTask(this, null, {someExtraProp});
- // function printTask(task, prefix, extra) {
- // window.ecTaskUID == null && (window.ecTaskUID = 0);
- // task.uidDebug == null && (task.uidDebug = `task_${window.ecTaskUID++}`);
- // task.agent && task.agent.uidDebug == null && (task.agent.uidDebug = `task_${window.ecTaskUID++}`);
- // var props = [];
- // if (task.__pipeline) {
- // var val = `${task.__idxInPipeline}/${task.__pipeline.tail.__idxInPipeline} ${task.agent ? '(stub)' : ''}`;
- // props.push({text: 'idx', value: val});
- // } else {
- // var stubCount = 0;
- // task.agentStubMap.each(() => stubCount++);
- // props.push({text: 'idx', value: `overall (stubs: ${stubCount})`});
- // }
- // props.push({text: 'uid', value: task.uidDebug});
- // if (task.__pipeline) {
- // props.push({text: 'pid', value: task.__pipeline.id});
- // task.agent && props.push(
- // {text: 'stubFor', value: task.agent.uidDebug}
- // );
- // }
- // props.push(
- // {text: 'dirty', value: task._dirty},
- // {text: 'dueIndex', value: task._dueIndex},
- // {text: 'dueEnd', value: task._dueEnd},
- // {text: 'outputDueEnd', value: task._outputDueEnd}
- // );
- // if (extra) {
- // Object.keys(extra).forEach(key => {
- // props.push({text: key, value: extra[key]});
- // });
- // }
- // var args = ['color: blue'];
- // var msg = `%c[${prefix || 'T'}] %c` + props.map(item => (
- // args.push('color: black', 'color: red'),
- // `${item.text}: %c${item.value}`
- // )).join('%c, ');
- // console.log.apply(console, [msg].concat(args));
- // // console.log(this);
- // }
-
-
- exports.createTask = createTask;
-
- /***/ }),
-
- /***/ 1903:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var _util = __webpack_require__(864);
-
- var createHashMap = _util.createHashMap;
- var isString = _util.isString;
- var isArray = _util.isArray;
- var each = _util.each;
- var assert = _util.assert;
-
- var _parseSVG = __webpack_require__(2282);
-
- var parseXML = _parseSVG.parseXML;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var storage = createHashMap(); // For minimize the code size of common echarts package,
- // do not put too much logic in this module.
-
- var _default = {
- // The format of record: see `echarts.registerMap`.
- // Compatible with previous `echarts.registerMap`.
- registerMap: function (mapName, rawGeoJson, rawSpecialAreas) {
- var records;
-
- if (isArray(rawGeoJson)) {
- records = rawGeoJson;
- } else if (rawGeoJson.svg) {
- records = [{
- type: 'svg',
- source: rawGeoJson.svg,
- specialAreas: rawGeoJson.specialAreas
- }];
- } else {
- // Backward compatibility.
- if (rawGeoJson.geoJson && !rawGeoJson.features) {
- rawSpecialAreas = rawGeoJson.specialAreas;
- rawGeoJson = rawGeoJson.geoJson;
- }
-
- records = [{
- type: 'geoJSON',
- source: rawGeoJson,
- specialAreas: rawSpecialAreas
- }];
- }
-
- each(records, function (record) {
- var type = record.type;
- type === 'geoJson' && (type = record.type = 'geoJSON');
- var parse = parsers[type];
- parse(record);
- });
- return storage.set(mapName, records);
- },
- retrieveMap: function (mapName) {
- return storage.get(mapName);
- }
- };
- var parsers = {
- geoJSON: function (record) {
- var source = record.source;
- record.geoJSON = !isString(source) ? source : typeof JSON !== 'undefined' && JSON.parse ? JSON.parse(source) : new Function('return (' + source + ');')();
- },
- // Only perform parse to XML object here, which might be time
- // consiming for large SVG.
- // Although convert XML to zrender element is also time consiming,
- // if we do it here, the clone of zrender elements has to be
- // required. So we do it once for each geo instance, util real
- // performance issues call for optimizing it.
- svg: function (record) {
- record.svgXML = parseXML(record.source);
- }
- };
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1904:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _dataProvider = __webpack_require__(1518);
-
- var retrieveRawValue = _dataProvider.retrieveRawValue;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @param {module:echarts/data/List} data
- * @param {number} dataIndex
- * @return {string} label string. Not null/undefined
- */
- function getDefaultLabel(data, dataIndex) {
- var labelDims = data.mapDimension('defaultedLabel', true);
- var len = labelDims.length; // Simple optimization (in lots of cases, label dims length is 1)
-
- if (len === 1) {
- return retrieveRawValue(data, dataIndex, labelDims[0]);
- } else if (len) {
- var vals = [];
-
- for (var i = 0; i < labelDims.length; i++) {
- var val = retrieveRawValue(data, dataIndex, labelDims[i]);
- vals.push(val);
- }
-
- return vals.join(' ');
- }
- }
-
- exports.getDefaultLabel = getDefaultLabel;
-
- /***/ }),
-
- /***/ 1905:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var _util = __webpack_require__(864);
-
- var isObject = _util.isObject;
- var each = _util.each;
- var map = _util.map;
- var indexOf = _util.indexOf;
- var retrieve = _util.retrieve;
-
- var _layout = __webpack_require__(1171);
-
- var getLayoutRect = _layout.getLayoutRect;
-
- var _axisHelper = __webpack_require__(1415);
-
- var createScaleByModel = _axisHelper.createScaleByModel;
- var ifAxisCrossZero = _axisHelper.ifAxisCrossZero;
- var niceScaleExtent = _axisHelper.niceScaleExtent;
- var estimateLabelUnionRect = _axisHelper.estimateLabelUnionRect;
-
- var Cartesian2D = __webpack_require__(2559);
-
- var Axis2D = __webpack_require__(2561);
-
- var CoordinateSystem = __webpack_require__(1414);
-
- var _dataStackHelper = __webpack_require__(1440);
-
- var getStackedDimension = _dataStackHelper.getStackedDimension;
-
- __webpack_require__(2562);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Grid is a region which contains at most 4 cartesian systems
- *
- * TODO Default cartesian
- */
- // Depends on GridModel, AxisModel, which performs preprocess.
-
- /**
- * Check if the axis is used in the specified grid
- * @inner
- */
- function isAxisUsedInTheGrid(axisModel, gridModel, ecModel) {
- return axisModel.getCoordSysModel() === gridModel;
- }
-
- function Grid(gridModel, ecModel, api) {
- /**
- * @type {Object.<string, module:echarts/coord/cartesian/Cartesian2D>}
- * @private
- */
- this._coordsMap = {};
- /**
- * @type {Array.<module:echarts/coord/cartesian/Cartesian>}
- * @private
- */
-
- this._coordsList = [];
- /**
- * @type {Object.<string, Array.<module:echarts/coord/cartesian/Axis2D>>}
- * @private
- */
-
- this._axesMap = {};
- /**
- * @type {Array.<module:echarts/coord/cartesian/Axis2D>}
- * @private
- */
-
- this._axesList = [];
-
- this._initCartesian(gridModel, ecModel, api);
-
- this.model = gridModel;
- }
-
- var gridProto = Grid.prototype;
- gridProto.type = 'grid';
- gridProto.axisPointerEnabled = true;
-
- gridProto.getRect = function () {
- return this._rect;
- };
-
- gridProto.update = function (ecModel, api) {
- var axesMap = this._axesMap;
-
- this._updateScale(ecModel, this.model);
-
- each(axesMap.x, function (xAxis) {
- niceScaleExtent(xAxis.scale, xAxis.model);
- });
- each(axesMap.y, function (yAxis) {
- niceScaleExtent(yAxis.scale, yAxis.model);
- }); // Key: axisDim_axisIndex, value: boolean, whether onZero target.
-
- var onZeroRecords = {};
- each(axesMap.x, function (xAxis) {
- fixAxisOnZero(axesMap, 'y', xAxis, onZeroRecords);
- });
- each(axesMap.y, function (yAxis) {
- fixAxisOnZero(axesMap, 'x', yAxis, onZeroRecords);
- }); // Resize again if containLabel is enabled
- // FIXME It may cause getting wrong grid size in data processing stage
-
- this.resize(this.model, api);
- };
-
- function fixAxisOnZero(axesMap, otherAxisDim, axis, onZeroRecords) {
- axis.getAxesOnZeroOf = function () {
- // TODO: onZero of multiple axes.
- return otherAxisOnZeroOf ? [otherAxisOnZeroOf] : [];
- }; // onZero can not be enabled in these two situations:
- // 1. When any other axis is a category axis.
- // 2. When no axis is cross 0 point.
-
-
- var otherAxes = axesMap[otherAxisDim];
- var otherAxisOnZeroOf;
- var axisModel = axis.model;
- var onZero = axisModel.get('axisLine.onZero');
- var onZeroAxisIndex = axisModel.get('axisLine.onZeroAxisIndex');
-
- if (!onZero) {
- return;
- } // If target axis is specified.
-
-
- if (onZeroAxisIndex != null) {
- if (canOnZeroToAxis(otherAxes[onZeroAxisIndex])) {
- otherAxisOnZeroOf = otherAxes[onZeroAxisIndex];
- }
- } else {
- // Find the first available other axis.
- for (var idx in otherAxes) {
- if (otherAxes.hasOwnProperty(idx) && canOnZeroToAxis(otherAxes[idx]) // Consider that two Y axes on one value axis,
- // if both onZero, the two Y axes overlap.
- && !onZeroRecords[getOnZeroRecordKey(otherAxes[idx])]) {
- otherAxisOnZeroOf = otherAxes[idx];
- break;
- }
- }
- }
-
- if (otherAxisOnZeroOf) {
- onZeroRecords[getOnZeroRecordKey(otherAxisOnZeroOf)] = true;
- }
-
- function getOnZeroRecordKey(axis) {
- return axis.dim + '_' + axis.index;
- }
- }
-
- function canOnZeroToAxis(axis) {
- return axis && axis.type !== 'category' && axis.type !== 'time' && ifAxisCrossZero(axis);
- }
- /**
- * Resize the grid
- * @param {module:echarts/coord/cartesian/GridModel} gridModel
- * @param {module:echarts/ExtensionAPI} api
- */
-
-
- gridProto.resize = function (gridModel, api, ignoreContainLabel) {
- var gridRect = getLayoutRect(gridModel.getBoxLayoutParams(), {
- width: api.getWidth(),
- height: api.getHeight()
- });
- this._rect = gridRect;
- var axesList = this._axesList;
- adjustAxes(); // Minus label size
-
- if (!ignoreContainLabel && gridModel.get('containLabel')) {
- each(axesList, function (axis) {
- if (!axis.model.get('axisLabel.inside')) {
- var labelUnionRect = estimateLabelUnionRect(axis);
-
- if (labelUnionRect) {
- var dim = axis.isHorizontal() ? 'height' : 'width';
- var margin = axis.model.get('axisLabel.margin');
- gridRect[dim] -= labelUnionRect[dim] + margin;
-
- if (axis.position === 'top') {
- gridRect.y += labelUnionRect.height + margin;
- } else if (axis.position === 'left') {
- gridRect.x += labelUnionRect.width + margin;
- }
- }
- }
- });
- adjustAxes();
- }
-
- function adjustAxes() {
- each(axesList, function (axis) {
- var isHorizontal = axis.isHorizontal();
- var extent = isHorizontal ? [0, gridRect.width] : [0, gridRect.height];
- var idx = axis.inverse ? 1 : 0;
- axis.setExtent(extent[idx], extent[1 - idx]);
- updateAxisTransform(axis, isHorizontal ? gridRect.x : gridRect.y);
- });
- }
- };
- /**
- * @param {string} axisType
- * @param {number} [axisIndex]
- */
-
-
- gridProto.getAxis = function (axisType, axisIndex) {
- var axesMapOnDim = this._axesMap[axisType];
-
- if (axesMapOnDim != null) {
- if (axisIndex == null) {
- // Find first axis
- for (var name in axesMapOnDim) {
- if (axesMapOnDim.hasOwnProperty(name)) {
- return axesMapOnDim[name];
- }
- }
- }
-
- return axesMapOnDim[axisIndex];
- }
- };
- /**
- * @return {Array.<module:echarts/coord/Axis>}
- */
-
-
- gridProto.getAxes = function () {
- return this._axesList.slice();
- };
- /**
- * Usage:
- * grid.getCartesian(xAxisIndex, yAxisIndex);
- * grid.getCartesian(xAxisIndex);
- * grid.getCartesian(null, yAxisIndex);
- * grid.getCartesian({xAxisIndex: ..., yAxisIndex: ...});
- *
- * @param {number|Object} [xAxisIndex]
- * @param {number} [yAxisIndex]
- */
-
-
- gridProto.getCartesian = function (xAxisIndex, yAxisIndex) {
- if (xAxisIndex != null && yAxisIndex != null) {
- var key = 'x' + xAxisIndex + 'y' + yAxisIndex;
- return this._coordsMap[key];
- }
-
- if (isObject(xAxisIndex)) {
- yAxisIndex = xAxisIndex.yAxisIndex;
- xAxisIndex = xAxisIndex.xAxisIndex;
- } // When only xAxisIndex or yAxisIndex given, find its first cartesian.
-
-
- for (var i = 0, coordList = this._coordsList; i < coordList.length; i++) {
- if (coordList[i].getAxis('x').index === xAxisIndex || coordList[i].getAxis('y').index === yAxisIndex) {
- return coordList[i];
- }
- }
- };
-
- gridProto.getCartesians = function () {
- return this._coordsList.slice();
- };
- /**
- * @implements
- * see {module:echarts/CoodinateSystem}
- */
-
-
- gridProto.convertToPixel = function (ecModel, finder, value) {
- var target = this._findConvertTarget(ecModel, finder);
-
- return target.cartesian ? target.cartesian.dataToPoint(value) : target.axis ? target.axis.toGlobalCoord(target.axis.dataToCoord(value)) : null;
- };
- /**
- * @implements
- * see {module:echarts/CoodinateSystem}
- */
-
-
- gridProto.convertFromPixel = function (ecModel, finder, value) {
- var target = this._findConvertTarget(ecModel, finder);
-
- return target.cartesian ? target.cartesian.pointToData(value) : target.axis ? target.axis.coordToData(target.axis.toLocalCoord(value)) : null;
- };
- /**
- * @inner
- */
-
-
- gridProto._findConvertTarget = function (ecModel, finder) {
- var seriesModel = finder.seriesModel;
- var xAxisModel = finder.xAxisModel || seriesModel && seriesModel.getReferringComponents('xAxis')[0];
- var yAxisModel = finder.yAxisModel || seriesModel && seriesModel.getReferringComponents('yAxis')[0];
- var gridModel = finder.gridModel;
- var coordsList = this._coordsList;
- var cartesian;
- var axis;
-
- if (seriesModel) {
- cartesian = seriesModel.coordinateSystem;
- indexOf(coordsList, cartesian) < 0 && (cartesian = null);
- } else if (xAxisModel && yAxisModel) {
- cartesian = this.getCartesian(xAxisModel.componentIndex, yAxisModel.componentIndex);
- } else if (xAxisModel) {
- axis = this.getAxis('x', xAxisModel.componentIndex);
- } else if (yAxisModel) {
- axis = this.getAxis('y', yAxisModel.componentIndex);
- } // Lowest priority.
- else if (gridModel) {
- var grid = gridModel.coordinateSystem;
-
- if (grid === this) {
- cartesian = this._coordsList[0];
- }
- }
-
- return {
- cartesian: cartesian,
- axis: axis
- };
- };
- /**
- * @implements
- * see {module:echarts/CoodinateSystem}
- */
-
-
- gridProto.containPoint = function (point) {
- var coord = this._coordsList[0];
-
- if (coord) {
- return coord.containPoint(point);
- }
- };
- /**
- * Initialize cartesian coordinate systems
- * @private
- */
-
-
- gridProto._initCartesian = function (gridModel, ecModel, api) {
- var axisPositionUsed = {
- left: false,
- right: false,
- top: false,
- bottom: false
- };
- var axesMap = {
- x: {},
- y: {}
- };
- var axesCount = {
- x: 0,
- y: 0
- }; /// Create axis
-
- ecModel.eachComponent('xAxis', createAxisCreator('x'), this);
- ecModel.eachComponent('yAxis', createAxisCreator('y'), this);
-
- if (!axesCount.x || !axesCount.y) {
- // Roll back when there no either x or y axis
- this._axesMap = {};
- this._axesList = [];
- return;
- }
-
- this._axesMap = axesMap; /// Create cartesian2d
-
- each(axesMap.x, function (xAxis, xAxisIndex) {
- each(axesMap.y, function (yAxis, yAxisIndex) {
- var key = 'x' + xAxisIndex + 'y' + yAxisIndex;
- var cartesian = new Cartesian2D(key);
- cartesian.grid = this;
- cartesian.model = gridModel;
- this._coordsMap[key] = cartesian;
-
- this._coordsList.push(cartesian);
-
- cartesian.addAxis(xAxis);
- cartesian.addAxis(yAxis);
- }, this);
- }, this);
-
- function createAxisCreator(axisType) {
- return function (axisModel, idx) {
- if (!isAxisUsedInTheGrid(axisModel, gridModel, ecModel)) {
- return;
- }
-
- var axisPosition = axisModel.get('position');
-
- if (axisType === 'x') {
- // Fix position
- if (axisPosition !== 'top' && axisPosition !== 'bottom') {
- // Default bottom of X
- axisPosition = axisPositionUsed.bottom ? 'top' : 'bottom';
- }
- } else {
- // Fix position
- if (axisPosition !== 'left' && axisPosition !== 'right') {
- // Default left of Y
- axisPosition = axisPositionUsed.left ? 'right' : 'left';
- }
- }
-
- axisPositionUsed[axisPosition] = true;
- var axis = new Axis2D(axisType, createScaleByModel(axisModel), [0, 0], axisModel.get('type'), axisPosition);
- var isCategory = axis.type === 'category';
- axis.onBand = isCategory && axisModel.get('boundaryGap');
- axis.inverse = axisModel.get('inverse'); // Inject axis into axisModel
-
- axisModel.axis = axis; // Inject axisModel into axis
-
- axis.model = axisModel; // Inject grid info axis
-
- axis.grid = this; // Index of axis, can be used as key
-
- axis.index = idx;
-
- this._axesList.push(axis);
-
- axesMap[axisType][idx] = axis;
- axesCount[axisType]++;
- };
- }
- };
- /**
- * Update cartesian properties from series
- * @param {module:echarts/model/Option} option
- * @private
- */
-
-
- gridProto._updateScale = function (ecModel, gridModel) {
- // Reset scale
- each(this._axesList, function (axis) {
- axis.scale.setExtent(Infinity, -Infinity);
- });
- ecModel.eachSeries(function (seriesModel) {
- if (isCartesian2D(seriesModel)) {
- var axesModels = findAxesModels(seriesModel, ecModel);
- var xAxisModel = axesModels[0];
- var yAxisModel = axesModels[1];
-
- if (!isAxisUsedInTheGrid(xAxisModel, gridModel, ecModel) || !isAxisUsedInTheGrid(yAxisModel, gridModel, ecModel)) {
- return;
- }
-
- var cartesian = this.getCartesian(xAxisModel.componentIndex, yAxisModel.componentIndex);
- var data = seriesModel.getData();
- var xAxis = cartesian.getAxis('x');
- var yAxis = cartesian.getAxis('y');
-
- if (data.type === 'list') {
- unionExtent(data, xAxis, seriesModel);
- unionExtent(data, yAxis, seriesModel);
- }
- }
- }, this);
-
- function unionExtent(data, axis, seriesModel) {
- each(data.mapDimension(axis.dim, true), function (dim) {
- axis.scale.unionExtentFromData( // For example, the extent of the orginal dimension
- // is [0.1, 0.5], the extent of the `stackResultDimension`
- // is [7, 9], the final extent should not include [0.1, 0.5].
- data, getStackedDimension(data, dim));
- });
- }
- };
- /**
- * @param {string} [dim] 'x' or 'y' or 'auto' or null/undefined
- * @return {Object} {baseAxes: [], otherAxes: []}
- */
-
-
- gridProto.getTooltipAxes = function (dim) {
- var baseAxes = [];
- var otherAxes = [];
- each(this.getCartesians(), function (cartesian) {
- var baseAxis = dim != null && dim !== 'auto' ? cartesian.getAxis(dim) : cartesian.getBaseAxis();
- var otherAxis = cartesian.getOtherAxis(baseAxis);
- indexOf(baseAxes, baseAxis) < 0 && baseAxes.push(baseAxis);
- indexOf(otherAxes, otherAxis) < 0 && otherAxes.push(otherAxis);
- });
- return {
- baseAxes: baseAxes,
- otherAxes: otherAxes
- };
- };
- /**
- * @inner
- */
-
-
- function updateAxisTransform(axis, coordBase) {
- var axisExtent = axis.getExtent();
- var axisExtentSum = axisExtent[0] + axisExtent[1]; // Fast transform
-
- axis.toGlobalCoord = axis.dim === 'x' ? function (coord) {
- return coord + coordBase;
- } : function (coord) {
- return axisExtentSum - coord + coordBase;
- };
- axis.toLocalCoord = axis.dim === 'x' ? function (coord) {
- return coord - coordBase;
- } : function (coord) {
- return axisExtentSum - coord + coordBase;
- };
- }
-
- var axesTypes = ['xAxis', 'yAxis'];
- /**
- * @inner
- */
-
- function findAxesModels(seriesModel, ecModel) {
- return map(axesTypes, function (axisType) {
- var axisModel = seriesModel.getReferringComponents(axisType)[0];
- return axisModel;
- });
- }
- /**
- * @inner
- */
-
-
- function isCartesian2D(seriesModel) {
- return seriesModel.get('coordinateSystem') === 'cartesian2d';
- }
-
- Grid.create = function (ecModel, api) {
- var grids = [];
- ecModel.eachComponent('grid', function (gridModel, idx) {
- var grid = new Grid(gridModel, ecModel, api);
- grid.name = 'grid_' + idx; // dataSampling requires axis extent, so resize
- // should be performed in create stage.
-
- grid.resize(gridModel, api, true);
- gridModel.coordinateSystem = grid;
- grids.push(grid);
- }); // Inject the coordinateSystems into seriesModel
-
- ecModel.eachSeries(function (seriesModel) {
- if (!isCartesian2D(seriesModel)) {
- return;
- }
-
- var axesModels = findAxesModels(seriesModel, ecModel);
- var xAxisModel = axesModels[0];
- var yAxisModel = axesModels[1];
- var gridModel = xAxisModel.getCoordSysModel();
- var grid = gridModel.coordinateSystem;
- seriesModel.coordinateSystem = grid.getCartesian(xAxisModel.componentIndex, yAxisModel.componentIndex);
- });
- return grids;
- }; // For deciding which dimensions to use when creating list data
-
-
- Grid.dimensions = Grid.prototype.dimensions = Cartesian2D.prototype.dimensions;
- CoordinateSystem.register('cartesian2d', Grid);
- var _default = Grid;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1906:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Data selectable mixin for chart series.
- * To eanble data select, option of series must have `selectedMode`.
- * And each data item will use `selected` to toggle itself selected status
- */
- var _default = {
- /**
- * @param {Array.<Object>} targetList [{name, value, selected}, ...]
- * If targetList is an array, it should like [{name: ..., value: ...}, ...].
- * If targetList is a "List", it must have coordDim: 'value' dimension and name.
- */
- updateSelectedMap: function (targetList) {
- this._targetList = zrUtil.isArray(targetList) ? targetList.slice() : [];
- this._selectTargetMap = zrUtil.reduce(targetList || [], function (targetMap, target) {
- targetMap.set(target.name, target);
- return targetMap;
- }, zrUtil.createHashMap());
- },
-
- /**
- * Either name or id should be passed as input here.
- * If both of them are defined, id is used.
- *
- * @param {string|undefined} name name of data
- * @param {number|undefined} id dataIndex of data
- */
- // PENGING If selectedMode is null ?
- select: function (name, id) {
- var target = id != null ? this._targetList[id] : this._selectTargetMap.get(name);
- var selectedMode = this.get('selectedMode');
-
- if (selectedMode === 'single') {
- this._selectTargetMap.each(function (target) {
- target.selected = false;
- });
- }
-
- target && (target.selected = true);
- },
-
- /**
- * Either name or id should be passed as input here.
- * If both of them are defined, id is used.
- *
- * @param {string|undefined} name name of data
- * @param {number|undefined} id dataIndex of data
- */
- unSelect: function (name, id) {
- var target = id != null ? this._targetList[id] : this._selectTargetMap.get(name); // var selectedMode = this.get('selectedMode');
- // selectedMode !== 'single' && target && (target.selected = false);
-
- target && (target.selected = false);
- },
-
- /**
- * Either name or id should be passed as input here.
- * If both of them are defined, id is used.
- *
- * @param {string|undefined} name name of data
- * @param {number|undefined} id dataIndex of data
- */
- toggleSelected: function (name, id) {
- var target = id != null ? this._targetList[id] : this._selectTargetMap.get(name);
-
- if (target != null) {
- this[target.selected ? 'unSelect' : 'select'](name, id);
- return target.selected;
- }
- },
-
- /**
- * Either name or id should be passed as input here.
- * If both of them are defined, id is used.
- *
- * @param {string|undefined} name name of data
- * @param {number|undefined} id dataIndex of data
- */
- isSelected: function (name, id) {
- var target = id != null ? this._targetList[id] : this._selectTargetMap.get(name);
- return target && target.selected;
- }
- };
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1907:
- /***/ (function(module, exports) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * For geo and graph.
- *
- * @param {Object} controllerHost
- * @param {module:zrender/Element} controllerHost.target
- */
- function updateViewOnPan(controllerHost, dx, dy) {
- var target = controllerHost.target;
- var pos = target.position;
- pos[0] += dx;
- pos[1] += dy;
- target.dirty();
- }
- /**
- * For geo and graph.
- *
- * @param {Object} controllerHost
- * @param {module:zrender/Element} controllerHost.target
- * @param {number} controllerHost.zoom
- * @param {number} controllerHost.zoomLimit like: {min: 1, max: 2}
- */
-
-
- function updateViewOnZoom(controllerHost, zoomDelta, zoomX, zoomY) {
- var target = controllerHost.target;
- var zoomLimit = controllerHost.zoomLimit;
- var pos = target.position;
- var scale = target.scale;
- var newZoom = controllerHost.zoom = controllerHost.zoom || 1;
- newZoom *= zoomDelta;
-
- if (zoomLimit) {
- var zoomMin = zoomLimit.min || 0;
- var zoomMax = zoomLimit.max || Infinity;
- newZoom = Math.max(Math.min(zoomMax, newZoom), zoomMin);
- }
-
- var zoomScale = newZoom / controllerHost.zoom;
- controllerHost.zoom = newZoom; // Keep the mouse center when scaling
-
- pos[0] -= (zoomX - pos[0]) * (zoomScale - 1);
- pos[1] -= (zoomY - pos[1]) * (zoomScale - 1);
- scale[0] *= zoomScale;
- scale[1] *= zoomScale;
- target.dirty();
- }
-
- exports.updateViewOnPan = updateViewOnPan;
- exports.updateViewOnZoom = updateViewOnZoom;
-
- /***/ }),
-
- /***/ 1908:
- /***/ (function(module, exports) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @param {module:echarts/coord/View} view
- * @param {Object} payload
- * @param {Object} [zoomLimit]
- */
- function updateCenterAndZoom(view, payload, zoomLimit) {
- var previousZoom = view.getZoom();
- var center = view.getCenter();
- var zoom = payload.zoom;
- var point = view.dataToPoint(center);
-
- if (payload.dx != null && payload.dy != null) {
- point[0] -= payload.dx;
- point[1] -= payload.dy;
- var center = view.pointToData(point);
- view.setCenter(center);
- }
-
- if (zoom != null) {
- if (zoomLimit) {
- var zoomMin = zoomLimit.min || 0;
- var zoomMax = zoomLimit.max || Infinity;
- zoom = Math.max(Math.min(previousZoom * zoom, zoomMax), zoomMin) / previousZoom;
- } // Zoom on given point(originX, originY)
-
-
- view.scale[0] *= zoom;
- view.scale[1] *= zoom;
- var position = view.position;
- var fixX = (payload.originX - position[0]) * (zoom - 1);
- var fixY = (payload.originY - position[1]) * (zoom - 1);
- position[0] -= fixX;
- position[1] -= fixY;
- view.updateTransform(); // Get the new center
-
- var center = view.pointToData(point);
- view.setCenter(center);
- view.setZoom(zoom * previousZoom);
- }
-
- return {
- center: view.getCenter(),
- zoom: view.getZoom()
- };
- }
-
- exports.updateCenterAndZoom = updateCenterAndZoom;
-
- /***/ }),
-
- /***/ 1909:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var Geo = __webpack_require__(2598);
-
- var layout = __webpack_require__(1171);
-
- var numberUtil = __webpack_require__(985);
-
- var geoSourceManager = __webpack_require__(1794);
-
- var mapDataStorage = __webpack_require__(1903);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Resize method bound to the geo
- * @param {module:echarts/coord/geo/GeoModel|module:echarts/chart/map/MapModel} geoModel
- * @param {module:echarts/ExtensionAPI} api
- */
- function resizeGeo(geoModel, api) {
- var boundingCoords = geoModel.get('boundingCoords');
-
- if (boundingCoords != null) {
- var leftTop = boundingCoords[0];
- var rightBottom = boundingCoords[1];
-
- if (isNaN(leftTop[0]) || isNaN(leftTop[1]) || isNaN(rightBottom[0]) || isNaN(rightBottom[1])) {} else {
- this.setBoundingRect(leftTop[0], leftTop[1], rightBottom[0] - leftTop[0], rightBottom[1] - leftTop[1]);
- }
- }
-
- var rect = this.getBoundingRect();
- var boxLayoutOption;
- var center = geoModel.get('layoutCenter');
- var size = geoModel.get('layoutSize');
- var viewWidth = api.getWidth();
- var viewHeight = api.getHeight();
- var aspect = rect.width / rect.height * this.aspectScale;
- var useCenterAndSize = false;
-
- if (center && size) {
- center = [numberUtil.parsePercent(center[0], viewWidth), numberUtil.parsePercent(center[1], viewHeight)];
- size = numberUtil.parsePercent(size, Math.min(viewWidth, viewHeight));
-
- if (!isNaN(center[0]) && !isNaN(center[1]) && !isNaN(size)) {
- useCenterAndSize = true;
- } else {}
- }
-
- var viewRect;
-
- if (useCenterAndSize) {
- var viewRect = {};
-
- if (aspect > 1) {
- // Width is same with size
- viewRect.width = size;
- viewRect.height = size / aspect;
- } else {
- viewRect.height = size;
- viewRect.width = size * aspect;
- }
-
- viewRect.y = center[1] - viewRect.height / 2;
- viewRect.x = center[0] - viewRect.width / 2;
- } else {
- // Use left/top/width/height
- boxLayoutOption = geoModel.getBoxLayoutParams(); // 0.75 rate
-
- boxLayoutOption.aspect = aspect;
- viewRect = layout.getLayoutRect(boxLayoutOption, {
- width: viewWidth,
- height: viewHeight
- });
- }
-
- this.setViewRect(viewRect.x, viewRect.y, viewRect.width, viewRect.height);
- this.setCenter(geoModel.get('center'));
- this.setZoom(geoModel.get('zoom'));
- }
- /**
- * @param {module:echarts/coord/Geo} geo
- * @param {module:echarts/model/Model} model
- * @inner
- */
-
-
- function setGeoCoords(geo, model) {
- zrUtil.each(model.get('geoCoord'), function (geoCoord, name) {
- geo.addGeoCoord(name, geoCoord);
- });
- }
-
- var geoCreator = {
- // For deciding which dimensions to use when creating list data
- dimensions: Geo.prototype.dimensions,
- create: function (ecModel, api) {
- var geoList = []; // FIXME Create each time may be slow
-
- ecModel.eachComponent('geo', function (geoModel, idx) {
- var name = geoModel.get('map');
- var aspectScale = geoModel.get('aspectScale');
- var invertLongitute = true;
- var mapRecords = mapDataStorage.retrieveMap(name);
-
- if (mapRecords && mapRecords[0] && mapRecords[0].type === 'svg') {
- aspectScale == null && (aspectScale = 1);
- invertLongitute = false;
- } else {
- aspectScale == null && (aspectScale = 0.75);
- }
-
- var geo = new Geo(name + idx, name, geoModel.get('nameMap'), invertLongitute);
- geo.aspectScale = aspectScale;
- geo.zoomLimit = geoModel.get('scaleLimit');
- geoList.push(geo);
- setGeoCoords(geo, geoModel);
- geoModel.coordinateSystem = geo;
- geo.model = geoModel; // Inject resize method
-
- geo.resize = resizeGeo;
- geo.resize(geoModel, api);
- });
- ecModel.eachSeries(function (seriesModel) {
- var coordSys = seriesModel.get('coordinateSystem');
-
- if (coordSys === 'geo') {
- var geoIndex = seriesModel.get('geoIndex') || 0;
- seriesModel.coordinateSystem = geoList[geoIndex];
- }
- }); // If has map series
-
- var mapModelGroupBySeries = {};
- ecModel.eachSeriesByType('map', function (seriesModel) {
- if (!seriesModel.getHostGeoModel()) {
- var mapType = seriesModel.getMapType();
- mapModelGroupBySeries[mapType] = mapModelGroupBySeries[mapType] || [];
- mapModelGroupBySeries[mapType].push(seriesModel);
- }
- });
- zrUtil.each(mapModelGroupBySeries, function (mapSeries, mapType) {
- var nameMapList = zrUtil.map(mapSeries, function (singleMapSeries) {
- return singleMapSeries.get('nameMap');
- });
- var geo = new Geo(mapType, mapType, zrUtil.mergeAll(nameMapList));
- geo.zoomLimit = zrUtil.retrieve.apply(null, zrUtil.map(mapSeries, function (singleMapSeries) {
- return singleMapSeries.get('scaleLimit');
- }));
- geoList.push(geo); // Inject resize method
-
- geo.resize = resizeGeo;
- geo.aspectScale = mapSeries[0].get('aspectScale');
- geo.resize(mapSeries[0], api);
- zrUtil.each(mapSeries, function (singleMapSeries) {
- singleMapSeries.coordinateSystem = geo;
- setGeoCoords(geo, singleMapSeries);
- });
- });
- return geoList;
- },
-
- /**
- * Fill given regions array
- * @param {Array.<Object>} originRegionArr
- * @param {string} mapName
- * @param {Object} [nameMap]
- * @return {Array}
- */
- getFilledRegions: function (originRegionArr, mapName, nameMap) {
- // Not use the original
- var regionsArr = (originRegionArr || []).slice();
- var dataNameMap = zrUtil.createHashMap();
-
- for (var i = 0; i < regionsArr.length; i++) {
- dataNameMap.set(regionsArr[i].name, regionsArr[i]);
- }
-
- var source = geoSourceManager.load(mapName, nameMap);
- zrUtil.each(source.regions, function (region) {
- var name = region.name;
- !dataNameMap.get(name) && regionsArr.push({
- name: name
- });
- });
- return regionsArr;
- }
- };
- echarts.registerCoordinateSystem('geo', geoCreator);
- var _default = geoCreator;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1910:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var vector = __webpack_require__(1180);
-
- var matrix = __webpack_require__(1350);
-
- var BoundingRect = __webpack_require__(1185);
-
- var Transformable = __webpack_require__(1893);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Simple view coordinate system
- * Mapping given x, y to transformd view x, y
- */
- var v2ApplyTransform = vector.applyTransform; // Dummy transform node
-
- function TransformDummy() {
- Transformable.call(this);
- }
-
- zrUtil.mixin(TransformDummy, Transformable);
-
- function View(name) {
- /**
- * @type {string}
- */
- this.name = name;
- /**
- * @type {Object}
- */
-
- this.zoomLimit;
- Transformable.call(this);
- this._roamTransformable = new TransformDummy();
- this._rawTransformable = new TransformDummy();
- this._center;
- this._zoom;
- }
-
- View.prototype = {
- constructor: View,
- type: 'view',
-
- /**
- * @param {Array.<string>}
- * @readOnly
- */
- dimensions: ['x', 'y'],
-
- /**
- * Set bounding rect
- * @param {number} x
- * @param {number} y
- * @param {number} width
- * @param {number} height
- */
- // PENDING to getRect
- setBoundingRect: function (x, y, width, height) {
- this._rect = new BoundingRect(x, y, width, height);
- return this._rect;
- },
-
- /**
- * @return {module:zrender/core/BoundingRect}
- */
- // PENDING to getRect
- getBoundingRect: function () {
- return this._rect;
- },
-
- /**
- * @param {number} x
- * @param {number} y
- * @param {number} width
- * @param {number} height
- */
- setViewRect: function (x, y, width, height) {
- this.transformTo(x, y, width, height);
- this._viewRect = new BoundingRect(x, y, width, height);
- },
-
- /**
- * Transformed to particular position and size
- * @param {number} x
- * @param {number} y
- * @param {number} width
- * @param {number} height
- */
- transformTo: function (x, y, width, height) {
- var rect = this.getBoundingRect();
- var rawTransform = this._rawTransformable;
- rawTransform.transform = rect.calculateTransform(new BoundingRect(x, y, width, height));
- rawTransform.decomposeTransform();
-
- this._updateTransform();
- },
-
- /**
- * Set center of view
- * @param {Array.<number>} [centerCoord]
- */
- setCenter: function (centerCoord) {
- if (!centerCoord) {
- return;
- }
-
- this._center = centerCoord;
-
- this._updateCenterAndZoom();
- },
-
- /**
- * @param {number} zoom
- */
- setZoom: function (zoom) {
- zoom = zoom || 1;
- var zoomLimit = this.zoomLimit;
-
- if (zoomLimit) {
- if (zoomLimit.max != null) {
- zoom = Math.min(zoomLimit.max, zoom);
- }
-
- if (zoomLimit.min != null) {
- zoom = Math.max(zoomLimit.min, zoom);
- }
- }
-
- this._zoom = zoom;
-
- this._updateCenterAndZoom();
- },
-
- /**
- * Get default center without roam
- */
- getDefaultCenter: function () {
- // Rect before any transform
- var rawRect = this.getBoundingRect();
- var cx = rawRect.x + rawRect.width / 2;
- var cy = rawRect.y + rawRect.height / 2;
- return [cx, cy];
- },
- getCenter: function () {
- return this._center || this.getDefaultCenter();
- },
- getZoom: function () {
- return this._zoom || 1;
- },
-
- /**
- * @return {Array.<number}
- */
- getRoamTransform: function () {
- return this._roamTransformable.getLocalTransform();
- },
-
- /**
- * Remove roam
- */
- _updateCenterAndZoom: function () {
- // Must update after view transform updated
- var rawTransformMatrix = this._rawTransformable.getLocalTransform();
-
- var roamTransform = this._roamTransformable;
- var defaultCenter = this.getDefaultCenter();
- var center = this.getCenter();
- var zoom = this.getZoom();
- center = vector.applyTransform([], center, rawTransformMatrix);
- defaultCenter = vector.applyTransform([], defaultCenter, rawTransformMatrix);
- roamTransform.origin = center;
- roamTransform.position = [defaultCenter[0] - center[0], defaultCenter[1] - center[1]];
- roamTransform.scale = [zoom, zoom];
-
- this._updateTransform();
- },
-
- /**
- * Update transform from roam and mapLocation
- * @private
- */
- _updateTransform: function () {
- var roamTransformable = this._roamTransformable;
- var rawTransformable = this._rawTransformable;
- rawTransformable.parent = roamTransformable;
- roamTransformable.updateTransform();
- rawTransformable.updateTransform();
- matrix.copy(this.transform || (this.transform = []), rawTransformable.transform || matrix.create());
- this._rawTransform = rawTransformable.getLocalTransform();
- this.invTransform = this.invTransform || [];
- matrix.invert(this.invTransform, this.transform);
- this.decomposeTransform();
- },
-
- /**
- * @return {module:zrender/core/BoundingRect}
- */
- getViewRect: function () {
- return this._viewRect;
- },
-
- /**
- * Get view rect after roam transform
- * @return {module:zrender/core/BoundingRect}
- */
- getViewRectAfterRoam: function () {
- var rect = this.getBoundingRect().clone();
- rect.applyTransform(this.transform);
- return rect;
- },
-
- /**
- * Convert a single (lon, lat) data item to (x, y) point.
- * @param {Array.<number>} data
- * @param {boolean} noRoam
- * @param {Array.<number>} [out]
- * @return {Array.<number>}
- */
- dataToPoint: function (data, noRoam, out) {
- var transform = noRoam ? this._rawTransform : this.transform;
- out = out || [];
- return transform ? v2ApplyTransform(out, data, transform) : vector.copy(out, data);
- },
-
- /**
- * Convert a (x, y) point to (lon, lat) data
- * @param {Array.<number>} point
- * @return {Array.<number>}
- */
- pointToData: function (point) {
- var invTransform = this.invTransform;
- return invTransform ? v2ApplyTransform([], point, invTransform) : [point[0], point[1]];
- },
-
- /**
- * @implements
- * see {module:echarts/CoodinateSystem}
- */
- convertToPixel: zrUtil.curry(doConvert, 'dataToPoint'),
-
- /**
- * @implements
- * see {module:echarts/CoodinateSystem}
- */
- convertFromPixel: zrUtil.curry(doConvert, 'pointToData'),
-
- /**
- * @implements
- * see {module:echarts/CoodinateSystem}
- */
- containPoint: function (point) {
- return this.getViewRectAfterRoam().contain(point[0], point[1]);
- }
- /**
- * @return {number}
- */
- // getScalarScale: function () {
- // // Use determinant square root of transform to mutiply scalar
- // var m = this.transform;
- // var det = Math.sqrt(Math.abs(m[0] * m[3] - m[2] * m[1]));
- // return det;
- // }
-
- };
- zrUtil.mixin(View, Transformable);
-
- function doConvert(methodName, ecModel, finder, value) {
- var seriesModel = finder.seriesModel;
- var coordSys = seriesModel ? seriesModel.coordinateSystem : null; // e.g., graph.
-
- return coordSys === this ? coordSys[methodName](value) : null;
- }
-
- var _default = View;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1911:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var Model = __webpack_require__(1317);
-
- var linkList = __webpack_require__(2303);
-
- var List = __webpack_require__(1403);
-
- var createDimensions = __webpack_require__(1602);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Tree data structure
- *
- * @module echarts/data/Tree
- */
-
- /**
- * @constructor module:echarts/data/Tree~TreeNode
- * @param {string} name
- * @param {module:echarts/data/Tree} hostTree
- */
- var TreeNode = function (name, hostTree) {
- /**
- * @type {string}
- */
- this.name = name || '';
- /**
- * Depth of node
- *
- * @type {number}
- * @readOnly
- */
-
- this.depth = 0;
- /**
- * Height of the subtree rooted at this node.
- * @type {number}
- * @readOnly
- */
-
- this.height = 0;
- /**
- * @type {module:echarts/data/Tree~TreeNode}
- * @readOnly
- */
-
- this.parentNode = null;
- /**
- * Reference to list item.
- * Do not persistent dataIndex outside,
- * besause it may be changed by list.
- * If dataIndex -1,
- * this node is logical deleted (filtered) in list.
- *
- * @type {Object}
- * @readOnly
- */
-
- this.dataIndex = -1;
- /**
- * @type {Array.<module:echarts/data/Tree~TreeNode>}
- * @readOnly
- */
-
- this.children = [];
- /**
- * @type {Array.<module:echarts/data/Tree~TreeNode>}
- * @pubilc
- */
-
- this.viewChildren = [];
- /**
- * @type {moduel:echarts/data/Tree}
- * @readOnly
- */
-
- this.hostTree = hostTree;
- };
-
- TreeNode.prototype = {
- constructor: TreeNode,
-
- /**
- * The node is removed.
- * @return {boolean} is removed.
- */
- isRemoved: function () {
- return this.dataIndex < 0;
- },
-
- /**
- * Travel this subtree (include this node).
- * Usage:
- * node.eachNode(function () { ... }); // preorder
- * node.eachNode('preorder', function () { ... }); // preorder
- * node.eachNode('postorder', function () { ... }); // postorder
- * node.eachNode(
- * {order: 'postorder', attr: 'viewChildren'},
- * function () { ... }
- * ); // postorder
- *
- * @param {(Object|string)} options If string, means order.
- * @param {string=} options.order 'preorder' or 'postorder'
- * @param {string=} options.attr 'children' or 'viewChildren'
- * @param {Function} cb If in preorder and return false,
- * its subtree will not be visited.
- * @param {Object} [context]
- */
- eachNode: function (options, cb, context) {
- if (typeof options === 'function') {
- context = cb;
- cb = options;
- options = null;
- }
-
- options = options || {};
-
- if (zrUtil.isString(options)) {
- options = {
- order: options
- };
- }
-
- var order = options.order || 'preorder';
- var children = this[options.attr || 'children'];
- var suppressVisitSub;
- order === 'preorder' && (suppressVisitSub = cb.call(context, this));
-
- for (var i = 0; !suppressVisitSub && i < children.length; i++) {
- children[i].eachNode(options, cb, context);
- }
-
- order === 'postorder' && cb.call(context, this);
- },
-
- /**
- * Update depth and height of this subtree.
- *
- * @param {number} depth
- */
- updateDepthAndHeight: function (depth) {
- var height = 0;
- this.depth = depth;
-
- for (var i = 0; i < this.children.length; i++) {
- var child = this.children[i];
- child.updateDepthAndHeight(depth + 1);
-
- if (child.height > height) {
- height = child.height;
- }
- }
-
- this.height = height + 1;
- },
-
- /**
- * @param {string} id
- * @return {module:echarts/data/Tree~TreeNode}
- */
- getNodeById: function (id) {
- if (this.getId() === id) {
- return this;
- }
-
- for (var i = 0, children = this.children, len = children.length; i < len; i++) {
- var res = children[i].getNodeById(id);
-
- if (res) {
- return res;
- }
- }
- },
-
- /**
- * @param {module:echarts/data/Tree~TreeNode} node
- * @return {boolean}
- */
- contains: function (node) {
- if (node === this) {
- return true;
- }
-
- for (var i = 0, children = this.children, len = children.length; i < len; i++) {
- var res = children[i].contains(node);
-
- if (res) {
- return res;
- }
- }
- },
-
- /**
- * @param {boolean} includeSelf Default false.
- * @return {Array.<module:echarts/data/Tree~TreeNode>} order: [root, child, grandchild, ...]
- */
- getAncestors: function (includeSelf) {
- var ancestors = [];
- var node = includeSelf ? this : this.parentNode;
-
- while (node) {
- ancestors.push(node);
- node = node.parentNode;
- }
-
- ancestors.reverse();
- return ancestors;
- },
-
- /**
- * @param {string|Array=} [dimension='value'] Default 'value'. can be 0, 1, 2, 3
- * @return {number} Value.
- */
- getValue: function (dimension) {
- var data = this.hostTree.data;
- return data.get(data.getDimension(dimension || 'value'), this.dataIndex);
- },
-
- /**
- * @param {Object} layout
- * @param {boolean=} [merge=false]
- */
- setLayout: function (layout, merge) {
- this.dataIndex >= 0 && this.hostTree.data.setItemLayout(this.dataIndex, layout, merge);
- },
-
- /**
- * @return {Object} layout
- */
- getLayout: function () {
- return this.hostTree.data.getItemLayout(this.dataIndex);
- },
-
- /**
- * @param {string} [path]
- * @return {module:echarts/model/Model}
- */
- getModel: function (path) {
- if (this.dataIndex < 0) {
- return;
- }
-
- var hostTree = this.hostTree;
- var itemModel = hostTree.data.getItemModel(this.dataIndex);
- var levelModel = this.getLevelModel();
- var leavesModel;
-
- if (!levelModel && (this.children.length === 0 || this.children.length !== 0 && this.isExpand === false)) {
- leavesModel = this.getLeavesModel();
- }
-
- return itemModel.getModel(path, (levelModel || leavesModel || hostTree.hostModel).getModel(path));
- },
-
- /**
- * @return {module:echarts/model/Model}
- */
- getLevelModel: function () {
- return (this.hostTree.levelModels || [])[this.depth];
- },
-
- /**
- * @return {module:echarts/model/Model}
- */
- getLeavesModel: function () {
- return this.hostTree.leavesModel;
- },
-
- /**
- * @example
- * setItemVisual('color', color);
- * setItemVisual({
- * 'color': color
- * });
- */
- setVisual: function (key, value) {
- this.dataIndex >= 0 && this.hostTree.data.setItemVisual(this.dataIndex, key, value);
- },
-
- /**
- * Get item visual
- */
- getVisual: function (key, ignoreParent) {
- return this.hostTree.data.getItemVisual(this.dataIndex, key, ignoreParent);
- },
-
- /**
- * @public
- * @return {number}
- */
- getRawIndex: function () {
- return this.hostTree.data.getRawIndex(this.dataIndex);
- },
-
- /**
- * @public
- * @return {string}
- */
- getId: function () {
- return this.hostTree.data.getId(this.dataIndex);
- },
-
- /**
- * if this is an ancestor of another node
- *
- * @public
- * @param {TreeNode} node another node
- * @return {boolean} if is ancestor
- */
- isAncestorOf: function (node) {
- var parent = node.parentNode;
-
- while (parent) {
- if (parent === this) {
- return true;
- }
-
- parent = parent.parentNode;
- }
-
- return false;
- },
-
- /**
- * if this is an descendant of another node
- *
- * @public
- * @param {TreeNode} node another node
- * @return {boolean} if is descendant
- */
- isDescendantOf: function (node) {
- return node !== this && node.isAncestorOf(this);
- }
- };
- /**
- * @constructor
- * @alias module:echarts/data/Tree
- * @param {module:echarts/model/Model} hostModel
- * @param {Array.<Object>} levelOptions
- * @param {Object} leavesOption
- */
-
- function Tree(hostModel, levelOptions, leavesOption) {
- /**
- * @type {module:echarts/data/Tree~TreeNode}
- * @readOnly
- */
- this.root;
- /**
- * @type {module:echarts/data/List}
- * @readOnly
- */
-
- this.data;
- /**
- * Index of each item is the same as the raw index of coresponding list item.
- * @private
- * @type {Array.<module:echarts/data/Tree~TreeNode}
- */
-
- this._nodes = [];
- /**
- * @private
- * @readOnly
- * @type {module:echarts/model/Model}
- */
-
- this.hostModel = hostModel;
- /**
- * @private
- * @readOnly
- * @type {Array.<module:echarts/model/Model}
- */
-
- this.levelModels = zrUtil.map(levelOptions || [], function (levelDefine) {
- return new Model(levelDefine, hostModel, hostModel.ecModel);
- });
- this.leavesModel = new Model(leavesOption || {}, hostModel, hostModel.ecModel);
- }
-
- Tree.prototype = {
- constructor: Tree,
- type: 'tree',
-
- /**
- * Travel this subtree (include this node).
- * Usage:
- * node.eachNode(function () { ... }); // preorder
- * node.eachNode('preorder', function () { ... }); // preorder
- * node.eachNode('postorder', function () { ... }); // postorder
- * node.eachNode(
- * {order: 'postorder', attr: 'viewChildren'},
- * function () { ... }
- * ); // postorder
- *
- * @param {(Object|string)} options If string, means order.
- * @param {string=} options.order 'preorder' or 'postorder'
- * @param {string=} options.attr 'children' or 'viewChildren'
- * @param {Function} cb
- * @param {Object} [context]
- */
- eachNode: function (options, cb, context) {
- this.root.eachNode(options, cb, context);
- },
-
- /**
- * @param {number} dataIndex
- * @return {module:echarts/data/Tree~TreeNode}
- */
- getNodeByDataIndex: function (dataIndex) {
- var rawIndex = this.data.getRawIndex(dataIndex);
- return this._nodes[rawIndex];
- },
-
- /**
- * @param {string} name
- * @return {module:echarts/data/Tree~TreeNode}
- */
- getNodeByName: function (name) {
- return this.root.getNodeByName(name);
- },
-
- /**
- * Update item available by list,
- * when list has been performed options like 'filterSelf' or 'map'.
- */
- update: function () {
- var data = this.data;
- var nodes = this._nodes;
-
- for (var i = 0, len = nodes.length; i < len; i++) {
- nodes[i].dataIndex = -1;
- }
-
- for (var i = 0, len = data.count(); i < len; i++) {
- nodes[data.getRawIndex(i)].dataIndex = i;
- }
- },
-
- /**
- * Clear all layouts
- */
- clearLayouts: function () {
- this.data.clearItemLayouts();
- }
- };
- /**
- * data node format:
- * {
- * name: ...
- * value: ...
- * children: [
- * {
- * name: ...
- * value: ...
- * children: ...
- * },
- * ...
- * ]
- * }
- *
- * @static
- * @param {Object} dataRoot Root node.
- * @param {module:echarts/model/Model} hostModel
- * @param {Object} treeOptions
- * @param {Array.<Object>} treeOptions.levels
- * @param {Array.<Object>} treeOptions.leaves
- * @return module:echarts/data/Tree
- */
-
- Tree.createTree = function (dataRoot, hostModel, treeOptions, beforeLink) {
- var tree = new Tree(hostModel, treeOptions.levels, treeOptions.leaves);
- var listData = [];
- var dimMax = 1;
- buildHierarchy(dataRoot);
-
- function buildHierarchy(dataNode, parentNode) {
- var value = dataNode.value;
- dimMax = Math.max(dimMax, zrUtil.isArray(value) ? value.length : 1);
- listData.push(dataNode);
- var node = new TreeNode(dataNode.name, tree);
- parentNode ? addChild(node, parentNode) : tree.root = node;
-
- tree._nodes.push(node);
-
- var children = dataNode.children;
-
- if (children) {
- for (var i = 0; i < children.length; i++) {
- buildHierarchy(children[i], node);
- }
- }
- }
-
- tree.root.updateDepthAndHeight(0);
- var dimensionsInfo = createDimensions(listData, {
- coordDimensions: ['value'],
- dimensionsCount: dimMax
- });
- var list = new List(dimensionsInfo, hostModel);
- list.initData(listData);
- linkList({
- mainData: list,
- struct: tree,
- structAttr: 'tree'
- });
- tree.update();
- beforeLink && beforeLink(list);
- return tree;
- };
- /**
- * It is needed to consider the mess of 'list', 'hostModel' when creating a TreeNote,
- * so this function is not ready and not necessary to be public.
- *
- * @param {(module:echarts/data/Tree~TreeNode|Object)} child
- */
-
-
- function addChild(child, node) {
- var children = node.children;
-
- if (child.parentNode === node) {
- return;
- }
-
- children.push(child);
- child.parentNode = node;
- }
-
- var _default = Tree;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1912:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var graphic = __webpack_require__(906);
-
- var LineGroup = __webpack_require__(1913);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @module echarts/chart/helper/LineDraw
- */
- // import IncrementalDisplayable from 'zrender/src/graphic/IncrementalDisplayable';
-
- /**
- * @alias module:echarts/component/marker/LineDraw
- * @constructor
- */
- function LineDraw(ctor) {
- this._ctor = ctor || LineGroup;
- this.group = new graphic.Group();
- }
-
- var lineDrawProto = LineDraw.prototype;
-
- lineDrawProto.isPersistent = function () {
- return true;
- };
- /**
- * @param {module:echarts/data/List} lineData
- */
-
-
- lineDrawProto.updateData = function (lineData) {
- var lineDraw = this;
- var group = lineDraw.group;
- var oldLineData = lineDraw._lineData;
- lineDraw._lineData = lineData; // There is no oldLineData only when first rendering or switching from
- // stream mode to normal mode, where previous elements should be removed.
-
- if (!oldLineData) {
- group.removeAll();
- }
-
- var seriesScope = makeSeriesScope(lineData);
- lineData.diff(oldLineData).add(function (idx) {
- doAdd(lineDraw, lineData, idx, seriesScope);
- }).update(function (newIdx, oldIdx) {
- doUpdate(lineDraw, oldLineData, lineData, oldIdx, newIdx, seriesScope);
- }).remove(function (idx) {
- group.remove(oldLineData.getItemGraphicEl(idx));
- }).execute();
- };
-
- function doAdd(lineDraw, lineData, idx, seriesScope) {
- var itemLayout = lineData.getItemLayout(idx);
-
- if (!lineNeedsDraw(itemLayout)) {
- return;
- }
-
- var el = new lineDraw._ctor(lineData, idx, seriesScope);
- lineData.setItemGraphicEl(idx, el);
- lineDraw.group.add(el);
- }
-
- function doUpdate(lineDraw, oldLineData, newLineData, oldIdx, newIdx, seriesScope) {
- var itemEl = oldLineData.getItemGraphicEl(oldIdx);
-
- if (!lineNeedsDraw(newLineData.getItemLayout(newIdx))) {
- lineDraw.group.remove(itemEl);
- return;
- }
-
- if (!itemEl) {
- itemEl = new lineDraw._ctor(newLineData, newIdx, seriesScope);
- } else {
- itemEl.updateData(newLineData, newIdx, seriesScope);
- }
-
- newLineData.setItemGraphicEl(newIdx, itemEl);
- lineDraw.group.add(itemEl);
- }
-
- lineDrawProto.updateLayout = function () {
- var lineData = this._lineData; // Do not support update layout in incremental mode.
-
- if (!lineData) {
- return;
- }
-
- lineData.eachItemGraphicEl(function (el, idx) {
- el.updateLayout(lineData, idx);
- }, this);
- };
-
- lineDrawProto.incrementalPrepareUpdate = function (lineData) {
- this._seriesScope = makeSeriesScope(lineData);
- this._lineData = null;
- this.group.removeAll();
- };
-
- lineDrawProto.incrementalUpdate = function (taskParams, lineData) {
- function updateIncrementalAndHover(el) {
- if (!el.isGroup) {
- el.incremental = el.useHoverLayer = true;
- }
- }
-
- for (var idx = taskParams.start; idx < taskParams.end; idx++) {
- var itemLayout = lineData.getItemLayout(idx);
-
- if (lineNeedsDraw(itemLayout)) {
- var el = new this._ctor(lineData, idx, this._seriesScope);
- el.traverse(updateIncrementalAndHover);
- this.group.add(el);
- lineData.setItemGraphicEl(idx, el);
- }
- }
- };
-
- function makeSeriesScope(lineData) {
- var hostModel = lineData.hostModel;
- return {
- lineStyle: hostModel.getModel('lineStyle').getLineStyle(),
- hoverLineStyle: hostModel.getModel('emphasis.lineStyle').getLineStyle(),
- labelModel: hostModel.getModel('label'),
- hoverLabelModel: hostModel.getModel('emphasis.label')
- };
- }
-
- lineDrawProto.remove = function () {
- this._clearIncremental();
-
- this._incremental = null;
- this.group.removeAll();
- };
-
- lineDrawProto._clearIncremental = function () {
- var incremental = this._incremental;
-
- if (incremental) {
- incremental.clearDisplaybles();
- }
- };
-
- function isPointNaN(pt) {
- return isNaN(pt[0]) || isNaN(pt[1]);
- }
-
- function lineNeedsDraw(pts) {
- return !isPointNaN(pts[0]) && !isPointNaN(pts[1]);
- }
-
- var _default = LineDraw;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1913:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var vector = __webpack_require__(1180);
-
- var symbolUtil = __webpack_require__(1404);
-
- var LinePath = __webpack_require__(2621);
-
- var graphic = __webpack_require__(906);
-
- var _number = __webpack_require__(985);
-
- var round = _number.round;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @module echarts/chart/helper/Line
- */
- var SYMBOL_CATEGORIES = ['fromSymbol', 'toSymbol'];
-
- function makeSymbolTypeKey(symbolCategory) {
- return '_' + symbolCategory + 'Type';
- }
- /**
- * @inner
- */
-
-
- function createSymbol(name, lineData, idx) {
- var color = lineData.getItemVisual(idx, 'color');
- var symbolType = lineData.getItemVisual(idx, name);
- var symbolSize = lineData.getItemVisual(idx, name + 'Size');
-
- if (!symbolType || symbolType === 'none') {
- return;
- }
-
- if (!zrUtil.isArray(symbolSize)) {
- symbolSize = [symbolSize, symbolSize];
- }
-
- var symbolPath = symbolUtil.createSymbol(symbolType, -symbolSize[0] / 2, -symbolSize[1] / 2, symbolSize[0], symbolSize[1], color);
- symbolPath.name = name;
- return symbolPath;
- }
-
- function createLine(points) {
- var line = new LinePath({
- name: 'line',
- subPixelOptimize: true
- });
- setLinePoints(line.shape, points);
- return line;
- }
-
- function setLinePoints(targetShape, points) {
- targetShape.x1 = points[0][0];
- targetShape.y1 = points[0][1];
- targetShape.x2 = points[1][0];
- targetShape.y2 = points[1][1];
- targetShape.percent = 1;
- var cp1 = points[2];
-
- if (cp1) {
- targetShape.cpx1 = cp1[0];
- targetShape.cpy1 = cp1[1];
- } else {
- targetShape.cpx1 = NaN;
- targetShape.cpy1 = NaN;
- }
- }
-
- function updateSymbolAndLabelBeforeLineUpdate() {
- var lineGroup = this;
- var symbolFrom = lineGroup.childOfName('fromSymbol');
- var symbolTo = lineGroup.childOfName('toSymbol');
- var label = lineGroup.childOfName('label'); // Quick reject
-
- if (!symbolFrom && !symbolTo && label.ignore) {
- return;
- }
-
- var invScale = 1;
- var parentNode = this.parent;
-
- while (parentNode) {
- if (parentNode.scale) {
- invScale /= parentNode.scale[0];
- }
-
- parentNode = parentNode.parent;
- }
-
- var line = lineGroup.childOfName('line'); // If line not changed
- // FIXME Parent scale changed
-
- if (!this.__dirty && !line.__dirty) {
- return;
- }
-
- var percent = line.shape.percent;
- var fromPos = line.pointAt(0);
- var toPos = line.pointAt(percent);
- var d = vector.sub([], toPos, fromPos);
- vector.normalize(d, d);
-
- if (symbolFrom) {
- symbolFrom.attr('position', fromPos);
- var tangent = line.tangentAt(0);
- symbolFrom.attr('rotation', Math.PI / 2 - Math.atan2(tangent[1], tangent[0]));
- symbolFrom.attr('scale', [invScale * percent, invScale * percent]);
- }
-
- if (symbolTo) {
- symbolTo.attr('position', toPos);
- var tangent = line.tangentAt(1);
- symbolTo.attr('rotation', -Math.PI / 2 - Math.atan2(tangent[1], tangent[0]));
- symbolTo.attr('scale', [invScale * percent, invScale * percent]);
- }
-
- if (!label.ignore) {
- label.attr('position', toPos);
- var textPosition;
- var textAlign;
- var textVerticalAlign;
- var distance = 5 * invScale; // End
-
- if (label.__position === 'end') {
- textPosition = [d[0] * distance + toPos[0], d[1] * distance + toPos[1]];
- textAlign = d[0] > 0.8 ? 'left' : d[0] < -0.8 ? 'right' : 'center';
- textVerticalAlign = d[1] > 0.8 ? 'top' : d[1] < -0.8 ? 'bottom' : 'middle';
- } // Middle
- else if (label.__position === 'middle') {
- var halfPercent = percent / 2;
- var tangent = line.tangentAt(halfPercent);
- var n = [tangent[1], -tangent[0]];
- var cp = line.pointAt(halfPercent);
-
- if (n[1] > 0) {
- n[0] = -n[0];
- n[1] = -n[1];
- }
-
- textPosition = [cp[0] + n[0] * distance, cp[1] + n[1] * distance];
- textAlign = 'center';
- textVerticalAlign = 'bottom';
- var rotation = -Math.atan2(tangent[1], tangent[0]);
-
- if (toPos[0] < fromPos[0]) {
- rotation = Math.PI + rotation;
- }
-
- label.attr('rotation', rotation);
- } // Start
- else {
- textPosition = [-d[0] * distance + fromPos[0], -d[1] * distance + fromPos[1]];
- textAlign = d[0] > 0.8 ? 'right' : d[0] < -0.8 ? 'left' : 'center';
- textVerticalAlign = d[1] > 0.8 ? 'bottom' : d[1] < -0.8 ? 'top' : 'middle';
- }
-
- label.attr({
- style: {
- // Use the user specified text align and baseline first
- textVerticalAlign: label.__verticalAlign || textVerticalAlign,
- textAlign: label.__textAlign || textAlign
- },
- position: textPosition,
- scale: [invScale, invScale]
- });
- }
- }
- /**
- * @constructor
- * @extends {module:zrender/graphic/Group}
- * @alias {module:echarts/chart/helper/Line}
- */
-
-
- function Line(lineData, idx, seriesScope) {
- graphic.Group.call(this);
-
- this._createLine(lineData, idx, seriesScope);
- }
-
- var lineProto = Line.prototype; // Update symbol position and rotation
-
- lineProto.beforeUpdate = updateSymbolAndLabelBeforeLineUpdate;
-
- lineProto._createLine = function (lineData, idx, seriesScope) {
- var seriesModel = lineData.hostModel;
- var linePoints = lineData.getItemLayout(idx);
- var line = createLine(linePoints);
- line.shape.percent = 0;
- graphic.initProps(line, {
- shape: {
- percent: 1
- }
- }, seriesModel, idx);
- this.add(line);
- var label = new graphic.Text({
- name: 'label',
- // FIXME
- // Temporary solution for `focusNodeAdjacency`.
- // line label do not use the opacity of lineStyle.
- lineLabelOriginalOpacity: 1
- });
- this.add(label);
- zrUtil.each(SYMBOL_CATEGORIES, function (symbolCategory) {
- var symbol = createSymbol(symbolCategory, lineData, idx); // symbols must added after line to make sure
- // it will be updated after line#update.
- // Or symbol position and rotation update in line#beforeUpdate will be one frame slow
-
- this.add(symbol);
- this[makeSymbolTypeKey(symbolCategory)] = lineData.getItemVisual(idx, symbolCategory);
- }, this);
-
- this._updateCommonStl(lineData, idx, seriesScope);
- };
-
- lineProto.updateData = function (lineData, idx, seriesScope) {
- var seriesModel = lineData.hostModel;
- var line = this.childOfName('line');
- var linePoints = lineData.getItemLayout(idx);
- var target = {
- shape: {}
- };
- setLinePoints(target.shape, linePoints);
- graphic.updateProps(line, target, seriesModel, idx);
- zrUtil.each(SYMBOL_CATEGORIES, function (symbolCategory) {
- var symbolType = lineData.getItemVisual(idx, symbolCategory);
- var key = makeSymbolTypeKey(symbolCategory); // Symbol changed
-
- if (this[key] !== symbolType) {
- this.remove(this.childOfName(symbolCategory));
- var symbol = createSymbol(symbolCategory, lineData, idx);
- this.add(symbol);
- }
-
- this[key] = symbolType;
- }, this);
-
- this._updateCommonStl(lineData, idx, seriesScope);
- };
-
- lineProto._updateCommonStl = function (lineData, idx, seriesScope) {
- var seriesModel = lineData.hostModel;
- var line = this.childOfName('line');
- var lineStyle = seriesScope && seriesScope.lineStyle;
- var hoverLineStyle = seriesScope && seriesScope.hoverLineStyle;
- var labelModel = seriesScope && seriesScope.labelModel;
- var hoverLabelModel = seriesScope && seriesScope.hoverLabelModel; // Optimization for large dataset
-
- if (!seriesScope || lineData.hasItemOption) {
- var itemModel = lineData.getItemModel(idx);
- lineStyle = itemModel.getModel('lineStyle').getLineStyle();
- hoverLineStyle = itemModel.getModel('emphasis.lineStyle').getLineStyle();
- labelModel = itemModel.getModel('label');
- hoverLabelModel = itemModel.getModel('emphasis.label');
- }
-
- var visualColor = lineData.getItemVisual(idx, 'color');
- var visualOpacity = zrUtil.retrieve3(lineData.getItemVisual(idx, 'opacity'), lineStyle.opacity, 1);
- line.useStyle(zrUtil.defaults({
- strokeNoScale: true,
- fill: 'none',
- stroke: visualColor,
- opacity: visualOpacity
- }, lineStyle));
- line.hoverStyle = hoverLineStyle; // Update symbol
-
- zrUtil.each(SYMBOL_CATEGORIES, function (symbolCategory) {
- var symbol = this.childOfName(symbolCategory);
-
- if (symbol) {
- symbol.setColor(visualColor);
- symbol.setStyle({
- opacity: visualOpacity
- });
- }
- }, this);
- var showLabel = labelModel.getShallow('show');
- var hoverShowLabel = hoverLabelModel.getShallow('show');
- var label = this.childOfName('label');
- var defaultLabelColor;
- var baseText; // FIXME: the logic below probably should be merged to `graphic.setLabelStyle`.
-
- if (showLabel || hoverShowLabel) {
- defaultLabelColor = visualColor || '#000';
- baseText = seriesModel.getFormattedLabel(idx, 'normal', lineData.dataType);
-
- if (baseText == null) {
- var rawVal = seriesModel.getRawValue(idx);
- baseText = rawVal == null ? lineData.getName(idx) : isFinite(rawVal) ? round(rawVal) : rawVal;
- }
- }
-
- var normalText = showLabel ? baseText : null;
- var emphasisText = hoverShowLabel ? zrUtil.retrieve2(seriesModel.getFormattedLabel(idx, 'emphasis', lineData.dataType), baseText) : null;
- var labelStyle = label.style; // Always set `textStyle` even if `normalStyle.text` is null, because default
- // values have to be set on `normalStyle`.
-
- if (normalText != null || emphasisText != null) {
- graphic.setTextStyle(label.style, labelModel, {
- text: normalText
- }, {
- autoColor: defaultLabelColor
- });
- label.__textAlign = labelStyle.textAlign;
- label.__verticalAlign = labelStyle.textVerticalAlign; // 'start', 'middle', 'end'
-
- label.__position = labelModel.get('position') || 'middle';
- }
-
- if (emphasisText != null) {
- // Only these properties supported in this emphasis style here.
- label.hoverStyle = {
- text: emphasisText,
- textFill: hoverLabelModel.getTextColor(true),
- // For merging hover style to normal style, do not use
- // `hoverLabelModel.getFont()` here.
- fontStyle: hoverLabelModel.getShallow('fontStyle'),
- fontWeight: hoverLabelModel.getShallow('fontWeight'),
- fontSize: hoverLabelModel.getShallow('fontSize'),
- fontFamily: hoverLabelModel.getShallow('fontFamily')
- };
- } else {
- label.hoverStyle = {
- text: null
- };
- }
-
- label.ignore = !showLabel && !hoverShowLabel;
- graphic.setHoverStyle(this);
- };
-
- lineProto.highlight = function () {
- this.trigger('emphasis');
- };
-
- lineProto.downplay = function () {
- this.trigger('normal');
- };
-
- lineProto.updateLayout = function (lineData, idx) {
- this.setLinePoints(lineData.getItemLayout(idx));
- };
-
- lineProto.setLinePoints = function (points) {
- var linePath = this.childOfName('line');
- setLinePoints(linePath.shape, points);
- linePath.dirty();
- };
-
- zrUtil.inherits(Line, graphic.Group);
- var _default = Line;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1914:
- /***/ (function(module, exports) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function getNodeGlobalScale(seriesModel) {
- var coordSys = seriesModel.coordinateSystem;
-
- if (coordSys.type !== 'view') {
- return 1;
- }
-
- var nodeScaleRatio = seriesModel.option.nodeScaleRatio;
- var groupScale = coordSys.scale;
- var groupZoom = groupScale && groupScale[0] || 1; // Scale node when zoom changes
-
- var roamZoom = coordSys.getZoom();
- var nodeScale = (roamZoom - 1) * nodeScaleRatio + 1;
- return nodeScale / groupZoom;
- }
-
- function getSymbolSize(node) {
- var symbolSize = node.getVisual('symbolSize');
-
- if (symbolSize instanceof Array) {
- symbolSize = (symbolSize[0] + symbolSize[1]) / 2;
- }
-
- return +symbolSize;
- }
-
- exports.getNodeGlobalScale = getNodeGlobalScale;
- exports.getSymbolSize = getSymbolSize;
-
- /***/ }),
-
- /***/ 1915:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var zrUtil = __webpack_require__(864);
-
- var Eventful = __webpack_require__(1516);
-
- var graphic = __webpack_require__(906);
-
- var interactionMutex = __webpack_require__(2301);
-
- var DataDiffer = __webpack_require__(1519);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var curry = zrUtil.curry;
- var each = zrUtil.each;
- var map = zrUtil.map;
- var mathMin = Math.min;
- var mathMax = Math.max;
- var mathPow = Math.pow;
- var COVER_Z = 10000;
- var UNSELECT_THRESHOLD = 6;
- var MIN_RESIZE_LINE_WIDTH = 6;
- var MUTEX_RESOURCE_KEY = 'globalPan';
- var DIRECTION_MAP = {
- w: [0, 0],
- e: [0, 1],
- n: [1, 0],
- s: [1, 1]
- };
- var CURSOR_MAP = {
- w: 'ew',
- e: 'ew',
- n: 'ns',
- s: 'ns',
- ne: 'nesw',
- sw: 'nesw',
- nw: 'nwse',
- se: 'nwse'
- };
- var DEFAULT_BRUSH_OPT = {
- brushStyle: {
- lineWidth: 2,
- stroke: 'rgba(0,0,0,0.3)',
- fill: 'rgba(0,0,0,0.1)'
- },
- transformable: true,
- brushMode: 'single',
- removeOnClick: false
- };
- var baseUID = 0;
- /**
- * @alias module:echarts/component/helper/BrushController
- * @constructor
- * @mixin {module:zrender/mixin/Eventful}
- * @event module:echarts/component/helper/BrushController#brush
- * params:
- * areas: Array.<Array>, coord relates to container group,
- * If no container specified, to global.
- * opt {
- * isEnd: boolean,
- * removeOnClick: boolean
- * }
- *
- * @param {module:zrender/zrender~ZRender} zr
- */
-
- function BrushController(zr) {
- Eventful.call(this);
- /**
- * @type {module:zrender/zrender~ZRender}
- * @private
- */
-
- this._zr = zr;
- /**
- * @type {module:zrender/container/Group}
- * @readOnly
- */
-
- this.group = new graphic.Group();
- /**
- * Only for drawing (after enabledBrush).
- * 'line', 'rect', 'polygon' or false
- * If passing false/null/undefined, disable brush.
- * If passing 'auto', determined by panel.defaultBrushType
- * @private
- * @type {string}
- */
-
- this._brushType;
- /**
- * Only for drawing (after enabledBrush).
- *
- * @private
- * @type {Object}
- */
-
- this._brushOption;
- /**
- * @private
- * @type {Object}
- */
-
- this._panels;
- /**
- * @private
- * @type {Array.<nubmer>}
- */
-
- this._track = [];
- /**
- * @private
- * @type {boolean}
- */
-
- this._dragging;
- /**
- * @private
- * @type {Array}
- */
-
- this._covers = [];
- /**
- * @private
- * @type {moudule:zrender/container/Group}
- */
-
- this._creatingCover;
- /**
- * `true` means global panel
- * @private
- * @type {module:zrender/container/Group|boolean}
- */
-
- this._creatingPanel;
- /**
- * @private
- * @type {boolean}
- */
-
- this._enableGlobalPan;
- /**
- * @private
- * @type {boolean}
- */
-
- /**
- * @private
- * @type {string}
- */
- this._uid = 'brushController_' + baseUID++;
- /**
- * @private
- * @type {Object}
- */
-
- this._handlers = {};
- each(pointerHandlers, function (handler, eventName) {
- this._handlers[eventName] = zrUtil.bind(handler, this);
- }, this);
- }
-
- BrushController.prototype = {
- constructor: BrushController,
-
- /**
- * If set to null/undefined/false, select disabled.
- * @param {Object} brushOption
- * @param {string|boolean} brushOption.brushType 'line', 'rect', 'polygon' or false
- * If passing false/null/undefined, disable brush.
- * If passing 'auto', determined by panel.defaultBrushType.
- * ('auto' can not be used in global panel)
- * @param {number} [brushOption.brushMode='single'] 'single' or 'multiple'
- * @param {boolean} [brushOption.transformable=true]
- * @param {boolean} [brushOption.removeOnClick=false]
- * @param {Object} [brushOption.brushStyle]
- * @param {number} [brushOption.brushStyle.width]
- * @param {number} [brushOption.brushStyle.lineWidth]
- * @param {string} [brushOption.brushStyle.stroke]
- * @param {string} [brushOption.brushStyle.fill]
- * @param {number} [brushOption.z]
- */
- enableBrush: function (brushOption) {
- this._brushType && doDisableBrush(this);
- brushOption.brushType && doEnableBrush(this, brushOption);
- return this;
- },
-
- /**
- * @param {Array.<Object>} panelOpts If not pass, it is global brush.
- * Each items: {
- * panelId, // mandatory.
- * clipPath, // mandatory. function.
- * isTargetByCursor, // mandatory. function.
- * defaultBrushType, // optional, only used when brushType is 'auto'.
- * getLinearBrushOtherExtent, // optional. function.
- * }
- */
- setPanels: function (panelOpts) {
- if (panelOpts && panelOpts.length) {
- var panels = this._panels = {};
- zrUtil.each(panelOpts, function (panelOpts) {
- panels[panelOpts.panelId] = zrUtil.clone(panelOpts);
- });
- } else {
- this._panels = null;
- }
-
- return this;
- },
-
- /**
- * @param {Object} [opt]
- * @return {boolean} [opt.enableGlobalPan=false]
- */
- mount: function (opt) {
- opt = opt || {};
- this._enableGlobalPan = opt.enableGlobalPan;
- var thisGroup = this.group;
-
- this._zr.add(thisGroup);
-
- thisGroup.attr({
- position: opt.position || [0, 0],
- rotation: opt.rotation || 0,
- scale: opt.scale || [1, 1]
- });
- this._transform = thisGroup.getLocalTransform();
- return this;
- },
- eachCover: function (cb, context) {
- each(this._covers, cb, context);
- },
-
- /**
- * Update covers.
- * @param {Array.<Object>} brushOptionList Like:
- * [
- * {id: 'xx', brushType: 'line', range: [23, 44], brushStyle, transformable},
- * {id: 'yy', brushType: 'rect', range: [[23, 44], [23, 54]]},
- * ...
- * ]
- * `brushType` is required in each cover info. (can not be 'auto')
- * `id` is not mandatory.
- * `brushStyle`, `transformable` is not mandatory, use DEFAULT_BRUSH_OPT by default.
- * If brushOptionList is null/undefined, all covers removed.
- */
- updateCovers: function (brushOptionList) {
- brushOptionList = zrUtil.map(brushOptionList, function (brushOption) {
- return zrUtil.merge(zrUtil.clone(DEFAULT_BRUSH_OPT), brushOption, true);
- });
- var tmpIdPrefix = '\0-brush-index-';
- var oldCovers = this._covers;
- var newCovers = this._covers = [];
- var controller = this;
- var creatingCover = this._creatingCover;
- new DataDiffer(oldCovers, brushOptionList, oldGetKey, getKey).add(addOrUpdate).update(addOrUpdate).remove(remove).execute();
- return this;
-
- function getKey(brushOption, index) {
- return (brushOption.id != null ? brushOption.id : tmpIdPrefix + index) + '-' + brushOption.brushType;
- }
-
- function oldGetKey(cover, index) {
- return getKey(cover.__brushOption, index);
- }
-
- function addOrUpdate(newIndex, oldIndex) {
- var newBrushOption = brushOptionList[newIndex]; // Consider setOption in event listener of brushSelect,
- // where updating cover when creating should be forbiden.
-
- if (oldIndex != null && oldCovers[oldIndex] === creatingCover) {
- newCovers[newIndex] = oldCovers[oldIndex];
- } else {
- var cover = newCovers[newIndex] = oldIndex != null ? (oldCovers[oldIndex].__brushOption = newBrushOption, oldCovers[oldIndex]) : endCreating(controller, createCover(controller, newBrushOption));
- updateCoverAfterCreation(controller, cover);
- }
- }
-
- function remove(oldIndex) {
- if (oldCovers[oldIndex] !== creatingCover) {
- controller.group.remove(oldCovers[oldIndex]);
- }
- }
- },
- unmount: function () {
- this.enableBrush(false); // container may 'removeAll' outside.
-
- clearCovers(this);
-
- this._zr.remove(this.group);
-
- return this;
- },
- dispose: function () {
- this.unmount();
- this.off();
- }
- };
- zrUtil.mixin(BrushController, Eventful);
-
- function doEnableBrush(controller, brushOption) {
- var zr = controller._zr; // Consider roam, which takes globalPan too.
-
- if (!controller._enableGlobalPan) {
- interactionMutex.take(zr, MUTEX_RESOURCE_KEY, controller._uid);
- }
-
- mountHandlers(zr, controller._handlers);
- controller._brushType = brushOption.brushType;
- controller._brushOption = zrUtil.merge(zrUtil.clone(DEFAULT_BRUSH_OPT), brushOption, true);
- }
-
- function doDisableBrush(controller) {
- var zr = controller._zr;
- interactionMutex.release(zr, MUTEX_RESOURCE_KEY, controller._uid);
- unmountHandlers(zr, controller._handlers);
- controller._brushType = controller._brushOption = null;
- }
-
- function mountHandlers(zr, handlers) {
- each(handlers, function (handler, eventName) {
- zr.on(eventName, handler);
- });
- }
-
- function unmountHandlers(zr, handlers) {
- each(handlers, function (handler, eventName) {
- zr.off(eventName, handler);
- });
- }
-
- function createCover(controller, brushOption) {
- var cover = coverRenderers[brushOption.brushType].createCover(controller, brushOption);
- cover.__brushOption = brushOption;
- updateZ(cover, brushOption);
- controller.group.add(cover);
- return cover;
- }
-
- function endCreating(controller, creatingCover) {
- var coverRenderer = getCoverRenderer(creatingCover);
-
- if (coverRenderer.endCreating) {
- coverRenderer.endCreating(controller, creatingCover);
- updateZ(creatingCover, creatingCover.__brushOption);
- }
-
- return creatingCover;
- }
-
- function updateCoverShape(controller, cover) {
- var brushOption = cover.__brushOption;
- getCoverRenderer(cover).updateCoverShape(controller, cover, brushOption.range, brushOption);
- }
-
- function updateZ(cover, brushOption) {
- var z = brushOption.z;
- z == null && (z = COVER_Z);
- cover.traverse(function (el) {
- el.z = z;
- el.z2 = z; // Consider in given container.
- });
- }
-
- function updateCoverAfterCreation(controller, cover) {
- getCoverRenderer(cover).updateCommon(controller, cover);
- updateCoverShape(controller, cover);
- }
-
- function getCoverRenderer(cover) {
- return coverRenderers[cover.__brushOption.brushType];
- } // return target panel or `true` (means global panel)
-
-
- function getPanelByPoint(controller, e, localCursorPoint) {
- var panels = controller._panels;
-
- if (!panels) {
- return true; // Global panel
- }
-
- var panel;
- var transform = controller._transform;
- each(panels, function (pn) {
- pn.isTargetByCursor(e, localCursorPoint, transform) && (panel = pn);
- });
- return panel;
- } // Return a panel or true
-
-
- function getPanelByCover(controller, cover) {
- var panels = controller._panels;
-
- if (!panels) {
- return true; // Global panel
- }
-
- var panelId = cover.__brushOption.panelId; // User may give cover without coord sys info,
- // which is then treated as global panel.
-
- return panelId != null ? panels[panelId] : true;
- }
-
- function clearCovers(controller) {
- var covers = controller._covers;
- var originalLength = covers.length;
- each(covers, function (cover) {
- controller.group.remove(cover);
- }, controller);
- covers.length = 0;
- return !!originalLength;
- }
-
- function trigger(controller, opt) {
- var areas = map(controller._covers, function (cover) {
- var brushOption = cover.__brushOption;
- var range = zrUtil.clone(brushOption.range);
- return {
- brushType: brushOption.brushType,
- panelId: brushOption.panelId,
- range: range
- };
- });
- controller.trigger('brush', areas, {
- isEnd: !!opt.isEnd,
- removeOnClick: !!opt.removeOnClick
- });
- }
-
- function shouldShowCover(controller) {
- var track = controller._track;
-
- if (!track.length) {
- return false;
- }
-
- var p2 = track[track.length - 1];
- var p1 = track[0];
- var dx = p2[0] - p1[0];
- var dy = p2[1] - p1[1];
- var dist = mathPow(dx * dx + dy * dy, 0.5);
- return dist > UNSELECT_THRESHOLD;
- }
-
- function getTrackEnds(track) {
- var tail = track.length - 1;
- tail < 0 && (tail = 0);
- return [track[0], track[tail]];
- }
-
- function createBaseRectCover(doDrift, controller, brushOption, edgeNames) {
- var cover = new graphic.Group();
- cover.add(new graphic.Rect({
- name: 'main',
- style: makeStyle(brushOption),
- silent: true,
- draggable: true,
- cursor: 'move',
- drift: curry(doDrift, controller, cover, 'nswe'),
- ondragend: curry(trigger, controller, {
- isEnd: true
- })
- }));
- each(edgeNames, function (name) {
- cover.add(new graphic.Rect({
- name: name,
- style: {
- opacity: 0
- },
- draggable: true,
- silent: true,
- invisible: true,
- drift: curry(doDrift, controller, cover, name),
- ondragend: curry(trigger, controller, {
- isEnd: true
- })
- }));
- });
- return cover;
- }
-
- function updateBaseRect(controller, cover, localRange, brushOption) {
- var lineWidth = brushOption.brushStyle.lineWidth || 0;
- var handleSize = mathMax(lineWidth, MIN_RESIZE_LINE_WIDTH);
- var x = localRange[0][0];
- var y = localRange[1][0];
- var xa = x - lineWidth / 2;
- var ya = y - lineWidth / 2;
- var x2 = localRange[0][1];
- var y2 = localRange[1][1];
- var x2a = x2 - handleSize + lineWidth / 2;
- var y2a = y2 - handleSize + lineWidth / 2;
- var width = x2 - x;
- var height = y2 - y;
- var widtha = width + lineWidth;
- var heighta = height + lineWidth;
- updateRectShape(controller, cover, 'main', x, y, width, height);
-
- if (brushOption.transformable) {
- updateRectShape(controller, cover, 'w', xa, ya, handleSize, heighta);
- updateRectShape(controller, cover, 'e', x2a, ya, handleSize, heighta);
- updateRectShape(controller, cover, 'n', xa, ya, widtha, handleSize);
- updateRectShape(controller, cover, 's', xa, y2a, widtha, handleSize);
- updateRectShape(controller, cover, 'nw', xa, ya, handleSize, handleSize);
- updateRectShape(controller, cover, 'ne', x2a, ya, handleSize, handleSize);
- updateRectShape(controller, cover, 'sw', xa, y2a, handleSize, handleSize);
- updateRectShape(controller, cover, 'se', x2a, y2a, handleSize, handleSize);
- }
- }
-
- function updateCommon(controller, cover) {
- var brushOption = cover.__brushOption;
- var transformable = brushOption.transformable;
- var mainEl = cover.childAt(0);
- mainEl.useStyle(makeStyle(brushOption));
- mainEl.attr({
- silent: !transformable,
- cursor: transformable ? 'move' : 'default'
- });
- each(['w', 'e', 'n', 's', 'se', 'sw', 'ne', 'nw'], function (name) {
- var el = cover.childOfName(name);
- var globalDir = getGlobalDirection(controller, name);
- el && el.attr({
- silent: !transformable,
- invisible: !transformable,
- cursor: transformable ? CURSOR_MAP[globalDir] + '-resize' : null
- });
- });
- }
-
- function updateRectShape(controller, cover, name, x, y, w, h) {
- var el = cover.childOfName(name);
- el && el.setShape(pointsToRect(clipByPanel(controller, cover, [[x, y], [x + w, y + h]])));
- }
-
- function makeStyle(brushOption) {
- return zrUtil.defaults({
- strokeNoScale: true
- }, brushOption.brushStyle);
- }
-
- function formatRectRange(x, y, x2, y2) {
- var min = [mathMin(x, x2), mathMin(y, y2)];
- var max = [mathMax(x, x2), mathMax(y, y2)];
- return [[min[0], max[0]], // x range
- [min[1], max[1]] // y range
- ];
- }
-
- function getTransform(controller) {
- return graphic.getTransform(controller.group);
- }
-
- function getGlobalDirection(controller, localDirection) {
- if (localDirection.length > 1) {
- localDirection = localDirection.split('');
- var globalDir = [getGlobalDirection(controller, localDirection[0]), getGlobalDirection(controller, localDirection[1])];
- (globalDir[0] === 'e' || globalDir[0] === 'w') && globalDir.reverse();
- return globalDir.join('');
- } else {
- var map = {
- w: 'left',
- e: 'right',
- n: 'top',
- s: 'bottom'
- };
- var inverseMap = {
- left: 'w',
- right: 'e',
- top: 'n',
- bottom: 's'
- };
- var globalDir = graphic.transformDirection(map[localDirection], getTransform(controller));
- return inverseMap[globalDir];
- }
- }
-
- function driftRect(toRectRange, fromRectRange, controller, cover, name, dx, dy, e) {
- var brushOption = cover.__brushOption;
- var rectRange = toRectRange(brushOption.range);
- var localDelta = toLocalDelta(controller, dx, dy);
- each(name.split(''), function (namePart) {
- var ind = DIRECTION_MAP[namePart];
- rectRange[ind[0]][ind[1]] += localDelta[ind[0]];
- });
- brushOption.range = fromRectRange(formatRectRange(rectRange[0][0], rectRange[1][0], rectRange[0][1], rectRange[1][1]));
- updateCoverAfterCreation(controller, cover);
- trigger(controller, {
- isEnd: false
- });
- }
-
- function driftPolygon(controller, cover, dx, dy, e) {
- var range = cover.__brushOption.range;
- var localDelta = toLocalDelta(controller, dx, dy);
- each(range, function (point) {
- point[0] += localDelta[0];
- point[1] += localDelta[1];
- });
- updateCoverAfterCreation(controller, cover);
- trigger(controller, {
- isEnd: false
- });
- }
-
- function toLocalDelta(controller, dx, dy) {
- var thisGroup = controller.group;
- var localD = thisGroup.transformCoordToLocal(dx, dy);
- var localZero = thisGroup.transformCoordToLocal(0, 0);
- return [localD[0] - localZero[0], localD[1] - localZero[1]];
- }
-
- function clipByPanel(controller, cover, data) {
- var panel = getPanelByCover(controller, cover);
- return panel && panel !== true ? panel.clipPath(data, controller._transform) : zrUtil.clone(data);
- }
-
- function pointsToRect(points) {
- var xmin = mathMin(points[0][0], points[1][0]);
- var ymin = mathMin(points[0][1], points[1][1]);
- var xmax = mathMax(points[0][0], points[1][0]);
- var ymax = mathMax(points[0][1], points[1][1]);
- return {
- x: xmin,
- y: ymin,
- width: xmax - xmin,
- height: ymax - ymin
- };
- }
-
- function resetCursor(controller, e, localCursorPoint) {
- if ( // Check active
- !controller._brushType // resetCursor should be always called when mouse is in zr area,
- // but not called when mouse is out of zr area to avoid bad influence
- // if `mousemove`, `mouseup` are triggered from `document` event.
- || isOutsideZrArea(controller, e)) {
- return;
- }
-
- var zr = controller._zr;
- var covers = controller._covers;
- var currPanel = getPanelByPoint(controller, e, localCursorPoint); // Check whether in covers.
-
- if (!controller._dragging) {
- for (var i = 0; i < covers.length; i++) {
- var brushOption = covers[i].__brushOption;
-
- if (currPanel && (currPanel === true || brushOption.panelId === currPanel.panelId) && coverRenderers[brushOption.brushType].contain(covers[i], localCursorPoint[0], localCursorPoint[1])) {
- // Use cursor style set on cover.
- return;
- }
- }
- }
-
- currPanel && zr.setCursorStyle('crosshair');
- }
-
- function preventDefault(e) {
- var rawE = e.event;
- rawE.preventDefault && rawE.preventDefault();
- }
-
- function mainShapeContain(cover, x, y) {
- return cover.childOfName('main').contain(x, y);
- }
-
- function updateCoverByMouse(controller, e, localCursorPoint, isEnd) {
- var creatingCover = controller._creatingCover;
- var panel = controller._creatingPanel;
- var thisBrushOption = controller._brushOption;
- var eventParams;
-
- controller._track.push(localCursorPoint.slice());
-
- if (shouldShowCover(controller) || creatingCover) {
- if (panel && !creatingCover) {
- thisBrushOption.brushMode === 'single' && clearCovers(controller);
- var brushOption = zrUtil.clone(thisBrushOption);
- brushOption.brushType = determineBrushType(brushOption.brushType, panel);
- brushOption.panelId = panel === true ? null : panel.panelId;
- creatingCover = controller._creatingCover = createCover(controller, brushOption);
-
- controller._covers.push(creatingCover);
- }
-
- if (creatingCover) {
- var coverRenderer = coverRenderers[determineBrushType(controller._brushType, panel)];
- var coverBrushOption = creatingCover.__brushOption;
- coverBrushOption.range = coverRenderer.getCreatingRange(clipByPanel(controller, creatingCover, controller._track));
-
- if (isEnd) {
- endCreating(controller, creatingCover);
- coverRenderer.updateCommon(controller, creatingCover);
- }
-
- updateCoverShape(controller, creatingCover);
- eventParams = {
- isEnd: isEnd
- };
- }
- } else if (isEnd && thisBrushOption.brushMode === 'single' && thisBrushOption.removeOnClick) {
- // Help user to remove covers easily, only by a tiny drag, in 'single' mode.
- // But a single click do not clear covers, because user may have casual
- // clicks (for example, click on other component and do not expect covers
- // disappear).
- // Only some cover removed, trigger action, but not every click trigger action.
- if (getPanelByPoint(controller, e, localCursorPoint) && clearCovers(controller)) {
- eventParams = {
- isEnd: isEnd,
- removeOnClick: true
- };
- }
- }
-
- return eventParams;
- }
-
- function determineBrushType(brushType, panel) {
- if (brushType === 'auto') {
- return panel.defaultBrushType;
- }
-
- return brushType;
- }
-
- var pointerHandlers = {
- mousedown: function (e) {
- if (this._dragging) {
- // In case some browser do not support globalOut,
- // and release mose out side the browser.
- handleDragEnd(this, e);
- } else if (!e.target || !e.target.draggable) {
- preventDefault(e);
- var localCursorPoint = this.group.transformCoordToLocal(e.offsetX, e.offsetY);
- this._creatingCover = null;
- var panel = this._creatingPanel = getPanelByPoint(this, e, localCursorPoint);
-
- if (panel) {
- this._dragging = true;
- this._track = [localCursorPoint.slice()];
- }
- }
- },
- mousemove: function (e) {
- var x = e.offsetX;
- var y = e.offsetY;
- var localCursorPoint = this.group.transformCoordToLocal(x, y);
- resetCursor(this, e, localCursorPoint);
-
- if (this._dragging) {
- preventDefault(e);
- var eventParams = updateCoverByMouse(this, e, localCursorPoint, false);
- eventParams && trigger(this, eventParams);
- }
- },
- mouseup: function (e) {
- handleDragEnd(this, e);
- }
- };
-
- function handleDragEnd(controller, e) {
- if (controller._dragging) {
- preventDefault(e);
- var x = e.offsetX;
- var y = e.offsetY;
- var localCursorPoint = controller.group.transformCoordToLocal(x, y);
- var eventParams = updateCoverByMouse(controller, e, localCursorPoint, true);
- controller._dragging = false;
- controller._track = [];
- controller._creatingCover = null; // trigger event shoule be at final, after procedure will be nested.
-
- eventParams && trigger(controller, eventParams);
- }
- }
-
- function isOutsideZrArea(controller, x, y) {
- var zr = controller._zr;
- return x < 0 || x > zr.getWidth() || y < 0 || y > zr.getHeight();
- }
- /**
- * key: brushType
- * @type {Object}
- */
-
-
- var coverRenderers = {
- lineX: getLineRenderer(0),
- lineY: getLineRenderer(1),
- rect: {
- createCover: function (controller, brushOption) {
- return createBaseRectCover(curry(driftRect, function (range) {
- return range;
- }, function (range) {
- return range;
- }), controller, brushOption, ['w', 'e', 'n', 's', 'se', 'sw', 'ne', 'nw']);
- },
- getCreatingRange: function (localTrack) {
- var ends = getTrackEnds(localTrack);
- return formatRectRange(ends[1][0], ends[1][1], ends[0][0], ends[0][1]);
- },
- updateCoverShape: function (controller, cover, localRange, brushOption) {
- updateBaseRect(controller, cover, localRange, brushOption);
- },
- updateCommon: updateCommon,
- contain: mainShapeContain
- },
- polygon: {
- createCover: function (controller, brushOption) {
- var cover = new graphic.Group(); // Do not use graphic.Polygon because graphic.Polyline do not close the
- // border of the shape when drawing, which is a better experience for user.
-
- cover.add(new graphic.Polyline({
- name: 'main',
- style: makeStyle(brushOption),
- silent: true
- }));
- return cover;
- },
- getCreatingRange: function (localTrack) {
- return localTrack;
- },
- endCreating: function (controller, cover) {
- cover.remove(cover.childAt(0)); // Use graphic.Polygon close the shape.
-
- cover.add(new graphic.Polygon({
- name: 'main',
- draggable: true,
- drift: curry(driftPolygon, controller, cover),
- ondragend: curry(trigger, controller, {
- isEnd: true
- })
- }));
- },
- updateCoverShape: function (controller, cover, localRange, brushOption) {
- cover.childAt(0).setShape({
- points: clipByPanel(controller, cover, localRange)
- });
- },
- updateCommon: updateCommon,
- contain: mainShapeContain
- }
- };
-
- function getLineRenderer(xyIndex) {
- return {
- createCover: function (controller, brushOption) {
- return createBaseRectCover(curry(driftRect, function (range) {
- var rectRange = [range, [0, 100]];
- xyIndex && rectRange.reverse();
- return rectRange;
- }, function (rectRange) {
- return rectRange[xyIndex];
- }), controller, brushOption, [['w', 'e'], ['n', 's']][xyIndex]);
- },
- getCreatingRange: function (localTrack) {
- var ends = getTrackEnds(localTrack);
- var min = mathMin(ends[0][xyIndex], ends[1][xyIndex]);
- var max = mathMax(ends[0][xyIndex], ends[1][xyIndex]);
- return [min, max];
- },
- updateCoverShape: function (controller, cover, localRange, brushOption) {
- var otherExtent; // If brushWidth not specified, fit the panel.
-
- var panel = getPanelByCover(controller, cover);
-
- if (panel !== true && panel.getLinearBrushOtherExtent) {
- otherExtent = panel.getLinearBrushOtherExtent(xyIndex, controller._transform);
- } else {
- var zr = controller._zr;
- otherExtent = [0, [zr.getWidth(), zr.getHeight()][1 - xyIndex]];
- }
-
- var rectRange = [localRange, otherExtent];
- xyIndex && rectRange.reverse();
- updateBaseRect(controller, cover, rectRange, brushOption);
- },
- updateCommon: updateCommon,
- contain: mainShapeContain
- };
- }
-
- var _default = BrushController;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1916:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var clazzUtil = __webpack_require__(1456);
-
- var graphic = __webpack_require__(906);
-
- var axisPointerModelHelper = __webpack_require__(1792);
-
- var eventTool = __webpack_require__(1437);
-
- var throttleUtil = __webpack_require__(1482);
-
- var _model = __webpack_require__(1064);
-
- var makeInner = _model.makeInner;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var inner = makeInner();
- var clone = zrUtil.clone;
- var bind = zrUtil.bind;
- /**
- * Base axis pointer class in 2D.
- * Implemenents {module:echarts/component/axis/IAxisPointer}.
- */
-
- function BaseAxisPointer() {}
-
- BaseAxisPointer.prototype = {
- /**
- * @private
- */
- _group: null,
-
- /**
- * @private
- */
- _lastGraphicKey: null,
-
- /**
- * @private
- */
- _handle: null,
-
- /**
- * @private
- */
- _dragging: false,
-
- /**
- * @private
- */
- _lastValue: null,
-
- /**
- * @private
- */
- _lastStatus: null,
-
- /**
- * @private
- */
- _payloadInfo: null,
-
- /**
- * In px, arbitrary value. Do not set too small,
- * no animation is ok for most cases.
- * @protected
- */
- animationThreshold: 15,
-
- /**
- * @implement
- */
- render: function (axisModel, axisPointerModel, api, forceRender) {
- var value = axisPointerModel.get('value');
- var status = axisPointerModel.get('status'); // Bind them to `this`, not in closure, otherwise they will not
- // be replaced when user calling setOption in not merge mode.
-
- this._axisModel = axisModel;
- this._axisPointerModel = axisPointerModel;
- this._api = api; // Optimize: `render` will be called repeatly during mouse move.
- // So it is power consuming if performing `render` each time,
- // especially on mobile device.
-
- if (!forceRender && this._lastValue === value && this._lastStatus === status) {
- return;
- }
-
- this._lastValue = value;
- this._lastStatus = status;
- var group = this._group;
- var handle = this._handle;
-
- if (!status || status === 'hide') {
- // Do not clear here, for animation better.
- group && group.hide();
- handle && handle.hide();
- return;
- }
-
- group && group.show();
- handle && handle.show(); // Otherwise status is 'show'
-
- var elOption = {};
- this.makeElOption(elOption, value, axisModel, axisPointerModel, api); // Enable change axis pointer type.
-
- var graphicKey = elOption.graphicKey;
-
- if (graphicKey !== this._lastGraphicKey) {
- this.clear(api);
- }
-
- this._lastGraphicKey = graphicKey;
- var moveAnimation = this._moveAnimation = this.determineAnimation(axisModel, axisPointerModel);
-
- if (!group) {
- group = this._group = new graphic.Group();
- this.createPointerEl(group, elOption, axisModel, axisPointerModel);
- this.createLabelEl(group, elOption, axisModel, axisPointerModel);
- api.getZr().add(group);
- } else {
- var doUpdateProps = zrUtil.curry(updateProps, axisPointerModel, moveAnimation);
- this.updatePointerEl(group, elOption, doUpdateProps, axisPointerModel);
- this.updateLabelEl(group, elOption, doUpdateProps, axisPointerModel);
- }
-
- updateMandatoryProps(group, axisPointerModel, true);
-
- this._renderHandle(value);
- },
-
- /**
- * @implement
- */
- remove: function (api) {
- this.clear(api);
- },
-
- /**
- * @implement
- */
- dispose: function (api) {
- this.clear(api);
- },
-
- /**
- * @protected
- */
- determineAnimation: function (axisModel, axisPointerModel) {
- var animation = axisPointerModel.get('animation');
- var axis = axisModel.axis;
- var isCategoryAxis = axis.type === 'category';
- var useSnap = axisPointerModel.get('snap'); // Value axis without snap always do not snap.
-
- if (!useSnap && !isCategoryAxis) {
- return false;
- }
-
- if (animation === 'auto' || animation == null) {
- var animationThreshold = this.animationThreshold;
-
- if (isCategoryAxis && axis.getBandWidth() > animationThreshold) {
- return true;
- } // It is important to auto animation when snap used. Consider if there is
- // a dataZoom, animation will be disabled when too many points exist, while
- // it will be enabled for better visual effect when little points exist.
-
-
- if (useSnap) {
- var seriesDataCount = axisPointerModelHelper.getAxisInfo(axisModel).seriesDataCount;
- var axisExtent = axis.getExtent(); // Approximate band width
-
- return Math.abs(axisExtent[0] - axisExtent[1]) / seriesDataCount > animationThreshold;
- }
-
- return false;
- }
-
- return animation === true;
- },
-
- /**
- * add {pointer, label, graphicKey} to elOption
- * @protected
- */
- makeElOption: function (elOption, value, axisModel, axisPointerModel, api) {// Shoule be implemenented by sub-class.
- },
-
- /**
- * @protected
- */
- createPointerEl: function (group, elOption, axisModel, axisPointerModel) {
- var pointerOption = elOption.pointer;
-
- if (pointerOption) {
- var pointerEl = inner(group).pointerEl = new graphic[pointerOption.type](clone(elOption.pointer));
- group.add(pointerEl);
- }
- },
-
- /**
- * @protected
- */
- createLabelEl: function (group, elOption, axisModel, axisPointerModel) {
- if (elOption.label) {
- var labelEl = inner(group).labelEl = new graphic.Rect(clone(elOption.label));
- group.add(labelEl);
- updateLabelShowHide(labelEl, axisPointerModel);
- }
- },
-
- /**
- * @protected
- */
- updatePointerEl: function (group, elOption, updateProps) {
- var pointerEl = inner(group).pointerEl;
-
- if (pointerEl && elOption.pointer) {
- pointerEl.setStyle(elOption.pointer.style);
- updateProps(pointerEl, {
- shape: elOption.pointer.shape
- });
- }
- },
-
- /**
- * @protected
- */
- updateLabelEl: function (group, elOption, updateProps, axisPointerModel) {
- var labelEl = inner(group).labelEl;
-
- if (labelEl) {
- labelEl.setStyle(elOption.label.style);
- updateProps(labelEl, {
- // Consider text length change in vertical axis, animation should
- // be used on shape, otherwise the effect will be weird.
- shape: elOption.label.shape,
- position: elOption.label.position
- });
- updateLabelShowHide(labelEl, axisPointerModel);
- }
- },
-
- /**
- * @private
- */
- _renderHandle: function (value) {
- if (this._dragging || !this.updateHandleTransform) {
- return;
- }
-
- var axisPointerModel = this._axisPointerModel;
-
- var zr = this._api.getZr();
-
- var handle = this._handle;
- var handleModel = axisPointerModel.getModel('handle');
- var status = axisPointerModel.get('status');
-
- if (!handleModel.get('show') || !status || status === 'hide') {
- handle && zr.remove(handle);
- this._handle = null;
- return;
- }
-
- var isInit;
-
- if (!this._handle) {
- isInit = true;
- handle = this._handle = graphic.createIcon(handleModel.get('icon'), {
- cursor: 'move',
- draggable: true,
- onmousemove: function (e) {
- // Fot mobile devicem, prevent screen slider on the button.
- eventTool.stop(e.event);
- },
- onmousedown: bind(this._onHandleDragMove, this, 0, 0),
- drift: bind(this._onHandleDragMove, this),
- ondragend: bind(this._onHandleDragEnd, this)
- });
- zr.add(handle);
- }
-
- updateMandatoryProps(handle, axisPointerModel, false); // update style
-
- var includeStyles = ['color', 'borderColor', 'borderWidth', 'opacity', 'shadowColor', 'shadowBlur', 'shadowOffsetX', 'shadowOffsetY'];
- handle.setStyle(handleModel.getItemStyle(null, includeStyles)); // update position
-
- var handleSize = handleModel.get('size');
-
- if (!zrUtil.isArray(handleSize)) {
- handleSize = [handleSize, handleSize];
- }
-
- handle.attr('scale', [handleSize[0] / 2, handleSize[1] / 2]);
- throttleUtil.createOrUpdate(this, '_doDispatchAxisPointer', handleModel.get('throttle') || 0, 'fixRate');
-
- this._moveHandleToValue(value, isInit);
- },
-
- /**
- * @private
- */
- _moveHandleToValue: function (value, isInit) {
- updateProps(this._axisPointerModel, !isInit && this._moveAnimation, this._handle, getHandleTransProps(this.getHandleTransform(value, this._axisModel, this._axisPointerModel)));
- },
-
- /**
- * @private
- */
- _onHandleDragMove: function (dx, dy) {
- var handle = this._handle;
-
- if (!handle) {
- return;
- }
-
- this._dragging = true; // Persistent for throttle.
-
- var trans = this.updateHandleTransform(getHandleTransProps(handle), [dx, dy], this._axisModel, this._axisPointerModel);
- this._payloadInfo = trans;
- handle.stopAnimation();
- handle.attr(getHandleTransProps(trans));
- inner(handle).lastProp = null;
-
- this._doDispatchAxisPointer();
- },
-
- /**
- * Throttled method.
- * @private
- */
- _doDispatchAxisPointer: function () {
- var handle = this._handle;
-
- if (!handle) {
- return;
- }
-
- var payloadInfo = this._payloadInfo;
- var axisModel = this._axisModel;
-
- this._api.dispatchAction({
- type: 'updateAxisPointer',
- x: payloadInfo.cursorPoint[0],
- y: payloadInfo.cursorPoint[1],
- tooltipOption: payloadInfo.tooltipOption,
- axesInfo: [{
- axisDim: axisModel.axis.dim,
- axisIndex: axisModel.componentIndex
- }]
- });
- },
-
- /**
- * @private
- */
- _onHandleDragEnd: function (moveAnimation) {
- this._dragging = false;
- var handle = this._handle;
-
- if (!handle) {
- return;
- }
-
- var value = this._axisPointerModel.get('value'); // Consider snap or categroy axis, handle may be not consistent with
- // axisPointer. So move handle to align the exact value position when
- // drag ended.
-
-
- this._moveHandleToValue(value); // For the effect: tooltip will be shown when finger holding on handle
- // button, and will be hidden after finger left handle button.
-
-
- this._api.dispatchAction({
- type: 'hideTip'
- });
- },
-
- /**
- * Should be implemenented by sub-class if support `handle`.
- * @protected
- * @param {number} value
- * @param {module:echarts/model/Model} axisModel
- * @param {module:echarts/model/Model} axisPointerModel
- * @return {Object} {position: [x, y], rotation: 0}
- */
- getHandleTransform: null,
-
- /**
- * * Should be implemenented by sub-class if support `handle`.
- * @protected
- * @param {Object} transform {position, rotation}
- * @param {Array.<number>} delta [dx, dy]
- * @param {module:echarts/model/Model} axisModel
- * @param {module:echarts/model/Model} axisPointerModel
- * @return {Object} {position: [x, y], rotation: 0, cursorPoint: [x, y]}
- */
- updateHandleTransform: null,
-
- /**
- * @private
- */
- clear: function (api) {
- this._lastValue = null;
- this._lastStatus = null;
- var zr = api.getZr();
- var group = this._group;
- var handle = this._handle;
-
- if (zr && group) {
- this._lastGraphicKey = null;
- group && zr.remove(group);
- handle && zr.remove(handle);
- this._group = null;
- this._handle = null;
- this._payloadInfo = null;
- }
- },
-
- /**
- * @protected
- */
- doClear: function () {// Implemented by sub-class if necessary.
- },
-
- /**
- * @protected
- * @param {Array.<number>} xy
- * @param {Array.<number>} wh
- * @param {number} [xDimIndex=0] or 1
- */
- buildLabel: function (xy, wh, xDimIndex) {
- xDimIndex = xDimIndex || 0;
- return {
- x: xy[xDimIndex],
- y: xy[1 - xDimIndex],
- width: wh[xDimIndex],
- height: wh[1 - xDimIndex]
- };
- }
- };
- BaseAxisPointer.prototype.constructor = BaseAxisPointer;
-
- function updateProps(animationModel, moveAnimation, el, props) {
- // Animation optimize.
- if (!propsEqual(inner(el).lastProp, props)) {
- inner(el).lastProp = props;
- moveAnimation ? graphic.updateProps(el, props, animationModel) : (el.stopAnimation(), el.attr(props));
- }
- }
-
- function propsEqual(lastProps, newProps) {
- if (zrUtil.isObject(lastProps) && zrUtil.isObject(newProps)) {
- var equals = true;
- zrUtil.each(newProps, function (item, key) {
- equals = equals && propsEqual(lastProps[key], item);
- });
- return !!equals;
- } else {
- return lastProps === newProps;
- }
- }
-
- function updateLabelShowHide(labelEl, axisPointerModel) {
- labelEl[axisPointerModel.get('label.show') ? 'show' : 'hide']();
- }
-
- function getHandleTransProps(trans) {
- return {
- position: trans.position.slice(),
- rotation: trans.rotation || 0
- };
- }
-
- function updateMandatoryProps(group, axisPointerModel, silent) {
- var z = axisPointerModel.get('z');
- var zlevel = axisPointerModel.get('zlevel');
- group && group.traverse(function (el) {
- if (el.type !== 'group') {
- z != null && (el.z = z);
- zlevel != null && (el.zlevel = zlevel);
- el.silent = silent;
- }
- });
- }
-
- clazzUtil.enableClassExtend(BaseAxisPointer);
- var _default = BaseAxisPointer;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1917:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var zrUtil = __webpack_require__(864);
-
- var Polar = __webpack_require__(2715);
-
- var _number = __webpack_require__(985);
-
- var parsePercent = _number.parsePercent;
-
- var _axisHelper = __webpack_require__(1415);
-
- var createScaleByModel = _axisHelper.createScaleByModel;
- var niceScaleExtent = _axisHelper.niceScaleExtent;
-
- var CoordinateSystem = __webpack_require__(1414);
-
- var _dataStackHelper = __webpack_require__(1440);
-
- var getStackedDimension = _dataStackHelper.getStackedDimension;
-
- __webpack_require__(2718);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // TODO Axis scale
-
- /**
- * Resize method bound to the polar
- * @param {module:echarts/coord/polar/PolarModel} polarModel
- * @param {module:echarts/ExtensionAPI} api
- */
- function resizePolar(polar, polarModel, api) {
- var center = polarModel.get('center');
- var width = api.getWidth();
- var height = api.getHeight();
- polar.cx = parsePercent(center[0], width);
- polar.cy = parsePercent(center[1], height);
- var radiusAxis = polar.getRadiusAxis();
- var size = Math.min(width, height) / 2;
- var radius = polarModel.get('radius');
-
- if (radius == null) {
- radius = [0, '100%'];
- } else if (!zrUtil.isArray(radius)) {
- // r0 = 0
- radius = [0, radius];
- }
-
- radius = [parsePercent(radius[0], size), parsePercent(radius[1], size)];
- radiusAxis.inverse ? radiusAxis.setExtent(radius[1], radius[0]) : radiusAxis.setExtent(radius[0], radius[1]);
- }
- /**
- * Update polar
- */
-
-
- function updatePolarScale(ecModel, api) {
- var polar = this;
- var angleAxis = polar.getAngleAxis();
- var radiusAxis = polar.getRadiusAxis(); // Reset scale
-
- angleAxis.scale.setExtent(Infinity, -Infinity);
- radiusAxis.scale.setExtent(Infinity, -Infinity);
- ecModel.eachSeries(function (seriesModel) {
- if (seriesModel.coordinateSystem === polar) {
- var data = seriesModel.getData();
- zrUtil.each(data.mapDimension('radius', true), function (dim) {
- radiusAxis.scale.unionExtentFromData(data, getStackedDimension(data, dim));
- });
- zrUtil.each(data.mapDimension('angle', true), function (dim) {
- angleAxis.scale.unionExtentFromData(data, getStackedDimension(data, dim));
- });
- }
- });
- niceScaleExtent(angleAxis.scale, angleAxis.model);
- niceScaleExtent(radiusAxis.scale, radiusAxis.model); // Fix extent of category angle axis
-
- if (angleAxis.type === 'category' && !angleAxis.onBand) {
- var extent = angleAxis.getExtent();
- var diff = 360 / angleAxis.scale.count();
- angleAxis.inverse ? extent[1] += diff : extent[1] -= diff;
- angleAxis.setExtent(extent[0], extent[1]);
- }
- }
- /**
- * Set common axis properties
- * @param {module:echarts/coord/polar/AngleAxis|module:echarts/coord/polar/RadiusAxis}
- * @param {module:echarts/coord/polar/AxisModel}
- * @inner
- */
-
-
- function setAxis(axis, axisModel) {
- axis.type = axisModel.get('type');
- axis.scale = createScaleByModel(axisModel);
- axis.onBand = axisModel.get('boundaryGap') && axis.type === 'category';
- axis.inverse = axisModel.get('inverse');
-
- if (axisModel.mainType === 'angleAxis') {
- axis.inverse ^= axisModel.get('clockwise');
- var startAngle = axisModel.get('startAngle');
- axis.setExtent(startAngle, startAngle + (axis.inverse ? -360 : 360));
- } // Inject axis instance
-
-
- axisModel.axis = axis;
- axis.model = axisModel;
- }
-
- var polarCreator = {
- dimensions: Polar.prototype.dimensions,
- create: function (ecModel, api) {
- var polarList = [];
- ecModel.eachComponent('polar', function (polarModel, idx) {
- var polar = new Polar(idx); // Inject resize and update method
-
- polar.update = updatePolarScale;
- var radiusAxis = polar.getRadiusAxis();
- var angleAxis = polar.getAngleAxis();
- var radiusAxisModel = polarModel.findAxisModel('radiusAxis');
- var angleAxisModel = polarModel.findAxisModel('angleAxis');
- setAxis(radiusAxis, radiusAxisModel);
- setAxis(angleAxis, angleAxisModel);
- resizePolar(polar, polarModel, api);
- polarList.push(polar);
- polarModel.coordinateSystem = polar;
- polar.model = polarModel;
- }); // Inject coordinateSystem to series
-
- ecModel.eachSeries(function (seriesModel) {
- if (seriesModel.get('coordinateSystem') === 'polar') {
- var polarModel = ecModel.queryComponents({
- mainType: 'polar',
- index: seriesModel.get('polarIndex'),
- id: seriesModel.get('polarId')
- })[0];
- seriesModel.coordinateSystem = polarModel.coordinateSystem;
- }
- });
- return polarList;
- }
- };
- CoordinateSystem.register('polar', polarCreator);
-
- /***/ }),
-
- /***/ 1918:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var Component = __webpack_require__(1321);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- Component.registerSubTypeDefaulter('dataZoom', function () {
- // Default 'slider' when no type specified.
- return 'slider';
- });
-
- /***/ }),
-
- /***/ 1919:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var formatUtil = __webpack_require__(1186);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var AXIS_DIMS = ['x', 'y', 'z', 'radius', 'angle', 'single']; // Supported coords.
-
- var COORDS = ['cartesian2d', 'polar', 'singleAxis'];
- /**
- * @param {string} coordType
- * @return {boolean}
- */
-
- function isCoordSupported(coordType) {
- return zrUtil.indexOf(COORDS, coordType) >= 0;
- }
- /**
- * Create "each" method to iterate names.
- *
- * @pubilc
- * @param {Array.<string>} names
- * @param {Array.<string>=} attrs
- * @return {Function}
- */
-
-
- function createNameEach(names, attrs) {
- names = names.slice();
- var capitalNames = zrUtil.map(names, formatUtil.capitalFirst);
- attrs = (attrs || []).slice();
- var capitalAttrs = zrUtil.map(attrs, formatUtil.capitalFirst);
- return function (callback, context) {
- zrUtil.each(names, function (name, index) {
- var nameObj = {
- name: name,
- capital: capitalNames[index]
- };
-
- for (var j = 0; j < attrs.length; j++) {
- nameObj[attrs[j]] = name + capitalAttrs[j];
- }
-
- callback.call(context, nameObj);
- });
- };
- }
- /**
- * Iterate each dimension name.
- *
- * @public
- * @param {Function} callback The parameter is like:
- * {
- * name: 'angle',
- * capital: 'Angle',
- * axis: 'angleAxis',
- * axisIndex: 'angleAixs',
- * index: 'angleIndex'
- * }
- * @param {Object} context
- */
-
-
- var eachAxisDim = createNameEach(AXIS_DIMS, ['axisIndex', 'axis', 'index', 'id']);
- /**
- * If tow dataZoomModels has the same axis controlled, we say that they are 'linked'.
- * dataZoomModels and 'links' make up one or more graphics.
- * This function finds the graphic where the source dataZoomModel is in.
- *
- * @public
- * @param {Function} forEachNode Node iterator.
- * @param {Function} forEachEdgeType edgeType iterator
- * @param {Function} edgeIdGetter Giving node and edgeType, return an array of edge id.
- * @return {Function} Input: sourceNode, Output: Like {nodes: [], dims: {}}
- */
-
- function createLinkedNodesFinder(forEachNode, forEachEdgeType, edgeIdGetter) {
- return function (sourceNode) {
- var result = {
- nodes: [],
- records: {} // key: edgeType.name, value: Object (key: edge id, value: boolean).
-
- };
- forEachEdgeType(function (edgeType) {
- result.records[edgeType.name] = {};
- });
-
- if (!sourceNode) {
- return result;
- }
-
- absorb(sourceNode, result);
- var existsLink;
-
- do {
- existsLink = false;
- forEachNode(processSingleNode);
- } while (existsLink);
-
- function processSingleNode(node) {
- if (!isNodeAbsorded(node, result) && isLinked(node, result)) {
- absorb(node, result);
- existsLink = true;
- }
- }
-
- return result;
- };
-
- function isNodeAbsorded(node, result) {
- return zrUtil.indexOf(result.nodes, node) >= 0;
- }
-
- function isLinked(node, result) {
- var hasLink = false;
- forEachEdgeType(function (edgeType) {
- zrUtil.each(edgeIdGetter(node, edgeType) || [], function (edgeId) {
- result.records[edgeType.name][edgeId] && (hasLink = true);
- });
- });
- return hasLink;
- }
-
- function absorb(node, result) {
- result.nodes.push(node);
- forEachEdgeType(function (edgeType) {
- zrUtil.each(edgeIdGetter(node, edgeType) || [], function (edgeId) {
- result.records[edgeType.name][edgeId] = true;
- });
- });
- }
- }
-
- exports.isCoordSupported = isCoordSupported;
- exports.createNameEach = createNameEach;
- exports.eachAxisDim = eachAxisDim;
- exports.createLinkedNodesFinder = createLinkedNodesFinder;
-
- /***/ }),
-
- /***/ 1920:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var _util = __webpack_require__(864);
-
- var createHashMap = _util.createHashMap;
- var each = _util.each;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- echarts.registerProcessor({
- // `dataZoomProcessor` will only be performed in needed series. Consider if
- // there is a line series and a pie series, it is better not to update the
- // line series if only pie series is needed to be updated.
- getTargetSeries: function (ecModel) {
- var seriesModelMap = createHashMap();
- ecModel.eachComponent('dataZoom', function (dataZoomModel) {
- dataZoomModel.eachTargetAxis(function (dimNames, axisIndex, dataZoomModel) {
- var axisProxy = dataZoomModel.getAxisProxy(dimNames.name, axisIndex);
- each(axisProxy.getTargetSeriesModels(), function (seriesModel) {
- seriesModelMap.set(seriesModel.uid, seriesModel);
- });
- });
- });
- return seriesModelMap;
- },
- modifyOutputEnd: true,
- // Consider appendData, where filter should be performed. Because data process is
- // in block mode currently, it is not need to worry about that the overallProgress
- // execute every frame.
- overallReset: function (ecModel, api) {
- ecModel.eachComponent('dataZoom', function (dataZoomModel) {
- // We calculate window and reset axis here but not in model
- // init stage and not after action dispatch handler, because
- // reset should be called after seriesData.restoreData.
- dataZoomModel.eachTargetAxis(function (dimNames, axisIndex, dataZoomModel) {
- dataZoomModel.getAxisProxy(dimNames.name, axisIndex).reset(dataZoomModel, api);
- }); // Caution: data zoom filtering is order sensitive when using
- // percent range and no min/max/scale set on axis.
- // For example, we have dataZoom definition:
- // [
- // {xAxisIndex: 0, start: 30, end: 70},
- // {yAxisIndex: 0, start: 20, end: 80}
- // ]
- // In this case, [20, 80] of y-dataZoom should be based on data
- // that have filtered by x-dataZoom using range of [30, 70],
- // but should not be based on full raw data. Thus sliding
- // x-dataZoom will change both ranges of xAxis and yAxis,
- // while sliding y-dataZoom will only change the range of yAxis.
- // So we should filter x-axis after reset x-axis immediately,
- // and then reset y-axis and filter y-axis.
-
- dataZoomModel.eachTargetAxis(function (dimNames, axisIndex, dataZoomModel) {
- dataZoomModel.getAxisProxy(dimNames.name, axisIndex).filterData(dataZoomModel, api);
- });
- });
- ecModel.eachComponent('dataZoom', function (dataZoomModel) {
- // Fullfill all of the range props so that user
- // is able to get them from chart.getOption().
- var axisProxy = dataZoomModel.findRepresentativeAxisProxy();
- var percentRange = axisProxy.getDataPercentWindow();
- var valueRange = axisProxy.getDataValueWindow();
- dataZoomModel.setCalculatedRange({
- start: percentRange[0],
- end: percentRange[1],
- startValue: valueRange[0],
- endValue: valueRange[1]
- });
- });
- }
- });
-
- /***/ }),
-
- /***/ 1921:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var helper = __webpack_require__(1919);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- echarts.registerAction('dataZoom', function (payload, ecModel) {
- var linkedNodesFinder = helper.createLinkedNodesFinder(zrUtil.bind(ecModel.eachComponent, ecModel, 'dataZoom'), helper.eachAxisDim, function (model, dimNames) {
- return model.get(dimNames.axisIndex);
- });
- var effectedModels = [];
- ecModel.eachComponent({
- mainType: 'dataZoom',
- query: payload
- }, function (model, index) {
- effectedModels.push.apply(effectedModels, linkedNodesFinder(model).nodes);
- });
- zrUtil.each(effectedModels, function (dataZoomModel, index) {
- dataZoomModel.setRawRange({
- start: payload.start,
- end: payload.end,
- startValue: payload.startValue,
- endValue: payload.endValue
- });
- });
- });
-
- /***/ }),
-
- /***/ 1922:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var env = __webpack_require__(1316);
-
- var modelUtil = __webpack_require__(1064);
-
- var formatUtil = __webpack_require__(1186);
-
- var dataFormatMixin = __webpack_require__(1901);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var addCommas = formatUtil.addCommas;
- var encodeHTML = formatUtil.encodeHTML;
-
- function fillLabel(opt) {
- modelUtil.defaultEmphasis(opt, 'label', ['show']);
- }
-
- var MarkerModel = echarts.extendComponentModel({
- type: 'marker',
- dependencies: ['series', 'grid', 'polar', 'geo'],
-
- /**
- * @overrite
- */
- init: function (option, parentModel, ecModel) {
- this.mergeDefaultAndTheme(option, ecModel);
-
- this._mergeOption(option, ecModel, false, true);
- },
-
- /**
- * @return {boolean}
- */
- isAnimationEnabled: function () {
- if (env.node) {
- return false;
- }
-
- var hostSeries = this.__hostSeries;
- return this.getShallow('animation') && hostSeries && hostSeries.isAnimationEnabled();
- },
-
- /**
- * @overrite
- */
- mergeOption: function (newOpt, ecModel) {
- this._mergeOption(newOpt, ecModel, false, false);
- },
- _mergeOption: function (newOpt, ecModel, createdBySelf, isInit) {
- var MarkerModel = this.constructor;
- var modelPropName = this.mainType + 'Model';
-
- if (!createdBySelf) {
- ecModel.eachSeries(function (seriesModel) {
- var markerOpt = seriesModel.get(this.mainType, true);
- var markerModel = seriesModel[modelPropName];
-
- if (!markerOpt || !markerOpt.data) {
- seriesModel[modelPropName] = null;
- return;
- }
-
- if (!markerModel) {
- if (isInit) {
- // Default label emphasis `position` and `show`
- fillLabel(markerOpt);
- }
-
- zrUtil.each(markerOpt.data, function (item) {
- // FIXME Overwrite fillLabel method ?
- if (item instanceof Array) {
- fillLabel(item[0]);
- fillLabel(item[1]);
- } else {
- fillLabel(item);
- }
- });
- markerModel = new MarkerModel(markerOpt, this, ecModel);
- zrUtil.extend(markerModel, {
- mainType: this.mainType,
- // Use the same series index and name
- seriesIndex: seriesModel.seriesIndex,
- name: seriesModel.name,
- createdBySelf: true
- });
- markerModel.__hostSeries = seriesModel;
- } else {
- markerModel._mergeOption(markerOpt, ecModel, true);
- }
-
- seriesModel[modelPropName] = markerModel;
- }, this);
- }
- },
- formatTooltip: function (dataIndex) {
- var data = this.getData();
- var value = this.getRawValue(dataIndex);
- var formattedValue = zrUtil.isArray(value) ? zrUtil.map(value, addCommas).join(', ') : addCommas(value);
- var name = data.getName(dataIndex);
- var html = encodeHTML(this.name);
-
- if (value != null || name) {
- html += '<br />';
- }
-
- if (name) {
- html += encodeHTML(name);
-
- if (value != null) {
- html += ' : ';
- }
- }
-
- if (value != null) {
- html += encodeHTML(formattedValue);
- }
-
- return html;
- },
- getData: function () {
- return this._data;
- },
- setData: function (data) {
- this._data = data;
- }
- });
- zrUtil.mixin(MarkerModel, dataFormatMixin);
- var _default = MarkerModel;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1923:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var numberUtil = __webpack_require__(985);
-
- var _dataStackHelper = __webpack_require__(1440);
-
- var isDimensionStacked = _dataStackHelper.isDimensionStacked;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var indexOf = zrUtil.indexOf;
-
- function hasXOrY(item) {
- return !(isNaN(parseFloat(item.x)) && isNaN(parseFloat(item.y)));
- }
-
- function hasXAndY(item) {
- return !isNaN(parseFloat(item.x)) && !isNaN(parseFloat(item.y));
- } // Make it simple, do not visit all stacked value to count precision.
- // function getPrecision(data, valueAxisDim, dataIndex) {
- // var precision = -1;
- // var stackedDim = data.mapDimension(valueAxisDim);
- // do {
- // precision = Math.max(
- // numberUtil.getPrecision(data.get(stackedDim, dataIndex)),
- // precision
- // );
- // var stackedOnSeries = data.getCalculationInfo('stackedOnSeries');
- // if (stackedOnSeries) {
- // var byValue = data.get(data.getCalculationInfo('stackedByDimension'), dataIndex);
- // data = stackedOnSeries.getData();
- // dataIndex = data.indexOf(data.getCalculationInfo('stackedByDimension'), byValue);
- // stackedDim = data.getCalculationInfo('stackedDimension');
- // }
- // else {
- // data = null;
- // }
- // } while (data);
- // return precision;
- // }
-
-
- function markerTypeCalculatorWithExtent(mlType, data, otherDataDim, targetDataDim, otherCoordIndex, targetCoordIndex) {
- var coordArr = [];
- var stacked = isDimensionStacked(data, targetDataDim
- /*, otherDataDim*/
- );
- var calcDataDim = stacked ? data.getCalculationInfo('stackResultDimension') : targetDataDim;
- var value = numCalculate(data, calcDataDim, mlType);
- var dataIndex = data.indicesOfNearest(calcDataDim, value)[0];
- coordArr[otherCoordIndex] = data.get(otherDataDim, dataIndex);
- coordArr[targetCoordIndex] = data.get(targetDataDim, dataIndex); // Make it simple, do not visit all stacked value to count precision.
-
- var precision = numberUtil.getPrecision(data.get(targetDataDim, dataIndex));
- precision = Math.min(precision, 20);
-
- if (precision >= 0) {
- coordArr[targetCoordIndex] = +coordArr[targetCoordIndex].toFixed(precision);
- }
-
- return coordArr;
- }
-
- var curry = zrUtil.curry; // TODO Specified percent
-
- var markerTypeCalculator = {
- /**
- * @method
- * @param {module:echarts/data/List} data
- * @param {string} baseAxisDim
- * @param {string} valueAxisDim
- */
- min: curry(markerTypeCalculatorWithExtent, 'min'),
-
- /**
- * @method
- * @param {module:echarts/data/List} data
- * @param {string} baseAxisDim
- * @param {string} valueAxisDim
- */
- max: curry(markerTypeCalculatorWithExtent, 'max'),
-
- /**
- * @method
- * @param {module:echarts/data/List} data
- * @param {string} baseAxisDim
- * @param {string} valueAxisDim
- */
- average: curry(markerTypeCalculatorWithExtent, 'average')
- };
- /**
- * Transform markPoint data item to format used in List by do the following
- * 1. Calculate statistic like `max`, `min`, `average`
- * 2. Convert `item.xAxis`, `item.yAxis` to `item.coord` array
- * @param {module:echarts/model/Series} seriesModel
- * @param {module:echarts/coord/*} [coordSys]
- * @param {Object} item
- * @return {Object}
- */
-
- function dataTransform(seriesModel, item) {
- var data = seriesModel.getData();
- var coordSys = seriesModel.coordinateSystem; // 1. If not specify the position with pixel directly
- // 2. If `coord` is not a data array. Which uses `xAxis`,
- // `yAxis` to specify the coord on each dimension
- // parseFloat first because item.x and item.y can be percent string like '20%'
-
- if (item && !hasXAndY(item) && !zrUtil.isArray(item.coord) && coordSys) {
- var dims = coordSys.dimensions;
- var axisInfo = getAxisInfo(item, data, coordSys, seriesModel); // Clone the option
- // Transform the properties xAxis, yAxis, radiusAxis, angleAxis, geoCoord to value
-
- item = zrUtil.clone(item);
-
- if (item.type && markerTypeCalculator[item.type] && axisInfo.baseAxis && axisInfo.valueAxis) {
- var otherCoordIndex = indexOf(dims, axisInfo.baseAxis.dim);
- var targetCoordIndex = indexOf(dims, axisInfo.valueAxis.dim);
- item.coord = markerTypeCalculator[item.type](data, axisInfo.baseDataDim, axisInfo.valueDataDim, otherCoordIndex, targetCoordIndex); // Force to use the value of calculated value.
-
- item.value = item.coord[targetCoordIndex];
- } else {
- // FIXME Only has one of xAxis and yAxis.
- var coord = [item.xAxis != null ? item.xAxis : item.radiusAxis, item.yAxis != null ? item.yAxis : item.angleAxis]; // Each coord support max, min, average
-
- for (var i = 0; i < 2; i++) {
- if (markerTypeCalculator[coord[i]]) {
- coord[i] = numCalculate(data, data.mapDimension(dims[i]), coord[i]);
- }
- }
-
- item.coord = coord;
- }
- }
-
- return item;
- }
-
- function getAxisInfo(item, data, coordSys, seriesModel) {
- var ret = {};
-
- if (item.valueIndex != null || item.valueDim != null) {
- ret.valueDataDim = item.valueIndex != null ? data.getDimension(item.valueIndex) : item.valueDim;
- ret.valueAxis = coordSys.getAxis(dataDimToCoordDim(seriesModel, ret.valueDataDim));
- ret.baseAxis = coordSys.getOtherAxis(ret.valueAxis);
- ret.baseDataDim = data.mapDimension(ret.baseAxis.dim);
- } else {
- ret.baseAxis = seriesModel.getBaseAxis();
- ret.valueAxis = coordSys.getOtherAxis(ret.baseAxis);
- ret.baseDataDim = data.mapDimension(ret.baseAxis.dim);
- ret.valueDataDim = data.mapDimension(ret.valueAxis.dim);
- }
-
- return ret;
- }
-
- function dataDimToCoordDim(seriesModel, dataDim) {
- var data = seriesModel.getData();
- var dimensions = data.dimensions;
- dataDim = data.getDimension(dataDim);
-
- for (var i = 0; i < dimensions.length; i++) {
- var dimItem = data.getDimensionInfo(dimensions[i]);
-
- if (dimItem.name === dataDim) {
- return dimItem.coordDim;
- }
- }
- }
- /**
- * Filter data which is out of coordinateSystem range
- * [dataFilter description]
- * @param {module:echarts/coord/*} [coordSys]
- * @param {Object} item
- * @return {boolean}
- */
-
-
- function dataFilter(coordSys, item) {
- // Alwalys return true if there is no coordSys
- return coordSys && coordSys.containData && item.coord && !hasXOrY(item) ? coordSys.containData(item.coord) : true;
- }
-
- function dimValueGetter(item, dimName, dataIndex, dimIndex) {
- // x, y, radius, angle
- if (dimIndex < 2) {
- return item.coord && item.coord[dimIndex];
- }
-
- return item.value;
- }
-
- function numCalculate(data, valueDataDim, type) {
- if (type === 'average') {
- var sum = 0;
- var count = 0;
- data.each(valueDataDim, function (val, idx) {
- if (!isNaN(val)) {
- sum += val;
- count++;
- }
- });
- return sum / count;
- } else if (type === 'median') {
- return data.getMedian(valueDataDim);
- } else {
- // max & min
- return data.getDataExtent(valueDataDim, true)[type === 'max' ? 1 : 0];
- }
- }
-
- exports.dataTransform = dataTransform;
- exports.getAxisInfo = getAxisInfo;
- exports.dataFilter = dataFilter;
- exports.dimValueGetter = dimValueGetter;
- exports.numCalculate = numCalculate;
-
- /***/ }),
-
- /***/ 1924:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = echarts.extendComponentView({
- type: 'marker',
- init: function () {
- /**
- * Markline grouped by series
- * @private
- * @type {module:zrender/core/util.HashMap}
- */
- this.markerGroupMap = zrUtil.createHashMap();
- },
- render: function (markerModel, ecModel, api) {
- var markerGroupMap = this.markerGroupMap;
- markerGroupMap.each(function (item) {
- item.__keep = false;
- });
- var markerModelKey = this.type + 'Model';
- ecModel.eachSeries(function (seriesModel) {
- var markerModel = seriesModel[markerModelKey];
- markerModel && this.renderSeries(seriesModel, markerModel, ecModel, api);
- }, this);
- markerGroupMap.each(function (item) {
- !item.__keep && this.group.remove(item.group);
- }, this);
- },
- renderSeries: function () {}
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 1925:
- /***/ (function(module, exports, __webpack_require__) {
-
- var _core = __webpack_require__(1926);
-
- var createElement = _core.createElement;
-
- var PathProxy = __webpack_require__(1600);
-
- var BoundingRect = __webpack_require__(1185);
-
- var matrix = __webpack_require__(1350);
-
- var textContain = __webpack_require__(1402);
-
- var textHelper = __webpack_require__(1783);
-
- var Text = __webpack_require__(1517);
-
- // TODO
- // 1. shadow
- // 2. Image: sx, sy, sw, sh
- var CMD = PathProxy.CMD;
- var arrayJoin = Array.prototype.join;
- var NONE = 'none';
- var mathRound = Math.round;
- var mathSin = Math.sin;
- var mathCos = Math.cos;
- var PI = Math.PI;
- var PI2 = Math.PI * 2;
- var degree = 180 / PI;
- var EPSILON = 1e-4;
-
- function round4(val) {
- return mathRound(val * 1e4) / 1e4;
- }
-
- function isAroundZero(val) {
- return val < EPSILON && val > -EPSILON;
- }
-
- function pathHasFill(style, isText) {
- var fill = isText ? style.textFill : style.fill;
- return fill != null && fill !== NONE;
- }
-
- function pathHasStroke(style, isText) {
- var stroke = isText ? style.textStroke : style.stroke;
- return stroke != null && stroke !== NONE;
- }
-
- function setTransform(svgEl, m) {
- if (m) {
- attr(svgEl, 'transform', 'matrix(' + arrayJoin.call(m, ',') + ')');
- }
- }
-
- function attr(el, key, val) {
- if (!val || val.type !== 'linear' && val.type !== 'radial') {
- // Don't set attribute for gradient, since it need new dom nodes
- el.setAttribute(key, val);
- }
- }
-
- function attrXLink(el, key, val) {
- el.setAttributeNS('http://www.w3.org/1999/xlink', key, val);
- }
-
- function bindStyle(svgEl, style, isText, el) {
- if (pathHasFill(style, isText)) {
- var fill = isText ? style.textFill : style.fill;
- fill = fill === 'transparent' ? NONE : fill;
- attr(svgEl, 'fill', fill);
- attr(svgEl, 'fill-opacity', style.fillOpacity != null ? style.fillOpacity * style.opacity : style.opacity);
- } else {
- attr(svgEl, 'fill', NONE);
- }
-
- if (pathHasStroke(style, isText)) {
- var stroke = isText ? style.textStroke : style.stroke;
- stroke = stroke === 'transparent' ? NONE : stroke;
- attr(svgEl, 'stroke', stroke);
- var strokeWidth = isText ? style.textStrokeWidth : style.lineWidth;
- var strokeScale = !isText && style.strokeNoScale ? el.getLineScale() : 1;
- attr(svgEl, 'stroke-width', strokeWidth / strokeScale); // stroke then fill for text; fill then stroke for others
-
- attr(svgEl, 'paint-order', isText ? 'stroke' : 'fill');
- attr(svgEl, 'stroke-opacity', style.strokeOpacity != null ? style.strokeOpacity : style.opacity);
- var lineDash = style.lineDash;
-
- if (lineDash) {
- attr(svgEl, 'stroke-dasharray', style.lineDash.join(','));
- attr(svgEl, 'stroke-dashoffset', mathRound(style.lineDashOffset || 0));
- } else {
- attr(svgEl, 'stroke-dasharray', '');
- } // PENDING
-
-
- style.lineCap && attr(svgEl, 'stroke-linecap', style.lineCap);
- style.lineJoin && attr(svgEl, 'stroke-linejoin', style.lineJoin);
- style.miterLimit && attr(svgEl, 'stroke-miterlimit', style.miterLimit);
- } else {
- attr(svgEl, 'stroke', NONE);
- }
- }
- /***************************************************
- * PATH
- **************************************************/
-
-
- function pathDataToString(path) {
- var str = [];
- var data = path.data;
- var dataLength = path.len();
-
- for (var i = 0; i < dataLength;) {
- var cmd = data[i++];
- var cmdStr = '';
- var nData = 0;
-
- switch (cmd) {
- case CMD.M:
- cmdStr = 'M';
- nData = 2;
- break;
-
- case CMD.L:
- cmdStr = 'L';
- nData = 2;
- break;
-
- case CMD.Q:
- cmdStr = 'Q';
- nData = 4;
- break;
-
- case CMD.C:
- cmdStr = 'C';
- nData = 6;
- break;
-
- case CMD.A:
- var cx = data[i++];
- var cy = data[i++];
- var rx = data[i++];
- var ry = data[i++];
- var theta = data[i++];
- var dTheta = data[i++];
- var psi = data[i++];
- var clockwise = data[i++];
- var dThetaPositive = Math.abs(dTheta);
- var isCircle = isAroundZero(dThetaPositive - PI2) || (clockwise ? dTheta >= PI2 : -dTheta >= PI2); // Mapping to 0~2PI
-
- var unifiedTheta = dTheta > 0 ? dTheta % PI2 : dTheta % PI2 + PI2;
- var large = false;
-
- if (isCircle) {
- large = true;
- } else if (isAroundZero(dThetaPositive)) {
- large = false;
- } else {
- large = unifiedTheta >= PI === !!clockwise;
- }
-
- var x0 = round4(cx + rx * mathCos(theta));
- var y0 = round4(cy + ry * mathSin(theta)); // It will not draw if start point and end point are exactly the same
- // We need to shift the end point with a small value
- // FIXME A better way to draw circle ?
-
- if (isCircle) {
- if (clockwise) {
- dTheta = PI2 - 1e-4;
- } else {
- dTheta = -PI2 + 1e-4;
- }
-
- large = true;
-
- if (i === 9) {
- // Move to (x0, y0) only when CMD.A comes at the
- // first position of a shape.
- // For instance, when drawing a ring, CMD.A comes
- // after CMD.M, so it's unnecessary to move to
- // (x0, y0).
- str.push('M', x0, y0);
- }
- }
-
- var x = round4(cx + rx * mathCos(theta + dTheta));
- var y = round4(cy + ry * mathSin(theta + dTheta)); // FIXME Ellipse
-
- str.push('A', round4(rx), round4(ry), mathRound(psi * degree), +large, +clockwise, x, y);
- break;
-
- case CMD.Z:
- cmdStr = 'Z';
- break;
-
- case CMD.R:
- var x = round4(data[i++]);
- var y = round4(data[i++]);
- var w = round4(data[i++]);
- var h = round4(data[i++]);
- str.push('M', x, y, 'L', x + w, y, 'L', x + w, y + h, 'L', x, y + h, 'L', x, y);
- break;
- }
-
- cmdStr && str.push(cmdStr);
-
- for (var j = 0; j < nData; j++) {
- // PENDING With scale
- str.push(round4(data[i++]));
- }
- }
-
- return str.join(' ');
- }
-
- var svgPath = {};
-
- svgPath.brush = function (el) {
- var style = el.style;
- var svgEl = el.__svgEl;
-
- if (!svgEl) {
- svgEl = createElement('path');
- el.__svgEl = svgEl;
- }
-
- if (!el.path) {
- el.createPathProxy();
- }
-
- var path = el.path;
-
- if (el.__dirtyPath) {
- path.beginPath();
- path.subPixelOptimize = false;
- el.buildPath(path, el.shape);
- el.__dirtyPath = false;
- var pathStr = pathDataToString(path);
-
- if (pathStr.indexOf('NaN') < 0) {
- // Ignore illegal path, which may happen such in out-of-range
- // data in Calendar series.
- attr(svgEl, 'd', pathStr);
- }
- }
-
- bindStyle(svgEl, style, false, el);
- setTransform(svgEl, el.transform);
-
- if (style.text != null) {
- svgTextDrawRectText(el, el.getBoundingRect());
- } else {
- removeOldTextNode(el);
- }
- };
- /***************************************************
- * IMAGE
- **************************************************/
-
-
- var svgImage = {};
-
- svgImage.brush = function (el) {
- var style = el.style;
- var image = style.image;
-
- if (image instanceof HTMLImageElement) {
- var src = image.src;
- image = src;
- }
-
- if (!image) {
- return;
- }
-
- var x = style.x || 0;
- var y = style.y || 0;
- var dw = style.width;
- var dh = style.height;
- var svgEl = el.__svgEl;
-
- if (!svgEl) {
- svgEl = createElement('image');
- el.__svgEl = svgEl;
- }
-
- if (image !== el.__imageSrc) {
- attrXLink(svgEl, 'href', image); // Caching image src
-
- el.__imageSrc = image;
- }
-
- attr(svgEl, 'width', dw);
- attr(svgEl, 'height', dh);
- attr(svgEl, 'x', x);
- attr(svgEl, 'y', y);
- setTransform(svgEl, el.transform);
-
- if (style.text != null) {
- svgTextDrawRectText(el, el.getBoundingRect());
- } else {
- removeOldTextNode(el);
- }
- };
- /***************************************************
- * TEXT
- **************************************************/
-
-
- var svgText = {};
-
- var _tmpTextHostRect = new BoundingRect();
-
- var _tmpTextBoxPos = {};
- var _tmpTextTransform = [];
- var TEXT_ALIGN_TO_ANCHRO = {
- left: 'start',
- right: 'end',
- center: 'middle',
- middle: 'middle'
- };
- /**
- * @param {module:zrender/Element} el
- * @param {Object|boolean} [hostRect] {x, y, width, height}
- * If set false, rect text is not used.
- */
-
- var svgTextDrawRectText = function (el, hostRect) {
- var style = el.style;
- var elTransform = el.transform;
- var needTransformTextByHostEl = el instanceof Text || style.transformText;
- el.__dirty && textHelper.normalizeTextStyle(style, true);
- var text = style.text; // Convert to string
-
- text != null && (text += '');
-
- if (!textHelper.needDrawText(text, style)) {
- return;
- } // render empty text for svg if no text but need draw text.
-
-
- text == null && (text = ''); // Follow the setting in the canvas renderer, if not transform the
- // text, transform the hostRect, by which the text is located.
-
- if (!needTransformTextByHostEl && elTransform) {
- _tmpTextHostRect.copy(hostRect);
-
- _tmpTextHostRect.applyTransform(elTransform);
-
- hostRect = _tmpTextHostRect;
- }
-
- var textSvgEl = el.__textSvgEl;
-
- if (!textSvgEl) {
- textSvgEl = createElement('text');
- el.__textSvgEl = textSvgEl;
- } // style.font has been normalized by `normalizeTextStyle`.
-
-
- var textSvgElStyle = textSvgEl.style;
- var font = style.font || textContain.DEFAULT_FONT;
- var computedFont = textSvgEl.__computedFont;
-
- if (font !== textSvgEl.__styleFont) {
- textSvgElStyle.font = textSvgEl.__styleFont = font; // The computedFont might not be the orginal font if it is illegal font.
-
- computedFont = textSvgEl.__computedFont = textSvgElStyle.font;
- }
-
- var textPadding = style.textPadding;
- var textLineHeight = style.textLineHeight;
- var contentBlock = el.__textCotentBlock;
-
- if (!contentBlock || el.__dirtyText) {
- contentBlock = el.__textCotentBlock = textContain.parsePlainText(text, computedFont, textPadding, textLineHeight, style.truncate);
- }
-
- var outerHeight = contentBlock.outerHeight;
- var lineHeight = contentBlock.lineHeight;
- textHelper.getBoxPosition(_tmpTextBoxPos, el, style, hostRect);
- var baseX = _tmpTextBoxPos.baseX;
- var baseY = _tmpTextBoxPos.baseY;
- var textAlign = _tmpTextBoxPos.textAlign || 'left';
- var textVerticalAlign = _tmpTextBoxPos.textVerticalAlign;
- setTextTransform(textSvgEl, needTransformTextByHostEl, elTransform, style, hostRect, baseX, baseY);
- var boxY = textContain.adjustTextY(baseY, outerHeight, textVerticalAlign);
- var textX = baseX;
- var textY = boxY; // TODO needDrawBg
-
- if (textPadding) {
- textX = getTextXForPadding(baseX, textAlign, textPadding);
- textY += textPadding[0];
- } // `textBaseline` is set as 'middle'.
-
-
- textY += lineHeight / 2;
- bindStyle(textSvgEl, style, true, el); // FIXME
- // Add a <style> to reset all of the text font as inherit?
- // otherwise the outer <style> may set the unexpected style.
- // Font may affect position of each tspan elements
-
- var canCacheByTextString = contentBlock.canCacheByTextString;
- var tspanList = el.__tspanList || (el.__tspanList = []);
- var tspanOriginLen = tspanList.length; // Optimize for most cases, just compare text string to determine change.
-
- if (canCacheByTextString && el.__canCacheByTextString && el.__text === text) {
- if (el.__dirtyText && tspanOriginLen) {
- for (var idx = 0; idx < tspanOriginLen; ++idx) {
- updateTextLocation(tspanList[idx], textAlign, textX, textY + idx * lineHeight);
- }
- }
- } else {
- el.__text = text;
- el.__canCacheByTextString = canCacheByTextString;
- var textLines = contentBlock.lines;
- var nTextLines = textLines.length;
- var idx = 0;
-
- for (; idx < nTextLines; idx++) {
- // Using cached tspan elements
- var tspan = tspanList[idx];
- var singleLineText = textLines[idx];
-
- if (!tspan) {
- tspan = tspanList[idx] = createElement('tspan');
- textSvgEl.appendChild(tspan);
- tspan.appendChild(document.createTextNode(singleLineText));
- } else if (tspan.__zrText !== singleLineText) {
- tspan.innerHTML = '';
- tspan.appendChild(document.createTextNode(singleLineText));
- }
-
- updateTextLocation(tspan, textAlign, textX, textY + idx * lineHeight);
- } // Remove unused tspan elements
-
-
- if (tspanOriginLen > nTextLines) {
- for (; idx < tspanOriginLen; idx++) {
- textSvgEl.removeChild(tspanList[idx]);
- }
-
- tspanList.length = nTextLines;
- }
- }
- };
-
- function setTextTransform(textSvgEl, needTransformTextByHostEl, elTransform, style, hostRect, baseX, baseY) {
- matrix.identity(_tmpTextTransform);
-
- if (needTransformTextByHostEl && elTransform) {
- matrix.copy(_tmpTextTransform, elTransform);
- } // textRotation only apply in RectText.
-
-
- var textRotation = style.textRotation;
-
- if (hostRect && textRotation) {
- var origin = style.textOrigin;
-
- if (origin === 'center') {
- baseX = hostRect.width / 2 + hostRect.x;
- baseY = hostRect.height / 2 + hostRect.y;
- } else if (origin) {
- baseX = origin[0] + hostRect.x;
- baseY = origin[1] + hostRect.y;
- }
-
- _tmpTextTransform[4] -= baseX;
- _tmpTextTransform[5] -= baseY; // Positive: anticlockwise
-
- matrix.rotate(_tmpTextTransform, _tmpTextTransform, textRotation);
- _tmpTextTransform[4] += baseX;
- _tmpTextTransform[5] += baseY;
- } // See the definition in `Style.js#textOrigin`, the default
- // origin is from the result of `getBoxPosition`.
-
-
- setTransform(textSvgEl, _tmpTextTransform);
- } // FIXME merge the same code with `helper/text.js#getTextXForPadding`;
-
-
- function getTextXForPadding(x, textAlign, textPadding) {
- return textAlign === 'right' ? x - textPadding[1] : textAlign === 'center' ? x + textPadding[3] / 2 - textPadding[1] / 2 : x + textPadding[3];
- }
-
- function updateTextLocation(tspan, textAlign, x, y) {
- // Consider different font display differently in vertial align, we always
- // set vertialAlign as 'middle', and use 'y' to locate text vertically.
- attr(tspan, 'dominant-baseline', 'middle');
- attr(tspan, 'text-anchor', TEXT_ALIGN_TO_ANCHRO[textAlign]);
- attr(tspan, 'x', x);
- attr(tspan, 'y', y);
- }
-
- function removeOldTextNode(el) {
- if (el && el.__textSvgEl) {
- // textSvgEl may has no parentNode if el has been removed temporary.
- if (el.__textSvgEl.parentNode) {
- el.__textSvgEl.parentNode.removeChild(el.__textSvgEl);
- }
-
- el.__textSvgEl = null;
- el.__tspanList = [];
- el.__text = null;
- }
- }
-
- svgText.drawRectText = svgTextDrawRectText;
-
- svgText.brush = function (el) {
- var style = el.style;
-
- if (style.text != null) {
- svgTextDrawRectText(el, false);
- } else {
- removeOldTextNode(el);
- }
- };
-
- exports.path = svgPath;
- exports.image = svgImage;
- exports.text = svgText;
-
- /***/ }),
-
- /***/ 1926:
- /***/ (function(module, exports) {
-
- var svgURI = 'http://www.w3.org/2000/svg';
-
- function createElement(name) {
- return document.createElementNS(svgURI, name);
- }
-
- exports.createElement = createElement;
-
- /***/ }),
-
- /***/ 1927:
- /***/ (function(module, exports, __webpack_require__) {
-
- var _core = __webpack_require__(1926);
-
- var createElement = _core.createElement;
-
- var zrUtil = __webpack_require__(864);
-
- var Path = __webpack_require__(1280);
-
- var ZImage = __webpack_require__(1598);
-
- var ZText = __webpack_require__(1517);
-
- var _graphic = __webpack_require__(1925);
-
- var svgPath = _graphic.path;
- var svgImage = _graphic.image;
- var svgText = _graphic.text;
-
- /**
- * @file Manages elements that can be defined in <defs> in SVG,
- * e.g., gradients, clip path, etc.
- * @author Zhang Wenli
- */
- var MARK_UNUSED = '0';
- var MARK_USED = '1';
- /**
- * Manages elements that can be defined in <defs> in SVG,
- * e.g., gradients, clip path, etc.
- *
- * @class
- * @param {number} zrId zrender instance id
- * @param {SVGElement} svgRoot root of SVG document
- * @param {string|string[]} tagNames possible tag names
- * @param {string} markLabel label name to make if the element
- * is used
- */
-
- function Definable(zrId, svgRoot, tagNames, markLabel, domName) {
- this._zrId = zrId;
- this._svgRoot = svgRoot;
- this._tagNames = typeof tagNames === 'string' ? [tagNames] : tagNames;
- this._markLabel = markLabel;
- this._domName = domName || '_dom';
- this.nextId = 0;
- }
-
- Definable.prototype.createElement = createElement;
- /**
- * Get the <defs> tag for svgRoot; optionally creates one if not exists.
- *
- * @param {boolean} isForceCreating if need to create when not exists
- * @return {SVGDefsElement} SVG <defs> element, null if it doesn't
- * exist and isForceCreating is false
- */
-
- Definable.prototype.getDefs = function (isForceCreating) {
- var svgRoot = this._svgRoot;
-
- var defs = this._svgRoot.getElementsByTagName('defs');
-
- if (defs.length === 0) {
- // Not exist
- if (isForceCreating) {
- defs = svgRoot.insertBefore(this.createElement('defs'), // Create new tag
- svgRoot.firstChild // Insert in the front of svg
- );
-
- if (!defs.contains) {
- // IE doesn't support contains method
- defs.contains = function (el) {
- var children = defs.children;
-
- if (!children) {
- return false;
- }
-
- for (var i = children.length - 1; i >= 0; --i) {
- if (children[i] === el) {
- return true;
- }
- }
-
- return false;
- };
- }
-
- return defs;
- } else {
- return null;
- }
- } else {
- return defs[0];
- }
- };
- /**
- * Update DOM element if necessary.
- *
- * @param {Object|string} element style element. e.g., for gradient,
- * it may be '#ccc' or {type: 'linear', ...}
- * @param {Function|undefined} onUpdate update callback
- */
-
-
- Definable.prototype.update = function (element, onUpdate) {
- if (!element) {
- return;
- }
-
- var defs = this.getDefs(false);
-
- if (element[this._domName] && defs.contains(element[this._domName])) {
- // Update DOM
- if (typeof onUpdate === 'function') {
- onUpdate(element);
- }
- } else {
- // No previous dom, create new
- var dom = this.add(element);
-
- if (dom) {
- element[this._domName] = dom;
- }
- }
- };
- /**
- * Add gradient dom to defs
- *
- * @param {SVGElement} dom DOM to be added to <defs>
- */
-
-
- Definable.prototype.addDom = function (dom) {
- var defs = this.getDefs(true);
- defs.appendChild(dom);
- };
- /**
- * Remove DOM of a given element.
- *
- * @param {SVGElement} element element to remove dom
- */
-
-
- Definable.prototype.removeDom = function (element) {
- var defs = this.getDefs(false);
-
- if (defs && element[this._domName]) {
- defs.removeChild(element[this._domName]);
- element[this._domName] = null;
- }
- };
- /**
- * Get DOMs of this element.
- *
- * @return {HTMLDomElement} doms of this defineable elements in <defs>
- */
-
-
- Definable.prototype.getDoms = function () {
- var defs = this.getDefs(false);
-
- if (!defs) {
- // No dom when defs is not defined
- return [];
- }
-
- var doms = [];
- zrUtil.each(this._tagNames, function (tagName) {
- var tags = defs.getElementsByTagName(tagName); // Note that tags is HTMLCollection, which is array-like
- // rather than real array.
- // So `doms.concat(tags)` add tags as one object.
-
- doms = doms.concat([].slice.call(tags));
- });
- return doms;
- };
- /**
- * Mark DOMs to be unused before painting, and clear unused ones at the end
- * of the painting.
- */
-
-
- Definable.prototype.markAllUnused = function () {
- var doms = this.getDoms();
- var that = this;
- zrUtil.each(doms, function (dom) {
- dom[that._markLabel] = MARK_UNUSED;
- });
- };
- /**
- * Mark a single DOM to be used.
- *
- * @param {SVGElement} dom DOM to mark
- */
-
-
- Definable.prototype.markUsed = function (dom) {
- if (dom) {
- dom[this._markLabel] = MARK_USED;
- }
- };
- /**
- * Remove unused DOMs defined in <defs>
- */
-
-
- Definable.prototype.removeUnused = function () {
- var defs = this.getDefs(false);
-
- if (!defs) {
- // Nothing to remove
- return;
- }
-
- var doms = this.getDoms();
- var that = this;
- zrUtil.each(doms, function (dom) {
- if (dom[that._markLabel] !== MARK_USED) {
- // Remove gradient
- defs.removeChild(dom);
- }
- });
- };
- /**
- * Get SVG proxy.
- *
- * @param {Displayable} displayable displayable element
- * @return {Path|Image|Text} svg proxy of given element
- */
-
-
- Definable.prototype.getSvgProxy = function (displayable) {
- if (displayable instanceof Path) {
- return svgPath;
- } else if (displayable instanceof ZImage) {
- return svgImage;
- } else if (displayable instanceof ZText) {
- return svgText;
- } else {
- return svgPath;
- }
- };
- /**
- * Get text SVG element.
- *
- * @param {Displayable} displayable displayable element
- * @return {SVGElement} SVG element of text
- */
-
-
- Definable.prototype.getTextSvgElement = function (displayable) {
- return displayable.__textSvgEl;
- };
- /**
- * Get SVG element.
- *
- * @param {Displayable} displayable displayable element
- * @return {SVGElement} SVG element
- */
-
-
- Definable.prototype.getSvgElement = function (displayable) {
- return displayable.__svgEl;
- };
-
- var _default = Definable;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2258:
- /***/ (function(module, exports) {
-
- /**
- * zrender: 生成唯一id
- *
- * @author errorrik (errorrik@gmail.com)
- */
- var idStart = 0x0907;
-
- function _default() {
- return idStart++;
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2259:
- /***/ (function(module, exports, __webpack_require__) {
-
- var guid = __webpack_require__(2258);
-
- var Eventful = __webpack_require__(1516);
-
- var Transformable = __webpack_require__(1893);
-
- var Animatable = __webpack_require__(2513);
-
- var zrUtil = __webpack_require__(864);
-
- /**
- * @alias module:zrender/Element
- * @constructor
- * @extends {module:zrender/mixin/Animatable}
- * @extends {module:zrender/mixin/Transformable}
- * @extends {module:zrender/mixin/Eventful}
- */
- var Element = function (opts) {
- // jshint ignore:line
- Transformable.call(this, opts);
- Eventful.call(this, opts);
- Animatable.call(this, opts);
- /**
- * 画布元素ID
- * @type {string}
- */
-
- this.id = opts.id || guid();
- };
-
- Element.prototype = {
- /**
- * 元素类型
- * Element type
- * @type {string}
- */
- type: 'element',
-
- /**
- * 元素名字
- * Element name
- * @type {string}
- */
- name: '',
-
- /**
- * ZRender 实例对象,会在 element 添加到 zrender 实例中后自动赋值
- * ZRender instance will be assigned when element is associated with zrender
- * @name module:/zrender/Element#__zr
- * @type {module:zrender/ZRender}
- */
- __zr: null,
-
- /**
- * 图形是否忽略,为true时忽略图形的绘制以及事件触发
- * If ignore drawing and events of the element object
- * @name module:/zrender/Element#ignore
- * @type {boolean}
- * @default false
- */
- ignore: false,
-
- /**
- * 用于裁剪的路径(shape),所有 Group 内的路径在绘制时都会被这个路径裁剪
- * 该路径会继承被裁减对象的变换
- * @type {module:zrender/graphic/Path}
- * @see http://www.w3.org/TR/2dcontext/#clipping-region
- * @readOnly
- */
- clipPath: null,
-
- /**
- * 是否是 Group
- * @type {boolean}
- */
- isGroup: false,
-
- /**
- * Drift element
- * @param {number} dx dx on the global space
- * @param {number} dy dy on the global space
- */
- drift: function (dx, dy) {
- switch (this.draggable) {
- case 'horizontal':
- dy = 0;
- break;
-
- case 'vertical':
- dx = 0;
- break;
- }
-
- var m = this.transform;
-
- if (!m) {
- m = this.transform = [1, 0, 0, 1, 0, 0];
- }
-
- m[4] += dx;
- m[5] += dy;
- this.decomposeTransform();
- this.dirty(false);
- },
-
- /**
- * Hook before update
- */
- beforeUpdate: function () {},
-
- /**
- * Hook after update
- */
- afterUpdate: function () {},
-
- /**
- * Update each frame
- */
- update: function () {
- this.updateTransform();
- },
-
- /**
- * @param {Function} cb
- * @param {} context
- */
- traverse: function (cb, context) {},
-
- /**
- * @protected
- */
- attrKV: function (key, value) {
- if (key === 'position' || key === 'scale' || key === 'origin') {
- // Copy the array
- if (value) {
- var target = this[key];
-
- if (!target) {
- target = this[key] = [];
- }
-
- target[0] = value[0];
- target[1] = value[1];
- }
- } else {
- this[key] = value;
- }
- },
-
- /**
- * Hide the element
- */
- hide: function () {
- this.ignore = true;
- this.__zr && this.__zr.refresh();
- },
-
- /**
- * Show the element
- */
- show: function () {
- this.ignore = false;
- this.__zr && this.__zr.refresh();
- },
-
- /**
- * @param {string|Object} key
- * @param {*} value
- */
- attr: function (key, value) {
- if (typeof key === 'string') {
- this.attrKV(key, value);
- } else if (zrUtil.isObject(key)) {
- for (var name in key) {
- if (key.hasOwnProperty(name)) {
- this.attrKV(name, key[name]);
- }
- }
- }
-
- this.dirty(false);
- return this;
- },
-
- /**
- * @param {module:zrender/graphic/Path} clipPath
- */
- setClipPath: function (clipPath) {
- var zr = this.__zr;
-
- if (zr) {
- clipPath.addSelfToZr(zr);
- } // Remove previous clip path
-
-
- if (this.clipPath && this.clipPath !== clipPath) {
- this.removeClipPath();
- }
-
- this.clipPath = clipPath;
- clipPath.__zr = zr;
- clipPath.__clipTarget = this;
- this.dirty(false);
- },
-
- /**
- */
- removeClipPath: function () {
- var clipPath = this.clipPath;
-
- if (clipPath) {
- if (clipPath.__zr) {
- clipPath.removeSelfFromZr(clipPath.__zr);
- }
-
- clipPath.__zr = null;
- clipPath.__clipTarget = null;
- this.clipPath = null;
- this.dirty(false);
- }
- },
-
- /**
- * Add self from zrender instance.
- * Not recursively because it will be invoked when element added to storage.
- * @param {module:zrender/ZRender} zr
- */
- addSelfToZr: function (zr) {
- this.__zr = zr; // 添加动画
-
- var animators = this.animators;
-
- if (animators) {
- for (var i = 0; i < animators.length; i++) {
- zr.animation.addAnimator(animators[i]);
- }
- }
-
- if (this.clipPath) {
- this.clipPath.addSelfToZr(zr);
- }
- },
-
- /**
- * Remove self from zrender instance.
- * Not recursively because it will be invoked when element added to storage.
- * @param {module:zrender/ZRender} zr
- */
- removeSelfFromZr: function (zr) {
- this.__zr = null; // 移除动画
-
- var animators = this.animators;
-
- if (animators) {
- for (var i = 0; i < animators.length; i++) {
- zr.animation.removeAnimator(animators[i]);
- }
- }
-
- if (this.clipPath) {
- this.clipPath.removeSelfFromZr(zr);
- }
- }
- };
- zrUtil.mixin(Element, Animatable);
- zrUtil.mixin(Element, Transformable);
- zrUtil.mixin(Element, Eventful);
- var _default = Element;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2260:
- /***/ (function(module, exports, __webpack_require__) {
-
- var Clip = __webpack_require__(2514);
-
- var color = __webpack_require__(1438);
-
- var _util = __webpack_require__(864);
-
- var isArrayLike = _util.isArrayLike;
-
- /**
- * @module echarts/animation/Animator
- */
- var arraySlice = Array.prototype.slice;
-
- function defaultGetter(target, key) {
- return target[key];
- }
-
- function defaultSetter(target, key, value) {
- target[key] = value;
- }
- /**
- * @param {number} p0
- * @param {number} p1
- * @param {number} percent
- * @return {number}
- */
-
-
- function interpolateNumber(p0, p1, percent) {
- return (p1 - p0) * percent + p0;
- }
- /**
- * @param {string} p0
- * @param {string} p1
- * @param {number} percent
- * @return {string}
- */
-
-
- function interpolateString(p0, p1, percent) {
- return percent > 0.5 ? p1 : p0;
- }
- /**
- * @param {Array} p0
- * @param {Array} p1
- * @param {number} percent
- * @param {Array} out
- * @param {number} arrDim
- */
-
-
- function interpolateArray(p0, p1, percent, out, arrDim) {
- var len = p0.length;
-
- if (arrDim === 1) {
- for (var i = 0; i < len; i++) {
- out[i] = interpolateNumber(p0[i], p1[i], percent);
- }
- } else {
- var len2 = len && p0[0].length;
-
- for (var i = 0; i < len; i++) {
- for (var j = 0; j < len2; j++) {
- out[i][j] = interpolateNumber(p0[i][j], p1[i][j], percent);
- }
- }
- }
- } // arr0 is source array, arr1 is target array.
- // Do some preprocess to avoid error happened when interpolating from arr0 to arr1
-
-
- function fillArr(arr0, arr1, arrDim) {
- var arr0Len = arr0.length;
- var arr1Len = arr1.length;
-
- if (arr0Len !== arr1Len) {
- // FIXME Not work for TypedArray
- var isPreviousLarger = arr0Len > arr1Len;
-
- if (isPreviousLarger) {
- // Cut the previous
- arr0.length = arr1Len;
- } else {
- // Fill the previous
- for (var i = arr0Len; i < arr1Len; i++) {
- arr0.push(arrDim === 1 ? arr1[i] : arraySlice.call(arr1[i]));
- }
- }
- } // Handling NaN value
-
-
- var len2 = arr0[0] && arr0[0].length;
-
- for (var i = 0; i < arr0.length; i++) {
- if (arrDim === 1) {
- if (isNaN(arr0[i])) {
- arr0[i] = arr1[i];
- }
- } else {
- for (var j = 0; j < len2; j++) {
- if (isNaN(arr0[i][j])) {
- arr0[i][j] = arr1[i][j];
- }
- }
- }
- }
- }
- /**
- * @param {Array} arr0
- * @param {Array} arr1
- * @param {number} arrDim
- * @return {boolean}
- */
-
-
- function isArraySame(arr0, arr1, arrDim) {
- if (arr0 === arr1) {
- return true;
- }
-
- var len = arr0.length;
-
- if (len !== arr1.length) {
- return false;
- }
-
- if (arrDim === 1) {
- for (var i = 0; i < len; i++) {
- if (arr0[i] !== arr1[i]) {
- return false;
- }
- }
- } else {
- var len2 = arr0[0].length;
-
- for (var i = 0; i < len; i++) {
- for (var j = 0; j < len2; j++) {
- if (arr0[i][j] !== arr1[i][j]) {
- return false;
- }
- }
- }
- }
-
- return true;
- }
- /**
- * Catmull Rom interpolate array
- * @param {Array} p0
- * @param {Array} p1
- * @param {Array} p2
- * @param {Array} p3
- * @param {number} t
- * @param {number} t2
- * @param {number} t3
- * @param {Array} out
- * @param {number} arrDim
- */
-
-
- function catmullRomInterpolateArray(p0, p1, p2, p3, t, t2, t3, out, arrDim) {
- var len = p0.length;
-
- if (arrDim === 1) {
- for (var i = 0; i < len; i++) {
- out[i] = catmullRomInterpolate(p0[i], p1[i], p2[i], p3[i], t, t2, t3);
- }
- } else {
- var len2 = p0[0].length;
-
- for (var i = 0; i < len; i++) {
- for (var j = 0; j < len2; j++) {
- out[i][j] = catmullRomInterpolate(p0[i][j], p1[i][j], p2[i][j], p3[i][j], t, t2, t3);
- }
- }
- }
- }
- /**
- * Catmull Rom interpolate number
- * @param {number} p0
- * @param {number} p1
- * @param {number} p2
- * @param {number} p3
- * @param {number} t
- * @param {number} t2
- * @param {number} t3
- * @return {number}
- */
-
-
- function catmullRomInterpolate(p0, p1, p2, p3, t, t2, t3) {
- var v0 = (p2 - p0) * 0.5;
- var v1 = (p3 - p1) * 0.5;
- return (2 * (p1 - p2) + v0 + v1) * t3 + (-3 * (p1 - p2) - 2 * v0 - v1) * t2 + v0 * t + p1;
- }
-
- function cloneValue(value) {
- if (isArrayLike(value)) {
- var len = value.length;
-
- if (isArrayLike(value[0])) {
- var ret = [];
-
- for (var i = 0; i < len; i++) {
- ret.push(arraySlice.call(value[i]));
- }
-
- return ret;
- }
-
- return arraySlice.call(value);
- }
-
- return value;
- }
-
- function rgba2String(rgba) {
- rgba[0] = Math.floor(rgba[0]);
- rgba[1] = Math.floor(rgba[1]);
- rgba[2] = Math.floor(rgba[2]);
- return 'rgba(' + rgba.join(',') + ')';
- }
-
- function getArrayDim(keyframes) {
- var lastValue = keyframes[keyframes.length - 1].value;
- return isArrayLike(lastValue && lastValue[0]) ? 2 : 1;
- }
-
- function createTrackClip(animator, easing, oneTrackDone, keyframes, propName, forceAnimate) {
- var getter = animator._getter;
- var setter = animator._setter;
- var useSpline = easing === 'spline';
- var trackLen = keyframes.length;
-
- if (!trackLen) {
- return;
- } // Guess data type
-
-
- var firstVal = keyframes[0].value;
- var isValueArray = isArrayLike(firstVal);
- var isValueColor = false;
- var isValueString = false; // For vertices morphing
-
- var arrDim = isValueArray ? getArrayDim(keyframes) : 0;
- var trackMaxTime; // Sort keyframe as ascending
-
- keyframes.sort(function (a, b) {
- return a.time - b.time;
- });
- trackMaxTime = keyframes[trackLen - 1].time; // Percents of each keyframe
-
- var kfPercents = []; // Value of each keyframe
-
- var kfValues = [];
- var prevValue = keyframes[0].value;
- var isAllValueEqual = true;
-
- for (var i = 0; i < trackLen; i++) {
- kfPercents.push(keyframes[i].time / trackMaxTime); // Assume value is a color when it is a string
-
- var value = keyframes[i].value; // Check if value is equal, deep check if value is array
-
- if (!(isValueArray && isArraySame(value, prevValue, arrDim) || !isValueArray && value === prevValue)) {
- isAllValueEqual = false;
- }
-
- prevValue = value; // Try converting a string to a color array
-
- if (typeof value === 'string') {
- var colorArray = color.parse(value);
-
- if (colorArray) {
- value = colorArray;
- isValueColor = true;
- } else {
- isValueString = true;
- }
- }
-
- kfValues.push(value);
- }
-
- if (!forceAnimate && isAllValueEqual) {
- return;
- }
-
- var lastValue = kfValues[trackLen - 1]; // Polyfill array and NaN value
-
- for (var i = 0; i < trackLen - 1; i++) {
- if (isValueArray) {
- fillArr(kfValues[i], lastValue, arrDim);
- } else {
- if (isNaN(kfValues[i]) && !isNaN(lastValue) && !isValueString && !isValueColor) {
- kfValues[i] = lastValue;
- }
- }
- }
-
- isValueArray && fillArr(getter(animator._target, propName), lastValue, arrDim); // Cache the key of last frame to speed up when
- // animation playback is sequency
-
- var lastFrame = 0;
- var lastFramePercent = 0;
- var start;
- var w;
- var p0;
- var p1;
- var p2;
- var p3;
-
- if (isValueColor) {
- var rgba = [0, 0, 0, 0];
- }
-
- var onframe = function (target, percent) {
- // Find the range keyframes
- // kf1-----kf2---------current--------kf3
- // find kf2 and kf3 and do interpolation
- var frame; // In the easing function like elasticOut, percent may less than 0
-
- if (percent < 0) {
- frame = 0;
- } else if (percent < lastFramePercent) {
- // Start from next key
- // PENDING start from lastFrame ?
- start = Math.min(lastFrame + 1, trackLen - 1);
-
- for (frame = start; frame >= 0; frame--) {
- if (kfPercents[frame] <= percent) {
- break;
- }
- } // PENDING really need to do this ?
-
-
- frame = Math.min(frame, trackLen - 2);
- } else {
- for (frame = lastFrame; frame < trackLen; frame++) {
- if (kfPercents[frame] > percent) {
- break;
- }
- }
-
- frame = Math.min(frame - 1, trackLen - 2);
- }
-
- lastFrame = frame;
- lastFramePercent = percent;
- var range = kfPercents[frame + 1] - kfPercents[frame];
-
- if (range === 0) {
- return;
- } else {
- w = (percent - kfPercents[frame]) / range;
- }
-
- if (useSpline) {
- p1 = kfValues[frame];
- p0 = kfValues[frame === 0 ? frame : frame - 1];
- p2 = kfValues[frame > trackLen - 2 ? trackLen - 1 : frame + 1];
- p3 = kfValues[frame > trackLen - 3 ? trackLen - 1 : frame + 2];
-
- if (isValueArray) {
- catmullRomInterpolateArray(p0, p1, p2, p3, w, w * w, w * w * w, getter(target, propName), arrDim);
- } else {
- var value;
-
- if (isValueColor) {
- value = catmullRomInterpolateArray(p0, p1, p2, p3, w, w * w, w * w * w, rgba, 1);
- value = rgba2String(rgba);
- } else if (isValueString) {
- // String is step(0.5)
- return interpolateString(p1, p2, w);
- } else {
- value = catmullRomInterpolate(p0, p1, p2, p3, w, w * w, w * w * w);
- }
-
- setter(target, propName, value);
- }
- } else {
- if (isValueArray) {
- interpolateArray(kfValues[frame], kfValues[frame + 1], w, getter(target, propName), arrDim);
- } else {
- var value;
-
- if (isValueColor) {
- interpolateArray(kfValues[frame], kfValues[frame + 1], w, rgba, 1);
- value = rgba2String(rgba);
- } else if (isValueString) {
- // String is step(0.5)
- return interpolateString(kfValues[frame], kfValues[frame + 1], w);
- } else {
- value = interpolateNumber(kfValues[frame], kfValues[frame + 1], w);
- }
-
- setter(target, propName, value);
- }
- }
- };
-
- var clip = new Clip({
- target: animator._target,
- life: trackMaxTime,
- loop: animator._loop,
- delay: animator._delay,
- onframe: onframe,
- ondestroy: oneTrackDone
- });
-
- if (easing && easing !== 'spline') {
- clip.easing = easing;
- }
-
- return clip;
- }
- /**
- * @alias module:zrender/animation/Animator
- * @constructor
- * @param {Object} target
- * @param {boolean} loop
- * @param {Function} getter
- * @param {Function} setter
- */
-
-
- var Animator = function (target, loop, getter, setter) {
- this._tracks = {};
- this._target = target;
- this._loop = loop || false;
- this._getter = getter || defaultGetter;
- this._setter = setter || defaultSetter;
- this._clipCount = 0;
- this._delay = 0;
- this._doneList = [];
- this._onframeList = [];
- this._clipList = [];
- };
-
- Animator.prototype = {
- /**
- * 设置动画关键帧
- * @param {number} time 关键帧时间,单位是ms
- * @param {Object} props 关键帧的属性值,key-value表示
- * @return {module:zrender/animation/Animator}
- */
- when: function (time
- /* ms */
- , props) {
- var tracks = this._tracks;
-
- for (var propName in props) {
- if (!props.hasOwnProperty(propName)) {
- continue;
- }
-
- if (!tracks[propName]) {
- tracks[propName] = []; // Invalid value
-
- var value = this._getter(this._target, propName);
-
- if (value == null) {
- // zrLog('Invalid property ' + propName);
- continue;
- } // If time is 0
- // Then props is given initialize value
- // Else
- // Initialize value from current prop value
-
-
- if (time !== 0) {
- tracks[propName].push({
- time: 0,
- value: cloneValue(value)
- });
- }
- }
-
- tracks[propName].push({
- time: time,
- value: props[propName]
- });
- }
-
- return this;
- },
-
- /**
- * 添加动画每一帧的回调函数
- * @param {Function} callback
- * @return {module:zrender/animation/Animator}
- */
- during: function (callback) {
- this._onframeList.push(callback);
-
- return this;
- },
- pause: function () {
- for (var i = 0; i < this._clipList.length; i++) {
- this._clipList[i].pause();
- }
-
- this._paused = true;
- },
- resume: function () {
- for (var i = 0; i < this._clipList.length; i++) {
- this._clipList[i].resume();
- }
-
- this._paused = false;
- },
- isPaused: function () {
- return !!this._paused;
- },
- _doneCallback: function () {
- // Clear all tracks
- this._tracks = {}; // Clear all clips
-
- this._clipList.length = 0;
- var doneList = this._doneList;
- var len = doneList.length;
-
- for (var i = 0; i < len; i++) {
- doneList[i].call(this);
- }
- },
-
- /**
- * 开始执行动画
- * @param {string|Function} [easing]
- * 动画缓动函数,详见{@link module:zrender/animation/easing}
- * @param {boolean} forceAnimate
- * @return {module:zrender/animation/Animator}
- */
- start: function (easing, forceAnimate) {
- var self = this;
- var clipCount = 0;
-
- var oneTrackDone = function () {
- clipCount--;
-
- if (!clipCount) {
- self._doneCallback();
- }
- };
-
- var lastClip;
-
- for (var propName in this._tracks) {
- if (!this._tracks.hasOwnProperty(propName)) {
- continue;
- }
-
- var clip = createTrackClip(this, easing, oneTrackDone, this._tracks[propName], propName, forceAnimate);
-
- if (clip) {
- this._clipList.push(clip);
-
- clipCount++; // If start after added to animation
-
- if (this.animation) {
- this.animation.addClip(clip);
- }
-
- lastClip = clip;
- }
- } // Add during callback on the last clip
-
-
- if (lastClip) {
- var oldOnFrame = lastClip.onframe;
-
- lastClip.onframe = function (target, percent) {
- oldOnFrame(target, percent);
-
- for (var i = 0; i < self._onframeList.length; i++) {
- self._onframeList[i](target, percent);
- }
- };
- } // This optimization will help the case that in the upper application
- // the view may be refreshed frequently, where animation will be
- // called repeatly but nothing changed.
-
-
- if (!clipCount) {
- this._doneCallback();
- }
-
- return this;
- },
-
- /**
- * 停止动画
- * @param {boolean} forwardToLast If move to last frame before stop
- */
- stop: function (forwardToLast) {
- var clipList = this._clipList;
- var animation = this.animation;
-
- for (var i = 0; i < clipList.length; i++) {
- var clip = clipList[i];
-
- if (forwardToLast) {
- // Move to last frame before stop
- clip.onframe(this._target, 1);
- }
-
- animation && animation.removeClip(clip);
- }
-
- clipList.length = 0;
- },
-
- /**
- * 设置动画延迟开始的时间
- * @param {number} time 单位ms
- * @return {module:zrender/animation/Animator}
- */
- delay: function (time) {
- this._delay = time;
- return this;
- },
-
- /**
- * 添加动画结束的回调
- * @param {Function} cb
- * @return {module:zrender/animation/Animator}
- */
- done: function (cb) {
- if (cb) {
- this._doneList.push(cb);
- }
-
- return this;
- },
-
- /**
- * @return {Array.<module:zrender/animation/Clip>}
- */
- getClips: function () {
- return this._clipList;
- }
- };
- var _default = Animator;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2261:
- /***/ (function(module, exports) {
-
- // Simple LRU cache use doubly linked list
- // @module zrender/core/LRU
-
- /**
- * Simple double linked list. Compared with array, it has O(1) remove operation.
- * @constructor
- */
- var LinkedList = function () {
- /**
- * @type {module:zrender/core/LRU~Entry}
- */
- this.head = null;
- /**
- * @type {module:zrender/core/LRU~Entry}
- */
-
- this.tail = null;
- this._len = 0;
- };
-
- var linkedListProto = LinkedList.prototype;
- /**
- * Insert a new value at the tail
- * @param {} val
- * @return {module:zrender/core/LRU~Entry}
- */
-
- linkedListProto.insert = function (val) {
- var entry = new Entry(val);
- this.insertEntry(entry);
- return entry;
- };
- /**
- * Insert an entry at the tail
- * @param {module:zrender/core/LRU~Entry} entry
- */
-
-
- linkedListProto.insertEntry = function (entry) {
- if (!this.head) {
- this.head = this.tail = entry;
- } else {
- this.tail.next = entry;
- entry.prev = this.tail;
- entry.next = null;
- this.tail = entry;
- }
-
- this._len++;
- };
- /**
- * Remove entry.
- * @param {module:zrender/core/LRU~Entry} entry
- */
-
-
- linkedListProto.remove = function (entry) {
- var prev = entry.prev;
- var next = entry.next;
-
- if (prev) {
- prev.next = next;
- } else {
- // Is head
- this.head = next;
- }
-
- if (next) {
- next.prev = prev;
- } else {
- // Is tail
- this.tail = prev;
- }
-
- entry.next = entry.prev = null;
- this._len--;
- };
- /**
- * @return {number}
- */
-
-
- linkedListProto.len = function () {
- return this._len;
- };
- /**
- * Clear list
- */
-
-
- linkedListProto.clear = function () {
- this.head = this.tail = null;
- this._len = 0;
- };
- /**
- * @constructor
- * @param {} val
- */
-
-
- var Entry = function (val) {
- /**
- * @type {}
- */
- this.value = val;
- /**
- * @type {module:zrender/core/LRU~Entry}
- */
-
- this.next;
- /**
- * @type {module:zrender/core/LRU~Entry}
- */
-
- this.prev;
- };
- /**
- * LRU Cache
- * @constructor
- * @alias module:zrender/core/LRU
- */
-
-
- var LRU = function (maxSize) {
- this._list = new LinkedList();
- this._map = {};
- this._maxSize = maxSize || 10;
- this._lastRemovedEntry = null;
- };
-
- var LRUProto = LRU.prototype;
- /**
- * @param {string} key
- * @param {} value
- * @return {} Removed value
- */
-
- LRUProto.put = function (key, value) {
- var list = this._list;
- var map = this._map;
- var removed = null;
-
- if (map[key] == null) {
- var len = list.len(); // Reuse last removed entry
-
- var entry = this._lastRemovedEntry;
-
- if (len >= this._maxSize && len > 0) {
- // Remove the least recently used
- var leastUsedEntry = list.head;
- list.remove(leastUsedEntry);
- delete map[leastUsedEntry.key];
- removed = leastUsedEntry.value;
- this._lastRemovedEntry = leastUsedEntry;
- }
-
- if (entry) {
- entry.value = value;
- } else {
- entry = new Entry(value);
- }
-
- entry.key = key;
- list.insertEntry(entry);
- map[key] = entry;
- }
-
- return removed;
- };
- /**
- * @param {string} key
- * @return {}
- */
-
-
- LRUProto.get = function (key) {
- var entry = this._map[key];
- var list = this._list;
-
- if (entry != null) {
- // Put the latest used entry in the tail
- if (entry !== list.tail) {
- list.remove(entry);
- list.insertEntry(entry);
- }
-
- return entry.value;
- }
- };
- /**
- * Clear the cache
- */
-
-
- LRUProto.clear = function () {
- this._list.clear();
-
- this._map = {};
- };
-
- var _default = LRU;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2262:
- /***/ (function(module, exports) {
-
- var SHADOW_PROPS = {
- 'shadowBlur': 1,
- 'shadowOffsetX': 1,
- 'shadowOffsetY': 1,
- 'textShadowBlur': 1,
- 'textShadowOffsetX': 1,
- 'textShadowOffsetY': 1,
- 'textBoxShadowBlur': 1,
- 'textBoxShadowOffsetX': 1,
- 'textBoxShadowOffsetY': 1
- };
-
- function _default(ctx, propName, value) {
- if (SHADOW_PROPS.hasOwnProperty(propName)) {
- return value *= ctx.dpr;
- }
-
- return value;
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2263:
- /***/ (function(module, exports) {
-
- var Pattern = function (image, repeat) {
- // Should do nothing more in this constructor. Because gradient can be
- // declard by `color: {image: ...}`, where this constructor will not be called.
- this.image = image;
- this.repeat = repeat; // Can be cloned
-
- this.type = 'pattern';
- };
-
- Pattern.prototype.getCanvasPattern = function (ctx) {
- return ctx.createPattern(this.image, this.repeat || 'repeat');
- };
-
- var _default = Pattern;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2264:
- /***/ (function(module, exports) {
-
- var _default = typeof window !== 'undefined' && (window.requestAnimationFrame && window.requestAnimationFrame.bind(window) || // https://github.com/ecomfe/zrender/issues/189#issuecomment-224919809
- window.msRequestAnimationFrame && window.msRequestAnimationFrame.bind(window) || window.mozRequestAnimationFrame || window.webkitRequestAnimationFrame) || function (func) {
- setTimeout(func, 16);
- };
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2265:
- /***/ (function(module, exports, __webpack_require__) {
-
- var textHelper = __webpack_require__(1783);
-
- var BoundingRect = __webpack_require__(1185);
-
- var _constant = __webpack_require__(1782);
-
- var WILL_BE_RESTORED = _constant.WILL_BE_RESTORED;
-
- /**
- * Mixin for drawing text in a element bounding rect
- * @module zrender/mixin/RectText
- */
- var tmpRect = new BoundingRect();
-
- var RectText = function () {};
-
- RectText.prototype = {
- constructor: RectText,
-
- /**
- * Draw text in a rect with specified position.
- * @param {CanvasRenderingContext2D} ctx
- * @param {Object} rect Displayable rect
- */
- drawRectText: function (ctx, rect) {
- var style = this.style;
- rect = style.textRect || rect; // Optimize, avoid normalize every time.
-
- this.__dirty && textHelper.normalizeTextStyle(style, true);
- var text = style.text; // Convert to string
-
- text != null && (text += '');
-
- if (!textHelper.needDrawText(text, style)) {
- return;
- } // FIXME
- // Do not provide prevEl to `textHelper.renderText` for ctx prop cache,
- // but use `ctx.save()` and `ctx.restore()`. Because the cache for rect
- // text propably break the cache for its host elements.
-
-
- ctx.save(); // Transform rect to view space
-
- var transform = this.transform;
-
- if (!style.transformText) {
- if (transform) {
- tmpRect.copy(rect);
- tmpRect.applyTransform(transform);
- rect = tmpRect;
- }
- } else {
- this.setTransform(ctx);
- } // transformText and textRotation can not be used at the same time.
-
-
- textHelper.renderText(this, ctx, text, style, rect, WILL_BE_RESTORED);
- ctx.restore();
- }
- };
- var _default = RectText;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2266:
- /***/ (function(module, exports) {
-
- /**
- * @param {Object} ctx
- * @param {Object} shape
- * @param {number} shape.x
- * @param {number} shape.y
- * @param {number} shape.width
- * @param {number} shape.height
- * @param {number} shape.r
- */
- function buildPath(ctx, shape) {
- var x = shape.x;
- var y = shape.y;
- var width = shape.width;
- var height = shape.height;
- var r = shape.r;
- var r1;
- var r2;
- var r3;
- var r4; // Convert width and height to positive for better borderRadius
-
- if (width < 0) {
- x = x + width;
- width = -width;
- }
-
- if (height < 0) {
- y = y + height;
- height = -height;
- }
-
- if (typeof r === 'number') {
- r1 = r2 = r3 = r4 = r;
- } else if (r instanceof Array) {
- if (r.length === 1) {
- r1 = r2 = r3 = r4 = r[0];
- } else if (r.length === 2) {
- r1 = r3 = r[0];
- r2 = r4 = r[1];
- } else if (r.length === 3) {
- r1 = r[0];
- r2 = r4 = r[1];
- r3 = r[2];
- } else {
- r1 = r[0];
- r2 = r[1];
- r3 = r[2];
- r4 = r[3];
- }
- } else {
- r1 = r2 = r3 = r4 = 0;
- }
-
- var total;
-
- if (r1 + r2 > width) {
- total = r1 + r2;
- r1 *= width / total;
- r2 *= width / total;
- }
-
- if (r3 + r4 > width) {
- total = r3 + r4;
- r3 *= width / total;
- r4 *= width / total;
- }
-
- if (r2 + r3 > height) {
- total = r2 + r3;
- r2 *= height / total;
- r3 *= height / total;
- }
-
- if (r1 + r4 > height) {
- total = r1 + r4;
- r1 *= height / total;
- r4 *= height / total;
- }
-
- ctx.moveTo(x + r1, y);
- ctx.lineTo(x + width - r2, y);
- r2 !== 0 && ctx.arc(x + width - r2, y + r2, r2, -Math.PI / 2, 0);
- ctx.lineTo(x + width, y + height - r3);
- r3 !== 0 && ctx.arc(x + width - r3, y + height - r3, r3, 0, Math.PI / 2);
- ctx.lineTo(x + r4, y + height);
- r4 !== 0 && ctx.arc(x + r4, y + height - r4, r4, Math.PI / 2, Math.PI);
- ctx.lineTo(x, y + r1);
- r1 !== 0 && ctx.arc(x + r1, y + r1, r1, Math.PI, Math.PI * 1.5);
- }
-
- exports.buildPath = buildPath;
-
- /***/ }),
-
- /***/ 2267:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var _util = __webpack_require__(864);
-
- var each = _util.each;
- var filter = _util.filter;
- var map = _util.map;
- var isArray = _util.isArray;
- var indexOf = _util.indexOf;
- var isObject = _util.isObject;
- var isString = _util.isString;
- var createHashMap = _util.createHashMap;
- var assert = _util.assert;
- var clone = _util.clone;
- var merge = _util.merge;
- var extend = _util.extend;
- var mixin = _util.mixin;
-
- var modelUtil = __webpack_require__(1064);
-
- var Model = __webpack_require__(1317);
-
- var ComponentModel = __webpack_require__(1321);
-
- var globalDefault = __webpack_require__(2537);
-
- var colorPaletteMixin = __webpack_require__(2279);
-
- var _sourceHelper = __webpack_require__(1457);
-
- var resetSourceDefaulter = _sourceHelper.resetSourceDefaulter;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * ECharts global model
- *
- * @module {echarts/model/Global}
- */
-
- /**
- * Caution: If the mechanism should be changed some day, these cases
- * should be considered:
- *
- * (1) In `merge option` mode, if using the same option to call `setOption`
- * many times, the result should be the same (try our best to ensure that).
- * (2) In `merge option` mode, if a component has no id/name specified, it
- * will be merged by index, and the result sequence of the components is
- * consistent to the original sequence.
- * (3) `reset` feature (in toolbox). Find detailed info in comments about
- * `mergeOption` in module:echarts/model/OptionManager.
- */
- var OPTION_INNER_KEY = '\0_ec_inner';
- /**
- * @alias module:echarts/model/Global
- *
- * @param {Object} option
- * @param {module:echarts/model/Model} parentModel
- * @param {Object} theme
- */
-
- var GlobalModel = Model.extend({
- init: function (option, parentModel, theme, optionManager) {
- theme = theme || {};
- this.option = null; // Mark as not initialized.
-
- /**
- * @type {module:echarts/model/Model}
- * @private
- */
-
- this._theme = new Model(theme);
- /**
- * @type {module:echarts/model/OptionManager}
- */
-
- this._optionManager = optionManager;
- },
- setOption: function (option, optionPreprocessorFuncs) {
- assert(!(OPTION_INNER_KEY in option), 'please use chart.getOption()');
-
- this._optionManager.setOption(option, optionPreprocessorFuncs);
-
- this.resetOption(null);
- },
-
- /**
- * @param {string} type null/undefined: reset all.
- * 'recreate': force recreate all.
- * 'timeline': only reset timeline option
- * 'media': only reset media query option
- * @return {boolean} Whether option changed.
- */
- resetOption: function (type) {
- var optionChanged = false;
- var optionManager = this._optionManager;
-
- if (!type || type === 'recreate') {
- var baseOption = optionManager.mountOption(type === 'recreate');
-
- if (!this.option || type === 'recreate') {
- initBase.call(this, baseOption);
- } else {
- this.restoreData();
- this.mergeOption(baseOption);
- }
-
- optionChanged = true;
- }
-
- if (type === 'timeline' || type === 'media') {
- this.restoreData();
- }
-
- if (!type || type === 'recreate' || type === 'timeline') {
- var timelineOption = optionManager.getTimelineOption(this);
- timelineOption && (this.mergeOption(timelineOption), optionChanged = true);
- }
-
- if (!type || type === 'recreate' || type === 'media') {
- var mediaOptions = optionManager.getMediaOption(this, this._api);
-
- if (mediaOptions.length) {
- each(mediaOptions, function (mediaOption) {
- this.mergeOption(mediaOption, optionChanged = true);
- }, this);
- }
- }
-
- return optionChanged;
- },
-
- /**
- * @protected
- */
- mergeOption: function (newOption) {
- var option = this.option;
- var componentsMap = this._componentsMap;
- var newCptTypes = [];
- resetSourceDefaulter(this); // If no component class, merge directly.
- // For example: color, animaiton options, etc.
-
- each(newOption, function (componentOption, mainType) {
- if (componentOption == null) {
- return;
- }
-
- if (!ComponentModel.hasClass(mainType)) {
- // globalSettingTask.dirty();
- option[mainType] = option[mainType] == null ? clone(componentOption) : merge(option[mainType], componentOption, true);
- } else if (mainType) {
- newCptTypes.push(mainType);
- }
- });
- ComponentModel.topologicalTravel(newCptTypes, ComponentModel.getAllClassMainTypes(), visitComponent, this);
-
- function visitComponent(mainType, dependencies) {
- var newCptOptionList = modelUtil.normalizeToArray(newOption[mainType]);
- var mapResult = modelUtil.mappingToExists(componentsMap.get(mainType), newCptOptionList);
- modelUtil.makeIdAndName(mapResult); // Set mainType and complete subType.
-
- each(mapResult, function (item, index) {
- var opt = item.option;
-
- if (isObject(opt)) {
- item.keyInfo.mainType = mainType;
- item.keyInfo.subType = determineSubType(mainType, opt, item.exist);
- }
- });
- var dependentModels = getComponentsByTypes(componentsMap, dependencies);
- option[mainType] = [];
- componentsMap.set(mainType, []);
- each(mapResult, function (resultItem, index) {
- var componentModel = resultItem.exist;
- var newCptOption = resultItem.option;
- assert(isObject(newCptOption) || componentModel, 'Empty component definition'); // Consider where is no new option and should be merged using {},
- // see removeEdgeAndAdd in topologicalTravel and
- // ComponentModel.getAllClassMainTypes.
-
- if (!newCptOption) {
- componentModel.mergeOption({}, this);
- componentModel.optionUpdated({}, false);
- } else {
- var ComponentModelClass = ComponentModel.getClass(mainType, resultItem.keyInfo.subType, true);
-
- if (componentModel && componentModel.constructor === ComponentModelClass) {
- componentModel.name = resultItem.keyInfo.name; // componentModel.settingTask && componentModel.settingTask.dirty();
-
- componentModel.mergeOption(newCptOption, this);
- componentModel.optionUpdated(newCptOption, false);
- } else {
- // PENDING Global as parent ?
- var extraOpt = extend({
- dependentModels: dependentModels,
- componentIndex: index
- }, resultItem.keyInfo);
- componentModel = new ComponentModelClass(newCptOption, this, this, extraOpt);
- extend(componentModel, extraOpt);
- componentModel.init(newCptOption, this, this, extraOpt); // Call optionUpdated after init.
- // newCptOption has been used as componentModel.option
- // and may be merged with theme and default, so pass null
- // to avoid confusion.
-
- componentModel.optionUpdated(null, true);
- }
- }
-
- componentsMap.get(mainType)[index] = componentModel;
- option[mainType][index] = componentModel.option;
- }, this); // Backup series for filtering.
-
- if (mainType === 'series') {
- createSeriesIndices(this, componentsMap.get('series'));
- }
- }
-
- this._seriesIndicesMap = createHashMap(this._seriesIndices = this._seriesIndices || []);
- },
-
- /**
- * Get option for output (cloned option and inner info removed)
- * @public
- * @return {Object}
- */
- getOption: function () {
- var option = clone(this.option);
- each(option, function (opts, mainType) {
- if (ComponentModel.hasClass(mainType)) {
- var opts = modelUtil.normalizeToArray(opts);
-
- for (var i = opts.length - 1; i >= 0; i--) {
- // Remove options with inner id.
- if (modelUtil.isIdInner(opts[i])) {
- opts.splice(i, 1);
- }
- }
-
- option[mainType] = opts;
- }
- });
- delete option[OPTION_INNER_KEY];
- return option;
- },
-
- /**
- * @return {module:echarts/model/Model}
- */
- getTheme: function () {
- return this._theme;
- },
-
- /**
- * @param {string} mainType
- * @param {number} [idx=0]
- * @return {module:echarts/model/Component}
- */
- getComponent: function (mainType, idx) {
- var list = this._componentsMap.get(mainType);
-
- if (list) {
- return list[idx || 0];
- }
- },
-
- /**
- * If none of index and id and name used, return all components with mainType.
- * @param {Object} condition
- * @param {string} condition.mainType
- * @param {string} [condition.subType] If ignore, only query by mainType
- * @param {number|Array.<number>} [condition.index] Either input index or id or name.
- * @param {string|Array.<string>} [condition.id] Either input index or id or name.
- * @param {string|Array.<string>} [condition.name] Either input index or id or name.
- * @return {Array.<module:echarts/model/Component>}
- */
- queryComponents: function (condition) {
- var mainType = condition.mainType;
-
- if (!mainType) {
- return [];
- }
-
- var index = condition.index;
- var id = condition.id;
- var name = condition.name;
-
- var cpts = this._componentsMap.get(mainType);
-
- if (!cpts || !cpts.length) {
- return [];
- }
-
- var result;
-
- if (index != null) {
- if (!isArray(index)) {
- index = [index];
- }
-
- result = filter(map(index, function (idx) {
- return cpts[idx];
- }), function (val) {
- return !!val;
- });
- } else if (id != null) {
- var isIdArray = isArray(id);
- result = filter(cpts, function (cpt) {
- return isIdArray && indexOf(id, cpt.id) >= 0 || !isIdArray && cpt.id === id;
- });
- } else if (name != null) {
- var isNameArray = isArray(name);
- result = filter(cpts, function (cpt) {
- return isNameArray && indexOf(name, cpt.name) >= 0 || !isNameArray && cpt.name === name;
- });
- } else {
- // Return all components with mainType
- result = cpts.slice();
- }
-
- return filterBySubType(result, condition);
- },
-
- /**
- * The interface is different from queryComponents,
- * which is convenient for inner usage.
- *
- * @usage
- * var result = findComponents(
- * {mainType: 'dataZoom', query: {dataZoomId: 'abc'}}
- * );
- * var result = findComponents(
- * {mainType: 'series', subType: 'pie', query: {seriesName: 'uio'}}
- * );
- * var result = findComponents(
- * {mainType: 'series',
- * filter: function (model, index) {...}}
- * );
- * // result like [component0, componnet1, ...]
- *
- * @param {Object} condition
- * @param {string} condition.mainType Mandatory.
- * @param {string} [condition.subType] Optional.
- * @param {Object} [condition.query] like {xxxIndex, xxxId, xxxName},
- * where xxx is mainType.
- * If query attribute is null/undefined or has no index/id/name,
- * do not filtering by query conditions, which is convenient for
- * no-payload situations or when target of action is global.
- * @param {Function} [condition.filter] parameter: component, return boolean.
- * @return {Array.<module:echarts/model/Component>}
- */
- findComponents: function (condition) {
- var query = condition.query;
- var mainType = condition.mainType;
- var queryCond = getQueryCond(query);
- var result = queryCond ? this.queryComponents(queryCond) : this._componentsMap.get(mainType);
- return doFilter(filterBySubType(result, condition));
-
- function getQueryCond(q) {
- var indexAttr = mainType + 'Index';
- var idAttr = mainType + 'Id';
- var nameAttr = mainType + 'Name';
- return q && (q[indexAttr] != null || q[idAttr] != null || q[nameAttr] != null) ? {
- mainType: mainType,
- // subType will be filtered finally.
- index: q[indexAttr],
- id: q[idAttr],
- name: q[nameAttr]
- } : null;
- }
-
- function doFilter(res) {
- return condition.filter ? filter(res, condition.filter) : res;
- }
- },
-
- /**
- * @usage
- * eachComponent('legend', function (legendModel, index) {
- * ...
- * });
- * eachComponent(function (componentType, model, index) {
- * // componentType does not include subType
- * // (componentType is 'xxx' but not 'xxx.aa')
- * });
- * eachComponent(
- * {mainType: 'dataZoom', query: {dataZoomId: 'abc'}},
- * function (model, index) {...}
- * );
- * eachComponent(
- * {mainType: 'series', subType: 'pie', query: {seriesName: 'uio'}},
- * function (model, index) {...}
- * );
- *
- * @param {string|Object=} mainType When mainType is object, the definition
- * is the same as the method 'findComponents'.
- * @param {Function} cb
- * @param {*} context
- */
- eachComponent: function (mainType, cb, context) {
- var componentsMap = this._componentsMap;
-
- if (typeof mainType === 'function') {
- context = cb;
- cb = mainType;
- componentsMap.each(function (components, componentType) {
- each(components, function (component, index) {
- cb.call(context, componentType, component, index);
- });
- });
- } else if (isString(mainType)) {
- each(componentsMap.get(mainType), cb, context);
- } else if (isObject(mainType)) {
- var queryResult = this.findComponents(mainType);
- each(queryResult, cb, context);
- }
- },
-
- /**
- * @param {string} name
- * @return {Array.<module:echarts/model/Series>}
- */
- getSeriesByName: function (name) {
- var series = this._componentsMap.get('series');
-
- return filter(series, function (oneSeries) {
- return oneSeries.name === name;
- });
- },
-
- /**
- * @param {number} seriesIndex
- * @return {module:echarts/model/Series}
- */
- getSeriesByIndex: function (seriesIndex) {
- return this._componentsMap.get('series')[seriesIndex];
- },
-
- /**
- * Get series list before filtered by type.
- * FIXME: rename to getRawSeriesByType?
- *
- * @param {string} subType
- * @return {Array.<module:echarts/model/Series>}
- */
- getSeriesByType: function (subType) {
- var series = this._componentsMap.get('series');
-
- return filter(series, function (oneSeries) {
- return oneSeries.subType === subType;
- });
- },
-
- /**
- * @return {Array.<module:echarts/model/Series>}
- */
- getSeries: function () {
- return this._componentsMap.get('series').slice();
- },
-
- /**
- * @return {number}
- */
- getSeriesCount: function () {
- return this._componentsMap.get('series').length;
- },
-
- /**
- * After filtering, series may be different
- * frome raw series.
- *
- * @param {Function} cb
- * @param {*} context
- */
- eachSeries: function (cb, context) {
- assertSeriesInitialized(this);
- each(this._seriesIndices, function (rawSeriesIndex) {
- var series = this._componentsMap.get('series')[rawSeriesIndex];
-
- cb.call(context, series, rawSeriesIndex);
- }, this);
- },
-
- /**
- * Iterate raw series before filtered.
- *
- * @param {Function} cb
- * @param {*} context
- */
- eachRawSeries: function (cb, context) {
- each(this._componentsMap.get('series'), cb, context);
- },
-
- /**
- * After filtering, series may be different.
- * frome raw series.
- *
- * @param {string} subType.
- * @param {Function} cb
- * @param {*} context
- */
- eachSeriesByType: function (subType, cb, context) {
- assertSeriesInitialized(this);
- each(this._seriesIndices, function (rawSeriesIndex) {
- var series = this._componentsMap.get('series')[rawSeriesIndex];
-
- if (series.subType === subType) {
- cb.call(context, series, rawSeriesIndex);
- }
- }, this);
- },
-
- /**
- * Iterate raw series before filtered of given type.
- *
- * @parma {string} subType
- * @param {Function} cb
- * @param {*} context
- */
- eachRawSeriesByType: function (subType, cb, context) {
- return each(this.getSeriesByType(subType), cb, context);
- },
-
- /**
- * @param {module:echarts/model/Series} seriesModel
- */
- isSeriesFiltered: function (seriesModel) {
- assertSeriesInitialized(this);
- return this._seriesIndicesMap.get(seriesModel.componentIndex) == null;
- },
-
- /**
- * @return {Array.<number>}
- */
- getCurrentSeriesIndices: function () {
- return (this._seriesIndices || []).slice();
- },
-
- /**
- * @param {Function} cb
- * @param {*} context
- */
- filterSeries: function (cb, context) {
- assertSeriesInitialized(this);
- var filteredSeries = filter(this._componentsMap.get('series'), cb, context);
- createSeriesIndices(this, filteredSeries);
- },
- restoreData: function (payload) {
- var componentsMap = this._componentsMap;
- createSeriesIndices(this, componentsMap.get('series'));
- var componentTypes = [];
- componentsMap.each(function (components, componentType) {
- componentTypes.push(componentType);
- });
- ComponentModel.topologicalTravel(componentTypes, ComponentModel.getAllClassMainTypes(), function (componentType, dependencies) {
- each(componentsMap.get(componentType), function (component) {
- (componentType !== 'series' || !isNotTargetSeries(component, payload)) && component.restoreData();
- });
- });
- }
- });
-
- function isNotTargetSeries(seriesModel, payload) {
- if (payload) {
- var index = payload.seiresIndex;
- var id = payload.seriesId;
- var name = payload.seriesName;
- return index != null && seriesModel.componentIndex !== index || id != null && seriesModel.id !== id || name != null && seriesModel.name !== name;
- }
- }
- /**
- * @inner
- */
-
-
- function mergeTheme(option, theme) {
- // PENDING
- // NOT use `colorLayer` in theme if option has `color`
- var notMergeColorLayer = option.color && !option.colorLayer;
- each(theme, function (themeItem, name) {
- if (name === 'colorLayer' && notMergeColorLayer) {
- return;
- } // 如果有 component model 则把具体的 merge 逻辑交给该 model 处理
-
-
- if (!ComponentModel.hasClass(name)) {
- if (typeof themeItem === 'object') {
- option[name] = !option[name] ? clone(themeItem) : merge(option[name], themeItem, false);
- } else {
- if (option[name] == null) {
- option[name] = themeItem;
- }
- }
- }
- });
- }
-
- function initBase(baseOption) {
- baseOption = baseOption; // Using OPTION_INNER_KEY to mark that this option can not be used outside,
- // i.e. `chart.setOption(chart.getModel().option);` is forbiden.
-
- this.option = {};
- this.option[OPTION_INNER_KEY] = 1;
- /**
- * Init with series: [], in case of calling findSeries method
- * before series initialized.
- * @type {Object.<string, Array.<module:echarts/model/Model>>}
- * @private
- */
-
- this._componentsMap = createHashMap({
- series: []
- });
- /**
- * Mapping between filtered series list and raw series list.
- * key: filtered series indices, value: raw series indices.
- * @type {Array.<nubmer>}
- * @private
- */
-
- this._seriesIndices;
- this._seriesIndicesMap;
- mergeTheme(baseOption, this._theme.option); // TODO Needs clone when merging to the unexisted property
-
- merge(baseOption, globalDefault, false);
- this.mergeOption(baseOption);
- }
- /**
- * @inner
- * @param {Array.<string>|string} types model types
- * @return {Object} key: {string} type, value: {Array.<Object>} models
- */
-
-
- function getComponentsByTypes(componentsMap, types) {
- if (!isArray(types)) {
- types = types ? [types] : [];
- }
-
- var ret = {};
- each(types, function (type) {
- ret[type] = (componentsMap.get(type) || []).slice();
- });
- return ret;
- }
- /**
- * @inner
- */
-
-
- function determineSubType(mainType, newCptOption, existComponent) {
- var subType = newCptOption.type ? newCptOption.type : existComponent ? existComponent.subType // Use determineSubType only when there is no existComponent.
- : ComponentModel.determineSubType(mainType, newCptOption); // tooltip, markline, markpoint may always has no subType
-
- return subType;
- }
- /**
- * @inner
- */
-
-
- function createSeriesIndices(ecModel, seriesModels) {
- ecModel._seriesIndicesMap = createHashMap(ecModel._seriesIndices = map(seriesModels, function (series) {
- return series.componentIndex;
- }) || []);
- }
- /**
- * @inner
- */
-
-
- function filterBySubType(components, condition) {
- // Using hasOwnProperty for restrict. Consider
- // subType is undefined in user payload.
- return condition.hasOwnProperty('subType') ? filter(components, function (cpt) {
- return cpt.subType === condition.subType;
- }) : components;
- }
- /**
- * @inner
- */
-
-
- function assertSeriesInitialized(ecModel) {}
-
- mixin(GlobalModel, colorPaletteMixin);
- var _default = GlobalModel;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2268:
- /***/ (function(module, exports, __webpack_require__) {
-
- var Path = __webpack_require__(1280);
-
- var PathProxy = __webpack_require__(1600);
-
- var transformPath = __webpack_require__(2526);
-
- // command chars
- // var cc = [
- // 'm', 'M', 'l', 'L', 'v', 'V', 'h', 'H', 'z', 'Z',
- // 'c', 'C', 'q', 'Q', 't', 'T', 's', 'S', 'a', 'A'
- // ];
- var mathSqrt = Math.sqrt;
- var mathSin = Math.sin;
- var mathCos = Math.cos;
- var PI = Math.PI;
-
- var vMag = function (v) {
- return Math.sqrt(v[0] * v[0] + v[1] * v[1]);
- };
-
- var vRatio = function (u, v) {
- return (u[0] * v[0] + u[1] * v[1]) / (vMag(u) * vMag(v));
- };
-
- var vAngle = function (u, v) {
- return (u[0] * v[1] < u[1] * v[0] ? -1 : 1) * Math.acos(vRatio(u, v));
- };
-
- function processArc(x1, y1, x2, y2, fa, fs, rx, ry, psiDeg, cmd, path) {
- var psi = psiDeg * (PI / 180.0);
- var xp = mathCos(psi) * (x1 - x2) / 2.0 + mathSin(psi) * (y1 - y2) / 2.0;
- var yp = -1 * mathSin(psi) * (x1 - x2) / 2.0 + mathCos(psi) * (y1 - y2) / 2.0;
- var lambda = xp * xp / (rx * rx) + yp * yp / (ry * ry);
-
- if (lambda > 1) {
- rx *= mathSqrt(lambda);
- ry *= mathSqrt(lambda);
- }
-
- var f = (fa === fs ? -1 : 1) * mathSqrt((rx * rx * (ry * ry) - rx * rx * (yp * yp) - ry * ry * (xp * xp)) / (rx * rx * (yp * yp) + ry * ry * (xp * xp))) || 0;
- var cxp = f * rx * yp / ry;
- var cyp = f * -ry * xp / rx;
- var cx = (x1 + x2) / 2.0 + mathCos(psi) * cxp - mathSin(psi) * cyp;
- var cy = (y1 + y2) / 2.0 + mathSin(psi) * cxp + mathCos(psi) * cyp;
- var theta = vAngle([1, 0], [(xp - cxp) / rx, (yp - cyp) / ry]);
- var u = [(xp - cxp) / rx, (yp - cyp) / ry];
- var v = [(-1 * xp - cxp) / rx, (-1 * yp - cyp) / ry];
- var dTheta = vAngle(u, v);
-
- if (vRatio(u, v) <= -1) {
- dTheta = PI;
- }
-
- if (vRatio(u, v) >= 1) {
- dTheta = 0;
- }
-
- if (fs === 0 && dTheta > 0) {
- dTheta = dTheta - 2 * PI;
- }
-
- if (fs === 1 && dTheta < 0) {
- dTheta = dTheta + 2 * PI;
- }
-
- path.addData(cmd, cx, cy, rx, ry, theta, dTheta, psi, fs);
- }
-
- var commandReg = /([mlvhzcqtsa])([^mlvhzcqtsa]*)/ig; // Consider case:
- // (1) delimiter can be comma or space, where continuous commas
- // or spaces should be seen as one comma.
- // (2) value can be like:
- // '2e-4', 'l.5.9' (ignore 0), 'M-10-10', 'l-2.43e-1,34.9983',
- // 'l-.5E1,54', '121-23-44-11' (no delimiter)
-
- var numberReg = /-?([0-9]*\.)?[0-9]+([eE]-?[0-9]+)?/g; // var valueSplitReg = /[\s,]+/;
-
- function createPathProxyFromString(data) {
- if (!data) {
- return new PathProxy();
- } // var data = data.replace(/-/g, ' -')
- // .replace(/ /g, ' ')
- // .replace(/ /g, ',')
- // .replace(/,,/g, ',');
- // var n;
- // create pipes so that we can split the data
- // for (n = 0; n < cc.length; n++) {
- // cs = cs.replace(new RegExp(cc[n], 'g'), '|' + cc[n]);
- // }
- // data = data.replace(/-/g, ',-');
- // create array
- // var arr = cs.split('|');
- // init context point
-
-
- var cpx = 0;
- var cpy = 0;
- var subpathX = cpx;
- var subpathY = cpy;
- var prevCmd;
- var path = new PathProxy();
- var CMD = PathProxy.CMD; // commandReg.lastIndex = 0;
- // var cmdResult;
- // while ((cmdResult = commandReg.exec(data)) != null) {
- // var cmdStr = cmdResult[1];
- // var cmdContent = cmdResult[2];
-
- var cmdList = data.match(commandReg);
-
- for (var l = 0; l < cmdList.length; l++) {
- var cmdText = cmdList[l];
- var cmdStr = cmdText.charAt(0);
- var cmd; // String#split is faster a little bit than String#replace or RegExp#exec.
- // var p = cmdContent.split(valueSplitReg);
- // var pLen = 0;
- // for (var i = 0; i < p.length; i++) {
- // // '' and other invalid str => NaN
- // var val = parseFloat(p[i]);
- // !isNaN(val) && (p[pLen++] = val);
- // }
-
- var p = cmdText.match(numberReg) || [];
- var pLen = p.length;
-
- for (var i = 0; i < pLen; i++) {
- p[i] = parseFloat(p[i]);
- }
-
- var off = 0;
-
- while (off < pLen) {
- var ctlPtx;
- var ctlPty;
- var rx;
- var ry;
- var psi;
- var fa;
- var fs;
- var x1 = cpx;
- var y1 = cpy; // convert l, H, h, V, and v to L
-
- switch (cmdStr) {
- case 'l':
- cpx += p[off++];
- cpy += p[off++];
- cmd = CMD.L;
- path.addData(cmd, cpx, cpy);
- break;
-
- case 'L':
- cpx = p[off++];
- cpy = p[off++];
- cmd = CMD.L;
- path.addData(cmd, cpx, cpy);
- break;
-
- case 'm':
- cpx += p[off++];
- cpy += p[off++];
- cmd = CMD.M;
- path.addData(cmd, cpx, cpy);
- subpathX = cpx;
- subpathY = cpy;
- cmdStr = 'l';
- break;
-
- case 'M':
- cpx = p[off++];
- cpy = p[off++];
- cmd = CMD.M;
- path.addData(cmd, cpx, cpy);
- subpathX = cpx;
- subpathY = cpy;
- cmdStr = 'L';
- break;
-
- case 'h':
- cpx += p[off++];
- cmd = CMD.L;
- path.addData(cmd, cpx, cpy);
- break;
-
- case 'H':
- cpx = p[off++];
- cmd = CMD.L;
- path.addData(cmd, cpx, cpy);
- break;
-
- case 'v':
- cpy += p[off++];
- cmd = CMD.L;
- path.addData(cmd, cpx, cpy);
- break;
-
- case 'V':
- cpy = p[off++];
- cmd = CMD.L;
- path.addData(cmd, cpx, cpy);
- break;
-
- case 'C':
- cmd = CMD.C;
- path.addData(cmd, p[off++], p[off++], p[off++], p[off++], p[off++], p[off++]);
- cpx = p[off - 2];
- cpy = p[off - 1];
- break;
-
- case 'c':
- cmd = CMD.C;
- path.addData(cmd, p[off++] + cpx, p[off++] + cpy, p[off++] + cpx, p[off++] + cpy, p[off++] + cpx, p[off++] + cpy);
- cpx += p[off - 2];
- cpy += p[off - 1];
- break;
-
- case 'S':
- ctlPtx = cpx;
- ctlPty = cpy;
- var len = path.len();
- var pathData = path.data;
-
- if (prevCmd === CMD.C) {
- ctlPtx += cpx - pathData[len - 4];
- ctlPty += cpy - pathData[len - 3];
- }
-
- cmd = CMD.C;
- x1 = p[off++];
- y1 = p[off++];
- cpx = p[off++];
- cpy = p[off++];
- path.addData(cmd, ctlPtx, ctlPty, x1, y1, cpx, cpy);
- break;
-
- case 's':
- ctlPtx = cpx;
- ctlPty = cpy;
- var len = path.len();
- var pathData = path.data;
-
- if (prevCmd === CMD.C) {
- ctlPtx += cpx - pathData[len - 4];
- ctlPty += cpy - pathData[len - 3];
- }
-
- cmd = CMD.C;
- x1 = cpx + p[off++];
- y1 = cpy + p[off++];
- cpx += p[off++];
- cpy += p[off++];
- path.addData(cmd, ctlPtx, ctlPty, x1, y1, cpx, cpy);
- break;
-
- case 'Q':
- x1 = p[off++];
- y1 = p[off++];
- cpx = p[off++];
- cpy = p[off++];
- cmd = CMD.Q;
- path.addData(cmd, x1, y1, cpx, cpy);
- break;
-
- case 'q':
- x1 = p[off++] + cpx;
- y1 = p[off++] + cpy;
- cpx += p[off++];
- cpy += p[off++];
- cmd = CMD.Q;
- path.addData(cmd, x1, y1, cpx, cpy);
- break;
-
- case 'T':
- ctlPtx = cpx;
- ctlPty = cpy;
- var len = path.len();
- var pathData = path.data;
-
- if (prevCmd === CMD.Q) {
- ctlPtx += cpx - pathData[len - 4];
- ctlPty += cpy - pathData[len - 3];
- }
-
- cpx = p[off++];
- cpy = p[off++];
- cmd = CMD.Q;
- path.addData(cmd, ctlPtx, ctlPty, cpx, cpy);
- break;
-
- case 't':
- ctlPtx = cpx;
- ctlPty = cpy;
- var len = path.len();
- var pathData = path.data;
-
- if (prevCmd === CMD.Q) {
- ctlPtx += cpx - pathData[len - 4];
- ctlPty += cpy - pathData[len - 3];
- }
-
- cpx += p[off++];
- cpy += p[off++];
- cmd = CMD.Q;
- path.addData(cmd, ctlPtx, ctlPty, cpx, cpy);
- break;
-
- case 'A':
- rx = p[off++];
- ry = p[off++];
- psi = p[off++];
- fa = p[off++];
- fs = p[off++];
- x1 = cpx, y1 = cpy;
- cpx = p[off++];
- cpy = p[off++];
- cmd = CMD.A;
- processArc(x1, y1, cpx, cpy, fa, fs, rx, ry, psi, cmd, path);
- break;
-
- case 'a':
- rx = p[off++];
- ry = p[off++];
- psi = p[off++];
- fa = p[off++];
- fs = p[off++];
- x1 = cpx, y1 = cpy;
- cpx += p[off++];
- cpy += p[off++];
- cmd = CMD.A;
- processArc(x1, y1, cpx, cpy, fa, fs, rx, ry, psi, cmd, path);
- break;
- }
- }
-
- if (cmdStr === 'z' || cmdStr === 'Z') {
- cmd = CMD.Z;
- path.addData(cmd); // z may be in the middle of the path.
-
- cpx = subpathX;
- cpy = subpathY;
- }
-
- prevCmd = cmd;
- }
-
- path.toStatic();
- return path;
- } // TODO Optimize double memory cost problem
-
-
- function createPathOptions(str, opts) {
- var pathProxy = createPathProxyFromString(str);
- opts = opts || {};
-
- opts.buildPath = function (path) {
- if (path.setData) {
- path.setData(pathProxy.data); // Svg and vml renderer don't have context
-
- var ctx = path.getContext();
-
- if (ctx) {
- path.rebuildPath(ctx);
- }
- } else {
- var ctx = path;
- pathProxy.rebuildPath(ctx);
- }
- };
-
- opts.applyTransform = function (m) {
- transformPath(pathProxy, m);
- this.dirty(true);
- };
-
- return opts;
- }
- /**
- * Create a Path object from path string data
- * http://www.w3.org/TR/SVG/paths.html#PathData
- * @param {Object} opts Other options
- */
-
-
- function createFromString(str, opts) {
- return new Path(createPathOptions(str, opts));
- }
- /**
- * Create a Path class from path string data
- * @param {string} str
- * @param {Object} opts Other options
- */
-
-
- function extendFromString(str, opts) {
- return Path.extend(createPathOptions(str, opts));
- }
- /**
- * Merge multiple paths
- */
- // TODO Apply transform
- // TODO stroke dash
- // TODO Optimize double memory cost problem
-
-
- function mergePath(pathEls, opts) {
- var pathList = [];
- var len = pathEls.length;
-
- for (var i = 0; i < len; i++) {
- var pathEl = pathEls[i];
-
- if (!pathEl.path) {
- pathEl.createPathProxy();
- }
-
- if (pathEl.__dirtyPath) {
- pathEl.buildPath(pathEl.path, pathEl.shape, true);
- }
-
- pathList.push(pathEl.path);
- }
-
- var pathBundle = new Path(opts); // Need path proxy.
-
- pathBundle.createPathProxy();
-
- pathBundle.buildPath = function (path) {
- path.appendPath(pathList); // Svg and vml renderer don't have context
-
- var ctx = path.getContext();
-
- if (ctx) {
- path.rebuildPath(ctx);
- }
- };
-
- return pathBundle;
- }
-
- exports.createFromString = createFromString;
- exports.extendFromString = extendFromString;
- exports.mergePath = mergePath;
-
- /***/ }),
-
- /***/ 2269:
- /***/ (function(module, exports) {
-
- /**
- * 线段包含判断
- * @param {number} x0
- * @param {number} y0
- * @param {number} x1
- * @param {number} y1
- * @param {number} lineWidth
- * @param {number} x
- * @param {number} y
- * @return {boolean}
- */
- function containStroke(x0, y0, x1, y1, lineWidth, x, y) {
- if (lineWidth === 0) {
- return false;
- }
-
- var _l = lineWidth;
- var _a = 0;
- var _b = x0; // Quick reject
-
- if (y > y0 + _l && y > y1 + _l || y < y0 - _l && y < y1 - _l || x > x0 + _l && x > x1 + _l || x < x0 - _l && x < x1 - _l) {
- return false;
- }
-
- if (x0 !== x1) {
- _a = (y0 - y1) / (x0 - x1);
- _b = (x0 * y1 - x1 * y0) / (x0 - x1);
- } else {
- return Math.abs(x - x0) <= _l / 2;
- }
-
- var tmp = _a * x - y + _b;
-
- var _s = tmp * tmp / (_a * _a + 1);
-
- return _s <= _l / 2 * _l / 2;
- }
-
- exports.containStroke = containStroke;
-
- /***/ }),
-
- /***/ 2270:
- /***/ (function(module, exports, __webpack_require__) {
-
- var _curve = __webpack_require__(1481);
-
- var quadraticProjectPoint = _curve.quadraticProjectPoint;
-
- /**
- * 二次贝塞尔曲线描边包含判断
- * @param {number} x0
- * @param {number} y0
- * @param {number} x1
- * @param {number} y1
- * @param {number} x2
- * @param {number} y2
- * @param {number} lineWidth
- * @param {number} x
- * @param {number} y
- * @return {boolean}
- */
- function containStroke(x0, y0, x1, y1, x2, y2, lineWidth, x, y) {
- if (lineWidth === 0) {
- return false;
- }
-
- var _l = lineWidth; // Quick reject
-
- if (y > y0 + _l && y > y1 + _l && y > y2 + _l || y < y0 - _l && y < y1 - _l && y < y2 - _l || x > x0 + _l && x > x1 + _l && x > x2 + _l || x < x0 - _l && x < x1 - _l && x < x2 - _l) {
- return false;
- }
-
- var d = quadraticProjectPoint(x0, y0, x1, y1, x2, y2, x, y, null);
- return d <= _l / 2;
- }
-
- exports.containStroke = containStroke;
-
- /***/ }),
-
- /***/ 2271:
- /***/ (function(module, exports) {
-
- var PI2 = Math.PI * 2;
-
- function normalizeRadian(angle) {
- angle %= PI2;
-
- if (angle < 0) {
- angle += PI2;
- }
-
- return angle;
- }
-
- exports.normalizeRadian = normalizeRadian;
-
- /***/ }),
-
- /***/ 2272:
- /***/ (function(module, exports) {
-
- function windingLine(x0, y0, x1, y1, x, y) {
- if (y > y0 && y > y1 || y < y0 && y < y1) {
- return 0;
- } // Ignore horizontal line
-
-
- if (y1 === y0) {
- return 0;
- }
-
- var dir = y1 < y0 ? 1 : -1;
- var t = (y - y0) / (y1 - y0); // Avoid winding error when intersection point is the connect point of two line of polygon
-
- if (t === 1 || t === 0) {
- dir = y1 < y0 ? 0.5 : -0.5;
- }
-
- var x_ = t * (x1 - x0) + x0; // If (x, y) on the line, considered as "contain".
-
- return x_ === x ? Infinity : x_ > x ? dir : 0;
- }
-
- module.exports = windingLine;
-
- /***/ }),
-
- /***/ 2273:
- /***/ (function(module, exports, __webpack_require__) {
-
- var Path = __webpack_require__(1280);
-
- /**
- * 圆形
- * @module zrender/shape/Circle
- */
- var _default = Path.extend({
- type: 'circle',
- shape: {
- cx: 0,
- cy: 0,
- r: 0
- },
- buildPath: function (ctx, shape, inBundle) {
- // Better stroking in ShapeBundle
- // Always do it may have performence issue ( fill may be 2x more cost)
- if (inBundle) {
- ctx.moveTo(shape.cx + shape.r, shape.cy);
- } // else {
- // if (ctx.allocate && !ctx.data.length) {
- // ctx.allocate(ctx.CMD_MEM_SIZE.A);
- // }
- // }
- // Better stroking in ShapeBundle
- // ctx.moveTo(shape.cx + shape.r, shape.cy);
-
-
- ctx.arc(shape.cx, shape.cy, shape.r, 0, Math.PI * 2, true);
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2274:
- /***/ (function(module, exports, __webpack_require__) {
-
- var env = __webpack_require__(1316);
-
- // Fix weird bug in some version of IE11 (like 11.0.9600.178**),
- // where exception "unexpected call to method or property access"
- // might be thrown when calling ctx.fill or ctx.stroke after a path
- // whose area size is zero is drawn and ctx.clip() is called and
- // shadowBlur is set. See #4572, #3112, #5777.
- // (e.g.,
- // ctx.moveTo(10, 10);
- // ctx.lineTo(20, 10);
- // ctx.closePath();
- // ctx.clip();
- // ctx.shadowBlur = 10;
- // ...
- // ctx.fill();
- // )
- var shadowTemp = [['shadowBlur', 0], ['shadowColor', '#000'], ['shadowOffsetX', 0], ['shadowOffsetY', 0]];
-
- function _default(orignalBrush) {
- // version string can be: '11.0'
- return env.browser.ie && env.browser.version >= 11 ? function () {
- var clipPaths = this.__clipPaths;
- var style = this.style;
- var modified;
-
- if (clipPaths) {
- for (var i = 0; i < clipPaths.length; i++) {
- var clipPath = clipPaths[i];
- var shape = clipPath && clipPath.shape;
- var type = clipPath && clipPath.type;
-
- if (shape && (type === 'sector' && shape.startAngle === shape.endAngle || type === 'rect' && (!shape.width || !shape.height))) {
- for (var j = 0; j < shadowTemp.length; j++) {
- // It is save to put shadowTemp static, because shadowTemp
- // will be all modified each item brush called.
- shadowTemp[j][2] = style[shadowTemp[j][0]];
- style[shadowTemp[j][0]] = shadowTemp[j][1];
- }
-
- modified = true;
- break;
- }
- }
- }
-
- orignalBrush.apply(this, arguments);
-
- if (modified) {
- for (var j = 0; j < shadowTemp.length; j++) {
- style[shadowTemp[j][0]] = shadowTemp[j][2];
- }
- }
- } : orignalBrush;
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2275:
- /***/ (function(module, exports, __webpack_require__) {
-
- var Path = __webpack_require__(1280);
-
- var polyHelper = __webpack_require__(2276);
-
- /**
- * 多边形
- * @module zrender/shape/Polygon
- */
- var _default = Path.extend({
- type: 'polygon',
- shape: {
- points: null,
- smooth: false,
- smoothConstraint: null
- },
- buildPath: function (ctx, shape) {
- polyHelper.buildPath(ctx, shape, true);
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2276:
- /***/ (function(module, exports, __webpack_require__) {
-
- var smoothSpline = __webpack_require__(2529);
-
- var smoothBezier = __webpack_require__(2530);
-
- function buildPath(ctx, shape, closePath) {
- var points = shape.points;
- var smooth = shape.smooth;
-
- if (points && points.length >= 2) {
- if (smooth && smooth !== 'spline') {
- var controlPoints = smoothBezier(points, smooth, closePath, shape.smoothConstraint);
- ctx.moveTo(points[0][0], points[0][1]);
- var len = points.length;
-
- for (var i = 0; i < (closePath ? len : len - 1); i++) {
- var cp1 = controlPoints[i * 2];
- var cp2 = controlPoints[i * 2 + 1];
- var p = points[(i + 1) % len];
- ctx.bezierCurveTo(cp1[0], cp1[1], cp2[0], cp2[1], p[0], p[1]);
- }
- } else {
- if (smooth === 'spline') {
- points = smoothSpline(points, closePath);
- }
-
- ctx.moveTo(points[0][0], points[0][1]);
-
- for (var i = 1, l = points.length; i < l; i++) {
- ctx.lineTo(points[i][0], points[i][1]);
- }
- }
-
- closePath && ctx.closePath();
- }
- }
-
- exports.buildPath = buildPath;
-
- /***/ }),
-
- /***/ 2277:
- /***/ (function(module, exports, __webpack_require__) {
-
- var Path = __webpack_require__(1280);
-
- var polyHelper = __webpack_require__(2276);
-
- /**
- * @module zrender/graphic/shape/Polyline
- */
- var _default = Path.extend({
- type: 'polyline',
- shape: {
- points: null,
- smooth: false,
- smoothConstraint: null
- },
- style: {
- stroke: '#000',
- fill: null
- },
- buildPath: function (ctx, shape) {
- polyHelper.buildPath(ctx, shape, false);
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2278:
- /***/ (function(module, exports, __webpack_require__) {
-
- var Path = __webpack_require__(1280);
-
- var _subPixelOptimize = __webpack_require__(1898);
-
- var subPixelOptimizeLine = _subPixelOptimize.subPixelOptimizeLine;
-
- /**
- * 直线
- * @module zrender/graphic/shape/Line
- */
- // Avoid create repeatly.
- var subPixelOptimizeOutputShape = {};
-
- var _default = Path.extend({
- type: 'line',
- shape: {
- // Start point
- x1: 0,
- y1: 0,
- // End point
- x2: 0,
- y2: 0,
- percent: 1
- },
- style: {
- stroke: '#000',
- fill: null
- },
- buildPath: function (ctx, shape) {
- var x1;
- var y1;
- var x2;
- var y2;
-
- if (this.subPixelOptimize) {
- subPixelOptimizeLine(subPixelOptimizeOutputShape, shape, this.style);
- x1 = subPixelOptimizeOutputShape.x1;
- y1 = subPixelOptimizeOutputShape.y1;
- x2 = subPixelOptimizeOutputShape.x2;
- y2 = subPixelOptimizeOutputShape.y2;
- } else {
- x1 = shape.x1;
- y1 = shape.y1;
- x2 = shape.x2;
- y2 = shape.y2;
- }
-
- var percent = shape.percent;
-
- if (percent === 0) {
- return;
- }
-
- ctx.moveTo(x1, y1);
-
- if (percent < 1) {
- x2 = x1 * (1 - percent) + x2 * percent;
- y2 = y1 * (1 - percent) + y2 * percent;
- }
-
- ctx.lineTo(x2, y2);
- },
-
- /**
- * Get point at percent
- * @param {number} percent
- * @return {Array.<number>}
- */
- pointAt: function (p) {
- var shape = this.shape;
- return [shape.x1 * (1 - p) + shape.x2 * p, shape.y1 * (1 - p) + shape.y2 * p];
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2279:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _model = __webpack_require__(1064);
-
- var makeInner = _model.makeInner;
- var normalizeToArray = _model.normalizeToArray;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var inner = makeInner();
-
- function getNearestColorPalette(colors, requestColorNum) {
- var paletteNum = colors.length; // TODO colors must be in order
-
- for (var i = 0; i < paletteNum; i++) {
- if (colors[i].length > requestColorNum) {
- return colors[i];
- }
- }
-
- return colors[paletteNum - 1];
- }
-
- var _default = {
- clearColorPalette: function () {
- inner(this).colorIdx = 0;
- inner(this).colorNameMap = {};
- },
-
- /**
- * @param {string} name MUST NOT be null/undefined. Otherwise call this function
- * twise with the same parameters will get different result.
- * @param {Object} [scope=this]
- * @param {Object} [requestColorNum]
- * @return {string} color string.
- */
- getColorFromPalette: function (name, scope, requestColorNum) {
- scope = scope || this;
- var scopeFields = inner(scope);
- var colorIdx = scopeFields.colorIdx || 0;
- var colorNameMap = scopeFields.colorNameMap = scopeFields.colorNameMap || {}; // Use `hasOwnProperty` to avoid conflict with Object.prototype.
-
- if (colorNameMap.hasOwnProperty(name)) {
- return colorNameMap[name];
- }
-
- var defaultColorPalette = normalizeToArray(this.get('color', true));
- var layeredColorPalette = this.get('colorLayer', true);
- var colorPalette = requestColorNum == null || !layeredColorPalette ? defaultColorPalette : getNearestColorPalette(layeredColorPalette, requestColorNum); // In case can't find in layered color palette.
-
- colorPalette = colorPalette || defaultColorPalette;
-
- if (!colorPalette || !colorPalette.length) {
- return;
- }
-
- var color = colorPalette[colorIdx];
-
- if (name) {
- colorNameMap[name] = color;
- }
-
- scopeFields.colorIdx = (colorIdx + 1) % colorPalette.length;
- return color;
- }
- };
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2280:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var echartsAPIList = ['getDom', 'getZr', 'getWidth', 'getHeight', 'getDevicePixelRatio', 'dispatchAction', 'isDisposed', 'on', 'off', 'getDataURL', 'getConnectedDataURL', 'getModel', 'getOption', 'getViewOfComponentModel', 'getViewOfSeriesModel']; // And `getCoordinateSystems` and `getComponentByElement` will be injected in echarts.js
-
- function ExtensionAPI(chartInstance) {
- zrUtil.each(echartsAPIList, function (name) {
- this[name] = zrUtil.bind(chartInstance[name], chartInstance);
- }, this);
- }
-
- var _default = ExtensionAPI;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2281:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var ComponentModel = __webpack_require__(1321);
-
- var ComponentView = __webpack_require__(1786);
-
- var _sourceHelper = __webpack_require__(1457);
-
- var detectSourceFormat = _sourceHelper.detectSourceFormat;
-
- var _sourceType = __webpack_require__(1659);
-
- var SERIES_LAYOUT_BY_COLUMN = _sourceType.SERIES_LAYOUT_BY_COLUMN;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * This module is imported by echarts directly.
- *
- * Notice:
- * Always keep this file exists for backward compatibility.
- * Because before 4.1.0, dataset is an optional component,
- * some users may import this module manually.
- */
- ComponentModel.extend({
- type: 'dataset',
-
- /**
- * @protected
- */
- defaultOption: {
- // 'row', 'column'
- seriesLayoutBy: SERIES_LAYOUT_BY_COLUMN,
- // null/'auto': auto detect header, see "module:echarts/data/helper/sourceHelper"
- sourceHeader: null,
- dimensions: null,
- source: null
- },
- optionUpdated: function () {
- detectSourceFormat(this);
- }
- });
- ComponentView.extend({
- type: 'dataset'
- });
-
- /***/ }),
-
- /***/ 2282:
- /***/ (function(module, exports, __webpack_require__) {
-
- var Group = __webpack_require__(1597);
-
- var ZImage = __webpack_require__(1598);
-
- var Text = __webpack_require__(1517);
-
- var Circle = __webpack_require__(2273);
-
- var Rect = __webpack_require__(1897);
-
- var Ellipse = __webpack_require__(2548);
-
- var Line = __webpack_require__(2278);
-
- var Path = __webpack_require__(1280);
-
- var Polygon = __webpack_require__(2275);
-
- var Polyline = __webpack_require__(2277);
-
- var LinearGradient = __webpack_require__(1899);
-
- var Style = __webpack_require__(1895);
-
- var matrix = __webpack_require__(1350);
-
- var _path = __webpack_require__(2268);
-
- var createFromString = _path.createFromString;
-
- var _util = __webpack_require__(864);
-
- var isString = _util.isString;
- var extend = _util.extend;
- var defaults = _util.defaults;
- var trim = _util.trim;
- var each = _util.each;
- // import RadialGradient from '../graphic/RadialGradient';
- // import Pattern from '../graphic/Pattern';
- // import * as vector from '../core/vector';
- // Most of the values can be separated by comma and/or white space.
- var DILIMITER_REG = /[\s,]+/;
- /**
- * For big svg string, this method might be time consuming.
- *
- * @param {string} svg xml string
- * @return {Object} xml root.
- */
-
- function parseXML(svg) {
- if (isString(svg)) {
- var parser = new DOMParser();
- svg = parser.parseFromString(svg, 'text/xml');
- } // Document node. If using $.get, doc node may be input.
-
-
- if (svg.nodeType === 9) {
- svg = svg.firstChild;
- } // nodeName of <!DOCTYPE svg> is also 'svg'.
-
-
- while (svg.nodeName.toLowerCase() !== 'svg' || svg.nodeType !== 1) {
- svg = svg.nextSibling;
- }
-
- return svg;
- }
-
- function SVGParser() {
- this._defs = {};
- this._root = null;
- this._isDefine = false;
- this._isText = false;
- }
-
- SVGParser.prototype.parse = function (xml, opt) {
- opt = opt || {};
- var svg = parseXML(xml);
-
- if (!svg) {
- throw new Error('Illegal svg');
- }
-
- var root = new Group();
- this._root = root; // parse view port
-
- var viewBox = svg.getAttribute('viewBox') || ''; // If width/height not specified, means "100%" of `opt.width/height`.
- // TODO: Other percent value not supported yet.
-
- var width = parseFloat(svg.getAttribute('width') || opt.width);
- var height = parseFloat(svg.getAttribute('height') || opt.height); // If width/height not specified, set as null for output.
-
- isNaN(width) && (width = null);
- isNaN(height) && (height = null); // Apply inline style on svg element.
-
- parseAttributes(svg, root, null, true);
- var child = svg.firstChild;
-
- while (child) {
- this._parseNode(child, root);
-
- child = child.nextSibling;
- }
-
- var viewBoxRect;
- var viewBoxTransform;
-
- if (viewBox) {
- var viewBoxArr = trim(viewBox).split(DILIMITER_REG); // Some invalid case like viewBox: 'none'.
-
- if (viewBoxArr.length >= 4) {
- viewBoxRect = {
- x: parseFloat(viewBoxArr[0] || 0),
- y: parseFloat(viewBoxArr[1] || 0),
- width: parseFloat(viewBoxArr[2]),
- height: parseFloat(viewBoxArr[3])
- };
- }
- }
-
- if (viewBoxRect && width != null && height != null) {
- viewBoxTransform = makeViewBoxTransform(viewBoxRect, width, height);
-
- if (!opt.ignoreViewBox) {
- // If set transform on the output group, it probably bring trouble when
- // some users only intend to show the clipped content inside the viewBox,
- // but not intend to transform the output group. So we keep the output
- // group no transform. If the user intend to use the viewBox as a
- // camera, just set `opt.ignoreViewBox` as `true` and set transfrom
- // manually according to the viewBox info in the output of this method.
- var elRoot = root;
- root = new Group();
- root.add(elRoot);
- elRoot.scale = viewBoxTransform.scale.slice();
- elRoot.position = viewBoxTransform.position.slice();
- }
- } // Some shapes might be overflow the viewport, which should be
- // clipped despite whether the viewBox is used, as the SVG does.
-
-
- if (!opt.ignoreRootClip && width != null && height != null) {
- root.setClipPath(new Rect({
- shape: {
- x: 0,
- y: 0,
- width: width,
- height: height
- }
- }));
- } // Set width/height on group just for output the viewport size.
-
-
- return {
- root: root,
- width: width,
- height: height,
- viewBoxRect: viewBoxRect,
- viewBoxTransform: viewBoxTransform
- };
- };
-
- SVGParser.prototype._parseNode = function (xmlNode, parentGroup) {
- var nodeName = xmlNode.nodeName.toLowerCase(); // TODO
- // support <style>...</style> in svg, where nodeName is 'style',
- // CSS classes is defined globally wherever the style tags are declared.
-
- if (nodeName === 'defs') {
- // define flag
- this._isDefine = true;
- } else if (nodeName === 'text') {
- this._isText = true;
- }
-
- var el;
-
- if (this._isDefine) {
- var parser = defineParsers[nodeName];
-
- if (parser) {
- var def = parser.call(this, xmlNode);
- var id = xmlNode.getAttribute('id');
-
- if (id) {
- this._defs[id] = def;
- }
- }
- } else {
- var parser = nodeParsers[nodeName];
-
- if (parser) {
- el = parser.call(this, xmlNode, parentGroup);
- parentGroup.add(el);
- }
- }
-
- var child = xmlNode.firstChild;
-
- while (child) {
- if (child.nodeType === 1) {
- this._parseNode(child, el);
- } // Is text
-
-
- if (child.nodeType === 3 && this._isText) {
- this._parseText(child, el);
- }
-
- child = child.nextSibling;
- } // Quit define
-
-
- if (nodeName === 'defs') {
- this._isDefine = false;
- } else if (nodeName === 'text') {
- this._isText = false;
- }
- };
-
- SVGParser.prototype._parseText = function (xmlNode, parentGroup) {
- if (xmlNode.nodeType === 1) {
- var dx = xmlNode.getAttribute('dx') || 0;
- var dy = xmlNode.getAttribute('dy') || 0;
- this._textX += parseFloat(dx);
- this._textY += parseFloat(dy);
- }
-
- var text = new Text({
- style: {
- text: xmlNode.textContent,
- transformText: true
- },
- position: [this._textX || 0, this._textY || 0]
- });
- inheritStyle(parentGroup, text);
- parseAttributes(xmlNode, text, this._defs);
- var fontSize = text.style.fontSize;
-
- if (fontSize && fontSize < 9) {
- // PENDING
- text.style.fontSize = 9;
- text.scale = text.scale || [1, 1];
- text.scale[0] *= fontSize / 9;
- text.scale[1] *= fontSize / 9;
- }
-
- var rect = text.getBoundingRect();
- this._textX += rect.width;
- parentGroup.add(text);
- return text;
- };
-
- var nodeParsers = {
- 'g': function (xmlNode, parentGroup) {
- var g = new Group();
- inheritStyle(parentGroup, g);
- parseAttributes(xmlNode, g, this._defs);
- return g;
- },
- 'rect': function (xmlNode, parentGroup) {
- var rect = new Rect();
- inheritStyle(parentGroup, rect);
- parseAttributes(xmlNode, rect, this._defs);
- rect.setShape({
- x: parseFloat(xmlNode.getAttribute('x') || 0),
- y: parseFloat(xmlNode.getAttribute('y') || 0),
- width: parseFloat(xmlNode.getAttribute('width') || 0),
- height: parseFloat(xmlNode.getAttribute('height') || 0)
- }); // console.log(xmlNode.getAttribute('transform'));
- // console.log(rect.transform);
-
- return rect;
- },
- 'circle': function (xmlNode, parentGroup) {
- var circle = new Circle();
- inheritStyle(parentGroup, circle);
- parseAttributes(xmlNode, circle, this._defs);
- circle.setShape({
- cx: parseFloat(xmlNode.getAttribute('cx') || 0),
- cy: parseFloat(xmlNode.getAttribute('cy') || 0),
- r: parseFloat(xmlNode.getAttribute('r') || 0)
- });
- return circle;
- },
- 'line': function (xmlNode, parentGroup) {
- var line = new Line();
- inheritStyle(parentGroup, line);
- parseAttributes(xmlNode, line, this._defs);
- line.setShape({
- x1: parseFloat(xmlNode.getAttribute('x1') || 0),
- y1: parseFloat(xmlNode.getAttribute('y1') || 0),
- x2: parseFloat(xmlNode.getAttribute('x2') || 0),
- y2: parseFloat(xmlNode.getAttribute('y2') || 0)
- });
- return line;
- },
- 'ellipse': function (xmlNode, parentGroup) {
- var ellipse = new Ellipse();
- inheritStyle(parentGroup, ellipse);
- parseAttributes(xmlNode, ellipse, this._defs);
- ellipse.setShape({
- cx: parseFloat(xmlNode.getAttribute('cx') || 0),
- cy: parseFloat(xmlNode.getAttribute('cy') || 0),
- rx: parseFloat(xmlNode.getAttribute('rx') || 0),
- ry: parseFloat(xmlNode.getAttribute('ry') || 0)
- });
- return ellipse;
- },
- 'polygon': function (xmlNode, parentGroup) {
- var points = xmlNode.getAttribute('points');
-
- if (points) {
- points = parsePoints(points);
- }
-
- var polygon = new Polygon({
- shape: {
- points: points || []
- }
- });
- inheritStyle(parentGroup, polygon);
- parseAttributes(xmlNode, polygon, this._defs);
- return polygon;
- },
- 'polyline': function (xmlNode, parentGroup) {
- var path = new Path();
- inheritStyle(parentGroup, path);
- parseAttributes(xmlNode, path, this._defs);
- var points = xmlNode.getAttribute('points');
-
- if (points) {
- points = parsePoints(points);
- }
-
- var polyline = new Polyline({
- shape: {
- points: points || []
- }
- });
- return polyline;
- },
- 'image': function (xmlNode, parentGroup) {
- var img = new ZImage();
- inheritStyle(parentGroup, img);
- parseAttributes(xmlNode, img, this._defs);
- img.setStyle({
- image: xmlNode.getAttribute('xlink:href'),
- x: xmlNode.getAttribute('x'),
- y: xmlNode.getAttribute('y'),
- width: xmlNode.getAttribute('width'),
- height: xmlNode.getAttribute('height')
- });
- return img;
- },
- 'text': function (xmlNode, parentGroup) {
- var x = xmlNode.getAttribute('x') || 0;
- var y = xmlNode.getAttribute('y') || 0;
- var dx = xmlNode.getAttribute('dx') || 0;
- var dy = xmlNode.getAttribute('dy') || 0;
- this._textX = parseFloat(x) + parseFloat(dx);
- this._textY = parseFloat(y) + parseFloat(dy);
- var g = new Group();
- inheritStyle(parentGroup, g);
- parseAttributes(xmlNode, g, this._defs);
- return g;
- },
- 'tspan': function (xmlNode, parentGroup) {
- var x = xmlNode.getAttribute('x');
- var y = xmlNode.getAttribute('y');
-
- if (x != null) {
- // new offset x
- this._textX = parseFloat(x);
- }
-
- if (y != null) {
- // new offset y
- this._textY = parseFloat(y);
- }
-
- var dx = xmlNode.getAttribute('dx') || 0;
- var dy = xmlNode.getAttribute('dy') || 0;
- var g = new Group();
- inheritStyle(parentGroup, g);
- parseAttributes(xmlNode, g, this._defs);
- this._textX += dx;
- this._textY += dy;
- return g;
- },
- 'path': function (xmlNode, parentGroup) {
- // TODO svg fill rule
- // https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/fill-rule
- // path.style.globalCompositeOperation = 'xor';
- var d = xmlNode.getAttribute('d') || ''; // Performance sensitive.
-
- var path = createFromString(d);
- inheritStyle(parentGroup, path);
- parseAttributes(xmlNode, path, this._defs);
- return path;
- }
- };
- var defineParsers = {
- 'lineargradient': function (xmlNode) {
- var x1 = parseInt(xmlNode.getAttribute('x1') || 0, 10);
- var y1 = parseInt(xmlNode.getAttribute('y1') || 0, 10);
- var x2 = parseInt(xmlNode.getAttribute('x2') || 10, 10);
- var y2 = parseInt(xmlNode.getAttribute('y2') || 0, 10);
- var gradient = new LinearGradient(x1, y1, x2, y2);
-
- _parseGradientColorStops(xmlNode, gradient);
-
- return gradient;
- },
- 'radialgradient': function (xmlNode) {}
- };
-
- function _parseGradientColorStops(xmlNode, gradient) {
- var stop = xmlNode.firstChild;
-
- while (stop) {
- if (stop.nodeType === 1) {
- var offset = stop.getAttribute('offset');
-
- if (offset.indexOf('%') > 0) {
- // percentage
- offset = parseInt(offset, 10) / 100;
- } else if (offset) {
- // number from 0 to 1
- offset = parseFloat(offset);
- } else {
- offset = 0;
- }
-
- var stopColor = stop.getAttribute('stop-color') || '#000000';
- gradient.addColorStop(offset, stopColor);
- }
-
- stop = stop.nextSibling;
- }
- }
-
- function inheritStyle(parent, child) {
- if (parent && parent.__inheritedStyle) {
- if (!child.__inheritedStyle) {
- child.__inheritedStyle = {};
- }
-
- defaults(child.__inheritedStyle, parent.__inheritedStyle);
- }
- }
-
- function parsePoints(pointsString) {
- var list = trim(pointsString).split(DILIMITER_REG);
- var points = [];
-
- for (var i = 0; i < list.length; i += 2) {
- var x = parseFloat(list[i]);
- var y = parseFloat(list[i + 1]);
- points.push([x, y]);
- }
-
- return points;
- }
-
- var attributesMap = {
- 'fill': 'fill',
- 'stroke': 'stroke',
- 'stroke-width': 'lineWidth',
- 'opacity': 'opacity',
- 'fill-opacity': 'fillOpacity',
- 'stroke-opacity': 'strokeOpacity',
- 'stroke-dasharray': 'lineDash',
- 'stroke-dashoffset': 'lineDashOffset',
- 'stroke-linecap': 'lineCap',
- 'stroke-linejoin': 'lineJoin',
- 'stroke-miterlimit': 'miterLimit',
- 'font-family': 'fontFamily',
- 'font-size': 'fontSize',
- 'font-style': 'fontStyle',
- 'font-weight': 'fontWeight',
- 'text-align': 'textAlign',
- 'alignment-baseline': 'textBaseline'
- };
-
- function parseAttributes(xmlNode, el, defs, onlyInlineStyle) {
- var zrStyle = el.__inheritedStyle || {};
- var isTextEl = el.type === 'text'; // TODO Shadow
-
- if (xmlNode.nodeType === 1) {
- parseTransformAttribute(xmlNode, el);
- extend(zrStyle, parseStyleAttribute(xmlNode));
-
- if (!onlyInlineStyle) {
- for (var svgAttrName in attributesMap) {
- if (attributesMap.hasOwnProperty(svgAttrName)) {
- var attrValue = xmlNode.getAttribute(svgAttrName);
-
- if (attrValue != null) {
- zrStyle[attributesMap[svgAttrName]] = attrValue;
- }
- }
- }
- }
- }
-
- var elFillProp = isTextEl ? 'textFill' : 'fill';
- var elStrokeProp = isTextEl ? 'textStroke' : 'stroke';
- el.style = el.style || new Style();
- var elStyle = el.style;
- zrStyle.fill != null && elStyle.set(elFillProp, getPaint(zrStyle.fill, defs));
- zrStyle.stroke != null && elStyle.set(elStrokeProp, getPaint(zrStyle.stroke, defs));
- each(['lineWidth', 'opacity', 'fillOpacity', 'strokeOpacity', 'miterLimit', 'fontSize'], function (propName) {
- var elPropName = propName === 'lineWidth' && isTextEl ? 'textStrokeWidth' : propName;
- zrStyle[propName] != null && elStyle.set(elPropName, parseFloat(zrStyle[propName]));
- });
-
- if (!zrStyle.textBaseline || zrStyle.textBaseline === 'auto') {
- zrStyle.textBaseline = 'alphabetic';
- }
-
- if (zrStyle.textBaseline === 'alphabetic') {
- zrStyle.textBaseline = 'bottom';
- }
-
- if (zrStyle.textAlign === 'start') {
- zrStyle.textAlign = 'left';
- }
-
- if (zrStyle.textAlign === 'end') {
- zrStyle.textAlign = 'right';
- }
-
- each(['lineDashOffset', 'lineCap', 'lineJoin', 'fontWeight', 'fontFamily', 'fontStyle', 'textAlign', 'textBaseline'], function (propName) {
- zrStyle[propName] != null && elStyle.set(propName, zrStyle[propName]);
- });
-
- if (zrStyle.lineDash) {
- el.style.lineDash = trim(zrStyle.lineDash).split(DILIMITER_REG);
- }
-
- if (elStyle[elStrokeProp] && elStyle[elStrokeProp] !== 'none') {
- // enable stroke
- el[elStrokeProp] = true;
- }
-
- el.__inheritedStyle = zrStyle;
- }
-
- var urlRegex = /url\(\s*#(.*?)\)/;
-
- function getPaint(str, defs) {
- // if (str === 'none') {
- // return;
- // }
- var urlMatch = defs && str && str.match(urlRegex);
-
- if (urlMatch) {
- var url = trim(urlMatch[1]);
- var def = defs[url];
- return def;
- }
-
- return str;
- }
-
- var transformRegex = /(translate|scale|rotate|skewX|skewY|matrix)\(([\-\s0-9\.e,]*)\)/g;
-
- function parseTransformAttribute(xmlNode, node) {
- var transform = xmlNode.getAttribute('transform');
-
- if (transform) {
- transform = transform.replace(/,/g, ' ');
- var m = null;
- var transformOps = [];
- transform.replace(transformRegex, function (str, type, value) {
- transformOps.push(type, value);
- });
-
- for (var i = transformOps.length - 1; i > 0; i -= 2) {
- var value = transformOps[i];
- var type = transformOps[i - 1];
- m = m || matrix.create();
-
- switch (type) {
- case 'translate':
- value = trim(value).split(DILIMITER_REG);
- matrix.translate(m, m, [parseFloat(value[0]), parseFloat(value[1] || 0)]);
- break;
-
- case 'scale':
- value = trim(value).split(DILIMITER_REG);
- matrix.scale(m, m, [parseFloat(value[0]), parseFloat(value[1] || value[0])]);
- break;
-
- case 'rotate':
- value = trim(value).split(DILIMITER_REG);
- matrix.rotate(m, m, parseFloat(value[0]));
- break;
-
- case 'skew':
- value = trim(value).split(DILIMITER_REG);
- console.warn('Skew transform is not supported yet');
- break;
-
- case 'matrix':
- var value = trim(value).split(DILIMITER_REG);
- m[0] = parseFloat(value[0]);
- m[1] = parseFloat(value[1]);
- m[2] = parseFloat(value[2]);
- m[3] = parseFloat(value[3]);
- m[4] = parseFloat(value[4]);
- m[5] = parseFloat(value[5]);
- break;
- }
- }
-
- node.setLocalTransform(m);
- }
- } // Value may contain space.
-
-
- var styleRegex = /([^\s:;]+)\s*:\s*([^:;]+)/g;
-
- function parseStyleAttribute(xmlNode) {
- var style = xmlNode.getAttribute('style');
- var result = {};
-
- if (!style) {
- return result;
- }
-
- var styleList = {};
- styleRegex.lastIndex = 0;
- var styleRegResult;
-
- while ((styleRegResult = styleRegex.exec(style)) != null) {
- styleList[styleRegResult[1]] = styleRegResult[2];
- }
-
- for (var svgAttrName in attributesMap) {
- if (attributesMap.hasOwnProperty(svgAttrName) && styleList[svgAttrName] != null) {
- result[attributesMap[svgAttrName]] = styleList[svgAttrName];
- }
- }
-
- return result;
- }
- /**
- * @param {Array.<number>} viewBoxRect
- * @param {number} width
- * @param {number} height
- * @return {Object} {scale, position}
- */
-
-
- function makeViewBoxTransform(viewBoxRect, width, height) {
- var scaleX = width / viewBoxRect.width;
- var scaleY = height / viewBoxRect.height;
- var scale = Math.min(scaleX, scaleY); // preserveAspectRatio 'xMidYMid'
-
- var viewBoxScale = [scale, scale];
- var viewBoxPosition = [-(viewBoxRect.x + viewBoxRect.width / 2) * scale + width / 2, -(viewBoxRect.y + viewBoxRect.height / 2) * scale + height / 2];
- return {
- scale: viewBoxScale,
- position: viewBoxPosition
- };
- }
- /**
- * @param {string|XMLElement} xml
- * @param {Object} [opt]
- * @param {number} [opt.width] Default width if svg width not specified or is a percent value.
- * @param {number} [opt.height] Default height if svg height not specified or is a percent value.
- * @param {boolean} [opt.ignoreViewBox]
- * @param {boolean} [opt.ignoreRootClip]
- * @return {Object} result:
- * {
- * root: Group, The root of the the result tree of zrender shapes,
- * width: number, the viewport width of the SVG,
- * height: number, the viewport height of the SVG,
- * viewBoxRect: {x, y, width, height}, the declared viewBox rect of the SVG, if exists,
- * viewBoxTransform: the {scale, position} calculated by viewBox and viewport, is exists.
- * }
- */
-
-
- function parseSVG(xml, opt) {
- var parser = new SVGParser();
- return parser.parse(xml, opt);
- }
-
- exports.parseXML = parseXML;
- exports.makeViewBoxTransform = makeViewBoxTransform;
- exports.parseSVG = parseSVG;
-
- /***/ }),
-
- /***/ 2283:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrender = __webpack_require__(1780);
-
- exports.zrender = zrender;
-
- var matrix = __webpack_require__(1350);
-
- exports.matrix = matrix;
-
- var vector = __webpack_require__(1180);
-
- exports.vector = vector;
-
- var zrUtil = __webpack_require__(864);
-
- var colorTool = __webpack_require__(1438);
-
- exports.color = colorTool;
-
- var graphicUtil = __webpack_require__(906);
-
- var numberUtil = __webpack_require__(985);
-
- exports.number = numberUtil;
-
- var formatUtil = __webpack_require__(1186);
-
- exports.format = formatUtil;
-
- var _throttle = __webpack_require__(1482);
-
- var throttle = _throttle.throttle;
- exports.throttle = _throttle.throttle;
-
- var ecHelper = __webpack_require__(2549);
-
- exports.helper = ecHelper;
-
- var parseGeoJSON = __webpack_require__(2289);
-
- exports.parseGeoJSON = parseGeoJSON;
-
- var _List = __webpack_require__(1403);
-
- exports.List = _List;
-
- var _Model = __webpack_require__(1317);
-
- exports.Model = _Model;
-
- var _Axis = __webpack_require__(1484);
-
- exports.Axis = _Axis;
-
- var _env = __webpack_require__(1316);
-
- exports.env = _env;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Do not mount those modules on 'src/echarts' for better tree shaking.
- */
- var parseGeoJson = parseGeoJSON;
- var ecUtil = {};
- zrUtil.each(['map', 'each', 'filter', 'indexOf', 'inherits', 'reduce', 'filter', 'bind', 'curry', 'isArray', 'isString', 'isObject', 'isFunction', 'extend', 'defaults', 'clone', 'merge'], function (name) {
- ecUtil[name] = zrUtil[name];
- });
- var graphic = {};
- zrUtil.each(['extendShape', 'extendPath', 'makePath', 'makeImage', 'mergePath', 'resizePath', 'createIcon', 'setHoverStyle', 'setLabelStyle', 'setTextStyle', 'setText', 'getFont', 'updateProps', 'initProps', 'getTransform', 'clipPointsByRect', 'clipRectByRect', 'registerShape', 'getShapeClass', 'Group', 'Image', 'Text', 'Circle', 'Sector', 'Ring', 'Polygon', 'Polyline', 'Rect', 'Line', 'BezierCurve', 'Arc', 'IncrementalDisplayable', 'CompoundPath', 'LinearGradient', 'RadialGradient', 'BoundingRect'], function (name) {
- graphic[name] = graphicUtil[name];
- });
- exports.parseGeoJson = parseGeoJson;
- exports.util = ecUtil;
- exports.graphic = graphic;
-
- /***/ }),
-
- /***/ 2284:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @class
- * @param {Object|DataDimensionInfo} [opt] All of the fields will be shallow copied.
- */
- function DataDimensionInfo(opt) {
- if (opt != null) {
- zrUtil.extend(this, opt);
- }
- /**
- * Dimension name.
- * Mandatory.
- * @type {string}
- */
- // this.name;
-
- /**
- * The origin name in dimsDef, see source helper.
- * If displayName given, the tooltip will displayed vertically.
- * Optional.
- * @type {string}
- */
- // this.displayName;
-
- /**
- * Which coordSys dimension this dimension mapped to.
- * A `coordDim` can be a "coordSysDim" that the coordSys required
- * (for example, an item in `coordSysDims` of `model/referHelper#CoordSysInfo`),
- * or an generated "extra coord name" if does not mapped to any "coordSysDim"
- * (That is determined by whether `isExtraCoord` is `true`).
- * Mandatory.
- * @type {string}
- */
- // this.coordDim;
-
- /**
- * The index of this dimension in `series.encode[coordDim]`.
- * Mandatory.
- * @type {number}
- */
- // this.coordDimIndex;
-
- /**
- * Dimension type. The enumerable values are the key of
- * `dataCtors` of `data/List`.
- * Optional.
- * @type {string}
- */
- // this.type;
-
- /**
- * This index of this dimension info in `data/List#_dimensionInfos`.
- * Mandatory after added to `data/List`.
- * @type {number}
- */
- // this.index;
-
- /**
- * The format of `otherDims` is:
- * ```js
- * {
- * tooltip: number optional,
- * label: number optional,
- * itemName: number optional,
- * seriesName: number optional,
- * }
- * ```
- *
- * A `series.encode` can specified these fields:
- * ```js
- * encode: {
- * // "3, 1, 5" is the index of data dimension.
- * tooltip: [3, 1, 5],
- * label: [0, 3],
- * ...
- * }
- * ```
- * `otherDims` is the parse result of the `series.encode` above, like:
- * ```js
- * // Suppose the index of this data dimension is `3`.
- * this.otherDims = {
- * // `3` is at the index `0` of the `encode.tooltip`
- * tooltip: 0,
- * // `3` is at the index `1` of the `encode.tooltip`
- * label: 1
- * };
- * ```
- *
- * This prop should never be `null`/`undefined` after initialized.
- * @type {Object}
- */
-
-
- this.otherDims = {};
- /**
- * Be `true` if this dimension is not mapped to any "coordSysDim" that the
- * "coordSys" required.
- * Mandatory.
- * @type {boolean}
- */
- // this.isExtraCoord;
-
- /**
- * @type {module:data/OrdinalMeta}
- */
- // this.ordinalMeta;
-
- /**
- * Whether to create inverted indices.
- * @type {boolean}
- */
- // this.createInvertedIndices;
- }
-
- ;
- var _default = DataDimensionInfo;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2285:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _util = __webpack_require__(864);
-
- var createHashMap = _util.createHashMap;
- var each = _util.each;
- var isString = _util.isString;
- var defaults = _util.defaults;
- var extend = _util.extend;
- var isObject = _util.isObject;
- var clone = _util.clone;
-
- var _model = __webpack_require__(1064);
-
- var normalizeToArray = _model.normalizeToArray;
-
- var _sourceHelper = __webpack_require__(1457);
-
- var guessOrdinal = _sourceHelper.guessOrdinal;
- var BE_ORDINAL = _sourceHelper.BE_ORDINAL;
-
- var Source = __webpack_require__(1658);
-
- var _dimensionHelper = __webpack_require__(1660);
-
- var OTHER_DIMENSIONS = _dimensionHelper.OTHER_DIMENSIONS;
-
- var DataDimensionInfo = __webpack_require__(2284);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @deprecated
- * Use `echarts/data/helper/createDimensions` instead.
- */
-
- /**
- * @see {module:echarts/test/ut/spec/data/completeDimensions}
- *
- * This method builds the relationship between:
- * + "what the coord sys or series requires (see `sysDims`)",
- * + "what the user defines (in `encode` and `dimensions`, see `opt.dimsDef` and `opt.encodeDef`)"
- * + "what the data source provids (see `source`)".
- *
- * Some guess strategy will be adapted if user does not define something.
- * If no 'value' dimension specified, the first no-named dimension will be
- * named as 'value'.
- *
- * @param {Array.<string>} sysDims Necessary dimensions, like ['x', 'y'], which
- * provides not only dim template, but also default order.
- * properties: 'name', 'type', 'displayName'.
- * `name` of each item provides default coord name.
- * [{dimsDef: [string|Object, ...]}, ...] dimsDef of sysDim item provides default dim name, and
- * provide dims count that the sysDim required.
- * [{ordinalMeta}] can be specified.
- * @param {module:echarts/data/Source|Array|Object} source or data (for compatibal with pervious)
- * @param {Object} [opt]
- * @param {Array.<Object|string>} [opt.dimsDef] option.series.dimensions User defined dimensions
- * For example: ['asdf', {name, type}, ...].
- * @param {Object|HashMap} [opt.encodeDef] option.series.encode {x: 2, y: [3, 1], tooltip: [1, 2], label: 3}
- * @param {Function} [opt.encodeDefaulter] Called if no `opt.encodeDef` exists.
- * If not specified, auto find the next available data dim.
- * param source {module:data/Source}
- * param dimCount {number}
- * return {Object} encode Never be `null/undefined`.
- * @param {string} [opt.generateCoord] Generate coord dim with the given name.
- * If not specified, extra dim names will be:
- * 'value', 'value0', 'value1', ...
- * @param {number} [opt.generateCoordCount] By default, the generated dim name is `generateCoord`.
- * If `generateCoordCount` specified, the generated dim names will be:
- * `generateCoord` + 0, `generateCoord` + 1, ...
- * can be Infinity, indicate that use all of the remain columns.
- * @param {number} [opt.dimCount] If not specified, guess by the first data item.
- * @return {Array.<module:data/DataDimensionInfo>}
- */
- function completeDimensions(sysDims, source, opt) {
- if (!Source.isInstance(source)) {
- source = Source.seriesDataToSource(source);
- }
-
- opt = opt || {};
- sysDims = (sysDims || []).slice();
- var dimsDef = (opt.dimsDef || []).slice();
- var dataDimNameMap = createHashMap();
- var coordDimNameMap = createHashMap(); // var valueCandidate;
-
- var result = [];
- var dimCount = getDimCount(source, sysDims, dimsDef, opt.dimCount); // Apply user defined dims (`name` and `type`) and init result.
-
- for (var i = 0; i < dimCount; i++) {
- var dimDefItem = dimsDef[i] = extend({}, isObject(dimsDef[i]) ? dimsDef[i] : {
- name: dimsDef[i]
- });
- var userDimName = dimDefItem.name;
- var resultItem = result[i] = new DataDimensionInfo(); // Name will be applied later for avoiding duplication.
-
- if (userDimName != null && dataDimNameMap.get(userDimName) == null) {
- // Only if `series.dimensions` is defined in option
- // displayName, will be set, and dimension will be diplayed vertically in
- // tooltip by default.
- resultItem.name = resultItem.displayName = userDimName;
- dataDimNameMap.set(userDimName, i);
- }
-
- dimDefItem.type != null && (resultItem.type = dimDefItem.type);
- dimDefItem.displayName != null && (resultItem.displayName = dimDefItem.displayName);
- }
-
- var encodeDef = opt.encodeDef;
-
- if (!encodeDef && opt.encodeDefaulter) {
- encodeDef = opt.encodeDefaulter(source, dimCount);
- }
-
- encodeDef = createHashMap(encodeDef); // Set `coordDim` and `coordDimIndex` by `encodeDef` and normalize `encodeDef`.
-
- encodeDef.each(function (dataDims, coordDim) {
- dataDims = normalizeToArray(dataDims).slice(); // Note: It is allowed that `dataDims.length` is `0`, e.g., options is
- // `{encode: {x: -1, y: 1}}`. Should not filter anything in
- // this case.
-
- if (dataDims.length === 1 && !isString(dataDims[0]) && dataDims[0] < 0) {
- encodeDef.set(coordDim, false);
- return;
- }
-
- var validDataDims = encodeDef.set(coordDim, []);
- each(dataDims, function (resultDimIdx, idx) {
- // The input resultDimIdx can be dim name or index.
- isString(resultDimIdx) && (resultDimIdx = dataDimNameMap.get(resultDimIdx));
-
- if (resultDimIdx != null && resultDimIdx < dimCount) {
- validDataDims[idx] = resultDimIdx;
- applyDim(result[resultDimIdx], coordDim, idx);
- }
- });
- }); // Apply templetes and default order from `sysDims`.
-
- var availDimIdx = 0;
- each(sysDims, function (sysDimItem, sysDimIndex) {
- var coordDim;
- var sysDimItem;
- var sysDimItemDimsDef;
- var sysDimItemOtherDims;
-
- if (isString(sysDimItem)) {
- coordDim = sysDimItem;
- sysDimItem = {};
- } else {
- coordDim = sysDimItem.name;
- var ordinalMeta = sysDimItem.ordinalMeta;
- sysDimItem.ordinalMeta = null;
- sysDimItem = clone(sysDimItem);
- sysDimItem.ordinalMeta = ordinalMeta; // `coordDimIndex` should not be set directly.
-
- sysDimItemDimsDef = sysDimItem.dimsDef;
- sysDimItemOtherDims = sysDimItem.otherDims;
- sysDimItem.name = sysDimItem.coordDim = sysDimItem.coordDimIndex = sysDimItem.dimsDef = sysDimItem.otherDims = null;
- }
-
- var dataDims = encodeDef.get(coordDim); // negative resultDimIdx means no need to mapping.
-
- if (dataDims === false) {
- return;
- }
-
- var dataDims = normalizeToArray(dataDims); // dimensions provides default dim sequences.
-
- if (!dataDims.length) {
- for (var i = 0; i < (sysDimItemDimsDef && sysDimItemDimsDef.length || 1); i++) {
- while (availDimIdx < result.length && result[availDimIdx].coordDim != null) {
- availDimIdx++;
- }
-
- availDimIdx < result.length && dataDims.push(availDimIdx++);
- }
- } // Apply templates.
-
-
- each(dataDims, function (resultDimIdx, coordDimIndex) {
- var resultItem = result[resultDimIdx];
- applyDim(defaults(resultItem, sysDimItem), coordDim, coordDimIndex);
-
- if (resultItem.name == null && sysDimItemDimsDef) {
- var sysDimItemDimsDefItem = sysDimItemDimsDef[coordDimIndex];
- !isObject(sysDimItemDimsDefItem) && (sysDimItemDimsDefItem = {
- name: sysDimItemDimsDefItem
- });
- resultItem.name = resultItem.displayName = sysDimItemDimsDefItem.name;
- resultItem.defaultTooltip = sysDimItemDimsDefItem.defaultTooltip;
- } // FIXME refactor, currently only used in case: {otherDims: {tooltip: false}}
-
-
- sysDimItemOtherDims && defaults(resultItem.otherDims, sysDimItemOtherDims);
- });
- });
-
- function applyDim(resultItem, coordDim, coordDimIndex) {
- if (OTHER_DIMENSIONS.get(coordDim) != null) {
- resultItem.otherDims[coordDim] = coordDimIndex;
- } else {
- resultItem.coordDim = coordDim;
- resultItem.coordDimIndex = coordDimIndex;
- coordDimNameMap.set(coordDim, true);
- }
- } // Make sure the first extra dim is 'value'.
-
-
- var generateCoord = opt.generateCoord;
- var generateCoordCount = opt.generateCoordCount;
- var fromZero = generateCoordCount != null;
- generateCoordCount = generateCoord ? generateCoordCount || 1 : 0;
- var extra = generateCoord || 'value'; // Set dim `name` and other `coordDim` and other props.
-
- for (var resultDimIdx = 0; resultDimIdx < dimCount; resultDimIdx++) {
- var resultItem = result[resultDimIdx] = result[resultDimIdx] || new DataDimensionInfo();
- var coordDim = resultItem.coordDim;
-
- if (coordDim == null) {
- resultItem.coordDim = genName(extra, coordDimNameMap, fromZero);
- resultItem.coordDimIndex = 0;
-
- if (!generateCoord || generateCoordCount <= 0) {
- resultItem.isExtraCoord = true;
- }
-
- generateCoordCount--;
- }
-
- resultItem.name == null && (resultItem.name = genName(resultItem.coordDim, dataDimNameMap));
-
- if (resultItem.type == null && (guessOrdinal(source, resultDimIdx, resultItem.name) === BE_ORDINAL.Must // Consider the case:
- // {
- // dataset: {source: [
- // ['2001', 123],
- // ['2002', 456],
- // ...
- // ['The others', 987],
- // ]},
- // series: {type: 'pie'}
- // }
- // The first colum should better be treated as a "ordinal" although it
- // might not able to be detected as an "ordinal" by `guessOrdinal`.
- || resultItem.isExtraCoord && (resultItem.otherDims.itemName != null || resultItem.otherDims.seriesName != null))) {
- resultItem.type = 'ordinal';
- }
- }
-
- return result;
- } // ??? TODO
- // Originally detect dimCount by data[0]. Should we
- // optimize it to only by sysDims and dimensions and encode.
- // So only necessary dims will be initialized.
- // But
- // (1) custom series should be considered. where other dims
- // may be visited.
- // (2) sometimes user need to calcualte bubble size or use visualMap
- // on other dimensions besides coordSys needed.
- // So, dims that is not used by system, should be shared in storage?
-
-
- function getDimCount(source, sysDims, dimsDef, optDimCount) {
- // Note that the result dimCount should not small than columns count
- // of data, otherwise `dataDimNameMap` checking will be incorrect.
- var dimCount = Math.max(source.dimensionsDetectCount || 1, sysDims.length, dimsDef.length, optDimCount || 0);
- each(sysDims, function (sysDimItem) {
- var sysDimItemDimsDef = sysDimItem.dimsDef;
- sysDimItemDimsDef && (dimCount = Math.max(dimCount, sysDimItemDimsDef.length));
- });
- return dimCount;
- }
-
- function genName(name, map, fromZero) {
- if (fromZero || map.get(name) != null) {
- var i = 0;
-
- while (map.get(name + i) != null) {
- i++;
- }
-
- name += i;
- }
-
- map.set(name, true);
- return name;
- }
-
- var _default = completeDimensions;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2286:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _util = __webpack_require__(864);
-
- var createHashMap = _util.createHashMap;
- var isObject = _util.isObject;
- var map = _util.map;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @constructor
- * @param {Object} [opt]
- * @param {Object} [opt.categories=[]]
- * @param {Object} [opt.needCollect=false]
- * @param {Object} [opt.deduplication=false]
- */
- function OrdinalMeta(opt) {
- /**
- * @readOnly
- * @type {Array.<string>}
- */
- this.categories = opt.categories || [];
- /**
- * @private
- * @type {boolean}
- */
-
- this._needCollect = opt.needCollect;
- /**
- * @private
- * @type {boolean}
- */
-
- this._deduplication = opt.deduplication;
- /**
- * @private
- * @type {boolean}
- */
-
- this._map;
- }
- /**
- * @param {module:echarts/model/Model} axisModel
- * @return {module:echarts/data/OrdinalMeta}
- */
-
-
- OrdinalMeta.createByAxisModel = function (axisModel) {
- var option = axisModel.option;
- var data = option.data;
- var categories = data && map(data, getName);
- return new OrdinalMeta({
- categories: categories,
- needCollect: !categories,
- // deduplication is default in axis.
- deduplication: option.dedplication !== false
- });
- };
-
- var proto = OrdinalMeta.prototype;
- /**
- * @param {string} category
- * @return {number} ordinal
- */
-
- proto.getOrdinal = function (category) {
- return getOrCreateMap(this).get(category);
- };
- /**
- * @param {*} category
- * @return {number} The ordinal. If not found, return NaN.
- */
-
-
- proto.parseAndCollect = function (category) {
- var index;
- var needCollect = this._needCollect; // The value of category dim can be the index of the given category set.
- // This feature is only supported when !needCollect, because we should
- // consider a common case: a value is 2017, which is a number but is
- // expected to be tread as a category. This case usually happen in dataset,
- // where it happent to be no need of the index feature.
-
- if (typeof category !== 'string' && !needCollect) {
- return category;
- } // Optimize for the scenario:
- // category is ['2012-01-01', '2012-01-02', ...], where the input
- // data has been ensured not duplicate and is large data.
- // Notice, if a dataset dimension provide categroies, usually echarts
- // should remove duplication except user tell echarts dont do that
- // (set axis.deduplication = false), because echarts do not know whether
- // the values in the category dimension has duplication (consider the
- // parallel-aqi example)
-
-
- if (needCollect && !this._deduplication) {
- index = this.categories.length;
- this.categories[index] = category;
- return index;
- }
-
- var map = getOrCreateMap(this);
- index = map.get(category);
-
- if (index == null) {
- if (needCollect) {
- index = this.categories.length;
- this.categories[index] = category;
- map.set(category, index);
- } else {
- index = NaN;
- }
- }
-
- return index;
- }; // Consider big data, do not create map until needed.
-
-
- function getOrCreateMap(ordinalMeta) {
- return ordinalMeta._map || (ordinalMeta._map = createHashMap(ordinalMeta.categories));
- }
-
- function getName(obj) {
- if (isObject(obj) && obj.value != null) {
- return obj.value;
- } else {
- return obj + '';
- }
- }
-
- var _default = OrdinalMeta;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2287:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var numberUtil = __webpack_require__(985);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * For testable.
- */
- var roundNumber = numberUtil.round;
- /**
- * @param {Array.<number>} extent Both extent[0] and extent[1] should be valid number.
- * Should be extent[0] < extent[1].
- * @param {number} splitNumber splitNumber should be >= 1.
- * @param {number} [minInterval]
- * @param {number} [maxInterval]
- * @return {Object} {interval, intervalPrecision, niceTickExtent}
- */
-
- function intervalScaleNiceTicks(extent, splitNumber, minInterval, maxInterval) {
- var result = {};
- var span = extent[1] - extent[0];
- var interval = result.interval = numberUtil.nice(span / splitNumber, true);
-
- if (minInterval != null && interval < minInterval) {
- interval = result.interval = minInterval;
- }
-
- if (maxInterval != null && interval > maxInterval) {
- interval = result.interval = maxInterval;
- } // Tow more digital for tick.
-
-
- var precision = result.intervalPrecision = getIntervalPrecision(interval); // Niced extent inside original extent
-
- var niceTickExtent = result.niceTickExtent = [roundNumber(Math.ceil(extent[0] / interval) * interval, precision), roundNumber(Math.floor(extent[1] / interval) * interval, precision)];
- fixExtent(niceTickExtent, extent);
- return result;
- }
- /**
- * @param {number} interval
- * @return {number} interval precision
- */
-
-
- function getIntervalPrecision(interval) {
- // Tow more digital for tick.
- return numberUtil.getPrecisionSafe(interval) + 2;
- }
-
- function clamp(niceTickExtent, idx, extent) {
- niceTickExtent[idx] = Math.max(Math.min(niceTickExtent[idx], extent[1]), extent[0]);
- } // In some cases (e.g., splitNumber is 1), niceTickExtent may be out of extent.
-
-
- function fixExtent(niceTickExtent, extent) {
- !isFinite(niceTickExtent[0]) && (niceTickExtent[0] = extent[0]);
- !isFinite(niceTickExtent[1]) && (niceTickExtent[1] = extent[1]);
- clamp(niceTickExtent, 0, extent);
- clamp(niceTickExtent, 1, extent);
-
- if (niceTickExtent[0] > niceTickExtent[1]) {
- niceTickExtent[0] = niceTickExtent[1];
- }
- }
-
- exports.intervalScaleNiceTicks = intervalScaleNiceTicks;
- exports.getIntervalPrecision = getIntervalPrecision;
- exports.fixExtent = fixExtent;
-
- /***/ }),
-
- /***/ 2288:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var Scale = __webpack_require__(1787);
-
- var numberUtil = __webpack_require__(985);
-
- var IntervalScale = __webpack_require__(1788);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Log scale
- * @module echarts/scale/Log
- */
- // Use some method of IntervalScale
- var scaleProto = Scale.prototype;
- var intervalScaleProto = IntervalScale.prototype;
- var getPrecisionSafe = numberUtil.getPrecisionSafe;
- var roundingErrorFix = numberUtil.round;
- var mathFloor = Math.floor;
- var mathCeil = Math.ceil;
- var mathPow = Math.pow;
- var mathLog = Math.log;
- var LogScale = Scale.extend({
- type: 'log',
- base: 10,
- $constructor: function () {
- Scale.apply(this, arguments);
- this._originalScale = new IntervalScale();
- },
-
- /**
- * @param {boolean} [expandToNicedExtent=false] If expand the ticks to niced extent.
- * @return {Array.<number>}
- */
- getTicks: function (expandToNicedExtent) {
- var originalScale = this._originalScale;
- var extent = this._extent;
- var originalExtent = originalScale.getExtent();
- return zrUtil.map(intervalScaleProto.getTicks.call(this, expandToNicedExtent), function (val) {
- var powVal = numberUtil.round(mathPow(this.base, val)); // Fix #4158
-
- powVal = val === extent[0] && originalScale.__fixMin ? fixRoundingError(powVal, originalExtent[0]) : powVal;
- powVal = val === extent[1] && originalScale.__fixMax ? fixRoundingError(powVal, originalExtent[1]) : powVal;
- return powVal;
- }, this);
- },
-
- /**
- * @param {number} splitNumber
- * @return {Array.<Array.<number>>}
- */
- getMinorTicks: intervalScaleProto.getMinorTicks,
-
- /**
- * @param {number} val
- * @return {string}
- */
- getLabel: intervalScaleProto.getLabel,
-
- /**
- * @param {number} val
- * @return {number}
- */
- scale: function (val) {
- val = scaleProto.scale.call(this, val);
- return mathPow(this.base, val);
- },
-
- /**
- * @param {number} start
- * @param {number} end
- */
- setExtent: function (start, end) {
- var base = this.base;
- start = mathLog(start) / mathLog(base);
- end = mathLog(end) / mathLog(base);
- intervalScaleProto.setExtent.call(this, start, end);
- },
-
- /**
- * @return {number} end
- */
- getExtent: function () {
- var base = this.base;
- var extent = scaleProto.getExtent.call(this);
- extent[0] = mathPow(base, extent[0]);
- extent[1] = mathPow(base, extent[1]); // Fix #4158
-
- var originalScale = this._originalScale;
- var originalExtent = originalScale.getExtent();
- originalScale.__fixMin && (extent[0] = fixRoundingError(extent[0], originalExtent[0]));
- originalScale.__fixMax && (extent[1] = fixRoundingError(extent[1], originalExtent[1]));
- return extent;
- },
-
- /**
- * @param {Array.<number>} extent
- */
- unionExtent: function (extent) {
- this._originalScale.unionExtent(extent);
-
- var base = this.base;
- extent[0] = mathLog(extent[0]) / mathLog(base);
- extent[1] = mathLog(extent[1]) / mathLog(base);
- scaleProto.unionExtent.call(this, extent);
- },
-
- /**
- * @override
- */
- unionExtentFromData: function (data, dim) {
- // TODO
- // filter value that <= 0
- this.unionExtent(data.getApproximateExtent(dim));
- },
-
- /**
- * Update interval and extent of intervals for nice ticks
- * @param {number} [approxTickNum = 10] Given approx tick number
- */
- niceTicks: function (approxTickNum) {
- approxTickNum = approxTickNum || 10;
- var extent = this._extent;
- var span = extent[1] - extent[0];
-
- if (span === Infinity || span <= 0) {
- return;
- }
-
- var interval = numberUtil.quantity(span);
- var err = approxTickNum / span * interval; // Filter ticks to get closer to the desired count.
-
- if (err <= 0.5) {
- interval *= 10;
- } // Interval should be integer
-
-
- while (!isNaN(interval) && Math.abs(interval) < 1 && Math.abs(interval) > 0) {
- interval *= 10;
- }
-
- var niceExtent = [numberUtil.round(mathCeil(extent[0] / interval) * interval), numberUtil.round(mathFloor(extent[1] / interval) * interval)];
- this._interval = interval;
- this._niceExtent = niceExtent;
- },
-
- /**
- * Nice extent.
- * @override
- */
- niceExtent: function (opt) {
- intervalScaleProto.niceExtent.call(this, opt);
- var originalScale = this._originalScale;
- originalScale.__fixMin = opt.fixMin;
- originalScale.__fixMax = opt.fixMax;
- }
- });
- zrUtil.each(['contain', 'normalize'], function (methodName) {
- LogScale.prototype[methodName] = function (val) {
- val = mathLog(val) / mathLog(this.base);
- return scaleProto[methodName].call(this, val);
- };
- });
-
- LogScale.create = function () {
- return new LogScale();
- };
-
- function fixRoundingError(val, originalVal) {
- return roundingErrorFix(val, getPrecisionSafe(originalVal));
- }
-
- var _default = LogScale;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2289:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var Region = __webpack_require__(2290);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Parse and decode geo json
- * @module echarts/coord/geo/parseGeoJson
- */
- function decode(json) {
- if (!json.UTF8Encoding) {
- return json;
- }
-
- var encodeScale = json.UTF8Scale;
-
- if (encodeScale == null) {
- encodeScale = 1024;
- }
-
- var features = json.features;
-
- for (var f = 0; f < features.length; f++) {
- var feature = features[f];
- var geometry = feature.geometry;
- var coordinates = geometry.coordinates;
- var encodeOffsets = geometry.encodeOffsets;
-
- for (var c = 0; c < coordinates.length; c++) {
- var coordinate = coordinates[c];
-
- if (geometry.type === 'Polygon') {
- coordinates[c] = decodePolygon(coordinate, encodeOffsets[c], encodeScale);
- } else if (geometry.type === 'MultiPolygon') {
- for (var c2 = 0; c2 < coordinate.length; c2++) {
- var polygon = coordinate[c2];
- coordinate[c2] = decodePolygon(polygon, encodeOffsets[c][c2], encodeScale);
- }
- }
- }
- } // Has been decoded
-
-
- json.UTF8Encoding = false;
- return json;
- }
-
- function decodePolygon(coordinate, encodeOffsets, encodeScale) {
- var result = [];
- var prevX = encodeOffsets[0];
- var prevY = encodeOffsets[1];
-
- for (var i = 0; i < coordinate.length; i += 2) {
- var x = coordinate.charCodeAt(i) - 64;
- var y = coordinate.charCodeAt(i + 1) - 64; // ZigZag decoding
-
- x = x >> 1 ^ -(x & 1);
- y = y >> 1 ^ -(y & 1); // Delta deocding
-
- x += prevX;
- y += prevY;
- prevX = x;
- prevY = y; // Dequantize
-
- result.push([x / encodeScale, y / encodeScale]);
- }
-
- return result;
- }
- /**
- * @alias module:echarts/coord/geo/parseGeoJson
- * @param {Object} geoJson
- * @return {module:zrender/container/Group}
- */
-
-
- function _default(geoJson) {
- decode(geoJson);
- return zrUtil.map(zrUtil.filter(geoJson.features, function (featureObj) {
- // Output of mapshaper may have geometry null
- return featureObj.geometry && featureObj.properties && featureObj.geometry.coordinates.length > 0;
- }), function (featureObj) {
- var properties = featureObj.properties;
- var geo = featureObj.geometry;
- var coordinates = geo.coordinates;
- var geometries = [];
-
- if (geo.type === 'Polygon') {
- geometries.push({
- type: 'polygon',
- // According to the GeoJSON specification.
- // First must be exterior, and the rest are all interior(holes).
- exterior: coordinates[0],
- interiors: coordinates.slice(1)
- });
- }
-
- if (geo.type === 'MultiPolygon') {
- zrUtil.each(coordinates, function (item) {
- if (item[0]) {
- geometries.push({
- type: 'polygon',
- exterior: item[0],
- interiors: item.slice(1)
- });
- }
- });
- }
-
- var region = new Region(properties.name, geometries, properties.cp);
- region.properties = properties;
- return region;
- });
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2290:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var BoundingRect = __webpack_require__(1185);
-
- var bbox = __webpack_require__(1784);
-
- var vec2 = __webpack_require__(1180);
-
- var polygonContain = __webpack_require__(2291);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @module echarts/coord/geo/Region
- */
-
- /**
- * @param {string|Region} name
- * @param {Array} geometries
- * @param {Array.<number>} cp
- */
- function Region(name, geometries, cp) {
- /**
- * @type {string}
- * @readOnly
- */
- this.name = name;
- /**
- * @type {Array.<Array>}
- * @readOnly
- */
-
- this.geometries = geometries;
-
- if (!cp) {
- var rect = this.getBoundingRect();
- cp = [rect.x + rect.width / 2, rect.y + rect.height / 2];
- } else {
- cp = [cp[0], cp[1]];
- }
- /**
- * @type {Array.<number>}
- */
-
-
- this.center = cp;
- }
-
- Region.prototype = {
- constructor: Region,
- properties: null,
-
- /**
- * @return {module:zrender/core/BoundingRect}
- */
- getBoundingRect: function () {
- var rect = this._rect;
-
- if (rect) {
- return rect;
- }
-
- var MAX_NUMBER = Number.MAX_VALUE;
- var min = [MAX_NUMBER, MAX_NUMBER];
- var max = [-MAX_NUMBER, -MAX_NUMBER];
- var min2 = [];
- var max2 = [];
- var geometries = this.geometries;
-
- for (var i = 0; i < geometries.length; i++) {
- // Only support polygon
- if (geometries[i].type !== 'polygon') {
- continue;
- } // Doesn't consider hole
-
-
- var exterior = geometries[i].exterior;
- bbox.fromPoints(exterior, min2, max2);
- vec2.min(min, min, min2);
- vec2.max(max, max, max2);
- } // No data
-
-
- if (i === 0) {
- min[0] = min[1] = max[0] = max[1] = 0;
- }
-
- return this._rect = new BoundingRect(min[0], min[1], max[0] - min[0], max[1] - min[1]);
- },
-
- /**
- * @param {<Array.<number>} coord
- * @return {boolean}
- */
- contain: function (coord) {
- var rect = this.getBoundingRect();
- var geometries = this.geometries;
-
- if (!rect.contain(coord[0], coord[1])) {
- return false;
- }
-
- loopGeo: for (var i = 0, len = geometries.length; i < len; i++) {
- // Only support polygon.
- if (geometries[i].type !== 'polygon') {
- continue;
- }
-
- var exterior = geometries[i].exterior;
- var interiors = geometries[i].interiors;
-
- if (polygonContain.contain(exterior, coord[0], coord[1])) {
- // Not in the region if point is in the hole.
- for (var k = 0; k < (interiors ? interiors.length : 0); k++) {
- if (polygonContain.contain(interiors[k])) {
- continue loopGeo;
- }
- }
-
- return true;
- }
- }
-
- return false;
- },
- transformTo: function (x, y, width, height) {
- var rect = this.getBoundingRect();
- var aspect = rect.width / rect.height;
-
- if (!width) {
- width = aspect * height;
- } else if (!height) {
- height = width / aspect;
- }
-
- var target = new BoundingRect(x, y, width, height);
- var transform = rect.calculateTransform(target);
- var geometries = this.geometries;
-
- for (var i = 0; i < geometries.length; i++) {
- // Only support polygon.
- if (geometries[i].type !== 'polygon') {
- continue;
- }
-
- var exterior = geometries[i].exterior;
- var interiors = geometries[i].interiors;
-
- for (var p = 0; p < exterior.length; p++) {
- vec2.applyTransform(exterior[p], exterior[p], transform);
- }
-
- for (var h = 0; h < (interiors ? interiors.length : 0); h++) {
- for (var p = 0; p < interiors[h].length; p++) {
- vec2.applyTransform(interiors[h][p], interiors[h][p], transform);
- }
- }
- }
-
- rect = this._rect;
- rect.copy(target); // Update center
-
- this.center = [rect.x + rect.width / 2, rect.y + rect.height / 2];
- },
- cloneShallow: function (name) {
- name == null && (name = this.name);
- var newRegion = new Region(name, this.geometries, this.center);
- newRegion._rect = this._rect;
- newRegion.transformTo = null; // Simply avoid to be called.
-
- return newRegion;
- }
- };
- var _default = Region;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2291:
- /***/ (function(module, exports, __webpack_require__) {
-
- var windingLine = __webpack_require__(2272);
-
- var EPSILON = 1e-8;
-
- function isAroundEqual(a, b) {
- return Math.abs(a - b) < EPSILON;
- }
-
- function contain(points, x, y) {
- var w = 0;
- var p = points[0];
-
- if (!p) {
- return false;
- }
-
- for (var i = 1; i < points.length; i++) {
- var p2 = points[i];
- w += windingLine(p[0], p[1], p2[0], p2[1], x, y);
- p = p2;
- } // Close polygon
-
-
- var p0 = points[0];
-
- if (!isAroundEqual(p[0], p0[0]) || !isAroundEqual(p[1], p0[1])) {
- w += windingLine(p[0], p[1], p0[0], p0[1], x, y);
- }
-
- return w !== 0;
- }
-
- exports.contain = contain;
-
- /***/ }),
-
- /***/ 2292:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _dataStackHelper = __webpack_require__(1440);
-
- var isDimensionStacked = _dataStackHelper.isDimensionStacked;
-
- var _util = __webpack_require__(864);
-
- var map = _util.map;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @param {Object} coordSys
- * @param {module:echarts/data/List} data
- * @param {string} valueOrigin lineSeries.option.areaStyle.origin
- */
- function prepareDataCoordInfo(coordSys, data, valueOrigin) {
- var baseAxis = coordSys.getBaseAxis();
- var valueAxis = coordSys.getOtherAxis(baseAxis);
- var valueStart = getValueStart(valueAxis, valueOrigin);
- var baseAxisDim = baseAxis.dim;
- var valueAxisDim = valueAxis.dim;
- var valueDim = data.mapDimension(valueAxisDim);
- var baseDim = data.mapDimension(baseAxisDim);
- var baseDataOffset = valueAxisDim === 'x' || valueAxisDim === 'radius' ? 1 : 0;
- var dims = map(coordSys.dimensions, function (coordDim) {
- return data.mapDimension(coordDim);
- });
- var stacked;
- var stackResultDim = data.getCalculationInfo('stackResultDimension');
-
- if (stacked |= isDimensionStacked(data, dims[0]
- /*, dims[1]*/
- )) {
- // jshint ignore:line
- dims[0] = stackResultDim;
- }
-
- if (stacked |= isDimensionStacked(data, dims[1]
- /*, dims[0]*/
- )) {
- // jshint ignore:line
- dims[1] = stackResultDim;
- }
-
- return {
- dataDimsForPoint: dims,
- valueStart: valueStart,
- valueAxisDim: valueAxisDim,
- baseAxisDim: baseAxisDim,
- stacked: !!stacked,
- valueDim: valueDim,
- baseDim: baseDim,
- baseDataOffset: baseDataOffset,
- stackedOverDimension: data.getCalculationInfo('stackedOverDimension')
- };
- }
-
- function getValueStart(valueAxis, valueOrigin) {
- var valueStart = 0;
- var extent = valueAxis.scale.getExtent();
-
- if (valueOrigin === 'start') {
- valueStart = extent[0];
- } else if (valueOrigin === 'end') {
- valueStart = extent[1];
- } // auto
- else {
- // Both positive
- if (extent[0] > 0) {
- valueStart = extent[0];
- } // Both negative
- else if (extent[1] < 0) {
- valueStart = extent[1];
- } // If is one positive, and one negative, onZero shall be true
-
- }
-
- return valueStart;
- }
-
- function getStackedOnPoint(dataCoordInfo, coordSys, data, idx) {
- var value = NaN;
-
- if (dataCoordInfo.stacked) {
- value = data.get(data.getCalculationInfo('stackedOverDimension'), idx);
- }
-
- if (isNaN(value)) {
- value = dataCoordInfo.valueStart;
- }
-
- var baseDataOffset = dataCoordInfo.baseDataOffset;
- var stackedData = [];
- stackedData[baseDataOffset] = data.get(dataCoordInfo.baseDim, idx);
- stackedData[1 - baseDataOffset] = value;
- return coordSys.dataToPoint(stackedData);
- }
-
- exports.prepareDataCoordInfo = prepareDataCoordInfo;
- exports.getStackedOnPoint = getStackedOnPoint;
-
- /***/ }),
-
- /***/ 2293:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var Path = __webpack_require__(1280);
-
- var vec2 = __webpack_require__(1180);
-
- var fixClipWithShadow = __webpack_require__(2274);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // Poly path support NaN point
- var vec2Min = vec2.min;
- var vec2Max = vec2.max;
- var scaleAndAdd = vec2.scaleAndAdd;
- var v2Copy = vec2.copy; // Temporary variable
-
- var v = [];
- var cp0 = [];
- var cp1 = [];
-
- function isPointNull(p) {
- return isNaN(p[0]) || isNaN(p[1]);
- }
-
- function drawSegment(ctx, points, start, segLen, allLen, dir, smoothMin, smoothMax, smooth, smoothMonotone, connectNulls) {
- // if (smoothMonotone == null) {
- // if (isMono(points, 'x')) {
- // return drawMono(ctx, points, start, segLen, allLen,
- // dir, smoothMin, smoothMax, smooth, 'x', connectNulls);
- // }
- // else if (isMono(points, 'y')) {
- // return drawMono(ctx, points, start, segLen, allLen,
- // dir, smoothMin, smoothMax, smooth, 'y', connectNulls);
- // }
- // else {
- // return drawNonMono.apply(this, arguments);
- // }
- // }
- // else if (smoothMonotone !== 'none' && isMono(points, smoothMonotone)) {
- // return drawMono.apply(this, arguments);
- // }
- // else {
- // return drawNonMono.apply(this, arguments);
- // }
- if (smoothMonotone === 'none' || !smoothMonotone) {
- return drawNonMono.apply(this, arguments);
- } else {
- return drawMono.apply(this, arguments);
- }
- }
- /**
- * Check if points is in monotone.
- *
- * @param {number[][]} points Array of points which is in [x, y] form
- * @param {string} smoothMonotone 'x', 'y', or 'none', stating for which
- * dimension that is checking.
- * If is 'none', `drawNonMono` should be
- * called.
- * If is undefined, either being monotone
- * in 'x' or 'y' will call `drawMono`.
- */
- // function isMono(points, smoothMonotone) {
- // if (points.length <= 1) {
- // return true;
- // }
- // var dim = smoothMonotone === 'x' ? 0 : 1;
- // var last = points[0][dim];
- // var lastDiff = 0;
- // for (var i = 1; i < points.length; ++i) {
- // var diff = points[i][dim] - last;
- // if (!isNaN(diff) && !isNaN(lastDiff)
- // && diff !== 0 && lastDiff !== 0
- // && ((diff >= 0) !== (lastDiff >= 0))
- // ) {
- // return false;
- // }
- // if (!isNaN(diff) && diff !== 0) {
- // lastDiff = diff;
- // last = points[i][dim];
- // }
- // }
- // return true;
- // }
-
- /**
- * Draw smoothed line in monotone, in which only vertical or horizontal bezier
- * control points will be used. This should be used when points are monotone
- * either in x or y dimension.
- */
-
-
- function drawMono(ctx, points, start, segLen, allLen, dir, smoothMin, smoothMax, smooth, smoothMonotone, connectNulls) {
- var prevIdx = 0;
- var idx = start;
-
- for (var k = 0; k < segLen; k++) {
- var p = points[idx];
-
- if (idx >= allLen || idx < 0) {
- break;
- }
-
- if (isPointNull(p)) {
- if (connectNulls) {
- idx += dir;
- continue;
- }
-
- break;
- }
-
- if (idx === start) {
- ctx[dir > 0 ? 'moveTo' : 'lineTo'](p[0], p[1]);
- } else {
- if (smooth > 0) {
- var prevP = points[prevIdx];
- var dim = smoothMonotone === 'y' ? 1 : 0; // Length of control point to p, either in x or y, but not both
-
- var ctrlLen = (p[dim] - prevP[dim]) * smooth;
- v2Copy(cp0, prevP);
- cp0[dim] = prevP[dim] + ctrlLen;
- v2Copy(cp1, p);
- cp1[dim] = p[dim] - ctrlLen;
- ctx.bezierCurveTo(cp0[0], cp0[1], cp1[0], cp1[1], p[0], p[1]);
- } else {
- ctx.lineTo(p[0], p[1]);
- }
- }
-
- prevIdx = idx;
- idx += dir;
- }
-
- return k;
- }
- /**
- * Draw smoothed line in non-monotone, in may cause undesired curve in extreme
- * situations. This should be used when points are non-monotone neither in x or
- * y dimension.
- */
-
-
- function drawNonMono(ctx, points, start, segLen, allLen, dir, smoothMin, smoothMax, smooth, smoothMonotone, connectNulls) {
- var prevIdx = 0;
- var idx = start;
-
- for (var k = 0; k < segLen; k++) {
- var p = points[idx];
-
- if (idx >= allLen || idx < 0) {
- break;
- }
-
- if (isPointNull(p)) {
- if (connectNulls) {
- idx += dir;
- continue;
- }
-
- break;
- }
-
- if (idx === start) {
- ctx[dir > 0 ? 'moveTo' : 'lineTo'](p[0], p[1]);
- v2Copy(cp0, p);
- } else {
- if (smooth > 0) {
- var nextIdx = idx + dir;
- var nextP = points[nextIdx];
-
- if (connectNulls) {
- // Find next point not null
- while (nextP && isPointNull(points[nextIdx])) {
- nextIdx += dir;
- nextP = points[nextIdx];
- }
- }
-
- var ratioNextSeg = 0.5;
- var prevP = points[prevIdx];
- var nextP = points[nextIdx]; // Last point
-
- if (!nextP || isPointNull(nextP)) {
- v2Copy(cp1, p);
- } else {
- // If next data is null in not connect case
- if (isPointNull(nextP) && !connectNulls) {
- nextP = p;
- }
-
- vec2.sub(v, nextP, prevP);
- var lenPrevSeg;
- var lenNextSeg;
-
- if (smoothMonotone === 'x' || smoothMonotone === 'y') {
- var dim = smoothMonotone === 'x' ? 0 : 1;
- lenPrevSeg = Math.abs(p[dim] - prevP[dim]);
- lenNextSeg = Math.abs(p[dim] - nextP[dim]);
- } else {
- lenPrevSeg = vec2.dist(p, prevP);
- lenNextSeg = vec2.dist(p, nextP);
- } // Use ratio of seg length
-
-
- ratioNextSeg = lenNextSeg / (lenNextSeg + lenPrevSeg);
- scaleAndAdd(cp1, p, v, -smooth * (1 - ratioNextSeg));
- } // Smooth constraint
-
-
- vec2Min(cp0, cp0, smoothMax);
- vec2Max(cp0, cp0, smoothMin);
- vec2Min(cp1, cp1, smoothMax);
- vec2Max(cp1, cp1, smoothMin);
- ctx.bezierCurveTo(cp0[0], cp0[1], cp1[0], cp1[1], p[0], p[1]); // cp0 of next segment
-
- scaleAndAdd(cp0, p, v, smooth * ratioNextSeg);
- } else {
- ctx.lineTo(p[0], p[1]);
- }
- }
-
- prevIdx = idx;
- idx += dir;
- }
-
- return k;
- }
-
- function getBoundingBox(points, smoothConstraint) {
- var ptMin = [Infinity, Infinity];
- var ptMax = [-Infinity, -Infinity];
-
- if (smoothConstraint) {
- for (var i = 0; i < points.length; i++) {
- var pt = points[i];
-
- if (pt[0] < ptMin[0]) {
- ptMin[0] = pt[0];
- }
-
- if (pt[1] < ptMin[1]) {
- ptMin[1] = pt[1];
- }
-
- if (pt[0] > ptMax[0]) {
- ptMax[0] = pt[0];
- }
-
- if (pt[1] > ptMax[1]) {
- ptMax[1] = pt[1];
- }
- }
- }
-
- return {
- min: smoothConstraint ? ptMin : ptMax,
- max: smoothConstraint ? ptMax : ptMin
- };
- }
-
- var Polyline = Path.extend({
- type: 'ec-polyline',
- shape: {
- points: [],
- smooth: 0,
- smoothConstraint: true,
- smoothMonotone: null,
- connectNulls: false
- },
- style: {
- fill: null,
- stroke: '#000'
- },
- brush: fixClipWithShadow(Path.prototype.brush),
- buildPath: function (ctx, shape) {
- var points = shape.points;
- var i = 0;
- var len = points.length;
- var result = getBoundingBox(points, shape.smoothConstraint);
-
- if (shape.connectNulls) {
- // Must remove first and last null values avoid draw error in polygon
- for (; len > 0; len--) {
- if (!isPointNull(points[len - 1])) {
- break;
- }
- }
-
- for (; i < len; i++) {
- if (!isPointNull(points[i])) {
- break;
- }
- }
- }
-
- while (i < len) {
- i += drawSegment(ctx, points, i, len, len, 1, result.min, result.max, shape.smooth, shape.smoothMonotone, shape.connectNulls) + 1;
- }
- }
- });
- var Polygon = Path.extend({
- type: 'ec-polygon',
- shape: {
- points: [],
- // Offset between stacked base points and points
- stackedOnPoints: [],
- smooth: 0,
- stackedOnSmooth: 0,
- smoothConstraint: true,
- smoothMonotone: null,
- connectNulls: false
- },
- brush: fixClipWithShadow(Path.prototype.brush),
- buildPath: function (ctx, shape) {
- var points = shape.points;
- var stackedOnPoints = shape.stackedOnPoints;
- var i = 0;
- var len = points.length;
- var smoothMonotone = shape.smoothMonotone;
- var bbox = getBoundingBox(points, shape.smoothConstraint);
- var stackedOnBBox = getBoundingBox(stackedOnPoints, shape.smoothConstraint);
-
- if (shape.connectNulls) {
- // Must remove first and last null values avoid draw error in polygon
- for (; len > 0; len--) {
- if (!isPointNull(points[len - 1])) {
- break;
- }
- }
-
- for (; i < len; i++) {
- if (!isPointNull(points[i])) {
- break;
- }
- }
- }
-
- while (i < len) {
- var k = drawSegment(ctx, points, i, len, len, 1, bbox.min, bbox.max, shape.smooth, smoothMonotone, shape.connectNulls);
- drawSegment(ctx, stackedOnPoints, i + k - 1, k, len, -1, stackedOnBBox.min, stackedOnBBox.max, shape.stackedOnSmooth, smoothMonotone, shape.connectNulls);
- i += k + 1;
- ctx.closePath();
- }
- }
- });
- exports.Polyline = Polyline;
- exports.Polygon = Polygon;
-
- /***/ }),
-
- /***/ 2294:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var ComponentModel = __webpack_require__(1321);
-
- var axisModelCreator = __webpack_require__(1791);
-
- var axisModelCommonMixin = __webpack_require__(1603);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var AxisModel = ComponentModel.extend({
- type: 'cartesian2dAxis',
-
- /**
- * @type {module:echarts/coord/cartesian/Axis2D}
- */
- axis: null,
-
- /**
- * @override
- */
- init: function () {
- AxisModel.superApply(this, 'init', arguments);
- this.resetRange();
- },
-
- /**
- * @override
- */
- mergeOption: function () {
- AxisModel.superApply(this, 'mergeOption', arguments);
- this.resetRange();
- },
-
- /**
- * @override
- */
- restoreData: function () {
- AxisModel.superApply(this, 'restoreData', arguments);
- this.resetRange();
- },
-
- /**
- * @override
- * @return {module:echarts/model/Component}
- */
- getCoordSysModel: function () {
- return this.ecModel.queryComponents({
- mainType: 'grid',
- index: this.option.gridIndex,
- id: this.option.gridId
- })[0];
- }
- });
-
- function getAxisType(axisDim, option) {
- // Default axis with data is category axis
- return option.type || (option.data ? 'category' : 'value');
- }
-
- zrUtil.merge(AxisModel.prototype, axisModelCommonMixin);
- var extraOption = {
- // gridIndex: 0,
- // gridId: '',
- // Offset is for multiple axis on the same position
- offset: 0
- };
- axisModelCreator('x', AxisModel, getAxisType, extraOption);
- axisModelCreator('y', AxisModel, getAxisType, extraOption);
- var _default = AxisModel;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2295:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var defaultOption = {
- show: true,
- zlevel: 0,
- z: 0,
- // Inverse the axis.
- inverse: false,
- // Axis name displayed.
- name: '',
- // 'start' | 'middle' | 'end'
- nameLocation: 'end',
- // By degree. By defualt auto rotate by nameLocation.
- nameRotate: null,
- nameTruncate: {
- maxWidth: null,
- ellipsis: '...',
- placeholder: '.'
- },
- // Use global text style by default.
- nameTextStyle: {},
- // The gap between axisName and axisLine.
- nameGap: 15,
- // Default `false` to support tooltip.
- silent: false,
- // Default `false` to avoid legacy user event listener fail.
- triggerEvent: false,
- tooltip: {
- show: false
- },
- axisPointer: {},
- axisLine: {
- show: true,
- onZero: true,
- onZeroAxisIndex: null,
- lineStyle: {
- color: '#333',
- width: 1,
- type: 'solid'
- },
- // The arrow at both ends the the axis.
- symbol: ['none', 'none'],
- symbolSize: [10, 15]
- },
- axisTick: {
- show: true,
- // Whether axisTick is inside the grid or outside the grid.
- inside: false,
- // The length of axisTick.
- length: 5,
- lineStyle: {
- width: 1
- }
- },
- axisLabel: {
- show: true,
- // Whether axisLabel is inside the grid or outside the grid.
- inside: false,
- rotate: 0,
- // true | false | null/undefined (auto)
- showMinLabel: null,
- // true | false | null/undefined (auto)
- showMaxLabel: null,
- margin: 8,
- // formatter: null,
- fontSize: 12
- },
- splitLine: {
- show: true,
- lineStyle: {
- color: ['#ccc'],
- width: 1,
- type: 'solid'
- }
- },
- splitArea: {
- show: false,
- areaStyle: {
- color: ['rgba(250,250,250,0.3)', 'rgba(200,200,200,0.3)']
- }
- }
- };
- var axisDefault = {};
- axisDefault.categoryAxis = zrUtil.merge({
- // The gap at both ends of the axis. For categoryAxis, boolean.
- boundaryGap: true,
- // Set false to faster category collection.
- // Only usefull in the case like: category is
- // ['2012-01-01', '2012-01-02', ...], where the input
- // data has been ensured not duplicate and is large data.
- // null means "auto":
- // if axis.data provided, do not deduplication,
- // else do deduplication.
- deduplication: null,
- // splitArea: {
- // show: false
- // },
- splitLine: {
- show: false
- },
- axisTick: {
- // If tick is align with label when boundaryGap is true
- alignWithLabel: false,
- interval: 'auto'
- },
- axisLabel: {
- interval: 'auto'
- }
- }, defaultOption);
- axisDefault.valueAxis = zrUtil.merge({
- // The gap at both ends of the axis. For value axis, [GAP, GAP], where
- // `GAP` can be an absolute pixel number (like `35`), or percent (like `'30%'`)
- boundaryGap: [0, 0],
- // TODO
- // min/max: [30, datamin, 60] or [20, datamin] or [datamin, 60]
- // Min value of the axis. can be:
- // + a number
- // + 'dataMin': use the min value in data.
- // + null/undefined: auto decide min value (consider pretty look and boundaryGap).
- // min: null,
- // Max value of the axis. can be:
- // + a number
- // + 'dataMax': use the max value in data.
- // + null/undefined: auto decide max value (consider pretty look and boundaryGap).
- // max: null,
- // Readonly prop, specifies start value of the range when using data zoom.
- // rangeStart: null
- // Readonly prop, specifies end value of the range when using data zoom.
- // rangeEnd: null
- // Optional value can be:
- // + `false`: always include value 0.
- // + `true`: the extent do not consider value 0.
- // scale: false,
- // AxisTick and axisLabel and splitLine are caculated based on splitNumber.
- splitNumber: 5,
- // Interval specifies the span of the ticks is mandatorily.
- // interval: null
- // Specify min interval when auto calculate tick interval.
- // minInterval: null
- // Specify max interval when auto calculate tick interval.
- // maxInterval: null
- minorTick: {
- // Minor tick, not available for cateogry axis.
- show: false,
- // Split number of minor ticks. The value should be in range of (0, 100)
- splitNumber: 5,
- // Lenght of minor tick
- length: 3,
- // Same inside with axisTick
- // Line style
- lineStyle: {// Default to be same with axisTick
- }
- },
- minorSplitLine: {
- show: false,
- lineStyle: {
- color: '#eee',
- width: 1
- }
- }
- }, defaultOption);
- axisDefault.timeAxis = zrUtil.defaults({
- scale: true,
- min: 'dataMin',
- max: 'dataMax'
- }, axisDefault.valueAxis);
- axisDefault.logAxis = zrUtil.defaults({
- scale: true,
- logBase: 10
- }, axisDefault.valueAxis);
- var _default = axisDefault;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2296:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Can only be called after coordinate system creation stage.
- * (Can be called before coordinate system update stage).
- *
- * @param {Object} opt {labelInside}
- * @return {Object} {
- * position, rotation, labelDirection, labelOffset,
- * tickDirection, labelRotate, z2
- * }
- */
- function layout(gridModel, axisModel, opt) {
- opt = opt || {};
- var grid = gridModel.coordinateSystem;
- var axis = axisModel.axis;
- var layout = {};
- var otherAxisOnZeroOf = axis.getAxesOnZeroOf()[0];
- var rawAxisPosition = axis.position;
- var axisPosition = otherAxisOnZeroOf ? 'onZero' : rawAxisPosition;
- var axisDim = axis.dim;
- var rect = grid.getRect();
- var rectBound = [rect.x, rect.x + rect.width, rect.y, rect.y + rect.height];
- var idx = {
- left: 0,
- right: 1,
- top: 0,
- bottom: 1,
- onZero: 2
- };
- var axisOffset = axisModel.get('offset') || 0;
- var posBound = axisDim === 'x' ? [rectBound[2] - axisOffset, rectBound[3] + axisOffset] : [rectBound[0] - axisOffset, rectBound[1] + axisOffset];
-
- if (otherAxisOnZeroOf) {
- var onZeroCoord = otherAxisOnZeroOf.toGlobalCoord(otherAxisOnZeroOf.dataToCoord(0));
- posBound[idx.onZero] = Math.max(Math.min(onZeroCoord, posBound[1]), posBound[0]);
- } // Axis position
-
-
- layout.position = [axisDim === 'y' ? posBound[idx[axisPosition]] : rectBound[0], axisDim === 'x' ? posBound[idx[axisPosition]] : rectBound[3]]; // Axis rotation
-
- layout.rotation = Math.PI / 2 * (axisDim === 'x' ? 0 : 1); // Tick and label direction, x y is axisDim
-
- var dirMap = {
- top: -1,
- bottom: 1,
- left: -1,
- right: 1
- };
- layout.labelDirection = layout.tickDirection = layout.nameDirection = dirMap[rawAxisPosition];
- layout.labelOffset = otherAxisOnZeroOf ? posBound[idx[rawAxisPosition]] - posBound[idx.onZero] : 0;
-
- if (axisModel.get('axisTick.inside')) {
- layout.tickDirection = -layout.tickDirection;
- }
-
- if (zrUtil.retrieve(opt.labelInside, axisModel.get('axisLabel.inside'))) {
- layout.labelDirection = -layout.labelDirection;
- } // Special label rotation
-
-
- var labelRotate = axisModel.get('axisLabel.rotate');
- layout.labelRotate = axisPosition === 'top' ? -labelRotate : labelRotate; // Over splitLine and splitArea
-
- layout.z2 = 1;
- return layout;
- }
-
- exports.layout = layout;
-
- /***/ }),
-
- /***/ 2297:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var SeriesModel = __webpack_require__(1322);
-
- var createListFromArray = __webpack_require__(1458);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = SeriesModel.extend({
- type: 'series.__base_bar__',
- getInitialData: function (option, ecModel) {
- return createListFromArray(this.getSource(), this, {
- useEncodeDefaulter: true
- });
- },
- getMarkerPosition: function (value) {
- var coordSys = this.coordinateSystem;
-
- if (coordSys) {
- // PENDING if clamp ?
- var pt = coordSys.dataToPoint(coordSys.clampData(value));
- var data = this.getData();
- var offset = data.getLayout('offset');
- var size = data.getLayout('size');
- var offsetIndex = coordSys.getBaseAxis().isHorizontal() ? 0 : 1;
- pt[offsetIndex] += offset + size / 2;
- return pt;
- }
-
- return [NaN, NaN];
- },
- defaultOption: {
- zlevel: 0,
- // 一级层叠
- z: 2,
- // 二级层叠
- coordinateSystem: 'cartesian2d',
- legendHoverLink: true,
- // stack: null
- // Cartesian coordinate system
- // xAxisIndex: 0,
- // yAxisIndex: 0,
- // 最小高度改为0
- barMinHeight: 0,
- // 最小角度为0,仅对极坐标系下的柱状图有效
- barMinAngle: 0,
- // cursor: null,
- large: false,
- largeThreshold: 400,
- progressive: 3e3,
- progressiveChunkMode: 'mod',
- // barMaxWidth: null,
- // In cartesian, the default value is 1. Otherwise null.
- // barMinWidth: null,
- // 默认自适应
- // barWidth: null,
- // 柱间距离,默认为柱形宽度的30%,可设固定值
- // barGap: '30%',
- // 类目间柱形距离,默认为类目间距的20%,可设固定值
- // barCategoryGap: '20%',
- // label: {
- // show: false
- // },
- itemStyle: {},
- emphasis: {}
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2298:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var graphic = __webpack_require__(906);
-
- var _labelHelper = __webpack_require__(1904);
-
- var getDefaultLabel = _labelHelper.getDefaultLabel;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function setLabel(normalStyle, hoverStyle, itemModel, color, seriesModel, dataIndex, labelPositionOutside) {
- var labelModel = itemModel.getModel('label');
- var hoverLabelModel = itemModel.getModel('emphasis.label');
- graphic.setLabelStyle(normalStyle, hoverStyle, labelModel, hoverLabelModel, {
- labelFetcher: seriesModel,
- labelDataIndex: dataIndex,
- defaultText: getDefaultLabel(seriesModel.getData(), dataIndex),
- isRectText: true,
- autoColor: color
- });
- fixPosition(normalStyle);
- fixPosition(hoverStyle);
- }
-
- function fixPosition(style, labelPositionOutside) {
- if (style.textPosition === 'outside') {
- style.textPosition = labelPositionOutside;
- }
- }
-
- exports.setLabel = setLabel;
-
- /***/ }),
-
- /***/ 2299:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function _default(seriesType, actionInfos) {
- zrUtil.each(actionInfos, function (actionInfo) {
- actionInfo.update = 'updateView';
- /**
- * @payload
- * @property {string} seriesName
- * @property {string} name
- */
-
- echarts.registerAction(actionInfo, function (payload, ecModel) {
- var selected = {};
- ecModel.eachComponent({
- mainType: 'series',
- subType: seriesType,
- query: payload
- }, function (seriesModel) {
- if (seriesModel[actionInfo.method]) {
- seriesModel[actionInfo.method](payload.name, payload.dataIndex);
- }
-
- var data = seriesModel.getData(); // Create selected map
-
- data.each(function (idx) {
- var name = data.getName(idx);
- selected[name] = seriesModel.isSelected(name) || false;
- });
- });
- return {
- name: payload.name,
- selected: selected,
- seriesId: payload.seriesId
- };
- });
- });
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2300:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var RoamController = __webpack_require__(1667);
-
- var roamHelper = __webpack_require__(1907);
-
- var _cursorHelper = __webpack_require__(1795);
-
- var onIrrelevantElement = _cursorHelper.onIrrelevantElement;
-
- var graphic = __webpack_require__(906);
-
- var geoSourceManager = __webpack_require__(1794);
-
- var _component = __webpack_require__(1657);
-
- var getUID = _component.getUID;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function getFixedItemStyle(model) {
- var itemStyle = model.getItemStyle();
- var areaColor = model.get('areaColor'); // If user want the color not to be changed when hover,
- // they should both set areaColor and color to be null.
-
- if (areaColor != null) {
- itemStyle.fill = areaColor;
- }
-
- return itemStyle;
- }
-
- function updateMapSelectHandler(mapDraw, mapOrGeoModel, regionsGroup, api, fromView) {
- regionsGroup.off('click');
- regionsGroup.off('mousedown');
-
- if (mapOrGeoModel.get('selectedMode')) {
- regionsGroup.on('mousedown', function () {
- mapDraw._mouseDownFlag = true;
- });
- regionsGroup.on('click', function (e) {
- if (!mapDraw._mouseDownFlag) {
- return;
- }
-
- mapDraw._mouseDownFlag = false;
- var el = e.target;
-
- while (!el.__regions) {
- el = el.parent;
- }
-
- if (!el) {
- return;
- }
-
- var action = {
- type: (mapOrGeoModel.mainType === 'geo' ? 'geo' : 'map') + 'ToggleSelect',
- batch: zrUtil.map(el.__regions, function (region) {
- return {
- name: region.name,
- from: fromView.uid
- };
- })
- };
- action[mapOrGeoModel.mainType + 'Id'] = mapOrGeoModel.id;
- api.dispatchAction(action);
- updateMapSelected(mapOrGeoModel, regionsGroup);
- });
- }
- }
-
- function updateMapSelected(mapOrGeoModel, regionsGroup) {
- // FIXME
- regionsGroup.eachChild(function (otherRegionEl) {
- zrUtil.each(otherRegionEl.__regions, function (region) {
- otherRegionEl.trigger(mapOrGeoModel.isSelected(region.name) ? 'emphasis' : 'normal');
- });
- });
- }
- /**
- * @alias module:echarts/component/helper/MapDraw
- * @param {module:echarts/ExtensionAPI} api
- * @param {boolean} updateGroup
- */
-
-
- function MapDraw(api, updateGroup) {
- var group = new graphic.Group();
- /**
- * @type {string}
- * @private
- */
-
- this.uid = getUID('ec_map_draw');
- /**
- * @type {module:echarts/component/helper/RoamController}
- * @private
- */
-
- this._controller = new RoamController(api.getZr());
- /**
- * @type {Object} {target, zoom, zoomLimit}
- * @private
- */
-
- this._controllerHost = {
- target: updateGroup ? group : null
- };
- /**
- * @type {module:zrender/container/Group}
- * @readOnly
- */
-
- this.group = group;
- /**
- * @type {boolean}
- * @private
- */
-
- this._updateGroup = updateGroup;
- /**
- * This flag is used to make sure that only one among
- * `pan`, `zoom`, `click` can occurs, otherwise 'selected'
- * action may be triggered when `pan`, which is unexpected.
- * @type {booelan}
- */
-
- this._mouseDownFlag;
- /**
- * @type {string}
- */
-
- this._mapName;
- /**
- * @type {boolean}
- */
-
- this._initialized;
- /**
- * @type {module:zrender/container/Group}
- */
-
- group.add(this._regionsGroup = new graphic.Group());
- /**
- * @type {module:zrender/container/Group}
- */
-
- group.add(this._backgroundGroup = new graphic.Group());
- }
-
- MapDraw.prototype = {
- constructor: MapDraw,
- draw: function (mapOrGeoModel, ecModel, api, fromView, payload) {
- var isGeo = mapOrGeoModel.mainType === 'geo'; // Map series has data. GEO model that controlled by map series
- // will be assigned with map data. Other GEO model has no data.
-
- var data = mapOrGeoModel.getData && mapOrGeoModel.getData();
- isGeo && ecModel.eachComponent({
- mainType: 'series',
- subType: 'map'
- }, function (mapSeries) {
- if (!data && mapSeries.getHostGeoModel() === mapOrGeoModel) {
- data = mapSeries.getData();
- }
- });
- var geo = mapOrGeoModel.coordinateSystem;
-
- this._updateBackground(geo);
-
- var regionsGroup = this._regionsGroup;
- var group = this.group;
-
- if (geo._roamTransformable.transform) {
- group.transform = geo._roamTransformable.transform.slice();
- group.decomposeTransform();
- }
-
- var scale = geo._rawTransformable.scale;
- var position = geo._rawTransformable.position;
- regionsGroup.removeAll();
- var itemStyleAccessPath = ['itemStyle'];
- var hoverItemStyleAccessPath = ['emphasis', 'itemStyle'];
- var labelAccessPath = ['label'];
- var hoverLabelAccessPath = ['emphasis', 'label'];
- var nameMap = zrUtil.createHashMap();
- zrUtil.each(geo.regions, function (region) {
- // Consider in GeoJson properties.name may be duplicated, for example,
- // there is multiple region named "United Kindom" or "France" (so many
- // colonies). And it is not appropriate to merge them in geo, which
- // will make them share the same label and bring trouble in label
- // location calculation.
- var regionGroup = nameMap.get(region.name) || nameMap.set(region.name, new graphic.Group());
- var compoundPath = new graphic.CompoundPath({
- segmentIgnoreThreshold: 1,
- shape: {
- paths: []
- }
- });
- regionGroup.add(compoundPath);
- var regionModel = mapOrGeoModel.getRegionModel(region.name) || mapOrGeoModel;
- var itemStyleModel = regionModel.getModel(itemStyleAccessPath);
- var hoverItemStyleModel = regionModel.getModel(hoverItemStyleAccessPath);
- var itemStyle = getFixedItemStyle(itemStyleModel);
- var hoverItemStyle = getFixedItemStyle(hoverItemStyleModel);
- var labelModel = regionModel.getModel(labelAccessPath);
- var hoverLabelModel = regionModel.getModel(hoverLabelAccessPath);
- var dataIdx; // Use the itemStyle in data if has data
-
- if (data) {
- dataIdx = data.indexOfName(region.name); // Only visual color of each item will be used. It can be encoded by dataRange
- // But visual color of series is used in symbol drawing
- //
- // Visual color for each series is for the symbol draw
-
- var visualColor = data.getItemVisual(dataIdx, 'color', true);
-
- if (visualColor) {
- itemStyle.fill = visualColor;
- }
- }
-
- var transformPoint = function (point) {
- return [point[0] * scale[0] + position[0], point[1] * scale[1] + position[1]];
- };
-
- zrUtil.each(region.geometries, function (geometry) {
- if (geometry.type !== 'polygon') {
- return;
- }
-
- var points = [];
-
- for (var i = 0; i < geometry.exterior.length; ++i) {
- points.push(transformPoint(geometry.exterior[i]));
- }
-
- compoundPath.shape.paths.push(new graphic.Polygon({
- segmentIgnoreThreshold: 1,
- shape: {
- points: points
- }
- }));
-
- for (var i = 0; i < (geometry.interiors ? geometry.interiors.length : 0); ++i) {
- var interior = geometry.interiors[i];
- var points = [];
-
- for (var j = 0; j < interior.length; ++j) {
- points.push(transformPoint(interior[j]));
- }
-
- compoundPath.shape.paths.push(new graphic.Polygon({
- segmentIgnoreThreshold: 1,
- shape: {
- points: points
- }
- }));
- }
- });
- compoundPath.setStyle(itemStyle);
- compoundPath.style.strokeNoScale = true;
- compoundPath.culling = true; // Label
-
- var showLabel = labelModel.get('show');
- var hoverShowLabel = hoverLabelModel.get('show');
- var isDataNaN = data && isNaN(data.get(data.mapDimension('value'), dataIdx));
- var itemLayout = data && data.getItemLayout(dataIdx); // In the following cases label will be drawn
- // 1. In map series and data value is NaN
- // 2. In geo component
- // 4. Region has no series legendSymbol, which will be add a showLabel flag in mapSymbolLayout
-
- if (isGeo || isDataNaN && (showLabel || hoverShowLabel) || itemLayout && itemLayout.showLabel) {
- var query = !isGeo ? dataIdx : region.name;
- var labelFetcher; // Consider dataIdx not found.
-
- if (!data || dataIdx >= 0) {
- labelFetcher = mapOrGeoModel;
- }
-
- var textEl = new graphic.Text({
- position: transformPoint(region.center.slice()),
- // FIXME
- // label rotation is not support yet in geo or regions of series-map
- // that has no data. The rotation will be effected by this `scale`.
- // So needed to change to RectText?
- scale: [1 / group.scale[0], 1 / group.scale[1]],
- z2: 10,
- silent: true
- });
- graphic.setLabelStyle(textEl.style, textEl.hoverStyle = {}, labelModel, hoverLabelModel, {
- labelFetcher: labelFetcher,
- labelDataIndex: query,
- defaultText: region.name,
- useInsideStyle: false
- }, {
- textAlign: 'center',
- textVerticalAlign: 'middle'
- });
- regionGroup.add(textEl);
- } // setItemGraphicEl, setHoverStyle after all polygons and labels
- // are added to the rigionGroup
-
-
- if (data) {
- data.setItemGraphicEl(dataIdx, regionGroup);
- } else {
- var regionModel = mapOrGeoModel.getRegionModel(region.name); // Package custom mouse event for geo component
-
- compoundPath.eventData = {
- componentType: 'geo',
- componentIndex: mapOrGeoModel.componentIndex,
- geoIndex: mapOrGeoModel.componentIndex,
- name: region.name,
- region: regionModel && regionModel.option || {}
- };
- }
-
- var groupRegions = regionGroup.__regions || (regionGroup.__regions = []);
- groupRegions.push(region);
- regionGroup.highDownSilentOnTouch = !!mapOrGeoModel.get('selectedMode');
- graphic.setHoverStyle(regionGroup, hoverItemStyle);
- regionsGroup.add(regionGroup);
- });
-
- this._updateController(mapOrGeoModel, ecModel, api);
-
- updateMapSelectHandler(this, mapOrGeoModel, regionsGroup, api, fromView);
- updateMapSelected(mapOrGeoModel, regionsGroup);
- },
- remove: function () {
- this._regionsGroup.removeAll();
-
- this._backgroundGroup.removeAll();
-
- this._controller.dispose();
-
- this._mapName && geoSourceManager.removeGraphic(this._mapName, this.uid);
- this._mapName = null;
- this._controllerHost = {};
- },
- _updateBackground: function (geo) {
- var mapName = geo.map;
-
- if (this._mapName !== mapName) {
- zrUtil.each(geoSourceManager.makeGraphic(mapName, this.uid), function (root) {
- this._backgroundGroup.add(root);
- }, this);
- }
-
- this._mapName = mapName;
- },
- _updateController: function (mapOrGeoModel, ecModel, api) {
- var geo = mapOrGeoModel.coordinateSystem;
- var controller = this._controller;
- var controllerHost = this._controllerHost;
- controllerHost.zoomLimit = mapOrGeoModel.get('scaleLimit');
- controllerHost.zoom = geo.getZoom(); // roamType is will be set default true if it is null
-
- controller.enable(mapOrGeoModel.get('roam') || false);
- var mainType = mapOrGeoModel.mainType;
-
- function makeActionBase() {
- var action = {
- type: 'geoRoam',
- componentType: mainType
- };
- action[mainType + 'Id'] = mapOrGeoModel.id;
- return action;
- }
-
- controller.off('pan').on('pan', function (e) {
- this._mouseDownFlag = false;
- roamHelper.updateViewOnPan(controllerHost, e.dx, e.dy);
- api.dispatchAction(zrUtil.extend(makeActionBase(), {
- dx: e.dx,
- dy: e.dy
- }));
- }, this);
- controller.off('zoom').on('zoom', function (e) {
- this._mouseDownFlag = false;
- roamHelper.updateViewOnZoom(controllerHost, e.scale, e.originX, e.originY);
- api.dispatchAction(zrUtil.extend(makeActionBase(), {
- zoom: e.scale,
- originX: e.originX,
- originY: e.originY
- }));
-
- if (this._updateGroup) {
- var scale = this.group.scale;
-
- this._regionsGroup.traverse(function (el) {
- if (el.type === 'text') {
- el.attr('scale', [1 / scale[0], 1 / scale[1]]);
- }
- });
- }
- }, this);
- controller.setPointerChecker(function (e, x, y) {
- return geo.getViewRectAfterRoam().contain(x, y) && !onIrrelevantElement(e, api, mapOrGeoModel);
- });
- }
- };
- var _default = MapDraw;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2301:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var ATTR = '\0_ec_interaction_mutex';
-
- function take(zr, resourceKey, userKey) {
- var store = getStore(zr);
- store[resourceKey] = userKey;
- }
-
- function release(zr, resourceKey, userKey) {
- var store = getStore(zr);
- var uKey = store[resourceKey];
-
- if (uKey === userKey) {
- store[resourceKey] = null;
- }
- }
-
- function isTaken(zr, resourceKey) {
- return !!getStore(zr)[resourceKey];
- }
-
- function getStore(zr) {
- return zr[ATTR] || (zr[ATTR] = {});
- }
- /**
- * payload: {
- * type: 'takeGlobalCursor',
- * key: 'dataZoomSelect', or 'brush', or ...,
- * If no userKey, release global cursor.
- * }
- */
-
-
- echarts.registerAction({
- type: 'takeGlobalCursor',
- event: 'globalCursorTaken',
- update: 'update'
- }, function () {});
- exports.take = take;
- exports.release = release;
- exports.isTaken = isTaken;
-
- /***/ }),
-
- /***/ 2302:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var _roamHelper = __webpack_require__(1908);
-
- var updateCenterAndZoom = _roamHelper.updateCenterAndZoom;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @payload
- * @property {string} [componentType=series]
- * @property {number} [dx]
- * @property {number} [dy]
- * @property {number} [zoom]
- * @property {number} [originX]
- * @property {number} [originY]
- */
- echarts.registerAction({
- type: 'geoRoam',
- event: 'geoRoam',
- update: 'updateTransform'
- }, function (payload, ecModel) {
- var componentType = payload.componentType || 'series';
- ecModel.eachComponent({
- mainType: componentType,
- query: payload
- }, function (componentModel) {
- var geo = componentModel.coordinateSystem;
-
- if (geo.type !== 'geo') {
- return;
- }
-
- var res = updateCenterAndZoom(geo, payload, componentModel.get('scaleLimit'));
- componentModel.setCenter && componentModel.setCenter(res.center);
- componentModel.setZoom && componentModel.setZoom(res.zoom); // All map series with same `map` use the same geo coordinate system
- // So the center and zoom must be in sync. Include the series not selected by legend
-
- if (componentType === 'series') {
- zrUtil.each(componentModel.seriesGroup, function (seriesModel) {
- seriesModel.setCenter(res.center);
- seriesModel.setZoom(res.zoom);
- });
- }
- });
- });
-
- /***/ }),
-
- /***/ 2303:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Link lists and struct (graph or tree)
- */
- var each = zrUtil.each;
- var DATAS = '\0__link_datas';
- var MAIN_DATA = '\0__link_mainData'; // Caution:
- // In most case, either list or its shallow clones (see list.cloneShallow)
- // is active in echarts process. So considering heap memory consumption,
- // we do not clone tree or graph, but share them among list and its shallow clones.
- // But in some rare case, we have to keep old list (like do animation in chart). So
- // please take care that both the old list and the new list share the same tree/graph.
-
- /**
- * @param {Object} opt
- * @param {module:echarts/data/List} opt.mainData
- * @param {Object} [opt.struct] For example, instance of Graph or Tree.
- * @param {string} [opt.structAttr] designation: list[structAttr] = struct;
- * @param {Object} [opt.datas] {dataType: data},
- * like: {node: nodeList, edge: edgeList}.
- * Should contain mainData.
- * @param {Object} [opt.datasAttr] {dataType: attr},
- * designation: struct[datasAttr[dataType]] = list;
- */
-
- function linkList(opt) {
- var mainData = opt.mainData;
- var datas = opt.datas;
-
- if (!datas) {
- datas = {
- main: mainData
- };
- opt.datasAttr = {
- main: 'data'
- };
- }
-
- opt.datas = opt.mainData = null;
- linkAll(mainData, datas, opt); // Porxy data original methods.
-
- each(datas, function (data) {
- each(mainData.TRANSFERABLE_METHODS, function (methodName) {
- data.wrapMethod(methodName, zrUtil.curry(transferInjection, opt));
- });
- }); // Beyond transfer, additional features should be added to `cloneShallow`.
-
- mainData.wrapMethod('cloneShallow', zrUtil.curry(cloneShallowInjection, opt)); // Only mainData trigger change, because struct.update may trigger
- // another changable methods, which may bring about dead lock.
-
- each(mainData.CHANGABLE_METHODS, function (methodName) {
- mainData.wrapMethod(methodName, zrUtil.curry(changeInjection, opt));
- }); // Make sure datas contains mainData.
-
- zrUtil.assert(datas[mainData.dataType] === mainData);
- }
-
- function transferInjection(opt, res) {
- if (isMainData(this)) {
- // Transfer datas to new main data.
- var datas = zrUtil.extend({}, this[DATAS]);
- datas[this.dataType] = res;
- linkAll(res, datas, opt);
- } else {
- // Modify the reference in main data to point newData.
- linkSingle(res, this.dataType, this[MAIN_DATA], opt);
- }
-
- return res;
- }
-
- function changeInjection(opt, res) {
- opt.struct && opt.struct.update(this);
- return res;
- }
-
- function cloneShallowInjection(opt, res) {
- // cloneShallow, which brings about some fragilities, may be inappropriate
- // to be exposed as an API. So for implementation simplicity we can make
- // the restriction that cloneShallow of not-mainData should not be invoked
- // outside, but only be invoked here.
- each(res[DATAS], function (data, dataType) {
- data !== res && linkSingle(data.cloneShallow(), dataType, res, opt);
- });
- return res;
- }
- /**
- * Supplement method to List.
- *
- * @public
- * @param {string} [dataType] If not specified, return mainData.
- * @return {module:echarts/data/List}
- */
-
-
- function getLinkedData(dataType) {
- var mainData = this[MAIN_DATA];
- return dataType == null || mainData == null ? mainData : mainData[DATAS][dataType];
- }
-
- function isMainData(data) {
- return data[MAIN_DATA] === data;
- }
-
- function linkAll(mainData, datas, opt) {
- mainData[DATAS] = {};
- each(datas, function (data, dataType) {
- linkSingle(data, dataType, mainData, opt);
- });
- }
-
- function linkSingle(data, dataType, mainData, opt) {
- mainData[DATAS][dataType] = data;
- data[MAIN_DATA] = mainData;
- data.dataType = dataType;
-
- if (opt.struct) {
- data[opt.structAttr] = opt.struct;
- opt.struct[opt.datasAttr[dataType]] = data;
- } // Supplement method.
-
-
- data.getLinkedData = getLinkedData;
- }
-
- var _default = linkList;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2304:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var layout = __webpack_require__(1171);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * A third-party license is embeded for some of the code in this file:
- * The tree layoutHelper implementation was originally copied from
- * "d3.js"(https://github.com/d3/d3-hierarchy) with
- * some modifications made for this project.
- * (see more details in the comment of the specific method below.)
- * The use of the source code of this file is also subject to the terms
- * and consitions of the licence of "d3.js" (BSD-3Clause, see
- * </licenses/LICENSE-d3>).
- */
-
- /**
- * @file The layout algorithm of node-link tree diagrams. Here we using Reingold-Tilford algorithm to drawing
- * the tree.
- */
-
- /**
- * Initialize all computational message for following algorithm.
- *
- * @param {module:echarts/data/Tree~TreeNode} root The virtual root of the tree.
- */
- function init(root) {
- root.hierNode = {
- defaultAncestor: null,
- ancestor: root,
- prelim: 0,
- modifier: 0,
- change: 0,
- shift: 0,
- i: 0,
- thread: null
- };
- var nodes = [root];
- var node;
- var children;
-
- while (node = nodes.pop()) {
- // jshint ignore:line
- children = node.children;
-
- if (node.isExpand && children.length) {
- var n = children.length;
-
- for (var i = n - 1; i >= 0; i--) {
- var child = children[i];
- child.hierNode = {
- defaultAncestor: null,
- ancestor: child,
- prelim: 0,
- modifier: 0,
- change: 0,
- shift: 0,
- i: i,
- thread: null
- };
- nodes.push(child);
- }
- }
- }
- }
- /**
- * The implementation of this function was originally copied from "d3.js"
- * <https://github.com/d3/d3-hierarchy/blob/4c1f038f2725d6eae2e49b61d01456400694bac4/src/tree.js>
- * with some modifications made for this program.
- * See the license statement at the head of this file.
- *
- * Computes a preliminary x coordinate for node. Before that, this function is
- * applied recursively to the children of node, as well as the function
- * apportion(). After spacing out the children by calling executeShifts(), the
- * node is placed to the midpoint of its outermost children.
- *
- * @param {module:echarts/data/Tree~TreeNode} node
- * @param {Function} separation
- */
-
-
- function firstWalk(node, separation) {
- var children = node.isExpand ? node.children : [];
- var siblings = node.parentNode.children;
- var subtreeW = node.hierNode.i ? siblings[node.hierNode.i - 1] : null;
-
- if (children.length) {
- executeShifts(node);
- var midPoint = (children[0].hierNode.prelim + children[children.length - 1].hierNode.prelim) / 2;
-
- if (subtreeW) {
- node.hierNode.prelim = subtreeW.hierNode.prelim + separation(node, subtreeW);
- node.hierNode.modifier = node.hierNode.prelim - midPoint;
- } else {
- node.hierNode.prelim = midPoint;
- }
- } else if (subtreeW) {
- node.hierNode.prelim = subtreeW.hierNode.prelim + separation(node, subtreeW);
- }
-
- node.parentNode.hierNode.defaultAncestor = apportion(node, subtreeW, node.parentNode.hierNode.defaultAncestor || siblings[0], separation);
- }
- /**
- * The implementation of this function was originally copied from "d3.js"
- * <https://github.com/d3/d3-hierarchy/blob/4c1f038f2725d6eae2e49b61d01456400694bac4/src/tree.js>
- * with some modifications made for this program.
- * See the license statement at the head of this file.
- *
- * Computes all real x-coordinates by summing up the modifiers recursively.
- *
- * @param {module:echarts/data/Tree~TreeNode} node
- */
-
-
- function secondWalk(node) {
- var nodeX = node.hierNode.prelim + node.parentNode.hierNode.modifier;
- node.setLayout({
- x: nodeX
- }, true);
- node.hierNode.modifier += node.parentNode.hierNode.modifier;
- }
-
- function separation(cb) {
- return arguments.length ? cb : defaultSeparation;
- }
- /**
- * Transform the common coordinate to radial coordinate.
- *
- * @param {number} x
- * @param {number} y
- * @return {Object}
- */
-
-
- function radialCoordinate(x, y) {
- var radialCoor = {};
- x -= Math.PI / 2;
- radialCoor.x = y * Math.cos(x);
- radialCoor.y = y * Math.sin(x);
- return radialCoor;
- }
- /**
- * Get the layout position of the whole view.
- *
- * @param {module:echarts/model/Series} seriesModel the model object of sankey series
- * @param {module:echarts/ExtensionAPI} api provide the API list that the developer can call
- * @return {module:zrender/core/BoundingRect} size of rect to draw the sankey view
- */
-
-
- function getViewRect(seriesModel, api) {
- return layout.getLayoutRect(seriesModel.getBoxLayoutParams(), {
- width: api.getWidth(),
- height: api.getHeight()
- });
- }
- /**
- * All other shifts, applied to the smaller subtrees between w- and w+, are
- * performed by this function.
- *
- * The implementation of this function was originally copied from "d3.js"
- * <https://github.com/d3/d3-hierarchy/blob/4c1f038f2725d6eae2e49b61d01456400694bac4/src/tree.js>
- * with some modifications made for this program.
- * See the license statement at the head of this file.
- *
- * @param {module:echarts/data/Tree~TreeNode} node
- */
-
-
- function executeShifts(node) {
- var children = node.children;
- var n = children.length;
- var shift = 0;
- var change = 0;
-
- while (--n >= 0) {
- var child = children[n];
- child.hierNode.prelim += shift;
- child.hierNode.modifier += shift;
- change += child.hierNode.change;
- shift += child.hierNode.shift + change;
- }
- }
- /**
- * The implementation of this function was originally copied from "d3.js"
- * <https://github.com/d3/d3-hierarchy/blob/4c1f038f2725d6eae2e49b61d01456400694bac4/src/tree.js>
- * with some modifications made for this program.
- * See the license statement at the head of this file.
- *
- * The core of the algorithm. Here, a new subtree is combined with the
- * previous subtrees. Threads are used to traverse the inside and outside
- * contours of the left and right subtree up to the highest common level.
- * Whenever two nodes of the inside contours conflict, we compute the left
- * one of the greatest uncommon ancestors using the function nextAncestor()
- * and call moveSubtree() to shift the subtree and prepare the shifts of
- * smaller subtrees. Finally, we add a new thread (if necessary).
- *
- * @param {module:echarts/data/Tree~TreeNode} subtreeV
- * @param {module:echarts/data/Tree~TreeNode} subtreeW
- * @param {module:echarts/data/Tree~TreeNode} ancestor
- * @param {Function} separation
- * @return {module:echarts/data/Tree~TreeNode}
- */
-
-
- function apportion(subtreeV, subtreeW, ancestor, separation) {
- if (subtreeW) {
- var nodeOutRight = subtreeV;
- var nodeInRight = subtreeV;
- var nodeOutLeft = nodeInRight.parentNode.children[0];
- var nodeInLeft = subtreeW;
- var sumOutRight = nodeOutRight.hierNode.modifier;
- var sumInRight = nodeInRight.hierNode.modifier;
- var sumOutLeft = nodeOutLeft.hierNode.modifier;
- var sumInLeft = nodeInLeft.hierNode.modifier;
-
- while (nodeInLeft = nextRight(nodeInLeft), nodeInRight = nextLeft(nodeInRight), nodeInLeft && nodeInRight) {
- nodeOutRight = nextRight(nodeOutRight);
- nodeOutLeft = nextLeft(nodeOutLeft);
- nodeOutRight.hierNode.ancestor = subtreeV;
- var shift = nodeInLeft.hierNode.prelim + sumInLeft - nodeInRight.hierNode.prelim - sumInRight + separation(nodeInLeft, nodeInRight);
-
- if (shift > 0) {
- moveSubtree(nextAncestor(nodeInLeft, subtreeV, ancestor), subtreeV, shift);
- sumInRight += shift;
- sumOutRight += shift;
- }
-
- sumInLeft += nodeInLeft.hierNode.modifier;
- sumInRight += nodeInRight.hierNode.modifier;
- sumOutRight += nodeOutRight.hierNode.modifier;
- sumOutLeft += nodeOutLeft.hierNode.modifier;
- }
-
- if (nodeInLeft && !nextRight(nodeOutRight)) {
- nodeOutRight.hierNode.thread = nodeInLeft;
- nodeOutRight.hierNode.modifier += sumInLeft - sumOutRight;
- }
-
- if (nodeInRight && !nextLeft(nodeOutLeft)) {
- nodeOutLeft.hierNode.thread = nodeInRight;
- nodeOutLeft.hierNode.modifier += sumInRight - sumOutLeft;
- ancestor = subtreeV;
- }
- }
-
- return ancestor;
- }
- /**
- * This function is used to traverse the right contour of a subtree.
- * It returns the rightmost child of node or the thread of node. The function
- * returns null if and only if node is on the highest depth of its subtree.
- *
- * @param {module:echarts/data/Tree~TreeNode} node
- * @return {module:echarts/data/Tree~TreeNode}
- */
-
-
- function nextRight(node) {
- var children = node.children;
- return children.length && node.isExpand ? children[children.length - 1] : node.hierNode.thread;
- }
- /**
- * This function is used to traverse the left contour of a subtree (or a subforest).
- * It returns the leftmost child of node or the thread of node. The function
- * returns null if and only if node is on the highest depth of its subtree.
- *
- * @param {module:echarts/data/Tree~TreeNode} node
- * @return {module:echarts/data/Tree~TreeNode}
- */
-
-
- function nextLeft(node) {
- var children = node.children;
- return children.length && node.isExpand ? children[0] : node.hierNode.thread;
- }
- /**
- * If nodeInLeft’s ancestor is a sibling of node, returns nodeInLeft’s ancestor.
- * Otherwise, returns the specified ancestor.
- *
- * @param {module:echarts/data/Tree~TreeNode} nodeInLeft
- * @param {module:echarts/data/Tree~TreeNode} node
- * @param {module:echarts/data/Tree~TreeNode} ancestor
- * @return {module:echarts/data/Tree~TreeNode}
- */
-
-
- function nextAncestor(nodeInLeft, node, ancestor) {
- return nodeInLeft.hierNode.ancestor.parentNode === node.parentNode ? nodeInLeft.hierNode.ancestor : ancestor;
- }
- /**
- * The implementation of this function was originally copied from "d3.js"
- * <https://github.com/d3/d3-hierarchy/blob/4c1f038f2725d6eae2e49b61d01456400694bac4/src/tree.js>
- * with some modifications made for this program.
- * See the license statement at the head of this file.
- *
- * Shifts the current subtree rooted at wr.
- * This is done by increasing prelim(w+) and modifier(w+) by shift.
- *
- * @param {module:echarts/data/Tree~TreeNode} wl
- * @param {module:echarts/data/Tree~TreeNode} wr
- * @param {number} shift [description]
- */
-
-
- function moveSubtree(wl, wr, shift) {
- var change = shift / (wr.hierNode.i - wl.hierNode.i);
- wr.hierNode.change -= change;
- wr.hierNode.shift += shift;
- wr.hierNode.modifier += shift;
- wr.hierNode.prelim += shift;
- wl.hierNode.change += change;
- }
- /**
- * The implementation of this function was originally copied from "d3.js"
- * <https://github.com/d3/d3-hierarchy/blob/4c1f038f2725d6eae2e49b61d01456400694bac4/src/tree.js>
- * with some modifications made for this program.
- * See the license statement at the head of this file.
- */
-
-
- function defaultSeparation(node1, node2) {
- return node1.parentNode === node2.parentNode ? 1 : 2;
- }
-
- exports.init = init;
- exports.firstWalk = firstWalk;
- exports.secondWalk = secondWalk;
- exports.separation = separation;
- exports.radialCoordinate = radialCoordinate;
- exports.getViewRect = getViewRect;
-
- /***/ }),
-
- /***/ 2305:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var List = __webpack_require__(1403);
-
- var Graph = __webpack_require__(2619);
-
- var linkList = __webpack_require__(2303);
-
- var createDimensions = __webpack_require__(1602);
-
- var CoordinateSystem = __webpack_require__(1414);
-
- var createListFromArray = __webpack_require__(1458);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function _default(nodes, edges, seriesModel, directed, beforeLink) {
- // ??? TODO
- // support dataset?
- var graph = new Graph(directed);
-
- for (var i = 0; i < nodes.length; i++) {
- graph.addNode(zrUtil.retrieve( // Id, name, dataIndex
- nodes[i].id, nodes[i].name, i), i);
- }
-
- var linkNameList = [];
- var validEdges = [];
- var linkCount = 0;
-
- for (var i = 0; i < edges.length; i++) {
- var link = edges[i];
- var source = link.source;
- var target = link.target; // addEdge may fail when source or target not exists
-
- if (graph.addEdge(source, target, linkCount)) {
- validEdges.push(link);
- linkNameList.push(zrUtil.retrieve(link.id, source + ' > ' + target));
- linkCount++;
- }
- }
-
- var coordSys = seriesModel.get('coordinateSystem');
- var nodeData;
-
- if (coordSys === 'cartesian2d' || coordSys === 'polar') {
- nodeData = createListFromArray(nodes, seriesModel);
- } else {
- var coordSysCtor = CoordinateSystem.get(coordSys);
- var coordDimensions = coordSysCtor && coordSysCtor.type !== 'view' ? coordSysCtor.dimensions || [] : []; // FIXME: Some geo do not need `value` dimenson, whereas `calendar` needs
- // `value` dimension, but graph need `value` dimension. It's better to
- // uniform this behavior.
-
- if (zrUtil.indexOf(coordDimensions, 'value') < 0) {
- coordDimensions.concat(['value']);
- }
-
- var dimensionNames = createDimensions(nodes, {
- coordDimensions: coordDimensions
- });
- nodeData = new List(dimensionNames, seriesModel);
- nodeData.initData(nodes);
- }
-
- var edgeData = new List(['value'], seriesModel);
- edgeData.initData(validEdges, linkNameList);
- beforeLink && beforeLink(nodeData, edgeData);
- linkList({
- mainData: nodeData,
- struct: graph,
- structAttr: 'graph',
- datas: {
- node: nodeData,
- edge: edgeData
- },
- datasAttr: {
- node: 'data',
- edge: 'edgeData'
- }
- }); // Update dataIndex of nodes and edges because invalid edge may be removed
-
- graph.update();
- return graph;
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2306:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @payload
- * @property {number} [seriesIndex]
- * @property {string} [seriesId]
- * @property {string} [seriesName]
- * @property {number} [dataIndex]
- */
- echarts.registerAction({
- type: 'focusNodeAdjacency',
- event: 'focusNodeAdjacency',
- update: 'series:focusNodeAdjacency'
- }, function () {});
- /**
- * @payload
- * @property {number} [seriesIndex]
- * @property {string} [seriesId]
- * @property {string} [seriesName]
- */
-
- echarts.registerAction({
- type: 'unfocusNodeAdjacency',
- event: 'unfocusNodeAdjacency',
- update: 'series:unfocusNodeAdjacency'
- }, function () {});
-
- /***/ }),
-
- /***/ 2307:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var vec2 = __webpack_require__(1180);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function simpleLayout(seriesModel) {
- var coordSys = seriesModel.coordinateSystem;
-
- if (coordSys && coordSys.type !== 'view') {
- return;
- }
-
- var graph = seriesModel.getGraph();
- graph.eachNode(function (node) {
- var model = node.getModel();
- node.setLayout([+model.get('x'), +model.get('y')]);
- });
- simpleLayoutEdge(graph);
- }
-
- function simpleLayoutEdge(graph) {
- graph.eachEdge(function (edge) {
- var curveness = edge.getModel().get('lineStyle.curveness') || 0;
- var p1 = vec2.clone(edge.node1.getLayout());
- var p2 = vec2.clone(edge.node2.getLayout());
- var points = [p1, p2];
-
- if (+curveness) {
- points.push([(p1[0] + p2[0]) / 2 - (p1[1] - p2[1]) * curveness, (p1[1] + p2[1]) / 2 - (p2[0] - p1[0]) * curveness]);
- }
-
- edge.setLayout(points);
- });
- }
-
- exports.simpleLayout = simpleLayout;
- exports.simpleLayoutEdge = simpleLayoutEdge;
-
- /***/ }),
-
- /***/ 2308:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var vec2 = __webpack_require__(1180);
-
- var _graphHelper = __webpack_require__(1914);
-
- var getSymbolSize = _graphHelper.getSymbolSize;
- var getNodeGlobalScale = _graphHelper.getNodeGlobalScale;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var PI = Math.PI;
- var _symbolRadiansHalf = [];
- /**
- * `basedOn` can be:
- * 'value':
- * This layout is not accurate and have same bad case. For example,
- * if the min value is very smaller than the max value, the nodes
- * with the min value probably overlap even though there is enough
- * space to layout them. So we only use this approach in the as the
- * init layout of the force layout.
- * FIXME
- * Probably we do not need this method any more but use
- * `basedOn: 'symbolSize'` in force layout if
- * delay its init operations to GraphView.
- * 'symbolSize':
- * This approach work only if all of the symbol size calculated.
- * That is, the progressive rendering is not applied to graph.
- * FIXME
- * If progressive rendering is applied to graph some day,
- * probably we have to use `basedOn: 'value'`.
- *
- * @param {module:echarts/src/model/Series} seriesModel
- * @param {string} basedOn 'value' or 'symbolSize'
- */
-
- function circularLayout(seriesModel, basedOn) {
- var coordSys = seriesModel.coordinateSystem;
-
- if (coordSys && coordSys.type !== 'view') {
- return;
- }
-
- var rect = coordSys.getBoundingRect();
- var nodeData = seriesModel.getData();
- var graph = nodeData.graph;
- var cx = rect.width / 2 + rect.x;
- var cy = rect.height / 2 + rect.y;
- var r = Math.min(rect.width, rect.height) / 2;
- var count = nodeData.count();
- nodeData.setLayout({
- cx: cx,
- cy: cy
- });
-
- if (!count) {
- return;
- }
-
- _layoutNodesBasedOn[basedOn](seriesModel, coordSys, graph, nodeData, r, cx, cy, count);
-
- graph.eachEdge(function (edge) {
- var curveness = edge.getModel().get('lineStyle.curveness') || 0;
- var p1 = vec2.clone(edge.node1.getLayout());
- var p2 = vec2.clone(edge.node2.getLayout());
- var cp1;
- var x12 = (p1[0] + p2[0]) / 2;
- var y12 = (p1[1] + p2[1]) / 2;
-
- if (+curveness) {
- curveness *= 3;
- cp1 = [cx * curveness + x12 * (1 - curveness), cy * curveness + y12 * (1 - curveness)];
- }
-
- edge.setLayout([p1, p2, cp1]);
- });
- }
-
- var _layoutNodesBasedOn = {
- value: function (seriesModel, coordSys, graph, nodeData, r, cx, cy, count) {
- var angle = 0;
- var sum = nodeData.getSum('value');
- var unitAngle = Math.PI * 2 / (sum || count);
- graph.eachNode(function (node) {
- var value = node.getValue('value');
- var radianHalf = unitAngle * (sum ? value : 1) / 2;
- angle += radianHalf;
- node.setLayout([r * Math.cos(angle) + cx, r * Math.sin(angle) + cy]);
- angle += radianHalf;
- });
- },
- symbolSize: function (seriesModel, coordSys, graph, nodeData, r, cx, cy, count) {
- var sumRadian = 0;
- _symbolRadiansHalf.length = count;
- var nodeScale = getNodeGlobalScale(seriesModel);
- graph.eachNode(function (node) {
- var symbolSize = getSymbolSize(node); // Normally this case will not happen, but we still add
- // some the defensive code (2px is an arbitrary value).
-
- isNaN(symbolSize) && (symbolSize = 2);
- symbolSize < 0 && (symbolSize = 0);
- symbolSize *= nodeScale;
- var symbolRadianHalf = Math.asin(symbolSize / 2 / r); // when `symbolSize / 2` is bigger than `r`.
-
- isNaN(symbolRadianHalf) && (symbolRadianHalf = PI / 2);
- _symbolRadiansHalf[node.dataIndex] = symbolRadianHalf;
- sumRadian += symbolRadianHalf * 2;
- });
- var halfRemainRadian = (2 * PI - sumRadian) / count / 2;
- var angle = 0;
- graph.eachNode(function (node) {
- var radianHalf = halfRemainRadian + _symbolRadiansHalf[node.dataIndex];
- angle += radianHalf;
- node.setLayout([r * Math.cos(angle) + cx, r * Math.sin(angle) + cy]);
- angle += radianHalf;
- });
- }
- };
- exports.circularLayout = circularLayout;
-
- /***/ }),
-
- /***/ 2309:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var throttleUtil = __webpack_require__(1482);
-
- var parallelPreprocessor = __webpack_require__(2641);
-
- __webpack_require__(2310);
-
- __webpack_require__(2644);
-
- __webpack_require__(2646);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var CLICK_THRESHOLD = 5; // > 4
- // Parallel view
-
- echarts.extendComponentView({
- type: 'parallel',
- render: function (parallelModel, ecModel, api) {
- this._model = parallelModel;
- this._api = api;
-
- if (!this._handlers) {
- this._handlers = {};
- zrUtil.each(handlers, function (handler, eventName) {
- api.getZr().on(eventName, this._handlers[eventName] = zrUtil.bind(handler, this));
- }, this);
- }
-
- throttleUtil.createOrUpdate(this, '_throttledDispatchExpand', parallelModel.get('axisExpandRate'), 'fixRate');
- },
- dispose: function (ecModel, api) {
- zrUtil.each(this._handlers, function (handler, eventName) {
- api.getZr().off(eventName, handler);
- });
- this._handlers = null;
- },
-
- /**
- * @param {Object} [opt] If null, cancle the last action triggering for debounce.
- */
- _throttledDispatchExpand: function (opt) {
- this._dispatchExpand(opt);
- },
- _dispatchExpand: function (opt) {
- opt && this._api.dispatchAction(zrUtil.extend({
- type: 'parallelAxisExpand'
- }, opt));
- }
- });
- var handlers = {
- mousedown: function (e) {
- if (checkTrigger(this, 'click')) {
- this._mouseDownPoint = [e.offsetX, e.offsetY];
- }
- },
- mouseup: function (e) {
- var mouseDownPoint = this._mouseDownPoint;
-
- if (checkTrigger(this, 'click') && mouseDownPoint) {
- var point = [e.offsetX, e.offsetY];
- var dist = Math.pow(mouseDownPoint[0] - point[0], 2) + Math.pow(mouseDownPoint[1] - point[1], 2);
-
- if (dist > CLICK_THRESHOLD) {
- return;
- }
-
- var result = this._model.coordinateSystem.getSlidedAxisExpandWindow([e.offsetX, e.offsetY]);
-
- result.behavior !== 'none' && this._dispatchExpand({
- axisExpandWindow: result.axisExpandWindow
- });
- }
-
- this._mouseDownPoint = null;
- },
- mousemove: function (e) {
- // Should do nothing when brushing.
- if (this._mouseDownPoint || !checkTrigger(this, 'mousemove')) {
- return;
- }
-
- var model = this._model;
- var result = model.coordinateSystem.getSlidedAxisExpandWindow([e.offsetX, e.offsetY]);
- var behavior = result.behavior;
- behavior === 'jump' && this._throttledDispatchExpand.debounceNextCall(model.get('axisExpandDebounce'));
-
- this._throttledDispatchExpand(behavior === 'none' ? null // Cancle the last trigger, in case that mouse slide out of the area quickly.
- : {
- axisExpandWindow: result.axisExpandWindow,
- // Jumping uses animation, and sliding suppresses animation.
- animation: behavior === 'jump' ? null : false
- });
- }
- };
-
- function checkTrigger(view, triggerOn) {
- var model = view._model;
- return model.get('axisExpandable') && model.get('axisExpandTriggerOn') === triggerOn;
- }
-
- echarts.registerPreprocessor(parallelPreprocessor);
-
- /***/ }),
-
- /***/ 2310:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var Parallel = __webpack_require__(2642);
-
- var CoordinateSystem = __webpack_require__(1414);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Parallel coordinate system creater.
- */
- function create(ecModel, api) {
- var coordSysList = [];
- ecModel.eachComponent('parallel', function (parallelModel, idx) {
- var coordSys = new Parallel(parallelModel, ecModel, api);
- coordSys.name = 'parallel_' + idx;
- coordSys.resize(parallelModel, api);
- parallelModel.coordinateSystem = coordSys;
- coordSys.model = parallelModel;
- coordSysList.push(coordSys);
- }); // Inject the coordinateSystems into seriesModel
-
- ecModel.eachSeries(function (seriesModel) {
- if (seriesModel.get('coordinateSystem') === 'parallel') {
- var parallelModel = ecModel.queryComponents({
- mainType: 'parallel',
- index: seriesModel.get('parallelIndex'),
- id: seriesModel.get('parallelId')
- })[0];
- seriesModel.coordinateSystem = parallelModel.coordinateSystem;
- }
- });
- return coordSysList;
- }
-
- CoordinateSystem.register('parallel', {
- create: create
- });
-
- /***/ }),
-
- /***/ 2311:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var BoundingRect = __webpack_require__(1185);
-
- var _cursorHelper = __webpack_require__(1795);
-
- var onIrrelevantElement = _cursorHelper.onIrrelevantElement;
-
- var graphicUtil = __webpack_require__(906);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function makeRectPanelClipPath(rect) {
- rect = normalizeRect(rect);
- return function (localPoints, transform) {
- return graphicUtil.clipPointsByRect(localPoints, rect);
- };
- }
-
- function makeLinearBrushOtherExtent(rect, specifiedXYIndex) {
- rect = normalizeRect(rect);
- return function (xyIndex) {
- var idx = specifiedXYIndex != null ? specifiedXYIndex : xyIndex;
- var brushWidth = idx ? rect.width : rect.height;
- var base = idx ? rect.x : rect.y;
- return [base, base + (brushWidth || 0)];
- };
- }
-
- function makeRectIsTargetByCursor(rect, api, targetModel) {
- rect = normalizeRect(rect);
- return function (e, localCursorPoint, transform) {
- return rect.contain(localCursorPoint[0], localCursorPoint[1]) && !onIrrelevantElement(e, api, targetModel);
- };
- } // Consider width/height is negative.
-
-
- function normalizeRect(rect) {
- return BoundingRect.create(rect);
- }
-
- exports.makeRectPanelClipPath = makeRectPanelClipPath;
- exports.makeLinearBrushOtherExtent = makeLinearBrushOtherExtent;
- exports.makeRectIsTargetByCursor = makeRectIsTargetByCursor;
-
- /***/ }),
-
- /***/ 2312:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var createListSimply = __webpack_require__(1604);
-
- var zrUtil = __webpack_require__(864);
-
- var _dimensionHelper = __webpack_require__(1660);
-
- var getDimensionTypeByAxis = _dimensionHelper.getDimensionTypeByAxis;
-
- var _sourceHelper = __webpack_require__(1457);
-
- var makeSeriesEncodeForAxisCoordSys = _sourceHelper.makeSeriesEncodeForAxisCoordSys;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var seriesModelMixin = {
- /**
- * @private
- * @type {string}
- */
- _baseAxisDim: null,
-
- /**
- * @override
- */
- getInitialData: function (option, ecModel) {
- // When both types of xAxis and yAxis are 'value', layout is
- // needed to be specified by user. Otherwise, layout can be
- // judged by which axis is category.
- var ordinalMeta;
- var xAxisModel = ecModel.getComponent('xAxis', this.get('xAxisIndex'));
- var yAxisModel = ecModel.getComponent('yAxis', this.get('yAxisIndex'));
- var xAxisType = xAxisModel.get('type');
- var yAxisType = yAxisModel.get('type');
- var addOrdinal; // FIXME
- // Consider time axis.
-
- if (xAxisType === 'category') {
- option.layout = 'horizontal';
- ordinalMeta = xAxisModel.getOrdinalMeta();
- addOrdinal = true;
- } else if (yAxisType === 'category') {
- option.layout = 'vertical';
- ordinalMeta = yAxisModel.getOrdinalMeta();
- addOrdinal = true;
- } else {
- option.layout = option.layout || 'horizontal';
- }
-
- var coordDims = ['x', 'y'];
- var baseAxisDimIndex = option.layout === 'horizontal' ? 0 : 1;
- var baseAxisDim = this._baseAxisDim = coordDims[baseAxisDimIndex];
- var otherAxisDim = coordDims[1 - baseAxisDimIndex];
- var axisModels = [xAxisModel, yAxisModel];
- var baseAxisType = axisModels[baseAxisDimIndex].get('type');
- var otherAxisType = axisModels[1 - baseAxisDimIndex].get('type');
- var data = option.data; // ??? FIXME make a stage to perform data transfrom.
- // MUST create a new data, consider setOption({}) again.
-
- if (data && addOrdinal) {
- var newOptionData = [];
- zrUtil.each(data, function (item, index) {
- var newItem;
-
- if (item.value && zrUtil.isArray(item.value)) {
- newItem = item.value.slice();
- item.value.unshift(index);
- } else if (zrUtil.isArray(item)) {
- newItem = item.slice();
- item.unshift(index);
- } else {
- newItem = item;
- }
-
- newOptionData.push(newItem);
- });
- option.data = newOptionData;
- }
-
- var defaultValueDimensions = this.defaultValueDimensions;
- var coordDimensions = [{
- name: baseAxisDim,
- type: getDimensionTypeByAxis(baseAxisType),
- ordinalMeta: ordinalMeta,
- otherDims: {
- tooltip: false,
- itemName: 0
- },
- dimsDef: ['base']
- }, {
- name: otherAxisDim,
- type: getDimensionTypeByAxis(otherAxisType),
- dimsDef: defaultValueDimensions.slice()
- }];
- return createListSimply(this, {
- coordDimensions: coordDimensions,
- dimensionsCount: defaultValueDimensions.length + 1,
- encodeDefaulter: zrUtil.curry(makeSeriesEncodeForAxisCoordSys, coordDimensions, this)
- });
- },
-
- /**
- * If horizontal, base axis is x, otherwise y.
- * @override
- */
- getBaseAxis: function () {
- var dim = this._baseAxisDim;
- return this.ecModel.getComponent(dim + 'Axis', this.get(dim + 'AxisIndex')).axis;
- }
- };
- exports.seriesModelMixin = seriesModelMixin;
-
- /***/ }),
-
- /***/ 2313:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var graphic = __webpack_require__(906);
-
- var Line = __webpack_require__(1913);
-
- var zrUtil = __webpack_require__(864);
-
- var _symbol = __webpack_require__(1404);
-
- var createSymbol = _symbol.createSymbol;
-
- var vec2 = __webpack_require__(1180);
-
- var curveUtil = __webpack_require__(1481);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Provide effect for line
- * @module echarts/chart/helper/EffectLine
- */
-
- /**
- * @constructor
- * @extends {module:zrender/graphic/Group}
- * @alias {module:echarts/chart/helper/Line}
- */
- function EffectLine(lineData, idx, seriesScope) {
- graphic.Group.call(this);
- this.add(this.createLine(lineData, idx, seriesScope));
-
- this._updateEffectSymbol(lineData, idx);
- }
-
- var effectLineProto = EffectLine.prototype;
-
- effectLineProto.createLine = function (lineData, idx, seriesScope) {
- return new Line(lineData, idx, seriesScope);
- };
-
- effectLineProto._updateEffectSymbol = function (lineData, idx) {
- var itemModel = lineData.getItemModel(idx);
- var effectModel = itemModel.getModel('effect');
- var size = effectModel.get('symbolSize');
- var symbolType = effectModel.get('symbol');
-
- if (!zrUtil.isArray(size)) {
- size = [size, size];
- }
-
- var color = effectModel.get('color') || lineData.getItemVisual(idx, 'color');
- var symbol = this.childAt(1);
-
- if (this._symbolType !== symbolType) {
- // Remove previous
- this.remove(symbol);
- symbol = createSymbol(symbolType, -0.5, -0.5, 1, 1, color);
- symbol.z2 = 100;
- symbol.culling = true;
- this.add(symbol);
- } // Symbol may be removed if loop is false
-
-
- if (!symbol) {
- return;
- } // Shadow color is same with color in default
-
-
- symbol.setStyle('shadowColor', color);
- symbol.setStyle(effectModel.getItemStyle(['color']));
- symbol.attr('scale', size);
- symbol.setColor(color);
- symbol.attr('scale', size);
- this._symbolType = symbolType;
-
- this._updateEffectAnimation(lineData, effectModel, idx);
- };
-
- effectLineProto._updateEffectAnimation = function (lineData, effectModel, idx) {
- var symbol = this.childAt(1);
-
- if (!symbol) {
- return;
- }
-
- var self = this;
- var points = lineData.getItemLayout(idx);
- var period = effectModel.get('period') * 1000;
- var loop = effectModel.get('loop');
- var constantSpeed = effectModel.get('constantSpeed');
- var delayExpr = zrUtil.retrieve(effectModel.get('delay'), function (idx) {
- return idx / lineData.count() * period / 3;
- });
- var isDelayFunc = typeof delayExpr === 'function'; // Ignore when updating
-
- symbol.ignore = true;
- this.updateAnimationPoints(symbol, points);
-
- if (constantSpeed > 0) {
- period = this.getLineLength(symbol) / constantSpeed * 1000;
- }
-
- if (period !== this._period || loop !== this._loop) {
- symbol.stopAnimation();
- var delay = delayExpr;
-
- if (isDelayFunc) {
- delay = delayExpr(idx);
- }
-
- if (symbol.__t > 0) {
- delay = -period * symbol.__t;
- }
-
- symbol.__t = 0;
- var animator = symbol.animate('', loop).when(period, {
- __t: 1
- }).delay(delay).during(function () {
- self.updateSymbolPosition(symbol);
- });
-
- if (!loop) {
- animator.done(function () {
- self.remove(symbol);
- });
- }
-
- animator.start();
- }
-
- this._period = period;
- this._loop = loop;
- };
-
- effectLineProto.getLineLength = function (symbol) {
- // Not so accurate
- return vec2.dist(symbol.__p1, symbol.__cp1) + vec2.dist(symbol.__cp1, symbol.__p2);
- };
-
- effectLineProto.updateAnimationPoints = function (symbol, points) {
- symbol.__p1 = points[0];
- symbol.__p2 = points[1];
- symbol.__cp1 = points[2] || [(points[0][0] + points[1][0]) / 2, (points[0][1] + points[1][1]) / 2];
- };
-
- effectLineProto.updateData = function (lineData, idx, seriesScope) {
- this.childAt(0).updateData(lineData, idx, seriesScope);
-
- this._updateEffectSymbol(lineData, idx);
- };
-
- effectLineProto.updateSymbolPosition = function (symbol) {
- var p1 = symbol.__p1;
- var p2 = symbol.__p2;
- var cp1 = symbol.__cp1;
- var t = symbol.__t;
- var pos = symbol.position;
- var quadraticAt = curveUtil.quadraticAt;
- var quadraticDerivativeAt = curveUtil.quadraticDerivativeAt;
- pos[0] = quadraticAt(p1[0], cp1[0], p2[0], t);
- pos[1] = quadraticAt(p1[1], cp1[1], p2[1], t); // Tangent
-
- var tx = quadraticDerivativeAt(p1[0], cp1[0], p2[0], t);
- var ty = quadraticDerivativeAt(p1[1], cp1[1], p2[1], t);
- symbol.rotation = -Math.atan2(ty, tx) - Math.PI / 2;
- symbol.ignore = false;
- };
-
- effectLineProto.updateLayout = function (lineData, idx) {
- this.childAt(0).updateLayout(lineData, idx);
- var effectModel = lineData.getItemModel(idx).getModel('effect');
-
- this._updateEffectAnimation(lineData, effectModel, idx);
- };
-
- zrUtil.inherits(EffectLine, graphic.Group);
- var _default = EffectLine;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2314:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var graphic = __webpack_require__(906);
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @module echarts/chart/helper/Line
- */
-
- /**
- * @constructor
- * @extends {module:zrender/graphic/Group}
- * @alias {module:echarts/chart/helper/Polyline}
- */
- function Polyline(lineData, idx, seriesScope) {
- graphic.Group.call(this);
-
- this._createPolyline(lineData, idx, seriesScope);
- }
-
- var polylineProto = Polyline.prototype;
-
- polylineProto._createPolyline = function (lineData, idx, seriesScope) {
- // var seriesModel = lineData.hostModel;
- var points = lineData.getItemLayout(idx);
- var line = new graphic.Polyline({
- shape: {
- points: points
- }
- });
- this.add(line);
-
- this._updateCommonStl(lineData, idx, seriesScope);
- };
-
- polylineProto.updateData = function (lineData, idx, seriesScope) {
- var seriesModel = lineData.hostModel;
- var line = this.childAt(0);
- var target = {
- shape: {
- points: lineData.getItemLayout(idx)
- }
- };
- graphic.updateProps(line, target, seriesModel, idx);
-
- this._updateCommonStl(lineData, idx, seriesScope);
- };
-
- polylineProto._updateCommonStl = function (lineData, idx, seriesScope) {
- var line = this.childAt(0);
- var itemModel = lineData.getItemModel(idx);
- var visualColor = lineData.getItemVisual(idx, 'color');
- var lineStyle = seriesScope && seriesScope.lineStyle;
- var hoverLineStyle = seriesScope && seriesScope.hoverLineStyle;
-
- if (!seriesScope || lineData.hasItemOption) {
- lineStyle = itemModel.getModel('lineStyle').getLineStyle();
- hoverLineStyle = itemModel.getModel('emphasis.lineStyle').getLineStyle();
- }
-
- line.useStyle(zrUtil.defaults({
- strokeNoScale: true,
- fill: 'none',
- stroke: visualColor
- }, lineStyle));
- line.hoverStyle = hoverLineStyle;
- graphic.setHoverStyle(this);
- };
-
- polylineProto.updateLayout = function (lineData, idx) {
- var polyline = this.childAt(0);
- polyline.setShape('points', lineData.getItemLayout(idx));
- };
-
- zrUtil.inherits(Polyline, graphic.Group);
- var _default = Polyline;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2315:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var createRenderPlanner = __webpack_require__(1601);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /* global Float32Array */
- var _default = {
- seriesType: 'lines',
- plan: createRenderPlanner(),
- reset: function (seriesModel) {
- var coordSys = seriesModel.coordinateSystem;
- var isPolyline = seriesModel.get('polyline');
- var isLarge = seriesModel.pipelineContext.large;
-
- function progress(params, lineData) {
- var lineCoords = [];
-
- if (isLarge) {
- var points;
- var segCount = params.end - params.start;
-
- if (isPolyline) {
- var totalCoordsCount = 0;
-
- for (var i = params.start; i < params.end; i++) {
- totalCoordsCount += seriesModel.getLineCoordsCount(i);
- }
-
- points = new Float32Array(segCount + totalCoordsCount * 2);
- } else {
- points = new Float32Array(segCount * 4);
- }
-
- var offset = 0;
- var pt = [];
-
- for (var i = params.start; i < params.end; i++) {
- var len = seriesModel.getLineCoords(i, lineCoords);
-
- if (isPolyline) {
- points[offset++] = len;
- }
-
- for (var k = 0; k < len; k++) {
- pt = coordSys.dataToPoint(lineCoords[k], false, pt);
- points[offset++] = pt[0];
- points[offset++] = pt[1];
- }
- }
-
- lineData.setLayout('linesPoints', points);
- } else {
- for (var i = params.start; i < params.end; i++) {
- var itemModel = lineData.getItemModel(i);
- var len = seriesModel.getLineCoords(i, lineCoords);
- var pts = [];
-
- if (isPolyline) {
- for (var j = 0; j < len; j++) {
- pts.push(coordSys.dataToPoint(lineCoords[j]));
- }
- } else {
- pts[0] = coordSys.dataToPoint(lineCoords[0]);
- pts[1] = coordSys.dataToPoint(lineCoords[1]);
- var curveness = itemModel.get('lineStyle.curveness');
-
- if (+curveness) {
- pts[2] = [(pts[0][0] + pts[1][0]) / 2 - (pts[0][1] - pts[1][1]) * curveness, (pts[0][1] + pts[1][1]) / 2 - (pts[1][0] - pts[0][0]) * curveness];
- }
- }
-
- lineData.setItemLayout(i, pts);
- }
- }
- }
-
- return {
- progress: progress
- };
- }
- };
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2316:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- __webpack_require__(2687);
-
- __webpack_require__(2690);
-
- __webpack_require__(2691);
-
- __webpack_require__(1668);
-
- __webpack_require__(2695);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- echarts.extendComponentView({
- type: 'single'
- });
-
- /***/ }),
-
- /***/ 2317:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @param {Object} opt {labelInside}
- * @return {Object} {
- * position, rotation, labelDirection, labelOffset,
- * tickDirection, labelRotate, z2
- * }
- */
- function layout(axisModel, opt) {
- opt = opt || {};
- var single = axisModel.coordinateSystem;
- var axis = axisModel.axis;
- var layout = {};
- var axisPosition = axis.position;
- var orient = axis.orient;
- var rect = single.getRect();
- var rectBound = [rect.x, rect.x + rect.width, rect.y, rect.y + rect.height];
- var positionMap = {
- horizontal: {
- top: rectBound[2],
- bottom: rectBound[3]
- },
- vertical: {
- left: rectBound[0],
- right: rectBound[1]
- }
- };
- layout.position = [orient === 'vertical' ? positionMap.vertical[axisPosition] : rectBound[0], orient === 'horizontal' ? positionMap.horizontal[axisPosition] : rectBound[3]];
- var r = {
- horizontal: 0,
- vertical: 1
- };
- layout.rotation = Math.PI / 2 * r[orient];
- var directionMap = {
- top: -1,
- bottom: 1,
- right: 1,
- left: -1
- };
- layout.labelDirection = layout.tickDirection = layout.nameDirection = directionMap[axisPosition];
-
- if (axisModel.get('axisTick.inside')) {
- layout.tickDirection = -layout.tickDirection;
- }
-
- if (zrUtil.retrieve(opt.labelInside, axisModel.get('axisLabel.inside'))) {
- layout.labelDirection = -layout.labelDirection;
- }
-
- var labelRotation = opt.rotate;
- labelRotation == null && (labelRotation = axisModel.get('axisLabel.rotate'));
- layout.labelRotation = axisPosition === 'top' ? -labelRotation : labelRotation;
- layout.z2 = 1;
- return layout;
- }
-
- exports.layout = layout;
-
- /***/ }),
-
- /***/ 2318:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var modelUtil = __webpack_require__(1064);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @param {Object} finder contains {seriesIndex, dataIndex, dataIndexInside}
- * @param {module:echarts/model/Global} ecModel
- * @return {Object} {point: [x, y], el: ...} point Will not be null.
- */
- function _default(finder, ecModel) {
- var point = [];
- var seriesIndex = finder.seriesIndex;
- var seriesModel;
-
- if (seriesIndex == null || !(seriesModel = ecModel.getSeriesByIndex(seriesIndex))) {
- return {
- point: []
- };
- }
-
- var data = seriesModel.getData();
- var dataIndex = modelUtil.queryDataIndex(data, finder);
-
- if (dataIndex == null || dataIndex < 0 || zrUtil.isArray(dataIndex)) {
- return {
- point: []
- };
- }
-
- var el = data.getItemGraphicEl(dataIndex);
- var coordSys = seriesModel.coordinateSystem;
-
- if (seriesModel.getTooltipPosition) {
- point = seriesModel.getTooltipPosition(dataIndex) || [];
- } else if (coordSys && coordSys.dataToPoint) {
- point = coordSys.dataToPoint(data.getValues(zrUtil.map(coordSys.dimensions, function (dim) {
- return data.mapDimension(dim);
- }), dataIndex, true)) || [];
- } else if (el) {
- // Use graphic bounding rect
- var rect = el.getBoundingRect().clone();
- rect.applyTransform(el.transform);
- point = [rect.x + rect.width / 2, rect.y + rect.height / 2];
- }
-
- return {
- point: point,
- el: el
- };
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2319:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var env = __webpack_require__(1316);
-
- var _model = __webpack_require__(1064);
-
- var makeInner = _model.makeInner;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var inner = makeInner();
- var each = zrUtil.each;
- /**
- * @param {string} key
- * @param {module:echarts/ExtensionAPI} api
- * @param {Function} handler
- * param: {string} currTrigger
- * param: {Array.<number>} point
- */
-
- function register(key, api, handler) {
- if (env.node) {
- return;
- }
-
- var zr = api.getZr();
- inner(zr).records || (inner(zr).records = {});
- initGlobalListeners(zr, api);
- var record = inner(zr).records[key] || (inner(zr).records[key] = {});
- record.handler = handler;
- }
-
- function initGlobalListeners(zr, api) {
- if (inner(zr).initialized) {
- return;
- }
-
- inner(zr).initialized = true;
- useHandler('click', zrUtil.curry(doEnter, 'click'));
- useHandler('mousemove', zrUtil.curry(doEnter, 'mousemove')); // useHandler('mouseout', onLeave);
-
- useHandler('globalout', onLeave);
-
- function useHandler(eventType, cb) {
- zr.on(eventType, function (e) {
- var dis = makeDispatchAction(api);
- each(inner(zr).records, function (record) {
- record && cb(record, e, dis.dispatchAction);
- });
- dispatchTooltipFinally(dis.pendings, api);
- });
- }
- }
-
- function dispatchTooltipFinally(pendings, api) {
- var showLen = pendings.showTip.length;
- var hideLen = pendings.hideTip.length;
- var actuallyPayload;
-
- if (showLen) {
- actuallyPayload = pendings.showTip[showLen - 1];
- } else if (hideLen) {
- actuallyPayload = pendings.hideTip[hideLen - 1];
- }
-
- if (actuallyPayload) {
- actuallyPayload.dispatchAction = null;
- api.dispatchAction(actuallyPayload);
- }
- }
-
- function onLeave(record, e, dispatchAction) {
- record.handler('leave', null, dispatchAction);
- }
-
- function doEnter(currTrigger, record, e, dispatchAction) {
- record.handler(currTrigger, e, dispatchAction);
- }
-
- function makeDispatchAction(api) {
- var pendings = {
- showTip: [],
- hideTip: []
- }; // FIXME
- // better approach?
- // 'showTip' and 'hideTip' can be triggered by axisPointer and tooltip,
- // which may be conflict, (axisPointer call showTip but tooltip call hideTip);
- // So we have to add "final stage" to merge those dispatched actions.
-
- var dispatchAction = function (payload) {
- var pendingList = pendings[payload.type];
-
- if (pendingList) {
- pendingList.push(payload);
- } else {
- payload.dispatchAction = dispatchAction;
- api.dispatchAction(payload);
- }
- };
-
- return {
- dispatchAction: dispatchAction,
- pendings: pendings
- };
- }
- /**
- * @param {string} key
- * @param {module:echarts/ExtensionAPI} api
- */
-
-
- function unregister(key, api) {
- if (env.node) {
- return;
- }
-
- var zr = api.getZr();
- var record = (inner(zr).records || {})[key];
-
- if (record) {
- inner(zr).records[key] = null;
- }
- }
-
- exports.register = register;
- exports.unregister = unregister;
-
- /***/ }),
-
- /***/ 2320:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var BaseAxisPointer = __webpack_require__(1916);
-
- var viewHelper = __webpack_require__(1796);
-
- var cartesianAxisHelper = __webpack_require__(2296);
-
- var AxisView = __webpack_require__(1521);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var CartesianAxisPointer = BaseAxisPointer.extend({
- /**
- * @override
- */
- makeElOption: function (elOption, value, axisModel, axisPointerModel, api) {
- var axis = axisModel.axis;
- var grid = axis.grid;
- var axisPointerType = axisPointerModel.get('type');
- var otherExtent = getCartesian(grid, axis).getOtherAxis(axis).getGlobalExtent();
- var pixelValue = axis.toGlobalCoord(axis.dataToCoord(value, true));
-
- if (axisPointerType && axisPointerType !== 'none') {
- var elStyle = viewHelper.buildElStyle(axisPointerModel);
- var pointerOption = pointerShapeBuilder[axisPointerType](axis, pixelValue, otherExtent);
- pointerOption.style = elStyle;
- elOption.graphicKey = pointerOption.type;
- elOption.pointer = pointerOption;
- }
-
- var layoutInfo = cartesianAxisHelper.layout(grid.model, axisModel);
- viewHelper.buildCartesianSingleLabelElOption(value, elOption, layoutInfo, axisModel, axisPointerModel, api);
- },
-
- /**
- * @override
- */
- getHandleTransform: function (value, axisModel, axisPointerModel) {
- var layoutInfo = cartesianAxisHelper.layout(axisModel.axis.grid.model, axisModel, {
- labelInside: false
- });
- layoutInfo.labelMargin = axisPointerModel.get('handle.margin');
- return {
- position: viewHelper.getTransformedPosition(axisModel.axis, value, layoutInfo),
- rotation: layoutInfo.rotation + (layoutInfo.labelDirection < 0 ? Math.PI : 0)
- };
- },
-
- /**
- * @override
- */
- updateHandleTransform: function (transform, delta, axisModel, axisPointerModel) {
- var axis = axisModel.axis;
- var grid = axis.grid;
- var axisExtent = axis.getGlobalExtent(true);
- var otherExtent = getCartesian(grid, axis).getOtherAxis(axis).getGlobalExtent();
- var dimIndex = axis.dim === 'x' ? 0 : 1;
- var currPosition = transform.position;
- currPosition[dimIndex] += delta[dimIndex];
- currPosition[dimIndex] = Math.min(axisExtent[1], currPosition[dimIndex]);
- currPosition[dimIndex] = Math.max(axisExtent[0], currPosition[dimIndex]);
- var cursorOtherValue = (otherExtent[1] + otherExtent[0]) / 2;
- var cursorPoint = [cursorOtherValue, cursorOtherValue];
- cursorPoint[dimIndex] = currPosition[dimIndex]; // Make tooltip do not overlap axisPointer and in the middle of the grid.
-
- var tooltipOptions = [{
- verticalAlign: 'middle'
- }, {
- align: 'center'
- }];
- return {
- position: currPosition,
- rotation: transform.rotation,
- cursorPoint: cursorPoint,
- tooltipOption: tooltipOptions[dimIndex]
- };
- }
- });
-
- function getCartesian(grid, axis) {
- var opt = {};
- opt[axis.dim + 'AxisIndex'] = axis.index;
- return grid.getCartesian(opt);
- }
-
- var pointerShapeBuilder = {
- line: function (axis, pixelValue, otherExtent) {
- var targetShape = viewHelper.makeLineShape([pixelValue, otherExtent[0]], [pixelValue, otherExtent[1]], getAxisDimIndex(axis));
- return {
- type: 'Line',
- subPixelOptimize: true,
- shape: targetShape
- };
- },
- shadow: function (axis, pixelValue, otherExtent) {
- var bandWidth = Math.max(1, axis.getBandWidth());
- var span = otherExtent[1] - otherExtent[0];
- return {
- type: 'Rect',
- shape: viewHelper.makeRectShape([pixelValue - bandWidth / 2, otherExtent[0]], [bandWidth, span], getAxisDimIndex(axis))
- };
- }
- };
-
- function getAxisDimIndex(axis) {
- return axis.dim === 'x' ? 0 : 1;
- }
-
- AxisView.registerAxisPointerClass('CartesianAxisPointer', CartesianAxisPointer);
- var _default = CartesianAxisPointer;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2321:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _layout = __webpack_require__(1171);
-
- var getLayoutRect = _layout.getLayoutRect;
- var layoutBox = _layout.box;
- var positionElement = _layout.positionElement;
-
- var formatUtil = __webpack_require__(1186);
-
- var graphic = __webpack_require__(906);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Layout list like component.
- * It will box layout each items in group of component and then position the whole group in the viewport
- * @param {module:zrender/group/Group} group
- * @param {module:echarts/model/Component} componentModel
- * @param {module:echarts/ExtensionAPI}
- */
- function layout(group, componentModel, api) {
- var boxLayoutParams = componentModel.getBoxLayoutParams();
- var padding = componentModel.get('padding');
- var viewportSize = {
- width: api.getWidth(),
- height: api.getHeight()
- };
- var rect = getLayoutRect(boxLayoutParams, viewportSize, padding);
- layoutBox(componentModel.get('orient'), group, componentModel.get('itemGap'), rect.width, rect.height);
- positionElement(group, boxLayoutParams, viewportSize, padding);
- }
-
- function makeBackground(rect, componentModel) {
- var padding = formatUtil.normalizeCssArray(componentModel.get('padding'));
- var style = componentModel.getItemStyle(['color', 'opacity']);
- style.fill = componentModel.get('backgroundColor');
- var rect = new graphic.Rect({
- shape: {
- x: rect.x - padding[3],
- y: rect.y - padding[0],
- width: rect.width + padding[1] + padding[3],
- height: rect.height + padding[0] + padding[2],
- r: componentModel.get('borderRadius')
- },
- style: style,
- silent: true,
- z2: -1
- }); // FIXME
- // `subPixelOptimizeRect` may bring some gap between edge of viewpart
- // and background rect when setting like `left: 0`, `top: 0`.
- // graphic.subPixelOptimizeRect(rect);
-
- return rect;
- }
-
- exports.layout = layout;
- exports.makeBackground = makeBackground;
-
- /***/ }),
-
- /***/ 2322:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var zrUtil = __webpack_require__(864);
-
- var graphic = __webpack_require__(906);
-
- var modelUtil = __webpack_require__(1064);
-
- var brushHelper = __webpack_require__(2311);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var each = zrUtil.each;
- var indexOf = zrUtil.indexOf;
- var curry = zrUtil.curry;
- var COORD_CONVERTS = ['dataToPoint', 'pointToData']; // FIXME
- // how to genarialize to more coordinate systems.
-
- var INCLUDE_FINDER_MAIN_TYPES = ['grid', 'xAxis', 'yAxis', 'geo', 'graph', 'polar', 'radiusAxis', 'angleAxis', 'bmap'];
- /**
- * [option in constructor]:
- * {
- * Index/Id/Name of geo, xAxis, yAxis, grid: See util/model#parseFinder.
- * }
- *
- *
- * [targetInfo]:
- *
- * There can be multiple axes in a single targetInfo. Consider the case
- * of `grid` component, a targetInfo represents a grid which contains one or more
- * cartesian and one or more axes. And consider the case of parallel system,
- * which has multiple axes in a coordinate system.
- * Can be {
- * panelId: ...,
- * coordSys: <a representitive cartesian in grid (first cartesian by default)>,
- * coordSyses: all cartesians.
- * gridModel: <grid component>
- * xAxes: correspond to coordSyses on index
- * yAxes: correspond to coordSyses on index
- * }
- * or {
- * panelId: ...,
- * coordSys: <geo coord sys>
- * coordSyses: [<geo coord sys>]
- * geoModel: <geo component>
- * }
- *
- *
- * [panelOpt]:
- *
- * Make from targetInfo. Input to BrushController.
- * {
- * panelId: ...,
- * rect: ...
- * }
- *
- *
- * [area]:
- *
- * Generated by BrushController or user input.
- * {
- * panelId: Used to locate coordInfo directly. If user inpput, no panelId.
- * brushType: determine how to convert to/from coord('rect' or 'polygon' or 'lineX/Y').
- * Index/Id/Name of geo, xAxis, yAxis, grid: See util/model#parseFinder.
- * range: pixel range.
- * coordRange: representitive coord range (the first one of coordRanges).
- * coordRanges: <Array> coord ranges, used in multiple cartesian in one grid.
- * }
- */
-
- /**
- * @param {Object} option contains Index/Id/Name of xAxis/yAxis/geo/grid
- * Each can be {number|Array.<number>}. like: {xAxisIndex: [3, 4]}
- * @param {module:echarts/model/Global} ecModel
- * @param {Object} [opt]
- * @param {Array.<string>} [opt.include] include coordinate system types.
- */
-
- function BrushTargetManager(option, ecModel, opt) {
- /**
- * @private
- * @type {Array.<Object>}
- */
- var targetInfoList = this._targetInfoList = [];
- var info = {};
- var foundCpts = parseFinder(ecModel, option);
- each(targetInfoBuilders, function (builder, type) {
- if (!opt || !opt.include || indexOf(opt.include, type) >= 0) {
- builder(foundCpts, targetInfoList, info);
- }
- });
- }
-
- var proto = BrushTargetManager.prototype;
-
- proto.setOutputRanges = function (areas, ecModel) {
- this.matchOutputRanges(areas, ecModel, function (area, coordRange, coordSys) {
- (area.coordRanges || (area.coordRanges = [])).push(coordRange); // area.coordRange is the first of area.coordRanges
-
- if (!area.coordRange) {
- area.coordRange = coordRange; // In 'category' axis, coord to pixel is not reversible, so we can not
- // rebuild range by coordRange accrately, which may bring trouble when
- // brushing only one item. So we use __rangeOffset to rebuilding range
- // by coordRange. And this it only used in brush component so it is no
- // need to be adapted to coordRanges.
-
- var result = coordConvert[area.brushType](0, coordSys, coordRange);
- area.__rangeOffset = {
- offset: diffProcessor[area.brushType](result.values, area.range, [1, 1]),
- xyMinMax: result.xyMinMax
- };
- }
- });
- };
-
- proto.matchOutputRanges = function (areas, ecModel, cb) {
- each(areas, function (area) {
- var targetInfo = this.findTargetInfo(area, ecModel);
-
- if (targetInfo && targetInfo !== true) {
- zrUtil.each(targetInfo.coordSyses, function (coordSys) {
- var result = coordConvert[area.brushType](1, coordSys, area.range);
- cb(area, result.values, coordSys, ecModel);
- });
- }
- }, this);
- };
-
- proto.setInputRanges = function (areas, ecModel) {
- each(areas, function (area) {
- var targetInfo = this.findTargetInfo(area, ecModel);
- area.range = area.range || []; // convert coordRange to global range and set panelId.
-
- if (targetInfo && targetInfo !== true) {
- area.panelId = targetInfo.panelId; // (1) area.range shoule always be calculate from coordRange but does
- // not keep its original value, for the sake of the dataZoom scenario,
- // where area.coordRange remains unchanged but area.range may be changed.
- // (2) Only support converting one coordRange to pixel range in brush
- // component. So do not consider `coordRanges`.
- // (3) About __rangeOffset, see comment above.
-
- var result = coordConvert[area.brushType](0, targetInfo.coordSys, area.coordRange);
- var rangeOffset = area.__rangeOffset;
- area.range = rangeOffset ? diffProcessor[area.brushType](result.values, rangeOffset.offset, getScales(result.xyMinMax, rangeOffset.xyMinMax)) : result.values;
- }
- }, this);
- };
-
- proto.makePanelOpts = function (api, getDefaultBrushType) {
- return zrUtil.map(this._targetInfoList, function (targetInfo) {
- var rect = targetInfo.getPanelRect();
- return {
- panelId: targetInfo.panelId,
- defaultBrushType: getDefaultBrushType && getDefaultBrushType(targetInfo),
- clipPath: brushHelper.makeRectPanelClipPath(rect),
- isTargetByCursor: brushHelper.makeRectIsTargetByCursor(rect, api, targetInfo.coordSysModel),
- getLinearBrushOtherExtent: brushHelper.makeLinearBrushOtherExtent(rect)
- };
- });
- };
-
- proto.controlSeries = function (area, seriesModel, ecModel) {
- // Check whether area is bound in coord, and series do not belong to that coord.
- // If do not do this check, some brush (like lineX) will controll all axes.
- var targetInfo = this.findTargetInfo(area, ecModel);
- return targetInfo === true || targetInfo && indexOf(targetInfo.coordSyses, seriesModel.coordinateSystem) >= 0;
- };
- /**
- * If return Object, a coord found.
- * If reutrn true, global found.
- * Otherwise nothing found.
- *
- * @param {Object} area
- * @param {Array} targetInfoList
- * @return {Object|boolean}
- */
-
-
- proto.findTargetInfo = function (area, ecModel) {
- var targetInfoList = this._targetInfoList;
- var foundCpts = parseFinder(ecModel, area);
-
- for (var i = 0; i < targetInfoList.length; i++) {
- var targetInfo = targetInfoList[i];
- var areaPanelId = area.panelId;
-
- if (areaPanelId) {
- if (targetInfo.panelId === areaPanelId) {
- return targetInfo;
- }
- } else {
- for (var i = 0; i < targetInfoMatchers.length; i++) {
- if (targetInfoMatchers[i](foundCpts, targetInfo)) {
- return targetInfo;
- }
- }
- }
- }
-
- return true;
- };
-
- function formatMinMax(minMax) {
- minMax[0] > minMax[1] && minMax.reverse();
- return minMax;
- }
-
- function parseFinder(ecModel, option) {
- return modelUtil.parseFinder(ecModel, option, {
- includeMainTypes: INCLUDE_FINDER_MAIN_TYPES
- });
- }
-
- var targetInfoBuilders = {
- grid: function (foundCpts, targetInfoList) {
- var xAxisModels = foundCpts.xAxisModels;
- var yAxisModels = foundCpts.yAxisModels;
- var gridModels = foundCpts.gridModels; // Remove duplicated.
-
- var gridModelMap = zrUtil.createHashMap();
- var xAxesHas = {};
- var yAxesHas = {};
-
- if (!xAxisModels && !yAxisModels && !gridModels) {
- return;
- }
-
- each(xAxisModels, function (axisModel) {
- var gridModel = axisModel.axis.grid.model;
- gridModelMap.set(gridModel.id, gridModel);
- xAxesHas[gridModel.id] = true;
- });
- each(yAxisModels, function (axisModel) {
- var gridModel = axisModel.axis.grid.model;
- gridModelMap.set(gridModel.id, gridModel);
- yAxesHas[gridModel.id] = true;
- });
- each(gridModels, function (gridModel) {
- gridModelMap.set(gridModel.id, gridModel);
- xAxesHas[gridModel.id] = true;
- yAxesHas[gridModel.id] = true;
- });
- gridModelMap.each(function (gridModel) {
- var grid = gridModel.coordinateSystem;
- var cartesians = [];
- each(grid.getCartesians(), function (cartesian, index) {
- if (indexOf(xAxisModels, cartesian.getAxis('x').model) >= 0 || indexOf(yAxisModels, cartesian.getAxis('y').model) >= 0) {
- cartesians.push(cartesian);
- }
- });
- targetInfoList.push({
- panelId: 'grid--' + gridModel.id,
- gridModel: gridModel,
- coordSysModel: gridModel,
- // Use the first one as the representitive coordSys.
- coordSys: cartesians[0],
- coordSyses: cartesians,
- getPanelRect: panelRectBuilder.grid,
- xAxisDeclared: xAxesHas[gridModel.id],
- yAxisDeclared: yAxesHas[gridModel.id]
- });
- });
- },
- geo: function (foundCpts, targetInfoList) {
- each(foundCpts.geoModels, function (geoModel) {
- var coordSys = geoModel.coordinateSystem;
- targetInfoList.push({
- panelId: 'geo--' + geoModel.id,
- geoModel: geoModel,
- coordSysModel: geoModel,
- coordSys: coordSys,
- coordSyses: [coordSys],
- getPanelRect: panelRectBuilder.geo
- });
- });
- }
- };
- var targetInfoMatchers = [// grid
- function (foundCpts, targetInfo) {
- var xAxisModel = foundCpts.xAxisModel;
- var yAxisModel = foundCpts.yAxisModel;
- var gridModel = foundCpts.gridModel;
- !gridModel && xAxisModel && (gridModel = xAxisModel.axis.grid.model);
- !gridModel && yAxisModel && (gridModel = yAxisModel.axis.grid.model);
- return gridModel && gridModel === targetInfo.gridModel;
- }, // geo
- function (foundCpts, targetInfo) {
- var geoModel = foundCpts.geoModel;
- return geoModel && geoModel === targetInfo.geoModel;
- }];
- var panelRectBuilder = {
- grid: function () {
- // grid is not Transformable.
- return this.coordSys.grid.getRect().clone();
- },
- geo: function () {
- var coordSys = this.coordSys;
- var rect = coordSys.getBoundingRect().clone(); // geo roam and zoom transform
-
- rect.applyTransform(graphic.getTransform(coordSys));
- return rect;
- }
- };
- var coordConvert = {
- lineX: curry(axisConvert, 0),
- lineY: curry(axisConvert, 1),
- rect: function (to, coordSys, rangeOrCoordRange) {
- var xminymin = coordSys[COORD_CONVERTS[to]]([rangeOrCoordRange[0][0], rangeOrCoordRange[1][0]]);
- var xmaxymax = coordSys[COORD_CONVERTS[to]]([rangeOrCoordRange[0][1], rangeOrCoordRange[1][1]]);
- var values = [formatMinMax([xminymin[0], xmaxymax[0]]), formatMinMax([xminymin[1], xmaxymax[1]])];
- return {
- values: values,
- xyMinMax: values
- };
- },
- polygon: function (to, coordSys, rangeOrCoordRange) {
- var xyMinMax = [[Infinity, -Infinity], [Infinity, -Infinity]];
- var values = zrUtil.map(rangeOrCoordRange, function (item) {
- var p = coordSys[COORD_CONVERTS[to]](item);
- xyMinMax[0][0] = Math.min(xyMinMax[0][0], p[0]);
- xyMinMax[1][0] = Math.min(xyMinMax[1][0], p[1]);
- xyMinMax[0][1] = Math.max(xyMinMax[0][1], p[0]);
- xyMinMax[1][1] = Math.max(xyMinMax[1][1], p[1]);
- return p;
- });
- return {
- values: values,
- xyMinMax: xyMinMax
- };
- }
- };
-
- function axisConvert(axisNameIndex, to, coordSys, rangeOrCoordRange) {
- var axis = coordSys.getAxis(['x', 'y'][axisNameIndex]);
- var values = formatMinMax(zrUtil.map([0, 1], function (i) {
- return to ? axis.coordToData(axis.toLocalCoord(rangeOrCoordRange[i])) : axis.toGlobalCoord(axis.dataToCoord(rangeOrCoordRange[i]));
- }));
- var xyMinMax = [];
- xyMinMax[axisNameIndex] = values;
- xyMinMax[1 - axisNameIndex] = [NaN, NaN];
- return {
- values: values,
- xyMinMax: xyMinMax
- };
- }
-
- var diffProcessor = {
- lineX: curry(axisDiffProcessor, 0),
- lineY: curry(axisDiffProcessor, 1),
- rect: function (values, refer, scales) {
- return [[values[0][0] - scales[0] * refer[0][0], values[0][1] - scales[0] * refer[0][1]], [values[1][0] - scales[1] * refer[1][0], values[1][1] - scales[1] * refer[1][1]]];
- },
- polygon: function (values, refer, scales) {
- return zrUtil.map(values, function (item, idx) {
- return [item[0] - scales[0] * refer[idx][0], item[1] - scales[1] * refer[idx][1]];
- });
- }
- };
-
- function axisDiffProcessor(axisNameIndex, values, refer, scales) {
- return [values[0] - scales[axisNameIndex] * refer[0], values[1] - scales[axisNameIndex] * refer[1]];
- } // We have to process scale caused by dataZoom manually,
- // although it might be not accurate.
-
-
- function getScales(xyMinMaxCurr, xyMinMaxOrigin) {
- var sizeCurr = getSize(xyMinMaxCurr);
- var sizeOrigin = getSize(xyMinMaxOrigin);
- var scales = [sizeCurr[0] / sizeOrigin[0], sizeCurr[1] / sizeOrigin[1]];
- isNaN(scales[0]) && (scales[0] = 1);
- isNaN(scales[1]) && (scales[1] = 1);
- return scales;
- }
-
- function getSize(xyMinMax) {
- return xyMinMax ? [xyMinMax[0][1] - xyMinMax[0][0], xyMinMax[1][1] - xyMinMax[1][0]] : [NaN, NaN];
- }
-
- var _default = BrushTargetManager;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2323:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var each = zrUtil.each;
- var ATTR = '\0_ec_hist_store';
- /**
- * @param {module:echarts/model/Global} ecModel
- * @param {Object} newSnapshot {dataZoomId, batch: [payloadInfo, ...]}
- */
-
- function push(ecModel, newSnapshot) {
- var store = giveStore(ecModel); // If previous dataZoom can not be found,
- // complete an range with current range.
-
- each(newSnapshot, function (batchItem, dataZoomId) {
- var i = store.length - 1;
-
- for (; i >= 0; i--) {
- var snapshot = store[i];
-
- if (snapshot[dataZoomId]) {
- break;
- }
- }
-
- if (i < 0) {
- // No origin range set, create one by current range.
- var dataZoomModel = ecModel.queryComponents({
- mainType: 'dataZoom',
- subType: 'select',
- id: dataZoomId
- })[0];
-
- if (dataZoomModel) {
- var percentRange = dataZoomModel.getPercentRange();
- store[0][dataZoomId] = {
- dataZoomId: dataZoomId,
- start: percentRange[0],
- end: percentRange[1]
- };
- }
- }
- });
- store.push(newSnapshot);
- }
- /**
- * @param {module:echarts/model/Global} ecModel
- * @return {Object} snapshot
- */
-
-
- function pop(ecModel) {
- var store = giveStore(ecModel);
- var head = store[store.length - 1];
- store.length > 1 && store.pop(); // Find top for all dataZoom.
-
- var snapshot = {};
- each(head, function (batchItem, dataZoomId) {
- for (var i = store.length - 1; i >= 0; i--) {
- var batchItem = store[i][dataZoomId];
-
- if (batchItem) {
- snapshot[dataZoomId] = batchItem;
- break;
- }
- }
- });
- return snapshot;
- }
- /**
- * @param {module:echarts/model/Global} ecModel
- */
-
-
- function clear(ecModel) {
- ecModel[ATTR] = null;
- }
- /**
- * @param {module:echarts/model/Global} ecModel
- * @return {number} records. always >= 1.
- */
-
-
- function count(ecModel) {
- return giveStore(ecModel).length;
- }
- /**
- * [{key: dataZoomId, value: {dataZoomId, range}}, ...]
- * History length of each dataZoom may be different.
- * this._history[0] is used to store origin range.
- * @type {Array.<Object>}
- */
-
-
- function giveStore(ecModel) {
- var store = ecModel[ATTR];
-
- if (!store) {
- store = ecModel[ATTR] = [{}];
- }
-
- return store;
- }
-
- exports.push = push;
- exports.pop = pop;
- exports.clear = clear;
- exports.count = count;
-
- /***/ }),
-
- /***/ 2324:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- __webpack_require__(2325);
-
- __webpack_require__(2778);
-
- __webpack_require__(2326);
-
- var legendFilter = __webpack_require__(2779);
-
- var Component = __webpack_require__(1321);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // Do not contain scrollable legend, for sake of file size.
- // Series Filter
- echarts.registerProcessor(echarts.PRIORITY.PROCESSOR.SERIES_FILTER, legendFilter);
- Component.registerSubTypeDefaulter('legend', function () {
- // Default 'plain' when no type specified.
- return 'plain';
- });
-
- /***/ }),
-
- /***/ 2325:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var Model = __webpack_require__(1317);
-
- var _model = __webpack_require__(1064);
-
- var isNameSpecified = _model.isNameSpecified;
-
- var lang = __webpack_require__(1483);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var langSelector = lang.legend.selector;
- var defaultSelectorOption = {
- all: {
- type: 'all',
- title: zrUtil.clone(langSelector.all)
- },
- inverse: {
- type: 'inverse',
- title: zrUtil.clone(langSelector.inverse)
- }
- };
- var LegendModel = echarts.extendComponentModel({
- type: 'legend.plain',
- dependencies: ['series'],
- layoutMode: {
- type: 'box',
- // legend.width/height are maxWidth/maxHeight actually,
- // whereas realy width/height is calculated by its content.
- // (Setting {left: 10, right: 10} does not make sense).
- // So consider the case:
- // `setOption({legend: {left: 10});`
- // then `setOption({legend: {right: 10});`
- // The previous `left` should be cleared by setting `ignoreSize`.
- ignoreSize: true
- },
- init: function (option, parentModel, ecModel) {
- this.mergeDefaultAndTheme(option, ecModel);
- option.selected = option.selected || {};
-
- this._updateSelector(option);
- },
- mergeOption: function (option) {
- LegendModel.superCall(this, 'mergeOption', option);
-
- this._updateSelector(option);
- },
- _updateSelector: function (option) {
- var selector = option.selector;
-
- if (selector === true) {
- selector = option.selector = ['all', 'inverse'];
- }
-
- if (zrUtil.isArray(selector)) {
- zrUtil.each(selector, function (item, index) {
- zrUtil.isString(item) && (item = {
- type: item
- });
- selector[index] = zrUtil.merge(item, defaultSelectorOption[item.type]);
- });
- }
- },
- optionUpdated: function () {
- this._updateData(this.ecModel);
-
- var legendData = this._data; // If selectedMode is single, try to select one
-
- if (legendData[0] && this.get('selectedMode') === 'single') {
- var hasSelected = false; // If has any selected in option.selected
-
- for (var i = 0; i < legendData.length; i++) {
- var name = legendData[i].get('name');
-
- if (this.isSelected(name)) {
- // Force to unselect others
- this.select(name);
- hasSelected = true;
- break;
- }
- } // Try select the first if selectedMode is single
-
-
- !hasSelected && this.select(legendData[0].get('name'));
- }
- },
- _updateData: function (ecModel) {
- var potentialData = [];
- var availableNames = [];
- ecModel.eachRawSeries(function (seriesModel) {
- var seriesName = seriesModel.name;
- availableNames.push(seriesName);
- var isPotential;
-
- if (seriesModel.legendVisualProvider) {
- var provider = seriesModel.legendVisualProvider;
- var names = provider.getAllNames();
-
- if (!ecModel.isSeriesFiltered(seriesModel)) {
- availableNames = availableNames.concat(names);
- }
-
- if (names.length) {
- potentialData = potentialData.concat(names);
- } else {
- isPotential = true;
- }
- } else {
- isPotential = true;
- }
-
- if (isPotential && isNameSpecified(seriesModel)) {
- potentialData.push(seriesModel.name);
- }
- });
- /**
- * @type {Array.<string>}
- * @private
- */
-
- this._availableNames = availableNames; // If legend.data not specified in option, use availableNames as data,
- // which is convinient for user preparing option.
-
- var rawData = this.get('data') || potentialData;
- var legendData = zrUtil.map(rawData, function (dataItem) {
- // Can be string or number
- if (typeof dataItem === 'string' || typeof dataItem === 'number') {
- dataItem = {
- name: dataItem
- };
- }
-
- return new Model(dataItem, this, this.ecModel);
- }, this);
- /**
- * @type {Array.<module:echarts/model/Model>}
- * @private
- */
-
- this._data = legendData;
- },
-
- /**
- * @return {Array.<module:echarts/model/Model>}
- */
- getData: function () {
- return this._data;
- },
-
- /**
- * @param {string} name
- */
- select: function (name) {
- var selected = this.option.selected;
- var selectedMode = this.get('selectedMode');
-
- if (selectedMode === 'single') {
- var data = this._data;
- zrUtil.each(data, function (dataItem) {
- selected[dataItem.get('name')] = false;
- });
- }
-
- selected[name] = true;
- },
-
- /**
- * @param {string} name
- */
- unSelect: function (name) {
- if (this.get('selectedMode') !== 'single') {
- this.option.selected[name] = false;
- }
- },
-
- /**
- * @param {string} name
- */
- toggleSelected: function (name) {
- var selected = this.option.selected; // Default is true
-
- if (!selected.hasOwnProperty(name)) {
- selected[name] = true;
- }
-
- this[selected[name] ? 'unSelect' : 'select'](name);
- },
- allSelect: function () {
- var data = this._data;
- var selected = this.option.selected;
- zrUtil.each(data, function (dataItem) {
- selected[dataItem.get('name', true)] = true;
- });
- },
- inverseSelect: function () {
- var data = this._data;
- var selected = this.option.selected;
- zrUtil.each(data, function (dataItem) {
- var name = dataItem.get('name', true); // Initially, default value is true
-
- if (!selected.hasOwnProperty(name)) {
- selected[name] = true;
- }
-
- selected[name] = !selected[name];
- });
- },
-
- /**
- * @param {string} name
- */
- isSelected: function (name) {
- var selected = this.option.selected;
- return !(selected.hasOwnProperty(name) && !selected[name]) && zrUtil.indexOf(this._availableNames, name) >= 0;
- },
- getOrient: function () {
- return this.get('orient') === 'vertical' ? {
- index: 1,
- name: 'vertical'
- } : {
- index: 0,
- name: 'horizontal'
- };
- },
- defaultOption: {
- // 一级层叠
- zlevel: 0,
- // 二级层叠
- z: 4,
- show: true,
- // 布局方式,默认为水平布局,可选为:
- // 'horizontal' | 'vertical'
- orient: 'horizontal',
- left: 'center',
- // right: 'center',
- top: 0,
- // bottom: null,
- // 水平对齐
- // 'auto' | 'left' | 'right'
- // 默认为 'auto', 根据 x 的位置判断是左对齐还是右对齐
- align: 'auto',
- backgroundColor: 'rgba(0,0,0,0)',
- // 图例边框颜色
- borderColor: '#ccc',
- borderRadius: 0,
- // 图例边框线宽,单位px,默认为0(无边框)
- borderWidth: 0,
- // 图例内边距,单位px,默认各方向内边距为5,
- // 接受数组分别设定上右下左边距,同css
- padding: 5,
- // 各个item之间的间隔,单位px,默认为10,
- // 横向布局时为水平间隔,纵向布局时为纵向间隔
- itemGap: 10,
- // the width of legend symbol
- itemWidth: 25,
- // the height of legend symbol
- itemHeight: 14,
- // the color of unselected legend symbol
- inactiveColor: '#ccc',
- // the borderColor of unselected legend symbol
- inactiveBorderColor: '#ccc',
- itemStyle: {
- // the default borderWidth of legend symbol
- borderWidth: 0
- },
- textStyle: {
- // 图例文字颜色
- color: '#333'
- },
- // formatter: '',
- // 选择模式,默认开启图例开关
- selectedMode: true,
- // 配置默认选中状态,可配合LEGEND.SELECTED事件做动态数据载入
- // selected: null,
- // 图例内容(详见legend.data,数组中每一项代表一个item
- // data: [],
- // Usage:
- // selector: [{type: 'all or inverse', title: xxx}]
- // or
- // selector: true
- // or
- // selector: ['all', 'inverse']
- selector: false,
- selectorLabel: {
- show: true,
- borderRadius: 10,
- padding: [3, 5, 3, 5],
- fontSize: 12,
- fontFamily: ' sans-serif',
- color: '#666',
- borderWidth: 1,
- borderColor: '#666'
- },
- emphasis: {
- selectorLabel: {
- show: true,
- color: '#eee',
- backgroundColor: '#666'
- }
- },
- // Value can be 'start' or 'end'
- selectorPosition: 'auto',
- selectorItemGap: 7,
- selectorButtonGap: 10,
- // Tooltip 相关配置
- tooltip: {
- show: false
- }
- }
- });
- var _default = LegendModel;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2326:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var _symbol = __webpack_require__(1404);
-
- var createSymbol = _symbol.createSymbol;
-
- var graphic = __webpack_require__(906);
-
- var _listComponent = __webpack_require__(2321);
-
- var makeBackground = _listComponent.makeBackground;
-
- var layoutUtil = __webpack_require__(1171);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var curry = zrUtil.curry;
- var each = zrUtil.each;
- var Group = graphic.Group;
-
- var _default = echarts.extendComponentView({
- type: 'legend.plain',
- newlineDisabled: false,
-
- /**
- * @override
- */
- init: function () {
- /**
- * @private
- * @type {module:zrender/container/Group}
- */
- this.group.add(this._contentGroup = new Group());
- /**
- * @private
- * @type {module:zrender/Element}
- */
-
- this._backgroundEl;
- /**
- * @private
- * @type {module:zrender/container/Group}
- */
-
- this.group.add(this._selectorGroup = new Group());
- /**
- * If first rendering, `contentGroup.position` is [0, 0], which
- * does not make sense and may cause unexepcted animation if adopted.
- * @private
- * @type {boolean}
- */
-
- this._isFirstRender = true;
- },
-
- /**
- * @protected
- */
- getContentGroup: function () {
- return this._contentGroup;
- },
-
- /**
- * @protected
- */
- getSelectorGroup: function () {
- return this._selectorGroup;
- },
-
- /**
- * @override
- */
- render: function (legendModel, ecModel, api) {
- var isFirstRender = this._isFirstRender;
- this._isFirstRender = false;
- this.resetInner();
-
- if (!legendModel.get('show', true)) {
- return;
- }
-
- var itemAlign = legendModel.get('align');
- var orient = legendModel.get('orient');
-
- if (!itemAlign || itemAlign === 'auto') {
- itemAlign = legendModel.get('left') === 'right' && orient === 'vertical' ? 'right' : 'left';
- }
-
- var selector = legendModel.get('selector', true);
- var selectorPosition = legendModel.get('selectorPosition', true);
-
- if (selector && (!selectorPosition || selectorPosition === 'auto')) {
- selectorPosition = orient === 'horizontal' ? 'end' : 'start';
- }
-
- this.renderInner(itemAlign, legendModel, ecModel, api, selector, orient, selectorPosition); // Perform layout.
-
- var positionInfo = legendModel.getBoxLayoutParams();
- var viewportSize = {
- width: api.getWidth(),
- height: api.getHeight()
- };
- var padding = legendModel.get('padding');
- var maxSize = layoutUtil.getLayoutRect(positionInfo, viewportSize, padding);
- var mainRect = this.layoutInner(legendModel, itemAlign, maxSize, isFirstRender, selector, selectorPosition); // Place mainGroup, based on the calculated `mainRect`.
-
- var layoutRect = layoutUtil.getLayoutRect(zrUtil.defaults({
- width: mainRect.width,
- height: mainRect.height
- }, positionInfo), viewportSize, padding);
- this.group.attr('position', [layoutRect.x - mainRect.x, layoutRect.y - mainRect.y]); // Render background after group is layout.
-
- this.group.add(this._backgroundEl = makeBackground(mainRect, legendModel));
- },
-
- /**
- * @protected
- */
- resetInner: function () {
- this.getContentGroup().removeAll();
- this._backgroundEl && this.group.remove(this._backgroundEl);
- this.getSelectorGroup().removeAll();
- },
-
- /**
- * @protected
- */
- renderInner: function (itemAlign, legendModel, ecModel, api, selector, orient, selectorPosition) {
- var contentGroup = this.getContentGroup();
- var legendDrawnMap = zrUtil.createHashMap();
- var selectMode = legendModel.get('selectedMode');
- var excludeSeriesId = [];
- ecModel.eachRawSeries(function (seriesModel) {
- !seriesModel.get('legendHoverLink') && excludeSeriesId.push(seriesModel.id);
- });
- each(legendModel.getData(), function (itemModel, dataIndex) {
- var name = itemModel.get('name'); // Use empty string or \n as a newline string
-
- if (!this.newlineDisabled && (name === '' || name === '\n')) {
- contentGroup.add(new Group({
- newline: true
- }));
- return;
- } // Representitive series.
-
-
- var seriesModel = ecModel.getSeriesByName(name)[0];
-
- if (legendDrawnMap.get(name)) {
- // Have been drawed
- return;
- } // Legend to control series.
-
-
- if (seriesModel) {
- var data = seriesModel.getData();
- var color = data.getVisual('color');
- var borderColor = data.getVisual('borderColor'); // If color is a callback function
-
- if (typeof color === 'function') {
- // Use the first data
- color = color(seriesModel.getDataParams(0));
- } // If borderColor is a callback function
-
-
- if (typeof borderColor === 'function') {
- // Use the first data
- borderColor = borderColor(seriesModel.getDataParams(0));
- } // Using rect symbol defaultly
-
-
- var legendSymbolType = data.getVisual('legendSymbol') || 'roundRect';
- var symbolType = data.getVisual('symbol');
-
- var itemGroup = this._createItem(name, dataIndex, itemModel, legendModel, legendSymbolType, symbolType, itemAlign, color, borderColor, selectMode);
-
- itemGroup.on('click', curry(dispatchSelectAction, name, null, api, excludeSeriesId)).on('mouseover', curry(dispatchHighlightAction, seriesModel.name, null, api, excludeSeriesId)).on('mouseout', curry(dispatchDownplayAction, seriesModel.name, null, api, excludeSeriesId));
- legendDrawnMap.set(name, true);
- } else {
- // Legend to control data. In pie and funnel.
- ecModel.eachRawSeries(function (seriesModel) {
- // In case multiple series has same data name
- if (legendDrawnMap.get(name)) {
- return;
- }
-
- if (seriesModel.legendVisualProvider) {
- var provider = seriesModel.legendVisualProvider;
-
- if (!provider.containName(name)) {
- return;
- }
-
- var idx = provider.indexOfName(name);
- var color = provider.getItemVisual(idx, 'color');
- var borderColor = provider.getItemVisual(idx, 'borderColor');
- var legendSymbolType = 'roundRect';
-
- var itemGroup = this._createItem(name, dataIndex, itemModel, legendModel, legendSymbolType, null, itemAlign, color, borderColor, selectMode); // FIXME: consider different series has items with the same name.
-
-
- itemGroup.on('click', curry(dispatchSelectAction, null, name, api, excludeSeriesId)) // Should not specify the series name, consider legend controls
- // more than one pie series.
- .on('mouseover', curry(dispatchHighlightAction, null, name, api, excludeSeriesId)).on('mouseout', curry(dispatchDownplayAction, null, name, api, excludeSeriesId));
- legendDrawnMap.set(name, true);
- }
- }, this);
- }
- }, this);
-
- if (selector) {
- this._createSelector(selector, legendModel, api, orient, selectorPosition);
- }
- },
- _createSelector: function (selector, legendModel, api, orient, selectorPosition) {
- var selectorGroup = this.getSelectorGroup();
- each(selector, function (selectorItem) {
- createSelectorButton(selectorItem);
- });
-
- function createSelectorButton(selectorItem) {
- var type = selectorItem.type;
- var labelText = new graphic.Text({
- style: {
- x: 0,
- y: 0,
- align: 'center',
- verticalAlign: 'middle'
- },
- onclick: function () {
- api.dispatchAction({
- type: type === 'all' ? 'legendAllSelect' : 'legendInverseSelect'
- });
- }
- });
- selectorGroup.add(labelText);
- var labelModel = legendModel.getModel('selectorLabel');
- var emphasisLabelModel = legendModel.getModel('emphasis.selectorLabel');
- graphic.setLabelStyle(labelText.style, labelText.hoverStyle = {}, labelModel, emphasisLabelModel, {
- defaultText: selectorItem.title,
- isRectText: false
- });
- graphic.setHoverStyle(labelText);
- }
- },
- _createItem: function (name, dataIndex, itemModel, legendModel, legendSymbolType, symbolType, itemAlign, color, borderColor, selectMode) {
- var itemWidth = legendModel.get('itemWidth');
- var itemHeight = legendModel.get('itemHeight');
- var inactiveColor = legendModel.get('inactiveColor');
- var inactiveBorderColor = legendModel.get('inactiveBorderColor');
- var symbolKeepAspect = legendModel.get('symbolKeepAspect');
- var legendModelItemStyle = legendModel.getModel('itemStyle');
- var isSelected = legendModel.isSelected(name);
- var itemGroup = new Group();
- var textStyleModel = itemModel.getModel('textStyle');
- var itemIcon = itemModel.get('icon');
- var tooltipModel = itemModel.getModel('tooltip');
- var legendGlobalTooltipModel = tooltipModel.parentModel; // Use user given icon first
-
- legendSymbolType = itemIcon || legendSymbolType;
- var legendSymbol = createSymbol(legendSymbolType, 0, 0, itemWidth, itemHeight, isSelected ? color : inactiveColor, // symbolKeepAspect default true for legend
- symbolKeepAspect == null ? true : symbolKeepAspect);
- itemGroup.add(setSymbolStyle(legendSymbol, legendSymbolType, legendModelItemStyle, borderColor, inactiveBorderColor, isSelected)); // Compose symbols
- // PENDING
-
- if (!itemIcon && symbolType // At least show one symbol, can't be all none
- && (symbolType !== legendSymbolType || symbolType === 'none')) {
- var size = itemHeight * 0.8;
-
- if (symbolType === 'none') {
- symbolType = 'circle';
- }
-
- var legendSymbolCenter = createSymbol(symbolType, (itemWidth - size) / 2, (itemHeight - size) / 2, size, size, isSelected ? color : inactiveColor, // symbolKeepAspect default true for legend
- symbolKeepAspect == null ? true : symbolKeepAspect); // Put symbol in the center
-
- itemGroup.add(setSymbolStyle(legendSymbolCenter, symbolType, legendModelItemStyle, borderColor, inactiveBorderColor, isSelected));
- }
-
- var textX = itemAlign === 'left' ? itemWidth + 5 : -5;
- var textAlign = itemAlign;
- var formatter = legendModel.get('formatter');
- var content = name;
-
- if (typeof formatter === 'string' && formatter) {
- content = formatter.replace('{name}', name != null ? name : '');
- } else if (typeof formatter === 'function') {
- content = formatter(name);
- }
-
- itemGroup.add(new graphic.Text({
- style: graphic.setTextStyle({}, textStyleModel, {
- text: content,
- x: textX,
- y: itemHeight / 2,
- textFill: isSelected ? textStyleModel.getTextColor() : inactiveColor,
- textAlign: textAlign,
- textVerticalAlign: 'middle'
- })
- })); // Add a invisible rect to increase the area of mouse hover
-
- var hitRect = new graphic.Rect({
- shape: itemGroup.getBoundingRect(),
- invisible: true,
- tooltip: tooltipModel.get('show') ? zrUtil.extend({
- content: name,
- // Defaul formatter
- formatter: legendGlobalTooltipModel.get('formatter', true) || function () {
- return name;
- },
- formatterParams: {
- componentType: 'legend',
- legendIndex: legendModel.componentIndex,
- name: name,
- $vars: ['name']
- }
- }, tooltipModel.option) : null
- });
- itemGroup.add(hitRect);
- itemGroup.eachChild(function (child) {
- child.silent = true;
- });
- hitRect.silent = !selectMode;
- this.getContentGroup().add(itemGroup);
- graphic.setHoverStyle(itemGroup);
- itemGroup.__legendDataIndex = dataIndex;
- return itemGroup;
- },
-
- /**
- * @protected
- */
- layoutInner: function (legendModel, itemAlign, maxSize, isFirstRender, selector, selectorPosition) {
- var contentGroup = this.getContentGroup();
- var selectorGroup = this.getSelectorGroup(); // Place items in contentGroup.
-
- layoutUtil.box(legendModel.get('orient'), contentGroup, legendModel.get('itemGap'), maxSize.width, maxSize.height);
- var contentRect = contentGroup.getBoundingRect();
- var contentPos = [-contentRect.x, -contentRect.y];
-
- if (selector) {
- // Place buttons in selectorGroup
- layoutUtil.box( // Buttons in selectorGroup always layout horizontally
- 'horizontal', selectorGroup, legendModel.get('selectorItemGap', true));
- var selectorRect = selectorGroup.getBoundingRect();
- var selectorPos = [-selectorRect.x, -selectorRect.y];
- var selectorButtonGap = legendModel.get('selectorButtonGap', true);
- var orientIdx = legendModel.getOrient().index;
- var wh = orientIdx === 0 ? 'width' : 'height';
- var hw = orientIdx === 0 ? 'height' : 'width';
- var yx = orientIdx === 0 ? 'y' : 'x';
-
- if (selectorPosition === 'end') {
- selectorPos[orientIdx] += contentRect[wh] + selectorButtonGap;
- } else {
- contentPos[orientIdx] += selectorRect[wh] + selectorButtonGap;
- } //Always align selector to content as 'middle'
-
-
- selectorPos[1 - orientIdx] += contentRect[hw] / 2 - selectorRect[hw] / 2;
- selectorGroup.attr('position', selectorPos);
- contentGroup.attr('position', contentPos);
- var mainRect = {
- x: 0,
- y: 0
- };
- mainRect[wh] = contentRect[wh] + selectorButtonGap + selectorRect[wh];
- mainRect[hw] = Math.max(contentRect[hw], selectorRect[hw]);
- mainRect[yx] = Math.min(0, selectorRect[yx] + selectorPos[1 - orientIdx]);
- return mainRect;
- } else {
- contentGroup.attr('position', contentPos);
- return this.group.getBoundingRect();
- }
- },
-
- /**
- * @protected
- */
- remove: function () {
- this.getContentGroup().removeAll();
- this._isFirstRender = true;
- }
- });
-
- function setSymbolStyle(symbol, symbolType, legendModelItemStyle, borderColor, inactiveBorderColor, isSelected) {
- var itemStyle;
-
- if (symbolType !== 'line' && symbolType.indexOf('empty') < 0) {
- itemStyle = legendModelItemStyle.getItemStyle();
- symbol.style.stroke = borderColor;
-
- if (!isSelected) {
- itemStyle.stroke = inactiveBorderColor;
- }
- } else {
- itemStyle = legendModelItemStyle.getItemStyle(['borderWidth', 'borderColor']);
- }
-
- return symbol.setStyle(itemStyle);
- }
-
- function dispatchSelectAction(seriesName, dataName, api, excludeSeriesId) {
- // downplay before unselect
- dispatchDownplayAction(seriesName, dataName, api, excludeSeriesId);
- api.dispatchAction({
- type: 'legendToggleSelect',
- name: seriesName != null ? seriesName : dataName
- }); // highlight after select
-
- dispatchHighlightAction(seriesName, dataName, api, excludeSeriesId);
- }
-
- function dispatchHighlightAction(seriesName, dataName, api, excludeSeriesId) {
- // If element hover will move to a hoverLayer.
- var el = api.getZr().storage.getDisplayList()[0];
-
- if (!(el && el.useHoverLayer)) {
- api.dispatchAction({
- type: 'highlight',
- seriesName: seriesName,
- name: dataName,
- excludeSeriesId: excludeSeriesId
- });
- }
- }
-
- function dispatchDownplayAction(seriesName, dataName, api, excludeSeriesId) {
- // If element hover will move to a hoverLayer.
- var el = api.getZr().storage.getDisplayList()[0];
-
- if (!(el && el.useHoverLayer)) {
- api.dispatchAction({
- type: 'downplay',
- seriesName: seriesName,
- name: dataName,
- excludeSeriesId: excludeSeriesId
- });
- }
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2327:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- __webpack_require__(1918);
-
- __webpack_require__(1606);
-
- __webpack_require__(1607);
-
- __webpack_require__(2784);
-
- __webpack_require__(2785);
-
- __webpack_require__(1920);
-
- __webpack_require__(1921);
-
- /***/ }),
-
- /***/ 2328:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- __webpack_require__(1918);
-
- __webpack_require__(1606);
-
- __webpack_require__(1607);
-
- __webpack_require__(2786);
-
- __webpack_require__(2787);
-
- __webpack_require__(1920);
-
- __webpack_require__(1921);
-
- /***/ }),
-
- /***/ 2329:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var preprocessor = __webpack_require__(2330);
-
- __webpack_require__(2331);
-
- __webpack_require__(2332);
-
- __webpack_require__(2790);
-
- __webpack_require__(2791);
-
- __webpack_require__(2337);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * DataZoom component entry
- */
- echarts.registerPreprocessor(preprocessor);
-
- /***/ }),
-
- /***/ 2330:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var each = zrUtil.each;
-
- function _default(option) {
- var visualMap = option && option.visualMap;
-
- if (!zrUtil.isArray(visualMap)) {
- visualMap = visualMap ? [visualMap] : [];
- }
-
- each(visualMap, function (opt) {
- if (!opt) {
- return;
- } // rename splitList to pieces
-
-
- if (has(opt, 'splitList') && !has(opt, 'pieces')) {
- opt.pieces = opt.splitList;
- delete opt.splitList;
- }
-
- var pieces = opt.pieces;
-
- if (pieces && zrUtil.isArray(pieces)) {
- each(pieces, function (piece) {
- if (zrUtil.isObject(piece)) {
- if (has(piece, 'start') && !has(piece, 'min')) {
- piece.min = piece.start;
- }
-
- if (has(piece, 'end') && !has(piece, 'max')) {
- piece.max = piece.end;
- }
- }
- });
- }
- });
- }
-
- function has(obj, name) {
- return obj && obj.hasOwnProperty && obj.hasOwnProperty(name);
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2331:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var Component = __webpack_require__(1321);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- Component.registerSubTypeDefaulter('visualMap', function (option) {
- // Compatible with ec2, when splitNumber === 0, continuous visualMap will be used.
- return !option.categories && (!(option.pieces ? option.pieces.length > 0 : option.splitNumber > 0) || option.calculable) ? 'continuous' : 'piecewise';
- });
-
- /***/ }),
-
- /***/ 2332:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var visualSolution = __webpack_require__(1797);
-
- var VisualMapping = __webpack_require__(1523);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var VISUAL_PRIORITY = echarts.PRIORITY.VISUAL.COMPONENT;
- echarts.registerVisual(VISUAL_PRIORITY, {
- createOnAllSeries: true,
- reset: function (seriesModel, ecModel) {
- var resetDefines = [];
- ecModel.eachComponent('visualMap', function (visualMapModel) {
- var pipelineContext = seriesModel.pipelineContext;
-
- if (!visualMapModel.isTargetSeries(seriesModel) || pipelineContext && pipelineContext.large) {
- return;
- }
-
- resetDefines.push(visualSolution.incrementalApplyVisual(visualMapModel.stateList, visualMapModel.targetVisuals, zrUtil.bind(visualMapModel.getValueState, visualMapModel), visualMapModel.getDataDimension(seriesModel.getData())));
- });
- return resetDefines;
- }
- }); // Only support color.
-
- echarts.registerVisual(VISUAL_PRIORITY, {
- createOnAllSeries: true,
- reset: function (seriesModel, ecModel) {
- var data = seriesModel.getData();
- var visualMetaList = [];
- ecModel.eachComponent('visualMap', function (visualMapModel) {
- if (visualMapModel.isTargetSeries(seriesModel)) {
- var visualMeta = visualMapModel.getVisualMeta(zrUtil.bind(getColorVisual, null, seriesModel, visualMapModel)) || {
- stops: [],
- outerColors: []
- };
- var concreteDim = visualMapModel.getDataDimension(data);
- var dimInfo = data.getDimensionInfo(concreteDim);
-
- if (dimInfo != null) {
- // visualMeta.dimension should be dimension index, but not concrete dimension.
- visualMeta.dimension = dimInfo.index;
- visualMetaList.push(visualMeta);
- }
- }
- }); // console.log(JSON.stringify(visualMetaList.map(a => a.stops)));
-
- seriesModel.getData().setVisual('visualMeta', visualMetaList);
- }
- }); // FIXME
- // performance and export for heatmap?
- // value can be Infinity or -Infinity
-
- function getColorVisual(seriesModel, visualMapModel, value, valueState) {
- var mappings = visualMapModel.targetVisuals[valueState];
- var visualTypes = VisualMapping.prepareVisualTypes(mappings);
- var resultVisual = {
- color: seriesModel.getData().getVisual('color') // default color.
-
- };
-
- for (var i = 0, len = visualTypes.length; i < len; i++) {
- var type = visualTypes[i];
- var mapping = mappings[type === 'opacity' ? '__alphaForOpacity' : type];
- mapping && mapping.applyVisual(value, getVisual, setVisual);
- }
-
- return resultVisual.color;
-
- function getVisual(key) {
- return resultVisual[key];
- }
-
- function setVisual(key, value) {
- resultVisual[key] = value;
- }
- }
-
- /***/ }),
-
- /***/ 2333:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var env = __webpack_require__(1316);
-
- var visualDefault = __webpack_require__(2334);
-
- var VisualMapping = __webpack_require__(1523);
-
- var visualSolution = __webpack_require__(1797);
-
- var modelUtil = __webpack_require__(1064);
-
- var numberUtil = __webpack_require__(985);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var mapVisual = VisualMapping.mapVisual;
- var eachVisual = VisualMapping.eachVisual;
- var isArray = zrUtil.isArray;
- var each = zrUtil.each;
- var asc = numberUtil.asc;
- var linearMap = numberUtil.linearMap;
- var noop = zrUtil.noop;
- var VisualMapModel = echarts.extendComponentModel({
- type: 'visualMap',
- dependencies: ['series'],
-
- /**
- * @readOnly
- * @type {Array.<string>}
- */
- stateList: ['inRange', 'outOfRange'],
-
- /**
- * @readOnly
- * @type {Array.<string>}
- */
- replacableOptionKeys: ['inRange', 'outOfRange', 'target', 'controller', 'color'],
-
- /**
- * [lowerBound, upperBound]
- *
- * @readOnly
- * @type {Array.<number>}
- */
- dataBound: [-Infinity, Infinity],
-
- /**
- * @readOnly
- * @type {string|Object}
- */
- layoutMode: {
- type: 'box',
- ignoreSize: true
- },
-
- /**
- * @protected
- */
- defaultOption: {
- show: true,
- zlevel: 0,
- z: 4,
- seriesIndex: 'all',
- // 'all' or null/undefined: all series.
- // A number or an array of number: the specified series.
- // set min: 0, max: 200, only for campatible with ec2.
- // In fact min max should not have default value.
- min: 0,
- // min value, must specified if pieces is not specified.
- max: 200,
- // max value, must specified if pieces is not specified.
- dimension: null,
- inRange: null,
- // 'color', 'colorHue', 'colorSaturation', 'colorLightness', 'colorAlpha',
- // 'symbol', 'symbolSize'
- outOfRange: null,
- // 'color', 'colorHue', 'colorSaturation',
- // 'colorLightness', 'colorAlpha',
- // 'symbol', 'symbolSize'
- left: 0,
- // 'center' ¦ 'left' ¦ 'right' ¦ {number} (px)
- right: null,
- // The same as left.
- top: null,
- // 'top' ¦ 'bottom' ¦ 'center' ¦ {number} (px)
- bottom: 0,
- // The same as top.
- itemWidth: null,
- itemHeight: null,
- inverse: false,
- orient: 'vertical',
- // 'horizontal' ¦ 'vertical'
- backgroundColor: 'rgba(0,0,0,0)',
- borderColor: '#ccc',
- // 值域边框颜色
- contentColor: '#5793f3',
- inactiveColor: '#aaa',
- borderWidth: 0,
- // 值域边框线宽,单位px,默认为0(无边框)
- padding: 5,
- // 值域内边距,单位px,默认各方向内边距为5,
- // 接受数组分别设定上右下左边距,同css
- textGap: 10,
- //
- precision: 0,
- // 小数精度,默认为0,无小数点
- color: null,
- //颜色(deprecated,兼容ec2,顺序同pieces,不同于inRange/outOfRange)
- formatter: null,
- text: null,
- // 文本,如['高', '低'],兼容ec2,text[0]对应高值,text[1]对应低值
- textStyle: {
- color: '#333' // 值域文字颜色
-
- }
- },
-
- /**
- * @protected
- */
- init: function (option, parentModel, ecModel) {
- /**
- * @private
- * @type {Array.<number>}
- */
- this._dataExtent;
- /**
- * @readOnly
- */
-
- this.targetVisuals = {};
- /**
- * @readOnly
- */
-
- this.controllerVisuals = {};
- /**
- * @readOnly
- */
-
- this.textStyleModel;
- /**
- * [width, height]
- * @readOnly
- * @type {Array.<number>}
- */
-
- this.itemSize;
- this.mergeDefaultAndTheme(option, ecModel);
- },
-
- /**
- * @protected
- */
- optionUpdated: function (newOption, isInit) {
- var thisOption = this.option; // FIXME
- // necessary?
- // Disable realtime view update if canvas is not supported.
-
- if (!env.canvasSupported) {
- thisOption.realtime = false;
- }
-
- !isInit && visualSolution.replaceVisualOption(thisOption, newOption, this.replacableOptionKeys);
- this.textStyleModel = this.getModel('textStyle');
- this.resetItemSize();
- this.completeVisualOption();
- },
-
- /**
- * @protected
- */
- resetVisual: function (supplementVisualOption) {
- var stateList = this.stateList;
- supplementVisualOption = zrUtil.bind(supplementVisualOption, this);
- this.controllerVisuals = visualSolution.createVisualMappings(this.option.controller, stateList, supplementVisualOption);
- this.targetVisuals = visualSolution.createVisualMappings(this.option.target, stateList, supplementVisualOption);
- },
-
- /**
- * @protected
- * @return {Array.<number>} An array of series indices.
- */
- getTargetSeriesIndices: function () {
- var optionSeriesIndex = this.option.seriesIndex;
- var seriesIndices = [];
-
- if (optionSeriesIndex == null || optionSeriesIndex === 'all') {
- this.ecModel.eachSeries(function (seriesModel, index) {
- seriesIndices.push(index);
- });
- } else {
- seriesIndices = modelUtil.normalizeToArray(optionSeriesIndex);
- }
-
- return seriesIndices;
- },
-
- /**
- * @public
- */
- eachTargetSeries: function (callback, context) {
- zrUtil.each(this.getTargetSeriesIndices(), function (seriesIndex) {
- callback.call(context, this.ecModel.getSeriesByIndex(seriesIndex));
- }, this);
- },
-
- /**
- * @pubilc
- */
- isTargetSeries: function (seriesModel) {
- var is = false;
- this.eachTargetSeries(function (model) {
- model === seriesModel && (is = true);
- });
- return is;
- },
-
- /**
- * @example
- * this.formatValueText(someVal); // format single numeric value to text.
- * this.formatValueText(someVal, true); // format single category value to text.
- * this.formatValueText([min, max]); // format numeric min-max to text.
- * this.formatValueText([this.dataBound[0], max]); // using data lower bound.
- * this.formatValueText([min, this.dataBound[1]]); // using data upper bound.
- *
- * @param {number|Array.<number>} value Real value, or this.dataBound[0 or 1].
- * @param {boolean} [isCategory=false] Only available when value is number.
- * @param {Array.<string>} edgeSymbols Open-close symbol when value is interval.
- * @return {string}
- * @protected
- */
- formatValueText: function (value, isCategory, edgeSymbols) {
- var option = this.option;
- var precision = option.precision;
- var dataBound = this.dataBound;
- var formatter = option.formatter;
- var isMinMax;
- var textValue;
- edgeSymbols = edgeSymbols || ['<', '>'];
-
- if (zrUtil.isArray(value)) {
- value = value.slice();
- isMinMax = true;
- }
-
- textValue = isCategory ? value : isMinMax ? [toFixed(value[0]), toFixed(value[1])] : toFixed(value);
-
- if (zrUtil.isString(formatter)) {
- return formatter.replace('{value}', isMinMax ? textValue[0] : textValue).replace('{value2}', isMinMax ? textValue[1] : textValue);
- } else if (zrUtil.isFunction(formatter)) {
- return isMinMax ? formatter(value[0], value[1]) : formatter(value);
- }
-
- if (isMinMax) {
- if (value[0] === dataBound[0]) {
- return edgeSymbols[0] + ' ' + textValue[1];
- } else if (value[1] === dataBound[1]) {
- return edgeSymbols[1] + ' ' + textValue[0];
- } else {
- return textValue[0] + ' - ' + textValue[1];
- }
- } else {
- // Format single value (includes category case).
- return textValue;
- }
-
- function toFixed(val) {
- return val === dataBound[0] ? 'min' : val === dataBound[1] ? 'max' : (+val).toFixed(Math.min(precision, 20));
- }
- },
-
- /**
- * @protected
- */
- resetExtent: function () {
- var thisOption = this.option; // Can not calculate data extent by data here.
- // Because series and data may be modified in processing stage.
- // So we do not support the feature "auto min/max".
-
- var extent = asc([thisOption.min, thisOption.max]);
- this._dataExtent = extent;
- },
-
- /**
- * @public
- * @param {module:echarts/data/List} list
- * @return {string} Concrete dimention. If return null/undefined,
- * no dimension used.
- */
- getDataDimension: function (list) {
- var optDim = this.option.dimension;
- var listDimensions = list.dimensions;
-
- if (optDim == null && !listDimensions.length) {
- return;
- }
-
- if (optDim != null) {
- return list.getDimension(optDim);
- }
-
- var dimNames = list.dimensions;
-
- for (var i = dimNames.length - 1; i >= 0; i--) {
- var dimName = dimNames[i];
- var dimInfo = list.getDimensionInfo(dimName);
-
- if (!dimInfo.isCalculationCoord) {
- return dimName;
- }
- }
- },
-
- /**
- * @public
- * @override
- */
- getExtent: function () {
- return this._dataExtent.slice();
- },
-
- /**
- * @protected
- */
- completeVisualOption: function () {
- var ecModel = this.ecModel;
- var thisOption = this.option;
- var base = {
- inRange: thisOption.inRange,
- outOfRange: thisOption.outOfRange
- };
- var target = thisOption.target || (thisOption.target = {});
- var controller = thisOption.controller || (thisOption.controller = {});
- zrUtil.merge(target, base); // Do not override
-
- zrUtil.merge(controller, base); // Do not override
-
- var isCategory = this.isCategory();
- completeSingle.call(this, target);
- completeSingle.call(this, controller);
- completeInactive.call(this, target, 'inRange', 'outOfRange'); // completeInactive.call(this, target, 'outOfRange', 'inRange');
-
- completeController.call(this, controller);
-
- function completeSingle(base) {
- // Compatible with ec2 dataRange.color.
- // The mapping order of dataRange.color is: [high value, ..., low value]
- // whereas inRange.color and outOfRange.color is [low value, ..., high value]
- // Notice: ec2 has no inverse.
- if (isArray(thisOption.color) // If there has been inRange: {symbol: ...}, adding color is a mistake.
- // So adding color only when no inRange defined.
- && !base.inRange) {
- base.inRange = {
- color: thisOption.color.slice().reverse()
- };
- } // Compatible with previous logic, always give a defautl color, otherwise
- // simple config with no inRange and outOfRange will not work.
- // Originally we use visualMap.color as the default color, but setOption at
- // the second time the default color will be erased. So we change to use
- // constant DEFAULT_COLOR.
- // If user do not want the defualt color, set inRange: {color: null}.
-
-
- base.inRange = base.inRange || {
- color: ecModel.get('gradientColor')
- }; // If using shortcut like: {inRange: 'symbol'}, complete default value.
-
- each(this.stateList, function (state) {
- var visualType = base[state];
-
- if (zrUtil.isString(visualType)) {
- var defa = visualDefault.get(visualType, 'active', isCategory);
-
- if (defa) {
- base[state] = {};
- base[state][visualType] = defa;
- } else {
- // Mark as not specified.
- delete base[state];
- }
- }
- }, this);
- }
-
- function completeInactive(base, stateExist, stateAbsent) {
- var optExist = base[stateExist];
- var optAbsent = base[stateAbsent];
-
- if (optExist && !optAbsent) {
- optAbsent = base[stateAbsent] = {};
- each(optExist, function (visualData, visualType) {
- if (!VisualMapping.isValidType(visualType)) {
- return;
- }
-
- var defa = visualDefault.get(visualType, 'inactive', isCategory);
-
- if (defa != null) {
- optAbsent[visualType] = defa; // Compatibable with ec2:
- // Only inactive color to rgba(0,0,0,0) can not
- // make label transparent, so use opacity also.
-
- if (visualType === 'color' && !optAbsent.hasOwnProperty('opacity') && !optAbsent.hasOwnProperty('colorAlpha')) {
- optAbsent.opacity = [0, 0];
- }
- }
- });
- }
- }
-
- function completeController(controller) {
- var symbolExists = (controller.inRange || {}).symbol || (controller.outOfRange || {}).symbol;
- var symbolSizeExists = (controller.inRange || {}).symbolSize || (controller.outOfRange || {}).symbolSize;
- var inactiveColor = this.get('inactiveColor');
- each(this.stateList, function (state) {
- var itemSize = this.itemSize;
- var visuals = controller[state]; // Set inactive color for controller if no other color
- // attr (like colorAlpha) specified.
-
- if (!visuals) {
- visuals = controller[state] = {
- color: isCategory ? inactiveColor : [inactiveColor]
- };
- } // Consistent symbol and symbolSize if not specified.
-
-
- if (visuals.symbol == null) {
- visuals.symbol = symbolExists && zrUtil.clone(symbolExists) || (isCategory ? 'roundRect' : ['roundRect']);
- }
-
- if (visuals.symbolSize == null) {
- visuals.symbolSize = symbolSizeExists && zrUtil.clone(symbolSizeExists) || (isCategory ? itemSize[0] : [itemSize[0], itemSize[0]]);
- } // Filter square and none.
-
-
- visuals.symbol = mapVisual(visuals.symbol, function (symbol) {
- return symbol === 'none' || symbol === 'square' ? 'roundRect' : symbol;
- }); // Normalize symbolSize
-
- var symbolSize = visuals.symbolSize;
-
- if (symbolSize != null) {
- var max = -Infinity; // symbolSize can be object when categories defined.
-
- eachVisual(symbolSize, function (value) {
- value > max && (max = value);
- });
- visuals.symbolSize = mapVisual(symbolSize, function (value) {
- return linearMap(value, [0, max], [0, itemSize[0]], true);
- });
- }
- }, this);
- }
- },
-
- /**
- * @protected
- */
- resetItemSize: function () {
- this.itemSize = [parseFloat(this.get('itemWidth')), parseFloat(this.get('itemHeight'))];
- },
-
- /**
- * @public
- */
- isCategory: function () {
- return !!this.option.categories;
- },
-
- /**
- * @public
- * @abstract
- */
- setSelected: noop,
-
- /**
- * @public
- * @abstract
- * @param {*|module:echarts/data/List} valueOrData
- * @param {number} dataIndex
- * @return {string} state See this.stateList
- */
- getValueState: noop,
-
- /**
- * FIXME
- * Do not publish to thirt-part-dev temporarily
- * util the interface is stable. (Should it return
- * a function but not visual meta?)
- *
- * @pubilc
- * @abstract
- * @param {Function} getColorVisual
- * params: value, valueState
- * return: color
- * @return {Object} visualMeta
- * should includes {stops, outerColors}
- * outerColor means [colorBeyondMinValue, colorBeyondMaxValue]
- */
- getVisualMeta: noop
- });
- var _default = VisualMapModel;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2334:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @file Visual mapping.
- */
- var visualDefault = {
- /**
- * @public
- */
- get: function (visualType, key, isCategory) {
- var value = zrUtil.clone((defaultOption[visualType] || {})[key]);
- return isCategory ? zrUtil.isArray(value) ? value[value.length - 1] : value : value;
- }
- };
- var defaultOption = {
- color: {
- active: ['#006edd', '#e0ffff'],
- inactive: ['rgba(0,0,0,0)']
- },
- colorHue: {
- active: [0, 360],
- inactive: [0, 0]
- },
- colorSaturation: {
- active: [0.3, 1],
- inactive: [0, 0]
- },
- colorLightness: {
- active: [0.9, 0.5],
- inactive: [0, 0]
- },
- colorAlpha: {
- active: [0.3, 1],
- inactive: [0, 0]
- },
- opacity: {
- active: [0.3, 1],
- inactive: [0, 0]
- },
- symbol: {
- active: ['circle', 'roundRect', 'diamond'],
- inactive: ['none']
- },
- symbolSize: {
- active: [10, 50],
- inactive: [0, 0]
- }
- };
- var _default = visualDefault;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2335:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var graphic = __webpack_require__(906);
-
- var formatUtil = __webpack_require__(1186);
-
- var layout = __webpack_require__(1171);
-
- var VisualMapping = __webpack_require__(1523);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = echarts.extendComponentView({
- type: 'visualMap',
-
- /**
- * @readOnly
- * @type {Object}
- */
- autoPositionValues: {
- left: 1,
- right: 1,
- top: 1,
- bottom: 1
- },
- init: function (ecModel, api) {
- /**
- * @readOnly
- * @type {module:echarts/model/Global}
- */
- this.ecModel = ecModel;
- /**
- * @readOnly
- * @type {module:echarts/ExtensionAPI}
- */
-
- this.api = api;
- /**
- * @readOnly
- * @type {module:echarts/component/visualMap/visualMapModel}
- */
-
- this.visualMapModel;
- },
-
- /**
- * @protected
- */
- render: function (visualMapModel, ecModel, api, payload) {
- this.visualMapModel = visualMapModel;
-
- if (visualMapModel.get('show') === false) {
- this.group.removeAll();
- return;
- }
-
- this.doRender.apply(this, arguments);
- },
-
- /**
- * @protected
- */
- renderBackground: function (group) {
- var visualMapModel = this.visualMapModel;
- var padding = formatUtil.normalizeCssArray(visualMapModel.get('padding') || 0);
- var rect = group.getBoundingRect();
- group.add(new graphic.Rect({
- z2: -1,
- // Lay background rect on the lowest layer.
- silent: true,
- shape: {
- x: rect.x - padding[3],
- y: rect.y - padding[0],
- width: rect.width + padding[3] + padding[1],
- height: rect.height + padding[0] + padding[2]
- },
- style: {
- fill: visualMapModel.get('backgroundColor'),
- stroke: visualMapModel.get('borderColor'),
- lineWidth: visualMapModel.get('borderWidth')
- }
- }));
- },
-
- /**
- * @protected
- * @param {number} targetValue can be Infinity or -Infinity
- * @param {string=} visualCluster Only can be 'color' 'opacity' 'symbol' 'symbolSize'
- * @param {Object} [opts]
- * @param {string=} [opts.forceState] Specify state, instead of using getValueState method.
- * @param {string=} [opts.convertOpacityToAlpha=false] For color gradient in controller widget.
- * @return {*} Visual value.
- */
- getControllerVisual: function (targetValue, visualCluster, opts) {
- opts = opts || {};
- var forceState = opts.forceState;
- var visualMapModel = this.visualMapModel;
- var visualObj = {}; // Default values.
-
- if (visualCluster === 'symbol') {
- visualObj.symbol = visualMapModel.get('itemSymbol');
- }
-
- if (visualCluster === 'color') {
- var defaultColor = visualMapModel.get('contentColor');
- visualObj.color = defaultColor;
- }
-
- function getter(key) {
- return visualObj[key];
- }
-
- function setter(key, value) {
- visualObj[key] = value;
- }
-
- var mappings = visualMapModel.controllerVisuals[forceState || visualMapModel.getValueState(targetValue)];
- var visualTypes = VisualMapping.prepareVisualTypes(mappings);
- zrUtil.each(visualTypes, function (type) {
- var visualMapping = mappings[type];
-
- if (opts.convertOpacityToAlpha && type === 'opacity') {
- type = 'colorAlpha';
- visualMapping = mappings.__alphaForOpacity;
- }
-
- if (VisualMapping.dependsOn(type, visualCluster)) {
- visualMapping && visualMapping.applyVisual(targetValue, getter, setter);
- }
- });
- return visualObj[visualCluster];
- },
-
- /**
- * @protected
- */
- positionGroup: function (group) {
- var model = this.visualMapModel;
- var api = this.api;
- layout.positionElement(group, model.getBoxLayoutParams(), {
- width: api.getWidth(),
- height: api.getHeight()
- });
- },
-
- /**
- * @protected
- * @abstract
- */
- doRender: zrUtil.noop
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2336:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var _layout = __webpack_require__(1171);
-
- var getLayoutRect = _layout.getLayoutRect;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @param {module:echarts/component/visualMap/VisualMapModel} visualMapModel\
- * @param {module:echarts/ExtensionAPI} api
- * @param {Array.<number>} itemSize always [short, long]
- * @return {string} 'left' or 'right' or 'top' or 'bottom'
- */
- function getItemAlign(visualMapModel, api, itemSize) {
- var modelOption = visualMapModel.option;
- var itemAlign = modelOption.align;
-
- if (itemAlign != null && itemAlign !== 'auto') {
- return itemAlign;
- } // Auto decision align.
-
-
- var ecSize = {
- width: api.getWidth(),
- height: api.getHeight()
- };
- var realIndex = modelOption.orient === 'horizontal' ? 1 : 0;
- var paramsSet = [['left', 'right', 'width'], ['top', 'bottom', 'height']];
- var reals = paramsSet[realIndex];
- var fakeValue = [0, null, 10];
- var layoutInput = {};
-
- for (var i = 0; i < 3; i++) {
- layoutInput[paramsSet[1 - realIndex][i]] = fakeValue[i];
- layoutInput[reals[i]] = i === 2 ? itemSize[0] : modelOption[reals[i]];
- }
-
- var rParam = [['x', 'width', 3], ['y', 'height', 0]][realIndex];
- var rect = getLayoutRect(layoutInput, ecSize, modelOption.padding);
- return reals[(rect.margin[rParam[2]] || 0) + rect[rParam[0]] + rect[rParam[1]] * 0.5 < ecSize[rParam[1]] * 0.5 ? 0 : 1];
- }
- /**
- * Prepare dataIndex for outside usage, where dataIndex means rawIndex, and
- * dataIndexInside means filtered index.
- */
-
-
- function makeHighDownBatch(batch, visualMapModel) {
- zrUtil.each(batch || [], function (batchItem) {
- if (batchItem.dataIndex != null) {
- batchItem.dataIndexInside = batchItem.dataIndex;
- batchItem.dataIndex = null;
- }
-
- batchItem.highlightKey = 'visualMap' + (visualMapModel ? visualMapModel.componentIndex : '');
- });
- return batch;
- }
-
- exports.getItemAlign = getItemAlign;
- exports.makeHighDownBatch = makeHighDownBatch;
-
- /***/ }),
-
- /***/ 2337:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var actionInfo = {
- type: 'selectDataRange',
- event: 'dataRangeSelected',
- // FIXME use updateView appears wrong
- update: 'update'
- };
- echarts.registerAction(actionInfo, function (payload, ecModel) {
- ecModel.eachComponent({
- mainType: 'visualMap',
- query: payload
- }, function (model) {
- model.setSelected(payload.selected);
- });
- });
-
- /***/ }),
-
- /***/ 2338:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var preprocessor = __webpack_require__(2330);
-
- __webpack_require__(2331);
-
- __webpack_require__(2332);
-
- __webpack_require__(2792);
-
- __webpack_require__(2793);
-
- __webpack_require__(2337);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * DataZoom component entry
- */
- echarts.registerPreprocessor(preprocessor);
-
- /***/ }),
-
- /***/ 2339:
- /***/ (function(module, exports, __webpack_require__) {
-
- var env = __webpack_require__(1316);
-
- var urn = 'urn:schemas-microsoft-com:vml';
- var win = typeof window === 'undefined' ? null : window;
- var vmlInited = false;
- var doc = win && win.document;
-
- function createNode(tagName) {
- return doCreateNode(tagName);
- } // Avoid assign to an exported variable, for transforming to cjs.
-
-
- var doCreateNode;
-
- if (doc && !env.canvasSupported) {
- try {
- !doc.namespaces.zrvml && doc.namespaces.add('zrvml', urn);
-
- doCreateNode = function (tagName) {
- return doc.createElement('<zrvml:' + tagName + ' class="zrvml">');
- };
- } catch (e) {
- doCreateNode = function (tagName) {
- return doc.createElement('<' + tagName + ' xmlns="' + urn + '" class="zrvml">');
- };
- }
- } // From raphael
-
-
- function initVML() {
- if (vmlInited || !doc) {
- return;
- }
-
- vmlInited = true;
- var styleSheets = doc.styleSheets;
-
- if (styleSheets.length < 31) {
- doc.createStyleSheet().addRule('.zrvml', 'behavior:url(#default#VML)');
- } else {
- // http://msdn.microsoft.com/en-us/library/ms531194%28VS.85%29.aspx
- styleSheets[0].addRule('.zrvml', 'behavior:url(#default#VML)');
- }
- }
-
- exports.doc = doc;
- exports.createNode = createNode;
- exports.initVML = initVML;
-
- /***/ }),
-
- /***/ 2408:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _echarts = __webpack_require__(881);
-
- (function () {
- for (var key in _echarts) {
- if (_echarts == null || !_echarts.hasOwnProperty(key) || key === 'default' || key === '__esModule') return;
- exports[key] = _echarts[key];
- }
- })();
-
- var _export = __webpack_require__(2283);
-
- (function () {
- for (var key in _export) {
- if (_export == null || !_export.hasOwnProperty(key) || key === 'default' || key === '__esModule') return;
- exports[key] = _export[key];
- }
- })();
-
- __webpack_require__(2281);
-
- __webpack_require__(2554);
-
- __webpack_require__(2565);
-
- __webpack_require__(2570);
-
- __webpack_require__(2575);
-
- __webpack_require__(2579);
-
- __webpack_require__(2589);
-
- __webpack_require__(2603);
-
- __webpack_require__(2609);
-
- __webpack_require__(2617);
-
- __webpack_require__(2632);
-
- __webpack_require__(2636);
-
- __webpack_require__(2640);
-
- __webpack_require__(2652);
-
- __webpack_require__(2658);
-
- __webpack_require__(2663);
-
- __webpack_require__(2669);
-
- __webpack_require__(2673);
-
- __webpack_require__(2679);
-
- __webpack_require__(2683);
-
- __webpack_require__(2686);
-
- __webpack_require__(2700);
-
- __webpack_require__(2706);
-
- __webpack_require__(2712);
-
- __webpack_require__(2713);
-
- __webpack_require__(2725);
-
- __webpack_require__(2316);
-
- __webpack_require__(2309);
-
- __webpack_require__(2728);
-
- __webpack_require__(2732);
-
- __webpack_require__(2733);
-
- __webpack_require__(2745);
-
- __webpack_require__(1668);
-
- __webpack_require__(2750);
-
- __webpack_require__(2758);
-
- __webpack_require__(2759);
-
- __webpack_require__(2768);
-
- __webpack_require__(2771);
-
- __webpack_require__(2774);
-
- __webpack_require__(2777);
-
- __webpack_require__(2324);
-
- __webpack_require__(2783);
-
- __webpack_require__(2328);
-
- __webpack_require__(2327);
-
- __webpack_require__(2789);
-
- __webpack_require__(2329);
-
- __webpack_require__(2338);
-
- __webpack_require__(2794);
-
- __webpack_require__(2797);
-
- /***/ }),
-
- /***/ 2432:
- /***/ (function(module, exports, __webpack_require__) {
-
- // CodeMirror, copyright (c) by Marijn Haverbeke and others
- // Distributed under an MIT license: https://codemirror.net/LICENSE
-
- // This is CodeMirror (https://codemirror.net), a code editor
- // implemented in JavaScript on top of the browser's DOM.
- //
- // You can find some technical background for some of the code below
- // at http://marijnhaverbeke.nl/blog/#cm-internals .
-
- (function (global, factory) {
- true ? module.exports = factory() :
- typeof define === 'function' && define.amd ? define(factory) :
- (global = global || self, global.CodeMirror = factory());
- }(this, (function () { 'use strict';
-
- // Kludges for bugs and behavior differences that can't be feature
- // detected are enabled based on userAgent etc sniffing.
- var userAgent = navigator.userAgent;
- var platform = navigator.platform;
-
- var gecko = /gecko\/\d/i.test(userAgent);
- var ie_upto10 = /MSIE \d/.test(userAgent);
- var ie_11up = /Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(userAgent);
- var edge = /Edge\/(\d+)/.exec(userAgent);
- var ie = ie_upto10 || ie_11up || edge;
- var ie_version = ie && (ie_upto10 ? document.documentMode || 6 : +(edge || ie_11up)[1]);
- var webkit = !edge && /WebKit\//.test(userAgent);
- var qtwebkit = webkit && /Qt\/\d+\.\d+/.test(userAgent);
- var chrome = !edge && /Chrome\//.test(userAgent);
- var presto = /Opera\//.test(userAgent);
- var safari = /Apple Computer/.test(navigator.vendor);
- var mac_geMountainLion = /Mac OS X 1\d\D([8-9]|\d\d)\D/.test(userAgent);
- var phantom = /PhantomJS/.test(userAgent);
-
- var ios = !edge && /AppleWebKit/.test(userAgent) && /Mobile\/\w+/.test(userAgent);
- var android = /Android/.test(userAgent);
- // This is woefully incomplete. Suggestions for alternative methods welcome.
- var mobile = ios || android || /webOS|BlackBerry|Opera Mini|Opera Mobi|IEMobile/i.test(userAgent);
- var mac = ios || /Mac/.test(platform);
- var chromeOS = /\bCrOS\b/.test(userAgent);
- var windows = /win/i.test(platform);
-
- var presto_version = presto && userAgent.match(/Version\/(\d*\.\d*)/);
- if (presto_version) { presto_version = Number(presto_version[1]); }
- if (presto_version && presto_version >= 15) { presto = false; webkit = true; }
- // Some browsers use the wrong event properties to signal cmd/ctrl on OS X
- var flipCtrlCmd = mac && (qtwebkit || presto && (presto_version == null || presto_version < 12.11));
- var captureRightClick = gecko || (ie && ie_version >= 9);
-
- function classTest(cls) { return new RegExp("(^|\\s)" + cls + "(?:$|\\s)\\s*") }
-
- var rmClass = function(node, cls) {
- var current = node.className;
- var match = classTest(cls).exec(current);
- if (match) {
- var after = current.slice(match.index + match[0].length);
- node.className = current.slice(0, match.index) + (after ? match[1] + after : "");
- }
- };
-
- function removeChildren(e) {
- for (var count = e.childNodes.length; count > 0; --count)
- { e.removeChild(e.firstChild); }
- return e
- }
-
- function removeChildrenAndAdd(parent, e) {
- return removeChildren(parent).appendChild(e)
- }
-
- function elt(tag, content, className, style) {
- var e = document.createElement(tag);
- if (className) { e.className = className; }
- if (style) { e.style.cssText = style; }
- if (typeof content == "string") { e.appendChild(document.createTextNode(content)); }
- else if (content) { for (var i = 0; i < content.length; ++i) { e.appendChild(content[i]); } }
- return e
- }
- // wrapper for elt, which removes the elt from the accessibility tree
- function eltP(tag, content, className, style) {
- var e = elt(tag, content, className, style);
- e.setAttribute("role", "presentation");
- return e
- }
-
- var range;
- if (document.createRange) { range = function(node, start, end, endNode) {
- var r = document.createRange();
- r.setEnd(endNode || node, end);
- r.setStart(node, start);
- return r
- }; }
- else { range = function(node, start, end) {
- var r = document.body.createTextRange();
- try { r.moveToElementText(node.parentNode); }
- catch(e) { return r }
- r.collapse(true);
- r.moveEnd("character", end);
- r.moveStart("character", start);
- return r
- }; }
-
- function contains(parent, child) {
- if (child.nodeType == 3) // Android browser always returns false when child is a textnode
- { child = child.parentNode; }
- if (parent.contains)
- { return parent.contains(child) }
- do {
- if (child.nodeType == 11) { child = child.host; }
- if (child == parent) { return true }
- } while (child = child.parentNode)
- }
-
- function activeElt() {
- // IE and Edge may throw an "Unspecified Error" when accessing document.activeElement.
- // IE < 10 will throw when accessed while the page is loading or in an iframe.
- // IE > 9 and Edge will throw when accessed in an iframe if document.body is unavailable.
- var activeElement;
- try {
- activeElement = document.activeElement;
- } catch(e) {
- activeElement = document.body || null;
- }
- while (activeElement && activeElement.shadowRoot && activeElement.shadowRoot.activeElement)
- { activeElement = activeElement.shadowRoot.activeElement; }
- return activeElement
- }
-
- function addClass(node, cls) {
- var current = node.className;
- if (!classTest(cls).test(current)) { node.className += (current ? " " : "") + cls; }
- }
- function joinClasses(a, b) {
- var as = a.split(" ");
- for (var i = 0; i < as.length; i++)
- { if (as[i] && !classTest(as[i]).test(b)) { b += " " + as[i]; } }
- return b
- }
-
- var selectInput = function(node) { node.select(); };
- if (ios) // Mobile Safari apparently has a bug where select() is broken.
- { selectInput = function(node) { node.selectionStart = 0; node.selectionEnd = node.value.length; }; }
- else if (ie) // Suppress mysterious IE10 errors
- { selectInput = function(node) { try { node.select(); } catch(_e) {} }; }
-
- function bind(f) {
- var args = Array.prototype.slice.call(arguments, 1);
- return function(){return f.apply(null, args)}
- }
-
- function copyObj(obj, target, overwrite) {
- if (!target) { target = {}; }
- for (var prop in obj)
- { if (obj.hasOwnProperty(prop) && (overwrite !== false || !target.hasOwnProperty(prop)))
- { target[prop] = obj[prop]; } }
- return target
- }
-
- // Counts the column offset in a string, taking tabs into account.
- // Used mostly to find indentation.
- function countColumn(string, end, tabSize, startIndex, startValue) {
- if (end == null) {
- end = string.search(/[^\s\u00a0]/);
- if (end == -1) { end = string.length; }
- }
- for (var i = startIndex || 0, n = startValue || 0;;) {
- var nextTab = string.indexOf("\t", i);
- if (nextTab < 0 || nextTab >= end)
- { return n + (end - i) }
- n += nextTab - i;
- n += tabSize - (n % tabSize);
- i = nextTab + 1;
- }
- }
-
- var Delayed = function() {
- this.id = null;
- this.f = null;
- this.time = 0;
- this.handler = bind(this.onTimeout, this);
- };
- Delayed.prototype.onTimeout = function (self) {
- self.id = 0;
- if (self.time <= +new Date) {
- self.f();
- } else {
- setTimeout(self.handler, self.time - +new Date);
- }
- };
- Delayed.prototype.set = function (ms, f) {
- this.f = f;
- var time = +new Date + ms;
- if (!this.id || time < this.time) {
- clearTimeout(this.id);
- this.id = setTimeout(this.handler, ms);
- this.time = time;
- }
- };
-
- function indexOf(array, elt) {
- for (var i = 0; i < array.length; ++i)
- { if (array[i] == elt) { return i } }
- return -1
- }
-
- // Number of pixels added to scroller and sizer to hide scrollbar
- var scrollerGap = 30;
-
- // Returned or thrown by various protocols to signal 'I'm not
- // handling this'.
- var Pass = {toString: function(){return "CodeMirror.Pass"}};
-
- // Reused option objects for setSelection & friends
- var sel_dontScroll = {scroll: false}, sel_mouse = {origin: "*mouse"}, sel_move = {origin: "+move"};
-
- // The inverse of countColumn -- find the offset that corresponds to
- // a particular column.
- function findColumn(string, goal, tabSize) {
- for (var pos = 0, col = 0;;) {
- var nextTab = string.indexOf("\t", pos);
- if (nextTab == -1) { nextTab = string.length; }
- var skipped = nextTab - pos;
- if (nextTab == string.length || col + skipped >= goal)
- { return pos + Math.min(skipped, goal - col) }
- col += nextTab - pos;
- col += tabSize - (col % tabSize);
- pos = nextTab + 1;
- if (col >= goal) { return pos }
- }
- }
-
- var spaceStrs = [""];
- function spaceStr(n) {
- while (spaceStrs.length <= n)
- { spaceStrs.push(lst(spaceStrs) + " "); }
- return spaceStrs[n]
- }
-
- function lst(arr) { return arr[arr.length-1] }
-
- function map(array, f) {
- var out = [];
- for (var i = 0; i < array.length; i++) { out[i] = f(array[i], i); }
- return out
- }
-
- function insertSorted(array, value, score) {
- var pos = 0, priority = score(value);
- while (pos < array.length && score(array[pos]) <= priority) { pos++; }
- array.splice(pos, 0, value);
- }
-
- function nothing() {}
-
- function createObj(base, props) {
- var inst;
- if (Object.create) {
- inst = Object.create(base);
- } else {
- nothing.prototype = base;
- inst = new nothing();
- }
- if (props) { copyObj(props, inst); }
- return inst
- }
-
- var nonASCIISingleCaseWordChar = /[\u00df\u0587\u0590-\u05f4\u0600-\u06ff\u3040-\u309f\u30a0-\u30ff\u3400-\u4db5\u4e00-\u9fcc\uac00-\ud7af]/;
- function isWordCharBasic(ch) {
- return /\w/.test(ch) || ch > "\x80" &&
- (ch.toUpperCase() != ch.toLowerCase() || nonASCIISingleCaseWordChar.test(ch))
- }
- function isWordChar(ch, helper) {
- if (!helper) { return isWordCharBasic(ch) }
- if (helper.source.indexOf("\\w") > -1 && isWordCharBasic(ch)) { return true }
- return helper.test(ch)
- }
-
- function isEmpty(obj) {
- for (var n in obj) { if (obj.hasOwnProperty(n) && obj[n]) { return false } }
- return true
- }
-
- // Extending unicode characters. A series of a non-extending char +
- // any number of extending chars is treated as a single unit as far
- // as editing and measuring is concerned. This is not fully correct,
- // since some scripts/fonts/browsers also treat other configurations
- // of code points as a group.
- var extendingChars = /[\u0300-\u036f\u0483-\u0489\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u065e\u0670\u06d6-\u06dc\u06de-\u06e4\u06e7\u06e8\u06ea-\u06ed\u0711\u0730-\u074a\u07a6-\u07b0\u07eb-\u07f3\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0900-\u0902\u093c\u0941-\u0948\u094d\u0951-\u0955\u0962\u0963\u0981\u09bc\u09be\u09c1-\u09c4\u09cd\u09d7\u09e2\u09e3\u0a01\u0a02\u0a3c\u0a41\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a70\u0a71\u0a75\u0a81\u0a82\u0abc\u0ac1-\u0ac5\u0ac7\u0ac8\u0acd\u0ae2\u0ae3\u0b01\u0b3c\u0b3e\u0b3f\u0b41-\u0b44\u0b4d\u0b56\u0b57\u0b62\u0b63\u0b82\u0bbe\u0bc0\u0bcd\u0bd7\u0c3e-\u0c40\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0cbc\u0cbf\u0cc2\u0cc6\u0ccc\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0d3e\u0d41-\u0d44\u0d4d\u0d57\u0d62\u0d63\u0dca\u0dcf\u0dd2-\u0dd4\u0dd6\u0ddf\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0eb1\u0eb4-\u0eb9\u0ebb\u0ebc\u0ec8-\u0ecd\u0f18\u0f19\u0f35\u0f37\u0f39\u0f71-\u0f7e\u0f80-\u0f84\u0f86\u0f87\u0f90-\u0f97\u0f99-\u0fbc\u0fc6\u102d-\u1030\u1032-\u1037\u1039\u103a\u103d\u103e\u1058\u1059\u105e-\u1060\u1071-\u1074\u1082\u1085\u1086\u108d\u109d\u135f\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b7-\u17bd\u17c6\u17c9-\u17d3\u17dd\u180b-\u180d\u18a9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193b\u1a17\u1a18\u1a56\u1a58-\u1a5e\u1a60\u1a62\u1a65-\u1a6c\u1a73-\u1a7c\u1a7f\u1b00-\u1b03\u1b34\u1b36-\u1b3a\u1b3c\u1b42\u1b6b-\u1b73\u1b80\u1b81\u1ba2-\u1ba5\u1ba8\u1ba9\u1c2c-\u1c33\u1c36\u1c37\u1cd0-\u1cd2\u1cd4-\u1ce0\u1ce2-\u1ce8\u1ced\u1dc0-\u1de6\u1dfd-\u1dff\u200c\u200d\u20d0-\u20f0\u2cef-\u2cf1\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua66f-\ua672\ua67c\ua67d\ua6f0\ua6f1\ua802\ua806\ua80b\ua825\ua826\ua8c4\ua8e0-\ua8f1\ua926-\ua92d\ua947-\ua951\ua980-\ua982\ua9b3\ua9b6-\ua9b9\ua9bc\uaa29-\uaa2e\uaa31\uaa32\uaa35\uaa36\uaa43\uaa4c\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uabe5\uabe8\uabed\udc00-\udfff\ufb1e\ufe00-\ufe0f\ufe20-\ufe26\uff9e\uff9f]/;
- function isExtendingChar(ch) { return ch.charCodeAt(0) >= 768 && extendingChars.test(ch) }
-
- // Returns a number from the range [`0`; `str.length`] unless `pos` is outside that range.
- function skipExtendingChars(str, pos, dir) {
- while ((dir < 0 ? pos > 0 : pos < str.length) && isExtendingChar(str.charAt(pos))) { pos += dir; }
- return pos
- }
-
- // Returns the value from the range [`from`; `to`] that satisfies
- // `pred` and is closest to `from`. Assumes that at least `to`
- // satisfies `pred`. Supports `from` being greater than `to`.
- function findFirst(pred, from, to) {
- // At any point we are certain `to` satisfies `pred`, don't know
- // whether `from` does.
- var dir = from > to ? -1 : 1;
- for (;;) {
- if (from == to) { return from }
- var midF = (from + to) / 2, mid = dir < 0 ? Math.ceil(midF) : Math.floor(midF);
- if (mid == from) { return pred(mid) ? from : to }
- if (pred(mid)) { to = mid; }
- else { from = mid + dir; }
- }
- }
-
- // BIDI HELPERS
-
- function iterateBidiSections(order, from, to, f) {
- if (!order) { return f(from, to, "ltr", 0) }
- var found = false;
- for (var i = 0; i < order.length; ++i) {
- var part = order[i];
- if (part.from < to && part.to > from || from == to && part.to == from) {
- f(Math.max(part.from, from), Math.min(part.to, to), part.level == 1 ? "rtl" : "ltr", i);
- found = true;
- }
- }
- if (!found) { f(from, to, "ltr"); }
- }
-
- var bidiOther = null;
- function getBidiPartAt(order, ch, sticky) {
- var found;
- bidiOther = null;
- for (var i = 0; i < order.length; ++i) {
- var cur = order[i];
- if (cur.from < ch && cur.to > ch) { return i }
- if (cur.to == ch) {
- if (cur.from != cur.to && sticky == "before") { found = i; }
- else { bidiOther = i; }
- }
- if (cur.from == ch) {
- if (cur.from != cur.to && sticky != "before") { found = i; }
- else { bidiOther = i; }
- }
- }
- return found != null ? found : bidiOther
- }
-
- // Bidirectional ordering algorithm
- // See http://unicode.org/reports/tr9/tr9-13.html for the algorithm
- // that this (partially) implements.
-
- // One-char codes used for character types:
- // L (L): Left-to-Right
- // R (R): Right-to-Left
- // r (AL): Right-to-Left Arabic
- // 1 (EN): European Number
- // + (ES): European Number Separator
- // % (ET): European Number Terminator
- // n (AN): Arabic Number
- // , (CS): Common Number Separator
- // m (NSM): Non-Spacing Mark
- // b (BN): Boundary Neutral
- // s (B): Paragraph Separator
- // t (S): Segment Separator
- // w (WS): Whitespace
- // N (ON): Other Neutrals
-
- // Returns null if characters are ordered as they appear
- // (left-to-right), or an array of sections ({from, to, level}
- // objects) in the order in which they occur visually.
- var bidiOrdering = (function() {
- // Character types for codepoints 0 to 0xff
- var lowTypes = "bbbbbbbbbtstwsbbbbbbbbbbbbbbssstwNN%%%NNNNNN,N,N1111111111NNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNbbbbbbsbbbbbbbbbbbbbbbbbbbbbbbbbb,N%%%%NNNNLNNNNN%%11NLNNN1LNNNNNLLLLLLLLLLLLLLLLLLLLLLLNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLN";
- // Character types for codepoints 0x600 to 0x6f9
- var arabicTypes = "nnnnnnNNr%%r,rNNmmmmmmmmmmmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmmmmmmmmnnnnnnnnnn%nnrrrmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmnNmmmmmmrrmmNmmmmrr1111111111";
- function charType(code) {
- if (code <= 0xf7) { return lowTypes.charAt(code) }
- else if (0x590 <= code && code <= 0x5f4) { return "R" }
- else if (0x600 <= code && code <= 0x6f9) { return arabicTypes.charAt(code - 0x600) }
- else if (0x6ee <= code && code <= 0x8ac) { return "r" }
- else if (0x2000 <= code && code <= 0x200b) { return "w" }
- else if (code == 0x200c) { return "b" }
- else { return "L" }
- }
-
- var bidiRE = /[\u0590-\u05f4\u0600-\u06ff\u0700-\u08ac]/;
- var isNeutral = /[stwN]/, isStrong = /[LRr]/, countsAsLeft = /[Lb1n]/, countsAsNum = /[1n]/;
-
- function BidiSpan(level, from, to) {
- this.level = level;
- this.from = from; this.to = to;
- }
-
- return function(str, direction) {
- var outerType = direction == "ltr" ? "L" : "R";
-
- if (str.length == 0 || direction == "ltr" && !bidiRE.test(str)) { return false }
- var len = str.length, types = [];
- for (var i = 0; i < len; ++i)
- { types.push(charType(str.charCodeAt(i))); }
-
- // W1. Examine each non-spacing mark (NSM) in the level run, and
- // change the type of the NSM to the type of the previous
- // character. If the NSM is at the start of the level run, it will
- // get the type of sor.
- for (var i$1 = 0, prev = outerType; i$1 < len; ++i$1) {
- var type = types[i$1];
- if (type == "m") { types[i$1] = prev; }
- else { prev = type; }
- }
-
- // W2. Search backwards from each instance of a European number
- // until the first strong type (R, L, AL, or sor) is found. If an
- // AL is found, change the type of the European number to Arabic
- // number.
- // W3. Change all ALs to R.
- for (var i$2 = 0, cur = outerType; i$2 < len; ++i$2) {
- var type$1 = types[i$2];
- if (type$1 == "1" && cur == "r") { types[i$2] = "n"; }
- else if (isStrong.test(type$1)) { cur = type$1; if (type$1 == "r") { types[i$2] = "R"; } }
- }
-
- // W4. A single European separator between two European numbers
- // changes to a European number. A single common separator between
- // two numbers of the same type changes to that type.
- for (var i$3 = 1, prev$1 = types[0]; i$3 < len - 1; ++i$3) {
- var type$2 = types[i$3];
- if (type$2 == "+" && prev$1 == "1" && types[i$3+1] == "1") { types[i$3] = "1"; }
- else if (type$2 == "," && prev$1 == types[i$3+1] &&
- (prev$1 == "1" || prev$1 == "n")) { types[i$3] = prev$1; }
- prev$1 = type$2;
- }
-
- // W5. A sequence of European terminators adjacent to European
- // numbers changes to all European numbers.
- // W6. Otherwise, separators and terminators change to Other
- // Neutral.
- for (var i$4 = 0; i$4 < len; ++i$4) {
- var type$3 = types[i$4];
- if (type$3 == ",") { types[i$4] = "N"; }
- else if (type$3 == "%") {
- var end = (void 0);
- for (end = i$4 + 1; end < len && types[end] == "%"; ++end) {}
- var replace = (i$4 && types[i$4-1] == "!") || (end < len && types[end] == "1") ? "1" : "N";
- for (var j = i$4; j < end; ++j) { types[j] = replace; }
- i$4 = end - 1;
- }
- }
-
- // W7. Search backwards from each instance of a European number
- // until the first strong type (R, L, or sor) is found. If an L is
- // found, then change the type of the European number to L.
- for (var i$5 = 0, cur$1 = outerType; i$5 < len; ++i$5) {
- var type$4 = types[i$5];
- if (cur$1 == "L" && type$4 == "1") { types[i$5] = "L"; }
- else if (isStrong.test(type$4)) { cur$1 = type$4; }
- }
-
- // N1. A sequence of neutrals takes the direction of the
- // surrounding strong text if the text on both sides has the same
- // direction. European and Arabic numbers act as if they were R in
- // terms of their influence on neutrals. Start-of-level-run (sor)
- // and end-of-level-run (eor) are used at level run boundaries.
- // N2. Any remaining neutrals take the embedding direction.
- for (var i$6 = 0; i$6 < len; ++i$6) {
- if (isNeutral.test(types[i$6])) {
- var end$1 = (void 0);
- for (end$1 = i$6 + 1; end$1 < len && isNeutral.test(types[end$1]); ++end$1) {}
- var before = (i$6 ? types[i$6-1] : outerType) == "L";
- var after = (end$1 < len ? types[end$1] : outerType) == "L";
- var replace$1 = before == after ? (before ? "L" : "R") : outerType;
- for (var j$1 = i$6; j$1 < end$1; ++j$1) { types[j$1] = replace$1; }
- i$6 = end$1 - 1;
- }
- }
-
- // Here we depart from the documented algorithm, in order to avoid
- // building up an actual levels array. Since there are only three
- // levels (0, 1, 2) in an implementation that doesn't take
- // explicit embedding into account, we can build up the order on
- // the fly, without following the level-based algorithm.
- var order = [], m;
- for (var i$7 = 0; i$7 < len;) {
- if (countsAsLeft.test(types[i$7])) {
- var start = i$7;
- for (++i$7; i$7 < len && countsAsLeft.test(types[i$7]); ++i$7) {}
- order.push(new BidiSpan(0, start, i$7));
- } else {
- var pos = i$7, at = order.length, isRTL = direction == "rtl" ? 1 : 0;
- for (++i$7; i$7 < len && types[i$7] != "L"; ++i$7) {}
- for (var j$2 = pos; j$2 < i$7;) {
- if (countsAsNum.test(types[j$2])) {
- if (pos < j$2) { order.splice(at, 0, new BidiSpan(1, pos, j$2)); at += isRTL; }
- var nstart = j$2;
- for (++j$2; j$2 < i$7 && countsAsNum.test(types[j$2]); ++j$2) {}
- order.splice(at, 0, new BidiSpan(2, nstart, j$2));
- at += isRTL;
- pos = j$2;
- } else { ++j$2; }
- }
- if (pos < i$7) { order.splice(at, 0, new BidiSpan(1, pos, i$7)); }
- }
- }
- if (direction == "ltr") {
- if (order[0].level == 1 && (m = str.match(/^\s+/))) {
- order[0].from = m[0].length;
- order.unshift(new BidiSpan(0, 0, m[0].length));
- }
- if (lst(order).level == 1 && (m = str.match(/\s+$/))) {
- lst(order).to -= m[0].length;
- order.push(new BidiSpan(0, len - m[0].length, len));
- }
- }
-
- return direction == "rtl" ? order.reverse() : order
- }
- })();
-
- // Get the bidi ordering for the given line (and cache it). Returns
- // false for lines that are fully left-to-right, and an array of
- // BidiSpan objects otherwise.
- function getOrder(line, direction) {
- var order = line.order;
- if (order == null) { order = line.order = bidiOrdering(line.text, direction); }
- return order
- }
-
- // EVENT HANDLING
-
- // Lightweight event framework. on/off also work on DOM nodes,
- // registering native DOM handlers.
-
- var noHandlers = [];
-
- var on = function(emitter, type, f) {
- if (emitter.addEventListener) {
- emitter.addEventListener(type, f, false);
- } else if (emitter.attachEvent) {
- emitter.attachEvent("on" + type, f);
- } else {
- var map = emitter._handlers || (emitter._handlers = {});
- map[type] = (map[type] || noHandlers).concat(f);
- }
- };
-
- function getHandlers(emitter, type) {
- return emitter._handlers && emitter._handlers[type] || noHandlers
- }
-
- function off(emitter, type, f) {
- if (emitter.removeEventListener) {
- emitter.removeEventListener(type, f, false);
- } else if (emitter.detachEvent) {
- emitter.detachEvent("on" + type, f);
- } else {
- var map = emitter._handlers, arr = map && map[type];
- if (arr) {
- var index = indexOf(arr, f);
- if (index > -1)
- { map[type] = arr.slice(0, index).concat(arr.slice(index + 1)); }
- }
- }
- }
-
- function signal(emitter, type /*, values...*/) {
- var handlers = getHandlers(emitter, type);
- if (!handlers.length) { return }
- var args = Array.prototype.slice.call(arguments, 2);
- for (var i = 0; i < handlers.length; ++i) { handlers[i].apply(null, args); }
- }
-
- // The DOM events that CodeMirror handles can be overridden by
- // registering a (non-DOM) handler on the editor for the event name,
- // and preventDefault-ing the event in that handler.
- function signalDOMEvent(cm, e, override) {
- if (typeof e == "string")
- { e = {type: e, preventDefault: function() { this.defaultPrevented = true; }}; }
- signal(cm, override || e.type, cm, e);
- return e_defaultPrevented(e) || e.codemirrorIgnore
- }
-
- function signalCursorActivity(cm) {
- var arr = cm._handlers && cm._handlers.cursorActivity;
- if (!arr) { return }
- var set = cm.curOp.cursorActivityHandlers || (cm.curOp.cursorActivityHandlers = []);
- for (var i = 0; i < arr.length; ++i) { if (indexOf(set, arr[i]) == -1)
- { set.push(arr[i]); } }
- }
-
- function hasHandler(emitter, type) {
- return getHandlers(emitter, type).length > 0
- }
-
- // Add on and off methods to a constructor's prototype, to make
- // registering events on such objects more convenient.
- function eventMixin(ctor) {
- ctor.prototype.on = function(type, f) {on(this, type, f);};
- ctor.prototype.off = function(type, f) {off(this, type, f);};
- }
-
- // Due to the fact that we still support jurassic IE versions, some
- // compatibility wrappers are needed.
-
- function e_preventDefault(e) {
- if (e.preventDefault) { e.preventDefault(); }
- else { e.returnValue = false; }
- }
- function e_stopPropagation(e) {
- if (e.stopPropagation) { e.stopPropagation(); }
- else { e.cancelBubble = true; }
- }
- function e_defaultPrevented(e) {
- return e.defaultPrevented != null ? e.defaultPrevented : e.returnValue == false
- }
- function e_stop(e) {e_preventDefault(e); e_stopPropagation(e);}
-
- function e_target(e) {return e.target || e.srcElement}
- function e_button(e) {
- var b = e.which;
- if (b == null) {
- if (e.button & 1) { b = 1; }
- else if (e.button & 2) { b = 3; }
- else if (e.button & 4) { b = 2; }
- }
- if (mac && e.ctrlKey && b == 1) { b = 3; }
- return b
- }
-
- // Detect drag-and-drop
- var dragAndDrop = function() {
- // There is *some* kind of drag-and-drop support in IE6-8, but I
- // couldn't get it to work yet.
- if (ie && ie_version < 9) { return false }
- var div = elt('div');
- return "draggable" in div || "dragDrop" in div
- }();
-
- var zwspSupported;
- function zeroWidthElement(measure) {
- if (zwspSupported == null) {
- var test = elt("span", "\u200b");
- removeChildrenAndAdd(measure, elt("span", [test, document.createTextNode("x")]));
- if (measure.firstChild.offsetHeight != 0)
- { zwspSupported = test.offsetWidth <= 1 && test.offsetHeight > 2 && !(ie && ie_version < 8); }
- }
- var node = zwspSupported ? elt("span", "\u200b") :
- elt("span", "\u00a0", null, "display: inline-block; width: 1px; margin-right: -1px");
- node.setAttribute("cm-text", "");
- return node
- }
-
- // Feature-detect IE's crummy client rect reporting for bidi text
- var badBidiRects;
- function hasBadBidiRects(measure) {
- if (badBidiRects != null) { return badBidiRects }
- var txt = removeChildrenAndAdd(measure, document.createTextNode("A\u062eA"));
- var r0 = range(txt, 0, 1).getBoundingClientRect();
- var r1 = range(txt, 1, 2).getBoundingClientRect();
- removeChildren(measure);
- if (!r0 || r0.left == r0.right) { return false } // Safari returns null in some cases (#2780)
- return badBidiRects = (r1.right - r0.right < 3)
- }
-
- // See if "".split is the broken IE version, if so, provide an
- // alternative way to split lines.
- var splitLinesAuto = "\n\nb".split(/\n/).length != 3 ? function (string) {
- var pos = 0, result = [], l = string.length;
- while (pos <= l) {
- var nl = string.indexOf("\n", pos);
- if (nl == -1) { nl = string.length; }
- var line = string.slice(pos, string.charAt(nl - 1) == "\r" ? nl - 1 : nl);
- var rt = line.indexOf("\r");
- if (rt != -1) {
- result.push(line.slice(0, rt));
- pos += rt + 1;
- } else {
- result.push(line);
- pos = nl + 1;
- }
- }
- return result
- } : function (string) { return string.split(/\r\n?|\n/); };
-
- var hasSelection = window.getSelection ? function (te) {
- try { return te.selectionStart != te.selectionEnd }
- catch(e) { return false }
- } : function (te) {
- var range;
- try {range = te.ownerDocument.selection.createRange();}
- catch(e) {}
- if (!range || range.parentElement() != te) { return false }
- return range.compareEndPoints("StartToEnd", range) != 0
- };
-
- var hasCopyEvent = (function () {
- var e = elt("div");
- if ("oncopy" in e) { return true }
- e.setAttribute("oncopy", "return;");
- return typeof e.oncopy == "function"
- })();
-
- var badZoomedRects = null;
- function hasBadZoomedRects(measure) {
- if (badZoomedRects != null) { return badZoomedRects }
- var node = removeChildrenAndAdd(measure, elt("span", "x"));
- var normal = node.getBoundingClientRect();
- var fromRange = range(node, 0, 1).getBoundingClientRect();
- return badZoomedRects = Math.abs(normal.left - fromRange.left) > 1
- }
-
- // Known modes, by name and by MIME
- var modes = {}, mimeModes = {};
-
- // Extra arguments are stored as the mode's dependencies, which is
- // used by (legacy) mechanisms like loadmode.js to automatically
- // load a mode. (Preferred mechanism is the require/define calls.)
- function defineMode(name, mode) {
- if (arguments.length > 2)
- { mode.dependencies = Array.prototype.slice.call(arguments, 2); }
- modes[name] = mode;
- }
-
- function defineMIME(mime, spec) {
- mimeModes[mime] = spec;
- }
-
- // Given a MIME type, a {name, ...options} config object, or a name
- // string, return a mode config object.
- function resolveMode(spec) {
- if (typeof spec == "string" && mimeModes.hasOwnProperty(spec)) {
- spec = mimeModes[spec];
- } else if (spec && typeof spec.name == "string" && mimeModes.hasOwnProperty(spec.name)) {
- var found = mimeModes[spec.name];
- if (typeof found == "string") { found = {name: found}; }
- spec = createObj(found, spec);
- spec.name = found.name;
- } else if (typeof spec == "string" && /^[\w\-]+\/[\w\-]+\+xml$/.test(spec)) {
- return resolveMode("application/xml")
- } else if (typeof spec == "string" && /^[\w\-]+\/[\w\-]+\+json$/.test(spec)) {
- return resolveMode("application/json")
- }
- if (typeof spec == "string") { return {name: spec} }
- else { return spec || {name: "null"} }
- }
-
- // Given a mode spec (anything that resolveMode accepts), find and
- // initialize an actual mode object.
- function getMode(options, spec) {
- spec = resolveMode(spec);
- var mfactory = modes[spec.name];
- if (!mfactory) { return getMode(options, "text/plain") }
- var modeObj = mfactory(options, spec);
- if (modeExtensions.hasOwnProperty(spec.name)) {
- var exts = modeExtensions[spec.name];
- for (var prop in exts) {
- if (!exts.hasOwnProperty(prop)) { continue }
- if (modeObj.hasOwnProperty(prop)) { modeObj["_" + prop] = modeObj[prop]; }
- modeObj[prop] = exts[prop];
- }
- }
- modeObj.name = spec.name;
- if (spec.helperType) { modeObj.helperType = spec.helperType; }
- if (spec.modeProps) { for (var prop$1 in spec.modeProps)
- { modeObj[prop$1] = spec.modeProps[prop$1]; } }
-
- return modeObj
- }
-
- // This can be used to attach properties to mode objects from
- // outside the actual mode definition.
- var modeExtensions = {};
- function extendMode(mode, properties) {
- var exts = modeExtensions.hasOwnProperty(mode) ? modeExtensions[mode] : (modeExtensions[mode] = {});
- copyObj(properties, exts);
- }
-
- function copyState(mode, state) {
- if (state === true) { return state }
- if (mode.copyState) { return mode.copyState(state) }
- var nstate = {};
- for (var n in state) {
- var val = state[n];
- if (val instanceof Array) { val = val.concat([]); }
- nstate[n] = val;
- }
- return nstate
- }
-
- // Given a mode and a state (for that mode), find the inner mode and
- // state at the position that the state refers to.
- function innerMode(mode, state) {
- var info;
- while (mode.innerMode) {
- info = mode.innerMode(state);
- if (!info || info.mode == mode) { break }
- state = info.state;
- mode = info.mode;
- }
- return info || {mode: mode, state: state}
- }
-
- function startState(mode, a1, a2) {
- return mode.startState ? mode.startState(a1, a2) : true
- }
-
- // STRING STREAM
-
- // Fed to the mode parsers, provides helper functions to make
- // parsers more succinct.
-
- var StringStream = function(string, tabSize, lineOracle) {
- this.pos = this.start = 0;
- this.string = string;
- this.tabSize = tabSize || 8;
- this.lastColumnPos = this.lastColumnValue = 0;
- this.lineStart = 0;
- this.lineOracle = lineOracle;
- };
-
- StringStream.prototype.eol = function () {return this.pos >= this.string.length};
- StringStream.prototype.sol = function () {return this.pos == this.lineStart};
- StringStream.prototype.peek = function () {return this.string.charAt(this.pos) || undefined};
- StringStream.prototype.next = function () {
- if (this.pos < this.string.length)
- { return this.string.charAt(this.pos++) }
- };
- StringStream.prototype.eat = function (match) {
- var ch = this.string.charAt(this.pos);
- var ok;
- if (typeof match == "string") { ok = ch == match; }
- else { ok = ch && (match.test ? match.test(ch) : match(ch)); }
- if (ok) {++this.pos; return ch}
- };
- StringStream.prototype.eatWhile = function (match) {
- var start = this.pos;
- while (this.eat(match)){}
- return this.pos > start
- };
- StringStream.prototype.eatSpace = function () {
- var start = this.pos;
- while (/[\s\u00a0]/.test(this.string.charAt(this.pos))) { ++this.pos; }
- return this.pos > start
- };
- StringStream.prototype.skipToEnd = function () {this.pos = this.string.length;};
- StringStream.prototype.skipTo = function (ch) {
- var found = this.string.indexOf(ch, this.pos);
- if (found > -1) {this.pos = found; return true}
- };
- StringStream.prototype.backUp = function (n) {this.pos -= n;};
- StringStream.prototype.column = function () {
- if (this.lastColumnPos < this.start) {
- this.lastColumnValue = countColumn(this.string, this.start, this.tabSize, this.lastColumnPos, this.lastColumnValue);
- this.lastColumnPos = this.start;
- }
- return this.lastColumnValue - (this.lineStart ? countColumn(this.string, this.lineStart, this.tabSize) : 0)
- };
- StringStream.prototype.indentation = function () {
- return countColumn(this.string, null, this.tabSize) -
- (this.lineStart ? countColumn(this.string, this.lineStart, this.tabSize) : 0)
- };
- StringStream.prototype.match = function (pattern, consume, caseInsensitive) {
- if (typeof pattern == "string") {
- var cased = function (str) { return caseInsensitive ? str.toLowerCase() : str; };
- var substr = this.string.substr(this.pos, pattern.length);
- if (cased(substr) == cased(pattern)) {
- if (consume !== false) { this.pos += pattern.length; }
- return true
- }
- } else {
- var match = this.string.slice(this.pos).match(pattern);
- if (match && match.index > 0) { return null }
- if (match && consume !== false) { this.pos += match[0].length; }
- return match
- }
- };
- StringStream.prototype.current = function (){return this.string.slice(this.start, this.pos)};
- StringStream.prototype.hideFirstChars = function (n, inner) {
- this.lineStart += n;
- try { return inner() }
- finally { this.lineStart -= n; }
- };
- StringStream.prototype.lookAhead = function (n) {
- var oracle = this.lineOracle;
- return oracle && oracle.lookAhead(n)
- };
- StringStream.prototype.baseToken = function () {
- var oracle = this.lineOracle;
- return oracle && oracle.baseToken(this.pos)
- };
-
- // Find the line object corresponding to the given line number.
- function getLine(doc, n) {
- n -= doc.first;
- if (n < 0 || n >= doc.size) { throw new Error("There is no line " + (n + doc.first) + " in the document.") }
- var chunk = doc;
- while (!chunk.lines) {
- for (var i = 0;; ++i) {
- var child = chunk.children[i], sz = child.chunkSize();
- if (n < sz) { chunk = child; break }
- n -= sz;
- }
- }
- return chunk.lines[n]
- }
-
- // Get the part of a document between two positions, as an array of
- // strings.
- function getBetween(doc, start, end) {
- var out = [], n = start.line;
- doc.iter(start.line, end.line + 1, function (line) {
- var text = line.text;
- if (n == end.line) { text = text.slice(0, end.ch); }
- if (n == start.line) { text = text.slice(start.ch); }
- out.push(text);
- ++n;
- });
- return out
- }
- // Get the lines between from and to, as array of strings.
- function getLines(doc, from, to) {
- var out = [];
- doc.iter(from, to, function (line) { out.push(line.text); }); // iter aborts when callback returns truthy value
- return out
- }
-
- // Update the height of a line, propagating the height change
- // upwards to parent nodes.
- function updateLineHeight(line, height) {
- var diff = height - line.height;
- if (diff) { for (var n = line; n; n = n.parent) { n.height += diff; } }
- }
-
- // Given a line object, find its line number by walking up through
- // its parent links.
- function lineNo(line) {
- if (line.parent == null) { return null }
- var cur = line.parent, no = indexOf(cur.lines, line);
- for (var chunk = cur.parent; chunk; cur = chunk, chunk = chunk.parent) {
- for (var i = 0;; ++i) {
- if (chunk.children[i] == cur) { break }
- no += chunk.children[i].chunkSize();
- }
- }
- return no + cur.first
- }
-
- // Find the line at the given vertical position, using the height
- // information in the document tree.
- function lineAtHeight(chunk, h) {
- var n = chunk.first;
- outer: do {
- for (var i$1 = 0; i$1 < chunk.children.length; ++i$1) {
- var child = chunk.children[i$1], ch = child.height;
- if (h < ch) { chunk = child; continue outer }
- h -= ch;
- n += child.chunkSize();
- }
- return n
- } while (!chunk.lines)
- var i = 0;
- for (; i < chunk.lines.length; ++i) {
- var line = chunk.lines[i], lh = line.height;
- if (h < lh) { break }
- h -= lh;
- }
- return n + i
- }
-
- function isLine(doc, l) {return l >= doc.first && l < doc.first + doc.size}
-
- function lineNumberFor(options, i) {
- return String(options.lineNumberFormatter(i + options.firstLineNumber))
- }
-
- // A Pos instance represents a position within the text.
- function Pos(line, ch, sticky) {
- if ( sticky === void 0 ) sticky = null;
-
- if (!(this instanceof Pos)) { return new Pos(line, ch, sticky) }
- this.line = line;
- this.ch = ch;
- this.sticky = sticky;
- }
-
- // Compare two positions, return 0 if they are the same, a negative
- // number when a is less, and a positive number otherwise.
- function cmp(a, b) { return a.line - b.line || a.ch - b.ch }
-
- function equalCursorPos(a, b) { return a.sticky == b.sticky && cmp(a, b) == 0 }
-
- function copyPos(x) {return Pos(x.line, x.ch)}
- function maxPos(a, b) { return cmp(a, b) < 0 ? b : a }
- function minPos(a, b) { return cmp(a, b) < 0 ? a : b }
-
- // Most of the external API clips given positions to make sure they
- // actually exist within the document.
- function clipLine(doc, n) {return Math.max(doc.first, Math.min(n, doc.first + doc.size - 1))}
- function clipPos(doc, pos) {
- if (pos.line < doc.first) { return Pos(doc.first, 0) }
- var last = doc.first + doc.size - 1;
- if (pos.line > last) { return Pos(last, getLine(doc, last).text.length) }
- return clipToLen(pos, getLine(doc, pos.line).text.length)
- }
- function clipToLen(pos, linelen) {
- var ch = pos.ch;
- if (ch == null || ch > linelen) { return Pos(pos.line, linelen) }
- else if (ch < 0) { return Pos(pos.line, 0) }
- else { return pos }
- }
- function clipPosArray(doc, array) {
- var out = [];
- for (var i = 0; i < array.length; i++) { out[i] = clipPos(doc, array[i]); }
- return out
- }
-
- var SavedContext = function(state, lookAhead) {
- this.state = state;
- this.lookAhead = lookAhead;
- };
-
- var Context = function(doc, state, line, lookAhead) {
- this.state = state;
- this.doc = doc;
- this.line = line;
- this.maxLookAhead = lookAhead || 0;
- this.baseTokens = null;
- this.baseTokenPos = 1;
- };
-
- Context.prototype.lookAhead = function (n) {
- var line = this.doc.getLine(this.line + n);
- if (line != null && n > this.maxLookAhead) { this.maxLookAhead = n; }
- return line
- };
-
- Context.prototype.baseToken = function (n) {
- if (!this.baseTokens) { return null }
- while (this.baseTokens[this.baseTokenPos] <= n)
- { this.baseTokenPos += 2; }
- var type = this.baseTokens[this.baseTokenPos + 1];
- return {type: type && type.replace(/( |^)overlay .*/, ""),
- size: this.baseTokens[this.baseTokenPos] - n}
- };
-
- Context.prototype.nextLine = function () {
- this.line++;
- if (this.maxLookAhead > 0) { this.maxLookAhead--; }
- };
-
- Context.fromSaved = function (doc, saved, line) {
- if (saved instanceof SavedContext)
- { return new Context(doc, copyState(doc.mode, saved.state), line, saved.lookAhead) }
- else
- { return new Context(doc, copyState(doc.mode, saved), line) }
- };
-
- Context.prototype.save = function (copy) {
- var state = copy !== false ? copyState(this.doc.mode, this.state) : this.state;
- return this.maxLookAhead > 0 ? new SavedContext(state, this.maxLookAhead) : state
- };
-
-
- // Compute a style array (an array starting with a mode generation
- // -- for invalidation -- followed by pairs of end positions and
- // style strings), which is used to highlight the tokens on the
- // line.
- function highlightLine(cm, line, context, forceToEnd) {
- // A styles array always starts with a number identifying the
- // mode/overlays that it is based on (for easy invalidation).
- var st = [cm.state.modeGen], lineClasses = {};
- // Compute the base array of styles
- runMode(cm, line.text, cm.doc.mode, context, function (end, style) { return st.push(end, style); },
- lineClasses, forceToEnd);
- var state = context.state;
-
- // Run overlays, adjust style array.
- var loop = function ( o ) {
- context.baseTokens = st;
- var overlay = cm.state.overlays[o], i = 1, at = 0;
- context.state = true;
- runMode(cm, line.text, overlay.mode, context, function (end, style) {
- var start = i;
- // Ensure there's a token end at the current position, and that i points at it
- while (at < end) {
- var i_end = st[i];
- if (i_end > end)
- { st.splice(i, 1, end, st[i+1], i_end); }
- i += 2;
- at = Math.min(end, i_end);
- }
- if (!style) { return }
- if (overlay.opaque) {
- st.splice(start, i - start, end, "overlay " + style);
- i = start + 2;
- } else {
- for (; start < i; start += 2) {
- var cur = st[start+1];
- st[start+1] = (cur ? cur + " " : "") + "overlay " + style;
- }
- }
- }, lineClasses);
- context.state = state;
- context.baseTokens = null;
- context.baseTokenPos = 1;
- };
-
- for (var o = 0; o < cm.state.overlays.length; ++o) loop( o );
-
- return {styles: st, classes: lineClasses.bgClass || lineClasses.textClass ? lineClasses : null}
- }
-
- function getLineStyles(cm, line, updateFrontier) {
- if (!line.styles || line.styles[0] != cm.state.modeGen) {
- var context = getContextBefore(cm, lineNo(line));
- var resetState = line.text.length > cm.options.maxHighlightLength && copyState(cm.doc.mode, context.state);
- var result = highlightLine(cm, line, context);
- if (resetState) { context.state = resetState; }
- line.stateAfter = context.save(!resetState);
- line.styles = result.styles;
- if (result.classes) { line.styleClasses = result.classes; }
- else if (line.styleClasses) { line.styleClasses = null; }
- if (updateFrontier === cm.doc.highlightFrontier)
- { cm.doc.modeFrontier = Math.max(cm.doc.modeFrontier, ++cm.doc.highlightFrontier); }
- }
- return line.styles
- }
-
- function getContextBefore(cm, n, precise) {
- var doc = cm.doc, display = cm.display;
- if (!doc.mode.startState) { return new Context(doc, true, n) }
- var start = findStartLine(cm, n, precise);
- var saved = start > doc.first && getLine(doc, start - 1).stateAfter;
- var context = saved ? Context.fromSaved(doc, saved, start) : new Context(doc, startState(doc.mode), start);
-
- doc.iter(start, n, function (line) {
- processLine(cm, line.text, context);
- var pos = context.line;
- line.stateAfter = pos == n - 1 || pos % 5 == 0 || pos >= display.viewFrom && pos < display.viewTo ? context.save() : null;
- context.nextLine();
- });
- if (precise) { doc.modeFrontier = context.line; }
- return context
- }
-
- // Lightweight form of highlight -- proceed over this line and
- // update state, but don't save a style array. Used for lines that
- // aren't currently visible.
- function processLine(cm, text, context, startAt) {
- var mode = cm.doc.mode;
- var stream = new StringStream(text, cm.options.tabSize, context);
- stream.start = stream.pos = startAt || 0;
- if (text == "") { callBlankLine(mode, context.state); }
- while (!stream.eol()) {
- readToken(mode, stream, context.state);
- stream.start = stream.pos;
- }
- }
-
- function callBlankLine(mode, state) {
- if (mode.blankLine) { return mode.blankLine(state) }
- if (!mode.innerMode) { return }
- var inner = innerMode(mode, state);
- if (inner.mode.blankLine) { return inner.mode.blankLine(inner.state) }
- }
-
- function readToken(mode, stream, state, inner) {
- for (var i = 0; i < 10; i++) {
- if (inner) { inner[0] = innerMode(mode, state).mode; }
- var style = mode.token(stream, state);
- if (stream.pos > stream.start) { return style }
- }
- throw new Error("Mode " + mode.name + " failed to advance stream.")
- }
-
- var Token = function(stream, type, state) {
- this.start = stream.start; this.end = stream.pos;
- this.string = stream.current();
- this.type = type || null;
- this.state = state;
- };
-
- // Utility for getTokenAt and getLineTokens
- function takeToken(cm, pos, precise, asArray) {
- var doc = cm.doc, mode = doc.mode, style;
- pos = clipPos(doc, pos);
- var line = getLine(doc, pos.line), context = getContextBefore(cm, pos.line, precise);
- var stream = new StringStream(line.text, cm.options.tabSize, context), tokens;
- if (asArray) { tokens = []; }
- while ((asArray || stream.pos < pos.ch) && !stream.eol()) {
- stream.start = stream.pos;
- style = readToken(mode, stream, context.state);
- if (asArray) { tokens.push(new Token(stream, style, copyState(doc.mode, context.state))); }
- }
- return asArray ? tokens : new Token(stream, style, context.state)
- }
-
- function extractLineClasses(type, output) {
- if (type) { for (;;) {
- var lineClass = type.match(/(?:^|\s+)line-(background-)?(\S+)/);
- if (!lineClass) { break }
- type = type.slice(0, lineClass.index) + type.slice(lineClass.index + lineClass[0].length);
- var prop = lineClass[1] ? "bgClass" : "textClass";
- if (output[prop] == null)
- { output[prop] = lineClass[2]; }
- else if (!(new RegExp("(?:^|\s)" + lineClass[2] + "(?:$|\s)")).test(output[prop]))
- { output[prop] += " " + lineClass[2]; }
- } }
- return type
- }
-
- // Run the given mode's parser over a line, calling f for each token.
- function runMode(cm, text, mode, context, f, lineClasses, forceToEnd) {
- var flattenSpans = mode.flattenSpans;
- if (flattenSpans == null) { flattenSpans = cm.options.flattenSpans; }
- var curStart = 0, curStyle = null;
- var stream = new StringStream(text, cm.options.tabSize, context), style;
- var inner = cm.options.addModeClass && [null];
- if (text == "") { extractLineClasses(callBlankLine(mode, context.state), lineClasses); }
- while (!stream.eol()) {
- if (stream.pos > cm.options.maxHighlightLength) {
- flattenSpans = false;
- if (forceToEnd) { processLine(cm, text, context, stream.pos); }
- stream.pos = text.length;
- style = null;
- } else {
- style = extractLineClasses(readToken(mode, stream, context.state, inner), lineClasses);
- }
- if (inner) {
- var mName = inner[0].name;
- if (mName) { style = "m-" + (style ? mName + " " + style : mName); }
- }
- if (!flattenSpans || curStyle != style) {
- while (curStart < stream.start) {
- curStart = Math.min(stream.start, curStart + 5000);
- f(curStart, curStyle);
- }
- curStyle = style;
- }
- stream.start = stream.pos;
- }
- while (curStart < stream.pos) {
- // Webkit seems to refuse to render text nodes longer than 57444
- // characters, and returns inaccurate measurements in nodes
- // starting around 5000 chars.
- var pos = Math.min(stream.pos, curStart + 5000);
- f(pos, curStyle);
- curStart = pos;
- }
- }
-
- // Finds the line to start with when starting a parse. Tries to
- // find a line with a stateAfter, so that it can start with a
- // valid state. If that fails, it returns the line with the
- // smallest indentation, which tends to need the least context to
- // parse correctly.
- function findStartLine(cm, n, precise) {
- var minindent, minline, doc = cm.doc;
- var lim = precise ? -1 : n - (cm.doc.mode.innerMode ? 1000 : 100);
- for (var search = n; search > lim; --search) {
- if (search <= doc.first) { return doc.first }
- var line = getLine(doc, search - 1), after = line.stateAfter;
- if (after && (!precise || search + (after instanceof SavedContext ? after.lookAhead : 0) <= doc.modeFrontier))
- { return search }
- var indented = countColumn(line.text, null, cm.options.tabSize);
- if (minline == null || minindent > indented) {
- minline = search - 1;
- minindent = indented;
- }
- }
- return minline
- }
-
- function retreatFrontier(doc, n) {
- doc.modeFrontier = Math.min(doc.modeFrontier, n);
- if (doc.highlightFrontier < n - 10) { return }
- var start = doc.first;
- for (var line = n - 1; line > start; line--) {
- var saved = getLine(doc, line).stateAfter;
- // change is on 3
- // state on line 1 looked ahead 2 -- so saw 3
- // test 1 + 2 < 3 should cover this
- if (saved && (!(saved instanceof SavedContext) || line + saved.lookAhead < n)) {
- start = line + 1;
- break
- }
- }
- doc.highlightFrontier = Math.min(doc.highlightFrontier, start);
- }
-
- // Optimize some code when these features are not used.
- var sawReadOnlySpans = false, sawCollapsedSpans = false;
-
- function seeReadOnlySpans() {
- sawReadOnlySpans = true;
- }
-
- function seeCollapsedSpans() {
- sawCollapsedSpans = true;
- }
-
- // TEXTMARKER SPANS
-
- function MarkedSpan(marker, from, to) {
- this.marker = marker;
- this.from = from; this.to = to;
- }
-
- // Search an array of spans for a span matching the given marker.
- function getMarkedSpanFor(spans, marker) {
- if (spans) { for (var i = 0; i < spans.length; ++i) {
- var span = spans[i];
- if (span.marker == marker) { return span }
- } }
- }
- // Remove a span from an array, returning undefined if no spans are
- // left (we don't store arrays for lines without spans).
- function removeMarkedSpan(spans, span) {
- var r;
- for (var i = 0; i < spans.length; ++i)
- { if (spans[i] != span) { (r || (r = [])).push(spans[i]); } }
- return r
- }
- // Add a span to a line.
- function addMarkedSpan(line, span) {
- line.markedSpans = line.markedSpans ? line.markedSpans.concat([span]) : [span];
- span.marker.attachLine(line);
- }
-
- // Used for the algorithm that adjusts markers for a change in the
- // document. These functions cut an array of spans at a given
- // character position, returning an array of remaining chunks (or
- // undefined if nothing remains).
- function markedSpansBefore(old, startCh, isInsert) {
- var nw;
- if (old) { for (var i = 0; i < old.length; ++i) {
- var span = old[i], marker = span.marker;
- var startsBefore = span.from == null || (marker.inclusiveLeft ? span.from <= startCh : span.from < startCh);
- if (startsBefore || span.from == startCh && marker.type == "bookmark" && (!isInsert || !span.marker.insertLeft)) {
- var endsAfter = span.to == null || (marker.inclusiveRight ? span.to >= startCh : span.to > startCh)
- ;(nw || (nw = [])).push(new MarkedSpan(marker, span.from, endsAfter ? null : span.to));
- }
- } }
- return nw
- }
- function markedSpansAfter(old, endCh, isInsert) {
- var nw;
- if (old) { for (var i = 0; i < old.length; ++i) {
- var span = old[i], marker = span.marker;
- var endsAfter = span.to == null || (marker.inclusiveRight ? span.to >= endCh : span.to > endCh);
- if (endsAfter || span.from == endCh && marker.type == "bookmark" && (!isInsert || span.marker.insertLeft)) {
- var startsBefore = span.from == null || (marker.inclusiveLeft ? span.from <= endCh : span.from < endCh)
- ;(nw || (nw = [])).push(new MarkedSpan(marker, startsBefore ? null : span.from - endCh,
- span.to == null ? null : span.to - endCh));
- }
- } }
- return nw
- }
-
- // Given a change object, compute the new set of marker spans that
- // cover the line in which the change took place. Removes spans
- // entirely within the change, reconnects spans belonging to the
- // same marker that appear on both sides of the change, and cuts off
- // spans partially within the change. Returns an array of span
- // arrays with one element for each line in (after) the change.
- function stretchSpansOverChange(doc, change) {
- if (change.full) { return null }
- var oldFirst = isLine(doc, change.from.line) && getLine(doc, change.from.line).markedSpans;
- var oldLast = isLine(doc, change.to.line) && getLine(doc, change.to.line).markedSpans;
- if (!oldFirst && !oldLast) { return null }
-
- var startCh = change.from.ch, endCh = change.to.ch, isInsert = cmp(change.from, change.to) == 0;
- // Get the spans that 'stick out' on both sides
- var first = markedSpansBefore(oldFirst, startCh, isInsert);
- var last = markedSpansAfter(oldLast, endCh, isInsert);
-
- // Next, merge those two ends
- var sameLine = change.text.length == 1, offset = lst(change.text).length + (sameLine ? startCh : 0);
- if (first) {
- // Fix up .to properties of first
- for (var i = 0; i < first.length; ++i) {
- var span = first[i];
- if (span.to == null) {
- var found = getMarkedSpanFor(last, span.marker);
- if (!found) { span.to = startCh; }
- else if (sameLine) { span.to = found.to == null ? null : found.to + offset; }
- }
- }
- }
- if (last) {
- // Fix up .from in last (or move them into first in case of sameLine)
- for (var i$1 = 0; i$1 < last.length; ++i$1) {
- var span$1 = last[i$1];
- if (span$1.to != null) { span$1.to += offset; }
- if (span$1.from == null) {
- var found$1 = getMarkedSpanFor(first, span$1.marker);
- if (!found$1) {
- span$1.from = offset;
- if (sameLine) { (first || (first = [])).push(span$1); }
- }
- } else {
- span$1.from += offset;
- if (sameLine) { (first || (first = [])).push(span$1); }
- }
- }
- }
- // Make sure we didn't create any zero-length spans
- if (first) { first = clearEmptySpans(first); }
- if (last && last != first) { last = clearEmptySpans(last); }
-
- var newMarkers = [first];
- if (!sameLine) {
- // Fill gap with whole-line-spans
- var gap = change.text.length - 2, gapMarkers;
- if (gap > 0 && first)
- { for (var i$2 = 0; i$2 < first.length; ++i$2)
- { if (first[i$2].to == null)
- { (gapMarkers || (gapMarkers = [])).push(new MarkedSpan(first[i$2].marker, null, null)); } } }
- for (var i$3 = 0; i$3 < gap; ++i$3)
- { newMarkers.push(gapMarkers); }
- newMarkers.push(last);
- }
- return newMarkers
- }
-
- // Remove spans that are empty and don't have a clearWhenEmpty
- // option of false.
- function clearEmptySpans(spans) {
- for (var i = 0; i < spans.length; ++i) {
- var span = spans[i];
- if (span.from != null && span.from == span.to && span.marker.clearWhenEmpty !== false)
- { spans.splice(i--, 1); }
- }
- if (!spans.length) { return null }
- return spans
- }
-
- // Used to 'clip' out readOnly ranges when making a change.
- function removeReadOnlyRanges(doc, from, to) {
- var markers = null;
- doc.iter(from.line, to.line + 1, function (line) {
- if (line.markedSpans) { for (var i = 0; i < line.markedSpans.length; ++i) {
- var mark = line.markedSpans[i].marker;
- if (mark.readOnly && (!markers || indexOf(markers, mark) == -1))
- { (markers || (markers = [])).push(mark); }
- } }
- });
- if (!markers) { return null }
- var parts = [{from: from, to: to}];
- for (var i = 0; i < markers.length; ++i) {
- var mk = markers[i], m = mk.find(0);
- for (var j = 0; j < parts.length; ++j) {
- var p = parts[j];
- if (cmp(p.to, m.from) < 0 || cmp(p.from, m.to) > 0) { continue }
- var newParts = [j, 1], dfrom = cmp(p.from, m.from), dto = cmp(p.to, m.to);
- if (dfrom < 0 || !mk.inclusiveLeft && !dfrom)
- { newParts.push({from: p.from, to: m.from}); }
- if (dto > 0 || !mk.inclusiveRight && !dto)
- { newParts.push({from: m.to, to: p.to}); }
- parts.splice.apply(parts, newParts);
- j += newParts.length - 3;
- }
- }
- return parts
- }
-
- // Connect or disconnect spans from a line.
- function detachMarkedSpans(line) {
- var spans = line.markedSpans;
- if (!spans) { return }
- for (var i = 0; i < spans.length; ++i)
- { spans[i].marker.detachLine(line); }
- line.markedSpans = null;
- }
- function attachMarkedSpans(line, spans) {
- if (!spans) { return }
- for (var i = 0; i < spans.length; ++i)
- { spans[i].marker.attachLine(line); }
- line.markedSpans = spans;
- }
-
- // Helpers used when computing which overlapping collapsed span
- // counts as the larger one.
- function extraLeft(marker) { return marker.inclusiveLeft ? -1 : 0 }
- function extraRight(marker) { return marker.inclusiveRight ? 1 : 0 }
-
- // Returns a number indicating which of two overlapping collapsed
- // spans is larger (and thus includes the other). Falls back to
- // comparing ids when the spans cover exactly the same range.
- function compareCollapsedMarkers(a, b) {
- var lenDiff = a.lines.length - b.lines.length;
- if (lenDiff != 0) { return lenDiff }
- var aPos = a.find(), bPos = b.find();
- var fromCmp = cmp(aPos.from, bPos.from) || extraLeft(a) - extraLeft(b);
- if (fromCmp) { return -fromCmp }
- var toCmp = cmp(aPos.to, bPos.to) || extraRight(a) - extraRight(b);
- if (toCmp) { return toCmp }
- return b.id - a.id
- }
-
- // Find out whether a line ends or starts in a collapsed span. If
- // so, return the marker for that span.
- function collapsedSpanAtSide(line, start) {
- var sps = sawCollapsedSpans && line.markedSpans, found;
- if (sps) { for (var sp = (void 0), i = 0; i < sps.length; ++i) {
- sp = sps[i];
- if (sp.marker.collapsed && (start ? sp.from : sp.to) == null &&
- (!found || compareCollapsedMarkers(found, sp.marker) < 0))
- { found = sp.marker; }
- } }
- return found
- }
- function collapsedSpanAtStart(line) { return collapsedSpanAtSide(line, true) }
- function collapsedSpanAtEnd(line) { return collapsedSpanAtSide(line, false) }
-
- function collapsedSpanAround(line, ch) {
- var sps = sawCollapsedSpans && line.markedSpans, found;
- if (sps) { for (var i = 0; i < sps.length; ++i) {
- var sp = sps[i];
- if (sp.marker.collapsed && (sp.from == null || sp.from < ch) && (sp.to == null || sp.to > ch) &&
- (!found || compareCollapsedMarkers(found, sp.marker) < 0)) { found = sp.marker; }
- } }
- return found
- }
-
- // Test whether there exists a collapsed span that partially
- // overlaps (covers the start or end, but not both) of a new span.
- // Such overlap is not allowed.
- function conflictingCollapsedRange(doc, lineNo, from, to, marker) {
- var line = getLine(doc, lineNo);
- var sps = sawCollapsedSpans && line.markedSpans;
- if (sps) { for (var i = 0; i < sps.length; ++i) {
- var sp = sps[i];
- if (!sp.marker.collapsed) { continue }
- var found = sp.marker.find(0);
- var fromCmp = cmp(found.from, from) || extraLeft(sp.marker) - extraLeft(marker);
- var toCmp = cmp(found.to, to) || extraRight(sp.marker) - extraRight(marker);
- if (fromCmp >= 0 && toCmp <= 0 || fromCmp <= 0 && toCmp >= 0) { continue }
- if (fromCmp <= 0 && (sp.marker.inclusiveRight && marker.inclusiveLeft ? cmp(found.to, from) >= 0 : cmp(found.to, from) > 0) ||
- fromCmp >= 0 && (sp.marker.inclusiveRight && marker.inclusiveLeft ? cmp(found.from, to) <= 0 : cmp(found.from, to) < 0))
- { return true }
- } }
- }
-
- // A visual line is a line as drawn on the screen. Folding, for
- // example, can cause multiple logical lines to appear on the same
- // visual line. This finds the start of the visual line that the
- // given line is part of (usually that is the line itself).
- function visualLine(line) {
- var merged;
- while (merged = collapsedSpanAtStart(line))
- { line = merged.find(-1, true).line; }
- return line
- }
-
- function visualLineEnd(line) {
- var merged;
- while (merged = collapsedSpanAtEnd(line))
- { line = merged.find(1, true).line; }
- return line
- }
-
- // Returns an array of logical lines that continue the visual line
- // started by the argument, or undefined if there are no such lines.
- function visualLineContinued(line) {
- var merged, lines;
- while (merged = collapsedSpanAtEnd(line)) {
- line = merged.find(1, true).line
- ;(lines || (lines = [])).push(line);
- }
- return lines
- }
-
- // Get the line number of the start of the visual line that the
- // given line number is part of.
- function visualLineNo(doc, lineN) {
- var line = getLine(doc, lineN), vis = visualLine(line);
- if (line == vis) { return lineN }
- return lineNo(vis)
- }
-
- // Get the line number of the start of the next visual line after
- // the given line.
- function visualLineEndNo(doc, lineN) {
- if (lineN > doc.lastLine()) { return lineN }
- var line = getLine(doc, lineN), merged;
- if (!lineIsHidden(doc, line)) { return lineN }
- while (merged = collapsedSpanAtEnd(line))
- { line = merged.find(1, true).line; }
- return lineNo(line) + 1
- }
-
- // Compute whether a line is hidden. Lines count as hidden when they
- // are part of a visual line that starts with another line, or when
- // they are entirely covered by collapsed, non-widget span.
- function lineIsHidden(doc, line) {
- var sps = sawCollapsedSpans && line.markedSpans;
- if (sps) { for (var sp = (void 0), i = 0; i < sps.length; ++i) {
- sp = sps[i];
- if (!sp.marker.collapsed) { continue }
- if (sp.from == null) { return true }
- if (sp.marker.widgetNode) { continue }
- if (sp.from == 0 && sp.marker.inclusiveLeft && lineIsHiddenInner(doc, line, sp))
- { return true }
- } }
- }
- function lineIsHiddenInner(doc, line, span) {
- if (span.to == null) {
- var end = span.marker.find(1, true);
- return lineIsHiddenInner(doc, end.line, getMarkedSpanFor(end.line.markedSpans, span.marker))
- }
- if (span.marker.inclusiveRight && span.to == line.text.length)
- { return true }
- for (var sp = (void 0), i = 0; i < line.markedSpans.length; ++i) {
- sp = line.markedSpans[i];
- if (sp.marker.collapsed && !sp.marker.widgetNode && sp.from == span.to &&
- (sp.to == null || sp.to != span.from) &&
- (sp.marker.inclusiveLeft || span.marker.inclusiveRight) &&
- lineIsHiddenInner(doc, line, sp)) { return true }
- }
- }
-
- // Find the height above the given line.
- function heightAtLine(lineObj) {
- lineObj = visualLine(lineObj);
-
- var h = 0, chunk = lineObj.parent;
- for (var i = 0; i < chunk.lines.length; ++i) {
- var line = chunk.lines[i];
- if (line == lineObj) { break }
- else { h += line.height; }
- }
- for (var p = chunk.parent; p; chunk = p, p = chunk.parent) {
- for (var i$1 = 0; i$1 < p.children.length; ++i$1) {
- var cur = p.children[i$1];
- if (cur == chunk) { break }
- else { h += cur.height; }
- }
- }
- return h
- }
-
- // Compute the character length of a line, taking into account
- // collapsed ranges (see markText) that might hide parts, and join
- // other lines onto it.
- function lineLength(line) {
- if (line.height == 0) { return 0 }
- var len = line.text.length, merged, cur = line;
- while (merged = collapsedSpanAtStart(cur)) {
- var found = merged.find(0, true);
- cur = found.from.line;
- len += found.from.ch - found.to.ch;
- }
- cur = line;
- while (merged = collapsedSpanAtEnd(cur)) {
- var found$1 = merged.find(0, true);
- len -= cur.text.length - found$1.from.ch;
- cur = found$1.to.line;
- len += cur.text.length - found$1.to.ch;
- }
- return len
- }
-
- // Find the longest line in the document.
- function findMaxLine(cm) {
- var d = cm.display, doc = cm.doc;
- d.maxLine = getLine(doc, doc.first);
- d.maxLineLength = lineLength(d.maxLine);
- d.maxLineChanged = true;
- doc.iter(function (line) {
- var len = lineLength(line);
- if (len > d.maxLineLength) {
- d.maxLineLength = len;
- d.maxLine = line;
- }
- });
- }
-
- // LINE DATA STRUCTURE
-
- // Line objects. These hold state related to a line, including
- // highlighting info (the styles array).
- var Line = function(text, markedSpans, estimateHeight) {
- this.text = text;
- attachMarkedSpans(this, markedSpans);
- this.height = estimateHeight ? estimateHeight(this) : 1;
- };
-
- Line.prototype.lineNo = function () { return lineNo(this) };
- eventMixin(Line);
-
- // Change the content (text, markers) of a line. Automatically
- // invalidates cached information and tries to re-estimate the
- // line's height.
- function updateLine(line, text, markedSpans, estimateHeight) {
- line.text = text;
- if (line.stateAfter) { line.stateAfter = null; }
- if (line.styles) { line.styles = null; }
- if (line.order != null) { line.order = null; }
- detachMarkedSpans(line);
- attachMarkedSpans(line, markedSpans);
- var estHeight = estimateHeight ? estimateHeight(line) : 1;
- if (estHeight != line.height) { updateLineHeight(line, estHeight); }
- }
-
- // Detach a line from the document tree and its markers.
- function cleanUpLine(line) {
- line.parent = null;
- detachMarkedSpans(line);
- }
-
- // Convert a style as returned by a mode (either null, or a string
- // containing one or more styles) to a CSS style. This is cached,
- // and also looks for line-wide styles.
- var styleToClassCache = {}, styleToClassCacheWithMode = {};
- function interpretTokenStyle(style, options) {
- if (!style || /^\s*$/.test(style)) { return null }
- var cache = options.addModeClass ? styleToClassCacheWithMode : styleToClassCache;
- return cache[style] ||
- (cache[style] = style.replace(/\S+/g, "cm-$&"))
- }
-
- // Render the DOM representation of the text of a line. Also builds
- // up a 'line map', which points at the DOM nodes that represent
- // specific stretches of text, and is used by the measuring code.
- // The returned object contains the DOM node, this map, and
- // information about line-wide styles that were set by the mode.
- function buildLineContent(cm, lineView) {
- // The padding-right forces the element to have a 'border', which
- // is needed on Webkit to be able to get line-level bounding
- // rectangles for it (in measureChar).
- var content = eltP("span", null, null, webkit ? "padding-right: .1px" : null);
- var builder = {pre: eltP("pre", [content], "CodeMirror-line"), content: content,
- col: 0, pos: 0, cm: cm,
- trailingSpace: false,
- splitSpaces: cm.getOption("lineWrapping")};
- lineView.measure = {};
-
- // Iterate over the logical lines that make up this visual line.
- for (var i = 0; i <= (lineView.rest ? lineView.rest.length : 0); i++) {
- var line = i ? lineView.rest[i - 1] : lineView.line, order = (void 0);
- builder.pos = 0;
- builder.addToken = buildToken;
- // Optionally wire in some hacks into the token-rendering
- // algorithm, to deal with browser quirks.
- if (hasBadBidiRects(cm.display.measure) && (order = getOrder(line, cm.doc.direction)))
- { builder.addToken = buildTokenBadBidi(builder.addToken, order); }
- builder.map = [];
- var allowFrontierUpdate = lineView != cm.display.externalMeasured && lineNo(line);
- insertLineContent(line, builder, getLineStyles(cm, line, allowFrontierUpdate));
- if (line.styleClasses) {
- if (line.styleClasses.bgClass)
- { builder.bgClass = joinClasses(line.styleClasses.bgClass, builder.bgClass || ""); }
- if (line.styleClasses.textClass)
- { builder.textClass = joinClasses(line.styleClasses.textClass, builder.textClass || ""); }
- }
-
- // Ensure at least a single node is present, for measuring.
- if (builder.map.length == 0)
- { builder.map.push(0, 0, builder.content.appendChild(zeroWidthElement(cm.display.measure))); }
-
- // Store the map and a cache object for the current logical line
- if (i == 0) {
- lineView.measure.map = builder.map;
- lineView.measure.cache = {};
- } else {
- (lineView.measure.maps || (lineView.measure.maps = [])).push(builder.map)
- ;(lineView.measure.caches || (lineView.measure.caches = [])).push({});
- }
- }
-
- // See issue #2901
- if (webkit) {
- var last = builder.content.lastChild;
- if (/\bcm-tab\b/.test(last.className) || (last.querySelector && last.querySelector(".cm-tab")))
- { builder.content.className = "cm-tab-wrap-hack"; }
- }
-
- signal(cm, "renderLine", cm, lineView.line, builder.pre);
- if (builder.pre.className)
- { builder.textClass = joinClasses(builder.pre.className, builder.textClass || ""); }
-
- return builder
- }
-
- function defaultSpecialCharPlaceholder(ch) {
- var token = elt("span", "\u2022", "cm-invalidchar");
- token.title = "\\u" + ch.charCodeAt(0).toString(16);
- token.setAttribute("aria-label", token.title);
- return token
- }
-
- // Build up the DOM representation for a single token, and add it to
- // the line map. Takes care to render special characters separately.
- function buildToken(builder, text, style, startStyle, endStyle, css, attributes) {
- if (!text) { return }
- var displayText = builder.splitSpaces ? splitSpaces(text, builder.trailingSpace) : text;
- var special = builder.cm.state.specialChars, mustWrap = false;
- var content;
- if (!special.test(text)) {
- builder.col += text.length;
- content = document.createTextNode(displayText);
- builder.map.push(builder.pos, builder.pos + text.length, content);
- if (ie && ie_version < 9) { mustWrap = true; }
- builder.pos += text.length;
- } else {
- content = document.createDocumentFragment();
- var pos = 0;
- while (true) {
- special.lastIndex = pos;
- var m = special.exec(text);
- var skipped = m ? m.index - pos : text.length - pos;
- if (skipped) {
- var txt = document.createTextNode(displayText.slice(pos, pos + skipped));
- if (ie && ie_version < 9) { content.appendChild(elt("span", [txt])); }
- else { content.appendChild(txt); }
- builder.map.push(builder.pos, builder.pos + skipped, txt);
- builder.col += skipped;
- builder.pos += skipped;
- }
- if (!m) { break }
- pos += skipped + 1;
- var txt$1 = (void 0);
- if (m[0] == "\t") {
- var tabSize = builder.cm.options.tabSize, tabWidth = tabSize - builder.col % tabSize;
- txt$1 = content.appendChild(elt("span", spaceStr(tabWidth), "cm-tab"));
- txt$1.setAttribute("role", "presentation");
- txt$1.setAttribute("cm-text", "\t");
- builder.col += tabWidth;
- } else if (m[0] == "\r" || m[0] == "\n") {
- txt$1 = content.appendChild(elt("span", m[0] == "\r" ? "\u240d" : "\u2424", "cm-invalidchar"));
- txt$1.setAttribute("cm-text", m[0]);
- builder.col += 1;
- } else {
- txt$1 = builder.cm.options.specialCharPlaceholder(m[0]);
- txt$1.setAttribute("cm-text", m[0]);
- if (ie && ie_version < 9) { content.appendChild(elt("span", [txt$1])); }
- else { content.appendChild(txt$1); }
- builder.col += 1;
- }
- builder.map.push(builder.pos, builder.pos + 1, txt$1);
- builder.pos++;
- }
- }
- builder.trailingSpace = displayText.charCodeAt(text.length - 1) == 32;
- if (style || startStyle || endStyle || mustWrap || css) {
- var fullStyle = style || "";
- if (startStyle) { fullStyle += startStyle; }
- if (endStyle) { fullStyle += endStyle; }
- var token = elt("span", [content], fullStyle, css);
- if (attributes) {
- for (var attr in attributes) { if (attributes.hasOwnProperty(attr) && attr != "style" && attr != "class")
- { token.setAttribute(attr, attributes[attr]); } }
- }
- return builder.content.appendChild(token)
- }
- builder.content.appendChild(content);
- }
-
- // Change some spaces to NBSP to prevent the browser from collapsing
- // trailing spaces at the end of a line when rendering text (issue #1362).
- function splitSpaces(text, trailingBefore) {
- if (text.length > 1 && !/ /.test(text)) { return text }
- var spaceBefore = trailingBefore, result = "";
- for (var i = 0; i < text.length; i++) {
- var ch = text.charAt(i);
- if (ch == " " && spaceBefore && (i == text.length - 1 || text.charCodeAt(i + 1) == 32))
- { ch = "\u00a0"; }
- result += ch;
- spaceBefore = ch == " ";
- }
- return result
- }
-
- // Work around nonsense dimensions being reported for stretches of
- // right-to-left text.
- function buildTokenBadBidi(inner, order) {
- return function (builder, text, style, startStyle, endStyle, css, attributes) {
- style = style ? style + " cm-force-border" : "cm-force-border";
- var start = builder.pos, end = start + text.length;
- for (;;) {
- // Find the part that overlaps with the start of this text
- var part = (void 0);
- for (var i = 0; i < order.length; i++) {
- part = order[i];
- if (part.to > start && part.from <= start) { break }
- }
- if (part.to >= end) { return inner(builder, text, style, startStyle, endStyle, css, attributes) }
- inner(builder, text.slice(0, part.to - start), style, startStyle, null, css, attributes);
- startStyle = null;
- text = text.slice(part.to - start);
- start = part.to;
- }
- }
- }
-
- function buildCollapsedSpan(builder, size, marker, ignoreWidget) {
- var widget = !ignoreWidget && marker.widgetNode;
- if (widget) { builder.map.push(builder.pos, builder.pos + size, widget); }
- if (!ignoreWidget && builder.cm.display.input.needsContentAttribute) {
- if (!widget)
- { widget = builder.content.appendChild(document.createElement("span")); }
- widget.setAttribute("cm-marker", marker.id);
- }
- if (widget) {
- builder.cm.display.input.setUneditable(widget);
- builder.content.appendChild(widget);
- }
- builder.pos += size;
- builder.trailingSpace = false;
- }
-
- // Outputs a number of spans to make up a line, taking highlighting
- // and marked text into account.
- function insertLineContent(line, builder, styles) {
- var spans = line.markedSpans, allText = line.text, at = 0;
- if (!spans) {
- for (var i$1 = 1; i$1 < styles.length; i$1+=2)
- { builder.addToken(builder, allText.slice(at, at = styles[i$1]), interpretTokenStyle(styles[i$1+1], builder.cm.options)); }
- return
- }
-
- var len = allText.length, pos = 0, i = 1, text = "", style, css;
- var nextChange = 0, spanStyle, spanEndStyle, spanStartStyle, collapsed, attributes;
- for (;;) {
- if (nextChange == pos) { // Update current marker set
- spanStyle = spanEndStyle = spanStartStyle = css = "";
- attributes = null;
- collapsed = null; nextChange = Infinity;
- var foundBookmarks = [], endStyles = (void 0);
- for (var j = 0; j < spans.length; ++j) {
- var sp = spans[j], m = sp.marker;
- if (m.type == "bookmark" && sp.from == pos && m.widgetNode) {
- foundBookmarks.push(m);
- } else if (sp.from <= pos && (sp.to == null || sp.to > pos || m.collapsed && sp.to == pos && sp.from == pos)) {
- if (sp.to != null && sp.to != pos && nextChange > sp.to) {
- nextChange = sp.to;
- spanEndStyle = "";
- }
- if (m.className) { spanStyle += " " + m.className; }
- if (m.css) { css = (css ? css + ";" : "") + m.css; }
- if (m.startStyle && sp.from == pos) { spanStartStyle += " " + m.startStyle; }
- if (m.endStyle && sp.to == nextChange) { (endStyles || (endStyles = [])).push(m.endStyle, sp.to); }
- // support for the old title property
- // https://github.com/codemirror/CodeMirror/pull/5673
- if (m.title) { (attributes || (attributes = {})).title = m.title; }
- if (m.attributes) {
- for (var attr in m.attributes)
- { (attributes || (attributes = {}))[attr] = m.attributes[attr]; }
- }
- if (m.collapsed && (!collapsed || compareCollapsedMarkers(collapsed.marker, m) < 0))
- { collapsed = sp; }
- } else if (sp.from > pos && nextChange > sp.from) {
- nextChange = sp.from;
- }
- }
- if (endStyles) { for (var j$1 = 0; j$1 < endStyles.length; j$1 += 2)
- { if (endStyles[j$1 + 1] == nextChange) { spanEndStyle += " " + endStyles[j$1]; } } }
-
- if (!collapsed || collapsed.from == pos) { for (var j$2 = 0; j$2 < foundBookmarks.length; ++j$2)
- { buildCollapsedSpan(builder, 0, foundBookmarks[j$2]); } }
- if (collapsed && (collapsed.from || 0) == pos) {
- buildCollapsedSpan(builder, (collapsed.to == null ? len + 1 : collapsed.to) - pos,
- collapsed.marker, collapsed.from == null);
- if (collapsed.to == null) { return }
- if (collapsed.to == pos) { collapsed = false; }
- }
- }
- if (pos >= len) { break }
-
- var upto = Math.min(len, nextChange);
- while (true) {
- if (text) {
- var end = pos + text.length;
- if (!collapsed) {
- var tokenText = end > upto ? text.slice(0, upto - pos) : text;
- builder.addToken(builder, tokenText, style ? style + spanStyle : spanStyle,
- spanStartStyle, pos + tokenText.length == nextChange ? spanEndStyle : "", css, attributes);
- }
- if (end >= upto) {text = text.slice(upto - pos); pos = upto; break}
- pos = end;
- spanStartStyle = "";
- }
- text = allText.slice(at, at = styles[i++]);
- style = interpretTokenStyle(styles[i++], builder.cm.options);
- }
- }
- }
-
-
- // These objects are used to represent the visible (currently drawn)
- // part of the document. A LineView may correspond to multiple
- // logical lines, if those are connected by collapsed ranges.
- function LineView(doc, line, lineN) {
- // The starting line
- this.line = line;
- // Continuing lines, if any
- this.rest = visualLineContinued(line);
- // Number of logical lines in this visual line
- this.size = this.rest ? lineNo(lst(this.rest)) - lineN + 1 : 1;
- this.node = this.text = null;
- this.hidden = lineIsHidden(doc, line);
- }
-
- // Create a range of LineView objects for the given lines.
- function buildViewArray(cm, from, to) {
- var array = [], nextPos;
- for (var pos = from; pos < to; pos = nextPos) {
- var view = new LineView(cm.doc, getLine(cm.doc, pos), pos);
- nextPos = pos + view.size;
- array.push(view);
- }
- return array
- }
-
- var operationGroup = null;
-
- function pushOperation(op) {
- if (operationGroup) {
- operationGroup.ops.push(op);
- } else {
- op.ownsGroup = operationGroup = {
- ops: [op],
- delayedCallbacks: []
- };
- }
- }
-
- function fireCallbacksForOps(group) {
- // Calls delayed callbacks and cursorActivity handlers until no
- // new ones appear
- var callbacks = group.delayedCallbacks, i = 0;
- do {
- for (; i < callbacks.length; i++)
- { callbacks[i].call(null); }
- for (var j = 0; j < group.ops.length; j++) {
- var op = group.ops[j];
- if (op.cursorActivityHandlers)
- { while (op.cursorActivityCalled < op.cursorActivityHandlers.length)
- { op.cursorActivityHandlers[op.cursorActivityCalled++].call(null, op.cm); } }
- }
- } while (i < callbacks.length)
- }
-
- function finishOperation(op, endCb) {
- var group = op.ownsGroup;
- if (!group) { return }
-
- try { fireCallbacksForOps(group); }
- finally {
- operationGroup = null;
- endCb(group);
- }
- }
-
- var orphanDelayedCallbacks = null;
-
- // Often, we want to signal events at a point where we are in the
- // middle of some work, but don't want the handler to start calling
- // other methods on the editor, which might be in an inconsistent
- // state or simply not expect any other events to happen.
- // signalLater looks whether there are any handlers, and schedules
- // them to be executed when the last operation ends, or, if no
- // operation is active, when a timeout fires.
- function signalLater(emitter, type /*, values...*/) {
- var arr = getHandlers(emitter, type);
- if (!arr.length) { return }
- var args = Array.prototype.slice.call(arguments, 2), list;
- if (operationGroup) {
- list = operationGroup.delayedCallbacks;
- } else if (orphanDelayedCallbacks) {
- list = orphanDelayedCallbacks;
- } else {
- list = orphanDelayedCallbacks = [];
- setTimeout(fireOrphanDelayed, 0);
- }
- var loop = function ( i ) {
- list.push(function () { return arr[i].apply(null, args); });
- };
-
- for (var i = 0; i < arr.length; ++i)
- loop( i );
- }
-
- function fireOrphanDelayed() {
- var delayed = orphanDelayedCallbacks;
- orphanDelayedCallbacks = null;
- for (var i = 0; i < delayed.length; ++i) { delayed[i](); }
- }
-
- // When an aspect of a line changes, a string is added to
- // lineView.changes. This updates the relevant part of the line's
- // DOM structure.
- function updateLineForChanges(cm, lineView, lineN, dims) {
- for (var j = 0; j < lineView.changes.length; j++) {
- var type = lineView.changes[j];
- if (type == "text") { updateLineText(cm, lineView); }
- else if (type == "gutter") { updateLineGutter(cm, lineView, lineN, dims); }
- else if (type == "class") { updateLineClasses(cm, lineView); }
- else if (type == "widget") { updateLineWidgets(cm, lineView, dims); }
- }
- lineView.changes = null;
- }
-
- // Lines with gutter elements, widgets or a background class need to
- // be wrapped, and have the extra elements added to the wrapper div
- function ensureLineWrapped(lineView) {
- if (lineView.node == lineView.text) {
- lineView.node = elt("div", null, null, "position: relative");
- if (lineView.text.parentNode)
- { lineView.text.parentNode.replaceChild(lineView.node, lineView.text); }
- lineView.node.appendChild(lineView.text);
- if (ie && ie_version < 8) { lineView.node.style.zIndex = 2; }
- }
- return lineView.node
- }
-
- function updateLineBackground(cm, lineView) {
- var cls = lineView.bgClass ? lineView.bgClass + " " + (lineView.line.bgClass || "") : lineView.line.bgClass;
- if (cls) { cls += " CodeMirror-linebackground"; }
- if (lineView.background) {
- if (cls) { lineView.background.className = cls; }
- else { lineView.background.parentNode.removeChild(lineView.background); lineView.background = null; }
- } else if (cls) {
- var wrap = ensureLineWrapped(lineView);
- lineView.background = wrap.insertBefore(elt("div", null, cls), wrap.firstChild);
- cm.display.input.setUneditable(lineView.background);
- }
- }
-
- // Wrapper around buildLineContent which will reuse the structure
- // in display.externalMeasured when possible.
- function getLineContent(cm, lineView) {
- var ext = cm.display.externalMeasured;
- if (ext && ext.line == lineView.line) {
- cm.display.externalMeasured = null;
- lineView.measure = ext.measure;
- return ext.built
- }
- return buildLineContent(cm, lineView)
- }
-
- // Redraw the line's text. Interacts with the background and text
- // classes because the mode may output tokens that influence these
- // classes.
- function updateLineText(cm, lineView) {
- var cls = lineView.text.className;
- var built = getLineContent(cm, lineView);
- if (lineView.text == lineView.node) { lineView.node = built.pre; }
- lineView.text.parentNode.replaceChild(built.pre, lineView.text);
- lineView.text = built.pre;
- if (built.bgClass != lineView.bgClass || built.textClass != lineView.textClass) {
- lineView.bgClass = built.bgClass;
- lineView.textClass = built.textClass;
- updateLineClasses(cm, lineView);
- } else if (cls) {
- lineView.text.className = cls;
- }
- }
-
- function updateLineClasses(cm, lineView) {
- updateLineBackground(cm, lineView);
- if (lineView.line.wrapClass)
- { ensureLineWrapped(lineView).className = lineView.line.wrapClass; }
- else if (lineView.node != lineView.text)
- { lineView.node.className = ""; }
- var textClass = lineView.textClass ? lineView.textClass + " " + (lineView.line.textClass || "") : lineView.line.textClass;
- lineView.text.className = textClass || "";
- }
-
- function updateLineGutter(cm, lineView, lineN, dims) {
- if (lineView.gutter) {
- lineView.node.removeChild(lineView.gutter);
- lineView.gutter = null;
- }
- if (lineView.gutterBackground) {
- lineView.node.removeChild(lineView.gutterBackground);
- lineView.gutterBackground = null;
- }
- if (lineView.line.gutterClass) {
- var wrap = ensureLineWrapped(lineView);
- lineView.gutterBackground = elt("div", null, "CodeMirror-gutter-background " + lineView.line.gutterClass,
- ("left: " + (cm.options.fixedGutter ? dims.fixedPos : -dims.gutterTotalWidth) + "px; width: " + (dims.gutterTotalWidth) + "px"));
- cm.display.input.setUneditable(lineView.gutterBackground);
- wrap.insertBefore(lineView.gutterBackground, lineView.text);
- }
- var markers = lineView.line.gutterMarkers;
- if (cm.options.lineNumbers || markers) {
- var wrap$1 = ensureLineWrapped(lineView);
- var gutterWrap = lineView.gutter = elt("div", null, "CodeMirror-gutter-wrapper", ("left: " + (cm.options.fixedGutter ? dims.fixedPos : -dims.gutterTotalWidth) + "px"));
- cm.display.input.setUneditable(gutterWrap);
- wrap$1.insertBefore(gutterWrap, lineView.text);
- if (lineView.line.gutterClass)
- { gutterWrap.className += " " + lineView.line.gutterClass; }
- if (cm.options.lineNumbers && (!markers || !markers["CodeMirror-linenumbers"]))
- { lineView.lineNumber = gutterWrap.appendChild(
- elt("div", lineNumberFor(cm.options, lineN),
- "CodeMirror-linenumber CodeMirror-gutter-elt",
- ("left: " + (dims.gutterLeft["CodeMirror-linenumbers"]) + "px; width: " + (cm.display.lineNumInnerWidth) + "px"))); }
- if (markers) { for (var k = 0; k < cm.display.gutterSpecs.length; ++k) {
- var id = cm.display.gutterSpecs[k].className, found = markers.hasOwnProperty(id) && markers[id];
- if (found)
- { gutterWrap.appendChild(elt("div", [found], "CodeMirror-gutter-elt",
- ("left: " + (dims.gutterLeft[id]) + "px; width: " + (dims.gutterWidth[id]) + "px"))); }
- } }
- }
- }
-
- function updateLineWidgets(cm, lineView, dims) {
- if (lineView.alignable) { lineView.alignable = null; }
- var isWidget = classTest("CodeMirror-linewidget");
- for (var node = lineView.node.firstChild, next = (void 0); node; node = next) {
- next = node.nextSibling;
- if (isWidget.test(node.className)) { lineView.node.removeChild(node); }
- }
- insertLineWidgets(cm, lineView, dims);
- }
-
- // Build a line's DOM representation from scratch
- function buildLineElement(cm, lineView, lineN, dims) {
- var built = getLineContent(cm, lineView);
- lineView.text = lineView.node = built.pre;
- if (built.bgClass) { lineView.bgClass = built.bgClass; }
- if (built.textClass) { lineView.textClass = built.textClass; }
-
- updateLineClasses(cm, lineView);
- updateLineGutter(cm, lineView, lineN, dims);
- insertLineWidgets(cm, lineView, dims);
- return lineView.node
- }
-
- // A lineView may contain multiple logical lines (when merged by
- // collapsed spans). The widgets for all of them need to be drawn.
- function insertLineWidgets(cm, lineView, dims) {
- insertLineWidgetsFor(cm, lineView.line, lineView, dims, true);
- if (lineView.rest) { for (var i = 0; i < lineView.rest.length; i++)
- { insertLineWidgetsFor(cm, lineView.rest[i], lineView, dims, false); } }
- }
-
- function insertLineWidgetsFor(cm, line, lineView, dims, allowAbove) {
- if (!line.widgets) { return }
- var wrap = ensureLineWrapped(lineView);
- for (var i = 0, ws = line.widgets; i < ws.length; ++i) {
- var widget = ws[i], node = elt("div", [widget.node], "CodeMirror-linewidget" + (widget.className ? " " + widget.className : ""));
- if (!widget.handleMouseEvents) { node.setAttribute("cm-ignore-events", "true"); }
- positionLineWidget(widget, node, lineView, dims);
- cm.display.input.setUneditable(node);
- if (allowAbove && widget.above)
- { wrap.insertBefore(node, lineView.gutter || lineView.text); }
- else
- { wrap.appendChild(node); }
- signalLater(widget, "redraw");
- }
- }
-
- function positionLineWidget(widget, node, lineView, dims) {
- if (widget.noHScroll) {
- (lineView.alignable || (lineView.alignable = [])).push(node);
- var width = dims.wrapperWidth;
- node.style.left = dims.fixedPos + "px";
- if (!widget.coverGutter) {
- width -= dims.gutterTotalWidth;
- node.style.paddingLeft = dims.gutterTotalWidth + "px";
- }
- node.style.width = width + "px";
- }
- if (widget.coverGutter) {
- node.style.zIndex = 5;
- node.style.position = "relative";
- if (!widget.noHScroll) { node.style.marginLeft = -dims.gutterTotalWidth + "px"; }
- }
- }
-
- function widgetHeight(widget) {
- if (widget.height != null) { return widget.height }
- var cm = widget.doc.cm;
- if (!cm) { return 0 }
- if (!contains(document.body, widget.node)) {
- var parentStyle = "position: relative;";
- if (widget.coverGutter)
- { parentStyle += "margin-left: -" + cm.display.gutters.offsetWidth + "px;"; }
- if (widget.noHScroll)
- { parentStyle += "width: " + cm.display.wrapper.clientWidth + "px;"; }
- removeChildrenAndAdd(cm.display.measure, elt("div", [widget.node], null, parentStyle));
- }
- return widget.height = widget.node.parentNode.offsetHeight
- }
-
- // Return true when the given mouse event happened in a widget
- function eventInWidget(display, e) {
- for (var n = e_target(e); n != display.wrapper; n = n.parentNode) {
- if (!n || (n.nodeType == 1 && n.getAttribute("cm-ignore-events") == "true") ||
- (n.parentNode == display.sizer && n != display.mover))
- { return true }
- }
- }
-
- // POSITION MEASUREMENT
-
- function paddingTop(display) {return display.lineSpace.offsetTop}
- function paddingVert(display) {return display.mover.offsetHeight - display.lineSpace.offsetHeight}
- function paddingH(display) {
- if (display.cachedPaddingH) { return display.cachedPaddingH }
- var e = removeChildrenAndAdd(display.measure, elt("pre", "x", "CodeMirror-line-like"));
- var style = window.getComputedStyle ? window.getComputedStyle(e) : e.currentStyle;
- var data = {left: parseInt(style.paddingLeft), right: parseInt(style.paddingRight)};
- if (!isNaN(data.left) && !isNaN(data.right)) { display.cachedPaddingH = data; }
- return data
- }
-
- function scrollGap(cm) { return scrollerGap - cm.display.nativeBarWidth }
- function displayWidth(cm) {
- return cm.display.scroller.clientWidth - scrollGap(cm) - cm.display.barWidth
- }
- function displayHeight(cm) {
- return cm.display.scroller.clientHeight - scrollGap(cm) - cm.display.barHeight
- }
-
- // Ensure the lineView.wrapping.heights array is populated. This is
- // an array of bottom offsets for the lines that make up a drawn
- // line. When lineWrapping is on, there might be more than one
- // height.
- function ensureLineHeights(cm, lineView, rect) {
- var wrapping = cm.options.lineWrapping;
- var curWidth = wrapping && displayWidth(cm);
- if (!lineView.measure.heights || wrapping && lineView.measure.width != curWidth) {
- var heights = lineView.measure.heights = [];
- if (wrapping) {
- lineView.measure.width = curWidth;
- var rects = lineView.text.firstChild.getClientRects();
- for (var i = 0; i < rects.length - 1; i++) {
- var cur = rects[i], next = rects[i + 1];
- if (Math.abs(cur.bottom - next.bottom) > 2)
- { heights.push((cur.bottom + next.top) / 2 - rect.top); }
- }
- }
- heights.push(rect.bottom - rect.top);
- }
- }
-
- // Find a line map (mapping character offsets to text nodes) and a
- // measurement cache for the given line number. (A line view might
- // contain multiple lines when collapsed ranges are present.)
- function mapFromLineView(lineView, line, lineN) {
- if (lineView.line == line)
- { return {map: lineView.measure.map, cache: lineView.measure.cache} }
- for (var i = 0; i < lineView.rest.length; i++)
- { if (lineView.rest[i] == line)
- { return {map: lineView.measure.maps[i], cache: lineView.measure.caches[i]} } }
- for (var i$1 = 0; i$1 < lineView.rest.length; i$1++)
- { if (lineNo(lineView.rest[i$1]) > lineN)
- { return {map: lineView.measure.maps[i$1], cache: lineView.measure.caches[i$1], before: true} } }
- }
-
- // Render a line into the hidden node display.externalMeasured. Used
- // when measurement is needed for a line that's not in the viewport.
- function updateExternalMeasurement(cm, line) {
- line = visualLine(line);
- var lineN = lineNo(line);
- var view = cm.display.externalMeasured = new LineView(cm.doc, line, lineN);
- view.lineN = lineN;
- var built = view.built = buildLineContent(cm, view);
- view.text = built.pre;
- removeChildrenAndAdd(cm.display.lineMeasure, built.pre);
- return view
- }
-
- // Get a {top, bottom, left, right} box (in line-local coordinates)
- // for a given character.
- function measureChar(cm, line, ch, bias) {
- return measureCharPrepared(cm, prepareMeasureForLine(cm, line), ch, bias)
- }
-
- // Find a line view that corresponds to the given line number.
- function findViewForLine(cm, lineN) {
- if (lineN >= cm.display.viewFrom && lineN < cm.display.viewTo)
- { return cm.display.view[findViewIndex(cm, lineN)] }
- var ext = cm.display.externalMeasured;
- if (ext && lineN >= ext.lineN && lineN < ext.lineN + ext.size)
- { return ext }
- }
-
- // Measurement can be split in two steps, the set-up work that
- // applies to the whole line, and the measurement of the actual
- // character. Functions like coordsChar, that need to do a lot of
- // measurements in a row, can thus ensure that the set-up work is
- // only done once.
- function prepareMeasureForLine(cm, line) {
- var lineN = lineNo(line);
- var view = findViewForLine(cm, lineN);
- if (view && !view.text) {
- view = null;
- } else if (view && view.changes) {
- updateLineForChanges(cm, view, lineN, getDimensions(cm));
- cm.curOp.forceUpdate = true;
- }
- if (!view)
- { view = updateExternalMeasurement(cm, line); }
-
- var info = mapFromLineView(view, line, lineN);
- return {
- line: line, view: view, rect: null,
- map: info.map, cache: info.cache, before: info.before,
- hasHeights: false
- }
- }
-
- // Given a prepared measurement object, measures the position of an
- // actual character (or fetches it from the cache).
- function measureCharPrepared(cm, prepared, ch, bias, varHeight) {
- if (prepared.before) { ch = -1; }
- var key = ch + (bias || ""), found;
- if (prepared.cache.hasOwnProperty(key)) {
- found = prepared.cache[key];
- } else {
- if (!prepared.rect)
- { prepared.rect = prepared.view.text.getBoundingClientRect(); }
- if (!prepared.hasHeights) {
- ensureLineHeights(cm, prepared.view, prepared.rect);
- prepared.hasHeights = true;
- }
- found = measureCharInner(cm, prepared, ch, bias);
- if (!found.bogus) { prepared.cache[key] = found; }
- }
- return {left: found.left, right: found.right,
- top: varHeight ? found.rtop : found.top,
- bottom: varHeight ? found.rbottom : found.bottom}
- }
-
- var nullRect = {left: 0, right: 0, top: 0, bottom: 0};
-
- function nodeAndOffsetInLineMap(map, ch, bias) {
- var node, start, end, collapse, mStart, mEnd;
- // First, search the line map for the text node corresponding to,
- // or closest to, the target character.
- for (var i = 0; i < map.length; i += 3) {
- mStart = map[i];
- mEnd = map[i + 1];
- if (ch < mStart) {
- start = 0; end = 1;
- collapse = "left";
- } else if (ch < mEnd) {
- start = ch - mStart;
- end = start + 1;
- } else if (i == map.length - 3 || ch == mEnd && map[i + 3] > ch) {
- end = mEnd - mStart;
- start = end - 1;
- if (ch >= mEnd) { collapse = "right"; }
- }
- if (start != null) {
- node = map[i + 2];
- if (mStart == mEnd && bias == (node.insertLeft ? "left" : "right"))
- { collapse = bias; }
- if (bias == "left" && start == 0)
- { while (i && map[i - 2] == map[i - 3] && map[i - 1].insertLeft) {
- node = map[(i -= 3) + 2];
- collapse = "left";
- } }
- if (bias == "right" && start == mEnd - mStart)
- { while (i < map.length - 3 && map[i + 3] == map[i + 4] && !map[i + 5].insertLeft) {
- node = map[(i += 3) + 2];
- collapse = "right";
- } }
- break
- }
- }
- return {node: node, start: start, end: end, collapse: collapse, coverStart: mStart, coverEnd: mEnd}
- }
-
- function getUsefulRect(rects, bias) {
- var rect = nullRect;
- if (bias == "left") { for (var i = 0; i < rects.length; i++) {
- if ((rect = rects[i]).left != rect.right) { break }
- } } else { for (var i$1 = rects.length - 1; i$1 >= 0; i$1--) {
- if ((rect = rects[i$1]).left != rect.right) { break }
- } }
- return rect
- }
-
- function measureCharInner(cm, prepared, ch, bias) {
- var place = nodeAndOffsetInLineMap(prepared.map, ch, bias);
- var node = place.node, start = place.start, end = place.end, collapse = place.collapse;
-
- var rect;
- if (node.nodeType == 3) { // If it is a text node, use a range to retrieve the coordinates.
- for (var i$1 = 0; i$1 < 4; i$1++) { // Retry a maximum of 4 times when nonsense rectangles are returned
- while (start && isExtendingChar(prepared.line.text.charAt(place.coverStart + start))) { --start; }
- while (place.coverStart + end < place.coverEnd && isExtendingChar(prepared.line.text.charAt(place.coverStart + end))) { ++end; }
- if (ie && ie_version < 9 && start == 0 && end == place.coverEnd - place.coverStart)
- { rect = node.parentNode.getBoundingClientRect(); }
- else
- { rect = getUsefulRect(range(node, start, end).getClientRects(), bias); }
- if (rect.left || rect.right || start == 0) { break }
- end = start;
- start = start - 1;
- collapse = "right";
- }
- if (ie && ie_version < 11) { rect = maybeUpdateRectForZooming(cm.display.measure, rect); }
- } else { // If it is a widget, simply get the box for the whole widget.
- if (start > 0) { collapse = bias = "right"; }
- var rects;
- if (cm.options.lineWrapping && (rects = node.getClientRects()).length > 1)
- { rect = rects[bias == "right" ? rects.length - 1 : 0]; }
- else
- { rect = node.getBoundingClientRect(); }
- }
- if (ie && ie_version < 9 && !start && (!rect || !rect.left && !rect.right)) {
- var rSpan = node.parentNode.getClientRects()[0];
- if (rSpan)
- { rect = {left: rSpan.left, right: rSpan.left + charWidth(cm.display), top: rSpan.top, bottom: rSpan.bottom}; }
- else
- { rect = nullRect; }
- }
-
- var rtop = rect.top - prepared.rect.top, rbot = rect.bottom - prepared.rect.top;
- var mid = (rtop + rbot) / 2;
- var heights = prepared.view.measure.heights;
- var i = 0;
- for (; i < heights.length - 1; i++)
- { if (mid < heights[i]) { break } }
- var top = i ? heights[i - 1] : 0, bot = heights[i];
- var result = {left: (collapse == "right" ? rect.right : rect.left) - prepared.rect.left,
- right: (collapse == "left" ? rect.left : rect.right) - prepared.rect.left,
- top: top, bottom: bot};
- if (!rect.left && !rect.right) { result.bogus = true; }
- if (!cm.options.singleCursorHeightPerLine) { result.rtop = rtop; result.rbottom = rbot; }
-
- return result
- }
-
- // Work around problem with bounding client rects on ranges being
- // returned incorrectly when zoomed on IE10 and below.
- function maybeUpdateRectForZooming(measure, rect) {
- if (!window.screen || screen.logicalXDPI == null ||
- screen.logicalXDPI == screen.deviceXDPI || !hasBadZoomedRects(measure))
- { return rect }
- var scaleX = screen.logicalXDPI / screen.deviceXDPI;
- var scaleY = screen.logicalYDPI / screen.deviceYDPI;
- return {left: rect.left * scaleX, right: rect.right * scaleX,
- top: rect.top * scaleY, bottom: rect.bottom * scaleY}
- }
-
- function clearLineMeasurementCacheFor(lineView) {
- if (lineView.measure) {
- lineView.measure.cache = {};
- lineView.measure.heights = null;
- if (lineView.rest) { for (var i = 0; i < lineView.rest.length; i++)
- { lineView.measure.caches[i] = {}; } }
- }
- }
-
- function clearLineMeasurementCache(cm) {
- cm.display.externalMeasure = null;
- removeChildren(cm.display.lineMeasure);
- for (var i = 0; i < cm.display.view.length; i++)
- { clearLineMeasurementCacheFor(cm.display.view[i]); }
- }
-
- function clearCaches(cm) {
- clearLineMeasurementCache(cm);
- cm.display.cachedCharWidth = cm.display.cachedTextHeight = cm.display.cachedPaddingH = null;
- if (!cm.options.lineWrapping) { cm.display.maxLineChanged = true; }
- cm.display.lineNumChars = null;
- }
-
- function pageScrollX() {
- // Work around https://bugs.chromium.org/p/chromium/issues/detail?id=489206
- // which causes page_Offset and bounding client rects to use
- // different reference viewports and invalidate our calculations.
- if (chrome && android) { return -(document.body.getBoundingClientRect().left - parseInt(getComputedStyle(document.body).marginLeft)) }
- return window.pageXOffset || (document.documentElement || document.body).scrollLeft
- }
- function pageScrollY() {
- if (chrome && android) { return -(document.body.getBoundingClientRect().top - parseInt(getComputedStyle(document.body).marginTop)) }
- return window.pageYOffset || (document.documentElement || document.body).scrollTop
- }
-
- function widgetTopHeight(lineObj) {
- var height = 0;
- if (lineObj.widgets) { for (var i = 0; i < lineObj.widgets.length; ++i) { if (lineObj.widgets[i].above)
- { height += widgetHeight(lineObj.widgets[i]); } } }
- return height
- }
-
- // Converts a {top, bottom, left, right} box from line-local
- // coordinates into another coordinate system. Context may be one of
- // "line", "div" (display.lineDiv), "local"./null (editor), "window",
- // or "page".
- function intoCoordSystem(cm, lineObj, rect, context, includeWidgets) {
- if (!includeWidgets) {
- var height = widgetTopHeight(lineObj);
- rect.top += height; rect.bottom += height;
- }
- if (context == "line") { return rect }
- if (!context) { context = "local"; }
- var yOff = heightAtLine(lineObj);
- if (context == "local") { yOff += paddingTop(cm.display); }
- else { yOff -= cm.display.viewOffset; }
- if (context == "page" || context == "window") {
- var lOff = cm.display.lineSpace.getBoundingClientRect();
- yOff += lOff.top + (context == "window" ? 0 : pageScrollY());
- var xOff = lOff.left + (context == "window" ? 0 : pageScrollX());
- rect.left += xOff; rect.right += xOff;
- }
- rect.top += yOff; rect.bottom += yOff;
- return rect
- }
-
- // Coverts a box from "div" coords to another coordinate system.
- // Context may be "window", "page", "div", or "local"./null.
- function fromCoordSystem(cm, coords, context) {
- if (context == "div") { return coords }
- var left = coords.left, top = coords.top;
- // First move into "page" coordinate system
- if (context == "page") {
- left -= pageScrollX();
- top -= pageScrollY();
- } else if (context == "local" || !context) {
- var localBox = cm.display.sizer.getBoundingClientRect();
- left += localBox.left;
- top += localBox.top;
- }
-
- var lineSpaceBox = cm.display.lineSpace.getBoundingClientRect();
- return {left: left - lineSpaceBox.left, top: top - lineSpaceBox.top}
- }
-
- function charCoords(cm, pos, context, lineObj, bias) {
- if (!lineObj) { lineObj = getLine(cm.doc, pos.line); }
- return intoCoordSystem(cm, lineObj, measureChar(cm, lineObj, pos.ch, bias), context)
- }
-
- // Returns a box for a given cursor position, which may have an
- // 'other' property containing the position of the secondary cursor
- // on a bidi boundary.
- // A cursor Pos(line, char, "before") is on the same visual line as `char - 1`
- // and after `char - 1` in writing order of `char - 1`
- // A cursor Pos(line, char, "after") is on the same visual line as `char`
- // and before `char` in writing order of `char`
- // Examples (upper-case letters are RTL, lower-case are LTR):
- // Pos(0, 1, ...)
- // before after
- // ab a|b a|b
- // aB a|B aB|
- // Ab |Ab A|b
- // AB B|A B|A
- // Every position after the last character on a line is considered to stick
- // to the last character on the line.
- function cursorCoords(cm, pos, context, lineObj, preparedMeasure, varHeight) {
- lineObj = lineObj || getLine(cm.doc, pos.line);
- if (!preparedMeasure) { preparedMeasure = prepareMeasureForLine(cm, lineObj); }
- function get(ch, right) {
- var m = measureCharPrepared(cm, preparedMeasure, ch, right ? "right" : "left", varHeight);
- if (right) { m.left = m.right; } else { m.right = m.left; }
- return intoCoordSystem(cm, lineObj, m, context)
- }
- var order = getOrder(lineObj, cm.doc.direction), ch = pos.ch, sticky = pos.sticky;
- if (ch >= lineObj.text.length) {
- ch = lineObj.text.length;
- sticky = "before";
- } else if (ch <= 0) {
- ch = 0;
- sticky = "after";
- }
- if (!order) { return get(sticky == "before" ? ch - 1 : ch, sticky == "before") }
-
- function getBidi(ch, partPos, invert) {
- var part = order[partPos], right = part.level == 1;
- return get(invert ? ch - 1 : ch, right != invert)
- }
- var partPos = getBidiPartAt(order, ch, sticky);
- var other = bidiOther;
- var val = getBidi(ch, partPos, sticky == "before");
- if (other != null) { val.other = getBidi(ch, other, sticky != "before"); }
- return val
- }
-
- // Used to cheaply estimate the coordinates for a position. Used for
- // intermediate scroll updates.
- function estimateCoords(cm, pos) {
- var left = 0;
- pos = clipPos(cm.doc, pos);
- if (!cm.options.lineWrapping) { left = charWidth(cm.display) * pos.ch; }
- var lineObj = getLine(cm.doc, pos.line);
- var top = heightAtLine(lineObj) + paddingTop(cm.display);
- return {left: left, right: left, top: top, bottom: top + lineObj.height}
- }
-
- // Positions returned by coordsChar contain some extra information.
- // xRel is the relative x position of the input coordinates compared
- // to the found position (so xRel > 0 means the coordinates are to
- // the right of the character position, for example). When outside
- // is true, that means the coordinates lie outside the line's
- // vertical range.
- function PosWithInfo(line, ch, sticky, outside, xRel) {
- var pos = Pos(line, ch, sticky);
- pos.xRel = xRel;
- if (outside) { pos.outside = outside; }
- return pos
- }
-
- // Compute the character position closest to the given coordinates.
- // Input must be lineSpace-local ("div" coordinate system).
- function coordsChar(cm, x, y) {
- var doc = cm.doc;
- y += cm.display.viewOffset;
- if (y < 0) { return PosWithInfo(doc.first, 0, null, -1, -1) }
- var lineN = lineAtHeight(doc, y), last = doc.first + doc.size - 1;
- if (lineN > last)
- { return PosWithInfo(doc.first + doc.size - 1, getLine(doc, last).text.length, null, 1, 1) }
- if (x < 0) { x = 0; }
-
- var lineObj = getLine(doc, lineN);
- for (;;) {
- var found = coordsCharInner(cm, lineObj, lineN, x, y);
- var collapsed = collapsedSpanAround(lineObj, found.ch + (found.xRel > 0 || found.outside > 0 ? 1 : 0));
- if (!collapsed) { return found }
- var rangeEnd = collapsed.find(1);
- if (rangeEnd.line == lineN) { return rangeEnd }
- lineObj = getLine(doc, lineN = rangeEnd.line);
- }
- }
-
- function wrappedLineExtent(cm, lineObj, preparedMeasure, y) {
- y -= widgetTopHeight(lineObj);
- var end = lineObj.text.length;
- var begin = findFirst(function (ch) { return measureCharPrepared(cm, preparedMeasure, ch - 1).bottom <= y; }, end, 0);
- end = findFirst(function (ch) { return measureCharPrepared(cm, preparedMeasure, ch).top > y; }, begin, end);
- return {begin: begin, end: end}
- }
-
- function wrappedLineExtentChar(cm, lineObj, preparedMeasure, target) {
- if (!preparedMeasure) { preparedMeasure = prepareMeasureForLine(cm, lineObj); }
- var targetTop = intoCoordSystem(cm, lineObj, measureCharPrepared(cm, preparedMeasure, target), "line").top;
- return wrappedLineExtent(cm, lineObj, preparedMeasure, targetTop)
- }
-
- // Returns true if the given side of a box is after the given
- // coordinates, in top-to-bottom, left-to-right order.
- function boxIsAfter(box, x, y, left) {
- return box.bottom <= y ? false : box.top > y ? true : (left ? box.left : box.right) > x
- }
-
- function coordsCharInner(cm, lineObj, lineNo, x, y) {
- // Move y into line-local coordinate space
- y -= heightAtLine(lineObj);
- var preparedMeasure = prepareMeasureForLine(cm, lineObj);
- // When directly calling `measureCharPrepared`, we have to adjust
- // for the widgets at this line.
- var widgetHeight = widgetTopHeight(lineObj);
- var begin = 0, end = lineObj.text.length, ltr = true;
-
- var order = getOrder(lineObj, cm.doc.direction);
- // If the line isn't plain left-to-right text, first figure out
- // which bidi section the coordinates fall into.
- if (order) {
- var part = (cm.options.lineWrapping ? coordsBidiPartWrapped : coordsBidiPart)
- (cm, lineObj, lineNo, preparedMeasure, order, x, y);
- ltr = part.level != 1;
- // The awkward -1 offsets are needed because findFirst (called
- // on these below) will treat its first bound as inclusive,
- // second as exclusive, but we want to actually address the
- // characters in the part's range
- begin = ltr ? part.from : part.to - 1;
- end = ltr ? part.to : part.from - 1;
- }
-
- // A binary search to find the first character whose bounding box
- // starts after the coordinates. If we run across any whose box wrap
- // the coordinates, store that.
- var chAround = null, boxAround = null;
- var ch = findFirst(function (ch) {
- var box = measureCharPrepared(cm, preparedMeasure, ch);
- box.top += widgetHeight; box.bottom += widgetHeight;
- if (!boxIsAfter(box, x, y, false)) { return false }
- if (box.top <= y && box.left <= x) {
- chAround = ch;
- boxAround = box;
- }
- return true
- }, begin, end);
-
- var baseX, sticky, outside = false;
- // If a box around the coordinates was found, use that
- if (boxAround) {
- // Distinguish coordinates nearer to the left or right side of the box
- var atLeft = x - boxAround.left < boxAround.right - x, atStart = atLeft == ltr;
- ch = chAround + (atStart ? 0 : 1);
- sticky = atStart ? "after" : "before";
- baseX = atLeft ? boxAround.left : boxAround.right;
- } else {
- // (Adjust for extended bound, if necessary.)
- if (!ltr && (ch == end || ch == begin)) { ch++; }
- // To determine which side to associate with, get the box to the
- // left of the character and compare it's vertical position to the
- // coordinates
- sticky = ch == 0 ? "after" : ch == lineObj.text.length ? "before" :
- (measureCharPrepared(cm, preparedMeasure, ch - (ltr ? 1 : 0)).bottom + widgetHeight <= y) == ltr ?
- "after" : "before";
- // Now get accurate coordinates for this place, in order to get a
- // base X position
- var coords = cursorCoords(cm, Pos(lineNo, ch, sticky), "line", lineObj, preparedMeasure);
- baseX = coords.left;
- outside = y < coords.top ? -1 : y >= coords.bottom ? 1 : 0;
- }
-
- ch = skipExtendingChars(lineObj.text, ch, 1);
- return PosWithInfo(lineNo, ch, sticky, outside, x - baseX)
- }
-
- function coordsBidiPart(cm, lineObj, lineNo, preparedMeasure, order, x, y) {
- // Bidi parts are sorted left-to-right, and in a non-line-wrapping
- // situation, we can take this ordering to correspond to the visual
- // ordering. This finds the first part whose end is after the given
- // coordinates.
- var index = findFirst(function (i) {
- var part = order[i], ltr = part.level != 1;
- return boxIsAfter(cursorCoords(cm, Pos(lineNo, ltr ? part.to : part.from, ltr ? "before" : "after"),
- "line", lineObj, preparedMeasure), x, y, true)
- }, 0, order.length - 1);
- var part = order[index];
- // If this isn't the first part, the part's start is also after
- // the coordinates, and the coordinates aren't on the same line as
- // that start, move one part back.
- if (index > 0) {
- var ltr = part.level != 1;
- var start = cursorCoords(cm, Pos(lineNo, ltr ? part.from : part.to, ltr ? "after" : "before"),
- "line", lineObj, preparedMeasure);
- if (boxIsAfter(start, x, y, true) && start.top > y)
- { part = order[index - 1]; }
- }
- return part
- }
-
- function coordsBidiPartWrapped(cm, lineObj, _lineNo, preparedMeasure, order, x, y) {
- // In a wrapped line, rtl text on wrapping boundaries can do things
- // that don't correspond to the ordering in our `order` array at
- // all, so a binary search doesn't work, and we want to return a
- // part that only spans one line so that the binary search in
- // coordsCharInner is safe. As such, we first find the extent of the
- // wrapped line, and then do a flat search in which we discard any
- // spans that aren't on the line.
- var ref = wrappedLineExtent(cm, lineObj, preparedMeasure, y);
- var begin = ref.begin;
- var end = ref.end;
- if (/\s/.test(lineObj.text.charAt(end - 1))) { end--; }
- var part = null, closestDist = null;
- for (var i = 0; i < order.length; i++) {
- var p = order[i];
- if (p.from >= end || p.to <= begin) { continue }
- var ltr = p.level != 1;
- var endX = measureCharPrepared(cm, preparedMeasure, ltr ? Math.min(end, p.to) - 1 : Math.max(begin, p.from)).right;
- // Weigh against spans ending before this, so that they are only
- // picked if nothing ends after
- var dist = endX < x ? x - endX + 1e9 : endX - x;
- if (!part || closestDist > dist) {
- part = p;
- closestDist = dist;
- }
- }
- if (!part) { part = order[order.length - 1]; }
- // Clip the part to the wrapped line.
- if (part.from < begin) { part = {from: begin, to: part.to, level: part.level}; }
- if (part.to > end) { part = {from: part.from, to: end, level: part.level}; }
- return part
- }
-
- var measureText;
- // Compute the default text height.
- function textHeight(display) {
- if (display.cachedTextHeight != null) { return display.cachedTextHeight }
- if (measureText == null) {
- measureText = elt("pre", null, "CodeMirror-line-like");
- // Measure a bunch of lines, for browsers that compute
- // fractional heights.
- for (var i = 0; i < 49; ++i) {
- measureText.appendChild(document.createTextNode("x"));
- measureText.appendChild(elt("br"));
- }
- measureText.appendChild(document.createTextNode("x"));
- }
- removeChildrenAndAdd(display.measure, measureText);
- var height = measureText.offsetHeight / 50;
- if (height > 3) { display.cachedTextHeight = height; }
- removeChildren(display.measure);
- return height || 1
- }
-
- // Compute the default character width.
- function charWidth(display) {
- if (display.cachedCharWidth != null) { return display.cachedCharWidth }
- var anchor = elt("span", "xxxxxxxxxx");
- var pre = elt("pre", [anchor], "CodeMirror-line-like");
- removeChildrenAndAdd(display.measure, pre);
- var rect = anchor.getBoundingClientRect(), width = (rect.right - rect.left) / 10;
- if (width > 2) { display.cachedCharWidth = width; }
- return width || 10
- }
-
- // Do a bulk-read of the DOM positions and sizes needed to draw the
- // view, so that we don't interleave reading and writing to the DOM.
- function getDimensions(cm) {
- var d = cm.display, left = {}, width = {};
- var gutterLeft = d.gutters.clientLeft;
- for (var n = d.gutters.firstChild, i = 0; n; n = n.nextSibling, ++i) {
- var id = cm.display.gutterSpecs[i].className;
- left[id] = n.offsetLeft + n.clientLeft + gutterLeft;
- width[id] = n.clientWidth;
- }
- return {fixedPos: compensateForHScroll(d),
- gutterTotalWidth: d.gutters.offsetWidth,
- gutterLeft: left,
- gutterWidth: width,
- wrapperWidth: d.wrapper.clientWidth}
- }
-
- // Computes display.scroller.scrollLeft + display.gutters.offsetWidth,
- // but using getBoundingClientRect to get a sub-pixel-accurate
- // result.
- function compensateForHScroll(display) {
- return display.scroller.getBoundingClientRect().left - display.sizer.getBoundingClientRect().left
- }
-
- // Returns a function that estimates the height of a line, to use as
- // first approximation until the line becomes visible (and is thus
- // properly measurable).
- function estimateHeight(cm) {
- var th = textHeight(cm.display), wrapping = cm.options.lineWrapping;
- var perLine = wrapping && Math.max(5, cm.display.scroller.clientWidth / charWidth(cm.display) - 3);
- return function (line) {
- if (lineIsHidden(cm.doc, line)) { return 0 }
-
- var widgetsHeight = 0;
- if (line.widgets) { for (var i = 0; i < line.widgets.length; i++) {
- if (line.widgets[i].height) { widgetsHeight += line.widgets[i].height; }
- } }
-
- if (wrapping)
- { return widgetsHeight + (Math.ceil(line.text.length / perLine) || 1) * th }
- else
- { return widgetsHeight + th }
- }
- }
-
- function estimateLineHeights(cm) {
- var doc = cm.doc, est = estimateHeight(cm);
- doc.iter(function (line) {
- var estHeight = est(line);
- if (estHeight != line.height) { updateLineHeight(line, estHeight); }
- });
- }
-
- // Given a mouse event, find the corresponding position. If liberal
- // is false, it checks whether a gutter or scrollbar was clicked,
- // and returns null if it was. forRect is used by rectangular
- // selections, and tries to estimate a character position even for
- // coordinates beyond the right of the text.
- function posFromMouse(cm, e, liberal, forRect) {
- var display = cm.display;
- if (!liberal && e_target(e).getAttribute("cm-not-content") == "true") { return null }
-
- var x, y, space = display.lineSpace.getBoundingClientRect();
- // Fails unpredictably on IE[67] when mouse is dragged around quickly.
- try { x = e.clientX - space.left; y = e.clientY - space.top; }
- catch (e) { return null }
- var coords = coordsChar(cm, x, y), line;
- if (forRect && coords.xRel > 0 && (line = getLine(cm.doc, coords.line).text).length == coords.ch) {
- var colDiff = countColumn(line, line.length, cm.options.tabSize) - line.length;
- coords = Pos(coords.line, Math.max(0, Math.round((x - paddingH(cm.display).left) / charWidth(cm.display)) - colDiff));
- }
- return coords
- }
-
- // Find the view element corresponding to a given line. Return null
- // when the line isn't visible.
- function findViewIndex(cm, n) {
- if (n >= cm.display.viewTo) { return null }
- n -= cm.display.viewFrom;
- if (n < 0) { return null }
- var view = cm.display.view;
- for (var i = 0; i < view.length; i++) {
- n -= view[i].size;
- if (n < 0) { return i }
- }
- }
-
- // Updates the display.view data structure for a given change to the
- // document. From and to are in pre-change coordinates. Lendiff is
- // the amount of lines added or subtracted by the change. This is
- // used for changes that span multiple lines, or change the way
- // lines are divided into visual lines. regLineChange (below)
- // registers single-line changes.
- function regChange(cm, from, to, lendiff) {
- if (from == null) { from = cm.doc.first; }
- if (to == null) { to = cm.doc.first + cm.doc.size; }
- if (!lendiff) { lendiff = 0; }
-
- var display = cm.display;
- if (lendiff && to < display.viewTo &&
- (display.updateLineNumbers == null || display.updateLineNumbers > from))
- { display.updateLineNumbers = from; }
-
- cm.curOp.viewChanged = true;
-
- if (from >= display.viewTo) { // Change after
- if (sawCollapsedSpans && visualLineNo(cm.doc, from) < display.viewTo)
- { resetView(cm); }
- } else if (to <= display.viewFrom) { // Change before
- if (sawCollapsedSpans && visualLineEndNo(cm.doc, to + lendiff) > display.viewFrom) {
- resetView(cm);
- } else {
- display.viewFrom += lendiff;
- display.viewTo += lendiff;
- }
- } else if (from <= display.viewFrom && to >= display.viewTo) { // Full overlap
- resetView(cm);
- } else if (from <= display.viewFrom) { // Top overlap
- var cut = viewCuttingPoint(cm, to, to + lendiff, 1);
- if (cut) {
- display.view = display.view.slice(cut.index);
- display.viewFrom = cut.lineN;
- display.viewTo += lendiff;
- } else {
- resetView(cm);
- }
- } else if (to >= display.viewTo) { // Bottom overlap
- var cut$1 = viewCuttingPoint(cm, from, from, -1);
- if (cut$1) {
- display.view = display.view.slice(0, cut$1.index);
- display.viewTo = cut$1.lineN;
- } else {
- resetView(cm);
- }
- } else { // Gap in the middle
- var cutTop = viewCuttingPoint(cm, from, from, -1);
- var cutBot = viewCuttingPoint(cm, to, to + lendiff, 1);
- if (cutTop && cutBot) {
- display.view = display.view.slice(0, cutTop.index)
- .concat(buildViewArray(cm, cutTop.lineN, cutBot.lineN))
- .concat(display.view.slice(cutBot.index));
- display.viewTo += lendiff;
- } else {
- resetView(cm);
- }
- }
-
- var ext = display.externalMeasured;
- if (ext) {
- if (to < ext.lineN)
- { ext.lineN += lendiff; }
- else if (from < ext.lineN + ext.size)
- { display.externalMeasured = null; }
- }
- }
-
- // Register a change to a single line. Type must be one of "text",
- // "gutter", "class", "widget"
- function regLineChange(cm, line, type) {
- cm.curOp.viewChanged = true;
- var display = cm.display, ext = cm.display.externalMeasured;
- if (ext && line >= ext.lineN && line < ext.lineN + ext.size)
- { display.externalMeasured = null; }
-
- if (line < display.viewFrom || line >= display.viewTo) { return }
- var lineView = display.view[findViewIndex(cm, line)];
- if (lineView.node == null) { return }
- var arr = lineView.changes || (lineView.changes = []);
- if (indexOf(arr, type) == -1) { arr.push(type); }
- }
-
- // Clear the view.
- function resetView(cm) {
- cm.display.viewFrom = cm.display.viewTo = cm.doc.first;
- cm.display.view = [];
- cm.display.viewOffset = 0;
- }
-
- function viewCuttingPoint(cm, oldN, newN, dir) {
- var index = findViewIndex(cm, oldN), diff, view = cm.display.view;
- if (!sawCollapsedSpans || newN == cm.doc.first + cm.doc.size)
- { return {index: index, lineN: newN} }
- var n = cm.display.viewFrom;
- for (var i = 0; i < index; i++)
- { n += view[i].size; }
- if (n != oldN) {
- if (dir > 0) {
- if (index == view.length - 1) { return null }
- diff = (n + view[index].size) - oldN;
- index++;
- } else {
- diff = n - oldN;
- }
- oldN += diff; newN += diff;
- }
- while (visualLineNo(cm.doc, newN) != newN) {
- if (index == (dir < 0 ? 0 : view.length - 1)) { return null }
- newN += dir * view[index - (dir < 0 ? 1 : 0)].size;
- index += dir;
- }
- return {index: index, lineN: newN}
- }
-
- // Force the view to cover a given range, adding empty view element
- // or clipping off existing ones as needed.
- function adjustView(cm, from, to) {
- var display = cm.display, view = display.view;
- if (view.length == 0 || from >= display.viewTo || to <= display.viewFrom) {
- display.view = buildViewArray(cm, from, to);
- display.viewFrom = from;
- } else {
- if (display.viewFrom > from)
- { display.view = buildViewArray(cm, from, display.viewFrom).concat(display.view); }
- else if (display.viewFrom < from)
- { display.view = display.view.slice(findViewIndex(cm, from)); }
- display.viewFrom = from;
- if (display.viewTo < to)
- { display.view = display.view.concat(buildViewArray(cm, display.viewTo, to)); }
- else if (display.viewTo > to)
- { display.view = display.view.slice(0, findViewIndex(cm, to)); }
- }
- display.viewTo = to;
- }
-
- // Count the number of lines in the view whose DOM representation is
- // out of date (or nonexistent).
- function countDirtyView(cm) {
- var view = cm.display.view, dirty = 0;
- for (var i = 0; i < view.length; i++) {
- var lineView = view[i];
- if (!lineView.hidden && (!lineView.node || lineView.changes)) { ++dirty; }
- }
- return dirty
- }
-
- function updateSelection(cm) {
- cm.display.input.showSelection(cm.display.input.prepareSelection());
- }
-
- function prepareSelection(cm, primary) {
- if ( primary === void 0 ) primary = true;
-
- var doc = cm.doc, result = {};
- var curFragment = result.cursors = document.createDocumentFragment();
- var selFragment = result.selection = document.createDocumentFragment();
-
- for (var i = 0; i < doc.sel.ranges.length; i++) {
- if (!primary && i == doc.sel.primIndex) { continue }
- var range = doc.sel.ranges[i];
- if (range.from().line >= cm.display.viewTo || range.to().line < cm.display.viewFrom) { continue }
- var collapsed = range.empty();
- if (collapsed || cm.options.showCursorWhenSelecting)
- { drawSelectionCursor(cm, range.head, curFragment); }
- if (!collapsed)
- { drawSelectionRange(cm, range, selFragment); }
- }
- return result
- }
-
- // Draws a cursor for the given range
- function drawSelectionCursor(cm, head, output) {
- var pos = cursorCoords(cm, head, "div", null, null, !cm.options.singleCursorHeightPerLine);
-
- var cursor = output.appendChild(elt("div", "\u00a0", "CodeMirror-cursor"));
- cursor.style.left = pos.left + "px";
- cursor.style.top = pos.top + "px";
- cursor.style.height = Math.max(0, pos.bottom - pos.top) * cm.options.cursorHeight + "px";
-
- if (pos.other) {
- // Secondary cursor, shown when on a 'jump' in bi-directional text
- var otherCursor = output.appendChild(elt("div", "\u00a0", "CodeMirror-cursor CodeMirror-secondarycursor"));
- otherCursor.style.display = "";
- otherCursor.style.left = pos.other.left + "px";
- otherCursor.style.top = pos.other.top + "px";
- otherCursor.style.height = (pos.other.bottom - pos.other.top) * .85 + "px";
- }
- }
-
- function cmpCoords(a, b) { return a.top - b.top || a.left - b.left }
-
- // Draws the given range as a highlighted selection
- function drawSelectionRange(cm, range, output) {
- var display = cm.display, doc = cm.doc;
- var fragment = document.createDocumentFragment();
- var padding = paddingH(cm.display), leftSide = padding.left;
- var rightSide = Math.max(display.sizerWidth, displayWidth(cm) - display.sizer.offsetLeft) - padding.right;
- var docLTR = doc.direction == "ltr";
-
- function add(left, top, width, bottom) {
- if (top < 0) { top = 0; }
- top = Math.round(top);
- bottom = Math.round(bottom);
- fragment.appendChild(elt("div", null, "CodeMirror-selected", ("position: absolute; left: " + left + "px;\n top: " + top + "px; width: " + (width == null ? rightSide - left : width) + "px;\n height: " + (bottom - top) + "px")));
- }
-
- function drawForLine(line, fromArg, toArg) {
- var lineObj = getLine(doc, line);
- var lineLen = lineObj.text.length;
- var start, end;
- function coords(ch, bias) {
- return charCoords(cm, Pos(line, ch), "div", lineObj, bias)
- }
-
- function wrapX(pos, dir, side) {
- var extent = wrappedLineExtentChar(cm, lineObj, null, pos);
- var prop = (dir == "ltr") == (side == "after") ? "left" : "right";
- var ch = side == "after" ? extent.begin : extent.end - (/\s/.test(lineObj.text.charAt(extent.end - 1)) ? 2 : 1);
- return coords(ch, prop)[prop]
- }
-
- var order = getOrder(lineObj, doc.direction);
- iterateBidiSections(order, fromArg || 0, toArg == null ? lineLen : toArg, function (from, to, dir, i) {
- var ltr = dir == "ltr";
- var fromPos = coords(from, ltr ? "left" : "right");
- var toPos = coords(to - 1, ltr ? "right" : "left");
-
- var openStart = fromArg == null && from == 0, openEnd = toArg == null && to == lineLen;
- var first = i == 0, last = !order || i == order.length - 1;
- if (toPos.top - fromPos.top <= 3) { // Single line
- var openLeft = (docLTR ? openStart : openEnd) && first;
- var openRight = (docLTR ? openEnd : openStart) && last;
- var left = openLeft ? leftSide : (ltr ? fromPos : toPos).left;
- var right = openRight ? rightSide : (ltr ? toPos : fromPos).right;
- add(left, fromPos.top, right - left, fromPos.bottom);
- } else { // Multiple lines
- var topLeft, topRight, botLeft, botRight;
- if (ltr) {
- topLeft = docLTR && openStart && first ? leftSide : fromPos.left;
- topRight = docLTR ? rightSide : wrapX(from, dir, "before");
- botLeft = docLTR ? leftSide : wrapX(to, dir, "after");
- botRight = docLTR && openEnd && last ? rightSide : toPos.right;
- } else {
- topLeft = !docLTR ? leftSide : wrapX(from, dir, "before");
- topRight = !docLTR && openStart && first ? rightSide : fromPos.right;
- botLeft = !docLTR && openEnd && last ? leftSide : toPos.left;
- botRight = !docLTR ? rightSide : wrapX(to, dir, "after");
- }
- add(topLeft, fromPos.top, topRight - topLeft, fromPos.bottom);
- if (fromPos.bottom < toPos.top) { add(leftSide, fromPos.bottom, null, toPos.top); }
- add(botLeft, toPos.top, botRight - botLeft, toPos.bottom);
- }
-
- if (!start || cmpCoords(fromPos, start) < 0) { start = fromPos; }
- if (cmpCoords(toPos, start) < 0) { start = toPos; }
- if (!end || cmpCoords(fromPos, end) < 0) { end = fromPos; }
- if (cmpCoords(toPos, end) < 0) { end = toPos; }
- });
- return {start: start, end: end}
- }
-
- var sFrom = range.from(), sTo = range.to();
- if (sFrom.line == sTo.line) {
- drawForLine(sFrom.line, sFrom.ch, sTo.ch);
- } else {
- var fromLine = getLine(doc, sFrom.line), toLine = getLine(doc, sTo.line);
- var singleVLine = visualLine(fromLine) == visualLine(toLine);
- var leftEnd = drawForLine(sFrom.line, sFrom.ch, singleVLine ? fromLine.text.length + 1 : null).end;
- var rightStart = drawForLine(sTo.line, singleVLine ? 0 : null, sTo.ch).start;
- if (singleVLine) {
- if (leftEnd.top < rightStart.top - 2) {
- add(leftEnd.right, leftEnd.top, null, leftEnd.bottom);
- add(leftSide, rightStart.top, rightStart.left, rightStart.bottom);
- } else {
- add(leftEnd.right, leftEnd.top, rightStart.left - leftEnd.right, leftEnd.bottom);
- }
- }
- if (leftEnd.bottom < rightStart.top)
- { add(leftSide, leftEnd.bottom, null, rightStart.top); }
- }
-
- output.appendChild(fragment);
- }
-
- // Cursor-blinking
- function restartBlink(cm) {
- if (!cm.state.focused) { return }
- var display = cm.display;
- clearInterval(display.blinker);
- var on = true;
- display.cursorDiv.style.visibility = "";
- if (cm.options.cursorBlinkRate > 0)
- { display.blinker = setInterval(function () { return display.cursorDiv.style.visibility = (on = !on) ? "" : "hidden"; },
- cm.options.cursorBlinkRate); }
- else if (cm.options.cursorBlinkRate < 0)
- { display.cursorDiv.style.visibility = "hidden"; }
- }
-
- function ensureFocus(cm) {
- if (!cm.state.focused) { cm.display.input.focus(); onFocus(cm); }
- }
-
- function delayBlurEvent(cm) {
- cm.state.delayingBlurEvent = true;
- setTimeout(function () { if (cm.state.delayingBlurEvent) {
- cm.state.delayingBlurEvent = false;
- onBlur(cm);
- } }, 100);
- }
-
- function onFocus(cm, e) {
- if (cm.state.delayingBlurEvent) { cm.state.delayingBlurEvent = false; }
-
- if (cm.options.readOnly == "nocursor") { return }
- if (!cm.state.focused) {
- signal(cm, "focus", cm, e);
- cm.state.focused = true;
- addClass(cm.display.wrapper, "CodeMirror-focused");
- // This test prevents this from firing when a context
- // menu is closed (since the input reset would kill the
- // select-all detection hack)
- if (!cm.curOp && cm.display.selForContextMenu != cm.doc.sel) {
- cm.display.input.reset();
- if (webkit) { setTimeout(function () { return cm.display.input.reset(true); }, 20); } // Issue #1730
- }
- cm.display.input.receivedFocus();
- }
- restartBlink(cm);
- }
- function onBlur(cm, e) {
- if (cm.state.delayingBlurEvent) { return }
-
- if (cm.state.focused) {
- signal(cm, "blur", cm, e);
- cm.state.focused = false;
- rmClass(cm.display.wrapper, "CodeMirror-focused");
- }
- clearInterval(cm.display.blinker);
- setTimeout(function () { if (!cm.state.focused) { cm.display.shift = false; } }, 150);
- }
-
- // Read the actual heights of the rendered lines, and update their
- // stored heights to match.
- function updateHeightsInViewport(cm) {
- var display = cm.display;
- var prevBottom = display.lineDiv.offsetTop;
- for (var i = 0; i < display.view.length; i++) {
- var cur = display.view[i], wrapping = cm.options.lineWrapping;
- var height = (void 0), width = 0;
- if (cur.hidden) { continue }
- if (ie && ie_version < 8) {
- var bot = cur.node.offsetTop + cur.node.offsetHeight;
- height = bot - prevBottom;
- prevBottom = bot;
- } else {
- var box = cur.node.getBoundingClientRect();
- height = box.bottom - box.top;
- // Check that lines don't extend past the right of the current
- // editor width
- if (!wrapping && cur.text.firstChild)
- { width = cur.text.firstChild.getBoundingClientRect().right - box.left - 1; }
- }
- var diff = cur.line.height - height;
- if (diff > .005 || diff < -.005) {
- updateLineHeight(cur.line, height);
- updateWidgetHeight(cur.line);
- if (cur.rest) { for (var j = 0; j < cur.rest.length; j++)
- { updateWidgetHeight(cur.rest[j]); } }
- }
- if (width > cm.display.sizerWidth) {
- var chWidth = Math.ceil(width / charWidth(cm.display));
- if (chWidth > cm.display.maxLineLength) {
- cm.display.maxLineLength = chWidth;
- cm.display.maxLine = cur.line;
- cm.display.maxLineChanged = true;
- }
- }
- }
- }
-
- // Read and store the height of line widgets associated with the
- // given line.
- function updateWidgetHeight(line) {
- if (line.widgets) { for (var i = 0; i < line.widgets.length; ++i) {
- var w = line.widgets[i], parent = w.node.parentNode;
- if (parent) { w.height = parent.offsetHeight; }
- } }
- }
-
- // Compute the lines that are visible in a given viewport (defaults
- // the the current scroll position). viewport may contain top,
- // height, and ensure (see op.scrollToPos) properties.
- function visibleLines(display, doc, viewport) {
- var top = viewport && viewport.top != null ? Math.max(0, viewport.top) : display.scroller.scrollTop;
- top = Math.floor(top - paddingTop(display));
- var bottom = viewport && viewport.bottom != null ? viewport.bottom : top + display.wrapper.clientHeight;
-
- var from = lineAtHeight(doc, top), to = lineAtHeight(doc, bottom);
- // Ensure is a {from: {line, ch}, to: {line, ch}} object, and
- // forces those lines into the viewport (if possible).
- if (viewport && viewport.ensure) {
- var ensureFrom = viewport.ensure.from.line, ensureTo = viewport.ensure.to.line;
- if (ensureFrom < from) {
- from = ensureFrom;
- to = lineAtHeight(doc, heightAtLine(getLine(doc, ensureFrom)) + display.wrapper.clientHeight);
- } else if (Math.min(ensureTo, doc.lastLine()) >= to) {
- from = lineAtHeight(doc, heightAtLine(getLine(doc, ensureTo)) - display.wrapper.clientHeight);
- to = ensureTo;
- }
- }
- return {from: from, to: Math.max(to, from + 1)}
- }
-
- // SCROLLING THINGS INTO VIEW
-
- // If an editor sits on the top or bottom of the window, partially
- // scrolled out of view, this ensures that the cursor is visible.
- function maybeScrollWindow(cm, rect) {
- if (signalDOMEvent(cm, "scrollCursorIntoView")) { return }
-
- var display = cm.display, box = display.sizer.getBoundingClientRect(), doScroll = null;
- if (rect.top + box.top < 0) { doScroll = true; }
- else if (rect.bottom + box.top > (window.innerHeight || document.documentElement.clientHeight)) { doScroll = false; }
- if (doScroll != null && !phantom) {
- var scrollNode = elt("div", "\u200b", null, ("position: absolute;\n top: " + (rect.top - display.viewOffset - paddingTop(cm.display)) + "px;\n height: " + (rect.bottom - rect.top + scrollGap(cm) + display.barHeight) + "px;\n left: " + (rect.left) + "px; width: " + (Math.max(2, rect.right - rect.left)) + "px;"));
- cm.display.lineSpace.appendChild(scrollNode);
- scrollNode.scrollIntoView(doScroll);
- cm.display.lineSpace.removeChild(scrollNode);
- }
- }
-
- // Scroll a given position into view (immediately), verifying that
- // it actually became visible (as line heights are accurately
- // measured, the position of something may 'drift' during drawing).
- function scrollPosIntoView(cm, pos, end, margin) {
- if (margin == null) { margin = 0; }
- var rect;
- if (!cm.options.lineWrapping && pos == end) {
- // Set pos and end to the cursor positions around the character pos sticks to
- // If pos.sticky == "before", that is around pos.ch - 1, otherwise around pos.ch
- // If pos == Pos(_, 0, "before"), pos and end are unchanged
- pos = pos.ch ? Pos(pos.line, pos.sticky == "before" ? pos.ch - 1 : pos.ch, "after") : pos;
- end = pos.sticky == "before" ? Pos(pos.line, pos.ch + 1, "before") : pos;
- }
- for (var limit = 0; limit < 5; limit++) {
- var changed = false;
- var coords = cursorCoords(cm, pos);
- var endCoords = !end || end == pos ? coords : cursorCoords(cm, end);
- rect = {left: Math.min(coords.left, endCoords.left),
- top: Math.min(coords.top, endCoords.top) - margin,
- right: Math.max(coords.left, endCoords.left),
- bottom: Math.max(coords.bottom, endCoords.bottom) + margin};
- var scrollPos = calculateScrollPos(cm, rect);
- var startTop = cm.doc.scrollTop, startLeft = cm.doc.scrollLeft;
- if (scrollPos.scrollTop != null) {
- updateScrollTop(cm, scrollPos.scrollTop);
- if (Math.abs(cm.doc.scrollTop - startTop) > 1) { changed = true; }
- }
- if (scrollPos.scrollLeft != null) {
- setScrollLeft(cm, scrollPos.scrollLeft);
- if (Math.abs(cm.doc.scrollLeft - startLeft) > 1) { changed = true; }
- }
- if (!changed) { break }
- }
- return rect
- }
-
- // Scroll a given set of coordinates into view (immediately).
- function scrollIntoView(cm, rect) {
- var scrollPos = calculateScrollPos(cm, rect);
- if (scrollPos.scrollTop != null) { updateScrollTop(cm, scrollPos.scrollTop); }
- if (scrollPos.scrollLeft != null) { setScrollLeft(cm, scrollPos.scrollLeft); }
- }
-
- // Calculate a new scroll position needed to scroll the given
- // rectangle into view. Returns an object with scrollTop and
- // scrollLeft properties. When these are undefined, the
- // vertical/horizontal position does not need to be adjusted.
- function calculateScrollPos(cm, rect) {
- var display = cm.display, snapMargin = textHeight(cm.display);
- if (rect.top < 0) { rect.top = 0; }
- var screentop = cm.curOp && cm.curOp.scrollTop != null ? cm.curOp.scrollTop : display.scroller.scrollTop;
- var screen = displayHeight(cm), result = {};
- if (rect.bottom - rect.top > screen) { rect.bottom = rect.top + screen; }
- var docBottom = cm.doc.height + paddingVert(display);
- var atTop = rect.top < snapMargin, atBottom = rect.bottom > docBottom - snapMargin;
- if (rect.top < screentop) {
- result.scrollTop = atTop ? 0 : rect.top;
- } else if (rect.bottom > screentop + screen) {
- var newTop = Math.min(rect.top, (atBottom ? docBottom : rect.bottom) - screen);
- if (newTop != screentop) { result.scrollTop = newTop; }
- }
-
- var screenleft = cm.curOp && cm.curOp.scrollLeft != null ? cm.curOp.scrollLeft : display.scroller.scrollLeft;
- var screenw = displayWidth(cm) - (cm.options.fixedGutter ? display.gutters.offsetWidth : 0);
- var tooWide = rect.right - rect.left > screenw;
- if (tooWide) { rect.right = rect.left + screenw; }
- if (rect.left < 10)
- { result.scrollLeft = 0; }
- else if (rect.left < screenleft)
- { result.scrollLeft = Math.max(0, rect.left - (tooWide ? 0 : 10)); }
- else if (rect.right > screenw + screenleft - 3)
- { result.scrollLeft = rect.right + (tooWide ? 0 : 10) - screenw; }
- return result
- }
-
- // Store a relative adjustment to the scroll position in the current
- // operation (to be applied when the operation finishes).
- function addToScrollTop(cm, top) {
- if (top == null) { return }
- resolveScrollToPos(cm);
- cm.curOp.scrollTop = (cm.curOp.scrollTop == null ? cm.doc.scrollTop : cm.curOp.scrollTop) + top;
- }
-
- // Make sure that at the end of the operation the current cursor is
- // shown.
- function ensureCursorVisible(cm) {
- resolveScrollToPos(cm);
- var cur = cm.getCursor();
- cm.curOp.scrollToPos = {from: cur, to: cur, margin: cm.options.cursorScrollMargin};
- }
-
- function scrollToCoords(cm, x, y) {
- if (x != null || y != null) { resolveScrollToPos(cm); }
- if (x != null) { cm.curOp.scrollLeft = x; }
- if (y != null) { cm.curOp.scrollTop = y; }
- }
-
- function scrollToRange(cm, range) {
- resolveScrollToPos(cm);
- cm.curOp.scrollToPos = range;
- }
-
- // When an operation has its scrollToPos property set, and another
- // scroll action is applied before the end of the operation, this
- // 'simulates' scrolling that position into view in a cheap way, so
- // that the effect of intermediate scroll commands is not ignored.
- function resolveScrollToPos(cm) {
- var range = cm.curOp.scrollToPos;
- if (range) {
- cm.curOp.scrollToPos = null;
- var from = estimateCoords(cm, range.from), to = estimateCoords(cm, range.to);
- scrollToCoordsRange(cm, from, to, range.margin);
- }
- }
-
- function scrollToCoordsRange(cm, from, to, margin) {
- var sPos = calculateScrollPos(cm, {
- left: Math.min(from.left, to.left),
- top: Math.min(from.top, to.top) - margin,
- right: Math.max(from.right, to.right),
- bottom: Math.max(from.bottom, to.bottom) + margin
- });
- scrollToCoords(cm, sPos.scrollLeft, sPos.scrollTop);
- }
-
- // Sync the scrollable area and scrollbars, ensure the viewport
- // covers the visible area.
- function updateScrollTop(cm, val) {
- if (Math.abs(cm.doc.scrollTop - val) < 2) { return }
- if (!gecko) { updateDisplaySimple(cm, {top: val}); }
- setScrollTop(cm, val, true);
- if (gecko) { updateDisplaySimple(cm); }
- startWorker(cm, 100);
- }
-
- function setScrollTop(cm, val, forceScroll) {
- val = Math.max(0, Math.min(cm.display.scroller.scrollHeight - cm.display.scroller.clientHeight, val));
- if (cm.display.scroller.scrollTop == val && !forceScroll) { return }
- cm.doc.scrollTop = val;
- cm.display.scrollbars.setScrollTop(val);
- if (cm.display.scroller.scrollTop != val) { cm.display.scroller.scrollTop = val; }
- }
-
- // Sync scroller and scrollbar, ensure the gutter elements are
- // aligned.
- function setScrollLeft(cm, val, isScroller, forceScroll) {
- val = Math.max(0, Math.min(val, cm.display.scroller.scrollWidth - cm.display.scroller.clientWidth));
- if ((isScroller ? val == cm.doc.scrollLeft : Math.abs(cm.doc.scrollLeft - val) < 2) && !forceScroll) { return }
- cm.doc.scrollLeft = val;
- alignHorizontally(cm);
- if (cm.display.scroller.scrollLeft != val) { cm.display.scroller.scrollLeft = val; }
- cm.display.scrollbars.setScrollLeft(val);
- }
-
- // SCROLLBARS
-
- // Prepare DOM reads needed to update the scrollbars. Done in one
- // shot to minimize update/measure roundtrips.
- function measureForScrollbars(cm) {
- var d = cm.display, gutterW = d.gutters.offsetWidth;
- var docH = Math.round(cm.doc.height + paddingVert(cm.display));
- return {
- clientHeight: d.scroller.clientHeight,
- viewHeight: d.wrapper.clientHeight,
- scrollWidth: d.scroller.scrollWidth, clientWidth: d.scroller.clientWidth,
- viewWidth: d.wrapper.clientWidth,
- barLeft: cm.options.fixedGutter ? gutterW : 0,
- docHeight: docH,
- scrollHeight: docH + scrollGap(cm) + d.barHeight,
- nativeBarWidth: d.nativeBarWidth,
- gutterWidth: gutterW
- }
- }
-
- var NativeScrollbars = function(place, scroll, cm) {
- this.cm = cm;
- var vert = this.vert = elt("div", [elt("div", null, null, "min-width: 1px")], "CodeMirror-vscrollbar");
- var horiz = this.horiz = elt("div", [elt("div", null, null, "height: 100%; min-height: 1px")], "CodeMirror-hscrollbar");
- vert.tabIndex = horiz.tabIndex = -1;
- place(vert); place(horiz);
-
- on(vert, "scroll", function () {
- if (vert.clientHeight) { scroll(vert.scrollTop, "vertical"); }
- });
- on(horiz, "scroll", function () {
- if (horiz.clientWidth) { scroll(horiz.scrollLeft, "horizontal"); }
- });
-
- this.checkedZeroWidth = false;
- // Need to set a minimum width to see the scrollbar on IE7 (but must not set it on IE8).
- if (ie && ie_version < 8) { this.horiz.style.minHeight = this.vert.style.minWidth = "18px"; }
- };
-
- NativeScrollbars.prototype.update = function (measure) {
- var needsH = measure.scrollWidth > measure.clientWidth + 1;
- var needsV = measure.scrollHeight > measure.clientHeight + 1;
- var sWidth = measure.nativeBarWidth;
-
- if (needsV) {
- this.vert.style.display = "block";
- this.vert.style.bottom = needsH ? sWidth + "px" : "0";
- var totalHeight = measure.viewHeight - (needsH ? sWidth : 0);
- // A bug in IE8 can cause this value to be negative, so guard it.
- this.vert.firstChild.style.height =
- Math.max(0, measure.scrollHeight - measure.clientHeight + totalHeight) + "px";
- } else {
- this.vert.style.display = "";
- this.vert.firstChild.style.height = "0";
- }
-
- if (needsH) {
- this.horiz.style.display = "block";
- this.horiz.style.right = needsV ? sWidth + "px" : "0";
- this.horiz.style.left = measure.barLeft + "px";
- var totalWidth = measure.viewWidth - measure.barLeft - (needsV ? sWidth : 0);
- this.horiz.firstChild.style.width =
- Math.max(0, measure.scrollWidth - measure.clientWidth + totalWidth) + "px";
- } else {
- this.horiz.style.display = "";
- this.horiz.firstChild.style.width = "0";
- }
-
- if (!this.checkedZeroWidth && measure.clientHeight > 0) {
- if (sWidth == 0) { this.zeroWidthHack(); }
- this.checkedZeroWidth = true;
- }
-
- return {right: needsV ? sWidth : 0, bottom: needsH ? sWidth : 0}
- };
-
- NativeScrollbars.prototype.setScrollLeft = function (pos) {
- if (this.horiz.scrollLeft != pos) { this.horiz.scrollLeft = pos; }
- if (this.disableHoriz) { this.enableZeroWidthBar(this.horiz, this.disableHoriz, "horiz"); }
- };
-
- NativeScrollbars.prototype.setScrollTop = function (pos) {
- if (this.vert.scrollTop != pos) { this.vert.scrollTop = pos; }
- if (this.disableVert) { this.enableZeroWidthBar(this.vert, this.disableVert, "vert"); }
- };
-
- NativeScrollbars.prototype.zeroWidthHack = function () {
- var w = mac && !mac_geMountainLion ? "12px" : "18px";
- this.horiz.style.height = this.vert.style.width = w;
- this.horiz.style.pointerEvents = this.vert.style.pointerEvents = "none";
- this.disableHoriz = new Delayed;
- this.disableVert = new Delayed;
- };
-
- NativeScrollbars.prototype.enableZeroWidthBar = function (bar, delay, type) {
- bar.style.pointerEvents = "auto";
- function maybeDisable() {
- // To find out whether the scrollbar is still visible, we
- // check whether the element under the pixel in the bottom
- // right corner of the scrollbar box is the scrollbar box
- // itself (when the bar is still visible) or its filler child
- // (when the bar is hidden). If it is still visible, we keep
- // it enabled, if it's hidden, we disable pointer events.
- var box = bar.getBoundingClientRect();
- var elt = type == "vert" ? document.elementFromPoint(box.right - 1, (box.top + box.bottom) / 2)
- : document.elementFromPoint((box.right + box.left) / 2, box.bottom - 1);
- if (elt != bar) { bar.style.pointerEvents = "none"; }
- else { delay.set(1000, maybeDisable); }
- }
- delay.set(1000, maybeDisable);
- };
-
- NativeScrollbars.prototype.clear = function () {
- var parent = this.horiz.parentNode;
- parent.removeChild(this.horiz);
- parent.removeChild(this.vert);
- };
-
- var NullScrollbars = function () {};
-
- NullScrollbars.prototype.update = function () { return {bottom: 0, right: 0} };
- NullScrollbars.prototype.setScrollLeft = function () {};
- NullScrollbars.prototype.setScrollTop = function () {};
- NullScrollbars.prototype.clear = function () {};
-
- function updateScrollbars(cm, measure) {
- if (!measure) { measure = measureForScrollbars(cm); }
- var startWidth = cm.display.barWidth, startHeight = cm.display.barHeight;
- updateScrollbarsInner(cm, measure);
- for (var i = 0; i < 4 && startWidth != cm.display.barWidth || startHeight != cm.display.barHeight; i++) {
- if (startWidth != cm.display.barWidth && cm.options.lineWrapping)
- { updateHeightsInViewport(cm); }
- updateScrollbarsInner(cm, measureForScrollbars(cm));
- startWidth = cm.display.barWidth; startHeight = cm.display.barHeight;
- }
- }
-
- // Re-synchronize the fake scrollbars with the actual size of the
- // content.
- function updateScrollbarsInner(cm, measure) {
- var d = cm.display;
- var sizes = d.scrollbars.update(measure);
-
- d.sizer.style.paddingRight = (d.barWidth = sizes.right) + "px";
- d.sizer.style.paddingBottom = (d.barHeight = sizes.bottom) + "px";
- d.heightForcer.style.borderBottom = sizes.bottom + "px solid transparent";
-
- if (sizes.right && sizes.bottom) {
- d.scrollbarFiller.style.display = "block";
- d.scrollbarFiller.style.height = sizes.bottom + "px";
- d.scrollbarFiller.style.width = sizes.right + "px";
- } else { d.scrollbarFiller.style.display = ""; }
- if (sizes.bottom && cm.options.coverGutterNextToScrollbar && cm.options.fixedGutter) {
- d.gutterFiller.style.display = "block";
- d.gutterFiller.style.height = sizes.bottom + "px";
- d.gutterFiller.style.width = measure.gutterWidth + "px";
- } else { d.gutterFiller.style.display = ""; }
- }
-
- var scrollbarModel = {"native": NativeScrollbars, "null": NullScrollbars};
-
- function initScrollbars(cm) {
- if (cm.display.scrollbars) {
- cm.display.scrollbars.clear();
- if (cm.display.scrollbars.addClass)
- { rmClass(cm.display.wrapper, cm.display.scrollbars.addClass); }
- }
-
- cm.display.scrollbars = new scrollbarModel[cm.options.scrollbarStyle](function (node) {
- cm.display.wrapper.insertBefore(node, cm.display.scrollbarFiller);
- // Prevent clicks in the scrollbars from killing focus
- on(node, "mousedown", function () {
- if (cm.state.focused) { setTimeout(function () { return cm.display.input.focus(); }, 0); }
- });
- node.setAttribute("cm-not-content", "true");
- }, function (pos, axis) {
- if (axis == "horizontal") { setScrollLeft(cm, pos); }
- else { updateScrollTop(cm, pos); }
- }, cm);
- if (cm.display.scrollbars.addClass)
- { addClass(cm.display.wrapper, cm.display.scrollbars.addClass); }
- }
-
- // Operations are used to wrap a series of changes to the editor
- // state in such a way that each change won't have to update the
- // cursor and display (which would be awkward, slow, and
- // error-prone). Instead, display updates are batched and then all
- // combined and executed at once.
-
- var nextOpId = 0;
- // Start a new operation.
- function startOperation(cm) {
- cm.curOp = {
- cm: cm,
- viewChanged: false, // Flag that indicates that lines might need to be redrawn
- startHeight: cm.doc.height, // Used to detect need to update scrollbar
- forceUpdate: false, // Used to force a redraw
- updateInput: 0, // Whether to reset the input textarea
- typing: false, // Whether this reset should be careful to leave existing text (for compositing)
- changeObjs: null, // Accumulated changes, for firing change events
- cursorActivityHandlers: null, // Set of handlers to fire cursorActivity on
- cursorActivityCalled: 0, // Tracks which cursorActivity handlers have been called already
- selectionChanged: false, // Whether the selection needs to be redrawn
- updateMaxLine: false, // Set when the widest line needs to be determined anew
- scrollLeft: null, scrollTop: null, // Intermediate scroll position, not pushed to DOM yet
- scrollToPos: null, // Used to scroll to a specific position
- focus: false,
- id: ++nextOpId // Unique ID
- };
- pushOperation(cm.curOp);
- }
-
- // Finish an operation, updating the display and signalling delayed events
- function endOperation(cm) {
- var op = cm.curOp;
- if (op) { finishOperation(op, function (group) {
- for (var i = 0; i < group.ops.length; i++)
- { group.ops[i].cm.curOp = null; }
- endOperations(group);
- }); }
- }
-
- // The DOM updates done when an operation finishes are batched so
- // that the minimum number of relayouts are required.
- function endOperations(group) {
- var ops = group.ops;
- for (var i = 0; i < ops.length; i++) // Read DOM
- { endOperation_R1(ops[i]); }
- for (var i$1 = 0; i$1 < ops.length; i$1++) // Write DOM (maybe)
- { endOperation_W1(ops[i$1]); }
- for (var i$2 = 0; i$2 < ops.length; i$2++) // Read DOM
- { endOperation_R2(ops[i$2]); }
- for (var i$3 = 0; i$3 < ops.length; i$3++) // Write DOM (maybe)
- { endOperation_W2(ops[i$3]); }
- for (var i$4 = 0; i$4 < ops.length; i$4++) // Read DOM
- { endOperation_finish(ops[i$4]); }
- }
-
- function endOperation_R1(op) {
- var cm = op.cm, display = cm.display;
- maybeClipScrollbars(cm);
- if (op.updateMaxLine) { findMaxLine(cm); }
-
- op.mustUpdate = op.viewChanged || op.forceUpdate || op.scrollTop != null ||
- op.scrollToPos && (op.scrollToPos.from.line < display.viewFrom ||
- op.scrollToPos.to.line >= display.viewTo) ||
- display.maxLineChanged && cm.options.lineWrapping;
- op.update = op.mustUpdate &&
- new DisplayUpdate(cm, op.mustUpdate && {top: op.scrollTop, ensure: op.scrollToPos}, op.forceUpdate);
- }
-
- function endOperation_W1(op) {
- op.updatedDisplay = op.mustUpdate && updateDisplayIfNeeded(op.cm, op.update);
- }
-
- function endOperation_R2(op) {
- var cm = op.cm, display = cm.display;
- if (op.updatedDisplay) { updateHeightsInViewport(cm); }
-
- op.barMeasure = measureForScrollbars(cm);
-
- // If the max line changed since it was last measured, measure it,
- // and ensure the document's width matches it.
- // updateDisplay_W2 will use these properties to do the actual resizing
- if (display.maxLineChanged && !cm.options.lineWrapping) {
- op.adjustWidthTo = measureChar(cm, display.maxLine, display.maxLine.text.length).left + 3;
- cm.display.sizerWidth = op.adjustWidthTo;
- op.barMeasure.scrollWidth =
- Math.max(display.scroller.clientWidth, display.sizer.offsetLeft + op.adjustWidthTo + scrollGap(cm) + cm.display.barWidth);
- op.maxScrollLeft = Math.max(0, display.sizer.offsetLeft + op.adjustWidthTo - displayWidth(cm));
- }
-
- if (op.updatedDisplay || op.selectionChanged)
- { op.preparedSelection = display.input.prepareSelection(); }
- }
-
- function endOperation_W2(op) {
- var cm = op.cm;
-
- if (op.adjustWidthTo != null) {
- cm.display.sizer.style.minWidth = op.adjustWidthTo + "px";
- if (op.maxScrollLeft < cm.doc.scrollLeft)
- { setScrollLeft(cm, Math.min(cm.display.scroller.scrollLeft, op.maxScrollLeft), true); }
- cm.display.maxLineChanged = false;
- }
-
- var takeFocus = op.focus && op.focus == activeElt();
- if (op.preparedSelection)
- { cm.display.input.showSelection(op.preparedSelection, takeFocus); }
- if (op.updatedDisplay || op.startHeight != cm.doc.height)
- { updateScrollbars(cm, op.barMeasure); }
- if (op.updatedDisplay)
- { setDocumentHeight(cm, op.barMeasure); }
-
- if (op.selectionChanged) { restartBlink(cm); }
-
- if (cm.state.focused && op.updateInput)
- { cm.display.input.reset(op.typing); }
- if (takeFocus) { ensureFocus(op.cm); }
- }
-
- function endOperation_finish(op) {
- var cm = op.cm, display = cm.display, doc = cm.doc;
-
- if (op.updatedDisplay) { postUpdateDisplay(cm, op.update); }
-
- // Abort mouse wheel delta measurement, when scrolling explicitly
- if (display.wheelStartX != null && (op.scrollTop != null || op.scrollLeft != null || op.scrollToPos))
- { display.wheelStartX = display.wheelStartY = null; }
-
- // Propagate the scroll position to the actual DOM scroller
- if (op.scrollTop != null) { setScrollTop(cm, op.scrollTop, op.forceScroll); }
-
- if (op.scrollLeft != null) { setScrollLeft(cm, op.scrollLeft, true, true); }
- // If we need to scroll a specific position into view, do so.
- if (op.scrollToPos) {
- var rect = scrollPosIntoView(cm, clipPos(doc, op.scrollToPos.from),
- clipPos(doc, op.scrollToPos.to), op.scrollToPos.margin);
- maybeScrollWindow(cm, rect);
- }
-
- // Fire events for markers that are hidden/unidden by editing or
- // undoing
- var hidden = op.maybeHiddenMarkers, unhidden = op.maybeUnhiddenMarkers;
- if (hidden) { for (var i = 0; i < hidden.length; ++i)
- { if (!hidden[i].lines.length) { signal(hidden[i], "hide"); } } }
- if (unhidden) { for (var i$1 = 0; i$1 < unhidden.length; ++i$1)
- { if (unhidden[i$1].lines.length) { signal(unhidden[i$1], "unhide"); } } }
-
- if (display.wrapper.offsetHeight)
- { doc.scrollTop = cm.display.scroller.scrollTop; }
-
- // Fire change events, and delayed event handlers
- if (op.changeObjs)
- { signal(cm, "changes", cm, op.changeObjs); }
- if (op.update)
- { op.update.finish(); }
- }
-
- // Run the given function in an operation
- function runInOp(cm, f) {
- if (cm.curOp) { return f() }
- startOperation(cm);
- try { return f() }
- finally { endOperation(cm); }
- }
- // Wraps a function in an operation. Returns the wrapped function.
- function operation(cm, f) {
- return function() {
- if (cm.curOp) { return f.apply(cm, arguments) }
- startOperation(cm);
- try { return f.apply(cm, arguments) }
- finally { endOperation(cm); }
- }
- }
- // Used to add methods to editor and doc instances, wrapping them in
- // operations.
- function methodOp(f) {
- return function() {
- if (this.curOp) { return f.apply(this, arguments) }
- startOperation(this);
- try { return f.apply(this, arguments) }
- finally { endOperation(this); }
- }
- }
- function docMethodOp(f) {
- return function() {
- var cm = this.cm;
- if (!cm || cm.curOp) { return f.apply(this, arguments) }
- startOperation(cm);
- try { return f.apply(this, arguments) }
- finally { endOperation(cm); }
- }
- }
-
- // HIGHLIGHT WORKER
-
- function startWorker(cm, time) {
- if (cm.doc.highlightFrontier < cm.display.viewTo)
- { cm.state.highlight.set(time, bind(highlightWorker, cm)); }
- }
-
- function highlightWorker(cm) {
- var doc = cm.doc;
- if (doc.highlightFrontier >= cm.display.viewTo) { return }
- var end = +new Date + cm.options.workTime;
- var context = getContextBefore(cm, doc.highlightFrontier);
- var changedLines = [];
-
- doc.iter(context.line, Math.min(doc.first + doc.size, cm.display.viewTo + 500), function (line) {
- if (context.line >= cm.display.viewFrom) { // Visible
- var oldStyles = line.styles;
- var resetState = line.text.length > cm.options.maxHighlightLength ? copyState(doc.mode, context.state) : null;
- var highlighted = highlightLine(cm, line, context, true);
- if (resetState) { context.state = resetState; }
- line.styles = highlighted.styles;
- var oldCls = line.styleClasses, newCls = highlighted.classes;
- if (newCls) { line.styleClasses = newCls; }
- else if (oldCls) { line.styleClasses = null; }
- var ischange = !oldStyles || oldStyles.length != line.styles.length ||
- oldCls != newCls && (!oldCls || !newCls || oldCls.bgClass != newCls.bgClass || oldCls.textClass != newCls.textClass);
- for (var i = 0; !ischange && i < oldStyles.length; ++i) { ischange = oldStyles[i] != line.styles[i]; }
- if (ischange) { changedLines.push(context.line); }
- line.stateAfter = context.save();
- context.nextLine();
- } else {
- if (line.text.length <= cm.options.maxHighlightLength)
- { processLine(cm, line.text, context); }
- line.stateAfter = context.line % 5 == 0 ? context.save() : null;
- context.nextLine();
- }
- if (+new Date > end) {
- startWorker(cm, cm.options.workDelay);
- return true
- }
- });
- doc.highlightFrontier = context.line;
- doc.modeFrontier = Math.max(doc.modeFrontier, context.line);
- if (changedLines.length) { runInOp(cm, function () {
- for (var i = 0; i < changedLines.length; i++)
- { regLineChange(cm, changedLines[i], "text"); }
- }); }
- }
-
- // DISPLAY DRAWING
-
- var DisplayUpdate = function(cm, viewport, force) {
- var display = cm.display;
-
- this.viewport = viewport;
- // Store some values that we'll need later (but don't want to force a relayout for)
- this.visible = visibleLines(display, cm.doc, viewport);
- this.editorIsHidden = !display.wrapper.offsetWidth;
- this.wrapperHeight = display.wrapper.clientHeight;
- this.wrapperWidth = display.wrapper.clientWidth;
- this.oldDisplayWidth = displayWidth(cm);
- this.force = force;
- this.dims = getDimensions(cm);
- this.events = [];
- };
-
- DisplayUpdate.prototype.signal = function (emitter, type) {
- if (hasHandler(emitter, type))
- { this.events.push(arguments); }
- };
- DisplayUpdate.prototype.finish = function () {
- for (var i = 0; i < this.events.length; i++)
- { signal.apply(null, this.events[i]); }
- };
-
- function maybeClipScrollbars(cm) {
- var display = cm.display;
- if (!display.scrollbarsClipped && display.scroller.offsetWidth) {
- display.nativeBarWidth = display.scroller.offsetWidth - display.scroller.clientWidth;
- display.heightForcer.style.height = scrollGap(cm) + "px";
- display.sizer.style.marginBottom = -display.nativeBarWidth + "px";
- display.sizer.style.borderRightWidth = scrollGap(cm) + "px";
- display.scrollbarsClipped = true;
- }
- }
-
- function selectionSnapshot(cm) {
- if (cm.hasFocus()) { return null }
- var active = activeElt();
- if (!active || !contains(cm.display.lineDiv, active)) { return null }
- var result = {activeElt: active};
- if (window.getSelection) {
- var sel = window.getSelection();
- if (sel.anchorNode && sel.extend && contains(cm.display.lineDiv, sel.anchorNode)) {
- result.anchorNode = sel.anchorNode;
- result.anchorOffset = sel.anchorOffset;
- result.focusNode = sel.focusNode;
- result.focusOffset = sel.focusOffset;
- }
- }
- return result
- }
-
- function restoreSelection(snapshot) {
- if (!snapshot || !snapshot.activeElt || snapshot.activeElt == activeElt()) { return }
- snapshot.activeElt.focus();
- if (snapshot.anchorNode && contains(document.body, snapshot.anchorNode) && contains(document.body, snapshot.focusNode)) {
- var sel = window.getSelection(), range = document.createRange();
- range.setEnd(snapshot.anchorNode, snapshot.anchorOffset);
- range.collapse(false);
- sel.removeAllRanges();
- sel.addRange(range);
- sel.extend(snapshot.focusNode, snapshot.focusOffset);
- }
- }
-
- // Does the actual updating of the line display. Bails out
- // (returning false) when there is nothing to be done and forced is
- // false.
- function updateDisplayIfNeeded(cm, update) {
- var display = cm.display, doc = cm.doc;
-
- if (update.editorIsHidden) {
- resetView(cm);
- return false
- }
-
- // Bail out if the visible area is already rendered and nothing changed.
- if (!update.force &&
- update.visible.from >= display.viewFrom && update.visible.to <= display.viewTo &&
- (display.updateLineNumbers == null || display.updateLineNumbers >= display.viewTo) &&
- display.renderedView == display.view && countDirtyView(cm) == 0)
- { return false }
-
- if (maybeUpdateLineNumberWidth(cm)) {
- resetView(cm);
- update.dims = getDimensions(cm);
- }
-
- // Compute a suitable new viewport (from & to)
- var end = doc.first + doc.size;
- var from = Math.max(update.visible.from - cm.options.viewportMargin, doc.first);
- var to = Math.min(end, update.visible.to + cm.options.viewportMargin);
- if (display.viewFrom < from && from - display.viewFrom < 20) { from = Math.max(doc.first, display.viewFrom); }
- if (display.viewTo > to && display.viewTo - to < 20) { to = Math.min(end, display.viewTo); }
- if (sawCollapsedSpans) {
- from = visualLineNo(cm.doc, from);
- to = visualLineEndNo(cm.doc, to);
- }
-
- var different = from != display.viewFrom || to != display.viewTo ||
- display.lastWrapHeight != update.wrapperHeight || display.lastWrapWidth != update.wrapperWidth;
- adjustView(cm, from, to);
-
- display.viewOffset = heightAtLine(getLine(cm.doc, display.viewFrom));
- // Position the mover div to align with the current scroll position
- cm.display.mover.style.top = display.viewOffset + "px";
-
- var toUpdate = countDirtyView(cm);
- if (!different && toUpdate == 0 && !update.force && display.renderedView == display.view &&
- (display.updateLineNumbers == null || display.updateLineNumbers >= display.viewTo))
- { return false }
-
- // For big changes, we hide the enclosing element during the
- // update, since that speeds up the operations on most browsers.
- var selSnapshot = selectionSnapshot(cm);
- if (toUpdate > 4) { display.lineDiv.style.display = "none"; }
- patchDisplay(cm, display.updateLineNumbers, update.dims);
- if (toUpdate > 4) { display.lineDiv.style.display = ""; }
- display.renderedView = display.view;
- // There might have been a widget with a focused element that got
- // hidden or updated, if so re-focus it.
- restoreSelection(selSnapshot);
-
- // Prevent selection and cursors from interfering with the scroll
- // width and height.
- removeChildren(display.cursorDiv);
- removeChildren(display.selectionDiv);
- display.gutters.style.height = display.sizer.style.minHeight = 0;
-
- if (different) {
- display.lastWrapHeight = update.wrapperHeight;
- display.lastWrapWidth = update.wrapperWidth;
- startWorker(cm, 400);
- }
-
- display.updateLineNumbers = null;
-
- return true
- }
-
- function postUpdateDisplay(cm, update) {
- var viewport = update.viewport;
-
- for (var first = true;; first = false) {
- if (!first || !cm.options.lineWrapping || update.oldDisplayWidth == displayWidth(cm)) {
- // Clip forced viewport to actual scrollable area.
- if (viewport && viewport.top != null)
- { viewport = {top: Math.min(cm.doc.height + paddingVert(cm.display) - displayHeight(cm), viewport.top)}; }
- // Updated line heights might result in the drawn area not
- // actually covering the viewport. Keep looping until it does.
- update.visible = visibleLines(cm.display, cm.doc, viewport);
- if (update.visible.from >= cm.display.viewFrom && update.visible.to <= cm.display.viewTo)
- { break }
- }
- if (!updateDisplayIfNeeded(cm, update)) { break }
- updateHeightsInViewport(cm);
- var barMeasure = measureForScrollbars(cm);
- updateSelection(cm);
- updateScrollbars(cm, barMeasure);
- setDocumentHeight(cm, barMeasure);
- update.force = false;
- }
-
- update.signal(cm, "update", cm);
- if (cm.display.viewFrom != cm.display.reportedViewFrom || cm.display.viewTo != cm.display.reportedViewTo) {
- update.signal(cm, "viewportChange", cm, cm.display.viewFrom, cm.display.viewTo);
- cm.display.reportedViewFrom = cm.display.viewFrom; cm.display.reportedViewTo = cm.display.viewTo;
- }
- }
-
- function updateDisplaySimple(cm, viewport) {
- var update = new DisplayUpdate(cm, viewport);
- if (updateDisplayIfNeeded(cm, update)) {
- updateHeightsInViewport(cm);
- postUpdateDisplay(cm, update);
- var barMeasure = measureForScrollbars(cm);
- updateSelection(cm);
- updateScrollbars(cm, barMeasure);
- setDocumentHeight(cm, barMeasure);
- update.finish();
- }
- }
-
- // Sync the actual display DOM structure with display.view, removing
- // nodes for lines that are no longer in view, and creating the ones
- // that are not there yet, and updating the ones that are out of
- // date.
- function patchDisplay(cm, updateNumbersFrom, dims) {
- var display = cm.display, lineNumbers = cm.options.lineNumbers;
- var container = display.lineDiv, cur = container.firstChild;
-
- function rm(node) {
- var next = node.nextSibling;
- // Works around a throw-scroll bug in OS X Webkit
- if (webkit && mac && cm.display.currentWheelTarget == node)
- { node.style.display = "none"; }
- else
- { node.parentNode.removeChild(node); }
- return next
- }
-
- var view = display.view, lineN = display.viewFrom;
- // Loop over the elements in the view, syncing cur (the DOM nodes
- // in display.lineDiv) with the view as we go.
- for (var i = 0; i < view.length; i++) {
- var lineView = view[i];
- if (lineView.hidden) ; else if (!lineView.node || lineView.node.parentNode != container) { // Not drawn yet
- var node = buildLineElement(cm, lineView, lineN, dims);
- container.insertBefore(node, cur);
- } else { // Already drawn
- while (cur != lineView.node) { cur = rm(cur); }
- var updateNumber = lineNumbers && updateNumbersFrom != null &&
- updateNumbersFrom <= lineN && lineView.lineNumber;
- if (lineView.changes) {
- if (indexOf(lineView.changes, "gutter") > -1) { updateNumber = false; }
- updateLineForChanges(cm, lineView, lineN, dims);
- }
- if (updateNumber) {
- removeChildren(lineView.lineNumber);
- lineView.lineNumber.appendChild(document.createTextNode(lineNumberFor(cm.options, lineN)));
- }
- cur = lineView.node.nextSibling;
- }
- lineN += lineView.size;
- }
- while (cur) { cur = rm(cur); }
- }
-
- function updateGutterSpace(display) {
- var width = display.gutters.offsetWidth;
- display.sizer.style.marginLeft = width + "px";
- }
-
- function setDocumentHeight(cm, measure) {
- cm.display.sizer.style.minHeight = measure.docHeight + "px";
- cm.display.heightForcer.style.top = measure.docHeight + "px";
- cm.display.gutters.style.height = (measure.docHeight + cm.display.barHeight + scrollGap(cm)) + "px";
- }
-
- // Re-align line numbers and gutter marks to compensate for
- // horizontal scrolling.
- function alignHorizontally(cm) {
- var display = cm.display, view = display.view;
- if (!display.alignWidgets && (!display.gutters.firstChild || !cm.options.fixedGutter)) { return }
- var comp = compensateForHScroll(display) - display.scroller.scrollLeft + cm.doc.scrollLeft;
- var gutterW = display.gutters.offsetWidth, left = comp + "px";
- for (var i = 0; i < view.length; i++) { if (!view[i].hidden) {
- if (cm.options.fixedGutter) {
- if (view[i].gutter)
- { view[i].gutter.style.left = left; }
- if (view[i].gutterBackground)
- { view[i].gutterBackground.style.left = left; }
- }
- var align = view[i].alignable;
- if (align) { for (var j = 0; j < align.length; j++)
- { align[j].style.left = left; } }
- } }
- if (cm.options.fixedGutter)
- { display.gutters.style.left = (comp + gutterW) + "px"; }
- }
-
- // Used to ensure that the line number gutter is still the right
- // size for the current document size. Returns true when an update
- // is needed.
- function maybeUpdateLineNumberWidth(cm) {
- if (!cm.options.lineNumbers) { return false }
- var doc = cm.doc, last = lineNumberFor(cm.options, doc.first + doc.size - 1), display = cm.display;
- if (last.length != display.lineNumChars) {
- var test = display.measure.appendChild(elt("div", [elt("div", last)],
- "CodeMirror-linenumber CodeMirror-gutter-elt"));
- var innerW = test.firstChild.offsetWidth, padding = test.offsetWidth - innerW;
- display.lineGutter.style.width = "";
- display.lineNumInnerWidth = Math.max(innerW, display.lineGutter.offsetWidth - padding) + 1;
- display.lineNumWidth = display.lineNumInnerWidth + padding;
- display.lineNumChars = display.lineNumInnerWidth ? last.length : -1;
- display.lineGutter.style.width = display.lineNumWidth + "px";
- updateGutterSpace(cm.display);
- return true
- }
- return false
- }
-
- function getGutters(gutters, lineNumbers) {
- var result = [], sawLineNumbers = false;
- for (var i = 0; i < gutters.length; i++) {
- var name = gutters[i], style = null;
- if (typeof name != "string") { style = name.style; name = name.className; }
- if (name == "CodeMirror-linenumbers") {
- if (!lineNumbers) { continue }
- else { sawLineNumbers = true; }
- }
- result.push({className: name, style: style});
- }
- if (lineNumbers && !sawLineNumbers) { result.push({className: "CodeMirror-linenumbers", style: null}); }
- return result
- }
-
- // Rebuild the gutter elements, ensure the margin to the left of the
- // code matches their width.
- function renderGutters(display) {
- var gutters = display.gutters, specs = display.gutterSpecs;
- removeChildren(gutters);
- display.lineGutter = null;
- for (var i = 0; i < specs.length; ++i) {
- var ref = specs[i];
- var className = ref.className;
- var style = ref.style;
- var gElt = gutters.appendChild(elt("div", null, "CodeMirror-gutter " + className));
- if (style) { gElt.style.cssText = style; }
- if (className == "CodeMirror-linenumbers") {
- display.lineGutter = gElt;
- gElt.style.width = (display.lineNumWidth || 1) + "px";
- }
- }
- gutters.style.display = specs.length ? "" : "none";
- updateGutterSpace(display);
- }
-
- function updateGutters(cm) {
- renderGutters(cm.display);
- regChange(cm);
- alignHorizontally(cm);
- }
-
- // The display handles the DOM integration, both for input reading
- // and content drawing. It holds references to DOM nodes and
- // display-related state.
-
- function Display(place, doc, input, options) {
- var d = this;
- this.input = input;
-
- // Covers bottom-right square when both scrollbars are present.
- d.scrollbarFiller = elt("div", null, "CodeMirror-scrollbar-filler");
- d.scrollbarFiller.setAttribute("cm-not-content", "true");
- // Covers bottom of gutter when coverGutterNextToScrollbar is on
- // and h scrollbar is present.
- d.gutterFiller = elt("div", null, "CodeMirror-gutter-filler");
- d.gutterFiller.setAttribute("cm-not-content", "true");
- // Will contain the actual code, positioned to cover the viewport.
- d.lineDiv = eltP("div", null, "CodeMirror-code");
- // Elements are added to these to represent selection and cursors.
- d.selectionDiv = elt("div", null, null, "position: relative; z-index: 1");
- d.cursorDiv = elt("div", null, "CodeMirror-cursors");
- // A visibility: hidden element used to find the size of things.
- d.measure = elt("div", null, "CodeMirror-measure");
- // When lines outside of the viewport are measured, they are drawn in this.
- d.lineMeasure = elt("div", null, "CodeMirror-measure");
- // Wraps everything that needs to exist inside the vertically-padded coordinate system
- d.lineSpace = eltP("div", [d.measure, d.lineMeasure, d.selectionDiv, d.cursorDiv, d.lineDiv],
- null, "position: relative; outline: none");
- var lines = eltP("div", [d.lineSpace], "CodeMirror-lines");
- // Moved around its parent to cover visible view.
- d.mover = elt("div", [lines], null, "position: relative");
- // Set to the height of the document, allowing scrolling.
- d.sizer = elt("div", [d.mover], "CodeMirror-sizer");
- d.sizerWidth = null;
- // Behavior of elts with overflow: auto and padding is
- // inconsistent across browsers. This is used to ensure the
- // scrollable area is big enough.
- d.heightForcer = elt("div", null, null, "position: absolute; height: " + scrollerGap + "px; width: 1px;");
- // Will contain the gutters, if any.
- d.gutters = elt("div", null, "CodeMirror-gutters");
- d.lineGutter = null;
- // Actual scrollable element.
- d.scroller = elt("div", [d.sizer, d.heightForcer, d.gutters], "CodeMirror-scroll");
- d.scroller.setAttribute("tabIndex", "-1");
- // The element in which the editor lives.
- d.wrapper = elt("div", [d.scrollbarFiller, d.gutterFiller, d.scroller], "CodeMirror");
-
- // Work around IE7 z-index bug (not perfect, hence IE7 not really being supported)
- if (ie && ie_version < 8) { d.gutters.style.zIndex = -1; d.scroller.style.paddingRight = 0; }
- if (!webkit && !(gecko && mobile)) { d.scroller.draggable = true; }
-
- if (place) {
- if (place.appendChild) { place.appendChild(d.wrapper); }
- else { place(d.wrapper); }
- }
-
- // Current rendered range (may be bigger than the view window).
- d.viewFrom = d.viewTo = doc.first;
- d.reportedViewFrom = d.reportedViewTo = doc.first;
- // Information about the rendered lines.
- d.view = [];
- d.renderedView = null;
- // Holds info about a single rendered line when it was rendered
- // for measurement, while not in view.
- d.externalMeasured = null;
- // Empty space (in pixels) above the view
- d.viewOffset = 0;
- d.lastWrapHeight = d.lastWrapWidth = 0;
- d.updateLineNumbers = null;
-
- d.nativeBarWidth = d.barHeight = d.barWidth = 0;
- d.scrollbarsClipped = false;
-
- // Used to only resize the line number gutter when necessary (when
- // the amount of lines crosses a boundary that makes its width change)
- d.lineNumWidth = d.lineNumInnerWidth = d.lineNumChars = null;
- // Set to true when a non-horizontal-scrolling line widget is
- // added. As an optimization, line widget aligning is skipped when
- // this is false.
- d.alignWidgets = false;
-
- d.cachedCharWidth = d.cachedTextHeight = d.cachedPaddingH = null;
-
- // Tracks the maximum line length so that the horizontal scrollbar
- // can be kept static when scrolling.
- d.maxLine = null;
- d.maxLineLength = 0;
- d.maxLineChanged = false;
-
- // Used for measuring wheel scrolling granularity
- d.wheelDX = d.wheelDY = d.wheelStartX = d.wheelStartY = null;
-
- // True when shift is held down.
- d.shift = false;
-
- // Used to track whether anything happened since the context menu
- // was opened.
- d.selForContextMenu = null;
-
- d.activeTouch = null;
-
- d.gutterSpecs = getGutters(options.gutters, options.lineNumbers);
- renderGutters(d);
-
- input.init(d);
- }
-
- // Since the delta values reported on mouse wheel events are
- // unstandardized between browsers and even browser versions, and
- // generally horribly unpredictable, this code starts by measuring
- // the scroll effect that the first few mouse wheel events have,
- // and, from that, detects the way it can convert deltas to pixel
- // offsets afterwards.
- //
- // The reason we want to know the amount a wheel event will scroll
- // is that it gives us a chance to update the display before the
- // actual scrolling happens, reducing flickering.
-
- var wheelSamples = 0, wheelPixelsPerUnit = null;
- // Fill in a browser-detected starting value on browsers where we
- // know one. These don't have to be accurate -- the result of them
- // being wrong would just be a slight flicker on the first wheel
- // scroll (if it is large enough).
- if (ie) { wheelPixelsPerUnit = -.53; }
- else if (gecko) { wheelPixelsPerUnit = 15; }
- else if (chrome) { wheelPixelsPerUnit = -.7; }
- else if (safari) { wheelPixelsPerUnit = -1/3; }
-
- function wheelEventDelta(e) {
- var dx = e.wheelDeltaX, dy = e.wheelDeltaY;
- if (dx == null && e.detail && e.axis == e.HORIZONTAL_AXIS) { dx = e.detail; }
- if (dy == null && e.detail && e.axis == e.VERTICAL_AXIS) { dy = e.detail; }
- else if (dy == null) { dy = e.wheelDelta; }
- return {x: dx, y: dy}
- }
- function wheelEventPixels(e) {
- var delta = wheelEventDelta(e);
- delta.x *= wheelPixelsPerUnit;
- delta.y *= wheelPixelsPerUnit;
- return delta
- }
-
- function onScrollWheel(cm, e) {
- var delta = wheelEventDelta(e), dx = delta.x, dy = delta.y;
-
- var display = cm.display, scroll = display.scroller;
- // Quit if there's nothing to scroll here
- var canScrollX = scroll.scrollWidth > scroll.clientWidth;
- var canScrollY = scroll.scrollHeight > scroll.clientHeight;
- if (!(dx && canScrollX || dy && canScrollY)) { return }
-
- // Webkit browsers on OS X abort momentum scrolls when the target
- // of the scroll event is removed from the scrollable element.
- // This hack (see related code in patchDisplay) makes sure the
- // element is kept around.
- if (dy && mac && webkit) {
- outer: for (var cur = e.target, view = display.view; cur != scroll; cur = cur.parentNode) {
- for (var i = 0; i < view.length; i++) {
- if (view[i].node == cur) {
- cm.display.currentWheelTarget = cur;
- break outer
- }
- }
- }
- }
-
- // On some browsers, horizontal scrolling will cause redraws to
- // happen before the gutter has been realigned, causing it to
- // wriggle around in a most unseemly way. When we have an
- // estimated pixels/delta value, we just handle horizontal
- // scrolling entirely here. It'll be slightly off from native, but
- // better than glitching out.
- if (dx && !gecko && !presto && wheelPixelsPerUnit != null) {
- if (dy && canScrollY)
- { updateScrollTop(cm, Math.max(0, scroll.scrollTop + dy * wheelPixelsPerUnit)); }
- setScrollLeft(cm, Math.max(0, scroll.scrollLeft + dx * wheelPixelsPerUnit));
- // Only prevent default scrolling if vertical scrolling is
- // actually possible. Otherwise, it causes vertical scroll
- // jitter on OSX trackpads when deltaX is small and deltaY
- // is large (issue #3579)
- if (!dy || (dy && canScrollY))
- { e_preventDefault(e); }
- display.wheelStartX = null; // Abort measurement, if in progress
- return
- }
-
- // 'Project' the visible viewport to cover the area that is being
- // scrolled into view (if we know enough to estimate it).
- if (dy && wheelPixelsPerUnit != null) {
- var pixels = dy * wheelPixelsPerUnit;
- var top = cm.doc.scrollTop, bot = top + display.wrapper.clientHeight;
- if (pixels < 0) { top = Math.max(0, top + pixels - 50); }
- else { bot = Math.min(cm.doc.height, bot + pixels + 50); }
- updateDisplaySimple(cm, {top: top, bottom: bot});
- }
-
- if (wheelSamples < 20) {
- if (display.wheelStartX == null) {
- display.wheelStartX = scroll.scrollLeft; display.wheelStartY = scroll.scrollTop;
- display.wheelDX = dx; display.wheelDY = dy;
- setTimeout(function () {
- if (display.wheelStartX == null) { return }
- var movedX = scroll.scrollLeft - display.wheelStartX;
- var movedY = scroll.scrollTop - display.wheelStartY;
- var sample = (movedY && display.wheelDY && movedY / display.wheelDY) ||
- (movedX && display.wheelDX && movedX / display.wheelDX);
- display.wheelStartX = display.wheelStartY = null;
- if (!sample) { return }
- wheelPixelsPerUnit = (wheelPixelsPerUnit * wheelSamples + sample) / (wheelSamples + 1);
- ++wheelSamples;
- }, 200);
- } else {
- display.wheelDX += dx; display.wheelDY += dy;
- }
- }
- }
-
- // Selection objects are immutable. A new one is created every time
- // the selection changes. A selection is one or more non-overlapping
- // (and non-touching) ranges, sorted, and an integer that indicates
- // which one is the primary selection (the one that's scrolled into
- // view, that getCursor returns, etc).
- var Selection = function(ranges, primIndex) {
- this.ranges = ranges;
- this.primIndex = primIndex;
- };
-
- Selection.prototype.primary = function () { return this.ranges[this.primIndex] };
-
- Selection.prototype.equals = function (other) {
- if (other == this) { return true }
- if (other.primIndex != this.primIndex || other.ranges.length != this.ranges.length) { return false }
- for (var i = 0; i < this.ranges.length; i++) {
- var here = this.ranges[i], there = other.ranges[i];
- if (!equalCursorPos(here.anchor, there.anchor) || !equalCursorPos(here.head, there.head)) { return false }
- }
- return true
- };
-
- Selection.prototype.deepCopy = function () {
- var out = [];
- for (var i = 0; i < this.ranges.length; i++)
- { out[i] = new Range(copyPos(this.ranges[i].anchor), copyPos(this.ranges[i].head)); }
- return new Selection(out, this.primIndex)
- };
-
- Selection.prototype.somethingSelected = function () {
- for (var i = 0; i < this.ranges.length; i++)
- { if (!this.ranges[i].empty()) { return true } }
- return false
- };
-
- Selection.prototype.contains = function (pos, end) {
- if (!end) { end = pos; }
- for (var i = 0; i < this.ranges.length; i++) {
- var range = this.ranges[i];
- if (cmp(end, range.from()) >= 0 && cmp(pos, range.to()) <= 0)
- { return i }
- }
- return -1
- };
-
- var Range = function(anchor, head) {
- this.anchor = anchor; this.head = head;
- };
-
- Range.prototype.from = function () { return minPos(this.anchor, this.head) };
- Range.prototype.to = function () { return maxPos(this.anchor, this.head) };
- Range.prototype.empty = function () { return this.head.line == this.anchor.line && this.head.ch == this.anchor.ch };
-
- // Take an unsorted, potentially overlapping set of ranges, and
- // build a selection out of it. 'Consumes' ranges array (modifying
- // it).
- function normalizeSelection(cm, ranges, primIndex) {
- var mayTouch = cm && cm.options.selectionsMayTouch;
- var prim = ranges[primIndex];
- ranges.sort(function (a, b) { return cmp(a.from(), b.from()); });
- primIndex = indexOf(ranges, prim);
- for (var i = 1; i < ranges.length; i++) {
- var cur = ranges[i], prev = ranges[i - 1];
- var diff = cmp(prev.to(), cur.from());
- if (mayTouch && !cur.empty() ? diff > 0 : diff >= 0) {
- var from = minPos(prev.from(), cur.from()), to = maxPos(prev.to(), cur.to());
- var inv = prev.empty() ? cur.from() == cur.head : prev.from() == prev.head;
- if (i <= primIndex) { --primIndex; }
- ranges.splice(--i, 2, new Range(inv ? to : from, inv ? from : to));
- }
- }
- return new Selection(ranges, primIndex)
- }
-
- function simpleSelection(anchor, head) {
- return new Selection([new Range(anchor, head || anchor)], 0)
- }
-
- // Compute the position of the end of a change (its 'to' property
- // refers to the pre-change end).
- function changeEnd(change) {
- if (!change.text) { return change.to }
- return Pos(change.from.line + change.text.length - 1,
- lst(change.text).length + (change.text.length == 1 ? change.from.ch : 0))
- }
-
- // Adjust a position to refer to the post-change position of the
- // same text, or the end of the change if the change covers it.
- function adjustForChange(pos, change) {
- if (cmp(pos, change.from) < 0) { return pos }
- if (cmp(pos, change.to) <= 0) { return changeEnd(change) }
-
- var line = pos.line + change.text.length - (change.to.line - change.from.line) - 1, ch = pos.ch;
- if (pos.line == change.to.line) { ch += changeEnd(change).ch - change.to.ch; }
- return Pos(line, ch)
- }
-
- function computeSelAfterChange(doc, change) {
- var out = [];
- for (var i = 0; i < doc.sel.ranges.length; i++) {
- var range = doc.sel.ranges[i];
- out.push(new Range(adjustForChange(range.anchor, change),
- adjustForChange(range.head, change)));
- }
- return normalizeSelection(doc.cm, out, doc.sel.primIndex)
- }
-
- function offsetPos(pos, old, nw) {
- if (pos.line == old.line)
- { return Pos(nw.line, pos.ch - old.ch + nw.ch) }
- else
- { return Pos(nw.line + (pos.line - old.line), pos.ch) }
- }
-
- // Used by replaceSelections to allow moving the selection to the
- // start or around the replaced test. Hint may be "start" or "around".
- function computeReplacedSel(doc, changes, hint) {
- var out = [];
- var oldPrev = Pos(doc.first, 0), newPrev = oldPrev;
- for (var i = 0; i < changes.length; i++) {
- var change = changes[i];
- var from = offsetPos(change.from, oldPrev, newPrev);
- var to = offsetPos(changeEnd(change), oldPrev, newPrev);
- oldPrev = change.to;
- newPrev = to;
- if (hint == "around") {
- var range = doc.sel.ranges[i], inv = cmp(range.head, range.anchor) < 0;
- out[i] = new Range(inv ? to : from, inv ? from : to);
- } else {
- out[i] = new Range(from, from);
- }
- }
- return new Selection(out, doc.sel.primIndex)
- }
-
- // Used to get the editor into a consistent state again when options change.
-
- function loadMode(cm) {
- cm.doc.mode = getMode(cm.options, cm.doc.modeOption);
- resetModeState(cm);
- }
-
- function resetModeState(cm) {
- cm.doc.iter(function (line) {
- if (line.stateAfter) { line.stateAfter = null; }
- if (line.styles) { line.styles = null; }
- });
- cm.doc.modeFrontier = cm.doc.highlightFrontier = cm.doc.first;
- startWorker(cm, 100);
- cm.state.modeGen++;
- if (cm.curOp) { regChange(cm); }
- }
-
- // DOCUMENT DATA STRUCTURE
-
- // By default, updates that start and end at the beginning of a line
- // are treated specially, in order to make the association of line
- // widgets and marker elements with the text behave more intuitive.
- function isWholeLineUpdate(doc, change) {
- return change.from.ch == 0 && change.to.ch == 0 && lst(change.text) == "" &&
- (!doc.cm || doc.cm.options.wholeLineUpdateBefore)
- }
-
- // Perform a change on the document data structure.
- function updateDoc(doc, change, markedSpans, estimateHeight) {
- function spansFor(n) {return markedSpans ? markedSpans[n] : null}
- function update(line, text, spans) {
- updateLine(line, text, spans, estimateHeight);
- signalLater(line, "change", line, change);
- }
- function linesFor(start, end) {
- var result = [];
- for (var i = start; i < end; ++i)
- { result.push(new Line(text[i], spansFor(i), estimateHeight)); }
- return result
- }
-
- var from = change.from, to = change.to, text = change.text;
- var firstLine = getLine(doc, from.line), lastLine = getLine(doc, to.line);
- var lastText = lst(text), lastSpans = spansFor(text.length - 1), nlines = to.line - from.line;
-
- // Adjust the line structure
- if (change.full) {
- doc.insert(0, linesFor(0, text.length));
- doc.remove(text.length, doc.size - text.length);
- } else if (isWholeLineUpdate(doc, change)) {
- // This is a whole-line replace. Treated specially to make
- // sure line objects move the way they are supposed to.
- var added = linesFor(0, text.length - 1);
- update(lastLine, lastLine.text, lastSpans);
- if (nlines) { doc.remove(from.line, nlines); }
- if (added.length) { doc.insert(from.line, added); }
- } else if (firstLine == lastLine) {
- if (text.length == 1) {
- update(firstLine, firstLine.text.slice(0, from.ch) + lastText + firstLine.text.slice(to.ch), lastSpans);
- } else {
- var added$1 = linesFor(1, text.length - 1);
- added$1.push(new Line(lastText + firstLine.text.slice(to.ch), lastSpans, estimateHeight));
- update(firstLine, firstLine.text.slice(0, from.ch) + text[0], spansFor(0));
- doc.insert(from.line + 1, added$1);
- }
- } else if (text.length == 1) {
- update(firstLine, firstLine.text.slice(0, from.ch) + text[0] + lastLine.text.slice(to.ch), spansFor(0));
- doc.remove(from.line + 1, nlines);
- } else {
- update(firstLine, firstLine.text.slice(0, from.ch) + text[0], spansFor(0));
- update(lastLine, lastText + lastLine.text.slice(to.ch), lastSpans);
- var added$2 = linesFor(1, text.length - 1);
- if (nlines > 1) { doc.remove(from.line + 1, nlines - 1); }
- doc.insert(from.line + 1, added$2);
- }
-
- signalLater(doc, "change", doc, change);
- }
-
- // Call f for all linked documents.
- function linkedDocs(doc, f, sharedHistOnly) {
- function propagate(doc, skip, sharedHist) {
- if (doc.linked) { for (var i = 0; i < doc.linked.length; ++i) {
- var rel = doc.linked[i];
- if (rel.doc == skip) { continue }
- var shared = sharedHist && rel.sharedHist;
- if (sharedHistOnly && !shared) { continue }
- f(rel.doc, shared);
- propagate(rel.doc, doc, shared);
- } }
- }
- propagate(doc, null, true);
- }
-
- // Attach a document to an editor.
- function attachDoc(cm, doc) {
- if (doc.cm) { throw new Error("This document is already in use.") }
- cm.doc = doc;
- doc.cm = cm;
- estimateLineHeights(cm);
- loadMode(cm);
- setDirectionClass(cm);
- if (!cm.options.lineWrapping) { findMaxLine(cm); }
- cm.options.mode = doc.modeOption;
- regChange(cm);
- }
-
- function setDirectionClass(cm) {
- (cm.doc.direction == "rtl" ? addClass : rmClass)(cm.display.lineDiv, "CodeMirror-rtl");
- }
-
- function directionChanged(cm) {
- runInOp(cm, function () {
- setDirectionClass(cm);
- regChange(cm);
- });
- }
-
- function History(startGen) {
- // Arrays of change events and selections. Doing something adds an
- // event to done and clears undo. Undoing moves events from done
- // to undone, redoing moves them in the other direction.
- this.done = []; this.undone = [];
- this.undoDepth = Infinity;
- // Used to track when changes can be merged into a single undo
- // event
- this.lastModTime = this.lastSelTime = 0;
- this.lastOp = this.lastSelOp = null;
- this.lastOrigin = this.lastSelOrigin = null;
- // Used by the isClean() method
- this.generation = this.maxGeneration = startGen || 1;
- }
-
- // Create a history change event from an updateDoc-style change
- // object.
- function historyChangeFromChange(doc, change) {
- var histChange = {from: copyPos(change.from), to: changeEnd(change), text: getBetween(doc, change.from, change.to)};
- attachLocalSpans(doc, histChange, change.from.line, change.to.line + 1);
- linkedDocs(doc, function (doc) { return attachLocalSpans(doc, histChange, change.from.line, change.to.line + 1); }, true);
- return histChange
- }
-
- // Pop all selection events off the end of a history array. Stop at
- // a change event.
- function clearSelectionEvents(array) {
- while (array.length) {
- var last = lst(array);
- if (last.ranges) { array.pop(); }
- else { break }
- }
- }
-
- // Find the top change event in the history. Pop off selection
- // events that are in the way.
- function lastChangeEvent(hist, force) {
- if (force) {
- clearSelectionEvents(hist.done);
- return lst(hist.done)
- } else if (hist.done.length && !lst(hist.done).ranges) {
- return lst(hist.done)
- } else if (hist.done.length > 1 && !hist.done[hist.done.length - 2].ranges) {
- hist.done.pop();
- return lst(hist.done)
- }
- }
-
- // Register a change in the history. Merges changes that are within
- // a single operation, or are close together with an origin that
- // allows merging (starting with "+") into a single event.
- function addChangeToHistory(doc, change, selAfter, opId) {
- var hist = doc.history;
- hist.undone.length = 0;
- var time = +new Date, cur;
- var last;
-
- if ((hist.lastOp == opId ||
- hist.lastOrigin == change.origin && change.origin &&
- ((change.origin.charAt(0) == "+" && hist.lastModTime > time - (doc.cm ? doc.cm.options.historyEventDelay : 500)) ||
- change.origin.charAt(0) == "*")) &&
- (cur = lastChangeEvent(hist, hist.lastOp == opId))) {
- // Merge this change into the last event
- last = lst(cur.changes);
- if (cmp(change.from, change.to) == 0 && cmp(change.from, last.to) == 0) {
- // Optimized case for simple insertion -- don't want to add
- // new changesets for every character typed
- last.to = changeEnd(change);
- } else {
- // Add new sub-event
- cur.changes.push(historyChangeFromChange(doc, change));
- }
- } else {
- // Can not be merged, start a new event.
- var before = lst(hist.done);
- if (!before || !before.ranges)
- { pushSelectionToHistory(doc.sel, hist.done); }
- cur = {changes: [historyChangeFromChange(doc, change)],
- generation: hist.generation};
- hist.done.push(cur);
- while (hist.done.length > hist.undoDepth) {
- hist.done.shift();
- if (!hist.done[0].ranges) { hist.done.shift(); }
- }
- }
- hist.done.push(selAfter);
- hist.generation = ++hist.maxGeneration;
- hist.lastModTime = hist.lastSelTime = time;
- hist.lastOp = hist.lastSelOp = opId;
- hist.lastOrigin = hist.lastSelOrigin = change.origin;
-
- if (!last) { signal(doc, "historyAdded"); }
- }
-
- function selectionEventCanBeMerged(doc, origin, prev, sel) {
- var ch = origin.charAt(0);
- return ch == "*" ||
- ch == "+" &&
- prev.ranges.length == sel.ranges.length &&
- prev.somethingSelected() == sel.somethingSelected() &&
- new Date - doc.history.lastSelTime <= (doc.cm ? doc.cm.options.historyEventDelay : 500)
- }
-
- // Called whenever the selection changes, sets the new selection as
- // the pending selection in the history, and pushes the old pending
- // selection into the 'done' array when it was significantly
- // different (in number of selected ranges, emptiness, or time).
- function addSelectionToHistory(doc, sel, opId, options) {
- var hist = doc.history, origin = options && options.origin;
-
- // A new event is started when the previous origin does not match
- // the current, or the origins don't allow matching. Origins
- // starting with * are always merged, those starting with + are
- // merged when similar and close together in time.
- if (opId == hist.lastSelOp ||
- (origin && hist.lastSelOrigin == origin &&
- (hist.lastModTime == hist.lastSelTime && hist.lastOrigin == origin ||
- selectionEventCanBeMerged(doc, origin, lst(hist.done), sel))))
- { hist.done[hist.done.length - 1] = sel; }
- else
- { pushSelectionToHistory(sel, hist.done); }
-
- hist.lastSelTime = +new Date;
- hist.lastSelOrigin = origin;
- hist.lastSelOp = opId;
- if (options && options.clearRedo !== false)
- { clearSelectionEvents(hist.undone); }
- }
-
- function pushSelectionToHistory(sel, dest) {
- var top = lst(dest);
- if (!(top && top.ranges && top.equals(sel)))
- { dest.push(sel); }
- }
-
- // Used to store marked span information in the history.
- function attachLocalSpans(doc, change, from, to) {
- var existing = change["spans_" + doc.id], n = 0;
- doc.iter(Math.max(doc.first, from), Math.min(doc.first + doc.size, to), function (line) {
- if (line.markedSpans)
- { (existing || (existing = change["spans_" + doc.id] = {}))[n] = line.markedSpans; }
- ++n;
- });
- }
-
- // When un/re-doing restores text containing marked spans, those
- // that have been explicitly cleared should not be restored.
- function removeClearedSpans(spans) {
- if (!spans) { return null }
- var out;
- for (var i = 0; i < spans.length; ++i) {
- if (spans[i].marker.explicitlyCleared) { if (!out) { out = spans.slice(0, i); } }
- else if (out) { out.push(spans[i]); }
- }
- return !out ? spans : out.length ? out : null
- }
-
- // Retrieve and filter the old marked spans stored in a change event.
- function getOldSpans(doc, change) {
- var found = change["spans_" + doc.id];
- if (!found) { return null }
- var nw = [];
- for (var i = 0; i < change.text.length; ++i)
- { nw.push(removeClearedSpans(found[i])); }
- return nw
- }
-
- // Used for un/re-doing changes from the history. Combines the
- // result of computing the existing spans with the set of spans that
- // existed in the history (so that deleting around a span and then
- // undoing brings back the span).
- function mergeOldSpans(doc, change) {
- var old = getOldSpans(doc, change);
- var stretched = stretchSpansOverChange(doc, change);
- if (!old) { return stretched }
- if (!stretched) { return old }
-
- for (var i = 0; i < old.length; ++i) {
- var oldCur = old[i], stretchCur = stretched[i];
- if (oldCur && stretchCur) {
- spans: for (var j = 0; j < stretchCur.length; ++j) {
- var span = stretchCur[j];
- for (var k = 0; k < oldCur.length; ++k)
- { if (oldCur[k].marker == span.marker) { continue spans } }
- oldCur.push(span);
- }
- } else if (stretchCur) {
- old[i] = stretchCur;
- }
- }
- return old
- }
-
- // Used both to provide a JSON-safe object in .getHistory, and, when
- // detaching a document, to split the history in two
- function copyHistoryArray(events, newGroup, instantiateSel) {
- var copy = [];
- for (var i = 0; i < events.length; ++i) {
- var event = events[i];
- if (event.ranges) {
- copy.push(instantiateSel ? Selection.prototype.deepCopy.call(event) : event);
- continue
- }
- var changes = event.changes, newChanges = [];
- copy.push({changes: newChanges});
- for (var j = 0; j < changes.length; ++j) {
- var change = changes[j], m = (void 0);
- newChanges.push({from: change.from, to: change.to, text: change.text});
- if (newGroup) { for (var prop in change) { if (m = prop.match(/^spans_(\d+)$/)) {
- if (indexOf(newGroup, Number(m[1])) > -1) {
- lst(newChanges)[prop] = change[prop];
- delete change[prop];
- }
- } } }
- }
- }
- return copy
- }
-
- // The 'scroll' parameter given to many of these indicated whether
- // the new cursor position should be scrolled into view after
- // modifying the selection.
-
- // If shift is held or the extend flag is set, extends a range to
- // include a given position (and optionally a second position).
- // Otherwise, simply returns the range between the given positions.
- // Used for cursor motion and such.
- function extendRange(range, head, other, extend) {
- if (extend) {
- var anchor = range.anchor;
- if (other) {
- var posBefore = cmp(head, anchor) < 0;
- if (posBefore != (cmp(other, anchor) < 0)) {
- anchor = head;
- head = other;
- } else if (posBefore != (cmp(head, other) < 0)) {
- head = other;
- }
- }
- return new Range(anchor, head)
- } else {
- return new Range(other || head, head)
- }
- }
-
- // Extend the primary selection range, discard the rest.
- function extendSelection(doc, head, other, options, extend) {
- if (extend == null) { extend = doc.cm && (doc.cm.display.shift || doc.extend); }
- setSelection(doc, new Selection([extendRange(doc.sel.primary(), head, other, extend)], 0), options);
- }
-
- // Extend all selections (pos is an array of selections with length
- // equal the number of selections)
- function extendSelections(doc, heads, options) {
- var out = [];
- var extend = doc.cm && (doc.cm.display.shift || doc.extend);
- for (var i = 0; i < doc.sel.ranges.length; i++)
- { out[i] = extendRange(doc.sel.ranges[i], heads[i], null, extend); }
- var newSel = normalizeSelection(doc.cm, out, doc.sel.primIndex);
- setSelection(doc, newSel, options);
- }
-
- // Updates a single range in the selection.
- function replaceOneSelection(doc, i, range, options) {
- var ranges = doc.sel.ranges.slice(0);
- ranges[i] = range;
- setSelection(doc, normalizeSelection(doc.cm, ranges, doc.sel.primIndex), options);
- }
-
- // Reset the selection to a single range.
- function setSimpleSelection(doc, anchor, head, options) {
- setSelection(doc, simpleSelection(anchor, head), options);
- }
-
- // Give beforeSelectionChange handlers a change to influence a
- // selection update.
- function filterSelectionChange(doc, sel, options) {
- var obj = {
- ranges: sel.ranges,
- update: function(ranges) {
- this.ranges = [];
- for (var i = 0; i < ranges.length; i++)
- { this.ranges[i] = new Range(clipPos(doc, ranges[i].anchor),
- clipPos(doc, ranges[i].head)); }
- },
- origin: options && options.origin
- };
- signal(doc, "beforeSelectionChange", doc, obj);
- if (doc.cm) { signal(doc.cm, "beforeSelectionChange", doc.cm, obj); }
- if (obj.ranges != sel.ranges) { return normalizeSelection(doc.cm, obj.ranges, obj.ranges.length - 1) }
- else { return sel }
- }
-
- function setSelectionReplaceHistory(doc, sel, options) {
- var done = doc.history.done, last = lst(done);
- if (last && last.ranges) {
- done[done.length - 1] = sel;
- setSelectionNoUndo(doc, sel, options);
- } else {
- setSelection(doc, sel, options);
- }
- }
-
- // Set a new selection.
- function setSelection(doc, sel, options) {
- setSelectionNoUndo(doc, sel, options);
- addSelectionToHistory(doc, doc.sel, doc.cm ? doc.cm.curOp.id : NaN, options);
- }
-
- function setSelectionNoUndo(doc, sel, options) {
- if (hasHandler(doc, "beforeSelectionChange") || doc.cm && hasHandler(doc.cm, "beforeSelectionChange"))
- { sel = filterSelectionChange(doc, sel, options); }
-
- var bias = options && options.bias ||
- (cmp(sel.primary().head, doc.sel.primary().head) < 0 ? -1 : 1);
- setSelectionInner(doc, skipAtomicInSelection(doc, sel, bias, true));
-
- if (!(options && options.scroll === false) && doc.cm)
- { ensureCursorVisible(doc.cm); }
- }
-
- function setSelectionInner(doc, sel) {
- if (sel.equals(doc.sel)) { return }
-
- doc.sel = sel;
-
- if (doc.cm) {
- doc.cm.curOp.updateInput = 1;
- doc.cm.curOp.selectionChanged = true;
- signalCursorActivity(doc.cm);
- }
- signalLater(doc, "cursorActivity", doc);
- }
-
- // Verify that the selection does not partially select any atomic
- // marked ranges.
- function reCheckSelection(doc) {
- setSelectionInner(doc, skipAtomicInSelection(doc, doc.sel, null, false));
- }
-
- // Return a selection that does not partially select any atomic
- // ranges.
- function skipAtomicInSelection(doc, sel, bias, mayClear) {
- var out;
- for (var i = 0; i < sel.ranges.length; i++) {
- var range = sel.ranges[i];
- var old = sel.ranges.length == doc.sel.ranges.length && doc.sel.ranges[i];
- var newAnchor = skipAtomic(doc, range.anchor, old && old.anchor, bias, mayClear);
- var newHead = skipAtomic(doc, range.head, old && old.head, bias, mayClear);
- if (out || newAnchor != range.anchor || newHead != range.head) {
- if (!out) { out = sel.ranges.slice(0, i); }
- out[i] = new Range(newAnchor, newHead);
- }
- }
- return out ? normalizeSelection(doc.cm, out, sel.primIndex) : sel
- }
-
- function skipAtomicInner(doc, pos, oldPos, dir, mayClear) {
- var line = getLine(doc, pos.line);
- if (line.markedSpans) { for (var i = 0; i < line.markedSpans.length; ++i) {
- var sp = line.markedSpans[i], m = sp.marker;
-
- // Determine if we should prevent the cursor being placed to the left/right of an atomic marker
- // Historically this was determined using the inclusiveLeft/Right option, but the new way to control it
- // is with selectLeft/Right
- var preventCursorLeft = ("selectLeft" in m) ? !m.selectLeft : m.inclusiveLeft;
- var preventCursorRight = ("selectRight" in m) ? !m.selectRight : m.inclusiveRight;
-
- if ((sp.from == null || (preventCursorLeft ? sp.from <= pos.ch : sp.from < pos.ch)) &&
- (sp.to == null || (preventCursorRight ? sp.to >= pos.ch : sp.to > pos.ch))) {
- if (mayClear) {
- signal(m, "beforeCursorEnter");
- if (m.explicitlyCleared) {
- if (!line.markedSpans) { break }
- else {--i; continue}
- }
- }
- if (!m.atomic) { continue }
-
- if (oldPos) {
- var near = m.find(dir < 0 ? 1 : -1), diff = (void 0);
- if (dir < 0 ? preventCursorRight : preventCursorLeft)
- { near = movePos(doc, near, -dir, near && near.line == pos.line ? line : null); }
- if (near && near.line == pos.line && (diff = cmp(near, oldPos)) && (dir < 0 ? diff < 0 : diff > 0))
- { return skipAtomicInner(doc, near, pos, dir, mayClear) }
- }
-
- var far = m.find(dir < 0 ? -1 : 1);
- if (dir < 0 ? preventCursorLeft : preventCursorRight)
- { far = movePos(doc, far, dir, far.line == pos.line ? line : null); }
- return far ? skipAtomicInner(doc, far, pos, dir, mayClear) : null
- }
- } }
- return pos
- }
-
- // Ensure a given position is not inside an atomic range.
- function skipAtomic(doc, pos, oldPos, bias, mayClear) {
- var dir = bias || 1;
- var found = skipAtomicInner(doc, pos, oldPos, dir, mayClear) ||
- (!mayClear && skipAtomicInner(doc, pos, oldPos, dir, true)) ||
- skipAtomicInner(doc, pos, oldPos, -dir, mayClear) ||
- (!mayClear && skipAtomicInner(doc, pos, oldPos, -dir, true));
- if (!found) {
- doc.cantEdit = true;
- return Pos(doc.first, 0)
- }
- return found
- }
-
- function movePos(doc, pos, dir, line) {
- if (dir < 0 && pos.ch == 0) {
- if (pos.line > doc.first) { return clipPos(doc, Pos(pos.line - 1)) }
- else { return null }
- } else if (dir > 0 && pos.ch == (line || getLine(doc, pos.line)).text.length) {
- if (pos.line < doc.first + doc.size - 1) { return Pos(pos.line + 1, 0) }
- else { return null }
- } else {
- return new Pos(pos.line, pos.ch + dir)
- }
- }
-
- function selectAll(cm) {
- cm.setSelection(Pos(cm.firstLine(), 0), Pos(cm.lastLine()), sel_dontScroll);
- }
-
- // UPDATING
-
- // Allow "beforeChange" event handlers to influence a change
- function filterChange(doc, change, update) {
- var obj = {
- canceled: false,
- from: change.from,
- to: change.to,
- text: change.text,
- origin: change.origin,
- cancel: function () { return obj.canceled = true; }
- };
- if (update) { obj.update = function (from, to, text, origin) {
- if (from) { obj.from = clipPos(doc, from); }
- if (to) { obj.to = clipPos(doc, to); }
- if (text) { obj.text = text; }
- if (origin !== undefined) { obj.origin = origin; }
- }; }
- signal(doc, "beforeChange", doc, obj);
- if (doc.cm) { signal(doc.cm, "beforeChange", doc.cm, obj); }
-
- if (obj.canceled) {
- if (doc.cm) { doc.cm.curOp.updateInput = 2; }
- return null
- }
- return {from: obj.from, to: obj.to, text: obj.text, origin: obj.origin}
- }
-
- // Apply a change to a document, and add it to the document's
- // history, and propagating it to all linked documents.
- function makeChange(doc, change, ignoreReadOnly) {
- if (doc.cm) {
- if (!doc.cm.curOp) { return operation(doc.cm, makeChange)(doc, change, ignoreReadOnly) }
- if (doc.cm.state.suppressEdits) { return }
- }
-
- if (hasHandler(doc, "beforeChange") || doc.cm && hasHandler(doc.cm, "beforeChange")) {
- change = filterChange(doc, change, true);
- if (!change) { return }
- }
-
- // Possibly split or suppress the update based on the presence
- // of read-only spans in its range.
- var split = sawReadOnlySpans && !ignoreReadOnly && removeReadOnlyRanges(doc, change.from, change.to);
- if (split) {
- for (var i = split.length - 1; i >= 0; --i)
- { makeChangeInner(doc, {from: split[i].from, to: split[i].to, text: i ? [""] : change.text, origin: change.origin}); }
- } else {
- makeChangeInner(doc, change);
- }
- }
-
- function makeChangeInner(doc, change) {
- if (change.text.length == 1 && change.text[0] == "" && cmp(change.from, change.to) == 0) { return }
- var selAfter = computeSelAfterChange(doc, change);
- addChangeToHistory(doc, change, selAfter, doc.cm ? doc.cm.curOp.id : NaN);
-
- makeChangeSingleDoc(doc, change, selAfter, stretchSpansOverChange(doc, change));
- var rebased = [];
-
- linkedDocs(doc, function (doc, sharedHist) {
- if (!sharedHist && indexOf(rebased, doc.history) == -1) {
- rebaseHist(doc.history, change);
- rebased.push(doc.history);
- }
- makeChangeSingleDoc(doc, change, null, stretchSpansOverChange(doc, change));
- });
- }
-
- // Revert a change stored in a document's history.
- function makeChangeFromHistory(doc, type, allowSelectionOnly) {
- var suppress = doc.cm && doc.cm.state.suppressEdits;
- if (suppress && !allowSelectionOnly) { return }
-
- var hist = doc.history, event, selAfter = doc.sel;
- var source = type == "undo" ? hist.done : hist.undone, dest = type == "undo" ? hist.undone : hist.done;
-
- // Verify that there is a useable event (so that ctrl-z won't
- // needlessly clear selection events)
- var i = 0;
- for (; i < source.length; i++) {
- event = source[i];
- if (allowSelectionOnly ? event.ranges && !event.equals(doc.sel) : !event.ranges)
- { break }
- }
- if (i == source.length) { return }
- hist.lastOrigin = hist.lastSelOrigin = null;
-
- for (;;) {
- event = source.pop();
- if (event.ranges) {
- pushSelectionToHistory(event, dest);
- if (allowSelectionOnly && !event.equals(doc.sel)) {
- setSelection(doc, event, {clearRedo: false});
- return
- }
- selAfter = event;
- } else if (suppress) {
- source.push(event);
- return
- } else { break }
- }
-
- // Build up a reverse change object to add to the opposite history
- // stack (redo when undoing, and vice versa).
- var antiChanges = [];
- pushSelectionToHistory(selAfter, dest);
- dest.push({changes: antiChanges, generation: hist.generation});
- hist.generation = event.generation || ++hist.maxGeneration;
-
- var filter = hasHandler(doc, "beforeChange") || doc.cm && hasHandler(doc.cm, "beforeChange");
-
- var loop = function ( i ) {
- var change = event.changes[i];
- change.origin = type;
- if (filter && !filterChange(doc, change, false)) {
- source.length = 0;
- return {}
- }
-
- antiChanges.push(historyChangeFromChange(doc, change));
-
- var after = i ? computeSelAfterChange(doc, change) : lst(source);
- makeChangeSingleDoc(doc, change, after, mergeOldSpans(doc, change));
- if (!i && doc.cm) { doc.cm.scrollIntoView({from: change.from, to: changeEnd(change)}); }
- var rebased = [];
-
- // Propagate to the linked documents
- linkedDocs(doc, function (doc, sharedHist) {
- if (!sharedHist && indexOf(rebased, doc.history) == -1) {
- rebaseHist(doc.history, change);
- rebased.push(doc.history);
- }
- makeChangeSingleDoc(doc, change, null, mergeOldSpans(doc, change));
- });
- };
-
- for (var i$1 = event.changes.length - 1; i$1 >= 0; --i$1) {
- var returned = loop( i$1 );
-
- if ( returned ) return returned.v;
- }
- }
-
- // Sub-views need their line numbers shifted when text is added
- // above or below them in the parent document.
- function shiftDoc(doc, distance) {
- if (distance == 0) { return }
- doc.first += distance;
- doc.sel = new Selection(map(doc.sel.ranges, function (range) { return new Range(
- Pos(range.anchor.line + distance, range.anchor.ch),
- Pos(range.head.line + distance, range.head.ch)
- ); }), doc.sel.primIndex);
- if (doc.cm) {
- regChange(doc.cm, doc.first, doc.first - distance, distance);
- for (var d = doc.cm.display, l = d.viewFrom; l < d.viewTo; l++)
- { regLineChange(doc.cm, l, "gutter"); }
- }
- }
-
- // More lower-level change function, handling only a single document
- // (not linked ones).
- function makeChangeSingleDoc(doc, change, selAfter, spans) {
- if (doc.cm && !doc.cm.curOp)
- { return operation(doc.cm, makeChangeSingleDoc)(doc, change, selAfter, spans) }
-
- if (change.to.line < doc.first) {
- shiftDoc(doc, change.text.length - 1 - (change.to.line - change.from.line));
- return
- }
- if (change.from.line > doc.lastLine()) { return }
-
- // Clip the change to the size of this doc
- if (change.from.line < doc.first) {
- var shift = change.text.length - 1 - (doc.first - change.from.line);
- shiftDoc(doc, shift);
- change = {from: Pos(doc.first, 0), to: Pos(change.to.line + shift, change.to.ch),
- text: [lst(change.text)], origin: change.origin};
- }
- var last = doc.lastLine();
- if (change.to.line > last) {
- change = {from: change.from, to: Pos(last, getLine(doc, last).text.length),
- text: [change.text[0]], origin: change.origin};
- }
-
- change.removed = getBetween(doc, change.from, change.to);
-
- if (!selAfter) { selAfter = computeSelAfterChange(doc, change); }
- if (doc.cm) { makeChangeSingleDocInEditor(doc.cm, change, spans); }
- else { updateDoc(doc, change, spans); }
- setSelectionNoUndo(doc, selAfter, sel_dontScroll);
-
- if (doc.cantEdit && skipAtomic(doc, Pos(doc.firstLine(), 0)))
- { doc.cantEdit = false; }
- }
-
- // Handle the interaction of a change to a document with the editor
- // that this document is part of.
- function makeChangeSingleDocInEditor(cm, change, spans) {
- var doc = cm.doc, display = cm.display, from = change.from, to = change.to;
-
- var recomputeMaxLength = false, checkWidthStart = from.line;
- if (!cm.options.lineWrapping) {
- checkWidthStart = lineNo(visualLine(getLine(doc, from.line)));
- doc.iter(checkWidthStart, to.line + 1, function (line) {
- if (line == display.maxLine) {
- recomputeMaxLength = true;
- return true
- }
- });
- }
-
- if (doc.sel.contains(change.from, change.to) > -1)
- { signalCursorActivity(cm); }
-
- updateDoc(doc, change, spans, estimateHeight(cm));
-
- if (!cm.options.lineWrapping) {
- doc.iter(checkWidthStart, from.line + change.text.length, function (line) {
- var len = lineLength(line);
- if (len > display.maxLineLength) {
- display.maxLine = line;
- display.maxLineLength = len;
- display.maxLineChanged = true;
- recomputeMaxLength = false;
- }
- });
- if (recomputeMaxLength) { cm.curOp.updateMaxLine = true; }
- }
-
- retreatFrontier(doc, from.line);
- startWorker(cm, 400);
-
- var lendiff = change.text.length - (to.line - from.line) - 1;
- // Remember that these lines changed, for updating the display
- if (change.full)
- { regChange(cm); }
- else if (from.line == to.line && change.text.length == 1 && !isWholeLineUpdate(cm.doc, change))
- { regLineChange(cm, from.line, "text"); }
- else
- { regChange(cm, from.line, to.line + 1, lendiff); }
-
- var changesHandler = hasHandler(cm, "changes"), changeHandler = hasHandler(cm, "change");
- if (changeHandler || changesHandler) {
- var obj = {
- from: from, to: to,
- text: change.text,
- removed: change.removed,
- origin: change.origin
- };
- if (changeHandler) { signalLater(cm, "change", cm, obj); }
- if (changesHandler) { (cm.curOp.changeObjs || (cm.curOp.changeObjs = [])).push(obj); }
- }
- cm.display.selForContextMenu = null;
- }
-
- function replaceRange(doc, code, from, to, origin) {
- var assign;
-
- if (!to) { to = from; }
- if (cmp(to, from) < 0) { (assign = [to, from], from = assign[0], to = assign[1]); }
- if (typeof code == "string") { code = doc.splitLines(code); }
- makeChange(doc, {from: from, to: to, text: code, origin: origin});
- }
-
- // Rebasing/resetting history to deal with externally-sourced changes
-
- function rebaseHistSelSingle(pos, from, to, diff) {
- if (to < pos.line) {
- pos.line += diff;
- } else if (from < pos.line) {
- pos.line = from;
- pos.ch = 0;
- }
- }
-
- // Tries to rebase an array of history events given a change in the
- // document. If the change touches the same lines as the event, the
- // event, and everything 'behind' it, is discarded. If the change is
- // before the event, the event's positions are updated. Uses a
- // copy-on-write scheme for the positions, to avoid having to
- // reallocate them all on every rebase, but also avoid problems with
- // shared position objects being unsafely updated.
- function rebaseHistArray(array, from, to, diff) {
- for (var i = 0; i < array.length; ++i) {
- var sub = array[i], ok = true;
- if (sub.ranges) {
- if (!sub.copied) { sub = array[i] = sub.deepCopy(); sub.copied = true; }
- for (var j = 0; j < sub.ranges.length; j++) {
- rebaseHistSelSingle(sub.ranges[j].anchor, from, to, diff);
- rebaseHistSelSingle(sub.ranges[j].head, from, to, diff);
- }
- continue
- }
- for (var j$1 = 0; j$1 < sub.changes.length; ++j$1) {
- var cur = sub.changes[j$1];
- if (to < cur.from.line) {
- cur.from = Pos(cur.from.line + diff, cur.from.ch);
- cur.to = Pos(cur.to.line + diff, cur.to.ch);
- } else if (from <= cur.to.line) {
- ok = false;
- break
- }
- }
- if (!ok) {
- array.splice(0, i + 1);
- i = 0;
- }
- }
- }
-
- function rebaseHist(hist, change) {
- var from = change.from.line, to = change.to.line, diff = change.text.length - (to - from) - 1;
- rebaseHistArray(hist.done, from, to, diff);
- rebaseHistArray(hist.undone, from, to, diff);
- }
-
- // Utility for applying a change to a line by handle or number,
- // returning the number and optionally registering the line as
- // changed.
- function changeLine(doc, handle, changeType, op) {
- var no = handle, line = handle;
- if (typeof handle == "number") { line = getLine(doc, clipLine(doc, handle)); }
- else { no = lineNo(handle); }
- if (no == null) { return null }
- if (op(line, no) && doc.cm) { regLineChange(doc.cm, no, changeType); }
- return line
- }
-
- // The document is represented as a BTree consisting of leaves, with
- // chunk of lines in them, and branches, with up to ten leaves or
- // other branch nodes below them. The top node is always a branch
- // node, and is the document object itself (meaning it has
- // additional methods and properties).
- //
- // All nodes have parent links. The tree is used both to go from
- // line numbers to line objects, and to go from objects to numbers.
- // It also indexes by height, and is used to convert between height
- // and line object, and to find the total height of the document.
- //
- // See also http://marijnhaverbeke.nl/blog/codemirror-line-tree.html
-
- function LeafChunk(lines) {
- this.lines = lines;
- this.parent = null;
- var height = 0;
- for (var i = 0; i < lines.length; ++i) {
- lines[i].parent = this;
- height += lines[i].height;
- }
- this.height = height;
- }
-
- LeafChunk.prototype = {
- chunkSize: function() { return this.lines.length },
-
- // Remove the n lines at offset 'at'.
- removeInner: function(at, n) {
- for (var i = at, e = at + n; i < e; ++i) {
- var line = this.lines[i];
- this.height -= line.height;
- cleanUpLine(line);
- signalLater(line, "delete");
- }
- this.lines.splice(at, n);
- },
-
- // Helper used to collapse a small branch into a single leaf.
- collapse: function(lines) {
- lines.push.apply(lines, this.lines);
- },
-
- // Insert the given array of lines at offset 'at', count them as
- // having the given height.
- insertInner: function(at, lines, height) {
- this.height += height;
- this.lines = this.lines.slice(0, at).concat(lines).concat(this.lines.slice(at));
- for (var i = 0; i < lines.length; ++i) { lines[i].parent = this; }
- },
-
- // Used to iterate over a part of the tree.
- iterN: function(at, n, op) {
- for (var e = at + n; at < e; ++at)
- { if (op(this.lines[at])) { return true } }
- }
- };
-
- function BranchChunk(children) {
- this.children = children;
- var size = 0, height = 0;
- for (var i = 0; i < children.length; ++i) {
- var ch = children[i];
- size += ch.chunkSize(); height += ch.height;
- ch.parent = this;
- }
- this.size = size;
- this.height = height;
- this.parent = null;
- }
-
- BranchChunk.prototype = {
- chunkSize: function() { return this.size },
-
- removeInner: function(at, n) {
- this.size -= n;
- for (var i = 0; i < this.children.length; ++i) {
- var child = this.children[i], sz = child.chunkSize();
- if (at < sz) {
- var rm = Math.min(n, sz - at), oldHeight = child.height;
- child.removeInner(at, rm);
- this.height -= oldHeight - child.height;
- if (sz == rm) { this.children.splice(i--, 1); child.parent = null; }
- if ((n -= rm) == 0) { break }
- at = 0;
- } else { at -= sz; }
- }
- // If the result is smaller than 25 lines, ensure that it is a
- // single leaf node.
- if (this.size - n < 25 &&
- (this.children.length > 1 || !(this.children[0] instanceof LeafChunk))) {
- var lines = [];
- this.collapse(lines);
- this.children = [new LeafChunk(lines)];
- this.children[0].parent = this;
- }
- },
-
- collapse: function(lines) {
- for (var i = 0; i < this.children.length; ++i) { this.children[i].collapse(lines); }
- },
-
- insertInner: function(at, lines, height) {
- this.size += lines.length;
- this.height += height;
- for (var i = 0; i < this.children.length; ++i) {
- var child = this.children[i], sz = child.chunkSize();
- if (at <= sz) {
- child.insertInner(at, lines, height);
- if (child.lines && child.lines.length > 50) {
- // To avoid memory thrashing when child.lines is huge (e.g. first view of a large file), it's never spliced.
- // Instead, small slices are taken. They're taken in order because sequential memory accesses are fastest.
- var remaining = child.lines.length % 25 + 25;
- for (var pos = remaining; pos < child.lines.length;) {
- var leaf = new LeafChunk(child.lines.slice(pos, pos += 25));
- child.height -= leaf.height;
- this.children.splice(++i, 0, leaf);
- leaf.parent = this;
- }
- child.lines = child.lines.slice(0, remaining);
- this.maybeSpill();
- }
- break
- }
- at -= sz;
- }
- },
-
- // When a node has grown, check whether it should be split.
- maybeSpill: function() {
- if (this.children.length <= 10) { return }
- var me = this;
- do {
- var spilled = me.children.splice(me.children.length - 5, 5);
- var sibling = new BranchChunk(spilled);
- if (!me.parent) { // Become the parent node
- var copy = new BranchChunk(me.children);
- copy.parent = me;
- me.children = [copy, sibling];
- me = copy;
- } else {
- me.size -= sibling.size;
- me.height -= sibling.height;
- var myIndex = indexOf(me.parent.children, me);
- me.parent.children.splice(myIndex + 1, 0, sibling);
- }
- sibling.parent = me.parent;
- } while (me.children.length > 10)
- me.parent.maybeSpill();
- },
-
- iterN: function(at, n, op) {
- for (var i = 0; i < this.children.length; ++i) {
- var child = this.children[i], sz = child.chunkSize();
- if (at < sz) {
- var used = Math.min(n, sz - at);
- if (child.iterN(at, used, op)) { return true }
- if ((n -= used) == 0) { break }
- at = 0;
- } else { at -= sz; }
- }
- }
- };
-
- // Line widgets are block elements displayed above or below a line.
-
- var LineWidget = function(doc, node, options) {
- if (options) { for (var opt in options) { if (options.hasOwnProperty(opt))
- { this[opt] = options[opt]; } } }
- this.doc = doc;
- this.node = node;
- };
-
- LineWidget.prototype.clear = function () {
- var cm = this.doc.cm, ws = this.line.widgets, line = this.line, no = lineNo(line);
- if (no == null || !ws) { return }
- for (var i = 0; i < ws.length; ++i) { if (ws[i] == this) { ws.splice(i--, 1); } }
- if (!ws.length) { line.widgets = null; }
- var height = widgetHeight(this);
- updateLineHeight(line, Math.max(0, line.height - height));
- if (cm) {
- runInOp(cm, function () {
- adjustScrollWhenAboveVisible(cm, line, -height);
- regLineChange(cm, no, "widget");
- });
- signalLater(cm, "lineWidgetCleared", cm, this, no);
- }
- };
-
- LineWidget.prototype.changed = function () {
- var this$1 = this;
-
- var oldH = this.height, cm = this.doc.cm, line = this.line;
- this.height = null;
- var diff = widgetHeight(this) - oldH;
- if (!diff) { return }
- if (!lineIsHidden(this.doc, line)) { updateLineHeight(line, line.height + diff); }
- if (cm) {
- runInOp(cm, function () {
- cm.curOp.forceUpdate = true;
- adjustScrollWhenAboveVisible(cm, line, diff);
- signalLater(cm, "lineWidgetChanged", cm, this$1, lineNo(line));
- });
- }
- };
- eventMixin(LineWidget);
-
- function adjustScrollWhenAboveVisible(cm, line, diff) {
- if (heightAtLine(line) < ((cm.curOp && cm.curOp.scrollTop) || cm.doc.scrollTop))
- { addToScrollTop(cm, diff); }
- }
-
- function addLineWidget(doc, handle, node, options) {
- var widget = new LineWidget(doc, node, options);
- var cm = doc.cm;
- if (cm && widget.noHScroll) { cm.display.alignWidgets = true; }
- changeLine(doc, handle, "widget", function (line) {
- var widgets = line.widgets || (line.widgets = []);
- if (widget.insertAt == null) { widgets.push(widget); }
- else { widgets.splice(Math.min(widgets.length - 1, Math.max(0, widget.insertAt)), 0, widget); }
- widget.line = line;
- if (cm && !lineIsHidden(doc, line)) {
- var aboveVisible = heightAtLine(line) < doc.scrollTop;
- updateLineHeight(line, line.height + widgetHeight(widget));
- if (aboveVisible) { addToScrollTop(cm, widget.height); }
- cm.curOp.forceUpdate = true;
- }
- return true
- });
- if (cm) { signalLater(cm, "lineWidgetAdded", cm, widget, typeof handle == "number" ? handle : lineNo(handle)); }
- return widget
- }
-
- // TEXTMARKERS
-
- // Created with markText and setBookmark methods. A TextMarker is a
- // handle that can be used to clear or find a marked position in the
- // document. Line objects hold arrays (markedSpans) containing
- // {from, to, marker} object pointing to such marker objects, and
- // indicating that such a marker is present on that line. Multiple
- // lines may point to the same marker when it spans across lines.
- // The spans will have null for their from/to properties when the
- // marker continues beyond the start/end of the line. Markers have
- // links back to the lines they currently touch.
-
- // Collapsed markers have unique ids, in order to be able to order
- // them, which is needed for uniquely determining an outer marker
- // when they overlap (they may nest, but not partially overlap).
- var nextMarkerId = 0;
-
- var TextMarker = function(doc, type) {
- this.lines = [];
- this.type = type;
- this.doc = doc;
- this.id = ++nextMarkerId;
- };
-
- // Clear the marker.
- TextMarker.prototype.clear = function () {
- if (this.explicitlyCleared) { return }
- var cm = this.doc.cm, withOp = cm && !cm.curOp;
- if (withOp) { startOperation(cm); }
- if (hasHandler(this, "clear")) {
- var found = this.find();
- if (found) { signalLater(this, "clear", found.from, found.to); }
- }
- var min = null, max = null;
- for (var i = 0; i < this.lines.length; ++i) {
- var line = this.lines[i];
- var span = getMarkedSpanFor(line.markedSpans, this);
- if (cm && !this.collapsed) { regLineChange(cm, lineNo(line), "text"); }
- else if (cm) {
- if (span.to != null) { max = lineNo(line); }
- if (span.from != null) { min = lineNo(line); }
- }
- line.markedSpans = removeMarkedSpan(line.markedSpans, span);
- if (span.from == null && this.collapsed && !lineIsHidden(this.doc, line) && cm)
- { updateLineHeight(line, textHeight(cm.display)); }
- }
- if (cm && this.collapsed && !cm.options.lineWrapping) { for (var i$1 = 0; i$1 < this.lines.length; ++i$1) {
- var visual = visualLine(this.lines[i$1]), len = lineLength(visual);
- if (len > cm.display.maxLineLength) {
- cm.display.maxLine = visual;
- cm.display.maxLineLength = len;
- cm.display.maxLineChanged = true;
- }
- } }
-
- if (min != null && cm && this.collapsed) { regChange(cm, min, max + 1); }
- this.lines.length = 0;
- this.explicitlyCleared = true;
- if (this.atomic && this.doc.cantEdit) {
- this.doc.cantEdit = false;
- if (cm) { reCheckSelection(cm.doc); }
- }
- if (cm) { signalLater(cm, "markerCleared", cm, this, min, max); }
- if (withOp) { endOperation(cm); }
- if (this.parent) { this.parent.clear(); }
- };
-
- // Find the position of the marker in the document. Returns a {from,
- // to} object by default. Side can be passed to get a specific side
- // -- 0 (both), -1 (left), or 1 (right). When lineObj is true, the
- // Pos objects returned contain a line object, rather than a line
- // number (used to prevent looking up the same line twice).
- TextMarker.prototype.find = function (side, lineObj) {
- if (side == null && this.type == "bookmark") { side = 1; }
- var from, to;
- for (var i = 0; i < this.lines.length; ++i) {
- var line = this.lines[i];
- var span = getMarkedSpanFor(line.markedSpans, this);
- if (span.from != null) {
- from = Pos(lineObj ? line : lineNo(line), span.from);
- if (side == -1) { return from }
- }
- if (span.to != null) {
- to = Pos(lineObj ? line : lineNo(line), span.to);
- if (side == 1) { return to }
- }
- }
- return from && {from: from, to: to}
- };
-
- // Signals that the marker's widget changed, and surrounding layout
- // should be recomputed.
- TextMarker.prototype.changed = function () {
- var this$1 = this;
-
- var pos = this.find(-1, true), widget = this, cm = this.doc.cm;
- if (!pos || !cm) { return }
- runInOp(cm, function () {
- var line = pos.line, lineN = lineNo(pos.line);
- var view = findViewForLine(cm, lineN);
- if (view) {
- clearLineMeasurementCacheFor(view);
- cm.curOp.selectionChanged = cm.curOp.forceUpdate = true;
- }
- cm.curOp.updateMaxLine = true;
- if (!lineIsHidden(widget.doc, line) && widget.height != null) {
- var oldHeight = widget.height;
- widget.height = null;
- var dHeight = widgetHeight(widget) - oldHeight;
- if (dHeight)
- { updateLineHeight(line, line.height + dHeight); }
- }
- signalLater(cm, "markerChanged", cm, this$1);
- });
- };
-
- TextMarker.prototype.attachLine = function (line) {
- if (!this.lines.length && this.doc.cm) {
- var op = this.doc.cm.curOp;
- if (!op.maybeHiddenMarkers || indexOf(op.maybeHiddenMarkers, this) == -1)
- { (op.maybeUnhiddenMarkers || (op.maybeUnhiddenMarkers = [])).push(this); }
- }
- this.lines.push(line);
- };
-
- TextMarker.prototype.detachLine = function (line) {
- this.lines.splice(indexOf(this.lines, line), 1);
- if (!this.lines.length && this.doc.cm) {
- var op = this.doc.cm.curOp
- ;(op.maybeHiddenMarkers || (op.maybeHiddenMarkers = [])).push(this);
- }
- };
- eventMixin(TextMarker);
-
- // Create a marker, wire it up to the right lines, and
- function markText(doc, from, to, options, type) {
- // Shared markers (across linked documents) are handled separately
- // (markTextShared will call out to this again, once per
- // document).
- if (options && options.shared) { return markTextShared(doc, from, to, options, type) }
- // Ensure we are in an operation.
- if (doc.cm && !doc.cm.curOp) { return operation(doc.cm, markText)(doc, from, to, options, type) }
-
- var marker = new TextMarker(doc, type), diff = cmp(from, to);
- if (options) { copyObj(options, marker, false); }
- // Don't connect empty markers unless clearWhenEmpty is false
- if (diff > 0 || diff == 0 && marker.clearWhenEmpty !== false)
- { return marker }
- if (marker.replacedWith) {
- // Showing up as a widget implies collapsed (widget replaces text)
- marker.collapsed = true;
- marker.widgetNode = eltP("span", [marker.replacedWith], "CodeMirror-widget");
- if (!options.handleMouseEvents) { marker.widgetNode.setAttribute("cm-ignore-events", "true"); }
- if (options.insertLeft) { marker.widgetNode.insertLeft = true; }
- }
- if (marker.collapsed) {
- if (conflictingCollapsedRange(doc, from.line, from, to, marker) ||
- from.line != to.line && conflictingCollapsedRange(doc, to.line, from, to, marker))
- { throw new Error("Inserting collapsed marker partially overlapping an existing one") }
- seeCollapsedSpans();
- }
-
- if (marker.addToHistory)
- { addChangeToHistory(doc, {from: from, to: to, origin: "markText"}, doc.sel, NaN); }
-
- var curLine = from.line, cm = doc.cm, updateMaxLine;
- doc.iter(curLine, to.line + 1, function (line) {
- if (cm && marker.collapsed && !cm.options.lineWrapping && visualLine(line) == cm.display.maxLine)
- { updateMaxLine = true; }
- if (marker.collapsed && curLine != from.line) { updateLineHeight(line, 0); }
- addMarkedSpan(line, new MarkedSpan(marker,
- curLine == from.line ? from.ch : null,
- curLine == to.line ? to.ch : null));
- ++curLine;
- });
- // lineIsHidden depends on the presence of the spans, so needs a second pass
- if (marker.collapsed) { doc.iter(from.line, to.line + 1, function (line) {
- if (lineIsHidden(doc, line)) { updateLineHeight(line, 0); }
- }); }
-
- if (marker.clearOnEnter) { on(marker, "beforeCursorEnter", function () { return marker.clear(); }); }
-
- if (marker.readOnly) {
- seeReadOnlySpans();
- if (doc.history.done.length || doc.history.undone.length)
- { doc.clearHistory(); }
- }
- if (marker.collapsed) {
- marker.id = ++nextMarkerId;
- marker.atomic = true;
- }
- if (cm) {
- // Sync editor state
- if (updateMaxLine) { cm.curOp.updateMaxLine = true; }
- if (marker.collapsed)
- { regChange(cm, from.line, to.line + 1); }
- else if (marker.className || marker.startStyle || marker.endStyle || marker.css ||
- marker.attributes || marker.title)
- { for (var i = from.line; i <= to.line; i++) { regLineChange(cm, i, "text"); } }
- if (marker.atomic) { reCheckSelection(cm.doc); }
- signalLater(cm, "markerAdded", cm, marker);
- }
- return marker
- }
-
- // SHARED TEXTMARKERS
-
- // A shared marker spans multiple linked documents. It is
- // implemented as a meta-marker-object controlling multiple normal
- // markers.
- var SharedTextMarker = function(markers, primary) {
- this.markers = markers;
- this.primary = primary;
- for (var i = 0; i < markers.length; ++i)
- { markers[i].parent = this; }
- };
-
- SharedTextMarker.prototype.clear = function () {
- if (this.explicitlyCleared) { return }
- this.explicitlyCleared = true;
- for (var i = 0; i < this.markers.length; ++i)
- { this.markers[i].clear(); }
- signalLater(this, "clear");
- };
-
- SharedTextMarker.prototype.find = function (side, lineObj) {
- return this.primary.find(side, lineObj)
- };
- eventMixin(SharedTextMarker);
-
- function markTextShared(doc, from, to, options, type) {
- options = copyObj(options);
- options.shared = false;
- var markers = [markText(doc, from, to, options, type)], primary = markers[0];
- var widget = options.widgetNode;
- linkedDocs(doc, function (doc) {
- if (widget) { options.widgetNode = widget.cloneNode(true); }
- markers.push(markText(doc, clipPos(doc, from), clipPos(doc, to), options, type));
- for (var i = 0; i < doc.linked.length; ++i)
- { if (doc.linked[i].isParent) { return } }
- primary = lst(markers);
- });
- return new SharedTextMarker(markers, primary)
- }
-
- function findSharedMarkers(doc) {
- return doc.findMarks(Pos(doc.first, 0), doc.clipPos(Pos(doc.lastLine())), function (m) { return m.parent; })
- }
-
- function copySharedMarkers(doc, markers) {
- for (var i = 0; i < markers.length; i++) {
- var marker = markers[i], pos = marker.find();
- var mFrom = doc.clipPos(pos.from), mTo = doc.clipPos(pos.to);
- if (cmp(mFrom, mTo)) {
- var subMark = markText(doc, mFrom, mTo, marker.primary, marker.primary.type);
- marker.markers.push(subMark);
- subMark.parent = marker;
- }
- }
- }
-
- function detachSharedMarkers(markers) {
- var loop = function ( i ) {
- var marker = markers[i], linked = [marker.primary.doc];
- linkedDocs(marker.primary.doc, function (d) { return linked.push(d); });
- for (var j = 0; j < marker.markers.length; j++) {
- var subMarker = marker.markers[j];
- if (indexOf(linked, subMarker.doc) == -1) {
- subMarker.parent = null;
- marker.markers.splice(j--, 1);
- }
- }
- };
-
- for (var i = 0; i < markers.length; i++) loop( i );
- }
-
- var nextDocId = 0;
- var Doc = function(text, mode, firstLine, lineSep, direction) {
- if (!(this instanceof Doc)) { return new Doc(text, mode, firstLine, lineSep, direction) }
- if (firstLine == null) { firstLine = 0; }
-
- BranchChunk.call(this, [new LeafChunk([new Line("", null)])]);
- this.first = firstLine;
- this.scrollTop = this.scrollLeft = 0;
- this.cantEdit = false;
- this.cleanGeneration = 1;
- this.modeFrontier = this.highlightFrontier = firstLine;
- var start = Pos(firstLine, 0);
- this.sel = simpleSelection(start);
- this.history = new History(null);
- this.id = ++nextDocId;
- this.modeOption = mode;
- this.lineSep = lineSep;
- this.direction = (direction == "rtl") ? "rtl" : "ltr";
- this.extend = false;
-
- if (typeof text == "string") { text = this.splitLines(text); }
- updateDoc(this, {from: start, to: start, text: text});
- setSelection(this, simpleSelection(start), sel_dontScroll);
- };
-
- Doc.prototype = createObj(BranchChunk.prototype, {
- constructor: Doc,
- // Iterate over the document. Supports two forms -- with only one
- // argument, it calls that for each line in the document. With
- // three, it iterates over the range given by the first two (with
- // the second being non-inclusive).
- iter: function(from, to, op) {
- if (op) { this.iterN(from - this.first, to - from, op); }
- else { this.iterN(this.first, this.first + this.size, from); }
- },
-
- // Non-public interface for adding and removing lines.
- insert: function(at, lines) {
- var height = 0;
- for (var i = 0; i < lines.length; ++i) { height += lines[i].height; }
- this.insertInner(at - this.first, lines, height);
- },
- remove: function(at, n) { this.removeInner(at - this.first, n); },
-
- // From here, the methods are part of the public interface. Most
- // are also available from CodeMirror (editor) instances.
-
- getValue: function(lineSep) {
- var lines = getLines(this, this.first, this.first + this.size);
- if (lineSep === false) { return lines }
- return lines.join(lineSep || this.lineSeparator())
- },
- setValue: docMethodOp(function(code) {
- var top = Pos(this.first, 0), last = this.first + this.size - 1;
- makeChange(this, {from: top, to: Pos(last, getLine(this, last).text.length),
- text: this.splitLines(code), origin: "setValue", full: true}, true);
- if (this.cm) { scrollToCoords(this.cm, 0, 0); }
- setSelection(this, simpleSelection(top), sel_dontScroll);
- }),
- replaceRange: function(code, from, to, origin) {
- from = clipPos(this, from);
- to = to ? clipPos(this, to) : from;
- replaceRange(this, code, from, to, origin);
- },
- getRange: function(from, to, lineSep) {
- var lines = getBetween(this, clipPos(this, from), clipPos(this, to));
- if (lineSep === false) { return lines }
- return lines.join(lineSep || this.lineSeparator())
- },
-
- getLine: function(line) {var l = this.getLineHandle(line); return l && l.text},
-
- getLineHandle: function(line) {if (isLine(this, line)) { return getLine(this, line) }},
- getLineNumber: function(line) {return lineNo(line)},
-
- getLineHandleVisualStart: function(line) {
- if (typeof line == "number") { line = getLine(this, line); }
- return visualLine(line)
- },
-
- lineCount: function() {return this.size},
- firstLine: function() {return this.first},
- lastLine: function() {return this.first + this.size - 1},
-
- clipPos: function(pos) {return clipPos(this, pos)},
-
- getCursor: function(start) {
- var range = this.sel.primary(), pos;
- if (start == null || start == "head") { pos = range.head; }
- else if (start == "anchor") { pos = range.anchor; }
- else if (start == "end" || start == "to" || start === false) { pos = range.to(); }
- else { pos = range.from(); }
- return pos
- },
- listSelections: function() { return this.sel.ranges },
- somethingSelected: function() {return this.sel.somethingSelected()},
-
- setCursor: docMethodOp(function(line, ch, options) {
- setSimpleSelection(this, clipPos(this, typeof line == "number" ? Pos(line, ch || 0) : line), null, options);
- }),
- setSelection: docMethodOp(function(anchor, head, options) {
- setSimpleSelection(this, clipPos(this, anchor), clipPos(this, head || anchor), options);
- }),
- extendSelection: docMethodOp(function(head, other, options) {
- extendSelection(this, clipPos(this, head), other && clipPos(this, other), options);
- }),
- extendSelections: docMethodOp(function(heads, options) {
- extendSelections(this, clipPosArray(this, heads), options);
- }),
- extendSelectionsBy: docMethodOp(function(f, options) {
- var heads = map(this.sel.ranges, f);
- extendSelections(this, clipPosArray(this, heads), options);
- }),
- setSelections: docMethodOp(function(ranges, primary, options) {
- if (!ranges.length) { return }
- var out = [];
- for (var i = 0; i < ranges.length; i++)
- { out[i] = new Range(clipPos(this, ranges[i].anchor),
- clipPos(this, ranges[i].head)); }
- if (primary == null) { primary = Math.min(ranges.length - 1, this.sel.primIndex); }
- setSelection(this, normalizeSelection(this.cm, out, primary), options);
- }),
- addSelection: docMethodOp(function(anchor, head, options) {
- var ranges = this.sel.ranges.slice(0);
- ranges.push(new Range(clipPos(this, anchor), clipPos(this, head || anchor)));
- setSelection(this, normalizeSelection(this.cm, ranges, ranges.length - 1), options);
- }),
-
- getSelection: function(lineSep) {
- var ranges = this.sel.ranges, lines;
- for (var i = 0; i < ranges.length; i++) {
- var sel = getBetween(this, ranges[i].from(), ranges[i].to());
- lines = lines ? lines.concat(sel) : sel;
- }
- if (lineSep === false) { return lines }
- else { return lines.join(lineSep || this.lineSeparator()) }
- },
- getSelections: function(lineSep) {
- var parts = [], ranges = this.sel.ranges;
- for (var i = 0; i < ranges.length; i++) {
- var sel = getBetween(this, ranges[i].from(), ranges[i].to());
- if (lineSep !== false) { sel = sel.join(lineSep || this.lineSeparator()); }
- parts[i] = sel;
- }
- return parts
- },
- replaceSelection: function(code, collapse, origin) {
- var dup = [];
- for (var i = 0; i < this.sel.ranges.length; i++)
- { dup[i] = code; }
- this.replaceSelections(dup, collapse, origin || "+input");
- },
- replaceSelections: docMethodOp(function(code, collapse, origin) {
- var changes = [], sel = this.sel;
- for (var i = 0; i < sel.ranges.length; i++) {
- var range = sel.ranges[i];
- changes[i] = {from: range.from(), to: range.to(), text: this.splitLines(code[i]), origin: origin};
- }
- var newSel = collapse && collapse != "end" && computeReplacedSel(this, changes, collapse);
- for (var i$1 = changes.length - 1; i$1 >= 0; i$1--)
- { makeChange(this, changes[i$1]); }
- if (newSel) { setSelectionReplaceHistory(this, newSel); }
- else if (this.cm) { ensureCursorVisible(this.cm); }
- }),
- undo: docMethodOp(function() {makeChangeFromHistory(this, "undo");}),
- redo: docMethodOp(function() {makeChangeFromHistory(this, "redo");}),
- undoSelection: docMethodOp(function() {makeChangeFromHistory(this, "undo", true);}),
- redoSelection: docMethodOp(function() {makeChangeFromHistory(this, "redo", true);}),
-
- setExtending: function(val) {this.extend = val;},
- getExtending: function() {return this.extend},
-
- historySize: function() {
- var hist = this.history, done = 0, undone = 0;
- for (var i = 0; i < hist.done.length; i++) { if (!hist.done[i].ranges) { ++done; } }
- for (var i$1 = 0; i$1 < hist.undone.length; i$1++) { if (!hist.undone[i$1].ranges) { ++undone; } }
- return {undo: done, redo: undone}
- },
- clearHistory: function() {
- var this$1 = this;
-
- this.history = new History(this.history.maxGeneration);
- linkedDocs(this, function (doc) { return doc.history = this$1.history; }, true);
- },
-
- markClean: function() {
- this.cleanGeneration = this.changeGeneration(true);
- },
- changeGeneration: function(forceSplit) {
- if (forceSplit)
- { this.history.lastOp = this.history.lastSelOp = this.history.lastOrigin = null; }
- return this.history.generation
- },
- isClean: function (gen) {
- return this.history.generation == (gen || this.cleanGeneration)
- },
-
- getHistory: function() {
- return {done: copyHistoryArray(this.history.done),
- undone: copyHistoryArray(this.history.undone)}
- },
- setHistory: function(histData) {
- var hist = this.history = new History(this.history.maxGeneration);
- hist.done = copyHistoryArray(histData.done.slice(0), null, true);
- hist.undone = copyHistoryArray(histData.undone.slice(0), null, true);
- },
-
- setGutterMarker: docMethodOp(function(line, gutterID, value) {
- return changeLine(this, line, "gutter", function (line) {
- var markers = line.gutterMarkers || (line.gutterMarkers = {});
- markers[gutterID] = value;
- if (!value && isEmpty(markers)) { line.gutterMarkers = null; }
- return true
- })
- }),
-
- clearGutter: docMethodOp(function(gutterID) {
- var this$1 = this;
-
- this.iter(function (line) {
- if (line.gutterMarkers && line.gutterMarkers[gutterID]) {
- changeLine(this$1, line, "gutter", function () {
- line.gutterMarkers[gutterID] = null;
- if (isEmpty(line.gutterMarkers)) { line.gutterMarkers = null; }
- return true
- });
- }
- });
- }),
-
- lineInfo: function(line) {
- var n;
- if (typeof line == "number") {
- if (!isLine(this, line)) { return null }
- n = line;
- line = getLine(this, line);
- if (!line) { return null }
- } else {
- n = lineNo(line);
- if (n == null) { return null }
- }
- return {line: n, handle: line, text: line.text, gutterMarkers: line.gutterMarkers,
- textClass: line.textClass, bgClass: line.bgClass, wrapClass: line.wrapClass,
- widgets: line.widgets}
- },
-
- addLineClass: docMethodOp(function(handle, where, cls) {
- return changeLine(this, handle, where == "gutter" ? "gutter" : "class", function (line) {
- var prop = where == "text" ? "textClass"
- : where == "background" ? "bgClass"
- : where == "gutter" ? "gutterClass" : "wrapClass";
- if (!line[prop]) { line[prop] = cls; }
- else if (classTest(cls).test(line[prop])) { return false }
- else { line[prop] += " " + cls; }
- return true
- })
- }),
- removeLineClass: docMethodOp(function(handle, where, cls) {
- return changeLine(this, handle, where == "gutter" ? "gutter" : "class", function (line) {
- var prop = where == "text" ? "textClass"
- : where == "background" ? "bgClass"
- : where == "gutter" ? "gutterClass" : "wrapClass";
- var cur = line[prop];
- if (!cur) { return false }
- else if (cls == null) { line[prop] = null; }
- else {
- var found = cur.match(classTest(cls));
- if (!found) { return false }
- var end = found.index + found[0].length;
- line[prop] = cur.slice(0, found.index) + (!found.index || end == cur.length ? "" : " ") + cur.slice(end) || null;
- }
- return true
- })
- }),
-
- addLineWidget: docMethodOp(function(handle, node, options) {
- return addLineWidget(this, handle, node, options)
- }),
- removeLineWidget: function(widget) { widget.clear(); },
-
- markText: function(from, to, options) {
- return markText(this, clipPos(this, from), clipPos(this, to), options, options && options.type || "range")
- },
- setBookmark: function(pos, options) {
- var realOpts = {replacedWith: options && (options.nodeType == null ? options.widget : options),
- insertLeft: options && options.insertLeft,
- clearWhenEmpty: false, shared: options && options.shared,
- handleMouseEvents: options && options.handleMouseEvents};
- pos = clipPos(this, pos);
- return markText(this, pos, pos, realOpts, "bookmark")
- },
- findMarksAt: function(pos) {
- pos = clipPos(this, pos);
- var markers = [], spans = getLine(this, pos.line).markedSpans;
- if (spans) { for (var i = 0; i < spans.length; ++i) {
- var span = spans[i];
- if ((span.from == null || span.from <= pos.ch) &&
- (span.to == null || span.to >= pos.ch))
- { markers.push(span.marker.parent || span.marker); }
- } }
- return markers
- },
- findMarks: function(from, to, filter) {
- from = clipPos(this, from); to = clipPos(this, to);
- var found = [], lineNo = from.line;
- this.iter(from.line, to.line + 1, function (line) {
- var spans = line.markedSpans;
- if (spans) { for (var i = 0; i < spans.length; i++) {
- var span = spans[i];
- if (!(span.to != null && lineNo == from.line && from.ch >= span.to ||
- span.from == null && lineNo != from.line ||
- span.from != null && lineNo == to.line && span.from >= to.ch) &&
- (!filter || filter(span.marker)))
- { found.push(span.marker.parent || span.marker); }
- } }
- ++lineNo;
- });
- return found
- },
- getAllMarks: function() {
- var markers = [];
- this.iter(function (line) {
- var sps = line.markedSpans;
- if (sps) { for (var i = 0; i < sps.length; ++i)
- { if (sps[i].from != null) { markers.push(sps[i].marker); } } }
- });
- return markers
- },
-
- posFromIndex: function(off) {
- var ch, lineNo = this.first, sepSize = this.lineSeparator().length;
- this.iter(function (line) {
- var sz = line.text.length + sepSize;
- if (sz > off) { ch = off; return true }
- off -= sz;
- ++lineNo;
- });
- return clipPos(this, Pos(lineNo, ch))
- },
- indexFromPos: function (coords) {
- coords = clipPos(this, coords);
- var index = coords.ch;
- if (coords.line < this.first || coords.ch < 0) { return 0 }
- var sepSize = this.lineSeparator().length;
- this.iter(this.first, coords.line, function (line) { // iter aborts when callback returns a truthy value
- index += line.text.length + sepSize;
- });
- return index
- },
-
- copy: function(copyHistory) {
- var doc = new Doc(getLines(this, this.first, this.first + this.size),
- this.modeOption, this.first, this.lineSep, this.direction);
- doc.scrollTop = this.scrollTop; doc.scrollLeft = this.scrollLeft;
- doc.sel = this.sel;
- doc.extend = false;
- if (copyHistory) {
- doc.history.undoDepth = this.history.undoDepth;
- doc.setHistory(this.getHistory());
- }
- return doc
- },
-
- linkedDoc: function(options) {
- if (!options) { options = {}; }
- var from = this.first, to = this.first + this.size;
- if (options.from != null && options.from > from) { from = options.from; }
- if (options.to != null && options.to < to) { to = options.to; }
- var copy = new Doc(getLines(this, from, to), options.mode || this.modeOption, from, this.lineSep, this.direction);
- if (options.sharedHist) { copy.history = this.history
- ; }(this.linked || (this.linked = [])).push({doc: copy, sharedHist: options.sharedHist});
- copy.linked = [{doc: this, isParent: true, sharedHist: options.sharedHist}];
- copySharedMarkers(copy, findSharedMarkers(this));
- return copy
- },
- unlinkDoc: function(other) {
- if (other instanceof CodeMirror) { other = other.doc; }
- if (this.linked) { for (var i = 0; i < this.linked.length; ++i) {
- var link = this.linked[i];
- if (link.doc != other) { continue }
- this.linked.splice(i, 1);
- other.unlinkDoc(this);
- detachSharedMarkers(findSharedMarkers(this));
- break
- } }
- // If the histories were shared, split them again
- if (other.history == this.history) {
- var splitIds = [other.id];
- linkedDocs(other, function (doc) { return splitIds.push(doc.id); }, true);
- other.history = new History(null);
- other.history.done = copyHistoryArray(this.history.done, splitIds);
- other.history.undone = copyHistoryArray(this.history.undone, splitIds);
- }
- },
- iterLinkedDocs: function(f) {linkedDocs(this, f);},
-
- getMode: function() {return this.mode},
- getEditor: function() {return this.cm},
-
- splitLines: function(str) {
- if (this.lineSep) { return str.split(this.lineSep) }
- return splitLinesAuto(str)
- },
- lineSeparator: function() { return this.lineSep || "\n" },
-
- setDirection: docMethodOp(function (dir) {
- if (dir != "rtl") { dir = "ltr"; }
- if (dir == this.direction) { return }
- this.direction = dir;
- this.iter(function (line) { return line.order = null; });
- if (this.cm) { directionChanged(this.cm); }
- })
- });
-
- // Public alias.
- Doc.prototype.eachLine = Doc.prototype.iter;
-
- // Kludge to work around strange IE behavior where it'll sometimes
- // re-fire a series of drag-related events right after the drop (#1551)
- var lastDrop = 0;
-
- function onDrop(e) {
- var cm = this;
- clearDragCursor(cm);
- if (signalDOMEvent(cm, e) || eventInWidget(cm.display, e))
- { return }
- e_preventDefault(e);
- if (ie) { lastDrop = +new Date; }
- var pos = posFromMouse(cm, e, true), files = e.dataTransfer.files;
- if (!pos || cm.isReadOnly()) { return }
- // Might be a file drop, in which case we simply extract the text
- // and insert it.
- if (files && files.length && window.FileReader && window.File) {
- var n = files.length, text = Array(n), read = 0;
- var markAsReadAndPasteIfAllFilesAreRead = function () {
- if (++read == n) {
- operation(cm, function () {
- pos = clipPos(cm.doc, pos);
- var change = {from: pos, to: pos,
- text: cm.doc.splitLines(
- text.filter(function (t) { return t != null; }).join(cm.doc.lineSeparator())),
- origin: "paste"};
- makeChange(cm.doc, change);
- setSelectionReplaceHistory(cm.doc, simpleSelection(clipPos(cm.doc, pos), clipPos(cm.doc, changeEnd(change))));
- })();
- }
- };
- var readTextFromFile = function (file, i) {
- if (cm.options.allowDropFileTypes &&
- indexOf(cm.options.allowDropFileTypes, file.type) == -1) {
- markAsReadAndPasteIfAllFilesAreRead();
- return
- }
- var reader = new FileReader;
- reader.onerror = function () { return markAsReadAndPasteIfAllFilesAreRead(); };
- reader.onload = function () {
- var content = reader.result;
- if (/[\x00-\x08\x0e-\x1f]{2}/.test(content)) {
- markAsReadAndPasteIfAllFilesAreRead();
- return
- }
- text[i] = content;
- markAsReadAndPasteIfAllFilesAreRead();
- };
- reader.readAsText(file);
- };
- for (var i = 0; i < files.length; i++) { readTextFromFile(files[i], i); }
- } else { // Normal drop
- // Don't do a replace if the drop happened inside of the selected text.
- if (cm.state.draggingText && cm.doc.sel.contains(pos) > -1) {
- cm.state.draggingText(e);
- // Ensure the editor is re-focused
- setTimeout(function () { return cm.display.input.focus(); }, 20);
- return
- }
- try {
- var text$1 = e.dataTransfer.getData("Text");
- if (text$1) {
- var selected;
- if (cm.state.draggingText && !cm.state.draggingText.copy)
- { selected = cm.listSelections(); }
- setSelectionNoUndo(cm.doc, simpleSelection(pos, pos));
- if (selected) { for (var i$1 = 0; i$1 < selected.length; ++i$1)
- { replaceRange(cm.doc, "", selected[i$1].anchor, selected[i$1].head, "drag"); } }
- cm.replaceSelection(text$1, "around", "paste");
- cm.display.input.focus();
- }
- }
- catch(e){}
- }
- }
-
- function onDragStart(cm, e) {
- if (ie && (!cm.state.draggingText || +new Date - lastDrop < 100)) { e_stop(e); return }
- if (signalDOMEvent(cm, e) || eventInWidget(cm.display, e)) { return }
-
- e.dataTransfer.setData("Text", cm.getSelection());
- e.dataTransfer.effectAllowed = "copyMove";
-
- // Use dummy image instead of default browsers image.
- // Recent Safari (~6.0.2) have a tendency to segfault when this happens, so we don't do it there.
- if (e.dataTransfer.setDragImage && !safari) {
- var img = elt("img", null, null, "position: fixed; left: 0; top: 0;");
- img.src = "data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==";
- if (presto) {
- img.width = img.height = 1;
- cm.display.wrapper.appendChild(img);
- // Force a relayout, or Opera won't use our image for some obscure reason
- img._top = img.offsetTop;
- }
- e.dataTransfer.setDragImage(img, 0, 0);
- if (presto) { img.parentNode.removeChild(img); }
- }
- }
-
- function onDragOver(cm, e) {
- var pos = posFromMouse(cm, e);
- if (!pos) { return }
- var frag = document.createDocumentFragment();
- drawSelectionCursor(cm, pos, frag);
- if (!cm.display.dragCursor) {
- cm.display.dragCursor = elt("div", null, "CodeMirror-cursors CodeMirror-dragcursors");
- cm.display.lineSpace.insertBefore(cm.display.dragCursor, cm.display.cursorDiv);
- }
- removeChildrenAndAdd(cm.display.dragCursor, frag);
- }
-
- function clearDragCursor(cm) {
- if (cm.display.dragCursor) {
- cm.display.lineSpace.removeChild(cm.display.dragCursor);
- cm.display.dragCursor = null;
- }
- }
-
- // These must be handled carefully, because naively registering a
- // handler for each editor will cause the editors to never be
- // garbage collected.
-
- function forEachCodeMirror(f) {
- if (!document.getElementsByClassName) { return }
- var byClass = document.getElementsByClassName("CodeMirror"), editors = [];
- for (var i = 0; i < byClass.length; i++) {
- var cm = byClass[i].CodeMirror;
- if (cm) { editors.push(cm); }
- }
- if (editors.length) { editors[0].operation(function () {
- for (var i = 0; i < editors.length; i++) { f(editors[i]); }
- }); }
- }
-
- var globalsRegistered = false;
- function ensureGlobalHandlers() {
- if (globalsRegistered) { return }
- registerGlobalHandlers();
- globalsRegistered = true;
- }
- function registerGlobalHandlers() {
- // When the window resizes, we need to refresh active editors.
- var resizeTimer;
- on(window, "resize", function () {
- if (resizeTimer == null) { resizeTimer = setTimeout(function () {
- resizeTimer = null;
- forEachCodeMirror(onResize);
- }, 100); }
- });
- // When the window loses focus, we want to show the editor as blurred
- on(window, "blur", function () { return forEachCodeMirror(onBlur); });
- }
- // Called when the window resizes
- function onResize(cm) {
- var d = cm.display;
- // Might be a text scaling operation, clear size caches.
- d.cachedCharWidth = d.cachedTextHeight = d.cachedPaddingH = null;
- d.scrollbarsClipped = false;
- cm.setSize();
- }
-
- var keyNames = {
- 3: "Pause", 8: "Backspace", 9: "Tab", 13: "Enter", 16: "Shift", 17: "Ctrl", 18: "Alt",
- 19: "Pause", 20: "CapsLock", 27: "Esc", 32: "Space", 33: "PageUp", 34: "PageDown", 35: "End",
- 36: "Home", 37: "Left", 38: "Up", 39: "Right", 40: "Down", 44: "PrintScrn", 45: "Insert",
- 46: "Delete", 59: ";", 61: "=", 91: "Mod", 92: "Mod", 93: "Mod",
- 106: "*", 107: "=", 109: "-", 110: ".", 111: "/", 145: "ScrollLock",
- 173: "-", 186: ";", 187: "=", 188: ",", 189: "-", 190: ".", 191: "/", 192: "`", 219: "[", 220: "\\",
- 221: "]", 222: "'", 63232: "Up", 63233: "Down", 63234: "Left", 63235: "Right", 63272: "Delete",
- 63273: "Home", 63275: "End", 63276: "PageUp", 63277: "PageDown", 63302: "Insert"
- };
-
- // Number keys
- for (var i = 0; i < 10; i++) { keyNames[i + 48] = keyNames[i + 96] = String(i); }
- // Alphabetic keys
- for (var i$1 = 65; i$1 <= 90; i$1++) { keyNames[i$1] = String.fromCharCode(i$1); }
- // Function keys
- for (var i$2 = 1; i$2 <= 12; i$2++) { keyNames[i$2 + 111] = keyNames[i$2 + 63235] = "F" + i$2; }
-
- var keyMap = {};
-
- keyMap.basic = {
- "Left": "goCharLeft", "Right": "goCharRight", "Up": "goLineUp", "Down": "goLineDown",
- "End": "goLineEnd", "Home": "goLineStartSmart", "PageUp": "goPageUp", "PageDown": "goPageDown",
- "Delete": "delCharAfter", "Backspace": "delCharBefore", "Shift-Backspace": "delCharBefore",
- "Tab": "defaultTab", "Shift-Tab": "indentAuto",
- "Enter": "newlineAndIndent", "Insert": "toggleOverwrite",
- "Esc": "singleSelection"
- };
- // Note that the save and find-related commands aren't defined by
- // default. User code or addons can define them. Unknown commands
- // are simply ignored.
- keyMap.pcDefault = {
- "Ctrl-A": "selectAll", "Ctrl-D": "deleteLine", "Ctrl-Z": "undo", "Shift-Ctrl-Z": "redo", "Ctrl-Y": "redo",
- "Ctrl-Home": "goDocStart", "Ctrl-End": "goDocEnd", "Ctrl-Up": "goLineUp", "Ctrl-Down": "goLineDown",
- "Ctrl-Left": "goGroupLeft", "Ctrl-Right": "goGroupRight", "Alt-Left": "goLineStart", "Alt-Right": "goLineEnd",
- "Ctrl-Backspace": "delGroupBefore", "Ctrl-Delete": "delGroupAfter", "Ctrl-S": "save", "Ctrl-F": "find",
- "Ctrl-G": "findNext", "Shift-Ctrl-G": "findPrev", "Shift-Ctrl-F": "replace", "Shift-Ctrl-R": "replaceAll",
- "Ctrl-[": "indentLess", "Ctrl-]": "indentMore",
- "Ctrl-U": "undoSelection", "Shift-Ctrl-U": "redoSelection", "Alt-U": "redoSelection",
- "fallthrough": "basic"
- };
- // Very basic readline/emacs-style bindings, which are standard on Mac.
- keyMap.emacsy = {
- "Ctrl-F": "goCharRight", "Ctrl-B": "goCharLeft", "Ctrl-P": "goLineUp", "Ctrl-N": "goLineDown",
- "Alt-F": "goWordRight", "Alt-B": "goWordLeft", "Ctrl-A": "goLineStart", "Ctrl-E": "goLineEnd",
- "Ctrl-V": "goPageDown", "Shift-Ctrl-V": "goPageUp", "Ctrl-D": "delCharAfter", "Ctrl-H": "delCharBefore",
- "Alt-D": "delWordAfter", "Alt-Backspace": "delWordBefore", "Ctrl-K": "killLine", "Ctrl-T": "transposeChars",
- "Ctrl-O": "openLine"
- };
- keyMap.macDefault = {
- "Cmd-A": "selectAll", "Cmd-D": "deleteLine", "Cmd-Z": "undo", "Shift-Cmd-Z": "redo", "Cmd-Y": "redo",
- "Cmd-Home": "goDocStart", "Cmd-Up": "goDocStart", "Cmd-End": "goDocEnd", "Cmd-Down": "goDocEnd", "Alt-Left": "goGroupLeft",
- "Alt-Right": "goGroupRight", "Cmd-Left": "goLineLeft", "Cmd-Right": "goLineRight", "Alt-Backspace": "delGroupBefore",
- "Ctrl-Alt-Backspace": "delGroupAfter", "Alt-Delete": "delGroupAfter", "Cmd-S": "save", "Cmd-F": "find",
- "Cmd-G": "findNext", "Shift-Cmd-G": "findPrev", "Cmd-Alt-F": "replace", "Shift-Cmd-Alt-F": "replaceAll",
- "Cmd-[": "indentLess", "Cmd-]": "indentMore", "Cmd-Backspace": "delWrappedLineLeft", "Cmd-Delete": "delWrappedLineRight",
- "Cmd-U": "undoSelection", "Shift-Cmd-U": "redoSelection", "Ctrl-Up": "goDocStart", "Ctrl-Down": "goDocEnd",
- "fallthrough": ["basic", "emacsy"]
- };
- keyMap["default"] = mac ? keyMap.macDefault : keyMap.pcDefault;
-
- // KEYMAP DISPATCH
-
- function normalizeKeyName(name) {
- var parts = name.split(/-(?!$)/);
- name = parts[parts.length - 1];
- var alt, ctrl, shift, cmd;
- for (var i = 0; i < parts.length - 1; i++) {
- var mod = parts[i];
- if (/^(cmd|meta|m)$/i.test(mod)) { cmd = true; }
- else if (/^a(lt)?$/i.test(mod)) { alt = true; }
- else if (/^(c|ctrl|control)$/i.test(mod)) { ctrl = true; }
- else if (/^s(hift)?$/i.test(mod)) { shift = true; }
- else { throw new Error("Unrecognized modifier name: " + mod) }
- }
- if (alt) { name = "Alt-" + name; }
- if (ctrl) { name = "Ctrl-" + name; }
- if (cmd) { name = "Cmd-" + name; }
- if (shift) { name = "Shift-" + name; }
- return name
- }
-
- // This is a kludge to keep keymaps mostly working as raw objects
- // (backwards compatibility) while at the same time support features
- // like normalization and multi-stroke key bindings. It compiles a
- // new normalized keymap, and then updates the old object to reflect
- // this.
- function normalizeKeyMap(keymap) {
- var copy = {};
- for (var keyname in keymap) { if (keymap.hasOwnProperty(keyname)) {
- var value = keymap[keyname];
- if (/^(name|fallthrough|(de|at)tach)$/.test(keyname)) { continue }
- if (value == "...") { delete keymap[keyname]; continue }
-
- var keys = map(keyname.split(" "), normalizeKeyName);
- for (var i = 0; i < keys.length; i++) {
- var val = (void 0), name = (void 0);
- if (i == keys.length - 1) {
- name = keys.join(" ");
- val = value;
- } else {
- name = keys.slice(0, i + 1).join(" ");
- val = "...";
- }
- var prev = copy[name];
- if (!prev) { copy[name] = val; }
- else if (prev != val) { throw new Error("Inconsistent bindings for " + name) }
- }
- delete keymap[keyname];
- } }
- for (var prop in copy) { keymap[prop] = copy[prop]; }
- return keymap
- }
-
- function lookupKey(key, map, handle, context) {
- map = getKeyMap(map);
- var found = map.call ? map.call(key, context) : map[key];
- if (found === false) { return "nothing" }
- if (found === "...") { return "multi" }
- if (found != null && handle(found)) { return "handled" }
-
- if (map.fallthrough) {
- if (Object.prototype.toString.call(map.fallthrough) != "[object Array]")
- { return lookupKey(key, map.fallthrough, handle, context) }
- for (var i = 0; i < map.fallthrough.length; i++) {
- var result = lookupKey(key, map.fallthrough[i], handle, context);
- if (result) { return result }
- }
- }
- }
-
- // Modifier key presses don't count as 'real' key presses for the
- // purpose of keymap fallthrough.
- function isModifierKey(value) {
- var name = typeof value == "string" ? value : keyNames[value.keyCode];
- return name == "Ctrl" || name == "Alt" || name == "Shift" || name == "Mod"
- }
-
- function addModifierNames(name, event, noShift) {
- var base = name;
- if (event.altKey && base != "Alt") { name = "Alt-" + name; }
- if ((flipCtrlCmd ? event.metaKey : event.ctrlKey) && base != "Ctrl") { name = "Ctrl-" + name; }
- if ((flipCtrlCmd ? event.ctrlKey : event.metaKey) && base != "Cmd") { name = "Cmd-" + name; }
- if (!noShift && event.shiftKey && base != "Shift") { name = "Shift-" + name; }
- return name
- }
-
- // Look up the name of a key as indicated by an event object.
- function keyName(event, noShift) {
- if (presto && event.keyCode == 34 && event["char"]) { return false }
- var name = keyNames[event.keyCode];
- if (name == null || event.altGraphKey) { return false }
- // Ctrl-ScrollLock has keyCode 3, same as Ctrl-Pause,
- // so we'll use event.code when available (Chrome 48+, FF 38+, Safari 10.1+)
- if (event.keyCode == 3 && event.code) { name = event.code; }
- return addModifierNames(name, event, noShift)
- }
-
- function getKeyMap(val) {
- return typeof val == "string" ? keyMap[val] : val
- }
-
- // Helper for deleting text near the selection(s), used to implement
- // backspace, delete, and similar functionality.
- function deleteNearSelection(cm, compute) {
- var ranges = cm.doc.sel.ranges, kill = [];
- // Build up a set of ranges to kill first, merging overlapping
- // ranges.
- for (var i = 0; i < ranges.length; i++) {
- var toKill = compute(ranges[i]);
- while (kill.length && cmp(toKill.from, lst(kill).to) <= 0) {
- var replaced = kill.pop();
- if (cmp(replaced.from, toKill.from) < 0) {
- toKill.from = replaced.from;
- break
- }
- }
- kill.push(toKill);
- }
- // Next, remove those actual ranges.
- runInOp(cm, function () {
- for (var i = kill.length - 1; i >= 0; i--)
- { replaceRange(cm.doc, "", kill[i].from, kill[i].to, "+delete"); }
- ensureCursorVisible(cm);
- });
- }
-
- function moveCharLogically(line, ch, dir) {
- var target = skipExtendingChars(line.text, ch + dir, dir);
- return target < 0 || target > line.text.length ? null : target
- }
-
- function moveLogically(line, start, dir) {
- var ch = moveCharLogically(line, start.ch, dir);
- return ch == null ? null : new Pos(start.line, ch, dir < 0 ? "after" : "before")
- }
-
- function endOfLine(visually, cm, lineObj, lineNo, dir) {
- if (visually) {
- if (cm.doc.direction == "rtl") { dir = -dir; }
- var order = getOrder(lineObj, cm.doc.direction);
- if (order) {
- var part = dir < 0 ? lst(order) : order[0];
- var moveInStorageOrder = (dir < 0) == (part.level == 1);
- var sticky = moveInStorageOrder ? "after" : "before";
- var ch;
- // With a wrapped rtl chunk (possibly spanning multiple bidi parts),
- // it could be that the last bidi part is not on the last visual line,
- // since visual lines contain content order-consecutive chunks.
- // Thus, in rtl, we are looking for the first (content-order) character
- // in the rtl chunk that is on the last line (that is, the same line
- // as the last (content-order) character).
- if (part.level > 0 || cm.doc.direction == "rtl") {
- var prep = prepareMeasureForLine(cm, lineObj);
- ch = dir < 0 ? lineObj.text.length - 1 : 0;
- var targetTop = measureCharPrepared(cm, prep, ch).top;
- ch = findFirst(function (ch) { return measureCharPrepared(cm, prep, ch).top == targetTop; }, (dir < 0) == (part.level == 1) ? part.from : part.to - 1, ch);
- if (sticky == "before") { ch = moveCharLogically(lineObj, ch, 1); }
- } else { ch = dir < 0 ? part.to : part.from; }
- return new Pos(lineNo, ch, sticky)
- }
- }
- return new Pos(lineNo, dir < 0 ? lineObj.text.length : 0, dir < 0 ? "before" : "after")
- }
-
- function moveVisually(cm, line, start, dir) {
- var bidi = getOrder(line, cm.doc.direction);
- if (!bidi) { return moveLogically(line, start, dir) }
- if (start.ch >= line.text.length) {
- start.ch = line.text.length;
- start.sticky = "before";
- } else if (start.ch <= 0) {
- start.ch = 0;
- start.sticky = "after";
- }
- var partPos = getBidiPartAt(bidi, start.ch, start.sticky), part = bidi[partPos];
- if (cm.doc.direction == "ltr" && part.level % 2 == 0 && (dir > 0 ? part.to > start.ch : part.from < start.ch)) {
- // Case 1: We move within an ltr part in an ltr editor. Even with wrapped lines,
- // nothing interesting happens.
- return moveLogically(line, start, dir)
- }
-
- var mv = function (pos, dir) { return moveCharLogically(line, pos instanceof Pos ? pos.ch : pos, dir); };
- var prep;
- var getWrappedLineExtent = function (ch) {
- if (!cm.options.lineWrapping) { return {begin: 0, end: line.text.length} }
- prep = prep || prepareMeasureForLine(cm, line);
- return wrappedLineExtentChar(cm, line, prep, ch)
- };
- var wrappedLineExtent = getWrappedLineExtent(start.sticky == "before" ? mv(start, -1) : start.ch);
-
- if (cm.doc.direction == "rtl" || part.level == 1) {
- var moveInStorageOrder = (part.level == 1) == (dir < 0);
- var ch = mv(start, moveInStorageOrder ? 1 : -1);
- if (ch != null && (!moveInStorageOrder ? ch >= part.from && ch >= wrappedLineExtent.begin : ch <= part.to && ch <= wrappedLineExtent.end)) {
- // Case 2: We move within an rtl part or in an rtl editor on the same visual line
- var sticky = moveInStorageOrder ? "before" : "after";
- return new Pos(start.line, ch, sticky)
- }
- }
-
- // Case 3: Could not move within this bidi part in this visual line, so leave
- // the current bidi part
-
- var searchInVisualLine = function (partPos, dir, wrappedLineExtent) {
- var getRes = function (ch, moveInStorageOrder) { return moveInStorageOrder
- ? new Pos(start.line, mv(ch, 1), "before")
- : new Pos(start.line, ch, "after"); };
-
- for (; partPos >= 0 && partPos < bidi.length; partPos += dir) {
- var part = bidi[partPos];
- var moveInStorageOrder = (dir > 0) == (part.level != 1);
- var ch = moveInStorageOrder ? wrappedLineExtent.begin : mv(wrappedLineExtent.end, -1);
- if (part.from <= ch && ch < part.to) { return getRes(ch, moveInStorageOrder) }
- ch = moveInStorageOrder ? part.from : mv(part.to, -1);
- if (wrappedLineExtent.begin <= ch && ch < wrappedLineExtent.end) { return getRes(ch, moveInStorageOrder) }
- }
- };
-
- // Case 3a: Look for other bidi parts on the same visual line
- var res = searchInVisualLine(partPos + dir, dir, wrappedLineExtent);
- if (res) { return res }
-
- // Case 3b: Look for other bidi parts on the next visual line
- var nextCh = dir > 0 ? wrappedLineExtent.end : mv(wrappedLineExtent.begin, -1);
- if (nextCh != null && !(dir > 0 && nextCh == line.text.length)) {
- res = searchInVisualLine(dir > 0 ? 0 : bidi.length - 1, dir, getWrappedLineExtent(nextCh));
- if (res) { return res }
- }
-
- // Case 4: Nowhere to move
- return null
- }
-
- // Commands are parameter-less actions that can be performed on an
- // editor, mostly used for keybindings.
- var commands = {
- selectAll: selectAll,
- singleSelection: function (cm) { return cm.setSelection(cm.getCursor("anchor"), cm.getCursor("head"), sel_dontScroll); },
- killLine: function (cm) { return deleteNearSelection(cm, function (range) {
- if (range.empty()) {
- var len = getLine(cm.doc, range.head.line).text.length;
- if (range.head.ch == len && range.head.line < cm.lastLine())
- { return {from: range.head, to: Pos(range.head.line + 1, 0)} }
- else
- { return {from: range.head, to: Pos(range.head.line, len)} }
- } else {
- return {from: range.from(), to: range.to()}
- }
- }); },
- deleteLine: function (cm) { return deleteNearSelection(cm, function (range) { return ({
- from: Pos(range.from().line, 0),
- to: clipPos(cm.doc, Pos(range.to().line + 1, 0))
- }); }); },
- delLineLeft: function (cm) { return deleteNearSelection(cm, function (range) { return ({
- from: Pos(range.from().line, 0), to: range.from()
- }); }); },
- delWrappedLineLeft: function (cm) { return deleteNearSelection(cm, function (range) {
- var top = cm.charCoords(range.head, "div").top + 5;
- var leftPos = cm.coordsChar({left: 0, top: top}, "div");
- return {from: leftPos, to: range.from()}
- }); },
- delWrappedLineRight: function (cm) { return deleteNearSelection(cm, function (range) {
- var top = cm.charCoords(range.head, "div").top + 5;
- var rightPos = cm.coordsChar({left: cm.display.lineDiv.offsetWidth + 100, top: top}, "div");
- return {from: range.from(), to: rightPos }
- }); },
- undo: function (cm) { return cm.undo(); },
- redo: function (cm) { return cm.redo(); },
- undoSelection: function (cm) { return cm.undoSelection(); },
- redoSelection: function (cm) { return cm.redoSelection(); },
- goDocStart: function (cm) { return cm.extendSelection(Pos(cm.firstLine(), 0)); },
- goDocEnd: function (cm) { return cm.extendSelection(Pos(cm.lastLine())); },
- goLineStart: function (cm) { return cm.extendSelectionsBy(function (range) { return lineStart(cm, range.head.line); },
- {origin: "+move", bias: 1}
- ); },
- goLineStartSmart: function (cm) { return cm.extendSelectionsBy(function (range) { return lineStartSmart(cm, range.head); },
- {origin: "+move", bias: 1}
- ); },
- goLineEnd: function (cm) { return cm.extendSelectionsBy(function (range) { return lineEnd(cm, range.head.line); },
- {origin: "+move", bias: -1}
- ); },
- goLineRight: function (cm) { return cm.extendSelectionsBy(function (range) {
- var top = cm.cursorCoords(range.head, "div").top + 5;
- return cm.coordsChar({left: cm.display.lineDiv.offsetWidth + 100, top: top}, "div")
- }, sel_move); },
- goLineLeft: function (cm) { return cm.extendSelectionsBy(function (range) {
- var top = cm.cursorCoords(range.head, "div").top + 5;
- return cm.coordsChar({left: 0, top: top}, "div")
- }, sel_move); },
- goLineLeftSmart: function (cm) { return cm.extendSelectionsBy(function (range) {
- var top = cm.cursorCoords(range.head, "div").top + 5;
- var pos = cm.coordsChar({left: 0, top: top}, "div");
- if (pos.ch < cm.getLine(pos.line).search(/\S/)) { return lineStartSmart(cm, range.head) }
- return pos
- }, sel_move); },
- goLineUp: function (cm) { return cm.moveV(-1, "line"); },
- goLineDown: function (cm) { return cm.moveV(1, "line"); },
- goPageUp: function (cm) { return cm.moveV(-1, "page"); },
- goPageDown: function (cm) { return cm.moveV(1, "page"); },
- goCharLeft: function (cm) { return cm.moveH(-1, "char"); },
- goCharRight: function (cm) { return cm.moveH(1, "char"); },
- goColumnLeft: function (cm) { return cm.moveH(-1, "column"); },
- goColumnRight: function (cm) { return cm.moveH(1, "column"); },
- goWordLeft: function (cm) { return cm.moveH(-1, "word"); },
- goGroupRight: function (cm) { return cm.moveH(1, "group"); },
- goGroupLeft: function (cm) { return cm.moveH(-1, "group"); },
- goWordRight: function (cm) { return cm.moveH(1, "word"); },
- delCharBefore: function (cm) { return cm.deleteH(-1, "char"); },
- delCharAfter: function (cm) { return cm.deleteH(1, "char"); },
- delWordBefore: function (cm) { return cm.deleteH(-1, "word"); },
- delWordAfter: function (cm) { return cm.deleteH(1, "word"); },
- delGroupBefore: function (cm) { return cm.deleteH(-1, "group"); },
- delGroupAfter: function (cm) { return cm.deleteH(1, "group"); },
- indentAuto: function (cm) { return cm.indentSelection("smart"); },
- indentMore: function (cm) { return cm.indentSelection("add"); },
- indentLess: function (cm) { return cm.indentSelection("subtract"); },
- insertTab: function (cm) { return cm.replaceSelection("\t"); },
- insertSoftTab: function (cm) {
- var spaces = [], ranges = cm.listSelections(), tabSize = cm.options.tabSize;
- for (var i = 0; i < ranges.length; i++) {
- var pos = ranges[i].from();
- var col = countColumn(cm.getLine(pos.line), pos.ch, tabSize);
- spaces.push(spaceStr(tabSize - col % tabSize));
- }
- cm.replaceSelections(spaces);
- },
- defaultTab: function (cm) {
- if (cm.somethingSelected()) { cm.indentSelection("add"); }
- else { cm.execCommand("insertTab"); }
- },
- // Swap the two chars left and right of each selection's head.
- // Move cursor behind the two swapped characters afterwards.
- //
- // Doesn't consider line feeds a character.
- // Doesn't scan more than one line above to find a character.
- // Doesn't do anything on an empty line.
- // Doesn't do anything with non-empty selections.
- transposeChars: function (cm) { return runInOp(cm, function () {
- var ranges = cm.listSelections(), newSel = [];
- for (var i = 0; i < ranges.length; i++) {
- if (!ranges[i].empty()) { continue }
- var cur = ranges[i].head, line = getLine(cm.doc, cur.line).text;
- if (line) {
- if (cur.ch == line.length) { cur = new Pos(cur.line, cur.ch - 1); }
- if (cur.ch > 0) {
- cur = new Pos(cur.line, cur.ch + 1);
- cm.replaceRange(line.charAt(cur.ch - 1) + line.charAt(cur.ch - 2),
- Pos(cur.line, cur.ch - 2), cur, "+transpose");
- } else if (cur.line > cm.doc.first) {
- var prev = getLine(cm.doc, cur.line - 1).text;
- if (prev) {
- cur = new Pos(cur.line, 1);
- cm.replaceRange(line.charAt(0) + cm.doc.lineSeparator() +
- prev.charAt(prev.length - 1),
- Pos(cur.line - 1, prev.length - 1), cur, "+transpose");
- }
- }
- }
- newSel.push(new Range(cur, cur));
- }
- cm.setSelections(newSel);
- }); },
- newlineAndIndent: function (cm) { return runInOp(cm, function () {
- var sels = cm.listSelections();
- for (var i = sels.length - 1; i >= 0; i--)
- { cm.replaceRange(cm.doc.lineSeparator(), sels[i].anchor, sels[i].head, "+input"); }
- sels = cm.listSelections();
- for (var i$1 = 0; i$1 < sels.length; i$1++)
- { cm.indentLine(sels[i$1].from().line, null, true); }
- ensureCursorVisible(cm);
- }); },
- openLine: function (cm) { return cm.replaceSelection("\n", "start"); },
- toggleOverwrite: function (cm) { return cm.toggleOverwrite(); }
- };
-
-
- function lineStart(cm, lineN) {
- var line = getLine(cm.doc, lineN);
- var visual = visualLine(line);
- if (visual != line) { lineN = lineNo(visual); }
- return endOfLine(true, cm, visual, lineN, 1)
- }
- function lineEnd(cm, lineN) {
- var line = getLine(cm.doc, lineN);
- var visual = visualLineEnd(line);
- if (visual != line) { lineN = lineNo(visual); }
- return endOfLine(true, cm, line, lineN, -1)
- }
- function lineStartSmart(cm, pos) {
- var start = lineStart(cm, pos.line);
- var line = getLine(cm.doc, start.line);
- var order = getOrder(line, cm.doc.direction);
- if (!order || order[0].level == 0) {
- var firstNonWS = Math.max(start.ch, line.text.search(/\S/));
- var inWS = pos.line == start.line && pos.ch <= firstNonWS && pos.ch;
- return Pos(start.line, inWS ? 0 : firstNonWS, start.sticky)
- }
- return start
- }
-
- // Run a handler that was bound to a key.
- function doHandleBinding(cm, bound, dropShift) {
- if (typeof bound == "string") {
- bound = commands[bound];
- if (!bound) { return false }
- }
- // Ensure previous input has been read, so that the handler sees a
- // consistent view of the document
- cm.display.input.ensurePolled();
- var prevShift = cm.display.shift, done = false;
- try {
- if (cm.isReadOnly()) { cm.state.suppressEdits = true; }
- if (dropShift) { cm.display.shift = false; }
- done = bound(cm) != Pass;
- } finally {
- cm.display.shift = prevShift;
- cm.state.suppressEdits = false;
- }
- return done
- }
-
- function lookupKeyForEditor(cm, name, handle) {
- for (var i = 0; i < cm.state.keyMaps.length; i++) {
- var result = lookupKey(name, cm.state.keyMaps[i], handle, cm);
- if (result) { return result }
- }
- return (cm.options.extraKeys && lookupKey(name, cm.options.extraKeys, handle, cm))
- || lookupKey(name, cm.options.keyMap, handle, cm)
- }
-
- // Note that, despite the name, this function is also used to check
- // for bound mouse clicks.
-
- var stopSeq = new Delayed;
-
- function dispatchKey(cm, name, e, handle) {
- var seq = cm.state.keySeq;
- if (seq) {
- if (isModifierKey(name)) { return "handled" }
- if (/\'$/.test(name))
- { cm.state.keySeq = null; }
- else
- { stopSeq.set(50, function () {
- if (cm.state.keySeq == seq) {
- cm.state.keySeq = null;
- cm.display.input.reset();
- }
- }); }
- if (dispatchKeyInner(cm, seq + " " + name, e, handle)) { return true }
- }
- return dispatchKeyInner(cm, name, e, handle)
- }
-
- function dispatchKeyInner(cm, name, e, handle) {
- var result = lookupKeyForEditor(cm, name, handle);
-
- if (result == "multi")
- { cm.state.keySeq = name; }
- if (result == "handled")
- { signalLater(cm, "keyHandled", cm, name, e); }
-
- if (result == "handled" || result == "multi") {
- e_preventDefault(e);
- restartBlink(cm);
- }
-
- return !!result
- }
-
- // Handle a key from the keydown event.
- function handleKeyBinding(cm, e) {
- var name = keyName(e, true);
- if (!name) { return false }
-
- if (e.shiftKey && !cm.state.keySeq) {
- // First try to resolve full name (including 'Shift-'). Failing
- // that, see if there is a cursor-motion command (starting with
- // 'go') bound to the keyname without 'Shift-'.
- return dispatchKey(cm, "Shift-" + name, e, function (b) { return doHandleBinding(cm, b, true); })
- || dispatchKey(cm, name, e, function (b) {
- if (typeof b == "string" ? /^go[A-Z]/.test(b) : b.motion)
- { return doHandleBinding(cm, b) }
- })
- } else {
- return dispatchKey(cm, name, e, function (b) { return doHandleBinding(cm, b); })
- }
- }
-
- // Handle a key from the keypress event
- function handleCharBinding(cm, e, ch) {
- return dispatchKey(cm, "'" + ch + "'", e, function (b) { return doHandleBinding(cm, b, true); })
- }
-
- var lastStoppedKey = null;
- function onKeyDown(e) {
- var cm = this;
- cm.curOp.focus = activeElt();
- if (signalDOMEvent(cm, e)) { return }
- // IE does strange things with escape.
- if (ie && ie_version < 11 && e.keyCode == 27) { e.returnValue = false; }
- var code = e.keyCode;
- cm.display.shift = code == 16 || e.shiftKey;
- var handled = handleKeyBinding(cm, e);
- if (presto) {
- lastStoppedKey = handled ? code : null;
- // Opera has no cut event... we try to at least catch the key combo
- if (!handled && code == 88 && !hasCopyEvent && (mac ? e.metaKey : e.ctrlKey))
- { cm.replaceSelection("", null, "cut"); }
- }
- if (gecko && !mac && !handled && code == 46 && e.shiftKey && !e.ctrlKey && document.execCommand)
- { document.execCommand("cut"); }
-
- // Turn mouse into crosshair when Alt is held on Mac.
- if (code == 18 && !/\bCodeMirror-crosshair\b/.test(cm.display.lineDiv.className))
- { showCrossHair(cm); }
- }
-
- function showCrossHair(cm) {
- var lineDiv = cm.display.lineDiv;
- addClass(lineDiv, "CodeMirror-crosshair");
-
- function up(e) {
- if (e.keyCode == 18 || !e.altKey) {
- rmClass(lineDiv, "CodeMirror-crosshair");
- off(document, "keyup", up);
- off(document, "mouseover", up);
- }
- }
- on(document, "keyup", up);
- on(document, "mouseover", up);
- }
-
- function onKeyUp(e) {
- if (e.keyCode == 16) { this.doc.sel.shift = false; }
- signalDOMEvent(this, e);
- }
-
- function onKeyPress(e) {
- var cm = this;
- if (eventInWidget(cm.display, e) || signalDOMEvent(cm, e) || e.ctrlKey && !e.altKey || mac && e.metaKey) { return }
- var keyCode = e.keyCode, charCode = e.charCode;
- if (presto && keyCode == lastStoppedKey) {lastStoppedKey = null; e_preventDefault(e); return}
- if ((presto && (!e.which || e.which < 10)) && handleKeyBinding(cm, e)) { return }
- var ch = String.fromCharCode(charCode == null ? keyCode : charCode);
- // Some browsers fire keypress events for backspace
- if (ch == "\x08") { return }
- if (handleCharBinding(cm, e, ch)) { return }
- cm.display.input.onKeyPress(e);
- }
-
- var DOUBLECLICK_DELAY = 400;
-
- var PastClick = function(time, pos, button) {
- this.time = time;
- this.pos = pos;
- this.button = button;
- };
-
- PastClick.prototype.compare = function (time, pos, button) {
- return this.time + DOUBLECLICK_DELAY > time &&
- cmp(pos, this.pos) == 0 && button == this.button
- };
-
- var lastClick, lastDoubleClick;
- function clickRepeat(pos, button) {
- var now = +new Date;
- if (lastDoubleClick && lastDoubleClick.compare(now, pos, button)) {
- lastClick = lastDoubleClick = null;
- return "triple"
- } else if (lastClick && lastClick.compare(now, pos, button)) {
- lastDoubleClick = new PastClick(now, pos, button);
- lastClick = null;
- return "double"
- } else {
- lastClick = new PastClick(now, pos, button);
- lastDoubleClick = null;
- return "single"
- }
- }
-
- // A mouse down can be a single click, double click, triple click,
- // start of selection drag, start of text drag, new cursor
- // (ctrl-click), rectangle drag (alt-drag), or xwin
- // middle-click-paste. Or it might be a click on something we should
- // not interfere with, such as a scrollbar or widget.
- function onMouseDown(e) {
- var cm = this, display = cm.display;
- if (signalDOMEvent(cm, e) || display.activeTouch && display.input.supportsTouch()) { return }
- display.input.ensurePolled();
- display.shift = e.shiftKey;
-
- if (eventInWidget(display, e)) {
- if (!webkit) {
- // Briefly turn off draggability, to allow widgets to do
- // normal dragging things.
- display.scroller.draggable = false;
- setTimeout(function () { return display.scroller.draggable = true; }, 100);
- }
- return
- }
- if (clickInGutter(cm, e)) { return }
- var pos = posFromMouse(cm, e), button = e_button(e), repeat = pos ? clickRepeat(pos, button) : "single";
- window.focus();
-
- // #3261: make sure, that we're not starting a second selection
- if (button == 1 && cm.state.selectingText)
- { cm.state.selectingText(e); }
-
- if (pos && handleMappedButton(cm, button, pos, repeat, e)) { return }
-
- if (button == 1) {
- if (pos) { leftButtonDown(cm, pos, repeat, e); }
- else if (e_target(e) == display.scroller) { e_preventDefault(e); }
- } else if (button == 2) {
- if (pos) { extendSelection(cm.doc, pos); }
- setTimeout(function () { return display.input.focus(); }, 20);
- } else if (button == 3) {
- if (captureRightClick) { cm.display.input.onContextMenu(e); }
- else { delayBlurEvent(cm); }
- }
- }
-
- function handleMappedButton(cm, button, pos, repeat, event) {
- var name = "Click";
- if (repeat == "double") { name = "Double" + name; }
- else if (repeat == "triple") { name = "Triple" + name; }
- name = (button == 1 ? "Left" : button == 2 ? "Middle" : "Right") + name;
-
- return dispatchKey(cm, addModifierNames(name, event), event, function (bound) {
- if (typeof bound == "string") { bound = commands[bound]; }
- if (!bound) { return false }
- var done = false;
- try {
- if (cm.isReadOnly()) { cm.state.suppressEdits = true; }
- done = bound(cm, pos) != Pass;
- } finally {
- cm.state.suppressEdits = false;
- }
- return done
- })
- }
-
- function configureMouse(cm, repeat, event) {
- var option = cm.getOption("configureMouse");
- var value = option ? option(cm, repeat, event) : {};
- if (value.unit == null) {
- var rect = chromeOS ? event.shiftKey && event.metaKey : event.altKey;
- value.unit = rect ? "rectangle" : repeat == "single" ? "char" : repeat == "double" ? "word" : "line";
- }
- if (value.extend == null || cm.doc.extend) { value.extend = cm.doc.extend || event.shiftKey; }
- if (value.addNew == null) { value.addNew = mac ? event.metaKey : event.ctrlKey; }
- if (value.moveOnDrag == null) { value.moveOnDrag = !(mac ? event.altKey : event.ctrlKey); }
- return value
- }
-
- function leftButtonDown(cm, pos, repeat, event) {
- if (ie) { setTimeout(bind(ensureFocus, cm), 0); }
- else { cm.curOp.focus = activeElt(); }
-
- var behavior = configureMouse(cm, repeat, event);
-
- var sel = cm.doc.sel, contained;
- if (cm.options.dragDrop && dragAndDrop && !cm.isReadOnly() &&
- repeat == "single" && (contained = sel.contains(pos)) > -1 &&
- (cmp((contained = sel.ranges[contained]).from(), pos) < 0 || pos.xRel > 0) &&
- (cmp(contained.to(), pos) > 0 || pos.xRel < 0))
- { leftButtonStartDrag(cm, event, pos, behavior); }
- else
- { leftButtonSelect(cm, event, pos, behavior); }
- }
-
- // Start a text drag. When it ends, see if any dragging actually
- // happen, and treat as a click if it didn't.
- function leftButtonStartDrag(cm, event, pos, behavior) {
- var display = cm.display, moved = false;
- var dragEnd = operation(cm, function (e) {
- if (webkit) { display.scroller.draggable = false; }
- cm.state.draggingText = false;
- off(display.wrapper.ownerDocument, "mouseup", dragEnd);
- off(display.wrapper.ownerDocument, "mousemove", mouseMove);
- off(display.scroller, "dragstart", dragStart);
- off(display.scroller, "drop", dragEnd);
- if (!moved) {
- e_preventDefault(e);
- if (!behavior.addNew)
- { extendSelection(cm.doc, pos, null, null, behavior.extend); }
- // Work around unexplainable focus problem in IE9 (#2127) and Chrome (#3081)
- if (webkit || ie && ie_version == 9)
- { setTimeout(function () {display.wrapper.ownerDocument.body.focus(); display.input.focus();}, 20); }
- else
- { display.input.focus(); }
- }
- });
- var mouseMove = function(e2) {
- moved = moved || Math.abs(event.clientX - e2.clientX) + Math.abs(event.clientY - e2.clientY) >= 10;
- };
- var dragStart = function () { return moved = true; };
- // Let the drag handler handle this.
- if (webkit) { display.scroller.draggable = true; }
- cm.state.draggingText = dragEnd;
- dragEnd.copy = !behavior.moveOnDrag;
- // IE's approach to draggable
- if (display.scroller.dragDrop) { display.scroller.dragDrop(); }
- on(display.wrapper.ownerDocument, "mouseup", dragEnd);
- on(display.wrapper.ownerDocument, "mousemove", mouseMove);
- on(display.scroller, "dragstart", dragStart);
- on(display.scroller, "drop", dragEnd);
-
- delayBlurEvent(cm);
- setTimeout(function () { return display.input.focus(); }, 20);
- }
-
- function rangeForUnit(cm, pos, unit) {
- if (unit == "char") { return new Range(pos, pos) }
- if (unit == "word") { return cm.findWordAt(pos) }
- if (unit == "line") { return new Range(Pos(pos.line, 0), clipPos(cm.doc, Pos(pos.line + 1, 0))) }
- var result = unit(cm, pos);
- return new Range(result.from, result.to)
- }
-
- // Normal selection, as opposed to text dragging.
- function leftButtonSelect(cm, event, start, behavior) {
- var display = cm.display, doc = cm.doc;
- e_preventDefault(event);
-
- var ourRange, ourIndex, startSel = doc.sel, ranges = startSel.ranges;
- if (behavior.addNew && !behavior.extend) {
- ourIndex = doc.sel.contains(start);
- if (ourIndex > -1)
- { ourRange = ranges[ourIndex]; }
- else
- { ourRange = new Range(start, start); }
- } else {
- ourRange = doc.sel.primary();
- ourIndex = doc.sel.primIndex;
- }
-
- if (behavior.unit == "rectangle") {
- if (!behavior.addNew) { ourRange = new Range(start, start); }
- start = posFromMouse(cm, event, true, true);
- ourIndex = -1;
- } else {
- var range = rangeForUnit(cm, start, behavior.unit);
- if (behavior.extend)
- { ourRange = extendRange(ourRange, range.anchor, range.head, behavior.extend); }
- else
- { ourRange = range; }
- }
-
- if (!behavior.addNew) {
- ourIndex = 0;
- setSelection(doc, new Selection([ourRange], 0), sel_mouse);
- startSel = doc.sel;
- } else if (ourIndex == -1) {
- ourIndex = ranges.length;
- setSelection(doc, normalizeSelection(cm, ranges.concat([ourRange]), ourIndex),
- {scroll: false, origin: "*mouse"});
- } else if (ranges.length > 1 && ranges[ourIndex].empty() && behavior.unit == "char" && !behavior.extend) {
- setSelection(doc, normalizeSelection(cm, ranges.slice(0, ourIndex).concat(ranges.slice(ourIndex + 1)), 0),
- {scroll: false, origin: "*mouse"});
- startSel = doc.sel;
- } else {
- replaceOneSelection(doc, ourIndex, ourRange, sel_mouse);
- }
-
- var lastPos = start;
- function extendTo(pos) {
- if (cmp(lastPos, pos) == 0) { return }
- lastPos = pos;
-
- if (behavior.unit == "rectangle") {
- var ranges = [], tabSize = cm.options.tabSize;
- var startCol = countColumn(getLine(doc, start.line).text, start.ch, tabSize);
- var posCol = countColumn(getLine(doc, pos.line).text, pos.ch, tabSize);
- var left = Math.min(startCol, posCol), right = Math.max(startCol, posCol);
- for (var line = Math.min(start.line, pos.line), end = Math.min(cm.lastLine(), Math.max(start.line, pos.line));
- line <= end; line++) {
- var text = getLine(doc, line).text, leftPos = findColumn(text, left, tabSize);
- if (left == right)
- { ranges.push(new Range(Pos(line, leftPos), Pos(line, leftPos))); }
- else if (text.length > leftPos)
- { ranges.push(new Range(Pos(line, leftPos), Pos(line, findColumn(text, right, tabSize)))); }
- }
- if (!ranges.length) { ranges.push(new Range(start, start)); }
- setSelection(doc, normalizeSelection(cm, startSel.ranges.slice(0, ourIndex).concat(ranges), ourIndex),
- {origin: "*mouse", scroll: false});
- cm.scrollIntoView(pos);
- } else {
- var oldRange = ourRange;
- var range = rangeForUnit(cm, pos, behavior.unit);
- var anchor = oldRange.anchor, head;
- if (cmp(range.anchor, anchor) > 0) {
- head = range.head;
- anchor = minPos(oldRange.from(), range.anchor);
- } else {
- head = range.anchor;
- anchor = maxPos(oldRange.to(), range.head);
- }
- var ranges$1 = startSel.ranges.slice(0);
- ranges$1[ourIndex] = bidiSimplify(cm, new Range(clipPos(doc, anchor), head));
- setSelection(doc, normalizeSelection(cm, ranges$1, ourIndex), sel_mouse);
- }
- }
-
- var editorSize = display.wrapper.getBoundingClientRect();
- // Used to ensure timeout re-tries don't fire when another extend
- // happened in the meantime (clearTimeout isn't reliable -- at
- // least on Chrome, the timeouts still happen even when cleared,
- // if the clear happens after their scheduled firing time).
- var counter = 0;
-
- function extend(e) {
- var curCount = ++counter;
- var cur = posFromMouse(cm, e, true, behavior.unit == "rectangle");
- if (!cur) { return }
- if (cmp(cur, lastPos) != 0) {
- cm.curOp.focus = activeElt();
- extendTo(cur);
- var visible = visibleLines(display, doc);
- if (cur.line >= visible.to || cur.line < visible.from)
- { setTimeout(operation(cm, function () {if (counter == curCount) { extend(e); }}), 150); }
- } else {
- var outside = e.clientY < editorSize.top ? -20 : e.clientY > editorSize.bottom ? 20 : 0;
- if (outside) { setTimeout(operation(cm, function () {
- if (counter != curCount) { return }
- display.scroller.scrollTop += outside;
- extend(e);
- }), 50); }
- }
- }
-
- function done(e) {
- cm.state.selectingText = false;
- counter = Infinity;
- // If e is null or undefined we interpret this as someone trying
- // to explicitly cancel the selection rather than the user
- // letting go of the mouse button.
- if (e) {
- e_preventDefault(e);
- display.input.focus();
- }
- off(display.wrapper.ownerDocument, "mousemove", move);
- off(display.wrapper.ownerDocument, "mouseup", up);
- doc.history.lastSelOrigin = null;
- }
-
- var move = operation(cm, function (e) {
- if (e.buttons === 0 || !e_button(e)) { done(e); }
- else { extend(e); }
- });
- var up = operation(cm, done);
- cm.state.selectingText = up;
- on(display.wrapper.ownerDocument, "mousemove", move);
- on(display.wrapper.ownerDocument, "mouseup", up);
- }
-
- // Used when mouse-selecting to adjust the anchor to the proper side
- // of a bidi jump depending on the visual position of the head.
- function bidiSimplify(cm, range) {
- var anchor = range.anchor;
- var head = range.head;
- var anchorLine = getLine(cm.doc, anchor.line);
- if (cmp(anchor, head) == 0 && anchor.sticky == head.sticky) { return range }
- var order = getOrder(anchorLine);
- if (!order) { return range }
- var index = getBidiPartAt(order, anchor.ch, anchor.sticky), part = order[index];
- if (part.from != anchor.ch && part.to != anchor.ch) { return range }
- var boundary = index + ((part.from == anchor.ch) == (part.level != 1) ? 0 : 1);
- if (boundary == 0 || boundary == order.length) { return range }
-
- // Compute the relative visual position of the head compared to the
- // anchor (<0 is to the left, >0 to the right)
- var leftSide;
- if (head.line != anchor.line) {
- leftSide = (head.line - anchor.line) * (cm.doc.direction == "ltr" ? 1 : -1) > 0;
- } else {
- var headIndex = getBidiPartAt(order, head.ch, head.sticky);
- var dir = headIndex - index || (head.ch - anchor.ch) * (part.level == 1 ? -1 : 1);
- if (headIndex == boundary - 1 || headIndex == boundary)
- { leftSide = dir < 0; }
- else
- { leftSide = dir > 0; }
- }
-
- var usePart = order[boundary + (leftSide ? -1 : 0)];
- var from = leftSide == (usePart.level == 1);
- var ch = from ? usePart.from : usePart.to, sticky = from ? "after" : "before";
- return anchor.ch == ch && anchor.sticky == sticky ? range : new Range(new Pos(anchor.line, ch, sticky), head)
- }
-
-
- // Determines whether an event happened in the gutter, and fires the
- // handlers for the corresponding event.
- function gutterEvent(cm, e, type, prevent) {
- var mX, mY;
- if (e.touches) {
- mX = e.touches[0].clientX;
- mY = e.touches[0].clientY;
- } else {
- try { mX = e.clientX; mY = e.clientY; }
- catch(e) { return false }
- }
- if (mX >= Math.floor(cm.display.gutters.getBoundingClientRect().right)) { return false }
- if (prevent) { e_preventDefault(e); }
-
- var display = cm.display;
- var lineBox = display.lineDiv.getBoundingClientRect();
-
- if (mY > lineBox.bottom || !hasHandler(cm, type)) { return e_defaultPrevented(e) }
- mY -= lineBox.top - display.viewOffset;
-
- for (var i = 0; i < cm.display.gutterSpecs.length; ++i) {
- var g = display.gutters.childNodes[i];
- if (g && g.getBoundingClientRect().right >= mX) {
- var line = lineAtHeight(cm.doc, mY);
- var gutter = cm.display.gutterSpecs[i];
- signal(cm, type, cm, line, gutter.className, e);
- return e_defaultPrevented(e)
- }
- }
- }
-
- function clickInGutter(cm, e) {
- return gutterEvent(cm, e, "gutterClick", true)
- }
-
- // CONTEXT MENU HANDLING
-
- // To make the context menu work, we need to briefly unhide the
- // textarea (making it as unobtrusive as possible) to let the
- // right-click take effect on it.
- function onContextMenu(cm, e) {
- if (eventInWidget(cm.display, e) || contextMenuInGutter(cm, e)) { return }
- if (signalDOMEvent(cm, e, "contextmenu")) { return }
- if (!captureRightClick) { cm.display.input.onContextMenu(e); }
- }
-
- function contextMenuInGutter(cm, e) {
- if (!hasHandler(cm, "gutterContextMenu")) { return false }
- return gutterEvent(cm, e, "gutterContextMenu", false)
- }
-
- function themeChanged(cm) {
- cm.display.wrapper.className = cm.display.wrapper.className.replace(/\s*cm-s-\S+/g, "") +
- cm.options.theme.replace(/(^|\s)\s*/g, " cm-s-");
- clearCaches(cm);
- }
-
- var Init = {toString: function(){return "CodeMirror.Init"}};
-
- var defaults = {};
- var optionHandlers = {};
-
- function defineOptions(CodeMirror) {
- var optionHandlers = CodeMirror.optionHandlers;
-
- function option(name, deflt, handle, notOnInit) {
- CodeMirror.defaults[name] = deflt;
- if (handle) { optionHandlers[name] =
- notOnInit ? function (cm, val, old) {if (old != Init) { handle(cm, val, old); }} : handle; }
- }
-
- CodeMirror.defineOption = option;
-
- // Passed to option handlers when there is no old value.
- CodeMirror.Init = Init;
-
- // These two are, on init, called from the constructor because they
- // have to be initialized before the editor can start at all.
- option("value", "", function (cm, val) { return cm.setValue(val); }, true);
- option("mode", null, function (cm, val) {
- cm.doc.modeOption = val;
- loadMode(cm);
- }, true);
-
- option("indentUnit", 2, loadMode, true);
- option("indentWithTabs", false);
- option("smartIndent", true);
- option("tabSize", 4, function (cm) {
- resetModeState(cm);
- clearCaches(cm);
- regChange(cm);
- }, true);
-
- option("lineSeparator", null, function (cm, val) {
- cm.doc.lineSep = val;
- if (!val) { return }
- var newBreaks = [], lineNo = cm.doc.first;
- cm.doc.iter(function (line) {
- for (var pos = 0;;) {
- var found = line.text.indexOf(val, pos);
- if (found == -1) { break }
- pos = found + val.length;
- newBreaks.push(Pos(lineNo, found));
- }
- lineNo++;
- });
- for (var i = newBreaks.length - 1; i >= 0; i--)
- { replaceRange(cm.doc, val, newBreaks[i], Pos(newBreaks[i].line, newBreaks[i].ch + val.length)); }
- });
- option("specialChars", /[\u0000-\u001f\u007f-\u009f\u00ad\u061c\u200b-\u200f\u2028\u2029\ufeff\ufff9-\ufffc]/g, function (cm, val, old) {
- cm.state.specialChars = new RegExp(val.source + (val.test("\t") ? "" : "|\t"), "g");
- if (old != Init) { cm.refresh(); }
- });
- option("specialCharPlaceholder", defaultSpecialCharPlaceholder, function (cm) { return cm.refresh(); }, true);
- option("electricChars", true);
- option("inputStyle", mobile ? "contenteditable" : "textarea", function () {
- throw new Error("inputStyle can not (yet) be changed in a running editor") // FIXME
- }, true);
- option("spellcheck", false, function (cm, val) { return cm.getInputField().spellcheck = val; }, true);
- option("autocorrect", false, function (cm, val) { return cm.getInputField().autocorrect = val; }, true);
- option("autocapitalize", false, function (cm, val) { return cm.getInputField().autocapitalize = val; }, true);
- option("rtlMoveVisually", !windows);
- option("wholeLineUpdateBefore", true);
-
- option("theme", "default", function (cm) {
- themeChanged(cm);
- updateGutters(cm);
- }, true);
- option("keyMap", "default", function (cm, val, old) {
- var next = getKeyMap(val);
- var prev = old != Init && getKeyMap(old);
- if (prev && prev.detach) { prev.detach(cm, next); }
- if (next.attach) { next.attach(cm, prev || null); }
- });
- option("extraKeys", null);
- option("configureMouse", null);
-
- option("lineWrapping", false, wrappingChanged, true);
- option("gutters", [], function (cm, val) {
- cm.display.gutterSpecs = getGutters(val, cm.options.lineNumbers);
- updateGutters(cm);
- }, true);
- option("fixedGutter", true, function (cm, val) {
- cm.display.gutters.style.left = val ? compensateForHScroll(cm.display) + "px" : "0";
- cm.refresh();
- }, true);
- option("coverGutterNextToScrollbar", false, function (cm) { return updateScrollbars(cm); }, true);
- option("scrollbarStyle", "native", function (cm) {
- initScrollbars(cm);
- updateScrollbars(cm);
- cm.display.scrollbars.setScrollTop(cm.doc.scrollTop);
- cm.display.scrollbars.setScrollLeft(cm.doc.scrollLeft);
- }, true);
- option("lineNumbers", false, function (cm, val) {
- cm.display.gutterSpecs = getGutters(cm.options.gutters, val);
- updateGutters(cm);
- }, true);
- option("firstLineNumber", 1, updateGutters, true);
- option("lineNumberFormatter", function (integer) { return integer; }, updateGutters, true);
- option("showCursorWhenSelecting", false, updateSelection, true);
-
- option("resetSelectionOnContextMenu", true);
- option("lineWiseCopyCut", true);
- option("pasteLinesPerSelection", true);
- option("selectionsMayTouch", false);
-
- option("readOnly", false, function (cm, val) {
- if (val == "nocursor") {
- onBlur(cm);
- cm.display.input.blur();
- }
- cm.display.input.readOnlyChanged(val);
- });
- option("disableInput", false, function (cm, val) {if (!val) { cm.display.input.reset(); }}, true);
- option("dragDrop", true, dragDropChanged);
- option("allowDropFileTypes", null);
-
- option("cursorBlinkRate", 530);
- option("cursorScrollMargin", 0);
- option("cursorHeight", 1, updateSelection, true);
- option("singleCursorHeightPerLine", true, updateSelection, true);
- option("workTime", 100);
- option("workDelay", 100);
- option("flattenSpans", true, resetModeState, true);
- option("addModeClass", false, resetModeState, true);
- option("pollInterval", 100);
- option("undoDepth", 200, function (cm, val) { return cm.doc.history.undoDepth = val; });
- option("historyEventDelay", 1250);
- option("viewportMargin", 10, function (cm) { return cm.refresh(); }, true);
- option("maxHighlightLength", 10000, resetModeState, true);
- option("moveInputWithCursor", true, function (cm, val) {
- if (!val) { cm.display.input.resetPosition(); }
- });
-
- option("tabindex", null, function (cm, val) { return cm.display.input.getField().tabIndex = val || ""; });
- option("autofocus", null);
- option("direction", "ltr", function (cm, val) { return cm.doc.setDirection(val); }, true);
- option("phrases", null);
- }
-
- function dragDropChanged(cm, value, old) {
- var wasOn = old && old != Init;
- if (!value != !wasOn) {
- var funcs = cm.display.dragFunctions;
- var toggle = value ? on : off;
- toggle(cm.display.scroller, "dragstart", funcs.start);
- toggle(cm.display.scroller, "dragenter", funcs.enter);
- toggle(cm.display.scroller, "dragover", funcs.over);
- toggle(cm.display.scroller, "dragleave", funcs.leave);
- toggle(cm.display.scroller, "drop", funcs.drop);
- }
- }
-
- function wrappingChanged(cm) {
- if (cm.options.lineWrapping) {
- addClass(cm.display.wrapper, "CodeMirror-wrap");
- cm.display.sizer.style.minWidth = "";
- cm.display.sizerWidth = null;
- } else {
- rmClass(cm.display.wrapper, "CodeMirror-wrap");
- findMaxLine(cm);
- }
- estimateLineHeights(cm);
- regChange(cm);
- clearCaches(cm);
- setTimeout(function () { return updateScrollbars(cm); }, 100);
- }
-
- // A CodeMirror instance represents an editor. This is the object
- // that user code is usually dealing with.
-
- function CodeMirror(place, options) {
- var this$1 = this;
-
- if (!(this instanceof CodeMirror)) { return new CodeMirror(place, options) }
-
- this.options = options = options ? copyObj(options) : {};
- // Determine effective options based on given values and defaults.
- copyObj(defaults, options, false);
-
- var doc = options.value;
- if (typeof doc == "string") { doc = new Doc(doc, options.mode, null, options.lineSeparator, options.direction); }
- else if (options.mode) { doc.modeOption = options.mode; }
- this.doc = doc;
-
- var input = new CodeMirror.inputStyles[options.inputStyle](this);
- var display = this.display = new Display(place, doc, input, options);
- display.wrapper.CodeMirror = this;
- themeChanged(this);
- if (options.lineWrapping)
- { this.display.wrapper.className += " CodeMirror-wrap"; }
- initScrollbars(this);
-
- this.state = {
- keyMaps: [], // stores maps added by addKeyMap
- overlays: [], // highlighting overlays, as added by addOverlay
- modeGen: 0, // bumped when mode/overlay changes, used to invalidate highlighting info
- overwrite: false,
- delayingBlurEvent: false,
- focused: false,
- suppressEdits: false, // used to disable editing during key handlers when in readOnly mode
- pasteIncoming: -1, cutIncoming: -1, // help recognize paste/cut edits in input.poll
- selectingText: false,
- draggingText: false,
- highlight: new Delayed(), // stores highlight worker timeout
- keySeq: null, // Unfinished key sequence
- specialChars: null
- };
-
- if (options.autofocus && !mobile) { display.input.focus(); }
-
- // Override magic textarea content restore that IE sometimes does
- // on our hidden textarea on reload
- if (ie && ie_version < 11) { setTimeout(function () { return this$1.display.input.reset(true); }, 20); }
-
- registerEventHandlers(this);
- ensureGlobalHandlers();
-
- startOperation(this);
- this.curOp.forceUpdate = true;
- attachDoc(this, doc);
-
- if ((options.autofocus && !mobile) || this.hasFocus())
- { setTimeout(bind(onFocus, this), 20); }
- else
- { onBlur(this); }
-
- for (var opt in optionHandlers) { if (optionHandlers.hasOwnProperty(opt))
- { optionHandlers[opt](this, options[opt], Init); } }
- maybeUpdateLineNumberWidth(this);
- if (options.finishInit) { options.finishInit(this); }
- for (var i = 0; i < initHooks.length; ++i) { initHooks[i](this); }
- endOperation(this);
- // Suppress optimizelegibility in Webkit, since it breaks text
- // measuring on line wrapping boundaries.
- if (webkit && options.lineWrapping &&
- getComputedStyle(display.lineDiv).textRendering == "optimizelegibility")
- { display.lineDiv.style.textRendering = "auto"; }
- }
-
- // The default configuration options.
- CodeMirror.defaults = defaults;
- // Functions to run when options are changed.
- CodeMirror.optionHandlers = optionHandlers;
-
- // Attach the necessary event handlers when initializing the editor
- function registerEventHandlers(cm) {
- var d = cm.display;
- on(d.scroller, "mousedown", operation(cm, onMouseDown));
- // Older IE's will not fire a second mousedown for a double click
- if (ie && ie_version < 11)
- { on(d.scroller, "dblclick", operation(cm, function (e) {
- if (signalDOMEvent(cm, e)) { return }
- var pos = posFromMouse(cm, e);
- if (!pos || clickInGutter(cm, e) || eventInWidget(cm.display, e)) { return }
- e_preventDefault(e);
- var word = cm.findWordAt(pos);
- extendSelection(cm.doc, word.anchor, word.head);
- })); }
- else
- { on(d.scroller, "dblclick", function (e) { return signalDOMEvent(cm, e) || e_preventDefault(e); }); }
- // Some browsers fire contextmenu *after* opening the menu, at
- // which point we can't mess with it anymore. Context menu is
- // handled in onMouseDown for these browsers.
- on(d.scroller, "contextmenu", function (e) { return onContextMenu(cm, e); });
- on(d.input.getField(), "contextmenu", function (e) {
- if (!d.scroller.contains(e.target)) { onContextMenu(cm, e); }
- });
-
- // Used to suppress mouse event handling when a touch happens
- var touchFinished, prevTouch = {end: 0};
- function finishTouch() {
- if (d.activeTouch) {
- touchFinished = setTimeout(function () { return d.activeTouch = null; }, 1000);
- prevTouch = d.activeTouch;
- prevTouch.end = +new Date;
- }
- }
- function isMouseLikeTouchEvent(e) {
- if (e.touches.length != 1) { return false }
- var touch = e.touches[0];
- return touch.radiusX <= 1 && touch.radiusY <= 1
- }
- function farAway(touch, other) {
- if (other.left == null) { return true }
- var dx = other.left - touch.left, dy = other.top - touch.top;
- return dx * dx + dy * dy > 20 * 20
- }
- on(d.scroller, "touchstart", function (e) {
- if (!signalDOMEvent(cm, e) && !isMouseLikeTouchEvent(e) && !clickInGutter(cm, e)) {
- d.input.ensurePolled();
- clearTimeout(touchFinished);
- var now = +new Date;
- d.activeTouch = {start: now, moved: false,
- prev: now - prevTouch.end <= 300 ? prevTouch : null};
- if (e.touches.length == 1) {
- d.activeTouch.left = e.touches[0].pageX;
- d.activeTouch.top = e.touches[0].pageY;
- }
- }
- });
- on(d.scroller, "touchmove", function () {
- if (d.activeTouch) { d.activeTouch.moved = true; }
- });
- on(d.scroller, "touchend", function (e) {
- var touch = d.activeTouch;
- if (touch && !eventInWidget(d, e) && touch.left != null &&
- !touch.moved && new Date - touch.start < 300) {
- var pos = cm.coordsChar(d.activeTouch, "page"), range;
- if (!touch.prev || farAway(touch, touch.prev)) // Single tap
- { range = new Range(pos, pos); }
- else if (!touch.prev.prev || farAway(touch, touch.prev.prev)) // Double tap
- { range = cm.findWordAt(pos); }
- else // Triple tap
- { range = new Range(Pos(pos.line, 0), clipPos(cm.doc, Pos(pos.line + 1, 0))); }
- cm.setSelection(range.anchor, range.head);
- cm.focus();
- e_preventDefault(e);
- }
- finishTouch();
- });
- on(d.scroller, "touchcancel", finishTouch);
-
- // Sync scrolling between fake scrollbars and real scrollable
- // area, ensure viewport is updated when scrolling.
- on(d.scroller, "scroll", function () {
- if (d.scroller.clientHeight) {
- updateScrollTop(cm, d.scroller.scrollTop);
- setScrollLeft(cm, d.scroller.scrollLeft, true);
- signal(cm, "scroll", cm);
- }
- });
-
- // Listen to wheel events in order to try and update the viewport on time.
- on(d.scroller, "mousewheel", function (e) { return onScrollWheel(cm, e); });
- on(d.scroller, "DOMMouseScroll", function (e) { return onScrollWheel(cm, e); });
-
- // Prevent wrapper from ever scrolling
- on(d.wrapper, "scroll", function () { return d.wrapper.scrollTop = d.wrapper.scrollLeft = 0; });
-
- d.dragFunctions = {
- enter: function (e) {if (!signalDOMEvent(cm, e)) { e_stop(e); }},
- over: function (e) {if (!signalDOMEvent(cm, e)) { onDragOver(cm, e); e_stop(e); }},
- start: function (e) { return onDragStart(cm, e); },
- drop: operation(cm, onDrop),
- leave: function (e) {if (!signalDOMEvent(cm, e)) { clearDragCursor(cm); }}
- };
-
- var inp = d.input.getField();
- on(inp, "keyup", function (e) { return onKeyUp.call(cm, e); });
- on(inp, "keydown", operation(cm, onKeyDown));
- on(inp, "keypress", operation(cm, onKeyPress));
- on(inp, "focus", function (e) { return onFocus(cm, e); });
- on(inp, "blur", function (e) { return onBlur(cm, e); });
- }
-
- var initHooks = [];
- CodeMirror.defineInitHook = function (f) { return initHooks.push(f); };
-
- // Indent the given line. The how parameter can be "smart",
- // "add"/null, "subtract", or "prev". When aggressive is false
- // (typically set to true for forced single-line indents), empty
- // lines are not indented, and places where the mode returns Pass
- // are left alone.
- function indentLine(cm, n, how, aggressive) {
- var doc = cm.doc, state;
- if (how == null) { how = "add"; }
- if (how == "smart") {
- // Fall back to "prev" when the mode doesn't have an indentation
- // method.
- if (!doc.mode.indent) { how = "prev"; }
- else { state = getContextBefore(cm, n).state; }
- }
-
- var tabSize = cm.options.tabSize;
- var line = getLine(doc, n), curSpace = countColumn(line.text, null, tabSize);
- if (line.stateAfter) { line.stateAfter = null; }
- var curSpaceString = line.text.match(/^\s*/)[0], indentation;
- if (!aggressive && !/\S/.test(line.text)) {
- indentation = 0;
- how = "not";
- } else if (how == "smart") {
- indentation = doc.mode.indent(state, line.text.slice(curSpaceString.length), line.text);
- if (indentation == Pass || indentation > 150) {
- if (!aggressive) { return }
- how = "prev";
- }
- }
- if (how == "prev") {
- if (n > doc.first) { indentation = countColumn(getLine(doc, n-1).text, null, tabSize); }
- else { indentation = 0; }
- } else if (how == "add") {
- indentation = curSpace + cm.options.indentUnit;
- } else if (how == "subtract") {
- indentation = curSpace - cm.options.indentUnit;
- } else if (typeof how == "number") {
- indentation = curSpace + how;
- }
- indentation = Math.max(0, indentation);
-
- var indentString = "", pos = 0;
- if (cm.options.indentWithTabs)
- { for (var i = Math.floor(indentation / tabSize); i; --i) {pos += tabSize; indentString += "\t";} }
- if (pos < indentation) { indentString += spaceStr(indentation - pos); }
-
- if (indentString != curSpaceString) {
- replaceRange(doc, indentString, Pos(n, 0), Pos(n, curSpaceString.length), "+input");
- line.stateAfter = null;
- return true
- } else {
- // Ensure that, if the cursor was in the whitespace at the start
- // of the line, it is moved to the end of that space.
- for (var i$1 = 0; i$1 < doc.sel.ranges.length; i$1++) {
- var range = doc.sel.ranges[i$1];
- if (range.head.line == n && range.head.ch < curSpaceString.length) {
- var pos$1 = Pos(n, curSpaceString.length);
- replaceOneSelection(doc, i$1, new Range(pos$1, pos$1));
- break
- }
- }
- }
- }
-
- // This will be set to a {lineWise: bool, text: [string]} object, so
- // that, when pasting, we know what kind of selections the copied
- // text was made out of.
- var lastCopied = null;
-
- function setLastCopied(newLastCopied) {
- lastCopied = newLastCopied;
- }
-
- function applyTextInput(cm, inserted, deleted, sel, origin) {
- var doc = cm.doc;
- cm.display.shift = false;
- if (!sel) { sel = doc.sel; }
-
- var recent = +new Date - 200;
- var paste = origin == "paste" || cm.state.pasteIncoming > recent;
- var textLines = splitLinesAuto(inserted), multiPaste = null;
- // When pasting N lines into N selections, insert one line per selection
- if (paste && sel.ranges.length > 1) {
- if (lastCopied && lastCopied.text.join("\n") == inserted) {
- if (sel.ranges.length % lastCopied.text.length == 0) {
- multiPaste = [];
- for (var i = 0; i < lastCopied.text.length; i++)
- { multiPaste.push(doc.splitLines(lastCopied.text[i])); }
- }
- } else if (textLines.length == sel.ranges.length && cm.options.pasteLinesPerSelection) {
- multiPaste = map(textLines, function (l) { return [l]; });
- }
- }
-
- var updateInput = cm.curOp.updateInput;
- // Normal behavior is to insert the new text into every selection
- for (var i$1 = sel.ranges.length - 1; i$1 >= 0; i$1--) {
- var range = sel.ranges[i$1];
- var from = range.from(), to = range.to();
- if (range.empty()) {
- if (deleted && deleted > 0) // Handle deletion
- { from = Pos(from.line, from.ch - deleted); }
- else if (cm.state.overwrite && !paste) // Handle overwrite
- { to = Pos(to.line, Math.min(getLine(doc, to.line).text.length, to.ch + lst(textLines).length)); }
- else if (paste && lastCopied && lastCopied.lineWise && lastCopied.text.join("\n") == inserted)
- { from = to = Pos(from.line, 0); }
- }
- var changeEvent = {from: from, to: to, text: multiPaste ? multiPaste[i$1 % multiPaste.length] : textLines,
- origin: origin || (paste ? "paste" : cm.state.cutIncoming > recent ? "cut" : "+input")};
- makeChange(cm.doc, changeEvent);
- signalLater(cm, "inputRead", cm, changeEvent);
- }
- if (inserted && !paste)
- { triggerElectric(cm, inserted); }
-
- ensureCursorVisible(cm);
- if (cm.curOp.updateInput < 2) { cm.curOp.updateInput = updateInput; }
- cm.curOp.typing = true;
- cm.state.pasteIncoming = cm.state.cutIncoming = -1;
- }
-
- function handlePaste(e, cm) {
- var pasted = e.clipboardData && e.clipboardData.getData("Text");
- if (pasted) {
- e.preventDefault();
- if (!cm.isReadOnly() && !cm.options.disableInput)
- { runInOp(cm, function () { return applyTextInput(cm, pasted, 0, null, "paste"); }); }
- return true
- }
- }
-
- function triggerElectric(cm, inserted) {
- // When an 'electric' character is inserted, immediately trigger a reindent
- if (!cm.options.electricChars || !cm.options.smartIndent) { return }
- var sel = cm.doc.sel;
-
- for (var i = sel.ranges.length - 1; i >= 0; i--) {
- var range = sel.ranges[i];
- if (range.head.ch > 100 || (i && sel.ranges[i - 1].head.line == range.head.line)) { continue }
- var mode = cm.getModeAt(range.head);
- var indented = false;
- if (mode.electricChars) {
- for (var j = 0; j < mode.electricChars.length; j++)
- { if (inserted.indexOf(mode.electricChars.charAt(j)) > -1) {
- indented = indentLine(cm, range.head.line, "smart");
- break
- } }
- } else if (mode.electricInput) {
- if (mode.electricInput.test(getLine(cm.doc, range.head.line).text.slice(0, range.head.ch)))
- { indented = indentLine(cm, range.head.line, "smart"); }
- }
- if (indented) { signalLater(cm, "electricInput", cm, range.head.line); }
- }
- }
-
- function copyableRanges(cm) {
- var text = [], ranges = [];
- for (var i = 0; i < cm.doc.sel.ranges.length; i++) {
- var line = cm.doc.sel.ranges[i].head.line;
- var lineRange = {anchor: Pos(line, 0), head: Pos(line + 1, 0)};
- ranges.push(lineRange);
- text.push(cm.getRange(lineRange.anchor, lineRange.head));
- }
- return {text: text, ranges: ranges}
- }
-
- function disableBrowserMagic(field, spellcheck, autocorrect, autocapitalize) {
- field.setAttribute("autocorrect", autocorrect ? "" : "off");
- field.setAttribute("autocapitalize", autocapitalize ? "" : "off");
- field.setAttribute("spellcheck", !!spellcheck);
- }
-
- function hiddenTextarea() {
- var te = elt("textarea", null, null, "position: absolute; bottom: -1em; padding: 0; width: 1px; height: 1em; outline: none");
- var div = elt("div", [te], null, "overflow: hidden; position: relative; width: 3px; height: 0px;");
- // The textarea is kept positioned near the cursor to prevent the
- // fact that it'll be scrolled into view on input from scrolling
- // our fake cursor out of view. On webkit, when wrap=off, paste is
- // very slow. So make the area wide instead.
- if (webkit) { te.style.width = "1000px"; }
- else { te.setAttribute("wrap", "off"); }
- // If border: 0; -- iOS fails to open keyboard (issue #1287)
- if (ios) { te.style.border = "1px solid black"; }
- disableBrowserMagic(te);
- return div
- }
-
- // The publicly visible API. Note that methodOp(f) means
- // 'wrap f in an operation, performed on its `this` parameter'.
-
- // This is not the complete set of editor methods. Most of the
- // methods defined on the Doc type are also injected into
- // CodeMirror.prototype, for backwards compatibility and
- // convenience.
-
- function addEditorMethods(CodeMirror) {
- var optionHandlers = CodeMirror.optionHandlers;
-
- var helpers = CodeMirror.helpers = {};
-
- CodeMirror.prototype = {
- constructor: CodeMirror,
- focus: function(){window.focus(); this.display.input.focus();},
-
- setOption: function(option, value) {
- var options = this.options, old = options[option];
- if (options[option] == value && option != "mode") { return }
- options[option] = value;
- if (optionHandlers.hasOwnProperty(option))
- { operation(this, optionHandlers[option])(this, value, old); }
- signal(this, "optionChange", this, option);
- },
-
- getOption: function(option) {return this.options[option]},
- getDoc: function() {return this.doc},
-
- addKeyMap: function(map, bottom) {
- this.state.keyMaps[bottom ? "push" : "unshift"](getKeyMap(map));
- },
- removeKeyMap: function(map) {
- var maps = this.state.keyMaps;
- for (var i = 0; i < maps.length; ++i)
- { if (maps[i] == map || maps[i].name == map) {
- maps.splice(i, 1);
- return true
- } }
- },
-
- addOverlay: methodOp(function(spec, options) {
- var mode = spec.token ? spec : CodeMirror.getMode(this.options, spec);
- if (mode.startState) { throw new Error("Overlays may not be stateful.") }
- insertSorted(this.state.overlays,
- {mode: mode, modeSpec: spec, opaque: options && options.opaque,
- priority: (options && options.priority) || 0},
- function (overlay) { return overlay.priority; });
- this.state.modeGen++;
- regChange(this);
- }),
- removeOverlay: methodOp(function(spec) {
- var overlays = this.state.overlays;
- for (var i = 0; i < overlays.length; ++i) {
- var cur = overlays[i].modeSpec;
- if (cur == spec || typeof spec == "string" && cur.name == spec) {
- overlays.splice(i, 1);
- this.state.modeGen++;
- regChange(this);
- return
- }
- }
- }),
-
- indentLine: methodOp(function(n, dir, aggressive) {
- if (typeof dir != "string" && typeof dir != "number") {
- if (dir == null) { dir = this.options.smartIndent ? "smart" : "prev"; }
- else { dir = dir ? "add" : "subtract"; }
- }
- if (isLine(this.doc, n)) { indentLine(this, n, dir, aggressive); }
- }),
- indentSelection: methodOp(function(how) {
- var ranges = this.doc.sel.ranges, end = -1;
- for (var i = 0; i < ranges.length; i++) {
- var range = ranges[i];
- if (!range.empty()) {
- var from = range.from(), to = range.to();
- var start = Math.max(end, from.line);
- end = Math.min(this.lastLine(), to.line - (to.ch ? 0 : 1)) + 1;
- for (var j = start; j < end; ++j)
- { indentLine(this, j, how); }
- var newRanges = this.doc.sel.ranges;
- if (from.ch == 0 && ranges.length == newRanges.length && newRanges[i].from().ch > 0)
- { replaceOneSelection(this.doc, i, new Range(from, newRanges[i].to()), sel_dontScroll); }
- } else if (range.head.line > end) {
- indentLine(this, range.head.line, how, true);
- end = range.head.line;
- if (i == this.doc.sel.primIndex) { ensureCursorVisible(this); }
- }
- }
- }),
-
- // Fetch the parser token for a given character. Useful for hacks
- // that want to inspect the mode state (say, for completion).
- getTokenAt: function(pos, precise) {
- return takeToken(this, pos, precise)
- },
-
- getLineTokens: function(line, precise) {
- return takeToken(this, Pos(line), precise, true)
- },
-
- getTokenTypeAt: function(pos) {
- pos = clipPos(this.doc, pos);
- var styles = getLineStyles(this, getLine(this.doc, pos.line));
- var before = 0, after = (styles.length - 1) / 2, ch = pos.ch;
- var type;
- if (ch == 0) { type = styles[2]; }
- else { for (;;) {
- var mid = (before + after) >> 1;
- if ((mid ? styles[mid * 2 - 1] : 0) >= ch) { after = mid; }
- else if (styles[mid * 2 + 1] < ch) { before = mid + 1; }
- else { type = styles[mid * 2 + 2]; break }
- } }
- var cut = type ? type.indexOf("overlay ") : -1;
- return cut < 0 ? type : cut == 0 ? null : type.slice(0, cut - 1)
- },
-
- getModeAt: function(pos) {
- var mode = this.doc.mode;
- if (!mode.innerMode) { return mode }
- return CodeMirror.innerMode(mode, this.getTokenAt(pos).state).mode
- },
-
- getHelper: function(pos, type) {
- return this.getHelpers(pos, type)[0]
- },
-
- getHelpers: function(pos, type) {
- var found = [];
- if (!helpers.hasOwnProperty(type)) { return found }
- var help = helpers[type], mode = this.getModeAt(pos);
- if (typeof mode[type] == "string") {
- if (help[mode[type]]) { found.push(help[mode[type]]); }
- } else if (mode[type]) {
- for (var i = 0; i < mode[type].length; i++) {
- var val = help[mode[type][i]];
- if (val) { found.push(val); }
- }
- } else if (mode.helperType && help[mode.helperType]) {
- found.push(help[mode.helperType]);
- } else if (help[mode.name]) {
- found.push(help[mode.name]);
- }
- for (var i$1 = 0; i$1 < help._global.length; i$1++) {
- var cur = help._global[i$1];
- if (cur.pred(mode, this) && indexOf(found, cur.val) == -1)
- { found.push(cur.val); }
- }
- return found
- },
-
- getStateAfter: function(line, precise) {
- var doc = this.doc;
- line = clipLine(doc, line == null ? doc.first + doc.size - 1: line);
- return getContextBefore(this, line + 1, precise).state
- },
-
- cursorCoords: function(start, mode) {
- var pos, range = this.doc.sel.primary();
- if (start == null) { pos = range.head; }
- else if (typeof start == "object") { pos = clipPos(this.doc, start); }
- else { pos = start ? range.from() : range.to(); }
- return cursorCoords(this, pos, mode || "page")
- },
-
- charCoords: function(pos, mode) {
- return charCoords(this, clipPos(this.doc, pos), mode || "page")
- },
-
- coordsChar: function(coords, mode) {
- coords = fromCoordSystem(this, coords, mode || "page");
- return coordsChar(this, coords.left, coords.top)
- },
-
- lineAtHeight: function(height, mode) {
- height = fromCoordSystem(this, {top: height, left: 0}, mode || "page").top;
- return lineAtHeight(this.doc, height + this.display.viewOffset)
- },
- heightAtLine: function(line, mode, includeWidgets) {
- var end = false, lineObj;
- if (typeof line == "number") {
- var last = this.doc.first + this.doc.size - 1;
- if (line < this.doc.first) { line = this.doc.first; }
- else if (line > last) { line = last; end = true; }
- lineObj = getLine(this.doc, line);
- } else {
- lineObj = line;
- }
- return intoCoordSystem(this, lineObj, {top: 0, left: 0}, mode || "page", includeWidgets || end).top +
- (end ? this.doc.height - heightAtLine(lineObj) : 0)
- },
-
- defaultTextHeight: function() { return textHeight(this.display) },
- defaultCharWidth: function() { return charWidth(this.display) },
-
- getViewport: function() { return {from: this.display.viewFrom, to: this.display.viewTo}},
-
- addWidget: function(pos, node, scroll, vert, horiz) {
- var display = this.display;
- pos = cursorCoords(this, clipPos(this.doc, pos));
- var top = pos.bottom, left = pos.left;
- node.style.position = "absolute";
- node.setAttribute("cm-ignore-events", "true");
- this.display.input.setUneditable(node);
- display.sizer.appendChild(node);
- if (vert == "over") {
- top = pos.top;
- } else if (vert == "above" || vert == "near") {
- var vspace = Math.max(display.wrapper.clientHeight, this.doc.height),
- hspace = Math.max(display.sizer.clientWidth, display.lineSpace.clientWidth);
- // Default to positioning above (if specified and possible); otherwise default to positioning below
- if ((vert == 'above' || pos.bottom + node.offsetHeight > vspace) && pos.top > node.offsetHeight)
- { top = pos.top - node.offsetHeight; }
- else if (pos.bottom + node.offsetHeight <= vspace)
- { top = pos.bottom; }
- if (left + node.offsetWidth > hspace)
- { left = hspace - node.offsetWidth; }
- }
- node.style.top = top + "px";
- node.style.left = node.style.right = "";
- if (horiz == "right") {
- left = display.sizer.clientWidth - node.offsetWidth;
- node.style.right = "0px";
- } else {
- if (horiz == "left") { left = 0; }
- else if (horiz == "middle") { left = (display.sizer.clientWidth - node.offsetWidth) / 2; }
- node.style.left = left + "px";
- }
- if (scroll)
- { scrollIntoView(this, {left: left, top: top, right: left + node.offsetWidth, bottom: top + node.offsetHeight}); }
- },
-
- triggerOnKeyDown: methodOp(onKeyDown),
- triggerOnKeyPress: methodOp(onKeyPress),
- triggerOnKeyUp: onKeyUp,
- triggerOnMouseDown: methodOp(onMouseDown),
-
- execCommand: function(cmd) {
- if (commands.hasOwnProperty(cmd))
- { return commands[cmd].call(null, this) }
- },
-
- triggerElectric: methodOp(function(text) { triggerElectric(this, text); }),
-
- findPosH: function(from, amount, unit, visually) {
- var dir = 1;
- if (amount < 0) { dir = -1; amount = -amount; }
- var cur = clipPos(this.doc, from);
- for (var i = 0; i < amount; ++i) {
- cur = findPosH(this.doc, cur, dir, unit, visually);
- if (cur.hitSide) { break }
- }
- return cur
- },
-
- moveH: methodOp(function(dir, unit) {
- var this$1 = this;
-
- this.extendSelectionsBy(function (range) {
- if (this$1.display.shift || this$1.doc.extend || range.empty())
- { return findPosH(this$1.doc, range.head, dir, unit, this$1.options.rtlMoveVisually) }
- else
- { return dir < 0 ? range.from() : range.to() }
- }, sel_move);
- }),
-
- deleteH: methodOp(function(dir, unit) {
- var sel = this.doc.sel, doc = this.doc;
- if (sel.somethingSelected())
- { doc.replaceSelection("", null, "+delete"); }
- else
- { deleteNearSelection(this, function (range) {
- var other = findPosH(doc, range.head, dir, unit, false);
- return dir < 0 ? {from: other, to: range.head} : {from: range.head, to: other}
- }); }
- }),
-
- findPosV: function(from, amount, unit, goalColumn) {
- var dir = 1, x = goalColumn;
- if (amount < 0) { dir = -1; amount = -amount; }
- var cur = clipPos(this.doc, from);
- for (var i = 0; i < amount; ++i) {
- var coords = cursorCoords(this, cur, "div");
- if (x == null) { x = coords.left; }
- else { coords.left = x; }
- cur = findPosV(this, coords, dir, unit);
- if (cur.hitSide) { break }
- }
- return cur
- },
-
- moveV: methodOp(function(dir, unit) {
- var this$1 = this;
-
- var doc = this.doc, goals = [];
- var collapse = !this.display.shift && !doc.extend && doc.sel.somethingSelected();
- doc.extendSelectionsBy(function (range) {
- if (collapse)
- { return dir < 0 ? range.from() : range.to() }
- var headPos = cursorCoords(this$1, range.head, "div");
- if (range.goalColumn != null) { headPos.left = range.goalColumn; }
- goals.push(headPos.left);
- var pos = findPosV(this$1, headPos, dir, unit);
- if (unit == "page" && range == doc.sel.primary())
- { addToScrollTop(this$1, charCoords(this$1, pos, "div").top - headPos.top); }
- return pos
- }, sel_move);
- if (goals.length) { for (var i = 0; i < doc.sel.ranges.length; i++)
- { doc.sel.ranges[i].goalColumn = goals[i]; } }
- }),
-
- // Find the word at the given position (as returned by coordsChar).
- findWordAt: function(pos) {
- var doc = this.doc, line = getLine(doc, pos.line).text;
- var start = pos.ch, end = pos.ch;
- if (line) {
- var helper = this.getHelper(pos, "wordChars");
- if ((pos.sticky == "before" || end == line.length) && start) { --start; } else { ++end; }
- var startChar = line.charAt(start);
- var check = isWordChar(startChar, helper)
- ? function (ch) { return isWordChar(ch, helper); }
- : /\s/.test(startChar) ? function (ch) { return /\s/.test(ch); }
- : function (ch) { return (!/\s/.test(ch) && !isWordChar(ch)); };
- while (start > 0 && check(line.charAt(start - 1))) { --start; }
- while (end < line.length && check(line.charAt(end))) { ++end; }
- }
- return new Range(Pos(pos.line, start), Pos(pos.line, end))
- },
-
- toggleOverwrite: function(value) {
- if (value != null && value == this.state.overwrite) { return }
- if (this.state.overwrite = !this.state.overwrite)
- { addClass(this.display.cursorDiv, "CodeMirror-overwrite"); }
- else
- { rmClass(this.display.cursorDiv, "CodeMirror-overwrite"); }
-
- signal(this, "overwriteToggle", this, this.state.overwrite);
- },
- hasFocus: function() { return this.display.input.getField() == activeElt() },
- isReadOnly: function() { return !!(this.options.readOnly || this.doc.cantEdit) },
-
- scrollTo: methodOp(function (x, y) { scrollToCoords(this, x, y); }),
- getScrollInfo: function() {
- var scroller = this.display.scroller;
- return {left: scroller.scrollLeft, top: scroller.scrollTop,
- height: scroller.scrollHeight - scrollGap(this) - this.display.barHeight,
- width: scroller.scrollWidth - scrollGap(this) - this.display.barWidth,
- clientHeight: displayHeight(this), clientWidth: displayWidth(this)}
- },
-
- scrollIntoView: methodOp(function(range, margin) {
- if (range == null) {
- range = {from: this.doc.sel.primary().head, to: null};
- if (margin == null) { margin = this.options.cursorScrollMargin; }
- } else if (typeof range == "number") {
- range = {from: Pos(range, 0), to: null};
- } else if (range.from == null) {
- range = {from: range, to: null};
- }
- if (!range.to) { range.to = range.from; }
- range.margin = margin || 0;
-
- if (range.from.line != null) {
- scrollToRange(this, range);
- } else {
- scrollToCoordsRange(this, range.from, range.to, range.margin);
- }
- }),
-
- setSize: methodOp(function(width, height) {
- var this$1 = this;
-
- var interpret = function (val) { return typeof val == "number" || /^\d+$/.test(String(val)) ? val + "px" : val; };
- if (width != null) { this.display.wrapper.style.width = interpret(width); }
- if (height != null) { this.display.wrapper.style.height = interpret(height); }
- if (this.options.lineWrapping) { clearLineMeasurementCache(this); }
- var lineNo = this.display.viewFrom;
- this.doc.iter(lineNo, this.display.viewTo, function (line) {
- if (line.widgets) { for (var i = 0; i < line.widgets.length; i++)
- { if (line.widgets[i].noHScroll) { regLineChange(this$1, lineNo, "widget"); break } } }
- ++lineNo;
- });
- this.curOp.forceUpdate = true;
- signal(this, "refresh", this);
- }),
-
- operation: function(f){return runInOp(this, f)},
- startOperation: function(){return startOperation(this)},
- endOperation: function(){return endOperation(this)},
-
- refresh: methodOp(function() {
- var oldHeight = this.display.cachedTextHeight;
- regChange(this);
- this.curOp.forceUpdate = true;
- clearCaches(this);
- scrollToCoords(this, this.doc.scrollLeft, this.doc.scrollTop);
- updateGutterSpace(this.display);
- if (oldHeight == null || Math.abs(oldHeight - textHeight(this.display)) > .5)
- { estimateLineHeights(this); }
- signal(this, "refresh", this);
- }),
-
- swapDoc: methodOp(function(doc) {
- var old = this.doc;
- old.cm = null;
- // Cancel the current text selection if any (#5821)
- if (this.state.selectingText) { this.state.selectingText(); }
- attachDoc(this, doc);
- clearCaches(this);
- this.display.input.reset();
- scrollToCoords(this, doc.scrollLeft, doc.scrollTop);
- this.curOp.forceScroll = true;
- signalLater(this, "swapDoc", this, old);
- return old
- }),
-
- phrase: function(phraseText) {
- var phrases = this.options.phrases;
- return phrases && Object.prototype.hasOwnProperty.call(phrases, phraseText) ? phrases[phraseText] : phraseText
- },
-
- getInputField: function(){return this.display.input.getField()},
- getWrapperElement: function(){return this.display.wrapper},
- getScrollerElement: function(){return this.display.scroller},
- getGutterElement: function(){return this.display.gutters}
- };
- eventMixin(CodeMirror);
-
- CodeMirror.registerHelper = function(type, name, value) {
- if (!helpers.hasOwnProperty(type)) { helpers[type] = CodeMirror[type] = {_global: []}; }
- helpers[type][name] = value;
- };
- CodeMirror.registerGlobalHelper = function(type, name, predicate, value) {
- CodeMirror.registerHelper(type, name, value);
- helpers[type]._global.push({pred: predicate, val: value});
- };
- }
-
- // Used for horizontal relative motion. Dir is -1 or 1 (left or
- // right), unit can be "char", "column" (like char, but doesn't
- // cross line boundaries), "word" (across next word), or "group" (to
- // the start of next group of word or non-word-non-whitespace
- // chars). The visually param controls whether, in right-to-left
- // text, direction 1 means to move towards the next index in the
- // string, or towards the character to the right of the current
- // position. The resulting position will have a hitSide=true
- // property if it reached the end of the document.
- function findPosH(doc, pos, dir, unit, visually) {
- var oldPos = pos;
- var origDir = dir;
- var lineObj = getLine(doc, pos.line);
- var lineDir = visually && doc.direction == "rtl" ? -dir : dir;
- function findNextLine() {
- var l = pos.line + lineDir;
- if (l < doc.first || l >= doc.first + doc.size) { return false }
- pos = new Pos(l, pos.ch, pos.sticky);
- return lineObj = getLine(doc, l)
- }
- function moveOnce(boundToLine) {
- var next;
- if (visually) {
- next = moveVisually(doc.cm, lineObj, pos, dir);
- } else {
- next = moveLogically(lineObj, pos, dir);
- }
- if (next == null) {
- if (!boundToLine && findNextLine())
- { pos = endOfLine(visually, doc.cm, lineObj, pos.line, lineDir); }
- else
- { return false }
- } else {
- pos = next;
- }
- return true
- }
-
- if (unit == "char") {
- moveOnce();
- } else if (unit == "column") {
- moveOnce(true);
- } else if (unit == "word" || unit == "group") {
- var sawType = null, group = unit == "group";
- var helper = doc.cm && doc.cm.getHelper(pos, "wordChars");
- for (var first = true;; first = false) {
- if (dir < 0 && !moveOnce(!first)) { break }
- var cur = lineObj.text.charAt(pos.ch) || "\n";
- var type = isWordChar(cur, helper) ? "w"
- : group && cur == "\n" ? "n"
- : !group || /\s/.test(cur) ? null
- : "p";
- if (group && !first && !type) { type = "s"; }
- if (sawType && sawType != type) {
- if (dir < 0) {dir = 1; moveOnce(); pos.sticky = "after";}
- break
- }
-
- if (type) { sawType = type; }
- if (dir > 0 && !moveOnce(!first)) { break }
- }
- }
- var result = skipAtomic(doc, pos, oldPos, origDir, true);
- if (equalCursorPos(oldPos, result)) { result.hitSide = true; }
- return result
- }
-
- // For relative vertical movement. Dir may be -1 or 1. Unit can be
- // "page" or "line". The resulting position will have a hitSide=true
- // property if it reached the end of the document.
- function findPosV(cm, pos, dir, unit) {
- var doc = cm.doc, x = pos.left, y;
- if (unit == "page") {
- var pageSize = Math.min(cm.display.wrapper.clientHeight, window.innerHeight || document.documentElement.clientHeight);
- var moveAmount = Math.max(pageSize - .5 * textHeight(cm.display), 3);
- y = (dir > 0 ? pos.bottom : pos.top) + dir * moveAmount;
-
- } else if (unit == "line") {
- y = dir > 0 ? pos.bottom + 3 : pos.top - 3;
- }
- var target;
- for (;;) {
- target = coordsChar(cm, x, y);
- if (!target.outside) { break }
- if (dir < 0 ? y <= 0 : y >= doc.height) { target.hitSide = true; break }
- y += dir * 5;
- }
- return target
- }
-
- // CONTENTEDITABLE INPUT STYLE
-
- var ContentEditableInput = function(cm) {
- this.cm = cm;
- this.lastAnchorNode = this.lastAnchorOffset = this.lastFocusNode = this.lastFocusOffset = null;
- this.polling = new Delayed();
- this.composing = null;
- this.gracePeriod = false;
- this.readDOMTimeout = null;
- };
-
- ContentEditableInput.prototype.init = function (display) {
- var this$1 = this;
-
- var input = this, cm = input.cm;
- var div = input.div = display.lineDiv;
- disableBrowserMagic(div, cm.options.spellcheck, cm.options.autocorrect, cm.options.autocapitalize);
-
- on(div, "paste", function (e) {
- if (signalDOMEvent(cm, e) || handlePaste(e, cm)) { return }
- // IE doesn't fire input events, so we schedule a read for the pasted content in this way
- if (ie_version <= 11) { setTimeout(operation(cm, function () { return this$1.updateFromDOM(); }), 20); }
- });
-
- on(div, "compositionstart", function (e) {
- this$1.composing = {data: e.data, done: false};
- });
- on(div, "compositionupdate", function (e) {
- if (!this$1.composing) { this$1.composing = {data: e.data, done: false}; }
- });
- on(div, "compositionend", function (e) {
- if (this$1.composing) {
- if (e.data != this$1.composing.data) { this$1.readFromDOMSoon(); }
- this$1.composing.done = true;
- }
- });
-
- on(div, "touchstart", function () { return input.forceCompositionEnd(); });
-
- on(div, "input", function () {
- if (!this$1.composing) { this$1.readFromDOMSoon(); }
- });
-
- function onCopyCut(e) {
- if (signalDOMEvent(cm, e)) { return }
- if (cm.somethingSelected()) {
- setLastCopied({lineWise: false, text: cm.getSelections()});
- if (e.type == "cut") { cm.replaceSelection("", null, "cut"); }
- } else if (!cm.options.lineWiseCopyCut) {
- return
- } else {
- var ranges = copyableRanges(cm);
- setLastCopied({lineWise: true, text: ranges.text});
- if (e.type == "cut") {
- cm.operation(function () {
- cm.setSelections(ranges.ranges, 0, sel_dontScroll);
- cm.replaceSelection("", null, "cut");
- });
- }
- }
- if (e.clipboardData) {
- e.clipboardData.clearData();
- var content = lastCopied.text.join("\n");
- // iOS exposes the clipboard API, but seems to discard content inserted into it
- e.clipboardData.setData("Text", content);
- if (e.clipboardData.getData("Text") == content) {
- e.preventDefault();
- return
- }
- }
- // Old-fashioned briefly-focus-a-textarea hack
- var kludge = hiddenTextarea(), te = kludge.firstChild;
- cm.display.lineSpace.insertBefore(kludge, cm.display.lineSpace.firstChild);
- te.value = lastCopied.text.join("\n");
- var hadFocus = document.activeElement;
- selectInput(te);
- setTimeout(function () {
- cm.display.lineSpace.removeChild(kludge);
- hadFocus.focus();
- if (hadFocus == div) { input.showPrimarySelection(); }
- }, 50);
- }
- on(div, "copy", onCopyCut);
- on(div, "cut", onCopyCut);
- };
-
- ContentEditableInput.prototype.prepareSelection = function () {
- var result = prepareSelection(this.cm, false);
- result.focus = this.cm.state.focused;
- return result
- };
-
- ContentEditableInput.prototype.showSelection = function (info, takeFocus) {
- if (!info || !this.cm.display.view.length) { return }
- if (info.focus || takeFocus) { this.showPrimarySelection(); }
- this.showMultipleSelections(info);
- };
-
- ContentEditableInput.prototype.getSelection = function () {
- return this.cm.display.wrapper.ownerDocument.getSelection()
- };
-
- ContentEditableInput.prototype.showPrimarySelection = function () {
- var sel = this.getSelection(), cm = this.cm, prim = cm.doc.sel.primary();
- var from = prim.from(), to = prim.to();
-
- if (cm.display.viewTo == cm.display.viewFrom || from.line >= cm.display.viewTo || to.line < cm.display.viewFrom) {
- sel.removeAllRanges();
- return
- }
-
- var curAnchor = domToPos(cm, sel.anchorNode, sel.anchorOffset);
- var curFocus = domToPos(cm, sel.focusNode, sel.focusOffset);
- if (curAnchor && !curAnchor.bad && curFocus && !curFocus.bad &&
- cmp(minPos(curAnchor, curFocus), from) == 0 &&
- cmp(maxPos(curAnchor, curFocus), to) == 0)
- { return }
-
- var view = cm.display.view;
- var start = (from.line >= cm.display.viewFrom && posToDOM(cm, from)) ||
- {node: view[0].measure.map[2], offset: 0};
- var end = to.line < cm.display.viewTo && posToDOM(cm, to);
- if (!end) {
- var measure = view[view.length - 1].measure;
- var map = measure.maps ? measure.maps[measure.maps.length - 1] : measure.map;
- end = {node: map[map.length - 1], offset: map[map.length - 2] - map[map.length - 3]};
- }
-
- if (!start || !end) {
- sel.removeAllRanges();
- return
- }
-
- var old = sel.rangeCount && sel.getRangeAt(0), rng;
- try { rng = range(start.node, start.offset, end.offset, end.node); }
- catch(e) {} // Our model of the DOM might be outdated, in which case the range we try to set can be impossible
- if (rng) {
- if (!gecko && cm.state.focused) {
- sel.collapse(start.node, start.offset);
- if (!rng.collapsed) {
- sel.removeAllRanges();
- sel.addRange(rng);
- }
- } else {
- sel.removeAllRanges();
- sel.addRange(rng);
- }
- if (old && sel.anchorNode == null) { sel.addRange(old); }
- else if (gecko) { this.startGracePeriod(); }
- }
- this.rememberSelection();
- };
-
- ContentEditableInput.prototype.startGracePeriod = function () {
- var this$1 = this;
-
- clearTimeout(this.gracePeriod);
- this.gracePeriod = setTimeout(function () {
- this$1.gracePeriod = false;
- if (this$1.selectionChanged())
- { this$1.cm.operation(function () { return this$1.cm.curOp.selectionChanged = true; }); }
- }, 20);
- };
-
- ContentEditableInput.prototype.showMultipleSelections = function (info) {
- removeChildrenAndAdd(this.cm.display.cursorDiv, info.cursors);
- removeChildrenAndAdd(this.cm.display.selectionDiv, info.selection);
- };
-
- ContentEditableInput.prototype.rememberSelection = function () {
- var sel = this.getSelection();
- this.lastAnchorNode = sel.anchorNode; this.lastAnchorOffset = sel.anchorOffset;
- this.lastFocusNode = sel.focusNode; this.lastFocusOffset = sel.focusOffset;
- };
-
- ContentEditableInput.prototype.selectionInEditor = function () {
- var sel = this.getSelection();
- if (!sel.rangeCount) { return false }
- var node = sel.getRangeAt(0).commonAncestorContainer;
- return contains(this.div, node)
- };
-
- ContentEditableInput.prototype.focus = function () {
- if (this.cm.options.readOnly != "nocursor") {
- if (!this.selectionInEditor())
- { this.showSelection(this.prepareSelection(), true); }
- this.div.focus();
- }
- };
- ContentEditableInput.prototype.blur = function () { this.div.blur(); };
- ContentEditableInput.prototype.getField = function () { return this.div };
-
- ContentEditableInput.prototype.supportsTouch = function () { return true };
-
- ContentEditableInput.prototype.receivedFocus = function () {
- var input = this;
- if (this.selectionInEditor())
- { this.pollSelection(); }
- else
- { runInOp(this.cm, function () { return input.cm.curOp.selectionChanged = true; }); }
-
- function poll() {
- if (input.cm.state.focused) {
- input.pollSelection();
- input.polling.set(input.cm.options.pollInterval, poll);
- }
- }
- this.polling.set(this.cm.options.pollInterval, poll);
- };
-
- ContentEditableInput.prototype.selectionChanged = function () {
- var sel = this.getSelection();
- return sel.anchorNode != this.lastAnchorNode || sel.anchorOffset != this.lastAnchorOffset ||
- sel.focusNode != this.lastFocusNode || sel.focusOffset != this.lastFocusOffset
- };
-
- ContentEditableInput.prototype.pollSelection = function () {
- if (this.readDOMTimeout != null || this.gracePeriod || !this.selectionChanged()) { return }
- var sel = this.getSelection(), cm = this.cm;
- // On Android Chrome (version 56, at least), backspacing into an
- // uneditable block element will put the cursor in that element,
- // and then, because it's not editable, hide the virtual keyboard.
- // Because Android doesn't allow us to actually detect backspace
- // presses in a sane way, this code checks for when that happens
- // and simulates a backspace press in this case.
- if (android && chrome && this.cm.display.gutterSpecs.length && isInGutter(sel.anchorNode)) {
- this.cm.triggerOnKeyDown({type: "keydown", keyCode: 8, preventDefault: Math.abs});
- this.blur();
- this.focus();
- return
- }
- if (this.composing) { return }
- this.rememberSelection();
- var anchor = domToPos(cm, sel.anchorNode, sel.anchorOffset);
- var head = domToPos(cm, sel.focusNode, sel.focusOffset);
- if (anchor && head) { runInOp(cm, function () {
- setSelection(cm.doc, simpleSelection(anchor, head), sel_dontScroll);
- if (anchor.bad || head.bad) { cm.curOp.selectionChanged = true; }
- }); }
- };
-
- ContentEditableInput.prototype.pollContent = function () {
- if (this.readDOMTimeout != null) {
- clearTimeout(this.readDOMTimeout);
- this.readDOMTimeout = null;
- }
-
- var cm = this.cm, display = cm.display, sel = cm.doc.sel.primary();
- var from = sel.from(), to = sel.to();
- if (from.ch == 0 && from.line > cm.firstLine())
- { from = Pos(from.line - 1, getLine(cm.doc, from.line - 1).length); }
- if (to.ch == getLine(cm.doc, to.line).text.length && to.line < cm.lastLine())
- { to = Pos(to.line + 1, 0); }
- if (from.line < display.viewFrom || to.line > display.viewTo - 1) { return false }
-
- var fromIndex, fromLine, fromNode;
- if (from.line == display.viewFrom || (fromIndex = findViewIndex(cm, from.line)) == 0) {
- fromLine = lineNo(display.view[0].line);
- fromNode = display.view[0].node;
- } else {
- fromLine = lineNo(display.view[fromIndex].line);
- fromNode = display.view[fromIndex - 1].node.nextSibling;
- }
- var toIndex = findViewIndex(cm, to.line);
- var toLine, toNode;
- if (toIndex == display.view.length - 1) {
- toLine = display.viewTo - 1;
- toNode = display.lineDiv.lastChild;
- } else {
- toLine = lineNo(display.view[toIndex + 1].line) - 1;
- toNode = display.view[toIndex + 1].node.previousSibling;
- }
-
- if (!fromNode) { return false }
- var newText = cm.doc.splitLines(domTextBetween(cm, fromNode, toNode, fromLine, toLine));
- var oldText = getBetween(cm.doc, Pos(fromLine, 0), Pos(toLine, getLine(cm.doc, toLine).text.length));
- while (newText.length > 1 && oldText.length > 1) {
- if (lst(newText) == lst(oldText)) { newText.pop(); oldText.pop(); toLine--; }
- else if (newText[0] == oldText[0]) { newText.shift(); oldText.shift(); fromLine++; }
- else { break }
- }
-
- var cutFront = 0, cutEnd = 0;
- var newTop = newText[0], oldTop = oldText[0], maxCutFront = Math.min(newTop.length, oldTop.length);
- while (cutFront < maxCutFront && newTop.charCodeAt(cutFront) == oldTop.charCodeAt(cutFront))
- { ++cutFront; }
- var newBot = lst(newText), oldBot = lst(oldText);
- var maxCutEnd = Math.min(newBot.length - (newText.length == 1 ? cutFront : 0),
- oldBot.length - (oldText.length == 1 ? cutFront : 0));
- while (cutEnd < maxCutEnd &&
- newBot.charCodeAt(newBot.length - cutEnd - 1) == oldBot.charCodeAt(oldBot.length - cutEnd - 1))
- { ++cutEnd; }
- // Try to move start of change to start of selection if ambiguous
- if (newText.length == 1 && oldText.length == 1 && fromLine == from.line) {
- while (cutFront && cutFront > from.ch &&
- newBot.charCodeAt(newBot.length - cutEnd - 1) == oldBot.charCodeAt(oldBot.length - cutEnd - 1)) {
- cutFront--;
- cutEnd++;
- }
- }
-
- newText[newText.length - 1] = newBot.slice(0, newBot.length - cutEnd).replace(/^\u200b+/, "");
- newText[0] = newText[0].slice(cutFront).replace(/\u200b+$/, "");
-
- var chFrom = Pos(fromLine, cutFront);
- var chTo = Pos(toLine, oldText.length ? lst(oldText).length - cutEnd : 0);
- if (newText.length > 1 || newText[0] || cmp(chFrom, chTo)) {
- replaceRange(cm.doc, newText, chFrom, chTo, "+input");
- return true
- }
- };
-
- ContentEditableInput.prototype.ensurePolled = function () {
- this.forceCompositionEnd();
- };
- ContentEditableInput.prototype.reset = function () {
- this.forceCompositionEnd();
- };
- ContentEditableInput.prototype.forceCompositionEnd = function () {
- if (!this.composing) { return }
- clearTimeout(this.readDOMTimeout);
- this.composing = null;
- this.updateFromDOM();
- this.div.blur();
- this.div.focus();
- };
- ContentEditableInput.prototype.readFromDOMSoon = function () {
- var this$1 = this;
-
- if (this.readDOMTimeout != null) { return }
- this.readDOMTimeout = setTimeout(function () {
- this$1.readDOMTimeout = null;
- if (this$1.composing) {
- if (this$1.composing.done) { this$1.composing = null; }
- else { return }
- }
- this$1.updateFromDOM();
- }, 80);
- };
-
- ContentEditableInput.prototype.updateFromDOM = function () {
- var this$1 = this;
-
- if (this.cm.isReadOnly() || !this.pollContent())
- { runInOp(this.cm, function () { return regChange(this$1.cm); }); }
- };
-
- ContentEditableInput.prototype.setUneditable = function (node) {
- node.contentEditable = "false";
- };
-
- ContentEditableInput.prototype.onKeyPress = function (e) {
- if (e.charCode == 0 || this.composing) { return }
- e.preventDefault();
- if (!this.cm.isReadOnly())
- { operation(this.cm, applyTextInput)(this.cm, String.fromCharCode(e.charCode == null ? e.keyCode : e.charCode), 0); }
- };
-
- ContentEditableInput.prototype.readOnlyChanged = function (val) {
- this.div.contentEditable = String(val != "nocursor");
- };
-
- ContentEditableInput.prototype.onContextMenu = function () {};
- ContentEditableInput.prototype.resetPosition = function () {};
-
- ContentEditableInput.prototype.needsContentAttribute = true;
-
- function posToDOM(cm, pos) {
- var view = findViewForLine(cm, pos.line);
- if (!view || view.hidden) { return null }
- var line = getLine(cm.doc, pos.line);
- var info = mapFromLineView(view, line, pos.line);
-
- var order = getOrder(line, cm.doc.direction), side = "left";
- if (order) {
- var partPos = getBidiPartAt(order, pos.ch);
- side = partPos % 2 ? "right" : "left";
- }
- var result = nodeAndOffsetInLineMap(info.map, pos.ch, side);
- result.offset = result.collapse == "right" ? result.end : result.start;
- return result
- }
-
- function isInGutter(node) {
- for (var scan = node; scan; scan = scan.parentNode)
- { if (/CodeMirror-gutter-wrapper/.test(scan.className)) { return true } }
- return false
- }
-
- function badPos(pos, bad) { if (bad) { pos.bad = true; } return pos }
-
- function domTextBetween(cm, from, to, fromLine, toLine) {
- var text = "", closing = false, lineSep = cm.doc.lineSeparator(), extraLinebreak = false;
- function recognizeMarker(id) { return function (marker) { return marker.id == id; } }
- function close() {
- if (closing) {
- text += lineSep;
- if (extraLinebreak) { text += lineSep; }
- closing = extraLinebreak = false;
- }
- }
- function addText(str) {
- if (str) {
- close();
- text += str;
- }
- }
- function walk(node) {
- if (node.nodeType == 1) {
- var cmText = node.getAttribute("cm-text");
- if (cmText) {
- addText(cmText);
- return
- }
- var markerID = node.getAttribute("cm-marker"), range;
- if (markerID) {
- var found = cm.findMarks(Pos(fromLine, 0), Pos(toLine + 1, 0), recognizeMarker(+markerID));
- if (found.length && (range = found[0].find(0)))
- { addText(getBetween(cm.doc, range.from, range.to).join(lineSep)); }
- return
- }
- if (node.getAttribute("contenteditable") == "false") { return }
- var isBlock = /^(pre|div|p|li|table|br)$/i.test(node.nodeName);
- if (!/^br$/i.test(node.nodeName) && node.textContent.length == 0) { return }
-
- if (isBlock) { close(); }
- for (var i = 0; i < node.childNodes.length; i++)
- { walk(node.childNodes[i]); }
-
- if (/^(pre|p)$/i.test(node.nodeName)) { extraLinebreak = true; }
- if (isBlock) { closing = true; }
- } else if (node.nodeType == 3) {
- addText(node.nodeValue.replace(/\u200b/g, "").replace(/\u00a0/g, " "));
- }
- }
- for (;;) {
- walk(from);
- if (from == to) { break }
- from = from.nextSibling;
- extraLinebreak = false;
- }
- return text
- }
-
- function domToPos(cm, node, offset) {
- var lineNode;
- if (node == cm.display.lineDiv) {
- lineNode = cm.display.lineDiv.childNodes[offset];
- if (!lineNode) { return badPos(cm.clipPos(Pos(cm.display.viewTo - 1)), true) }
- node = null; offset = 0;
- } else {
- for (lineNode = node;; lineNode = lineNode.parentNode) {
- if (!lineNode || lineNode == cm.display.lineDiv) { return null }
- if (lineNode.parentNode && lineNode.parentNode == cm.display.lineDiv) { break }
- }
- }
- for (var i = 0; i < cm.display.view.length; i++) {
- var lineView = cm.display.view[i];
- if (lineView.node == lineNode)
- { return locateNodeInLineView(lineView, node, offset) }
- }
- }
-
- function locateNodeInLineView(lineView, node, offset) {
- var wrapper = lineView.text.firstChild, bad = false;
- if (!node || !contains(wrapper, node)) { return badPos(Pos(lineNo(lineView.line), 0), true) }
- if (node == wrapper) {
- bad = true;
- node = wrapper.childNodes[offset];
- offset = 0;
- if (!node) {
- var line = lineView.rest ? lst(lineView.rest) : lineView.line;
- return badPos(Pos(lineNo(line), line.text.length), bad)
- }
- }
-
- var textNode = node.nodeType == 3 ? node : null, topNode = node;
- if (!textNode && node.childNodes.length == 1 && node.firstChild.nodeType == 3) {
- textNode = node.firstChild;
- if (offset) { offset = textNode.nodeValue.length; }
- }
- while (topNode.parentNode != wrapper) { topNode = topNode.parentNode; }
- var measure = lineView.measure, maps = measure.maps;
-
- function find(textNode, topNode, offset) {
- for (var i = -1; i < (maps ? maps.length : 0); i++) {
- var map = i < 0 ? measure.map : maps[i];
- for (var j = 0; j < map.length; j += 3) {
- var curNode = map[j + 2];
- if (curNode == textNode || curNode == topNode) {
- var line = lineNo(i < 0 ? lineView.line : lineView.rest[i]);
- var ch = map[j] + offset;
- if (offset < 0 || curNode != textNode) { ch = map[j + (offset ? 1 : 0)]; }
- return Pos(line, ch)
- }
- }
- }
- }
- var found = find(textNode, topNode, offset);
- if (found) { return badPos(found, bad) }
-
- // FIXME this is all really shaky. might handle the few cases it needs to handle, but likely to cause problems
- for (var after = topNode.nextSibling, dist = textNode ? textNode.nodeValue.length - offset : 0; after; after = after.nextSibling) {
- found = find(after, after.firstChild, 0);
- if (found)
- { return badPos(Pos(found.line, found.ch - dist), bad) }
- else
- { dist += after.textContent.length; }
- }
- for (var before = topNode.previousSibling, dist$1 = offset; before; before = before.previousSibling) {
- found = find(before, before.firstChild, -1);
- if (found)
- { return badPos(Pos(found.line, found.ch + dist$1), bad) }
- else
- { dist$1 += before.textContent.length; }
- }
- }
-
- // TEXTAREA INPUT STYLE
-
- var TextareaInput = function(cm) {
- this.cm = cm;
- // See input.poll and input.reset
- this.prevInput = "";
-
- // Flag that indicates whether we expect input to appear real soon
- // now (after some event like 'keypress' or 'input') and are
- // polling intensively.
- this.pollingFast = false;
- // Self-resetting timeout for the poller
- this.polling = new Delayed();
- // Used to work around IE issue with selection being forgotten when focus moves away from textarea
- this.hasSelection = false;
- this.composing = null;
- };
-
- TextareaInput.prototype.init = function (display) {
- var this$1 = this;
-
- var input = this, cm = this.cm;
- this.createField(display);
- var te = this.textarea;
-
- display.wrapper.insertBefore(this.wrapper, display.wrapper.firstChild);
-
- // Needed to hide big blue blinking cursor on Mobile Safari (doesn't seem to work in iOS 8 anymore)
- if (ios) { te.style.width = "0px"; }
-
- on(te, "input", function () {
- if (ie && ie_version >= 9 && this$1.hasSelection) { this$1.hasSelection = null; }
- input.poll();
- });
-
- on(te, "paste", function (e) {
- if (signalDOMEvent(cm, e) || handlePaste(e, cm)) { return }
-
- cm.state.pasteIncoming = +new Date;
- input.fastPoll();
- });
-
- function prepareCopyCut(e) {
- if (signalDOMEvent(cm, e)) { return }
- if (cm.somethingSelected()) {
- setLastCopied({lineWise: false, text: cm.getSelections()});
- } else if (!cm.options.lineWiseCopyCut) {
- return
- } else {
- var ranges = copyableRanges(cm);
- setLastCopied({lineWise: true, text: ranges.text});
- if (e.type == "cut") {
- cm.setSelections(ranges.ranges, null, sel_dontScroll);
- } else {
- input.prevInput = "";
- te.value = ranges.text.join("\n");
- selectInput(te);
- }
- }
- if (e.type == "cut") { cm.state.cutIncoming = +new Date; }
- }
- on(te, "cut", prepareCopyCut);
- on(te, "copy", prepareCopyCut);
-
- on(display.scroller, "paste", function (e) {
- if (eventInWidget(display, e) || signalDOMEvent(cm, e)) { return }
- if (!te.dispatchEvent) {
- cm.state.pasteIncoming = +new Date;
- input.focus();
- return
- }
-
- // Pass the `paste` event to the textarea so it's handled by its event listener.
- var event = new Event("paste");
- event.clipboardData = e.clipboardData;
- te.dispatchEvent(event);
- });
-
- // Prevent normal selection in the editor (we handle our own)
- on(display.lineSpace, "selectstart", function (e) {
- if (!eventInWidget(display, e)) { e_preventDefault(e); }
- });
-
- on(te, "compositionstart", function () {
- var start = cm.getCursor("from");
- if (input.composing) { input.composing.range.clear(); }
- input.composing = {
- start: start,
- range: cm.markText(start, cm.getCursor("to"), {className: "CodeMirror-composing"})
- };
- });
- on(te, "compositionend", function () {
- if (input.composing) {
- input.poll();
- input.composing.range.clear();
- input.composing = null;
- }
- });
- };
-
- TextareaInput.prototype.createField = function (_display) {
- // Wraps and hides input textarea
- this.wrapper = hiddenTextarea();
- // The semihidden textarea that is focused when the editor is
- // focused, and receives input.
- this.textarea = this.wrapper.firstChild;
- };
-
- TextareaInput.prototype.prepareSelection = function () {
- // Redraw the selection and/or cursor
- var cm = this.cm, display = cm.display, doc = cm.doc;
- var result = prepareSelection(cm);
-
- // Move the hidden textarea near the cursor to prevent scrolling artifacts
- if (cm.options.moveInputWithCursor) {
- var headPos = cursorCoords(cm, doc.sel.primary().head, "div");
- var wrapOff = display.wrapper.getBoundingClientRect(), lineOff = display.lineDiv.getBoundingClientRect();
- result.teTop = Math.max(0, Math.min(display.wrapper.clientHeight - 10,
- headPos.top + lineOff.top - wrapOff.top));
- result.teLeft = Math.max(0, Math.min(display.wrapper.clientWidth - 10,
- headPos.left + lineOff.left - wrapOff.left));
- }
-
- return result
- };
-
- TextareaInput.prototype.showSelection = function (drawn) {
- var cm = this.cm, display = cm.display;
- removeChildrenAndAdd(display.cursorDiv, drawn.cursors);
- removeChildrenAndAdd(display.selectionDiv, drawn.selection);
- if (drawn.teTop != null) {
- this.wrapper.style.top = drawn.teTop + "px";
- this.wrapper.style.left = drawn.teLeft + "px";
- }
- };
-
- // Reset the input to correspond to the selection (or to be empty,
- // when not typing and nothing is selected)
- TextareaInput.prototype.reset = function (typing) {
- if (this.contextMenuPending || this.composing) { return }
- var cm = this.cm;
- if (cm.somethingSelected()) {
- this.prevInput = "";
- var content = cm.getSelection();
- this.textarea.value = content;
- if (cm.state.focused) { selectInput(this.textarea); }
- if (ie && ie_version >= 9) { this.hasSelection = content; }
- } else if (!typing) {
- this.prevInput = this.textarea.value = "";
- if (ie && ie_version >= 9) { this.hasSelection = null; }
- }
- };
-
- TextareaInput.prototype.getField = function () { return this.textarea };
-
- TextareaInput.prototype.supportsTouch = function () { return false };
-
- TextareaInput.prototype.focus = function () {
- if (this.cm.options.readOnly != "nocursor" && (!mobile || activeElt() != this.textarea)) {
- try { this.textarea.focus(); }
- catch (e) {} // IE8 will throw if the textarea is display: none or not in DOM
- }
- };
-
- TextareaInput.prototype.blur = function () { this.textarea.blur(); };
-
- TextareaInput.prototype.resetPosition = function () {
- this.wrapper.style.top = this.wrapper.style.left = 0;
- };
-
- TextareaInput.prototype.receivedFocus = function () { this.slowPoll(); };
-
- // Poll for input changes, using the normal rate of polling. This
- // runs as long as the editor is focused.
- TextareaInput.prototype.slowPoll = function () {
- var this$1 = this;
-
- if (this.pollingFast) { return }
- this.polling.set(this.cm.options.pollInterval, function () {
- this$1.poll();
- if (this$1.cm.state.focused) { this$1.slowPoll(); }
- });
- };
-
- // When an event has just come in that is likely to add or change
- // something in the input textarea, we poll faster, to ensure that
- // the change appears on the screen quickly.
- TextareaInput.prototype.fastPoll = function () {
- var missed = false, input = this;
- input.pollingFast = true;
- function p() {
- var changed = input.poll();
- if (!changed && !missed) {missed = true; input.polling.set(60, p);}
- else {input.pollingFast = false; input.slowPoll();}
- }
- input.polling.set(20, p);
- };
-
- // Read input from the textarea, and update the document to match.
- // When something is selected, it is present in the textarea, and
- // selected (unless it is huge, in which case a placeholder is
- // used). When nothing is selected, the cursor sits after previously
- // seen text (can be empty), which is stored in prevInput (we must
- // not reset the textarea when typing, because that breaks IME).
- TextareaInput.prototype.poll = function () {
- var this$1 = this;
-
- var cm = this.cm, input = this.textarea, prevInput = this.prevInput;
- // Since this is called a *lot*, try to bail out as cheaply as
- // possible when it is clear that nothing happened. hasSelection
- // will be the case when there is a lot of text in the textarea,
- // in which case reading its value would be expensive.
- if (this.contextMenuPending || !cm.state.focused ||
- (hasSelection(input) && !prevInput && !this.composing) ||
- cm.isReadOnly() || cm.options.disableInput || cm.state.keySeq)
- { return false }
-
- var text = input.value;
- // If nothing changed, bail.
- if (text == prevInput && !cm.somethingSelected()) { return false }
- // Work around nonsensical selection resetting in IE9/10, and
- // inexplicable appearance of private area unicode characters on
- // some key combos in Mac (#2689).
- if (ie && ie_version >= 9 && this.hasSelection === text ||
- mac && /[\uf700-\uf7ff]/.test(text)) {
- cm.display.input.reset();
- return false
- }
-
- if (cm.doc.sel == cm.display.selForContextMenu) {
- var first = text.charCodeAt(0);
- if (first == 0x200b && !prevInput) { prevInput = "\u200b"; }
- if (first == 0x21da) { this.reset(); return this.cm.execCommand("undo") }
- }
- // Find the part of the input that is actually new
- var same = 0, l = Math.min(prevInput.length, text.length);
- while (same < l && prevInput.charCodeAt(same) == text.charCodeAt(same)) { ++same; }
-
- runInOp(cm, function () {
- applyTextInput(cm, text.slice(same), prevInput.length - same,
- null, this$1.composing ? "*compose" : null);
-
- // Don't leave long text in the textarea, since it makes further polling slow
- if (text.length > 1000 || text.indexOf("\n") > -1) { input.value = this$1.prevInput = ""; }
- else { this$1.prevInput = text; }
-
- if (this$1.composing) {
- this$1.composing.range.clear();
- this$1.composing.range = cm.markText(this$1.composing.start, cm.getCursor("to"),
- {className: "CodeMirror-composing"});
- }
- });
- return true
- };
-
- TextareaInput.prototype.ensurePolled = function () {
- if (this.pollingFast && this.poll()) { this.pollingFast = false; }
- };
-
- TextareaInput.prototype.onKeyPress = function () {
- if (ie && ie_version >= 9) { this.hasSelection = null; }
- this.fastPoll();
- };
-
- TextareaInput.prototype.onContextMenu = function (e) {
- var input = this, cm = input.cm, display = cm.display, te = input.textarea;
- if (input.contextMenuPending) { input.contextMenuPending(); }
- var pos = posFromMouse(cm, e), scrollPos = display.scroller.scrollTop;
- if (!pos || presto) { return } // Opera is difficult.
-
- // Reset the current text selection only if the click is done outside of the selection
- // and 'resetSelectionOnContextMenu' option is true.
- var reset = cm.options.resetSelectionOnContextMenu;
- if (reset && cm.doc.sel.contains(pos) == -1)
- { operation(cm, setSelection)(cm.doc, simpleSelection(pos), sel_dontScroll); }
-
- var oldCSS = te.style.cssText, oldWrapperCSS = input.wrapper.style.cssText;
- var wrapperBox = input.wrapper.offsetParent.getBoundingClientRect();
- input.wrapper.style.cssText = "position: static";
- te.style.cssText = "position: absolute; width: 30px; height: 30px;\n top: " + (e.clientY - wrapperBox.top - 5) + "px; left: " + (e.clientX - wrapperBox.left - 5) + "px;\n z-index: 1000; background: " + (ie ? "rgba(255, 255, 255, .05)" : "transparent") + ";\n outline: none; border-width: 0; outline: none; overflow: hidden; opacity: .05; filter: alpha(opacity=5);";
- var oldScrollY;
- if (webkit) { oldScrollY = window.scrollY; } // Work around Chrome issue (#2712)
- display.input.focus();
- if (webkit) { window.scrollTo(null, oldScrollY); }
- display.input.reset();
- // Adds "Select all" to context menu in FF
- if (!cm.somethingSelected()) { te.value = input.prevInput = " "; }
- input.contextMenuPending = rehide;
- display.selForContextMenu = cm.doc.sel;
- clearTimeout(display.detectingSelectAll);
-
- // Select-all will be greyed out if there's nothing to select, so
- // this adds a zero-width space so that we can later check whether
- // it got selected.
- function prepareSelectAllHack() {
- if (te.selectionStart != null) {
- var selected = cm.somethingSelected();
- var extval = "\u200b" + (selected ? te.value : "");
- te.value = "\u21da"; // Used to catch context-menu undo
- te.value = extval;
- input.prevInput = selected ? "" : "\u200b";
- te.selectionStart = 1; te.selectionEnd = extval.length;
- // Re-set this, in case some other handler touched the
- // selection in the meantime.
- display.selForContextMenu = cm.doc.sel;
- }
- }
- function rehide() {
- if (input.contextMenuPending != rehide) { return }
- input.contextMenuPending = false;
- input.wrapper.style.cssText = oldWrapperCSS;
- te.style.cssText = oldCSS;
- if (ie && ie_version < 9) { display.scrollbars.setScrollTop(display.scroller.scrollTop = scrollPos); }
-
- // Try to detect the user choosing select-all
- if (te.selectionStart != null) {
- if (!ie || (ie && ie_version < 9)) { prepareSelectAllHack(); }
- var i = 0, poll = function () {
- if (display.selForContextMenu == cm.doc.sel && te.selectionStart == 0 &&
- te.selectionEnd > 0 && input.prevInput == "\u200b") {
- operation(cm, selectAll)(cm);
- } else if (i++ < 10) {
- display.detectingSelectAll = setTimeout(poll, 500);
- } else {
- display.selForContextMenu = null;
- display.input.reset();
- }
- };
- display.detectingSelectAll = setTimeout(poll, 200);
- }
- }
-
- if (ie && ie_version >= 9) { prepareSelectAllHack(); }
- if (captureRightClick) {
- e_stop(e);
- var mouseup = function () {
- off(window, "mouseup", mouseup);
- setTimeout(rehide, 20);
- };
- on(window, "mouseup", mouseup);
- } else {
- setTimeout(rehide, 50);
- }
- };
-
- TextareaInput.prototype.readOnlyChanged = function (val) {
- if (!val) { this.reset(); }
- this.textarea.disabled = val == "nocursor";
- };
-
- TextareaInput.prototype.setUneditable = function () {};
-
- TextareaInput.prototype.needsContentAttribute = false;
-
- function fromTextArea(textarea, options) {
- options = options ? copyObj(options) : {};
- options.value = textarea.value;
- if (!options.tabindex && textarea.tabIndex)
- { options.tabindex = textarea.tabIndex; }
- if (!options.placeholder && textarea.placeholder)
- { options.placeholder = textarea.placeholder; }
- // Set autofocus to true if this textarea is focused, or if it has
- // autofocus and no other element is focused.
- if (options.autofocus == null) {
- var hasFocus = activeElt();
- options.autofocus = hasFocus == textarea ||
- textarea.getAttribute("autofocus") != null && hasFocus == document.body;
- }
-
- function save() {textarea.value = cm.getValue();}
-
- var realSubmit;
- if (textarea.form) {
- on(textarea.form, "submit", save);
- // Deplorable hack to make the submit method do the right thing.
- if (!options.leaveSubmitMethodAlone) {
- var form = textarea.form;
- realSubmit = form.submit;
- try {
- var wrappedSubmit = form.submit = function () {
- save();
- form.submit = realSubmit;
- form.submit();
- form.submit = wrappedSubmit;
- };
- } catch(e) {}
- }
- }
-
- options.finishInit = function (cm) {
- cm.save = save;
- cm.getTextArea = function () { return textarea; };
- cm.toTextArea = function () {
- cm.toTextArea = isNaN; // Prevent this from being ran twice
- save();
- textarea.parentNode.removeChild(cm.getWrapperElement());
- textarea.style.display = "";
- if (textarea.form) {
- off(textarea.form, "submit", save);
- if (!options.leaveSubmitMethodAlone && typeof textarea.form.submit == "function")
- { textarea.form.submit = realSubmit; }
- }
- };
- };
-
- textarea.style.display = "none";
- var cm = CodeMirror(function (node) { return textarea.parentNode.insertBefore(node, textarea.nextSibling); },
- options);
- return cm
- }
-
- function addLegacyProps(CodeMirror) {
- CodeMirror.off = off;
- CodeMirror.on = on;
- CodeMirror.wheelEventPixels = wheelEventPixels;
- CodeMirror.Doc = Doc;
- CodeMirror.splitLines = splitLinesAuto;
- CodeMirror.countColumn = countColumn;
- CodeMirror.findColumn = findColumn;
- CodeMirror.isWordChar = isWordCharBasic;
- CodeMirror.Pass = Pass;
- CodeMirror.signal = signal;
- CodeMirror.Line = Line;
- CodeMirror.changeEnd = changeEnd;
- CodeMirror.scrollbarModel = scrollbarModel;
- CodeMirror.Pos = Pos;
- CodeMirror.cmpPos = cmp;
- CodeMirror.modes = modes;
- CodeMirror.mimeModes = mimeModes;
- CodeMirror.resolveMode = resolveMode;
- CodeMirror.getMode = getMode;
- CodeMirror.modeExtensions = modeExtensions;
- CodeMirror.extendMode = extendMode;
- CodeMirror.copyState = copyState;
- CodeMirror.startState = startState;
- CodeMirror.innerMode = innerMode;
- CodeMirror.commands = commands;
- CodeMirror.keyMap = keyMap;
- CodeMirror.keyName = keyName;
- CodeMirror.isModifierKey = isModifierKey;
- CodeMirror.lookupKey = lookupKey;
- CodeMirror.normalizeKeyMap = normalizeKeyMap;
- CodeMirror.StringStream = StringStream;
- CodeMirror.SharedTextMarker = SharedTextMarker;
- CodeMirror.TextMarker = TextMarker;
- CodeMirror.LineWidget = LineWidget;
- CodeMirror.e_preventDefault = e_preventDefault;
- CodeMirror.e_stopPropagation = e_stopPropagation;
- CodeMirror.e_stop = e_stop;
- CodeMirror.addClass = addClass;
- CodeMirror.contains = contains;
- CodeMirror.rmClass = rmClass;
- CodeMirror.keyNames = keyNames;
- }
-
- // EDITOR CONSTRUCTOR
-
- defineOptions(CodeMirror);
-
- addEditorMethods(CodeMirror);
-
- // Set up methods on CodeMirror's prototype to redirect to the editor's document.
- var dontDelegate = "iter insert remove copy getEditor constructor".split(" ");
- for (var prop in Doc.prototype) { if (Doc.prototype.hasOwnProperty(prop) && indexOf(dontDelegate, prop) < 0)
- { CodeMirror.prototype[prop] = (function(method) {
- return function() {return method.apply(this.doc, arguments)}
- })(Doc.prototype[prop]); } }
-
- eventMixin(Doc);
- CodeMirror.inputStyles = {"textarea": TextareaInput, "contenteditable": ContentEditableInput};
-
- // Extra arguments are stored as the mode's dependencies, which is
- // used by (legacy) mechanisms like loadmode.js to automatically
- // load a mode. (Preferred mechanism is the require/define calls.)
- CodeMirror.defineMode = function(name/*, mode, …*/) {
- if (!CodeMirror.defaults.mode && name != "null") { CodeMirror.defaults.mode = name; }
- defineMode.apply(this, arguments);
- };
-
- CodeMirror.defineMIME = defineMIME;
-
- // Minimal default mode.
- CodeMirror.defineMode("null", function () { return ({token: function (stream) { return stream.skipToEnd(); }}); });
- CodeMirror.defineMIME("text/plain", "null");
-
- // EXTENSIONS
-
- CodeMirror.defineExtension = function (name, func) {
- CodeMirror.prototype[name] = func;
- };
- CodeMirror.defineDocExtension = function (name, func) {
- Doc.prototype[name] = func;
- };
-
- CodeMirror.fromTextArea = fromTextArea;
-
- addLegacyProps(CodeMirror);
-
- CodeMirror.version = "5.52.0";
-
- return CodeMirror;
-
- })));
-
-
- /***/ }),
-
- /***/ 2508:
- /***/ (function(module, exports, __webpack_require__) {
-
- var util = __webpack_require__(864);
-
- var vec2 = __webpack_require__(1180);
-
- var Draggable = __webpack_require__(2509);
-
- var Eventful = __webpack_require__(1516);
-
- var eventTool = __webpack_require__(1437);
-
- var GestureMgr = __webpack_require__(2511);
-
- /**
- * [The interface between `Handler` and `HandlerProxy`]:
- *
- * The default `HandlerProxy` only support the common standard web environment
- * (e.g., standalone browser, headless browser, embed browser in mobild APP, ...).
- * But `HandlerProxy` can be replaced to support more non-standard environment
- * (e.g., mini app), or to support more feature that the default `HandlerProxy`
- * not provided (like echarts-gl did).
- * So the interface between `Handler` and `HandlerProxy` should be stable. Do not
- * make break changes util inevitable. The interface include the public methods
- * of `Handler` and the events listed in `handlerNames` below, by which `HandlerProxy`
- * drives `Handler`.
- */
-
- /**
- * [Drag outside]:
- *
- * That is, triggering `mousemove` and `mouseup` event when the pointer is out of the
- * zrender area when dragging. That is important for the improvement of the user experience
- * when dragging something near the boundary without being terminated unexpectedly.
- *
- * We originally consider to introduce new events like `pagemovemove` and `pagemouseup`
- * to resolve this issue. But some drawbacks of it is described in
- * https://github.com/ecomfe/zrender/pull/536#issuecomment-560286899
- *
- * Instead, we referenced the specifications:
- * https://www.w3.org/TR/touch-events/#the-touchmove-event
- * https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/#event-type-mousemove
- * where the the mousemove/touchmove can be continue to fire if the user began a drag
- * operation and the pointer has left the boundary. (for the mouse event, browsers
- * only do it on `document` and when the pointer has left the boundary of the browser.)
- *
- * So the default `HandlerProxy` supports this feature similarly: if it is in the dragging
- * state (see `pointerCapture` in `HandlerProxy`), the `mousemove` and `mouseup` continue
- * to fire until release the pointer. That is implemented by listen to those event on
- * `document`.
- * If we implement some other `HandlerProxy` only for touch device, that would be easier.
- * The touch event support this feature by default.
- *
- * Note:
- * There might be some cases that the mouse event can not be
- * received on `document`. For example,
- * (A) `useCapture` is not supported and some user defined event listeners on the ancestor
- * of zr dom throw Error .
- * (B) `useCapture` is not supported Some user defined event listeners on the ancestor of
- * zr dom call `stopPropagation`.
- * In these cases, the `mousemove` event might be keep triggered event
- * if the mouse is released. We try to reduce the side-effect in those cases.
- * That is, do nothing (especially, `findHover`) in those cases. See `isOutsideBoundary`.
- *
- * Note:
- * If `HandlerProxy` listens to `document` with `useCapture`, `HandlerProxy` needs to
- * make sure `stopPropagation` and `preventDefault` doing nothing if and only if the event
- * target is not zrender dom. Becuase it is dangerous to enable users to call them in
- * `document` capture phase to prevent the propagation to any listener of the webpage.
- * But they are needed to work when the pointer inside the zrender dom.
- */
- var SILENT = 'silent';
-
- function makeEventPacket(eveType, targetInfo, event) {
- return {
- type: eveType,
- event: event,
- // target can only be an element that is not silent.
- target: targetInfo.target,
- // topTarget can be a silent element.
- topTarget: targetInfo.topTarget,
- cancelBubble: false,
- offsetX: event.zrX,
- offsetY: event.zrY,
- gestureEvent: event.gestureEvent,
- pinchX: event.pinchX,
- pinchY: event.pinchY,
- pinchScale: event.pinchScale,
- wheelDelta: event.zrDelta,
- zrByTouch: event.zrByTouch,
- which: event.which,
- stop: stopEvent
- };
- }
-
- function stopEvent() {
- eventTool.stop(this.event);
- }
-
- function EmptyProxy() {}
-
- EmptyProxy.prototype.dispose = function () {};
-
- var handlerNames = ['click', 'dblclick', 'mousewheel', 'mouseout', 'mouseup', 'mousedown', 'mousemove', 'contextmenu'];
- /**
- * @alias module:zrender/Handler
- * @constructor
- * @extends module:zrender/mixin/Eventful
- * @param {module:zrender/Storage} storage Storage instance.
- * @param {module:zrender/Painter} painter Painter instance.
- * @param {module:zrender/dom/HandlerProxy} proxy HandlerProxy instance.
- * @param {HTMLElement} painterRoot painter.root (not painter.getViewportRoot()).
- */
-
- var Handler = function (storage, painter, proxy, painterRoot) {
- Eventful.call(this);
- this.storage = storage;
- this.painter = painter;
- this.painterRoot = painterRoot;
- proxy = proxy || new EmptyProxy();
- /**
- * Proxy of event. can be Dom, WebGLSurface, etc.
- */
-
- this.proxy = null;
- /**
- * {target, topTarget, x, y}
- * @private
- * @type {Object}
- */
-
- this._hovered = {};
- /**
- * @private
- * @type {Date}
- */
-
- this._lastTouchMoment;
- /**
- * @private
- * @type {number}
- */
-
- this._lastX;
- /**
- * @private
- * @type {number}
- */
-
- this._lastY;
- /**
- * @private
- * @type {module:zrender/core/GestureMgr}
- */
-
- this._gestureMgr;
- Draggable.call(this);
- this.setHandlerProxy(proxy);
- };
-
- Handler.prototype = {
- constructor: Handler,
- setHandlerProxy: function (proxy) {
- if (this.proxy) {
- this.proxy.dispose();
- }
-
- if (proxy) {
- util.each(handlerNames, function (name) {
- proxy.on && proxy.on(name, this[name], this);
- }, this); // Attach handler
-
- proxy.handler = this;
- }
-
- this.proxy = proxy;
- },
- mousemove: function (event) {
- var x = event.zrX;
- var y = event.zrY;
- var isOutside = isOutsideBoundary(this, x, y);
- var lastHovered = this._hovered;
- var lastHoveredTarget = lastHovered.target; // If lastHoveredTarget is removed from zr (detected by '__zr') by some API call
- // (like 'setOption' or 'dispatchAction') in event handlers, we should find
- // lastHovered again here. Otherwise 'mouseout' can not be triggered normally.
- // See #6198.
-
- if (lastHoveredTarget && !lastHoveredTarget.__zr) {
- lastHovered = this.findHover(lastHovered.x, lastHovered.y);
- lastHoveredTarget = lastHovered.target;
- }
-
- var hovered = this._hovered = isOutside ? {
- x: x,
- y: y
- } : this.findHover(x, y);
- var hoveredTarget = hovered.target;
- var proxy = this.proxy;
- proxy.setCursor && proxy.setCursor(hoveredTarget ? hoveredTarget.cursor : 'default'); // Mouse out on previous hovered element
-
- if (lastHoveredTarget && hoveredTarget !== lastHoveredTarget) {
- this.dispatchToElement(lastHovered, 'mouseout', event);
- } // Mouse moving on one element
-
-
- this.dispatchToElement(hovered, 'mousemove', event); // Mouse over on a new element
-
- if (hoveredTarget && hoveredTarget !== lastHoveredTarget) {
- this.dispatchToElement(hovered, 'mouseover', event);
- }
- },
- mouseout: function (event) {
- var eventControl = event.zrEventControl;
- var zrIsToLocalDOM = event.zrIsToLocalDOM;
-
- if (eventControl !== 'only_globalout') {
- this.dispatchToElement(this._hovered, 'mouseout', event);
- }
-
- if (eventControl !== 'no_globalout') {
- // FIXME: if the pointer moving from the extra doms to realy "outside",
- // the `globalout` should have been triggered. But currently not.
- !zrIsToLocalDOM && this.trigger('globalout', {
- type: 'globalout',
- event: event
- });
- }
- },
-
- /**
- * Resize
- */
- resize: function (event) {
- this._hovered = {};
- },
-
- /**
- * Dispatch event
- * @param {string} eventName
- * @param {event=} eventArgs
- */
- dispatch: function (eventName, eventArgs) {
- var handler = this[eventName];
- handler && handler.call(this, eventArgs);
- },
-
- /**
- * Dispose
- */
- dispose: function () {
- this.proxy.dispose();
- this.storage = this.proxy = this.painter = null;
- },
-
- /**
- * 设置默认的cursor style
- * @param {string} [cursorStyle='default'] 例如 crosshair
- */
- setCursorStyle: function (cursorStyle) {
- var proxy = this.proxy;
- proxy.setCursor && proxy.setCursor(cursorStyle);
- },
-
- /**
- * 事件分发代理
- *
- * @private
- * @param {Object} targetInfo {target, topTarget} 目标图形元素
- * @param {string} eventName 事件名称
- * @param {Object} event 事件对象
- */
- dispatchToElement: function (targetInfo, eventName, event) {
- targetInfo = targetInfo || {};
- var el = targetInfo.target;
-
- if (el && el.silent) {
- return;
- }
-
- var eventHandler = 'on' + eventName;
- var eventPacket = makeEventPacket(eventName, targetInfo, event);
-
- while (el) {
- el[eventHandler] && (eventPacket.cancelBubble = el[eventHandler].call(el, eventPacket));
- el.trigger(eventName, eventPacket);
- el = el.parent;
-
- if (eventPacket.cancelBubble) {
- break;
- }
- }
-
- if (!eventPacket.cancelBubble) {
- // 冒泡到顶级 zrender 对象
- this.trigger(eventName, eventPacket); // 分发事件到用户自定义层
- // 用户有可能在全局 click 事件中 dispose,所以需要判断下 painter 是否存在
-
- this.painter && this.painter.eachOtherLayer(function (layer) {
- if (typeof layer[eventHandler] === 'function') {
- layer[eventHandler].call(layer, eventPacket);
- }
-
- if (layer.trigger) {
- layer.trigger(eventName, eventPacket);
- }
- });
- }
- },
-
- /**
- * @private
- * @param {number} x
- * @param {number} y
- * @param {module:zrender/graphic/Displayable} exclude
- * @return {model:zrender/Element}
- * @method
- */
- findHover: function (x, y, exclude) {
- var list = this.storage.getDisplayList();
- var out = {
- x: x,
- y: y
- };
-
- for (var i = list.length - 1; i >= 0; i--) {
- var hoverCheckResult;
-
- if (list[i] !== exclude // getDisplayList may include ignored item in VML mode
- && !list[i].ignore && (hoverCheckResult = isHover(list[i], x, y))) {
- !out.topTarget && (out.topTarget = list[i]);
-
- if (hoverCheckResult !== SILENT) {
- out.target = list[i];
- break;
- }
- }
- }
-
- return out;
- },
- processGesture: function (event, stage) {
- if (!this._gestureMgr) {
- this._gestureMgr = new GestureMgr();
- }
-
- var gestureMgr = this._gestureMgr;
- stage === 'start' && gestureMgr.clear();
- var gestureInfo = gestureMgr.recognize(event, this.findHover(event.zrX, event.zrY, null).target, this.proxy.dom);
- stage === 'end' && gestureMgr.clear(); // Do not do any preventDefault here. Upper application do that if necessary.
-
- if (gestureInfo) {
- var type = gestureInfo.type;
- event.gestureEvent = type;
- this.dispatchToElement({
- target: gestureInfo.target
- }, type, gestureInfo.event);
- }
- }
- }; // Common handlers
-
- util.each(['click', 'mousedown', 'mouseup', 'mousewheel', 'dblclick', 'contextmenu'], function (name) {
- Handler.prototype[name] = function (event) {
- var x = event.zrX;
- var y = event.zrY;
- var isOutside = isOutsideBoundary(this, x, y);
- var hovered;
- var hoveredTarget;
-
- if (name !== 'mouseup' || !isOutside) {
- // Find hover again to avoid click event is dispatched manually. Or click is triggered without mouseover
- hovered = this.findHover(x, y);
- hoveredTarget = hovered.target;
- }
-
- if (name === 'mousedown') {
- this._downEl = hoveredTarget;
- this._downPoint = [event.zrX, event.zrY]; // In case click triggered before mouseup
-
- this._upEl = hoveredTarget;
- } else if (name === 'mouseup') {
- this._upEl = hoveredTarget;
- } else if (name === 'click') {
- if (this._downEl !== this._upEl // Original click event is triggered on the whole canvas element,
- // including the case that `mousedown` - `mousemove` - `mouseup`,
- // which should be filtered, otherwise it will bring trouble to
- // pan and zoom.
- || !this._downPoint // Arbitrary value
- || vec2.dist(this._downPoint, [event.zrX, event.zrY]) > 4) {
- return;
- }
-
- this._downPoint = null;
- }
-
- this.dispatchToElement(hovered, name, event);
- };
- });
-
- function isHover(displayable, x, y) {
- if (displayable[displayable.rectHover ? 'rectContain' : 'contain'](x, y)) {
- var el = displayable;
- var isSilent;
-
- while (el) {
- // If clipped by ancestor.
- // FIXME: If clipPath has neither stroke nor fill,
- // el.clipPath.contain(x, y) will always return false.
- if (el.clipPath && !el.clipPath.contain(x, y)) {
- return false;
- }
-
- if (el.silent) {
- isSilent = true;
- }
-
- el = el.parent;
- }
-
- return isSilent ? SILENT : true;
- }
-
- return false;
- }
- /**
- * See [Drag outside].
- */
-
-
- function isOutsideBoundary(handlerInstance, x, y) {
- var painter = handlerInstance.painter;
- return x < 0 || x > painter.getWidth() || y < 0 || y > painter.getHeight();
- }
-
- util.mixin(Handler, Eventful);
- util.mixin(Handler, Draggable);
- var _default = Handler;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2509:
- /***/ (function(module, exports) {
-
- // TODO Draggable for group
- // FIXME Draggable on element which has parent rotation or scale
- function Draggable() {
- this.on('mousedown', this._dragStart, this);
- this.on('mousemove', this._drag, this);
- this.on('mouseup', this._dragEnd, this); // `mosuemove` and `mouseup` can be continue to fire when dragging.
- // See [Drag outside] in `Handler.js`. So we do not need to trigger
- // `_dragEnd` when globalout. That would brings better user experience.
- // this.on('globalout', this._dragEnd, this);
- // this._dropTarget = null;
- // this._draggingTarget = null;
- // this._x = 0;
- // this._y = 0;
- }
-
- Draggable.prototype = {
- constructor: Draggable,
- _dragStart: function (e) {
- var draggingTarget = e.target;
-
- if (draggingTarget && draggingTarget.draggable) {
- this._draggingTarget = draggingTarget;
- draggingTarget.dragging = true;
- this._x = e.offsetX;
- this._y = e.offsetY;
- this.dispatchToElement(param(draggingTarget, e), 'dragstart', e.event);
- }
- },
- _drag: function (e) {
- var draggingTarget = this._draggingTarget;
-
- if (draggingTarget) {
- var x = e.offsetX;
- var y = e.offsetY;
- var dx = x - this._x;
- var dy = y - this._y;
- this._x = x;
- this._y = y;
- draggingTarget.drift(dx, dy, e);
- this.dispatchToElement(param(draggingTarget, e), 'drag', e.event);
- var dropTarget = this.findHover(x, y, draggingTarget).target;
- var lastDropTarget = this._dropTarget;
- this._dropTarget = dropTarget;
-
- if (draggingTarget !== dropTarget) {
- if (lastDropTarget && dropTarget !== lastDropTarget) {
- this.dispatchToElement(param(lastDropTarget, e), 'dragleave', e.event);
- }
-
- if (dropTarget && dropTarget !== lastDropTarget) {
- this.dispatchToElement(param(dropTarget, e), 'dragenter', e.event);
- }
- }
- }
- },
- _dragEnd: function (e) {
- var draggingTarget = this._draggingTarget;
-
- if (draggingTarget) {
- draggingTarget.dragging = false;
- }
-
- this.dispatchToElement(param(draggingTarget, e), 'dragend', e.event);
-
- if (this._dropTarget) {
- this.dispatchToElement(param(this._dropTarget, e), 'drop', e.event);
- }
-
- this._draggingTarget = null;
- this._dropTarget = null;
- }
- };
-
- function param(target, e) {
- return {
- target: target,
- topTarget: e && e.topTarget
- };
- }
-
- var _default = Draggable;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2510:
- /***/ (function(module, exports) {
-
- /**
- * The algoritm is learnt from
- * https://franklinta.com/2014/09/08/computing-css-matrix3d-transforms/
- * And we made some optimization for matrix inversion.
- * Other similar approaches:
- * "cv::getPerspectiveTransform", "Direct Linear Transformation".
- */
- var LN2 = Math.log(2);
-
- function determinant(rows, rank, rowStart, rowMask, colMask, detCache) {
- var cacheKey = rowMask + '-' + colMask;
- var fullRank = rows.length;
-
- if (detCache.hasOwnProperty(cacheKey)) {
- return detCache[cacheKey];
- }
-
- if (rank === 1) {
- // In this case the colMask must be like: `11101111`. We can find the place of `0`.
- var colStart = Math.round(Math.log((1 << fullRank) - 1 & ~colMask) / LN2);
- return rows[rowStart][colStart];
- }
-
- var subRowMask = rowMask | 1 << rowStart;
- var subRowStart = rowStart + 1;
-
- while (rowMask & 1 << subRowStart) {
- subRowStart++;
- }
-
- var sum = 0;
-
- for (var j = 0, colLocalIdx = 0; j < fullRank; j++) {
- var colTag = 1 << j;
-
- if (!(colTag & colMask)) {
- sum += (colLocalIdx % 2 ? -1 : 1) * rows[rowStart][j] // det(subMatrix(0, j))
- * determinant(rows, rank - 1, subRowStart, subRowMask, colMask | colTag, detCache);
- colLocalIdx++;
- }
- }
-
- detCache[cacheKey] = sum;
- return sum;
- }
- /**
- * Usage:
- * ```js
- * var transformer = buildTransformer(
- * [10, 44, 100, 44, 100, 300, 10, 300],
- * [50, 54, 130, 14, 140, 330, 14, 220]
- * );
- * var out = [];
- * transformer && transformer([11, 33], out);
- * ```
- *
- * Notice: `buildTransformer` may take more than 10ms in some Android device.
- *
- * @param {Array.<number>} src source four points, [x0, y0, x1, y1, x2, y2, x3, y3]
- * @param {Array.<number>} dest destination four points, [x0, y0, x1, y1, x2, y2, x3, y3]
- * @return {Function} transformer If fail, return null/undefined.
- */
-
-
- function buildTransformer(src, dest) {
- var mA = [[src[0], src[1], 1, 0, 0, 0, -dest[0] * src[0], -dest[0] * src[1]], [0, 0, 0, src[0], src[1], 1, -dest[1] * src[0], -dest[1] * src[1]], [src[2], src[3], 1, 0, 0, 0, -dest[2] * src[2], -dest[2] * src[3]], [0, 0, 0, src[2], src[3], 1, -dest[3] * src[2], -dest[3] * src[3]], [src[4], src[5], 1, 0, 0, 0, -dest[4] * src[4], -dest[4] * src[5]], [0, 0, 0, src[4], src[5], 1, -dest[5] * src[4], -dest[5] * src[5]], [src[6], src[7], 1, 0, 0, 0, -dest[6] * src[6], -dest[6] * src[7]], [0, 0, 0, src[6], src[7], 1, -dest[7] * src[6], -dest[7] * src[7]]];
- var detCache = {};
- var det = determinant(mA, 8, 0, 0, 0, detCache);
-
- if (det === 0) {
- return;
- } // `invert(mA) * dest`, that is, `adj(mA) / det * dest`.
-
-
- var vh = [];
-
- for (var i = 0; i < 8; i++) {
- for (var j = 0; j < 8; j++) {
- vh[j] == null && (vh[j] = 0);
- vh[j] += ((i + j) % 2 ? -1 : 1) * // det(subMatrix(i, j))
- determinant(mA, 7, i === 0 ? 1 : 0, 1 << i, 1 << j, detCache) / det * dest[i];
- }
- }
-
- return function (out, srcPointX, srcPointY) {
- var pk = srcPointX * vh[6] + srcPointY * vh[7] + 1;
- out[0] = (srcPointX * vh[0] + srcPointY * vh[1] + vh[2]) / pk;
- out[1] = (srcPointX * vh[3] + srcPointY * vh[4] + vh[5]) / pk;
- };
- }
-
- exports.buildTransformer = buildTransformer;
-
- /***/ }),
-
- /***/ 2511:
- /***/ (function(module, exports, __webpack_require__) {
-
- var eventUtil = __webpack_require__(1437);
-
- /**
- * Only implements needed gestures for mobile.
- */
- var GestureMgr = function () {
- /**
- * @private
- * @type {Array.<Object>}
- */
- this._track = [];
- };
-
- GestureMgr.prototype = {
- constructor: GestureMgr,
- recognize: function (event, target, root) {
- this._doTrack(event, target, root);
-
- return this._recognize(event);
- },
- clear: function () {
- this._track.length = 0;
- return this;
- },
- _doTrack: function (event, target, root) {
- var touches = event.touches;
-
- if (!touches) {
- return;
- }
-
- var trackItem = {
- points: [],
- touches: [],
- target: target,
- event: event
- };
-
- for (var i = 0, len = touches.length; i < len; i++) {
- var touch = touches[i];
- var pos = eventUtil.clientToLocal(root, touch, {});
- trackItem.points.push([pos.zrX, pos.zrY]);
- trackItem.touches.push(touch);
- }
-
- this._track.push(trackItem);
- },
- _recognize: function (event) {
- for (var eventName in recognizers) {
- if (recognizers.hasOwnProperty(eventName)) {
- var gestureInfo = recognizers[eventName](this._track, event);
-
- if (gestureInfo) {
- return gestureInfo;
- }
- }
- }
- }
- };
-
- function dist(pointPair) {
- var dx = pointPair[1][0] - pointPair[0][0];
- var dy = pointPair[1][1] - pointPair[0][1];
- return Math.sqrt(dx * dx + dy * dy);
- }
-
- function center(pointPair) {
- return [(pointPair[0][0] + pointPair[1][0]) / 2, (pointPair[0][1] + pointPair[1][1]) / 2];
- }
-
- var recognizers = {
- pinch: function (track, event) {
- var trackLen = track.length;
-
- if (!trackLen) {
- return;
- }
-
- var pinchEnd = (track[trackLen - 1] || {}).points;
- var pinchPre = (track[trackLen - 2] || {}).points || pinchEnd;
-
- if (pinchPre && pinchPre.length > 1 && pinchEnd && pinchEnd.length > 1) {
- var pinchScale = dist(pinchEnd) / dist(pinchPre);
- !isFinite(pinchScale) && (pinchScale = 1);
- event.pinchScale = pinchScale;
- var pinchCenter = center(pinchEnd);
- event.pinchX = pinchCenter[0];
- event.pinchY = pinchCenter[1];
- return {
- type: 'pinch',
- target: track[0].target,
- event: event
- };
- }
- } // Only pinch currently.
-
- };
- var _default = GestureMgr;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2512:
- /***/ (function(module, exports, __webpack_require__) {
-
- var util = __webpack_require__(864);
-
- var env = __webpack_require__(1316);
-
- var Group = __webpack_require__(1597);
-
- var timsort = __webpack_require__(1894);
-
- // Use timsort because in most case elements are partially sorted
- // https://jsfiddle.net/pissang/jr4x7mdm/8/
- function shapeCompareFunc(a, b) {
- if (a.zlevel === b.zlevel) {
- if (a.z === b.z) {
- // if (a.z2 === b.z2) {
- // // FIXME Slow has renderidx compare
- // // http://stackoverflow.com/questions/20883421/sorting-in-javascript-should-every-compare-function-have-a-return-0-statement
- // // https://github.com/v8/v8/blob/47cce544a31ed5577ffe2963f67acb4144ee0232/src/js/array.js#L1012
- // return a.__renderidx - b.__renderidx;
- // }
- return a.z2 - b.z2;
- }
-
- return a.z - b.z;
- }
-
- return a.zlevel - b.zlevel;
- }
- /**
- * 内容仓库 (M)
- * @alias module:zrender/Storage
- * @constructor
- */
-
-
- var Storage = function () {
- // jshint ignore:line
- this._roots = [];
- this._displayList = [];
- this._displayListLen = 0;
- };
-
- Storage.prototype = {
- constructor: Storage,
-
- /**
- * @param {Function} cb
- *
- */
- traverse: function (cb, context) {
- for (var i = 0; i < this._roots.length; i++) {
- this._roots[i].traverse(cb, context);
- }
- },
-
- /**
- * 返回所有图形的绘制队列
- * @param {boolean} [update=false] 是否在返回前更新该数组
- * @param {boolean} [includeIgnore=false] 是否包含 ignore 的数组, 在 update 为 true 的时候有效
- *
- * 详见{@link module:zrender/graphic/Displayable.prototype.updateDisplayList}
- * @return {Array.<module:zrender/graphic/Displayable>}
- */
- getDisplayList: function (update, includeIgnore) {
- includeIgnore = includeIgnore || false;
-
- if (update) {
- this.updateDisplayList(includeIgnore);
- }
-
- return this._displayList;
- },
-
- /**
- * 更新图形的绘制队列。
- * 每次绘制前都会调用,该方法会先深度优先遍历整个树,更新所有Group和Shape的变换并且把所有可见的Shape保存到数组中,
- * 最后根据绘制的优先级(zlevel > z > 插入顺序)排序得到绘制队列
- * @param {boolean} [includeIgnore=false] 是否包含 ignore 的数组
- */
- updateDisplayList: function (includeIgnore) {
- this._displayListLen = 0;
- var roots = this._roots;
- var displayList = this._displayList;
-
- for (var i = 0, len = roots.length; i < len; i++) {
- this._updateAndAddDisplayable(roots[i], null, includeIgnore);
- }
-
- displayList.length = this._displayListLen;
- env.canvasSupported && timsort(displayList, shapeCompareFunc);
- },
- _updateAndAddDisplayable: function (el, clipPaths, includeIgnore) {
- if (el.ignore && !includeIgnore) {
- return;
- }
-
- el.beforeUpdate();
-
- if (el.__dirty) {
- el.update();
- }
-
- el.afterUpdate();
- var userSetClipPath = el.clipPath;
-
- if (userSetClipPath) {
- // FIXME 效率影响
- if (clipPaths) {
- clipPaths = clipPaths.slice();
- } else {
- clipPaths = [];
- }
-
- var currentClipPath = userSetClipPath;
- var parentClipPath = el; // Recursively add clip path
-
- while (currentClipPath) {
- // clipPath 的变换是基于使用这个 clipPath 的元素
- currentClipPath.parent = parentClipPath;
- currentClipPath.updateTransform();
- clipPaths.push(currentClipPath);
- parentClipPath = currentClipPath;
- currentClipPath = currentClipPath.clipPath;
- }
- }
-
- if (el.isGroup) {
- var children = el._children;
-
- for (var i = 0; i < children.length; i++) {
- var child = children[i]; // Force to mark as dirty if group is dirty
- // FIXME __dirtyPath ?
-
- if (el.__dirty) {
- child.__dirty = true;
- }
-
- this._updateAndAddDisplayable(child, clipPaths, includeIgnore);
- } // Mark group clean here
-
-
- el.__dirty = false;
- } else {
- el.__clipPaths = clipPaths;
- this._displayList[this._displayListLen++] = el;
- }
- },
-
- /**
- * 添加图形(Shape)或者组(Group)到根节点
- * @param {module:zrender/Element} el
- */
- addRoot: function (el) {
- if (el.__storage === this) {
- return;
- }
-
- if (el instanceof Group) {
- el.addChildrenToStorage(this);
- }
-
- this.addToStorage(el);
-
- this._roots.push(el);
- },
-
- /**
- * 删除指定的图形(Shape)或者组(Group)
- * @param {string|Array.<string>} [el] 如果为空清空整个Storage
- */
- delRoot: function (el) {
- if (el == null) {
- // 不指定el清空
- for (var i = 0; i < this._roots.length; i++) {
- var root = this._roots[i];
-
- if (root instanceof Group) {
- root.delChildrenFromStorage(this);
- }
- }
-
- this._roots = [];
- this._displayList = [];
- this._displayListLen = 0;
- return;
- }
-
- if (el instanceof Array) {
- for (var i = 0, l = el.length; i < l; i++) {
- this.delRoot(el[i]);
- }
-
- return;
- }
-
- var idx = util.indexOf(this._roots, el);
-
- if (idx >= 0) {
- this.delFromStorage(el);
-
- this._roots.splice(idx, 1);
-
- if (el instanceof Group) {
- el.delChildrenFromStorage(this);
- }
- }
- },
- addToStorage: function (el) {
- if (el) {
- el.__storage = this;
- el.dirty(false);
- }
-
- return this;
- },
- delFromStorage: function (el) {
- if (el) {
- el.__storage = null;
- }
-
- return this;
- },
-
- /**
- * 清空并且释放Storage
- */
- dispose: function () {
- this._renderList = this._roots = null;
- },
- displayableSortFunc: shapeCompareFunc
- };
- var _default = Storage;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2513:
- /***/ (function(module, exports, __webpack_require__) {
-
- var Animator = __webpack_require__(2260);
-
- var logError = __webpack_require__(1655);
-
- var _util = __webpack_require__(864);
-
- var isString = _util.isString;
- var isFunction = _util.isFunction;
- var isObject = _util.isObject;
- var isArrayLike = _util.isArrayLike;
- var indexOf = _util.indexOf;
-
- /**
- * @alias modue:zrender/mixin/Animatable
- * @constructor
- */
- var Animatable = function () {
- /**
- * @type {Array.<module:zrender/animation/Animator>}
- * @readOnly
- */
- this.animators = [];
- };
-
- Animatable.prototype = {
- constructor: Animatable,
-
- /**
- * 动画
- *
- * @param {string} path The path to fetch value from object, like 'a.b.c'.
- * @param {boolean} [loop] Whether to loop animation.
- * @return {module:zrender/animation/Animator}
- * @example:
- * el.animate('style', false)
- * .when(1000, {x: 10} )
- * .done(function(){ // Animation done })
- * .start()
- */
- animate: function (path, loop) {
- var target;
- var animatingShape = false;
- var el = this;
- var zr = this.__zr;
-
- if (path) {
- var pathSplitted = path.split('.');
- var prop = el; // If animating shape
-
- animatingShape = pathSplitted[0] === 'shape';
-
- for (var i = 0, l = pathSplitted.length; i < l; i++) {
- if (!prop) {
- continue;
- }
-
- prop = prop[pathSplitted[i]];
- }
-
- if (prop) {
- target = prop;
- }
- } else {
- target = el;
- }
-
- if (!target) {
- logError('Property "' + path + '" is not existed in element ' + el.id);
- return;
- }
-
- var animators = el.animators;
- var animator = new Animator(target, loop);
- animator.during(function (target) {
- el.dirty(animatingShape);
- }).done(function () {
- // FIXME Animator will not be removed if use `Animator#stop` to stop animation
- animators.splice(indexOf(animators, animator), 1);
- });
- animators.push(animator); // If animate after added to the zrender
-
- if (zr) {
- zr.animation.addAnimator(animator);
- }
-
- return animator;
- },
-
- /**
- * 停止动画
- * @param {boolean} forwardToLast If move to last frame before stop
- */
- stopAnimation: function (forwardToLast) {
- var animators = this.animators;
- var len = animators.length;
-
- for (var i = 0; i < len; i++) {
- animators[i].stop(forwardToLast);
- }
-
- animators.length = 0;
- return this;
- },
-
- /**
- * Caution: this method will stop previous animation.
- * So do not use this method to one element twice before
- * animation starts, unless you know what you are doing.
- * @param {Object} target
- * @param {number} [time=500] Time in ms
- * @param {string} [easing='linear']
- * @param {number} [delay=0]
- * @param {Function} [callback]
- * @param {Function} [forceAnimate] Prevent stop animation and callback
- * immediently when target values are the same as current values.
- *
- * @example
- * // Animate position
- * el.animateTo({
- * position: [10, 10]
- * }, function () { // done })
- *
- * // Animate shape, style and position in 100ms, delayed 100ms, with cubicOut easing
- * el.animateTo({
- * shape: {
- * width: 500
- * },
- * style: {
- * fill: 'red'
- * }
- * position: [10, 10]
- * }, 100, 100, 'cubicOut', function () { // done })
- */
- // TODO Return animation key
- animateTo: function (target, time, delay, easing, callback, forceAnimate) {
- animateTo(this, target, time, delay, easing, callback, forceAnimate);
- },
-
- /**
- * Animate from the target state to current state.
- * The params and the return value are the same as `this.animateTo`.
- */
- animateFrom: function (target, time, delay, easing, callback, forceAnimate) {
- animateTo(this, target, time, delay, easing, callback, forceAnimate, true);
- }
- };
-
- function animateTo(animatable, target, time, delay, easing, callback, forceAnimate, reverse) {
- // animateTo(target, time, easing, callback);
- if (isString(delay)) {
- callback = easing;
- easing = delay;
- delay = 0;
- } // animateTo(target, time, delay, callback);
- else if (isFunction(easing)) {
- callback = easing;
- easing = 'linear';
- delay = 0;
- } // animateTo(target, time, callback);
- else if (isFunction(delay)) {
- callback = delay;
- delay = 0;
- } // animateTo(target, callback)
- else if (isFunction(time)) {
- callback = time;
- time = 500;
- } // animateTo(target)
- else if (!time) {
- time = 500;
- } // Stop all previous animations
-
-
- animatable.stopAnimation();
- animateToShallow(animatable, '', animatable, target, time, delay, reverse); // Animators may be removed immediately after start
- // if there is nothing to animate
-
- var animators = animatable.animators.slice();
- var count = animators.length;
-
- function done() {
- count--;
-
- if (!count) {
- callback && callback();
- }
- } // No animators. This should be checked before animators[i].start(),
- // because 'done' may be executed immediately if no need to animate.
-
-
- if (!count) {
- callback && callback();
- } // Start after all animators created
- // Incase any animator is done immediately when all animation properties are not changed
-
-
- for (var i = 0; i < animators.length; i++) {
- animators[i].done(done).start(easing, forceAnimate);
- }
- }
- /**
- * @param {string} path=''
- * @param {Object} source=animatable
- * @param {Object} target
- * @param {number} [time=500]
- * @param {number} [delay=0]
- * @param {boolean} [reverse] If `true`, animate
- * from the `target` to current state.
- *
- * @example
- * // Animate position
- * el._animateToShallow({
- * position: [10, 10]
- * })
- *
- * // Animate shape, style and position in 100ms, delayed 100ms
- * el._animateToShallow({
- * shape: {
- * width: 500
- * },
- * style: {
- * fill: 'red'
- * }
- * position: [10, 10]
- * }, 100, 100)
- */
-
-
- function animateToShallow(animatable, path, source, target, time, delay, reverse) {
- var objShallow = {};
- var propertyCount = 0;
-
- for (var name in target) {
- if (!target.hasOwnProperty(name)) {
- continue;
- }
-
- if (source[name] != null) {
- if (isObject(target[name]) && !isArrayLike(target[name])) {
- animateToShallow(animatable, path ? path + '.' + name : name, source[name], target[name], time, delay, reverse);
- } else {
- if (reverse) {
- objShallow[name] = source[name];
- setAttrByPath(animatable, path, name, target[name]);
- } else {
- objShallow[name] = target[name];
- }
-
- propertyCount++;
- }
- } else if (target[name] != null && !reverse) {
- setAttrByPath(animatable, path, name, target[name]);
- }
- }
-
- if (propertyCount > 0) {
- animatable.animate(path, false).when(time == null ? 500 : time, objShallow).delay(delay || 0);
- }
- }
-
- function setAttrByPath(el, path, name, value) {
- // Attr directly if not has property
- // FIXME, if some property not needed for element ?
- if (!path) {
- el.attr(name, value);
- } else {
- // Only support set shape or style
- var props = {};
- props[path] = {};
- props[path][name] = value;
- el.attr(props);
- }
- }
-
- var _default = Animatable;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2514:
- /***/ (function(module, exports, __webpack_require__) {
-
- var easingFuncs = __webpack_require__(2515);
-
- /**
- * 动画主控制器
- * @config target 动画对象,可以是数组,如果是数组的话会批量分发onframe等事件
- * @config life(1000) 动画时长
- * @config delay(0) 动画延迟时间
- * @config loop(true)
- * @config gap(0) 循环的间隔时间
- * @config onframe
- * @config easing(optional)
- * @config ondestroy(optional)
- * @config onrestart(optional)
- *
- * TODO pause
- */
- function Clip(options) {
- this._target = options.target; // 生命周期
-
- this._life = options.life || 1000; // 延时
-
- this._delay = options.delay || 0; // 开始时间
- // this._startTime = new Date().getTime() + this._delay;// 单位毫秒
-
- this._initialized = false; // 是否循环
-
- this.loop = options.loop == null ? false : options.loop;
- this.gap = options.gap || 0;
- this.easing = options.easing || 'Linear';
- this.onframe = options.onframe;
- this.ondestroy = options.ondestroy;
- this.onrestart = options.onrestart;
- this._pausedTime = 0;
- this._paused = false;
- }
-
- Clip.prototype = {
- constructor: Clip,
- step: function (globalTime, deltaTime) {
- // Set startTime on first step, or _startTime may has milleseconds different between clips
- // PENDING
- if (!this._initialized) {
- this._startTime = globalTime + this._delay;
- this._initialized = true;
- }
-
- if (this._paused) {
- this._pausedTime += deltaTime;
- return;
- }
-
- var percent = (globalTime - this._startTime - this._pausedTime) / this._life; // 还没开始
-
- if (percent < 0) {
- return;
- }
-
- percent = Math.min(percent, 1);
- var easing = this.easing;
- var easingFunc = typeof easing === 'string' ? easingFuncs[easing] : easing;
- var schedule = typeof easingFunc === 'function' ? easingFunc(percent) : percent;
- this.fire('frame', schedule); // 结束
-
- if (percent === 1) {
- if (this.loop) {
- this.restart(globalTime); // 重新开始周期
- // 抛出而不是直接调用事件直到 stage.update 后再统一调用这些事件
-
- return 'restart';
- } // 动画完成将这个控制器标识为待删除
- // 在Animation.update中进行批量删除
-
-
- this._needsRemove = true;
- return 'destroy';
- }
-
- return null;
- },
- restart: function (globalTime) {
- var remainder = (globalTime - this._startTime - this._pausedTime) % this._life;
- this._startTime = globalTime - remainder + this.gap;
- this._pausedTime = 0;
- this._needsRemove = false;
- },
- fire: function (eventType, arg) {
- eventType = 'on' + eventType;
-
- if (this[eventType]) {
- this[eventType](this._target, arg);
- }
- },
- pause: function () {
- this._paused = true;
- },
- resume: function () {
- this._paused = false;
- }
- };
- var _default = Clip;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2515:
- /***/ (function(module, exports) {
-
- /**
- * 缓动代码来自 https://github.com/sole/tween.js/blob/master/src/Tween.js
- * @see http://sole.github.io/tween.js/examples/03_graphs.html
- * @exports zrender/animation/easing
- */
- var easing = {
- /**
- * @param {number} k
- * @return {number}
- */
- linear: function (k) {
- return k;
- },
-
- /**
- * @param {number} k
- * @return {number}
- */
- quadraticIn: function (k) {
- return k * k;
- },
-
- /**
- * @param {number} k
- * @return {number}
- */
- quadraticOut: function (k) {
- return k * (2 - k);
- },
-
- /**
- * @param {number} k
- * @return {number}
- */
- quadraticInOut: function (k) {
- if ((k *= 2) < 1) {
- return 0.5 * k * k;
- }
-
- return -0.5 * (--k * (k - 2) - 1);
- },
- // 三次方的缓动(t^3)
-
- /**
- * @param {number} k
- * @return {number}
- */
- cubicIn: function (k) {
- return k * k * k;
- },
-
- /**
- * @param {number} k
- * @return {number}
- */
- cubicOut: function (k) {
- return --k * k * k + 1;
- },
-
- /**
- * @param {number} k
- * @return {number}
- */
- cubicInOut: function (k) {
- if ((k *= 2) < 1) {
- return 0.5 * k * k * k;
- }
-
- return 0.5 * ((k -= 2) * k * k + 2);
- },
- // 四次方的缓动(t^4)
-
- /**
- * @param {number} k
- * @return {number}
- */
- quarticIn: function (k) {
- return k * k * k * k;
- },
-
- /**
- * @param {number} k
- * @return {number}
- */
- quarticOut: function (k) {
- return 1 - --k * k * k * k;
- },
-
- /**
- * @param {number} k
- * @return {number}
- */
- quarticInOut: function (k) {
- if ((k *= 2) < 1) {
- return 0.5 * k * k * k * k;
- }
-
- return -0.5 * ((k -= 2) * k * k * k - 2);
- },
- // 五次方的缓动(t^5)
-
- /**
- * @param {number} k
- * @return {number}
- */
- quinticIn: function (k) {
- return k * k * k * k * k;
- },
-
- /**
- * @param {number} k
- * @return {number}
- */
- quinticOut: function (k) {
- return --k * k * k * k * k + 1;
- },
-
- /**
- * @param {number} k
- * @return {number}
- */
- quinticInOut: function (k) {
- if ((k *= 2) < 1) {
- return 0.5 * k * k * k * k * k;
- }
-
- return 0.5 * ((k -= 2) * k * k * k * k + 2);
- },
- // 正弦曲线的缓动(sin(t))
-
- /**
- * @param {number} k
- * @return {number}
- */
- sinusoidalIn: function (k) {
- return 1 - Math.cos(k * Math.PI / 2);
- },
-
- /**
- * @param {number} k
- * @return {number}
- */
- sinusoidalOut: function (k) {
- return Math.sin(k * Math.PI / 2);
- },
-
- /**
- * @param {number} k
- * @return {number}
- */
- sinusoidalInOut: function (k) {
- return 0.5 * (1 - Math.cos(Math.PI * k));
- },
- // 指数曲线的缓动(2^t)
-
- /**
- * @param {number} k
- * @return {number}
- */
- exponentialIn: function (k) {
- return k === 0 ? 0 : Math.pow(1024, k - 1);
- },
-
- /**
- * @param {number} k
- * @return {number}
- */
- exponentialOut: function (k) {
- return k === 1 ? 1 : 1 - Math.pow(2, -10 * k);
- },
-
- /**
- * @param {number} k
- * @return {number}
- */
- exponentialInOut: function (k) {
- if (k === 0) {
- return 0;
- }
-
- if (k === 1) {
- return 1;
- }
-
- if ((k *= 2) < 1) {
- return 0.5 * Math.pow(1024, k - 1);
- }
-
- return 0.5 * (-Math.pow(2, -10 * (k - 1)) + 2);
- },
- // 圆形曲线的缓动(sqrt(1-t^2))
-
- /**
- * @param {number} k
- * @return {number}
- */
- circularIn: function (k) {
- return 1 - Math.sqrt(1 - k * k);
- },
-
- /**
- * @param {number} k
- * @return {number}
- */
- circularOut: function (k) {
- return Math.sqrt(1 - --k * k);
- },
-
- /**
- * @param {number} k
- * @return {number}
- */
- circularInOut: function (k) {
- if ((k *= 2) < 1) {
- return -0.5 * (Math.sqrt(1 - k * k) - 1);
- }
-
- return 0.5 * (Math.sqrt(1 - (k -= 2) * k) + 1);
- },
- // 创建类似于弹簧在停止前来回振荡的动画
-
- /**
- * @param {number} k
- * @return {number}
- */
- elasticIn: function (k) {
- var s;
- var a = 0.1;
- var p = 0.4;
-
- if (k === 0) {
- return 0;
- }
-
- if (k === 1) {
- return 1;
- }
-
- if (!a || a < 1) {
- a = 1;
- s = p / 4;
- } else {
- s = p * Math.asin(1 / a) / (2 * Math.PI);
- }
-
- return -(a * Math.pow(2, 10 * (k -= 1)) * Math.sin((k - s) * (2 * Math.PI) / p));
- },
-
- /**
- * @param {number} k
- * @return {number}
- */
- elasticOut: function (k) {
- var s;
- var a = 0.1;
- var p = 0.4;
-
- if (k === 0) {
- return 0;
- }
-
- if (k === 1) {
- return 1;
- }
-
- if (!a || a < 1) {
- a = 1;
- s = p / 4;
- } else {
- s = p * Math.asin(1 / a) / (2 * Math.PI);
- }
-
- return a * Math.pow(2, -10 * k) * Math.sin((k - s) * (2 * Math.PI) / p) + 1;
- },
-
- /**
- * @param {number} k
- * @return {number}
- */
- elasticInOut: function (k) {
- var s;
- var a = 0.1;
- var p = 0.4;
-
- if (k === 0) {
- return 0;
- }
-
- if (k === 1) {
- return 1;
- }
-
- if (!a || a < 1) {
- a = 1;
- s = p / 4;
- } else {
- s = p * Math.asin(1 / a) / (2 * Math.PI);
- }
-
- if ((k *= 2) < 1) {
- return -0.5 * (a * Math.pow(2, 10 * (k -= 1)) * Math.sin((k - s) * (2 * Math.PI) / p));
- }
-
- return a * Math.pow(2, -10 * (k -= 1)) * Math.sin((k - s) * (2 * Math.PI) / p) * 0.5 + 1;
- },
- // 在某一动画开始沿指示的路径进行动画处理前稍稍收回该动画的移动
-
- /**
- * @param {number} k
- * @return {number}
- */
- backIn: function (k) {
- var s = 1.70158;
- return k * k * ((s + 1) * k - s);
- },
-
- /**
- * @param {number} k
- * @return {number}
- */
- backOut: function (k) {
- var s = 1.70158;
- return --k * k * ((s + 1) * k + s) + 1;
- },
-
- /**
- * @param {number} k
- * @return {number}
- */
- backInOut: function (k) {
- var s = 1.70158 * 1.525;
-
- if ((k *= 2) < 1) {
- return 0.5 * (k * k * ((s + 1) * k - s));
- }
-
- return 0.5 * ((k -= 2) * k * ((s + 1) * k + s) + 2);
- },
- // 创建弹跳效果
-
- /**
- * @param {number} k
- * @return {number}
- */
- bounceIn: function (k) {
- return 1 - easing.bounceOut(1 - k);
- },
-
- /**
- * @param {number} k
- * @return {number}
- */
- bounceOut: function (k) {
- if (k < 1 / 2.75) {
- return 7.5625 * k * k;
- } else if (k < 2 / 2.75) {
- return 7.5625 * (k -= 1.5 / 2.75) * k + 0.75;
- } else if (k < 2.5 / 2.75) {
- return 7.5625 * (k -= 2.25 / 2.75) * k + 0.9375;
- } else {
- return 7.5625 * (k -= 2.625 / 2.75) * k + 0.984375;
- }
- },
-
- /**
- * @param {number} k
- * @return {number}
- */
- bounceInOut: function (k) {
- if (k < 0.5) {
- return easing.bounceIn(k * 2) * 0.5;
- }
-
- return easing.bounceOut(k * 2 - 1) * 0.5 + 0.5;
- }
- };
- var _default = easing;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2516:
- /***/ (function(module, exports, __webpack_require__) {
-
- var _config = __webpack_require__(1781);
-
- var devicePixelRatio = _config.devicePixelRatio;
-
- var util = __webpack_require__(864);
-
- var logError = __webpack_require__(1655);
-
- var BoundingRect = __webpack_require__(1185);
-
- var timsort = __webpack_require__(1894);
-
- var Layer = __webpack_require__(2517);
-
- var requestAnimationFrame = __webpack_require__(2264);
-
- var Image = __webpack_require__(1598);
-
- var env = __webpack_require__(1316);
-
- var HOVER_LAYER_ZLEVEL = 1e5;
- var CANVAS_ZLEVEL = 314159;
- var EL_AFTER_INCREMENTAL_INC = 0.01;
- var INCREMENTAL_INC = 0.001;
-
- function parseInt10(val) {
- return parseInt(val, 10);
- }
-
- function isLayerValid(layer) {
- if (!layer) {
- return false;
- }
-
- if (layer.__builtin__) {
- return true;
- }
-
- if (typeof layer.resize !== 'function' || typeof layer.refresh !== 'function') {
- return false;
- }
-
- return true;
- }
-
- var tmpRect = new BoundingRect(0, 0, 0, 0);
- var viewRect = new BoundingRect(0, 0, 0, 0);
-
- function isDisplayableCulled(el, width, height) {
- tmpRect.copy(el.getBoundingRect());
-
- if (el.transform) {
- tmpRect.applyTransform(el.transform);
- }
-
- viewRect.width = width;
- viewRect.height = height;
- return !tmpRect.intersect(viewRect);
- }
-
- function isClipPathChanged(clipPaths, prevClipPaths) {
- // displayable.__clipPaths can only be `null`/`undefined` or an non-empty array.
- if (clipPaths === prevClipPaths) {
- return false;
- }
-
- if (!clipPaths || !prevClipPaths || clipPaths.length !== prevClipPaths.length) {
- return true;
- }
-
- for (var i = 0; i < clipPaths.length; i++) {
- if (clipPaths[i] !== prevClipPaths[i]) {
- return true;
- }
- }
-
- return false;
- }
-
- function doClip(clipPaths, ctx) {
- for (var i = 0; i < clipPaths.length; i++) {
- var clipPath = clipPaths[i];
- clipPath.setTransform(ctx);
- ctx.beginPath();
- clipPath.buildPath(ctx, clipPath.shape);
- ctx.clip(); // Transform back
-
- clipPath.restoreTransform(ctx);
- }
- }
-
- function createRoot(width, height) {
- var domRoot = document.createElement('div'); // domRoot.onselectstart = returnFalse; // Avoid page selected
-
- domRoot.style.cssText = ['position:relative', // IOS13 safari probably has a compositing bug (z order of the canvas and the consequent
- // dom does not act as expected) when some of the parent dom has
- // `-webkit-overflow-scrolling: touch;` and the webpage is longer than one screen and
- // the canvas is not at the top part of the page.
- // Check `https://bugs.webkit.org/show_bug.cgi?id=203681` for more details. We remove
- // this `overflow:hidden` to avoid the bug.
- // 'overflow:hidden',
- 'width:' + width + 'px', 'height:' + height + 'px', 'padding:0', 'margin:0', 'border-width:0'].join(';') + ';';
- return domRoot;
- }
- /**
- * @alias module:zrender/Painter
- * @constructor
- * @param {HTMLElement} root 绘图容器
- * @param {module:zrender/Storage} storage
- * @param {Object} opts
- */
-
-
- var Painter = function (root, storage, opts) {
- this.type = 'canvas'; // In node environment using node-canvas
-
- var singleCanvas = !root.nodeName // In node ?
- || root.nodeName.toUpperCase() === 'CANVAS';
- this._opts = opts = util.extend({}, opts || {});
- /**
- * @type {number}
- */
-
- this.dpr = opts.devicePixelRatio || devicePixelRatio;
- /**
- * @type {boolean}
- * @private
- */
-
- this._singleCanvas = singleCanvas;
- /**
- * 绘图容器
- * @type {HTMLElement}
- */
-
- this.root = root;
- var rootStyle = root.style;
-
- if (rootStyle) {
- rootStyle['-webkit-tap-highlight-color'] = 'transparent';
- rootStyle['-webkit-user-select'] = rootStyle['user-select'] = rootStyle['-webkit-touch-callout'] = 'none';
- root.innerHTML = '';
- }
- /**
- * @type {module:zrender/Storage}
- */
-
-
- this.storage = storage;
- /**
- * @type {Array.<number>}
- * @private
- */
-
- var zlevelList = this._zlevelList = [];
- /**
- * @type {Object.<string, module:zrender/Layer>}
- * @private
- */
-
- var layers = this._layers = {};
- /**
- * @type {Object.<string, Object>}
- * @private
- */
-
- this._layerConfig = {};
- /**
- * zrender will do compositing when root is a canvas and have multiple zlevels.
- */
-
- this._needsManuallyCompositing = false;
-
- if (!singleCanvas) {
- this._width = this._getSize(0);
- this._height = this._getSize(1);
- var domRoot = this._domRoot = createRoot(this._width, this._height);
- root.appendChild(domRoot);
- } else {
- var width = root.width;
- var height = root.height;
-
- if (opts.width != null) {
- width = opts.width;
- }
-
- if (opts.height != null) {
- height = opts.height;
- }
-
- this.dpr = opts.devicePixelRatio || 1; // Use canvas width and height directly
-
- root.width = width * this.dpr;
- root.height = height * this.dpr;
- this._width = width;
- this._height = height; // Create layer if only one given canvas
- // Device can be specified to create a high dpi image.
-
- var mainLayer = new Layer(root, this, this.dpr);
- mainLayer.__builtin__ = true;
- mainLayer.initContext(); // FIXME Use canvas width and height
- // mainLayer.resize(width, height);
-
- layers[CANVAS_ZLEVEL] = mainLayer;
- mainLayer.zlevel = CANVAS_ZLEVEL; // Not use common zlevel.
-
- zlevelList.push(CANVAS_ZLEVEL);
- this._domRoot = root;
- }
- /**
- * @type {module:zrender/Layer}
- * @private
- */
-
-
- this._hoverlayer = null;
- this._hoverElements = [];
- };
-
- Painter.prototype = {
- constructor: Painter,
- getType: function () {
- return 'canvas';
- },
-
- /**
- * If painter use a single canvas
- * @return {boolean}
- */
- isSingleCanvas: function () {
- return this._singleCanvas;
- },
-
- /**
- * @return {HTMLDivElement}
- */
- getViewportRoot: function () {
- return this._domRoot;
- },
- getViewportRootOffset: function () {
- var viewportRoot = this.getViewportRoot();
-
- if (viewportRoot) {
- return {
- offsetLeft: viewportRoot.offsetLeft || 0,
- offsetTop: viewportRoot.offsetTop || 0
- };
- }
- },
-
- /**
- * 刷新
- * @param {boolean} [paintAll=false] 强制绘制所有displayable
- */
- refresh: function (paintAll) {
- var list = this.storage.getDisplayList(true);
- var zlevelList = this._zlevelList;
- this._redrawId = Math.random();
-
- this._paintList(list, paintAll, this._redrawId); // Paint custum layers
-
-
- for (var i = 0; i < zlevelList.length; i++) {
- var z = zlevelList[i];
- var layer = this._layers[z];
-
- if (!layer.__builtin__ && layer.refresh) {
- var clearColor = i === 0 ? this._backgroundColor : null;
- layer.refresh(clearColor);
- }
- }
-
- this.refreshHover();
- return this;
- },
- addHover: function (el, hoverStyle) {
- if (el.__hoverMir) {
- return;
- }
-
- var elMirror = new el.constructor({
- style: el.style,
- shape: el.shape,
- z: el.z,
- z2: el.z2,
- silent: el.silent
- });
- elMirror.__from = el;
- el.__hoverMir = elMirror;
- hoverStyle && elMirror.setStyle(hoverStyle);
-
- this._hoverElements.push(elMirror);
-
- return elMirror;
- },
- removeHover: function (el) {
- var elMirror = el.__hoverMir;
- var hoverElements = this._hoverElements;
- var idx = util.indexOf(hoverElements, elMirror);
-
- if (idx >= 0) {
- hoverElements.splice(idx, 1);
- }
-
- el.__hoverMir = null;
- },
- clearHover: function (el) {
- var hoverElements = this._hoverElements;
-
- for (var i = 0; i < hoverElements.length; i++) {
- var from = hoverElements[i].__from;
-
- if (from) {
- from.__hoverMir = null;
- }
- }
-
- hoverElements.length = 0;
- },
- refreshHover: function () {
- var hoverElements = this._hoverElements;
- var len = hoverElements.length;
- var hoverLayer = this._hoverlayer;
- hoverLayer && hoverLayer.clear();
-
- if (!len) {
- return;
- }
-
- timsort(hoverElements, this.storage.displayableSortFunc); // Use a extream large zlevel
- // FIXME?
-
- if (!hoverLayer) {
- hoverLayer = this._hoverlayer = this.getLayer(HOVER_LAYER_ZLEVEL);
- }
-
- var scope = {};
- hoverLayer.ctx.save();
-
- for (var i = 0; i < len;) {
- var el = hoverElements[i];
- var originalEl = el.__from; // Original el is removed
- // PENDING
-
- if (!(originalEl && originalEl.__zr)) {
- hoverElements.splice(i, 1);
- originalEl.__hoverMir = null;
- len--;
- continue;
- }
-
- i++; // Use transform
- // FIXME style and shape ?
-
- if (!originalEl.invisible) {
- el.transform = originalEl.transform;
- el.invTransform = originalEl.invTransform;
- el.__clipPaths = originalEl.__clipPaths; // el.
-
- this._doPaintEl(el, hoverLayer, true, scope);
- }
- }
-
- hoverLayer.ctx.restore();
- },
- getHoverLayer: function () {
- return this.getLayer(HOVER_LAYER_ZLEVEL);
- },
- _paintList: function (list, paintAll, redrawId) {
- if (this._redrawId !== redrawId) {
- return;
- }
-
- paintAll = paintAll || false;
-
- this._updateLayerStatus(list);
-
- var finished = this._doPaintList(list, paintAll);
-
- if (this._needsManuallyCompositing) {
- this._compositeManually();
- }
-
- if (!finished) {
- var self = this;
- requestAnimationFrame(function () {
- self._paintList(list, paintAll, redrawId);
- });
- }
- },
- _compositeManually: function () {
- var ctx = this.getLayer(CANVAS_ZLEVEL).ctx;
- var width = this._domRoot.width;
- var height = this._domRoot.height;
- ctx.clearRect(0, 0, width, height); // PENDING, If only builtin layer?
-
- this.eachBuiltinLayer(function (layer) {
- if (layer.virtual) {
- ctx.drawImage(layer.dom, 0, 0, width, height);
- }
- });
- },
- _doPaintList: function (list, paintAll) {
- var layerList = [];
-
- for (var zi = 0; zi < this._zlevelList.length; zi++) {
- var zlevel = this._zlevelList[zi];
- var layer = this._layers[zlevel];
-
- if (layer.__builtin__ && layer !== this._hoverlayer && (layer.__dirty || paintAll)) {
- layerList.push(layer);
- }
- }
-
- var finished = true;
-
- for (var k = 0; k < layerList.length; k++) {
- var layer = layerList[k];
- var ctx = layer.ctx;
- var scope = {};
- ctx.save();
- var start = paintAll ? layer.__startIndex : layer.__drawIndex;
- var useTimer = !paintAll && layer.incremental && Date.now;
- var startTime = useTimer && Date.now();
- var clearColor = layer.zlevel === this._zlevelList[0] ? this._backgroundColor : null; // All elements in this layer are cleared.
-
- if (layer.__startIndex === layer.__endIndex) {
- layer.clear(false, clearColor);
- } else if (start === layer.__startIndex) {
- var firstEl = list[start];
-
- if (!firstEl.incremental || !firstEl.notClear || paintAll) {
- layer.clear(false, clearColor);
- }
- }
-
- if (start === -1) {
- console.error('For some unknown reason. drawIndex is -1');
- start = layer.__startIndex;
- }
-
- for (var i = start; i < layer.__endIndex; i++) {
- var el = list[i];
-
- this._doPaintEl(el, layer, paintAll, scope);
-
- el.__dirty = el.__dirtyText = false;
-
- if (useTimer) {
- // Date.now can be executed in 13,025,305 ops/second.
- var dTime = Date.now() - startTime; // Give 15 millisecond to draw.
- // The rest elements will be drawn in the next frame.
-
- if (dTime > 15) {
- break;
- }
- }
- }
-
- layer.__drawIndex = i;
-
- if (layer.__drawIndex < layer.__endIndex) {
- finished = false;
- }
-
- if (scope.prevElClipPaths) {
- // Needs restore the state. If last drawn element is in the clipping area.
- ctx.restore();
- }
-
- ctx.restore();
- }
-
- if (env.wxa) {
- // Flush for weixin application
- util.each(this._layers, function (layer) {
- if (layer && layer.ctx && layer.ctx.draw) {
- layer.ctx.draw();
- }
- });
- }
-
- return finished;
- },
- _doPaintEl: function (el, currentLayer, forcePaint, scope) {
- var ctx = currentLayer.ctx;
- var m = el.transform;
-
- if ((currentLayer.__dirty || forcePaint) && // Ignore invisible element
- !el.invisible // Ignore transparent element
- && el.style.opacity !== 0 // Ignore scale 0 element, in some environment like node-canvas
- // Draw a scale 0 element can cause all following draw wrong
- // And setTransform with scale 0 will cause set back transform failed.
- && !(m && !m[0] && !m[3]) // Ignore culled element
- && !(el.culling && isDisplayableCulled(el, this._width, this._height))) {
- var clipPaths = el.__clipPaths;
- var prevElClipPaths = scope.prevElClipPaths; // Optimize when clipping on group with several elements
-
- if (!prevElClipPaths || isClipPathChanged(clipPaths, prevElClipPaths)) {
- // If has previous clipping state, restore from it
- if (prevElClipPaths) {
- ctx.restore();
- scope.prevElClipPaths = null; // Reset prevEl since context has been restored
-
- scope.prevEl = null;
- } // New clipping state
-
-
- if (clipPaths) {
- ctx.save();
- doClip(clipPaths, ctx);
- scope.prevElClipPaths = clipPaths;
- }
- }
-
- el.beforeBrush && el.beforeBrush(ctx);
- el.brush(ctx, scope.prevEl || null);
- scope.prevEl = el;
- el.afterBrush && el.afterBrush(ctx);
- }
- },
-
- /**
- * 获取 zlevel 所在层,如果不存在则会创建一个新的层
- * @param {number} zlevel
- * @param {boolean} virtual Virtual layer will not be inserted into dom.
- * @return {module:zrender/Layer}
- */
- getLayer: function (zlevel, virtual) {
- if (this._singleCanvas && !this._needsManuallyCompositing) {
- zlevel = CANVAS_ZLEVEL;
- }
-
- var layer = this._layers[zlevel];
-
- if (!layer) {
- // Create a new layer
- layer = new Layer('zr_' + zlevel, this, this.dpr);
- layer.zlevel = zlevel;
- layer.__builtin__ = true;
-
- if (this._layerConfig[zlevel]) {
- util.merge(layer, this._layerConfig[zlevel], true);
- }
-
- if (virtual) {
- layer.virtual = virtual;
- }
-
- this.insertLayer(zlevel, layer); // Context is created after dom inserted to document
- // Or excanvas will get 0px clientWidth and clientHeight
-
- layer.initContext();
- }
-
- return layer;
- },
- insertLayer: function (zlevel, layer) {
- var layersMap = this._layers;
- var zlevelList = this._zlevelList;
- var len = zlevelList.length;
- var prevLayer = null;
- var i = -1;
- var domRoot = this._domRoot;
-
- if (layersMap[zlevel]) {
- logError('ZLevel ' + zlevel + ' has been used already');
- return;
- } // Check if is a valid layer
-
-
- if (!isLayerValid(layer)) {
- logError('Layer of zlevel ' + zlevel + ' is not valid');
- return;
- }
-
- if (len > 0 && zlevel > zlevelList[0]) {
- for (i = 0; i < len - 1; i++) {
- if (zlevelList[i] < zlevel && zlevelList[i + 1] > zlevel) {
- break;
- }
- }
-
- prevLayer = layersMap[zlevelList[i]];
- }
-
- zlevelList.splice(i + 1, 0, zlevel);
- layersMap[zlevel] = layer; // Vitual layer will not directly show on the screen.
- // (It can be a WebGL layer and assigned to a ZImage element)
- // But it still under management of zrender.
-
- if (!layer.virtual) {
- if (prevLayer) {
- var prevDom = prevLayer.dom;
-
- if (prevDom.nextSibling) {
- domRoot.insertBefore(layer.dom, prevDom.nextSibling);
- } else {
- domRoot.appendChild(layer.dom);
- }
- } else {
- if (domRoot.firstChild) {
- domRoot.insertBefore(layer.dom, domRoot.firstChild);
- } else {
- domRoot.appendChild(layer.dom);
- }
- }
- }
- },
- // Iterate each layer
- eachLayer: function (cb, context) {
- var zlevelList = this._zlevelList;
- var z;
- var i;
-
- for (i = 0; i < zlevelList.length; i++) {
- z = zlevelList[i];
- cb.call(context, this._layers[z], z);
- }
- },
- // Iterate each buildin layer
- eachBuiltinLayer: function (cb, context) {
- var zlevelList = this._zlevelList;
- var layer;
- var z;
- var i;
-
- for (i = 0; i < zlevelList.length; i++) {
- z = zlevelList[i];
- layer = this._layers[z];
-
- if (layer.__builtin__) {
- cb.call(context, layer, z);
- }
- }
- },
- // Iterate each other layer except buildin layer
- eachOtherLayer: function (cb, context) {
- var zlevelList = this._zlevelList;
- var layer;
- var z;
- var i;
-
- for (i = 0; i < zlevelList.length; i++) {
- z = zlevelList[i];
- layer = this._layers[z];
-
- if (!layer.__builtin__) {
- cb.call(context, layer, z);
- }
- }
- },
-
- /**
- * 获取所有已创建的层
- * @param {Array.<module:zrender/Layer>} [prevLayer]
- */
- getLayers: function () {
- return this._layers;
- },
- _updateLayerStatus: function (list) {
- this.eachBuiltinLayer(function (layer, z) {
- layer.__dirty = layer.__used = false;
- });
-
- function updatePrevLayer(idx) {
- if (prevLayer) {
- if (prevLayer.__endIndex !== idx) {
- prevLayer.__dirty = true;
- }
-
- prevLayer.__endIndex = idx;
- }
- }
-
- if (this._singleCanvas) {
- for (var i = 1; i < list.length; i++) {
- var el = list[i];
-
- if (el.zlevel !== list[i - 1].zlevel || el.incremental) {
- this._needsManuallyCompositing = true;
- break;
- }
- }
- }
-
- var prevLayer = null;
- var incrementalLayerCount = 0;
-
- for (var i = 0; i < list.length; i++) {
- var el = list[i];
- var zlevel = el.zlevel;
- var layer; // PENDING If change one incremental element style ?
- // TODO Where there are non-incremental elements between incremental elements.
-
- if (el.incremental) {
- layer = this.getLayer(zlevel + INCREMENTAL_INC, this._needsManuallyCompositing);
- layer.incremental = true;
- incrementalLayerCount = 1;
- } else {
- layer = this.getLayer(zlevel + (incrementalLayerCount > 0 ? EL_AFTER_INCREMENTAL_INC : 0), this._needsManuallyCompositing);
- }
-
- if (!layer.__builtin__) {
- logError('ZLevel ' + zlevel + ' has been used by unkown layer ' + layer.id);
- }
-
- if (layer !== prevLayer) {
- layer.__used = true;
-
- if (layer.__startIndex !== i) {
- layer.__dirty = true;
- }
-
- layer.__startIndex = i;
-
- if (!layer.incremental) {
- layer.__drawIndex = i;
- } else {
- // Mark layer draw index needs to update.
- layer.__drawIndex = -1;
- }
-
- updatePrevLayer(i);
- prevLayer = layer;
- }
-
- if (el.__dirty) {
- layer.__dirty = true;
-
- if (layer.incremental && layer.__drawIndex < 0) {
- // Start draw from the first dirty element.
- layer.__drawIndex = i;
- }
- }
- }
-
- updatePrevLayer(i);
- this.eachBuiltinLayer(function (layer, z) {
- // Used in last frame but not in this frame. Needs clear
- if (!layer.__used && layer.getElementCount() > 0) {
- layer.__dirty = true;
- layer.__startIndex = layer.__endIndex = layer.__drawIndex = 0;
- } // For incremental layer. In case start index changed and no elements are dirty.
-
-
- if (layer.__dirty && layer.__drawIndex < 0) {
- layer.__drawIndex = layer.__startIndex;
- }
- });
- },
-
- /**
- * 清除hover层外所有内容
- */
- clear: function () {
- this.eachBuiltinLayer(this._clearLayer);
- return this;
- },
- _clearLayer: function (layer) {
- layer.clear();
- },
- setBackgroundColor: function (backgroundColor) {
- this._backgroundColor = backgroundColor;
- },
-
- /**
- * 修改指定zlevel的绘制参数
- *
- * @param {string} zlevel
- * @param {Object} config 配置对象
- * @param {string} [config.clearColor=0] 每次清空画布的颜色
- * @param {string} [config.motionBlur=false] 是否开启动态模糊
- * @param {number} [config.lastFrameAlpha=0.7]
- * 在开启动态模糊的时候使用,与上一帧混合的alpha值,值越大尾迹越明显
- */
- configLayer: function (zlevel, config) {
- if (config) {
- var layerConfig = this._layerConfig;
-
- if (!layerConfig[zlevel]) {
- layerConfig[zlevel] = config;
- } else {
- util.merge(layerConfig[zlevel], config, true);
- }
-
- for (var i = 0; i < this._zlevelList.length; i++) {
- var _zlevel = this._zlevelList[i];
-
- if (_zlevel === zlevel || _zlevel === zlevel + EL_AFTER_INCREMENTAL_INC) {
- var layer = this._layers[_zlevel];
- util.merge(layer, layerConfig[zlevel], true);
- }
- }
- }
- },
-
- /**
- * 删除指定层
- * @param {number} zlevel 层所在的zlevel
- */
- delLayer: function (zlevel) {
- var layers = this._layers;
- var zlevelList = this._zlevelList;
- var layer = layers[zlevel];
-
- if (!layer) {
- return;
- }
-
- layer.dom.parentNode.removeChild(layer.dom);
- delete layers[zlevel];
- zlevelList.splice(util.indexOf(zlevelList, zlevel), 1);
- },
-
- /**
- * 区域大小变化后重绘
- */
- resize: function (width, height) {
- if (!this._domRoot.style) {
- // Maybe in node or worker
- if (width == null || height == null) {
- return;
- }
-
- this._width = width;
- this._height = height;
- this.getLayer(CANVAS_ZLEVEL).resize(width, height);
- } else {
- var domRoot = this._domRoot; // FIXME Why ?
-
- domRoot.style.display = 'none'; // Save input w/h
-
- var opts = this._opts;
- width != null && (opts.width = width);
- height != null && (opts.height = height);
- width = this._getSize(0);
- height = this._getSize(1);
- domRoot.style.display = ''; // 优化没有实际改变的resize
-
- if (this._width !== width || height !== this._height) {
- domRoot.style.width = width + 'px';
- domRoot.style.height = height + 'px';
-
- for (var id in this._layers) {
- if (this._layers.hasOwnProperty(id)) {
- this._layers[id].resize(width, height);
- }
- }
-
- util.each(this._progressiveLayers, function (layer) {
- layer.resize(width, height);
- });
- this.refresh(true);
- }
-
- this._width = width;
- this._height = height;
- }
-
- return this;
- },
-
- /**
- * 清除单独的一个层
- * @param {number} zlevel
- */
- clearLayer: function (zlevel) {
- var layer = this._layers[zlevel];
-
- if (layer) {
- layer.clear();
- }
- },
-
- /**
- * 释放
- */
- dispose: function () {
- this.root.innerHTML = '';
- this.root = this.storage = this._domRoot = this._layers = null;
- },
-
- /**
- * Get canvas which has all thing rendered
- * @param {Object} opts
- * @param {string} [opts.backgroundColor]
- * @param {number} [opts.pixelRatio]
- */
- getRenderedCanvas: function (opts) {
- opts = opts || {};
-
- if (this._singleCanvas && !this._compositeManually) {
- return this._layers[CANVAS_ZLEVEL].dom;
- }
-
- var imageLayer = new Layer('image', this, opts.pixelRatio || this.dpr);
- imageLayer.initContext();
- imageLayer.clear(false, opts.backgroundColor || this._backgroundColor);
-
- if (opts.pixelRatio <= this.dpr) {
- this.refresh();
- var width = imageLayer.dom.width;
- var height = imageLayer.dom.height;
- var ctx = imageLayer.ctx;
- this.eachLayer(function (layer) {
- if (layer.__builtin__) {
- ctx.drawImage(layer.dom, 0, 0, width, height);
- } else if (layer.renderToCanvas) {
- imageLayer.ctx.save();
- layer.renderToCanvas(imageLayer.ctx);
- imageLayer.ctx.restore();
- }
- });
- } else {
- // PENDING, echarts-gl and incremental rendering.
- var scope = {};
- var displayList = this.storage.getDisplayList(true);
-
- for (var i = 0; i < displayList.length; i++) {
- var el = displayList[i];
-
- this._doPaintEl(el, imageLayer, true, scope);
- }
- }
-
- return imageLayer.dom;
- },
-
- /**
- * 获取绘图区域宽度
- */
- getWidth: function () {
- return this._width;
- },
-
- /**
- * 获取绘图区域高度
- */
- getHeight: function () {
- return this._height;
- },
- _getSize: function (whIdx) {
- var opts = this._opts;
- var wh = ['width', 'height'][whIdx];
- var cwh = ['clientWidth', 'clientHeight'][whIdx];
- var plt = ['paddingLeft', 'paddingTop'][whIdx];
- var prb = ['paddingRight', 'paddingBottom'][whIdx];
-
- if (opts[wh] != null && opts[wh] !== 'auto') {
- return parseFloat(opts[wh]);
- }
-
- var root = this.root; // IE8 does not support getComputedStyle, but it use VML.
-
- var stl = document.defaultView.getComputedStyle(root);
- return (root[cwh] || parseInt10(stl[wh]) || parseInt10(root.style[wh])) - (parseInt10(stl[plt]) || 0) - (parseInt10(stl[prb]) || 0) | 0;
- },
- pathToImage: function (path, dpr) {
- dpr = dpr || this.dpr;
- var canvas = document.createElement('canvas');
- var ctx = canvas.getContext('2d');
- var rect = path.getBoundingRect();
- var style = path.style;
- var shadowBlurSize = style.shadowBlur * dpr;
- var shadowOffsetX = style.shadowOffsetX * dpr;
- var shadowOffsetY = style.shadowOffsetY * dpr;
- var lineWidth = style.hasStroke() ? style.lineWidth : 0;
- var leftMargin = Math.max(lineWidth / 2, -shadowOffsetX + shadowBlurSize);
- var rightMargin = Math.max(lineWidth / 2, shadowOffsetX + shadowBlurSize);
- var topMargin = Math.max(lineWidth / 2, -shadowOffsetY + shadowBlurSize);
- var bottomMargin = Math.max(lineWidth / 2, shadowOffsetY + shadowBlurSize);
- var width = rect.width + leftMargin + rightMargin;
- var height = rect.height + topMargin + bottomMargin;
- canvas.width = width * dpr;
- canvas.height = height * dpr;
- ctx.scale(dpr, dpr);
- ctx.clearRect(0, 0, width, height);
- ctx.dpr = dpr;
- var pathTransform = {
- position: path.position,
- rotation: path.rotation,
- scale: path.scale
- };
- path.position = [leftMargin - rect.x, topMargin - rect.y];
- path.rotation = 0;
- path.scale = [1, 1];
- path.updateTransform();
-
- if (path) {
- path.brush(ctx);
- }
-
- var ImageShape = Image;
- var imgShape = new ImageShape({
- style: {
- x: 0,
- y: 0,
- image: canvas
- }
- });
-
- if (pathTransform.position != null) {
- imgShape.position = path.position = pathTransform.position;
- }
-
- if (pathTransform.rotation != null) {
- imgShape.rotation = path.rotation = pathTransform.rotation;
- }
-
- if (pathTransform.scale != null) {
- imgShape.scale = path.scale = pathTransform.scale;
- }
-
- return imgShape;
- }
- };
- var _default = Painter;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2517:
- /***/ (function(module, exports, __webpack_require__) {
-
- var util = __webpack_require__(864);
-
- var _config = __webpack_require__(1781);
-
- var devicePixelRatio = _config.devicePixelRatio;
-
- var Style = __webpack_require__(1895);
-
- var Pattern = __webpack_require__(2263);
-
- /**
- * @module zrender/Layer
- * @author pissang(https://www.github.com/pissang)
- */
- function returnFalse() {
- return false;
- }
- /**
- * 创建dom
- *
- * @inner
- * @param {string} id dom id 待用
- * @param {Painter} painter painter instance
- * @param {number} number
- */
-
-
- function createDom(id, painter, dpr) {
- var newDom = util.createCanvas();
- var width = painter.getWidth();
- var height = painter.getHeight();
- var newDomStyle = newDom.style;
-
- if (newDomStyle) {
- // In node or some other non-browser environment
- newDomStyle.position = 'absolute';
- newDomStyle.left = 0;
- newDomStyle.top = 0;
- newDomStyle.width = width + 'px';
- newDomStyle.height = height + 'px';
- newDom.setAttribute('data-zr-dom-id', id);
- }
-
- newDom.width = width * dpr;
- newDom.height = height * dpr;
- return newDom;
- }
- /**
- * @alias module:zrender/Layer
- * @constructor
- * @extends module:zrender/mixin/Transformable
- * @param {string} id
- * @param {module:zrender/Painter} painter
- * @param {number} [dpr]
- */
-
-
- var Layer = function (id, painter, dpr) {
- var dom;
- dpr = dpr || devicePixelRatio;
-
- if (typeof id === 'string') {
- dom = createDom(id, painter, dpr);
- } // Not using isDom because in node it will return false
- else if (util.isObject(id)) {
- dom = id;
- id = dom.id;
- }
-
- this.id = id;
- this.dom = dom;
- var domStyle = dom.style;
-
- if (domStyle) {
- // Not in node
- dom.onselectstart = returnFalse; // 避免页面选中的尴尬
-
- domStyle['-webkit-user-select'] = 'none';
- domStyle['user-select'] = 'none';
- domStyle['-webkit-touch-callout'] = 'none';
- domStyle['-webkit-tap-highlight-color'] = 'rgba(0,0,0,0)';
- domStyle['padding'] = 0; // eslint-disable-line dot-notation
-
- domStyle['margin'] = 0; // eslint-disable-line dot-notation
-
- domStyle['border-width'] = 0;
- }
-
- this.domBack = null;
- this.ctxBack = null;
- this.painter = painter;
- this.config = null; // Configs
-
- /**
- * 每次清空画布的颜色
- * @type {string}
- * @default 0
- */
-
- this.clearColor = 0;
- /**
- * 是否开启动态模糊
- * @type {boolean}
- * @default false
- */
-
- this.motionBlur = false;
- /**
- * 在开启动态模糊的时候使用,与上一帧混合的alpha值,值越大尾迹越明显
- * @type {number}
- * @default 0.7
- */
-
- this.lastFrameAlpha = 0.7;
- /**
- * Layer dpr
- * @type {number}
- */
-
- this.dpr = dpr;
- };
-
- Layer.prototype = {
- constructor: Layer,
- __dirty: true,
- __used: false,
- __drawIndex: 0,
- __startIndex: 0,
- __endIndex: 0,
- incremental: false,
- getElementCount: function () {
- return this.__endIndex - this.__startIndex;
- },
- initContext: function () {
- this.ctx = this.dom.getContext('2d');
- this.ctx.dpr = this.dpr;
- },
- createBackBuffer: function () {
- var dpr = this.dpr;
- this.domBack = createDom('back-' + this.id, this.painter, dpr);
- this.ctxBack = this.domBack.getContext('2d');
-
- if (dpr !== 1) {
- this.ctxBack.scale(dpr, dpr);
- }
- },
-
- /**
- * @param {number} width
- * @param {number} height
- */
- resize: function (width, height) {
- var dpr = this.dpr;
- var dom = this.dom;
- var domStyle = dom.style;
- var domBack = this.domBack;
-
- if (domStyle) {
- domStyle.width = width + 'px';
- domStyle.height = height + 'px';
- }
-
- dom.width = width * dpr;
- dom.height = height * dpr;
-
- if (domBack) {
- domBack.width = width * dpr;
- domBack.height = height * dpr;
-
- if (dpr !== 1) {
- this.ctxBack.scale(dpr, dpr);
- }
- }
- },
-
- /**
- * 清空该层画布
- * @param {boolean} [clearAll]=false Clear all with out motion blur
- * @param {Color} [clearColor]
- */
- clear: function (clearAll, clearColor) {
- var dom = this.dom;
- var ctx = this.ctx;
- var width = dom.width;
- var height = dom.height;
- var clearColor = clearColor || this.clearColor;
- var haveMotionBLur = this.motionBlur && !clearAll;
- var lastFrameAlpha = this.lastFrameAlpha;
- var dpr = this.dpr;
-
- if (haveMotionBLur) {
- if (!this.domBack) {
- this.createBackBuffer();
- }
-
- this.ctxBack.globalCompositeOperation = 'copy';
- this.ctxBack.drawImage(dom, 0, 0, width / dpr, height / dpr);
- }
-
- ctx.clearRect(0, 0, width, height);
-
- if (clearColor && clearColor !== 'transparent') {
- var clearColorGradientOrPattern; // Gradient
-
- if (clearColor.colorStops) {
- // Cache canvas gradient
- clearColorGradientOrPattern = clearColor.__canvasGradient || Style.getGradient(ctx, clearColor, {
- x: 0,
- y: 0,
- width: width,
- height: height
- });
- clearColor.__canvasGradient = clearColorGradientOrPattern;
- } // Pattern
- else if (clearColor.image) {
- clearColorGradientOrPattern = Pattern.prototype.getCanvasPattern.call(clearColor, ctx);
- }
-
- ctx.save();
- ctx.fillStyle = clearColorGradientOrPattern || clearColor;
- ctx.fillRect(0, 0, width, height);
- ctx.restore();
- }
-
- if (haveMotionBLur) {
- var domBack = this.domBack;
- ctx.save();
- ctx.globalAlpha = lastFrameAlpha;
- ctx.drawImage(domBack, 0, 0, width, height);
- ctx.restore();
- }
- }
- };
- var _default = Layer;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2518:
- /***/ (function(module, exports, __webpack_require__) {
-
- var util = __webpack_require__(864);
-
- var _event = __webpack_require__(1437);
-
- var Dispatcher = _event.Dispatcher;
-
- var requestAnimationFrame = __webpack_require__(2264);
-
- var Animator = __webpack_require__(2260);
-
- /**
- * 动画主类, 调度和管理所有动画控制器
- *
- * @module zrender/animation/Animation
- * @author pissang(https://github.com/pissang)
- */
- // TODO Additive animation
- // http://iosoteric.com/additive-animations-animatewithduration-in-ios-8/
- // https://developer.apple.com/videos/wwdc2014/#236
-
- /**
- * @typedef {Object} IZRenderStage
- * @property {Function} update
- */
-
- /**
- * @alias module:zrender/animation/Animation
- * @constructor
- * @param {Object} [options]
- * @param {Function} [options.onframe]
- * @param {IZRenderStage} [options.stage]
- * @example
- * var animation = new Animation();
- * var obj = {
- * x: 100,
- * y: 100
- * };
- * animation.animate(node.position)
- * .when(1000, {
- * x: 500,
- * y: 500
- * })
- * .when(2000, {
- * x: 100,
- * y: 100
- * })
- * .start('spline');
- */
- var Animation = function (options) {
- options = options || {};
- this.stage = options.stage || {};
-
- this.onframe = options.onframe || function () {}; // private properties
-
-
- this._clips = [];
- this._running = false;
- this._time;
- this._pausedTime;
- this._pauseStart;
- this._paused = false;
- Dispatcher.call(this);
- };
-
- Animation.prototype = {
- constructor: Animation,
-
- /**
- * 添加 clip
- * @param {module:zrender/animation/Clip} clip
- */
- addClip: function (clip) {
- this._clips.push(clip);
- },
-
- /**
- * 添加 animator
- * @param {module:zrender/animation/Animator} animator
- */
- addAnimator: function (animator) {
- animator.animation = this;
- var clips = animator.getClips();
-
- for (var i = 0; i < clips.length; i++) {
- this.addClip(clips[i]);
- }
- },
-
- /**
- * 删除动画片段
- * @param {module:zrender/animation/Clip} clip
- */
- removeClip: function (clip) {
- var idx = util.indexOf(this._clips, clip);
-
- if (idx >= 0) {
- this._clips.splice(idx, 1);
- }
- },
-
- /**
- * 删除动画片段
- * @param {module:zrender/animation/Animator} animator
- */
- removeAnimator: function (animator) {
- var clips = animator.getClips();
-
- for (var i = 0; i < clips.length; i++) {
- this.removeClip(clips[i]);
- }
-
- animator.animation = null;
- },
- _update: function () {
- var time = new Date().getTime() - this._pausedTime;
-
- var delta = time - this._time;
- var clips = this._clips;
- var len = clips.length;
- var deferredEvents = [];
- var deferredClips = [];
-
- for (var i = 0; i < len; i++) {
- var clip = clips[i];
- var e = clip.step(time, delta); // Throw out the events need to be called after
- // stage.update, like destroy
-
- if (e) {
- deferredEvents.push(e);
- deferredClips.push(clip);
- }
- } // Remove the finished clip
-
-
- for (var i = 0; i < len;) {
- if (clips[i]._needsRemove) {
- clips[i] = clips[len - 1];
- clips.pop();
- len--;
- } else {
- i++;
- }
- }
-
- len = deferredEvents.length;
-
- for (var i = 0; i < len; i++) {
- deferredClips[i].fire(deferredEvents[i]);
- }
-
- this._time = time;
- this.onframe(delta); // 'frame' should be triggered before stage, because upper application
- // depends on the sequence (e.g., echarts-stream and finish
- // event judge)
-
- this.trigger('frame', delta);
-
- if (this.stage.update) {
- this.stage.update();
- }
- },
- _startLoop: function () {
- var self = this;
- this._running = true;
-
- function step() {
- if (self._running) {
- requestAnimationFrame(step);
- !self._paused && self._update();
- }
- }
-
- requestAnimationFrame(step);
- },
-
- /**
- * Start animation.
- */
- start: function () {
- this._time = new Date().getTime();
- this._pausedTime = 0;
-
- this._startLoop();
- },
-
- /**
- * Stop animation.
- */
- stop: function () {
- this._running = false;
- },
-
- /**
- * Pause animation.
- */
- pause: function () {
- if (!this._paused) {
- this._pauseStart = new Date().getTime();
- this._paused = true;
- }
- },
-
- /**
- * Resume animation.
- */
- resume: function () {
- if (this._paused) {
- this._pausedTime += new Date().getTime() - this._pauseStart;
- this._paused = false;
- }
- },
-
- /**
- * Clear animation.
- */
- clear: function () {
- this._clips = [];
- },
-
- /**
- * Whether animation finished.
- */
- isFinished: function () {
- return !this._clips.length;
- },
-
- /**
- * Creat animator for a target, whose props can be animated.
- *
- * @param {Object} target
- * @param {Object} options
- * @param {boolean} [options.loop=false] Whether loop animation.
- * @param {Function} [options.getter=null] Get value from target.
- * @param {Function} [options.setter=null] Set value to target.
- * @return {module:zrender/animation/Animation~Animator}
- */
- // TODO Gap
- animate: function (target, options) {
- options = options || {};
- var animator = new Animator(target, options.loop, options.getter, options.setter);
- this.addAnimator(animator);
- return animator;
- }
- };
- util.mixin(Animation, Dispatcher);
- var _default = Animation;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2519:
- /***/ (function(module, exports, __webpack_require__) {
-
- var _event = __webpack_require__(1437);
-
- var addEventListener = _event.addEventListener;
- var removeEventListener = _event.removeEventListener;
- var normalizeEvent = _event.normalizeEvent;
- var getNativeEvent = _event.getNativeEvent;
-
- var zrUtil = __webpack_require__(864);
-
- var Eventful = __webpack_require__(1516);
-
- var env = __webpack_require__(1316);
-
- /* global document */
- var TOUCH_CLICK_DELAY = 300;
- var globalEventSupported = env.domSupported;
-
- var localNativeListenerNames = function () {
- var mouseHandlerNames = ['click', 'dblclick', 'mousewheel', 'mouseout', 'mouseup', 'mousedown', 'mousemove', 'contextmenu'];
- var touchHandlerNames = ['touchstart', 'touchend', 'touchmove'];
- var pointerEventNameMap = {
- pointerdown: 1,
- pointerup: 1,
- pointermove: 1,
- pointerout: 1
- };
- var pointerHandlerNames = zrUtil.map(mouseHandlerNames, function (name) {
- var nm = name.replace('mouse', 'pointer');
- return pointerEventNameMap.hasOwnProperty(nm) ? nm : name;
- });
- return {
- mouse: mouseHandlerNames,
- touch: touchHandlerNames,
- pointer: pointerHandlerNames
- };
- }();
-
- var globalNativeListenerNames = {
- mouse: ['mousemove', 'mouseup'],
- pointer: ['pointermove', 'pointerup']
- };
-
- function eventNameFix(name) {
- return name === 'mousewheel' && env.browser.firefox ? 'DOMMouseScroll' : name;
- }
-
- function isPointerFromTouch(event) {
- var pointerType = event.pointerType;
- return pointerType === 'pen' || pointerType === 'touch';
- } // function useMSGuesture(handlerProxy, event) {
- // return isPointerFromTouch(event) && !!handlerProxy._msGesture;
- // }
- // function onMSGestureChange(proxy, event) {
- // if (event.translationX || event.translationY) {
- // // mousemove is carried by MSGesture to reduce the sensitivity.
- // proxy.handler.dispatchToElement(event.target, 'mousemove', event);
- // }
- // if (event.scale !== 1) {
- // event.pinchX = event.offsetX;
- // event.pinchY = event.offsetY;
- // event.pinchScale = event.scale;
- // proxy.handler.dispatchToElement(event.target, 'pinch', event);
- // }
- // }
-
- /**
- * Prevent mouse event from being dispatched after Touch Events action
- * @see <https://github.com/deltakosh/handjs/blob/master/src/hand.base.js>
- * 1. Mobile browsers dispatch mouse events 300ms after touchend.
- * 2. Chrome for Android dispatch mousedown for long-touch about 650ms
- * Result: Blocking Mouse Events for 700ms.
- *
- * @param {DOMHandlerScope} scope
- */
-
-
- function setTouchTimer(scope) {
- scope.touching = true;
-
- if (scope.touchTimer != null) {
- clearTimeout(scope.touchTimer);
- scope.touchTimer = null;
- }
-
- scope.touchTimer = setTimeout(function () {
- scope.touching = false;
- scope.touchTimer = null;
- }, 700);
- } // Mark touch, which is useful in distinguish touch and
- // mouse event in upper applicatoin.
-
-
- function markTouch(event) {
- event && (event.zrByTouch = true);
- } // function markTriggeredFromLocal(event) {
- // event && (event.__zrIsFromLocal = true);
- // }
- // function isTriggeredFromLocal(instance, event) {
- // return !!(event && event.__zrIsFromLocal);
- // }
-
-
- function normalizeGlobalEvent(instance, event) {
- // offsetX, offsetY still need to be calculated. They are necessary in the event
- // handlers of the upper applications. Set `true` to force calculate them.
- return normalizeEvent(instance.dom, new FakeGlobalEvent(instance, event), true);
- }
- /**
- * Detect whether the given el is in `painterRoot`.
- */
-
-
- function isLocalEl(instance, el) {
- var isLocal = false;
-
- do {
- el = el && el.parentNode;
- } while (el && el.nodeType !== 9 && !(isLocal = el === instance.painterRoot));
-
- return isLocal;
- }
- /**
- * Make a fake event but not change the original event,
- * becuase the global event probably be used by other
- * listeners not belonging to zrender.
- * @class
- */
-
-
- function FakeGlobalEvent(instance, event) {
- this.type = event.type;
- this.target = this.currentTarget = instance.dom;
- this.pointerType = event.pointerType; // Necessray for the force calculation of zrX, zrY
-
- this.clientX = event.clientX;
- this.clientY = event.clientY; // Because we do not mount global listeners to touch events,
- // we do not copy `targetTouches` and `changedTouches` here.
- }
-
- var fakeGlobalEventProto = FakeGlobalEvent.prototype; // we make the default methods on the event do nothing,
- // otherwise it is dangerous. See more details in
- // [Drag outside] in `Handler.js`.
-
- fakeGlobalEventProto.stopPropagation = fakeGlobalEventProto.stopImmediatePropagation = fakeGlobalEventProto.preventDefault = zrUtil.noop;
- /**
- * Local DOM Handlers
- * @this {HandlerProxy}
- */
-
- var localDOMHandlers = {
- mousedown: function (event) {
- event = normalizeEvent(this.dom, event);
- this._mayPointerCapture = [event.zrX, event.zrY];
- this.trigger('mousedown', event);
- },
- mousemove: function (event) {
- event = normalizeEvent(this.dom, event);
- var downPoint = this._mayPointerCapture;
-
- if (downPoint && (event.zrX !== downPoint[0] || event.zrY !== downPoint[1])) {
- togglePointerCapture(this, true);
- }
-
- this.trigger('mousemove', event);
- },
- mouseup: function (event) {
- event = normalizeEvent(this.dom, event);
- togglePointerCapture(this, false);
- this.trigger('mouseup', event);
- },
- mouseout: function (event) {
- event = normalizeEvent(this.dom, event); // Similarly to the browser did on `document` and touch event,
- // `globalout` will be delayed to final pointer cature release.
-
- if (this._pointerCapturing) {
- event.zrEventControl = 'no_globalout';
- } // There might be some doms created by upper layer application
- // at the same level of painter.getViewportRoot() (e.g., tooltip
- // dom created by echarts), where 'globalout' event should not
- // be triggered when mouse enters these doms. (But 'mouseout'
- // should be triggered at the original hovered element as usual).
-
-
- var element = event.toElement || event.relatedTarget;
- event.zrIsToLocalDOM = isLocalEl(this, element);
- this.trigger('mouseout', event);
- },
- touchstart: function (event) {
- // Default mouse behaviour should not be disabled here.
- // For example, page may needs to be slided.
- event = normalizeEvent(this.dom, event);
- markTouch(event);
- this._lastTouchMoment = new Date();
- this.handler.processGesture(event, 'start'); // For consistent event listener for both touch device and mouse device,
- // we simulate "mouseover-->mousedown" in touch device. So we trigger
- // `mousemove` here (to trigger `mouseover` inside), and then trigger
- // `mousedown`.
-
- localDOMHandlers.mousemove.call(this, event);
- localDOMHandlers.mousedown.call(this, event);
- },
- touchmove: function (event) {
- event = normalizeEvent(this.dom, event);
- markTouch(event);
- this.handler.processGesture(event, 'change'); // Mouse move should always be triggered no matter whether
- // there is gestrue event, because mouse move and pinch may
- // be used at the same time.
-
- localDOMHandlers.mousemove.call(this, event);
- },
- touchend: function (event) {
- event = normalizeEvent(this.dom, event);
- markTouch(event);
- this.handler.processGesture(event, 'end');
- localDOMHandlers.mouseup.call(this, event); // Do not trigger `mouseout` here, in spite of `mousemove`(`mouseover`) is
- // triggered in `touchstart`. This seems to be illogical, but by this mechanism,
- // we can conveniently implement "hover style" in both PC and touch device just
- // by listening to `mouseover` to add "hover style" and listening to `mouseout`
- // to remove "hover style" on an element, without any additional code for
- // compatibility. (`mouseout` will not be triggered in `touchend`, so "hover
- // style" will remain for user view)
- // click event should always be triggered no matter whether
- // there is gestrue event. System click can not be prevented.
-
- if (+new Date() - this._lastTouchMoment < TOUCH_CLICK_DELAY) {
- localDOMHandlers.click.call(this, event);
- }
- },
- pointerdown: function (event) {
- localDOMHandlers.mousedown.call(this, event); // if (useMSGuesture(this, event)) {
- // this._msGesture.addPointer(event.pointerId);
- // }
- },
- pointermove: function (event) {
- // FIXME
- // pointermove is so sensitive that it always triggered when
- // tap(click) on touch screen, which affect some judgement in
- // upper application. So, we dont support mousemove on MS touch
- // device yet.
- if (!isPointerFromTouch(event)) {
- localDOMHandlers.mousemove.call(this, event);
- }
- },
- pointerup: function (event) {
- localDOMHandlers.mouseup.call(this, event);
- },
- pointerout: function (event) {
- // pointerout will be triggered when tap on touch screen
- // (IE11+/Edge on MS Surface) after click event triggered,
- // which is inconsistent with the mousout behavior we defined
- // in touchend. So we unify them.
- // (check localDOMHandlers.touchend for detailed explanation)
- if (!isPointerFromTouch(event)) {
- localDOMHandlers.mouseout.call(this, event);
- }
- }
- };
- /**
- * Othere DOM UI Event handlers for zr dom.
- * @this {HandlerProxy}
- */
-
- zrUtil.each(['click', 'mousewheel', 'dblclick', 'contextmenu'], function (name) {
- localDOMHandlers[name] = function (event) {
- event = normalizeEvent(this.dom, event);
- this.trigger(name, event);
- };
- });
- /**
- * DOM UI Event handlers for global page.
- *
- * [Caution]:
- * those handlers should both support in capture phase and bubble phase!
- *
- * @this {HandlerProxy}
- */
-
- var globalDOMHandlers = {
- pointermove: function (event) {
- // FIXME
- // pointermove is so sensitive that it always triggered when
- // tap(click) on touch screen, which affect some judgement in
- // upper application. So, we dont support mousemove on MS touch
- // device yet.
- if (!isPointerFromTouch(event)) {
- globalDOMHandlers.mousemove.call(this, event);
- }
- },
- pointerup: function (event) {
- globalDOMHandlers.mouseup.call(this, event);
- },
- mousemove: function (event) {
- this.trigger('mousemove', event);
- },
- mouseup: function (event) {
- var pointerCaptureReleasing = this._pointerCapturing;
- togglePointerCapture(this, false);
- this.trigger('mouseup', event);
-
- if (pointerCaptureReleasing) {
- event.zrEventControl = 'only_globalout';
- this.trigger('mouseout', event);
- }
- }
- };
- /**
- * @param {HandlerProxy} instance
- * @param {DOMHandlerScope} scope
- */
-
- function mountLocalDOMEventListeners(instance, scope) {
- var domHandlers = scope.domHandlers;
-
- if (env.pointerEventsSupported) {
- // Only IE11+/Edge
- // 1. On devices that both enable touch and mouse (e.g., MS Surface and lenovo X240),
- // IE11+/Edge do not trigger touch event, but trigger pointer event and mouse event
- // at the same time.
- // 2. On MS Surface, it probablely only trigger mousedown but no mouseup when tap on
- // screen, which do not occurs in pointer event.
- // So we use pointer event to both detect touch gesture and mouse behavior.
- zrUtil.each(localNativeListenerNames.pointer, function (nativeEventName) {
- mountSingleDOMEventListener(scope, nativeEventName, function (event) {
- // markTriggeredFromLocal(event);
- domHandlers[nativeEventName].call(instance, event);
- });
- }); // FIXME
- // Note: MS Gesture require CSS touch-action set. But touch-action is not reliable,
- // which does not prevent defuault behavior occasionally (which may cause view port
- // zoomed in but use can not zoom it back). And event.preventDefault() does not work.
- // So we have to not to use MSGesture and not to support touchmove and pinch on MS
- // touch screen. And we only support click behavior on MS touch screen now.
- // MS Gesture Event is only supported on IE11+/Edge and on Windows 8+.
- // We dont support touch on IE on win7.
- // See <https://msdn.microsoft.com/en-us/library/dn433243(v=vs.85).aspx>
- // if (typeof MSGesture === 'function') {
- // (this._msGesture = new MSGesture()).target = dom; // jshint ignore:line
- // dom.addEventListener('MSGestureChange', onMSGestureChange);
- // }
- } else {
- if (env.touchEventsSupported) {
- zrUtil.each(localNativeListenerNames.touch, function (nativeEventName) {
- mountSingleDOMEventListener(scope, nativeEventName, function (event) {
- // markTriggeredFromLocal(event);
- domHandlers[nativeEventName].call(instance, event);
- setTouchTimer(scope);
- });
- }); // Handler of 'mouseout' event is needed in touch mode, which will be mounted below.
- // addEventListener(root, 'mouseout', this._mouseoutHandler);
- } // 1. Considering some devices that both enable touch and mouse event (like on MS Surface
- // and lenovo X240, @see #2350), we make mouse event be always listened, otherwise
- // mouse event can not be handle in those devices.
- // 2. On MS Surface, Chrome will trigger both touch event and mouse event. How to prevent
- // mouseevent after touch event triggered, see `setTouchTimer`.
-
-
- zrUtil.each(localNativeListenerNames.mouse, function (nativeEventName) {
- mountSingleDOMEventListener(scope, nativeEventName, function (event) {
- event = getNativeEvent(event);
-
- if (!scope.touching) {
- // markTriggeredFromLocal(event);
- domHandlers[nativeEventName].call(instance, event);
- }
- });
- });
- }
- }
- /**
- * @param {HandlerProxy} instance
- * @param {DOMHandlerScope} scope
- */
-
-
- function mountGlobalDOMEventListeners(instance, scope) {
- // Only IE11+/Edge. See the comment in `mountLocalDOMEventListeners`.
- if (env.pointerEventsSupported) {
- zrUtil.each(globalNativeListenerNames.pointer, mount);
- } // Touch event has implemented "drag outside" so we do not mount global listener for touch event.
- // (see https://www.w3.org/TR/touch-events/#the-touchmove-event)
- // We do not consider "both-support-touch-and-mouse device" for this feature (see the comment of
- // `mountLocalDOMEventListeners`) to avoid bugs util some requirements come.
- else if (!env.touchEventsSupported) {
- zrUtil.each(globalNativeListenerNames.mouse, mount);
- }
-
- function mount(nativeEventName) {
- function nativeEventListener(event) {
- event = getNativeEvent(event); // See the reason in [Drag outside] in `Handler.js`
- // This checking supports both `useCapture` or not.
- // PENDING: if there is performance issue in some devices,
- // we probably can not use `useCapture` and change a easier
- // to judes whether local (mark).
-
- if (!isLocalEl(instance, event.target)) {
- event = normalizeGlobalEvent(instance, event);
- scope.domHandlers[nativeEventName].call(instance, event);
- }
- }
-
- mountSingleDOMEventListener(scope, nativeEventName, nativeEventListener, {
- capture: true
- } // See [Drag Outside] in `Handler.js`
- );
- }
- }
-
- function mountSingleDOMEventListener(scope, nativeEventName, listener, opt) {
- scope.mounted[nativeEventName] = listener;
- scope.listenerOpts[nativeEventName] = opt;
- addEventListener(scope.domTarget, eventNameFix(nativeEventName), listener, opt);
- }
-
- function unmountDOMEventListeners(scope) {
- var mounted = scope.mounted;
-
- for (var nativeEventName in mounted) {
- if (mounted.hasOwnProperty(nativeEventName)) {
- removeEventListener(scope.domTarget, eventNameFix(nativeEventName), mounted[nativeEventName], scope.listenerOpts[nativeEventName]);
- }
- }
-
- scope.mounted = {};
- }
- /**
- * See [Drag Outside] in `Handler.js`.
- * @implement
- * @param {boolean} isPointerCapturing Should never be `null`/`undefined`.
- * `true`: start to capture pointer if it is not capturing.
- * `false`: end the capture if it is capturing.
- */
-
-
- function togglePointerCapture(instance, isPointerCapturing) {
- instance._mayPointerCapture = null;
-
- if (globalEventSupported && instance._pointerCapturing ^ isPointerCapturing) {
- instance._pointerCapturing = isPointerCapturing;
- var globalHandlerScope = instance._globalHandlerScope;
- isPointerCapturing ? mountGlobalDOMEventListeners(instance, globalHandlerScope) : unmountDOMEventListeners(globalHandlerScope);
- }
- }
- /**
- * @inner
- * @class
- */
-
-
- function DOMHandlerScope(domTarget, domHandlers) {
- this.domTarget = domTarget;
- this.domHandlers = domHandlers; // Key: eventName, value: mounted handler funcitons.
- // Used for unmount.
-
- this.mounted = {};
- this.listenerOpts = {};
- this.touchTimer = null;
- this.touching = false;
- }
- /**
- * @public
- * @class
- */
-
-
- function HandlerDomProxy(dom, painterRoot) {
- Eventful.call(this);
- this.dom = dom;
- this.painterRoot = painterRoot;
- this._localHandlerScope = new DOMHandlerScope(dom, localDOMHandlers);
-
- if (globalEventSupported) {
- this._globalHandlerScope = new DOMHandlerScope(document, globalDOMHandlers);
- }
- /**
- * @type {boolean}
- */
-
-
- this._pointerCapturing = false;
- /**
- * @type {Array.<number>} [x, y] or null.
- */
-
- this._mayPointerCapture = null;
- mountLocalDOMEventListeners(this, this._localHandlerScope);
- }
-
- var handlerDomProxyProto = HandlerDomProxy.prototype;
-
- handlerDomProxyProto.dispose = function () {
- unmountDOMEventListeners(this._localHandlerScope);
-
- if (globalEventSupported) {
- unmountDOMEventListeners(this._globalHandlerScope);
- }
- };
-
- handlerDomProxyProto.setCursor = function (cursorStyle) {
- this.dom.style && (this.dom.style.cursor = cursorStyle || 'default');
- };
-
- zrUtil.mixin(HandlerDomProxy, Eventful);
- var _default = HandlerDomProxy;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2520:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var makeStyleMapper = __webpack_require__(1599);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var getLineStyle = makeStyleMapper([['lineWidth', 'width'], ['stroke', 'color'], ['opacity'], ['shadowBlur'], ['shadowOffsetX'], ['shadowOffsetY'], ['shadowColor']]);
- var _default = {
- getLineStyle: function (excludes) {
- var style = getLineStyle(this, excludes); // Always set lineDash whether dashed, otherwise we can not
- // erase the previous style when assigning to el.style.
-
- style.lineDash = this.getLineDash(style.lineWidth);
- return style;
- },
- getLineDash: function (lineWidth) {
- if (lineWidth == null) {
- lineWidth = 1;
- }
-
- var lineType = this.get('type');
- var dotSize = Math.max(lineWidth, 2);
- var dashSize = lineWidth * 4;
- return lineType === 'solid' || lineType == null ? // Use `false` but not `null` for the solid line here, because `null` might be
- // ignored when assigning to `el.style`. e.g., when setting `lineStyle.type` as
- // `'dashed'` and `emphasis.lineStyle.type` as `'solid'` in graph series, the
- // `lineDash` gotten form the latter one is not able to erase that from the former
- // one if using `null` here according to the emhpsis strategy in `util/graphic.js`.
- false : lineType === 'dashed' ? [dashSize, dashSize] : [dotSize, dotSize];
- }
- };
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2521:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var makeStyleMapper = __webpack_require__(1599);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var getAreaStyle = makeStyleMapper([['fill', 'color'], ['shadowBlur'], ['shadowOffsetX'], ['shadowOffsetY'], ['opacity'], ['shadowColor']]);
- var _default = {
- getAreaStyle: function (excludes, includes) {
- return getAreaStyle(this, excludes, includes);
- }
- };
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2522:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var textContain = __webpack_require__(1402);
-
- var graphicUtil = __webpack_require__(906);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var PATH_COLOR = ['textStyle', 'color'];
- var _default = {
- /**
- * Get color property or get color from option.textStyle.color
- * @param {boolean} [isEmphasis]
- * @return {string}
- */
- getTextColor: function (isEmphasis) {
- var ecModel = this.ecModel;
- return this.getShallow('color') || (!isEmphasis && ecModel ? ecModel.get(PATH_COLOR) : null);
- },
-
- /**
- * Create font string from fontStyle, fontWeight, fontSize, fontFamily
- * @return {string}
- */
- getFont: function () {
- return graphicUtil.getFont({
- fontStyle: this.getShallow('fontStyle'),
- fontWeight: this.getShallow('fontWeight'),
- fontSize: this.getShallow('fontSize'),
- fontFamily: this.getShallow('fontFamily')
- }, this.ecModel);
- },
- getTextRect: function (text) {
- return textContain.getBoundingRect(text, this.getFont(), this.getShallow('align'), this.getShallow('verticalAlign') || this.getShallow('baseline'), this.getShallow('padding'), this.getShallow('lineHeight'), this.getShallow('rich'), this.getShallow('truncateText'));
- }
- };
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2523:
- /***/ (function(module, exports, __webpack_require__) {
-
- var PathProxy = __webpack_require__(1600);
-
- var line = __webpack_require__(2269);
-
- var cubic = __webpack_require__(2524);
-
- var quadratic = __webpack_require__(2270);
-
- var arc = __webpack_require__(2525);
-
- var _util = __webpack_require__(2271);
-
- var normalizeRadian = _util.normalizeRadian;
-
- var curve = __webpack_require__(1481);
-
- var windingLine = __webpack_require__(2272);
-
- var CMD = PathProxy.CMD;
- var PI2 = Math.PI * 2;
- var EPSILON = 1e-4;
-
- function isAroundEqual(a, b) {
- return Math.abs(a - b) < EPSILON;
- } // 临时数组
-
-
- var roots = [-1, -1, -1];
- var extrema = [-1, -1];
-
- function swapExtrema() {
- var tmp = extrema[0];
- extrema[0] = extrema[1];
- extrema[1] = tmp;
- }
-
- function windingCubic(x0, y0, x1, y1, x2, y2, x3, y3, x, y) {
- // Quick reject
- if (y > y0 && y > y1 && y > y2 && y > y3 || y < y0 && y < y1 && y < y2 && y < y3) {
- return 0;
- }
-
- var nRoots = curve.cubicRootAt(y0, y1, y2, y3, y, roots);
-
- if (nRoots === 0) {
- return 0;
- } else {
- var w = 0;
- var nExtrema = -1;
- var y0_;
- var y1_;
-
- for (var i = 0; i < nRoots; i++) {
- var t = roots[i]; // Avoid winding error when intersection point is the connect point of two line of polygon
-
- var unit = t === 0 || t === 1 ? 0.5 : 1;
- var x_ = curve.cubicAt(x0, x1, x2, x3, t);
-
- if (x_ < x) {
- // Quick reject
- continue;
- }
-
- if (nExtrema < 0) {
- nExtrema = curve.cubicExtrema(y0, y1, y2, y3, extrema);
-
- if (extrema[1] < extrema[0] && nExtrema > 1) {
- swapExtrema();
- }
-
- y0_ = curve.cubicAt(y0, y1, y2, y3, extrema[0]);
-
- if (nExtrema > 1) {
- y1_ = curve.cubicAt(y0, y1, y2, y3, extrema[1]);
- }
- }
-
- if (nExtrema === 2) {
- // 分成三段单调函数
- if (t < extrema[0]) {
- w += y0_ < y0 ? unit : -unit;
- } else if (t < extrema[1]) {
- w += y1_ < y0_ ? unit : -unit;
- } else {
- w += y3 < y1_ ? unit : -unit;
- }
- } else {
- // 分成两段单调函数
- if (t < extrema[0]) {
- w += y0_ < y0 ? unit : -unit;
- } else {
- w += y3 < y0_ ? unit : -unit;
- }
- }
- }
-
- return w;
- }
- }
-
- function windingQuadratic(x0, y0, x1, y1, x2, y2, x, y) {
- // Quick reject
- if (y > y0 && y > y1 && y > y2 || y < y0 && y < y1 && y < y2) {
- return 0;
- }
-
- var nRoots = curve.quadraticRootAt(y0, y1, y2, y, roots);
-
- if (nRoots === 0) {
- return 0;
- } else {
- var t = curve.quadraticExtremum(y0, y1, y2);
-
- if (t >= 0 && t <= 1) {
- var w = 0;
- var y_ = curve.quadraticAt(y0, y1, y2, t);
-
- for (var i = 0; i < nRoots; i++) {
- // Remove one endpoint.
- var unit = roots[i] === 0 || roots[i] === 1 ? 0.5 : 1;
- var x_ = curve.quadraticAt(x0, x1, x2, roots[i]);
-
- if (x_ < x) {
- // Quick reject
- continue;
- }
-
- if (roots[i] < t) {
- w += y_ < y0 ? unit : -unit;
- } else {
- w += y2 < y_ ? unit : -unit;
- }
- }
-
- return w;
- } else {
- // Remove one endpoint.
- var unit = roots[0] === 0 || roots[0] === 1 ? 0.5 : 1;
- var x_ = curve.quadraticAt(x0, x1, x2, roots[0]);
-
- if (x_ < x) {
- // Quick reject
- return 0;
- }
-
- return y2 < y0 ? unit : -unit;
- }
- }
- } // TODO
- // Arc 旋转
-
-
- function windingArc(cx, cy, r, startAngle, endAngle, anticlockwise, x, y) {
- y -= cy;
-
- if (y > r || y < -r) {
- return 0;
- }
-
- var tmp = Math.sqrt(r * r - y * y);
- roots[0] = -tmp;
- roots[1] = tmp;
- var diff = Math.abs(startAngle - endAngle);
-
- if (diff < 1e-4) {
- return 0;
- }
-
- if (diff % PI2 < 1e-4) {
- // Is a circle
- startAngle = 0;
- endAngle = PI2;
- var dir = anticlockwise ? 1 : -1;
-
- if (x >= roots[0] + cx && x <= roots[1] + cx) {
- return dir;
- } else {
- return 0;
- }
- }
-
- if (anticlockwise) {
- var tmp = startAngle;
- startAngle = normalizeRadian(endAngle);
- endAngle = normalizeRadian(tmp);
- } else {
- startAngle = normalizeRadian(startAngle);
- endAngle = normalizeRadian(endAngle);
- }
-
- if (startAngle > endAngle) {
- endAngle += PI2;
- }
-
- var w = 0;
-
- for (var i = 0; i < 2; i++) {
- var x_ = roots[i];
-
- if (x_ + cx > x) {
- var angle = Math.atan2(y, x_);
- var dir = anticlockwise ? 1 : -1;
-
- if (angle < 0) {
- angle = PI2 + angle;
- }
-
- if (angle >= startAngle && angle <= endAngle || angle + PI2 >= startAngle && angle + PI2 <= endAngle) {
- if (angle > Math.PI / 2 && angle < Math.PI * 1.5) {
- dir = -dir;
- }
-
- w += dir;
- }
- }
- }
-
- return w;
- }
-
- function containPath(data, lineWidth, isStroke, x, y) {
- var w = 0;
- var xi = 0;
- var yi = 0;
- var x0 = 0;
- var y0 = 0;
-
- for (var i = 0; i < data.length;) {
- var cmd = data[i++]; // Begin a new subpath
-
- if (cmd === CMD.M && i > 1) {
- // Close previous subpath
- if (!isStroke) {
- w += windingLine(xi, yi, x0, y0, x, y);
- } // 如果被任何一个 subpath 包含
- // if (w !== 0) {
- // return true;
- // }
-
- }
-
- if (i === 1) {
- // 如果第一个命令是 L, C, Q
- // 则 previous point 同绘制命令的第一个 point
- //
- // 第一个命令为 Arc 的情况下会在后面特殊处理
- xi = data[i];
- yi = data[i + 1];
- x0 = xi;
- y0 = yi;
- }
-
- switch (cmd) {
- case CMD.M:
- // moveTo 命令重新创建一个新的 subpath, 并且更新新的起点
- // 在 closePath 的时候使用
- x0 = data[i++];
- y0 = data[i++];
- xi = x0;
- yi = y0;
- break;
-
- case CMD.L:
- if (isStroke) {
- if (line.containStroke(xi, yi, data[i], data[i + 1], lineWidth, x, y)) {
- return true;
- }
- } else {
- // NOTE 在第一个命令为 L, C, Q 的时候会计算出 NaN
- w += windingLine(xi, yi, data[i], data[i + 1], x, y) || 0;
- }
-
- xi = data[i++];
- yi = data[i++];
- break;
-
- case CMD.C:
- if (isStroke) {
- if (cubic.containStroke(xi, yi, data[i++], data[i++], data[i++], data[i++], data[i], data[i + 1], lineWidth, x, y)) {
- return true;
- }
- } else {
- w += windingCubic(xi, yi, data[i++], data[i++], data[i++], data[i++], data[i], data[i + 1], x, y) || 0;
- }
-
- xi = data[i++];
- yi = data[i++];
- break;
-
- case CMD.Q:
- if (isStroke) {
- if (quadratic.containStroke(xi, yi, data[i++], data[i++], data[i], data[i + 1], lineWidth, x, y)) {
- return true;
- }
- } else {
- w += windingQuadratic(xi, yi, data[i++], data[i++], data[i], data[i + 1], x, y) || 0;
- }
-
- xi = data[i++];
- yi = data[i++];
- break;
-
- case CMD.A:
- // TODO Arc 判断的开销比较大
- var cx = data[i++];
- var cy = data[i++];
- var rx = data[i++];
- var ry = data[i++];
- var theta = data[i++];
- var dTheta = data[i++]; // TODO Arc 旋转
-
- i += 1;
- var anticlockwise = 1 - data[i++];
- var x1 = Math.cos(theta) * rx + cx;
- var y1 = Math.sin(theta) * ry + cy; // 不是直接使用 arc 命令
-
- if (i > 1) {
- w += windingLine(xi, yi, x1, y1, x, y);
- } else {
- // 第一个命令起点还未定义
- x0 = x1;
- y0 = y1;
- } // zr 使用scale来模拟椭圆, 这里也对x做一定的缩放
-
-
- var _x = (x - cx) * ry / rx + cx;
-
- if (isStroke) {
- if (arc.containStroke(cx, cy, ry, theta, theta + dTheta, anticlockwise, lineWidth, _x, y)) {
- return true;
- }
- } else {
- w += windingArc(cx, cy, ry, theta, theta + dTheta, anticlockwise, _x, y);
- }
-
- xi = Math.cos(theta + dTheta) * rx + cx;
- yi = Math.sin(theta + dTheta) * ry + cy;
- break;
-
- case CMD.R:
- x0 = xi = data[i++];
- y0 = yi = data[i++];
- var width = data[i++];
- var height = data[i++];
- var x1 = x0 + width;
- var y1 = y0 + height;
-
- if (isStroke) {
- if (line.containStroke(x0, y0, x1, y0, lineWidth, x, y) || line.containStroke(x1, y0, x1, y1, lineWidth, x, y) || line.containStroke(x1, y1, x0, y1, lineWidth, x, y) || line.containStroke(x0, y1, x0, y0, lineWidth, x, y)) {
- return true;
- }
- } else {
- // FIXME Clockwise ?
- w += windingLine(x1, y0, x1, y1, x, y);
- w += windingLine(x0, y1, x0, y0, x, y);
- }
-
- break;
-
- case CMD.Z:
- if (isStroke) {
- if (line.containStroke(xi, yi, x0, y0, lineWidth, x, y)) {
- return true;
- }
- } else {
- // Close a subpath
- w += windingLine(xi, yi, x0, y0, x, y); // 如果被任何一个 subpath 包含
- // FIXME subpaths may overlap
- // if (w !== 0) {
- // return true;
- // }
- }
-
- xi = x0;
- yi = y0;
- break;
- }
- }
-
- if (!isStroke && !isAroundEqual(yi, y0)) {
- w += windingLine(xi, yi, x0, y0, x, y) || 0;
- }
-
- return w !== 0;
- }
-
- function contain(pathData, x, y) {
- return containPath(pathData, 0, false, x, y);
- }
-
- function containStroke(pathData, lineWidth, x, y) {
- return containPath(pathData, lineWidth, true, x, y);
- }
-
- exports.contain = contain;
- exports.containStroke = containStroke;
-
- /***/ }),
-
- /***/ 2524:
- /***/ (function(module, exports, __webpack_require__) {
-
- var curve = __webpack_require__(1481);
-
- /**
- * 三次贝塞尔曲线描边包含判断
- * @param {number} x0
- * @param {number} y0
- * @param {number} x1
- * @param {number} y1
- * @param {number} x2
- * @param {number} y2
- * @param {number} x3
- * @param {number} y3
- * @param {number} lineWidth
- * @param {number} x
- * @param {number} y
- * @return {boolean}
- */
- function containStroke(x0, y0, x1, y1, x2, y2, x3, y3, lineWidth, x, y) {
- if (lineWidth === 0) {
- return false;
- }
-
- var _l = lineWidth; // Quick reject
-
- if (y > y0 + _l && y > y1 + _l && y > y2 + _l && y > y3 + _l || y < y0 - _l && y < y1 - _l && y < y2 - _l && y < y3 - _l || x > x0 + _l && x > x1 + _l && x > x2 + _l && x > x3 + _l || x < x0 - _l && x < x1 - _l && x < x2 - _l && x < x3 - _l) {
- return false;
- }
-
- var d = curve.cubicProjectPoint(x0, y0, x1, y1, x2, y2, x3, y3, x, y, null);
- return d <= _l / 2;
- }
-
- exports.containStroke = containStroke;
-
- /***/ }),
-
- /***/ 2525:
- /***/ (function(module, exports, __webpack_require__) {
-
- var _util = __webpack_require__(2271);
-
- var normalizeRadian = _util.normalizeRadian;
- var PI2 = Math.PI * 2;
- /**
- * 圆弧描边包含判断
- * @param {number} cx
- * @param {number} cy
- * @param {number} r
- * @param {number} startAngle
- * @param {number} endAngle
- * @param {boolean} anticlockwise
- * @param {number} lineWidth
- * @param {number} x
- * @param {number} y
- * @return {Boolean}
- */
-
- function containStroke(cx, cy, r, startAngle, endAngle, anticlockwise, lineWidth, x, y) {
- if (lineWidth === 0) {
- return false;
- }
-
- var _l = lineWidth;
- x -= cx;
- y -= cy;
- var d = Math.sqrt(x * x + y * y);
-
- if (d - _l > r || d + _l < r) {
- return false;
- }
-
- if (Math.abs(startAngle - endAngle) % PI2 < 1e-4) {
- // Is a circle
- return true;
- }
-
- if (anticlockwise) {
- var tmp = startAngle;
- startAngle = normalizeRadian(endAngle);
- endAngle = normalizeRadian(tmp);
- } else {
- startAngle = normalizeRadian(startAngle);
- endAngle = normalizeRadian(endAngle);
- }
-
- if (startAngle > endAngle) {
- endAngle += PI2;
- }
-
- var angle = Math.atan2(y, x);
-
- if (angle < 0) {
- angle += PI2;
- }
-
- return angle >= startAngle && angle <= endAngle || angle + PI2 >= startAngle && angle + PI2 <= endAngle;
- }
-
- exports.containStroke = containStroke;
-
- /***/ }),
-
- /***/ 2526:
- /***/ (function(module, exports, __webpack_require__) {
-
- var PathProxy = __webpack_require__(1600);
-
- var _vector = __webpack_require__(1180);
-
- var v2ApplyTransform = _vector.applyTransform;
- var CMD = PathProxy.CMD;
- var points = [[], [], []];
- var mathSqrt = Math.sqrt;
- var mathAtan2 = Math.atan2;
-
- function _default(path, m) {
- var data = path.data;
- var cmd;
- var nPoint;
- var i;
- var j;
- var k;
- var p;
- var M = CMD.M;
- var C = CMD.C;
- var L = CMD.L;
- var R = CMD.R;
- var A = CMD.A;
- var Q = CMD.Q;
-
- for (i = 0, j = 0; i < data.length;) {
- cmd = data[i++];
- j = i;
- nPoint = 0;
-
- switch (cmd) {
- case M:
- nPoint = 1;
- break;
-
- case L:
- nPoint = 1;
- break;
-
- case C:
- nPoint = 3;
- break;
-
- case Q:
- nPoint = 2;
- break;
-
- case A:
- var x = m[4];
- var y = m[5];
- var sx = mathSqrt(m[0] * m[0] + m[1] * m[1]);
- var sy = mathSqrt(m[2] * m[2] + m[3] * m[3]);
- var angle = mathAtan2(-m[1] / sy, m[0] / sx); // cx
-
- data[i] *= sx;
- data[i++] += x; // cy
-
- data[i] *= sy;
- data[i++] += y; // Scale rx and ry
- // FIXME Assume psi is 0 here
-
- data[i++] *= sx;
- data[i++] *= sy; // Start angle
-
- data[i++] += angle; // end angle
-
- data[i++] += angle; // FIXME psi
-
- i += 2;
- j = i;
- break;
-
- case R:
- // x0, y0
- p[0] = data[i++];
- p[1] = data[i++];
- v2ApplyTransform(p, p, m);
- data[j++] = p[0];
- data[j++] = p[1]; // x1, y1
-
- p[0] += data[i++];
- p[1] += data[i++];
- v2ApplyTransform(p, p, m);
- data[j++] = p[0];
- data[j++] = p[1];
- }
-
- for (k = 0; k < nPoint; k++) {
- var p = points[k];
- p[0] = data[i++];
- p[1] = data[i++];
- v2ApplyTransform(p, p, m); // Write back
-
- data[j++] = p[0];
- data[j++] = p[1];
- }
- }
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2527:
- /***/ (function(module, exports, __webpack_require__) {
-
- var Path = __webpack_require__(1280);
-
- var fixClipWithShadow = __webpack_require__(2274);
-
- /**
- * 扇形
- * @module zrender/graphic/shape/Sector
- */
- var _default = Path.extend({
- type: 'sector',
- shape: {
- cx: 0,
- cy: 0,
- r0: 0,
- r: 0,
- startAngle: 0,
- endAngle: Math.PI * 2,
- clockwise: true
- },
- brush: fixClipWithShadow(Path.prototype.brush),
- buildPath: function (ctx, shape) {
- var x = shape.cx;
- var y = shape.cy;
- var r0 = Math.max(shape.r0 || 0, 0);
- var r = Math.max(shape.r, 0);
- var startAngle = shape.startAngle;
- var endAngle = shape.endAngle;
- var clockwise = shape.clockwise;
- var unitX = Math.cos(startAngle);
- var unitY = Math.sin(startAngle);
- ctx.moveTo(unitX * r0 + x, unitY * r0 + y);
- ctx.lineTo(unitX * r + x, unitY * r + y);
- ctx.arc(x, y, r, startAngle, endAngle, !clockwise);
- ctx.lineTo(Math.cos(endAngle) * r0 + x, Math.sin(endAngle) * r0 + y);
-
- if (r0 !== 0) {
- ctx.arc(x, y, r0, endAngle, startAngle, clockwise);
- }
-
- ctx.closePath();
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2528:
- /***/ (function(module, exports, __webpack_require__) {
-
- var Path = __webpack_require__(1280);
-
- /**
- * 圆环
- * @module zrender/graphic/shape/Ring
- */
- var _default = Path.extend({
- type: 'ring',
- shape: {
- cx: 0,
- cy: 0,
- r: 0,
- r0: 0
- },
- buildPath: function (ctx, shape) {
- var x = shape.cx;
- var y = shape.cy;
- var PI2 = Math.PI * 2;
- ctx.moveTo(x + shape.r, y);
- ctx.arc(x, y, shape.r, 0, PI2, false);
- ctx.moveTo(x + shape.r0, y);
- ctx.arc(x, y, shape.r0, 0, PI2, true);
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2529:
- /***/ (function(module, exports, __webpack_require__) {
-
- var _vector = __webpack_require__(1180);
-
- var v2Distance = _vector.distance;
-
- /**
- * Catmull-Rom spline 插值折线
- * @module zrender/shape/util/smoothSpline
- * @author pissang (https://www.github.com/pissang)
- * Kener (@Kener-林峰, kener.linfeng@gmail.com)
- * errorrik (errorrik@gmail.com)
- */
-
- /**
- * @inner
- */
- function interpolate(p0, p1, p2, p3, t, t2, t3) {
- var v0 = (p2 - p0) * 0.5;
- var v1 = (p3 - p1) * 0.5;
- return (2 * (p1 - p2) + v0 + v1) * t3 + (-3 * (p1 - p2) - 2 * v0 - v1) * t2 + v0 * t + p1;
- }
- /**
- * @alias module:zrender/shape/util/smoothSpline
- * @param {Array} points 线段顶点数组
- * @param {boolean} isLoop
- * @return {Array}
- */
-
-
- function _default(points, isLoop) {
- var len = points.length;
- var ret = [];
- var distance = 0;
-
- for (var i = 1; i < len; i++) {
- distance += v2Distance(points[i - 1], points[i]);
- }
-
- var segs = distance / 2;
- segs = segs < len ? len : segs;
-
- for (var i = 0; i < segs; i++) {
- var pos = i / (segs - 1) * (isLoop ? len : len - 1);
- var idx = Math.floor(pos);
- var w = pos - idx;
- var p0;
- var p1 = points[idx % len];
- var p2;
- var p3;
-
- if (!isLoop) {
- p0 = points[idx === 0 ? idx : idx - 1];
- p2 = points[idx > len - 2 ? len - 1 : idx + 1];
- p3 = points[idx > len - 3 ? len - 1 : idx + 2];
- } else {
- p0 = points[(idx - 1 + len) % len];
- p2 = points[(idx + 1) % len];
- p3 = points[(idx + 2) % len];
- }
-
- var w2 = w * w;
- var w3 = w * w2;
- ret.push([interpolate(p0[0], p1[0], p2[0], p3[0], w, w2, w3), interpolate(p0[1], p1[1], p2[1], p3[1], w, w2, w3)]);
- }
-
- return ret;
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2530:
- /***/ (function(module, exports, __webpack_require__) {
-
- var _vector = __webpack_require__(1180);
-
- var v2Min = _vector.min;
- var v2Max = _vector.max;
- var v2Scale = _vector.scale;
- var v2Distance = _vector.distance;
- var v2Add = _vector.add;
- var v2Clone = _vector.clone;
- var v2Sub = _vector.sub;
-
- /**
- * 贝塞尔平滑曲线
- * @module zrender/shape/util/smoothBezier
- * @author pissang (https://www.github.com/pissang)
- * Kener (@Kener-林峰, kener.linfeng@gmail.com)
- * errorrik (errorrik@gmail.com)
- */
-
- /**
- * 贝塞尔平滑曲线
- * @alias module:zrender/shape/util/smoothBezier
- * @param {Array} points 线段顶点数组
- * @param {number} smooth 平滑等级, 0-1
- * @param {boolean} isLoop
- * @param {Array} constraint 将计算出来的控制点约束在一个包围盒内
- * 比如 [[0, 0], [100, 100]], 这个包围盒会与
- * 整个折线的包围盒做一个并集用来约束控制点。
- * @param {Array} 计算出来的控制点数组
- */
- function _default(points, smooth, isLoop, constraint) {
- var cps = [];
- var v = [];
- var v1 = [];
- var v2 = [];
- var prevPoint;
- var nextPoint;
- var min;
- var max;
-
- if (constraint) {
- min = [Infinity, Infinity];
- max = [-Infinity, -Infinity];
-
- for (var i = 0, len = points.length; i < len; i++) {
- v2Min(min, min, points[i]);
- v2Max(max, max, points[i]);
- } // 与指定的包围盒做并集
-
-
- v2Min(min, min, constraint[0]);
- v2Max(max, max, constraint[1]);
- }
-
- for (var i = 0, len = points.length; i < len; i++) {
- var point = points[i];
-
- if (isLoop) {
- prevPoint = points[i ? i - 1 : len - 1];
- nextPoint = points[(i + 1) % len];
- } else {
- if (i === 0 || i === len - 1) {
- cps.push(v2Clone(points[i]));
- continue;
- } else {
- prevPoint = points[i - 1];
- nextPoint = points[i + 1];
- }
- }
-
- v2Sub(v, nextPoint, prevPoint); // use degree to scale the handle length
-
- v2Scale(v, v, smooth);
- var d0 = v2Distance(point, prevPoint);
- var d1 = v2Distance(point, nextPoint);
- var sum = d0 + d1;
-
- if (sum !== 0) {
- d0 /= sum;
- d1 /= sum;
- }
-
- v2Scale(v1, v, -d0);
- v2Scale(v2, v, d1);
- var cp0 = v2Add([], point, v1);
- var cp1 = v2Add([], point, v2);
-
- if (constraint) {
- v2Max(cp0, cp0, min);
- v2Min(cp0, cp0, max);
- v2Max(cp1, cp1, min);
- v2Min(cp1, cp1, max);
- }
-
- cps.push(cp0);
- cps.push(cp1);
- }
-
- if (isLoop) {
- cps.push(cps.shift());
- }
-
- return cps;
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2531:
- /***/ (function(module, exports, __webpack_require__) {
-
- var Path = __webpack_require__(1280);
-
- var vec2 = __webpack_require__(1180);
-
- var _curve = __webpack_require__(1481);
-
- var quadraticSubdivide = _curve.quadraticSubdivide;
- var cubicSubdivide = _curve.cubicSubdivide;
- var quadraticAt = _curve.quadraticAt;
- var cubicAt = _curve.cubicAt;
- var quadraticDerivativeAt = _curve.quadraticDerivativeAt;
- var cubicDerivativeAt = _curve.cubicDerivativeAt;
-
- /**
- * 贝塞尔曲线
- * @module zrender/shape/BezierCurve
- */
- var out = [];
-
- function someVectorAt(shape, t, isTangent) {
- var cpx2 = shape.cpx2;
- var cpy2 = shape.cpy2;
-
- if (cpx2 === null || cpy2 === null) {
- return [(isTangent ? cubicDerivativeAt : cubicAt)(shape.x1, shape.cpx1, shape.cpx2, shape.x2, t), (isTangent ? cubicDerivativeAt : cubicAt)(shape.y1, shape.cpy1, shape.cpy2, shape.y2, t)];
- } else {
- return [(isTangent ? quadraticDerivativeAt : quadraticAt)(shape.x1, shape.cpx1, shape.x2, t), (isTangent ? quadraticDerivativeAt : quadraticAt)(shape.y1, shape.cpy1, shape.y2, t)];
- }
- }
-
- var _default = Path.extend({
- type: 'bezier-curve',
- shape: {
- x1: 0,
- y1: 0,
- x2: 0,
- y2: 0,
- cpx1: 0,
- cpy1: 0,
- // cpx2: 0,
- // cpy2: 0
- // Curve show percent, for animating
- percent: 1
- },
- style: {
- stroke: '#000',
- fill: null
- },
- buildPath: function (ctx, shape) {
- var x1 = shape.x1;
- var y1 = shape.y1;
- var x2 = shape.x2;
- var y2 = shape.y2;
- var cpx1 = shape.cpx1;
- var cpy1 = shape.cpy1;
- var cpx2 = shape.cpx2;
- var cpy2 = shape.cpy2;
- var percent = shape.percent;
-
- if (percent === 0) {
- return;
- }
-
- ctx.moveTo(x1, y1);
-
- if (cpx2 == null || cpy2 == null) {
- if (percent < 1) {
- quadraticSubdivide(x1, cpx1, x2, percent, out);
- cpx1 = out[1];
- x2 = out[2];
- quadraticSubdivide(y1, cpy1, y2, percent, out);
- cpy1 = out[1];
- y2 = out[2];
- }
-
- ctx.quadraticCurveTo(cpx1, cpy1, x2, y2);
- } else {
- if (percent < 1) {
- cubicSubdivide(x1, cpx1, cpx2, x2, percent, out);
- cpx1 = out[1];
- cpx2 = out[2];
- x2 = out[3];
- cubicSubdivide(y1, cpy1, cpy2, y2, percent, out);
- cpy1 = out[1];
- cpy2 = out[2];
- y2 = out[3];
- }
-
- ctx.bezierCurveTo(cpx1, cpy1, cpx2, cpy2, x2, y2);
- }
- },
-
- /**
- * Get point at percent
- * @param {number} t
- * @return {Array.<number>}
- */
- pointAt: function (t) {
- return someVectorAt(this.shape, t, false);
- },
-
- /**
- * Get tangent at percent
- * @param {number} t
- * @return {Array.<number>}
- */
- tangentAt: function (t) {
- var p = someVectorAt(this.shape, t, true);
- return vec2.normalize(p, p);
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2532:
- /***/ (function(module, exports, __webpack_require__) {
-
- var Path = __webpack_require__(1280);
-
- /**
- * 圆弧
- * @module zrender/graphic/shape/Arc
- */
- var _default = Path.extend({
- type: 'arc',
- shape: {
- cx: 0,
- cy: 0,
- r: 0,
- startAngle: 0,
- endAngle: Math.PI * 2,
- clockwise: true
- },
- style: {
- stroke: '#000',
- fill: null
- },
- buildPath: function (ctx, shape) {
- var x = shape.cx;
- var y = shape.cy;
- var r = Math.max(shape.r, 0);
- var startAngle = shape.startAngle;
- var endAngle = shape.endAngle;
- var clockwise = shape.clockwise;
- var unitX = Math.cos(startAngle);
- var unitY = Math.sin(startAngle);
- ctx.moveTo(unitX * r + x, unitY * r + y);
- ctx.arc(x, y, r, startAngle, endAngle, !clockwise);
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2533:
- /***/ (function(module, exports, __webpack_require__) {
-
- var Path = __webpack_require__(1280);
-
- // CompoundPath to improve performance
- var _default = Path.extend({
- type: 'compound',
- shape: {
- paths: null
- },
- _updatePathDirty: function () {
- var dirtyPath = this.__dirtyPath;
- var paths = this.shape.paths;
-
- for (var i = 0; i < paths.length; i++) {
- // Mark as dirty if any subpath is dirty
- dirtyPath = dirtyPath || paths[i].__dirtyPath;
- }
-
- this.__dirtyPath = dirtyPath;
- this.__dirty = this.__dirty || dirtyPath;
- },
- beforeBrush: function () {
- this._updatePathDirty();
-
- var paths = this.shape.paths || [];
- var scale = this.getGlobalScale(); // Update path scale
-
- for (var i = 0; i < paths.length; i++) {
- if (!paths[i].path) {
- paths[i].createPathProxy();
- }
-
- paths[i].path.setScale(scale[0], scale[1], paths[i].segmentIgnoreThreshold);
- }
- },
- buildPath: function (ctx, shape) {
- var paths = shape.paths || [];
-
- for (var i = 0; i < paths.length; i++) {
- paths[i].buildPath(ctx, paths[i].shape, true);
- }
- },
- afterBrush: function () {
- var paths = this.shape.paths || [];
-
- for (var i = 0; i < paths.length; i++) {
- paths[i].__dirtyPath = false;
- }
- },
- getBoundingRect: function () {
- this._updatePathDirty();
-
- return Path.prototype.getBoundingRect.call(this);
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2534:
- /***/ (function(module, exports, __webpack_require__) {
-
- var zrUtil = __webpack_require__(864);
-
- var Gradient = __webpack_require__(1785);
-
- /**
- * x, y, r are all percent from 0 to 1
- * @param {number} [x=0.5]
- * @param {number} [y=0.5]
- * @param {number} [r=0.5]
- * @param {Array.<Object>} [colorStops]
- * @param {boolean} [globalCoord=false]
- */
- var RadialGradient = function (x, y, r, colorStops, globalCoord) {
- // Should do nothing more in this constructor. Because gradient can be
- // declard by `color: {type: 'radial', colorStops: ...}`, where
- // this constructor will not be called.
- this.x = x == null ? 0.5 : x;
- this.y = y == null ? 0.5 : y;
- this.r = r == null ? 0.5 : r; // Can be cloned
-
- this.type = 'radial'; // If use global coord
-
- this.global = globalCoord || false;
- Gradient.call(this, colorStops);
- };
-
- RadialGradient.prototype = {
- constructor: RadialGradient
- };
- zrUtil.inherits(RadialGradient, Gradient);
- var _default = RadialGradient;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2535:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var makeStyleMapper = __webpack_require__(1599);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var getItemStyle = makeStyleMapper([['fill', 'color'], ['stroke', 'borderColor'], ['lineWidth', 'borderWidth'], ['opacity'], ['shadowBlur'], ['shadowOffsetX'], ['shadowOffsetY'], ['shadowColor'], ['textPosition'], ['textAlign']]);
- var _default = {
- getItemStyle: function (excludes, includes) {
- var style = getItemStyle(this, excludes, includes);
- var lineDash = this.getBorderLineDash();
- lineDash && (style.lineDash = lineDash);
- return style;
- },
- getBorderLineDash: function () {
- var lineType = this.get('borderType');
- return lineType === 'solid' || lineType == null ? null : lineType === 'dashed' ? [5, 5] : [1, 1];
- }
- };
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2536:
- /***/ (function(module, exports) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = {
- getBoxLayoutParams: function () {
- return {
- left: this.get('left'),
- top: this.get('top'),
- right: this.get('right'),
- bottom: this.get('bottom'),
- width: this.get('width'),
- height: this.get('height')
- };
- }
- };
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2537:
- /***/ (function(module, exports) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var platform = ''; // Navigator not exists in node
-
- if (typeof navigator !== 'undefined') {
- platform = navigator.platform || '';
- }
-
- var _default = {
- // backgroundColor: 'rgba(0,0,0,0)',
- // https://dribbble.com/shots/1065960-Infographic-Pie-chart-visualization
- // color: ['#5793f3', '#d14a61', '#fd9c35', '#675bba', '#fec42c', '#dd4444', '#d4df5a', '#cd4870'],
- // Light colors:
- // color: ['#bcd3bb', '#e88f70', '#edc1a5', '#9dc5c8', '#e1e8c8', '#7b7c68', '#e5b5b5', '#f0b489', '#928ea8', '#bda29a'],
- // color: ['#cc5664', '#9bd6ec', '#ea946e', '#8acaaa', '#f1ec64', '#ee8686', '#a48dc1', '#5da6bc', '#b9dcae'],
- // Dark colors:
- color: ['#c23531', '#2f4554', '#61a0a8', '#d48265', '#91c7ae', '#749f83', '#ca8622', '#bda29a', '#6e7074', '#546570', '#c4ccd3'],
- gradientColor: ['#f6efa6', '#d88273', '#bf444c'],
- // If xAxis and yAxis declared, grid is created by default.
- // grid: {},
- textStyle: {
- // color: '#000',
- // decoration: 'none',
- // PENDING
- fontFamily: platform.match(/^Win/) ? 'Microsoft YaHei' : 'sans-serif',
- // fontFamily: 'Arial, Verdana, sans-serif',
- fontSize: 12,
- fontStyle: 'normal',
- fontWeight: 'normal'
- },
- // http://blogs.adobe.com/webplatform/2014/02/24/using-blend-modes-in-html-canvas/
- // https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/globalCompositeOperation
- // Default is source-over
- blendMode: null,
- animation: 'auto',
- animationDuration: 1000,
- animationDurationUpdate: 300,
- animationEasing: 'exponentialOut',
- animationEasingUpdate: 'cubicOut',
- animationThreshold: 2000,
- // Configuration for progressive/incremental rendering
- progressiveThreshold: 3000,
- progressive: 400,
- // Threshold of if use single hover layer to optimize.
- // It is recommended that `hoverLayerThreshold` is equivalent to or less than
- // `progressiveThreshold`, otherwise hover will cause restart of progressive,
- // which is unexpected.
- // see example <echarts/test/heatmap-large.html>.
- hoverLayerThreshold: 3000,
- // See: module:echarts/scale/Time
- useUTC: false
- };
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2538:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var modelUtil = __webpack_require__(1064);
-
- var ComponentModel = __webpack_require__(1321);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * ECharts option manager
- *
- * @module {echarts/model/OptionManager}
- */
- var each = zrUtil.each;
- var clone = zrUtil.clone;
- var map = zrUtil.map;
- var merge = zrUtil.merge;
- var QUERY_REG = /^(min|max)?(.+)$/;
- /**
- * TERM EXPLANATIONS:
- *
- * [option]:
- *
- * An object that contains definitions of components. For example:
- * var option = {
- * title: {...},
- * legend: {...},
- * visualMap: {...},
- * series: [
- * {data: [...]},
- * {data: [...]},
- * ...
- * ]
- * };
- *
- * [rawOption]:
- *
- * An object input to echarts.setOption. 'rawOption' may be an
- * 'option', or may be an object contains multi-options. For example:
- * var option = {
- * baseOption: {
- * title: {...},
- * legend: {...},
- * series: [
- * {data: [...]},
- * {data: [...]},
- * ...
- * ]
- * },
- * timeline: {...},
- * options: [
- * {title: {...}, series: {data: [...]}},
- * {title: {...}, series: {data: [...]}},
- * ...
- * ],
- * media: [
- * {
- * query: {maxWidth: 320},
- * option: {series: {x: 20}, visualMap: {show: false}}
- * },
- * {
- * query: {minWidth: 320, maxWidth: 720},
- * option: {series: {x: 500}, visualMap: {show: true}}
- * },
- * {
- * option: {series: {x: 1200}, visualMap: {show: true}}
- * }
- * ]
- * };
- *
- * @alias module:echarts/model/OptionManager
- * @param {module:echarts/ExtensionAPI} api
- */
-
- function OptionManager(api) {
- /**
- * @private
- * @type {module:echarts/ExtensionAPI}
- */
- this._api = api;
- /**
- * @private
- * @type {Array.<number>}
- */
-
- this._timelineOptions = [];
- /**
- * @private
- * @type {Array.<Object>}
- */
-
- this._mediaList = [];
- /**
- * @private
- * @type {Object}
- */
-
- this._mediaDefault;
- /**
- * -1, means default.
- * empty means no media.
- * @private
- * @type {Array.<number>}
- */
-
- this._currentMediaIndices = [];
- /**
- * @private
- * @type {Object}
- */
-
- this._optionBackup;
- /**
- * @private
- * @type {Object}
- */
-
- this._newBaseOption;
- } // timeline.notMerge is not supported in ec3. Firstly there is rearly
- // case that notMerge is needed. Secondly supporting 'notMerge' requires
- // rawOption cloned and backuped when timeline changed, which does no
- // good to performance. What's more, that both timeline and setOption
- // method supply 'notMerge' brings complex and some problems.
- // Consider this case:
- // (step1) chart.setOption({timeline: {notMerge: false}, ...}, false);
- // (step2) chart.setOption({timeline: {notMerge: true}, ...}, false);
-
-
- OptionManager.prototype = {
- constructor: OptionManager,
-
- /**
- * @public
- * @param {Object} rawOption Raw option.
- * @param {module:echarts/model/Global} ecModel
- * @param {Array.<Function>} optionPreprocessorFuncs
- * @return {Object} Init option
- */
- setOption: function (rawOption, optionPreprocessorFuncs) {
- if (rawOption) {
- // That set dat primitive is dangerous if user reuse the data when setOption again.
- zrUtil.each(modelUtil.normalizeToArray(rawOption.series), function (series) {
- series && series.data && zrUtil.isTypedArray(series.data) && zrUtil.setAsPrimitive(series.data);
- });
- } // Caution: some series modify option data, if do not clone,
- // it should ensure that the repeat modify correctly
- // (create a new object when modify itself).
-
-
- rawOption = clone(rawOption); // FIXME
- // 如果 timeline options 或者 media 中设置了某个属性,而baseOption中没有设置,则进行警告。
-
- var oldOptionBackup = this._optionBackup;
- var newParsedOption = parseRawOption.call(this, rawOption, optionPreprocessorFuncs, !oldOptionBackup);
- this._newBaseOption = newParsedOption.baseOption; // For setOption at second time (using merge mode);
-
- if (oldOptionBackup) {
- // Only baseOption can be merged.
- mergeOption(oldOptionBackup.baseOption, newParsedOption.baseOption); // For simplicity, timeline options and media options do not support merge,
- // that is, if you `setOption` twice and both has timeline options, the latter
- // timeline opitons will not be merged to the formers, but just substitude them.
-
- if (newParsedOption.timelineOptions.length) {
- oldOptionBackup.timelineOptions = newParsedOption.timelineOptions;
- }
-
- if (newParsedOption.mediaList.length) {
- oldOptionBackup.mediaList = newParsedOption.mediaList;
- }
-
- if (newParsedOption.mediaDefault) {
- oldOptionBackup.mediaDefault = newParsedOption.mediaDefault;
- }
- } else {
- this._optionBackup = newParsedOption;
- }
- },
-
- /**
- * @param {boolean} isRecreate
- * @return {Object}
- */
- mountOption: function (isRecreate) {
- var optionBackup = this._optionBackup; // TODO
- // 如果没有reset功能则不clone。
-
- this._timelineOptions = map(optionBackup.timelineOptions, clone);
- this._mediaList = map(optionBackup.mediaList, clone);
- this._mediaDefault = clone(optionBackup.mediaDefault);
- this._currentMediaIndices = [];
- return clone(isRecreate // this._optionBackup.baseOption, which is created at the first `setOption`
- // called, and is merged into every new option by inner method `mergeOption`
- // each time `setOption` called, can be only used in `isRecreate`, because
- // its reliability is under suspicion. In other cases option merge is
- // performed by `model.mergeOption`.
- ? optionBackup.baseOption : this._newBaseOption);
- },
-
- /**
- * @param {module:echarts/model/Global} ecModel
- * @return {Object}
- */
- getTimelineOption: function (ecModel) {
- var option;
- var timelineOptions = this._timelineOptions;
-
- if (timelineOptions.length) {
- // getTimelineOption can only be called after ecModel inited,
- // so we can get currentIndex from timelineModel.
- var timelineModel = ecModel.getComponent('timeline');
-
- if (timelineModel) {
- option = clone(timelineOptions[timelineModel.getCurrentIndex()], true);
- }
- }
-
- return option;
- },
-
- /**
- * @param {module:echarts/model/Global} ecModel
- * @return {Array.<Object>}
- */
- 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 = []; // No media defined.
-
- if (!mediaList.length && !mediaDefault) {
- return result;
- } // Multi media may be applied, the latter defined media has higher priority.
-
-
- for (var i = 0, len = mediaList.length; i < len; i++) {
- if (applyMediaQuery(mediaList[i].query, ecWidth, ecHeight)) {
- indices.push(i);
- }
- } // FIXME
- // 是否mediaDefault应该强制用户设置,否则可能修改不能回归。
-
-
- 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);
- });
- } // Otherwise return nothing.
-
-
- this._currentMediaIndices = indices;
- return result;
- }
- };
-
- function parseRawOption(rawOption, optionPreprocessorFuncs, isNew) {
- var timelineOptions = [];
- var mediaList = [];
- var mediaDefault;
- var baseOption; // Compatible with ec2.
-
- var timelineOpt = rawOption.timeline;
-
- if (rawOption.baseOption) {
- baseOption = rawOption.baseOption;
- } // For timeline
-
-
- if (timelineOpt || rawOption.options) {
- baseOption = baseOption || {};
- timelineOptions = (rawOption.options || []).slice();
- } // For media query
-
-
- if (rawOption.media) {
- baseOption = baseOption || {};
- var media = rawOption.media;
- each(media, function (singleMedia) {
- if (singleMedia && singleMedia.option) {
- if (singleMedia.query) {
- mediaList.push(singleMedia);
- } else if (!mediaDefault) {
- // Use the first media default.
- mediaDefault = singleMedia;
- }
- }
- });
- } // For normal option
-
-
- if (!baseOption) {
- baseOption = rawOption;
- } // Set timelineOpt to baseOption in ec3,
- // which is convenient for merge option.
-
-
- if (!baseOption.timeline) {
- baseOption.timeline = timelineOpt;
- } // Preprocess.
-
-
- each([baseOption].concat(timelineOptions).concat(zrUtil.map(mediaList, function (media) {
- return media.option;
- })), function (option) {
- each(optionPreprocessorFuncs, function (preProcess) {
- preProcess(option, isNew);
- });
- });
- return {
- baseOption: baseOption,
- timelineOptions: timelineOptions,
- mediaDefault: mediaDefault,
- mediaList: mediaList
- };
- }
- /**
- * @see <http://www.w3.org/TR/css3-mediaqueries/#media1>
- * Support: width, height, aspectRatio
- * Can use max or min as prefix.
- */
-
-
- function applyMediaQuery(query, ecWidth, ecHeight) {
- var realMap = {
- width: ecWidth,
- height: ecHeight,
- aspectratio: ecWidth / ecHeight // lowser case for convenientce.
-
- };
- var applicatable = true;
- zrUtil.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)) {
- applicatable = false;
- }
- });
- return applicatable;
- }
-
- function compare(real, expect, operator) {
- if (operator === 'min') {
- return real >= expect;
- } else if (operator === 'max') {
- return real <= expect;
- } else {
- // Equals
- return real === expect;
- }
- }
-
- function indicesEquals(indices1, indices2) {
- // indices is always order by asc and has only finite number.
- return indices1.join(',') === indices2.join(',');
- }
- /**
- * Consider case:
- * `chart.setOption(opt1);`
- * Then user do some interaction like dataZoom, dataView changing.
- * `chart.setOption(opt2);`
- * Then user press 'reset button' in toolbox.
- *
- * After doing that all of the interaction effects should be reset, the
- * chart should be the same as the result of invoke
- * `chart.setOption(opt1); chart.setOption(opt2);`.
- *
- * Although it is not able ensure that
- * `chart.setOption(opt1); chart.setOption(opt2);` is equivalents to
- * `chart.setOption(merge(opt1, opt2));` exactly,
- * this might be the only simple way to implement that feature.
- *
- * MEMO: We've considered some other approaches:
- * 1. Each model handle its self restoration but not uniform treatment.
- * (Too complex in logic and error-prone)
- * 2. Use a shadow ecModel. (Performace expensive)
- */
-
-
- function mergeOption(oldOption, newOption) {
- newOption = newOption || {};
- each(newOption, function (newCptOpt, mainType) {
- if (newCptOpt == null) {
- return;
- }
-
- var oldCptOpt = oldOption[mainType];
-
- if (!ComponentModel.hasClass(mainType)) {
- oldOption[mainType] = merge(oldCptOpt, newCptOpt, true);
- } else {
- newCptOpt = modelUtil.normalizeToArray(newCptOpt);
- oldCptOpt = modelUtil.normalizeToArray(oldCptOpt);
- var mapResult = modelUtil.mappingToExists(oldCptOpt, newCptOpt);
- oldOption[mainType] = map(mapResult, function (item) {
- return item.option && item.exist ? merge(item.exist, item.option, true) : item.exist || item.option;
- });
- }
- });
- }
-
- var _default = OptionManager;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2539:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _util = __webpack_require__(864);
-
- var each = _util.each;
- var isArray = _util.isArray;
- var isObject = _util.isObject;
-
- var compatStyle = __webpack_require__(2540);
-
- var _model = __webpack_require__(1064);
-
- var normalizeToArray = _model.normalizeToArray;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // Compatitable with 2.0
- function get(opt, path) {
- path = path.split(',');
- var obj = opt;
-
- for (var i = 0; i < path.length; i++) {
- obj = obj && obj[path[i]];
-
- if (obj == null) {
- break;
- }
- }
-
- return obj;
- }
-
- function set(opt, path, val, overwrite) {
- path = path.split(',');
- var obj = opt;
- var key;
-
- for (var i = 0; i < path.length - 1; i++) {
- key = path[i];
-
- if (obj[key] == null) {
- obj[key] = {};
- }
-
- obj = obj[key];
- }
-
- if (overwrite || obj[path[i]] == null) {
- obj[path[i]] = val;
- }
- }
-
- function compatLayoutProperties(option) {
- each(LAYOUT_PROPERTIES, function (prop) {
- if (prop[0] in option && !(prop[1] in option)) {
- option[prop[1]] = option[prop[0]];
- }
- });
- }
-
- var LAYOUT_PROPERTIES = [['x', 'left'], ['y', 'top'], ['x2', 'right'], ['y2', 'bottom']];
- var COMPATITABLE_COMPONENTS = ['grid', 'geo', 'parallel', 'legend', 'toolbox', 'title', 'visualMap', 'dataZoom', 'timeline'];
-
- function _default(option, isTheme) {
- compatStyle(option, isTheme); // Make sure series array for model initialization.
-
- option.series = normalizeToArray(option.series);
- each(option.series, function (seriesOpt) {
- if (!isObject(seriesOpt)) {
- return;
- }
-
- var seriesType = seriesOpt.type;
-
- if (seriesType === 'line') {
- if (seriesOpt.clipOverflow != null) {
- seriesOpt.clip = seriesOpt.clipOverflow;
- }
- } else if (seriesType === 'pie' || seriesType === 'gauge') {
- if (seriesOpt.clockWise != null) {
- seriesOpt.clockwise = seriesOpt.clockWise;
- }
- } else if (seriesType === 'gauge') {
- var pointerColor = get(seriesOpt, 'pointer.color');
- pointerColor != null && set(seriesOpt, 'itemStyle.color', pointerColor);
- }
-
- compatLayoutProperties(seriesOpt);
- }); // dataRange has changed to visualMap
-
- if (option.dataRange) {
- option.visualMap = option.dataRange;
- }
-
- each(COMPATITABLE_COMPONENTS, function (componentName) {
- var options = option[componentName];
-
- if (options) {
- if (!isArray(options)) {
- options = [options];
- }
-
- each(options, function (option) {
- compatLayoutProperties(option);
- });
- }
- });
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2540:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var modelUtil = __webpack_require__(1064);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var each = zrUtil.each;
- var isObject = zrUtil.isObject;
- var POSSIBLE_STYLES = ['areaStyle', 'lineStyle', 'nodeStyle', 'linkStyle', 'chordStyle', 'label', 'labelLine'];
-
- function compatEC2ItemStyle(opt) {
- var itemStyleOpt = opt && opt.itemStyle;
-
- if (!itemStyleOpt) {
- return;
- }
-
- for (var i = 0, len = POSSIBLE_STYLES.length; i < len; i++) {
- var styleName = POSSIBLE_STYLES[i];
- var normalItemStyleOpt = itemStyleOpt.normal;
- var emphasisItemStyleOpt = itemStyleOpt.emphasis;
-
- if (normalItemStyleOpt && normalItemStyleOpt[styleName]) {
- opt[styleName] = opt[styleName] || {};
-
- if (!opt[styleName].normal) {
- opt[styleName].normal = normalItemStyleOpt[styleName];
- } else {
- zrUtil.merge(opt[styleName].normal, normalItemStyleOpt[styleName]);
- }
-
- normalItemStyleOpt[styleName] = null;
- }
-
- if (emphasisItemStyleOpt && emphasisItemStyleOpt[styleName]) {
- opt[styleName] = opt[styleName] || {};
-
- if (!opt[styleName].emphasis) {
- opt[styleName].emphasis = emphasisItemStyleOpt[styleName];
- } else {
- zrUtil.merge(opt[styleName].emphasis, emphasisItemStyleOpt[styleName]);
- }
-
- emphasisItemStyleOpt[styleName] = null;
- }
- }
- }
-
- function convertNormalEmphasis(opt, optType, useExtend) {
- if (opt && opt[optType] && (opt[optType].normal || opt[optType].emphasis)) {
- var normalOpt = opt[optType].normal;
- var emphasisOpt = opt[optType].emphasis;
-
- if (normalOpt) {
- // Timeline controlStyle has other properties besides normal and emphasis
- if (useExtend) {
- opt[optType].normal = opt[optType].emphasis = null;
- zrUtil.defaults(opt[optType], normalOpt);
- } else {
- opt[optType] = normalOpt;
- }
- }
-
- if (emphasisOpt) {
- opt.emphasis = opt.emphasis || {};
- opt.emphasis[optType] = emphasisOpt;
- }
- }
- }
-
- function removeEC3NormalStatus(opt) {
- convertNormalEmphasis(opt, 'itemStyle');
- convertNormalEmphasis(opt, 'lineStyle');
- convertNormalEmphasis(opt, 'areaStyle');
- convertNormalEmphasis(opt, 'label');
- convertNormalEmphasis(opt, 'labelLine'); // treemap
-
- convertNormalEmphasis(opt, 'upperLabel'); // graph
-
- convertNormalEmphasis(opt, 'edgeLabel');
- }
-
- function compatTextStyle(opt, propName) {
- // Check whether is not object (string\null\undefined ...)
- var labelOptSingle = isObject(opt) && opt[propName];
- var textStyle = isObject(labelOptSingle) && labelOptSingle.textStyle;
-
- if (textStyle) {
- for (var i = 0, len = modelUtil.TEXT_STYLE_OPTIONS.length; i < len; i++) {
- var propName = modelUtil.TEXT_STYLE_OPTIONS[i];
-
- if (textStyle.hasOwnProperty(propName)) {
- labelOptSingle[propName] = textStyle[propName];
- }
- }
- }
- }
-
- function compatEC3CommonStyles(opt) {
- if (opt) {
- removeEC3NormalStatus(opt);
- compatTextStyle(opt, 'label');
- opt.emphasis && compatTextStyle(opt.emphasis, 'label');
- }
- }
-
- function processSeries(seriesOpt) {
- if (!isObject(seriesOpt)) {
- return;
- }
-
- compatEC2ItemStyle(seriesOpt);
- removeEC3NormalStatus(seriesOpt);
- compatTextStyle(seriesOpt, 'label'); // treemap
-
- compatTextStyle(seriesOpt, 'upperLabel'); // graph
-
- compatTextStyle(seriesOpt, 'edgeLabel');
-
- if (seriesOpt.emphasis) {
- compatTextStyle(seriesOpt.emphasis, 'label'); // treemap
-
- compatTextStyle(seriesOpt.emphasis, 'upperLabel'); // graph
-
- compatTextStyle(seriesOpt.emphasis, 'edgeLabel');
- }
-
- var markPoint = seriesOpt.markPoint;
-
- if (markPoint) {
- compatEC2ItemStyle(markPoint);
- compatEC3CommonStyles(markPoint);
- }
-
- var markLine = seriesOpt.markLine;
-
- if (markLine) {
- compatEC2ItemStyle(markLine);
- compatEC3CommonStyles(markLine);
- }
-
- var markArea = seriesOpt.markArea;
-
- if (markArea) {
- compatEC3CommonStyles(markArea);
- }
-
- var data = seriesOpt.data; // Break with ec3: if `setOption` again, there may be no `type` in option,
- // then the backward compat based on option type will not be performed.
-
- if (seriesOpt.type === 'graph') {
- data = data || seriesOpt.nodes;
- var edgeData = seriesOpt.links || seriesOpt.edges;
-
- if (edgeData && !zrUtil.isTypedArray(edgeData)) {
- for (var i = 0; i < edgeData.length; i++) {
- compatEC3CommonStyles(edgeData[i]);
- }
- }
-
- zrUtil.each(seriesOpt.categories, function (opt) {
- removeEC3NormalStatus(opt);
- });
- }
-
- if (data && !zrUtil.isTypedArray(data)) {
- for (var i = 0; i < data.length; i++) {
- compatEC3CommonStyles(data[i]);
- }
- } // mark point data
-
-
- var markPoint = seriesOpt.markPoint;
-
- if (markPoint && markPoint.data) {
- var mpData = markPoint.data;
-
- for (var i = 0; i < mpData.length; i++) {
- compatEC3CommonStyles(mpData[i]);
- }
- } // mark line data
-
-
- var markLine = seriesOpt.markLine;
-
- if (markLine && markLine.data) {
- var mlData = markLine.data;
-
- for (var i = 0; i < mlData.length; i++) {
- if (zrUtil.isArray(mlData[i])) {
- compatEC3CommonStyles(mlData[i][0]);
- compatEC3CommonStyles(mlData[i][1]);
- } else {
- compatEC3CommonStyles(mlData[i]);
- }
- }
- } // Series
-
-
- if (seriesOpt.type === 'gauge') {
- compatTextStyle(seriesOpt, 'axisLabel');
- compatTextStyle(seriesOpt, 'title');
- compatTextStyle(seriesOpt, 'detail');
- } else if (seriesOpt.type === 'treemap') {
- convertNormalEmphasis(seriesOpt.breadcrumb, 'itemStyle');
- zrUtil.each(seriesOpt.levels, function (opt) {
- removeEC3NormalStatus(opt);
- });
- } else if (seriesOpt.type === 'tree') {
- removeEC3NormalStatus(seriesOpt.leaves);
- } // sunburst starts from ec4, so it does not need to compat levels.
-
- }
-
- function toArr(o) {
- return zrUtil.isArray(o) ? o : o ? [o] : [];
- }
-
- function toObj(o) {
- return (zrUtil.isArray(o) ? o[0] : o) || {};
- }
-
- function _default(option, isTheme) {
- each(toArr(option.series), function (seriesOpt) {
- isObject(seriesOpt) && processSeries(seriesOpt);
- });
- var axes = ['xAxis', 'yAxis', 'radiusAxis', 'angleAxis', 'singleAxis', 'parallelAxis', 'radar'];
- isTheme && axes.push('valueAxis', 'categoryAxis', 'logAxis', 'timeAxis');
- each(axes, function (axisName) {
- each(toArr(option[axisName]), function (axisOpt) {
- if (axisOpt) {
- compatTextStyle(axisOpt, 'axisLabel');
- compatTextStyle(axisOpt.axisPointer, 'label');
- }
- });
- });
- each(toArr(option.parallel), function (parallelOpt) {
- var parallelAxisDefault = parallelOpt && parallelOpt.parallelAxisDefault;
- compatTextStyle(parallelAxisDefault, 'axisLabel');
- compatTextStyle(parallelAxisDefault && parallelAxisDefault.axisPointer, 'label');
- });
- each(toArr(option.calendar), function (calendarOpt) {
- convertNormalEmphasis(calendarOpt, 'itemStyle');
- compatTextStyle(calendarOpt, 'dayLabel');
- compatTextStyle(calendarOpt, 'monthLabel');
- compatTextStyle(calendarOpt, 'yearLabel');
- }); // radar.name.textStyle
-
- each(toArr(option.radar), function (radarOpt) {
- compatTextStyle(radarOpt, 'name');
- });
- each(toArr(option.geo), function (geoOpt) {
- if (isObject(geoOpt)) {
- compatEC3CommonStyles(geoOpt);
- each(toArr(geoOpt.regions), function (regionObj) {
- compatEC3CommonStyles(regionObj);
- });
- }
- });
- each(toArr(option.timeline), function (timelineOpt) {
- compatEC3CommonStyles(timelineOpt);
- convertNormalEmphasis(timelineOpt, 'label');
- convertNormalEmphasis(timelineOpt, 'itemStyle');
- convertNormalEmphasis(timelineOpt, 'controlStyle', true);
- var data = timelineOpt.data;
- zrUtil.isArray(data) && zrUtil.each(data, function (item) {
- if (zrUtil.isObject(item)) {
- convertNormalEmphasis(item, 'label');
- convertNormalEmphasis(item, 'itemStyle');
- }
- });
- });
- each(toArr(option.toolbox), function (toolboxOpt) {
- convertNormalEmphasis(toolboxOpt, 'iconStyle');
- each(toolboxOpt.feature, function (featureOpt) {
- convertNormalEmphasis(featureOpt, 'iconStyle');
- });
- });
- compatTextStyle(toObj(option.axisPointer), 'label');
- compatTextStyle(toObj(option.tooltip).axisPointer, 'label');
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2541:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _util = __webpack_require__(864);
-
- var createHashMap = _util.createHashMap;
- var each = _util.each;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // (1) [Caution]: the logic is correct based on the premises:
- // data processing stage is blocked in stream.
- // See <module:echarts/stream/Scheduler#performDataProcessorTasks>
- // (2) Only register once when import repeatly.
- // Should be executed after series filtered and before stack calculation.
- function _default(ecModel) {
- var stackInfoMap = createHashMap();
- ecModel.eachSeries(function (seriesModel) {
- var stack = seriesModel.get('stack'); // Compatibal: when `stack` is set as '', do not stack.
-
- if (stack) {
- var stackInfoList = stackInfoMap.get(stack) || stackInfoMap.set(stack, []);
- var data = seriesModel.getData();
- var stackInfo = {
- // Used for calculate axis extent automatically.
- stackResultDimension: data.getCalculationInfo('stackResultDimension'),
- stackedOverDimension: data.getCalculationInfo('stackedOverDimension'),
- stackedDimension: data.getCalculationInfo('stackedDimension'),
- stackedByDimension: data.getCalculationInfo('stackedByDimension'),
- isStackedByIndex: data.getCalculationInfo('isStackedByIndex'),
- data: data,
- seriesModel: seriesModel
- }; // If stacked on axis that do not support data stack.
-
- if (!stackInfo.stackedDimension || !(stackInfo.isStackedByIndex || stackInfo.stackedByDimension)) {
- return;
- }
-
- stackInfoList.length && data.setCalculationInfo('stackedOnSeries', stackInfoList[stackInfoList.length - 1].seriesModel);
- stackInfoList.push(stackInfo);
- }
- });
- stackInfoMap.each(calculateStack);
- }
-
- function calculateStack(stackInfoList) {
- each(stackInfoList, function (targetStackInfo, idxInStack) {
- var resultVal = [];
- var resultNaN = [NaN, NaN];
- var dims = [targetStackInfo.stackResultDimension, targetStackInfo.stackedOverDimension];
- var targetData = targetStackInfo.data;
- var isStackedByIndex = targetStackInfo.isStackedByIndex; // Should not write on raw data, because stack series model list changes
- // depending on legend selection.
-
- var newData = targetData.map(dims, function (v0, v1, dataIndex) {
- var sum = targetData.get(targetStackInfo.stackedDimension, dataIndex); // Consider `connectNulls` of line area, if value is NaN, stackedOver
- // should also be NaN, to draw a appropriate belt area.
-
- if (isNaN(sum)) {
- return resultNaN;
- }
-
- var byValue;
- var stackedDataRawIndex;
-
- if (isStackedByIndex) {
- stackedDataRawIndex = targetData.getRawIndex(dataIndex);
- } else {
- byValue = targetData.get(targetStackInfo.stackedByDimension, dataIndex);
- } // If stackOver is NaN, chart view will render point on value start.
-
-
- var stackedOver = NaN;
-
- for (var j = idxInStack - 1; j >= 0; j--) {
- var stackInfo = stackInfoList[j]; // Has been optimized by inverted indices on `stackedByDimension`.
-
- if (!isStackedByIndex) {
- stackedDataRawIndex = stackInfo.data.rawIndexOf(stackInfo.stackedByDimension, byValue);
- }
-
- if (stackedDataRawIndex >= 0) {
- var val = stackInfo.data.getByRawIndex(stackInfo.stackResultDimension, stackedDataRawIndex); // Considering positive stack, negative stack and empty data
-
- if (sum >= 0 && val > 0 || // Positive stack
- sum <= 0 && val < 0 // Negative stack
- ) {
- sum += val;
- stackedOver = val;
- break;
- }
- }
- }
-
- resultVal[0] = sum;
- resultVal[1] = stackedOver;
- return resultVal;
- });
- targetData.hostModel.setData(newData); // Update for consequent calculation
-
- targetStackInfo.data = newData;
- });
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2542:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var Gradient = __webpack_require__(1785);
-
- var _util = __webpack_require__(864);
-
- var isFunction = _util.isFunction;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = {
- createOnAllSeries: true,
- performRawSeries: true,
- reset: function (seriesModel, ecModel) {
- var data = seriesModel.getData();
- var colorAccessPath = (seriesModel.visualColorAccessPath || 'itemStyle.color').split('.'); // Set in itemStyle
-
- var color = seriesModel.get(colorAccessPath);
- var colorCallback = isFunction(color) && !(color instanceof Gradient) ? color : null; // Default color
-
- if (!color || colorCallback) {
- color = seriesModel.getColorFromPalette( // TODO series count changed.
- seriesModel.name, null, ecModel.getSeriesCount());
- }
-
- data.setVisual('color', color);
- var borderColorAccessPath = (seriesModel.visualBorderColorAccessPath || 'itemStyle.borderColor').split('.');
- var borderColor = seriesModel.get(borderColorAccessPath);
- data.setVisual('borderColor', borderColor); // Only visible series has each data be visual encoded
-
- if (!ecModel.isSeriesFiltered(seriesModel)) {
- if (colorCallback) {
- data.each(function (idx) {
- data.setItemVisual(idx, 'color', colorCallback(seriesModel.getDataParams(idx)));
- });
- } // itemStyle in each data item
-
-
- var dataEach = function (data, idx) {
- var itemModel = data.getItemModel(idx);
- var color = itemModel.get(colorAccessPath, true);
- var borderColor = itemModel.get(borderColorAccessPath, true);
-
- if (color != null) {
- data.setItemVisual(idx, 'color', color);
- }
-
- if (borderColor != null) {
- data.setItemVisual(idx, 'borderColor', borderColor);
- }
- };
-
- return {
- dataEach: data.hasItemOption ? dataEach : null
- };
- }
- }
- };
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2543:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var lang = __webpack_require__(1483);
-
- var _dataProvider = __webpack_require__(1518);
-
- var retrieveRawValue = _dataProvider.retrieveRawValue;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function _default(dom, ecModel) {
- var ariaModel = ecModel.getModel('aria');
-
- if (!ariaModel.get('show')) {
- return;
- } else if (ariaModel.get('description')) {
- dom.setAttribute('aria-label', ariaModel.get('description'));
- return;
- }
-
- var seriesCnt = 0;
- ecModel.eachSeries(function (seriesModel, idx) {
- ++seriesCnt;
- }, this);
- var maxDataCnt = ariaModel.get('data.maxCount') || 10;
- var maxSeriesCnt = ariaModel.get('series.maxCount') || 10;
- var displaySeriesCnt = Math.min(seriesCnt, maxSeriesCnt);
- var ariaLabel;
-
- if (seriesCnt < 1) {
- // No series, no aria label
- return;
- } else {
- var title = getTitle();
-
- if (title) {
- ariaLabel = replace(getConfig('general.withTitle'), {
- title: title
- });
- } else {
- ariaLabel = getConfig('general.withoutTitle');
- }
-
- var seriesLabels = [];
- var prefix = seriesCnt > 1 ? 'series.multiple.prefix' : 'series.single.prefix';
- ariaLabel += replace(getConfig(prefix), {
- seriesCount: seriesCnt
- });
- ecModel.eachSeries(function (seriesModel, idx) {
- if (idx < displaySeriesCnt) {
- var seriesLabel;
- var seriesName = seriesModel.get('name');
- var seriesTpl = 'series.' + (seriesCnt > 1 ? 'multiple' : 'single') + '.';
- seriesLabel = getConfig(seriesName ? seriesTpl + 'withName' : seriesTpl + 'withoutName');
- seriesLabel = replace(seriesLabel, {
- seriesId: seriesModel.seriesIndex,
- seriesName: seriesModel.get('name'),
- seriesType: getSeriesTypeName(seriesModel.subType)
- });
- var data = seriesModel.getData();
- window.data = data;
-
- if (data.count() > maxDataCnt) {
- // Show part of data
- seriesLabel += replace(getConfig('data.partialData'), {
- displayCnt: maxDataCnt
- });
- } else {
- seriesLabel += getConfig('data.allData');
- }
-
- var dataLabels = [];
-
- for (var i = 0; i < data.count(); i++) {
- if (i < maxDataCnt) {
- var name = data.getName(i);
- var value = retrieveRawValue(data, i);
- dataLabels.push(replace(name ? getConfig('data.withName') : getConfig('data.withoutName'), {
- name: name,
- value: value
- }));
- }
- }
-
- seriesLabel += dataLabels.join(getConfig('data.separator.middle')) + getConfig('data.separator.end');
- seriesLabels.push(seriesLabel);
- }
- });
- ariaLabel += seriesLabels.join(getConfig('series.multiple.separator.middle')) + getConfig('series.multiple.separator.end');
- dom.setAttribute('aria-label', ariaLabel);
- }
-
- function replace(str, keyValues) {
- if (typeof str !== 'string') {
- return str;
- }
-
- var result = str;
- zrUtil.each(keyValues, function (value, key) {
- result = result.replace(new RegExp('\\{\\s*' + key + '\\s*\\}', 'g'), value);
- });
- return result;
- }
-
- function getConfig(path) {
- var userConfig = ariaModel.get(path);
-
- if (userConfig == null) {
- var pathArr = path.split('.');
- var result = lang.aria;
-
- for (var i = 0; i < pathArr.length; ++i) {
- result = result[pathArr[i]];
- }
-
- return result;
- } else {
- return userConfig;
- }
- }
-
- function getTitle() {
- var title = ecModel.getModel('title').option;
-
- if (title && title.length) {
- title = title[0];
- }
-
- return title && title.text;
- }
-
- function getSeriesTypeName(type) {
- return lang.series.typeNames[type] || '自定义图';
- }
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2544:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var graphic = __webpack_require__(906);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var PI = Math.PI;
- /**
- * @param {module:echarts/ExtensionAPI} api
- * @param {Object} [opts]
- * @param {string} [opts.text]
- * @param {string} [opts.color]
- * @param {string} [opts.textColor]
- * @return {module:zrender/Element}
- */
-
- function _default(api, opts) {
- opts = opts || {};
- zrUtil.defaults(opts, {
- text: 'loading',
- color: '#c23531',
- textColor: '#000',
- maskColor: 'rgba(255, 255, 255, 0.8)',
- zlevel: 0
- });
- var mask = new graphic.Rect({
- style: {
- fill: opts.maskColor
- },
- zlevel: opts.zlevel,
- z: 10000
- });
- var arc = new graphic.Arc({
- shape: {
- startAngle: -PI / 2,
- endAngle: -PI / 2 + 0.1,
- r: 10
- },
- style: {
- stroke: opts.color,
- lineCap: 'round',
- lineWidth: 5
- },
- zlevel: opts.zlevel,
- z: 10001
- });
- var labelRect = new graphic.Rect({
- style: {
- fill: 'none',
- text: opts.text,
- textPosition: 'right',
- textDistance: 10,
- textFill: opts.textColor
- },
- zlevel: opts.zlevel,
- z: 10001
- });
- arc.animateShape(true).when(1000, {
- endAngle: PI * 3 / 2
- }).start('circularInOut');
- arc.animateShape(true).when(1000, {
- startAngle: PI * 3 / 2
- }).delay(300).start('circularInOut');
- var group = new graphic.Group();
- group.add(arc);
- group.add(labelRect);
- group.add(mask); // Inject resize
-
- group.resize = function () {
- var cx = api.getWidth() / 2;
- var cy = api.getHeight() / 2;
- arc.setShape({
- cx: cx,
- cy: cy
- });
- var r = arc.shape.r;
- labelRect.setShape({
- x: cx - r,
- y: cy - r,
- width: r * 2,
- height: r * 2
- });
- mask.setShape({
- x: 0,
- y: 0,
- width: api.getWidth(),
- height: api.getHeight()
- });
- };
-
- group.resize();
- return group;
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2545:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _util = __webpack_require__(864);
-
- var each = _util.each;
- var map = _util.map;
- var isFunction = _util.isFunction;
- var createHashMap = _util.createHashMap;
- var noop = _util.noop;
-
- var _task = __webpack_require__(1902);
-
- var createTask = _task.createTask;
-
- var _component = __webpack_require__(1657);
-
- var getUID = _component.getUID;
-
- var GlobalModel = __webpack_require__(2267);
-
- var ExtensionAPI = __webpack_require__(2280);
-
- var _model = __webpack_require__(1064);
-
- var normalizeToArray = _model.normalizeToArray;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @module echarts/stream/Scheduler
- */
-
- /**
- * @constructor
- */
- function Scheduler(ecInstance, api, dataProcessorHandlers, visualHandlers) {
- this.ecInstance = ecInstance;
- this.api = api;
- this.unfinished; // Fix current processors in case that in some rear cases that
- // processors might be registered after echarts instance created.
- // Register processors incrementally for a echarts instance is
- // not supported by this stream architecture.
-
- var dataProcessorHandlers = this._dataProcessorHandlers = dataProcessorHandlers.slice();
- var visualHandlers = this._visualHandlers = visualHandlers.slice();
- this._allHandlers = dataProcessorHandlers.concat(visualHandlers);
- /**
- * @private
- * @type {
- * [handlerUID: string]: {
- * seriesTaskMap?: {
- * [seriesUID: string]: Task
- * },
- * overallTask?: Task
- * }
- * }
- */
-
- this._stageTaskMap = createHashMap();
- }
-
- var proto = Scheduler.prototype;
- /**
- * @param {module:echarts/model/Global} ecModel
- * @param {Object} payload
- */
-
- proto.restoreData = function (ecModel, payload) {
- // TODO: Only restroe needed series and components, but not all components.
- // Currently `restoreData` of all of the series and component will be called.
- // But some independent components like `title`, `legend`, `graphic`, `toolbox`,
- // `tooltip`, `axisPointer`, etc, do not need series refresh when `setOption`,
- // and some components like coordinate system, axes, dataZoom, visualMap only
- // need their target series refresh.
- // (1) If we are implementing this feature some day, we should consider these cases:
- // if a data processor depends on a component (e.g., dataZoomProcessor depends
- // on the settings of `dataZoom`), it should be re-performed if the component
- // is modified by `setOption`.
- // (2) If a processor depends on sevral series, speicified by its `getTargetSeries`,
- // it should be re-performed when the result array of `getTargetSeries` changed.
- // We use `dependencies` to cover these issues.
- // (3) How to update target series when coordinate system related components modified.
- // TODO: simply the dirty mechanism? Check whether only the case here can set tasks dirty,
- // and this case all of the tasks will be set as dirty.
- ecModel.restoreData(payload); // Theoretically an overall task not only depends on each of its target series, but also
- // depends on all of the series.
- // The overall task is not in pipeline, and `ecModel.restoreData` only set pipeline tasks
- // dirty. If `getTargetSeries` of an overall task returns nothing, we should also ensure
- // that the overall task is set as dirty and to be performed, otherwise it probably cause
- // state chaos. So we have to set dirty of all of the overall tasks manually, otherwise it
- // probably cause state chaos (consider `dataZoomProcessor`).
-
- this._stageTaskMap.each(function (taskRecord) {
- var overallTask = taskRecord.overallTask;
- overallTask && overallTask.dirty();
- });
- }; // If seriesModel provided, incremental threshold is check by series data.
-
-
- proto.getPerformArgs = function (task, isBlock) {
- // For overall task
- if (!task.__pipeline) {
- return;
- }
-
- var pipeline = this._pipelineMap.get(task.__pipeline.id);
-
- var pCtx = pipeline.context;
- var incremental = !isBlock && pipeline.progressiveEnabled && (!pCtx || pCtx.progressiveRender) && task.__idxInPipeline > pipeline.blockIndex;
- var step = incremental ? pipeline.step : null;
- var modDataCount = pCtx && pCtx.modDataCount;
- var modBy = modDataCount != null ? Math.ceil(modDataCount / step) : null;
- return {
- step: step,
- modBy: modBy,
- modDataCount: modDataCount
- };
- };
-
- proto.getPipeline = function (pipelineId) {
- return this._pipelineMap.get(pipelineId);
- };
- /**
- * Current, progressive rendering starts from visual and layout.
- * Always detect render mode in the same stage, avoiding that incorrect
- * detection caused by data filtering.
- * Caution:
- * `updateStreamModes` use `seriesModel.getData()`.
- */
-
-
- proto.updateStreamModes = function (seriesModel, view) {
- var pipeline = this._pipelineMap.get(seriesModel.uid);
-
- var data = seriesModel.getData();
- var dataLen = data.count(); // `progressiveRender` means that can render progressively in each
- // animation frame. Note that some types of series do not provide
- // `view.incrementalPrepareRender` but support `chart.appendData`. We
- // use the term `incremental` but not `progressive` to describe the
- // case that `chart.appendData`.
-
- var progressiveRender = pipeline.progressiveEnabled && view.incrementalPrepareRender && dataLen >= pipeline.threshold;
- var large = seriesModel.get('large') && dataLen >= seriesModel.get('largeThreshold'); // TODO: modDataCount should not updated if `appendData`, otherwise cause whole repaint.
- // see `test/candlestick-large3.html`
-
- var modDataCount = seriesModel.get('progressiveChunkMode') === 'mod' ? dataLen : null;
- seriesModel.pipelineContext = pipeline.context = {
- progressiveRender: progressiveRender,
- modDataCount: modDataCount,
- large: large
- };
- };
-
- proto.restorePipelines = function (ecModel) {
- var scheduler = this;
- var pipelineMap = scheduler._pipelineMap = createHashMap();
- ecModel.eachSeries(function (seriesModel) {
- var progressive = seriesModel.getProgressive();
- var pipelineId = seriesModel.uid;
- pipelineMap.set(pipelineId, {
- id: pipelineId,
- head: null,
- tail: null,
- threshold: seriesModel.getProgressiveThreshold(),
- progressiveEnabled: progressive && !(seriesModel.preventIncremental && seriesModel.preventIncremental()),
- blockIndex: -1,
- step: Math.round(progressive || 700),
- count: 0
- });
- pipe(scheduler, seriesModel, seriesModel.dataTask);
- });
- };
-
- proto.prepareStageTasks = function () {
- var stageTaskMap = this._stageTaskMap;
- var ecModel = this.ecInstance.getModel();
- var api = this.api;
- each(this._allHandlers, function (handler) {
- var record = stageTaskMap.get(handler.uid) || stageTaskMap.set(handler.uid, []);
- handler.reset && createSeriesStageTask(this, handler, record, ecModel, api);
- handler.overallReset && createOverallStageTask(this, handler, record, ecModel, api);
- }, this);
- };
-
- proto.prepareView = function (view, model, ecModel, api) {
- var renderTask = view.renderTask;
- var context = renderTask.context;
- context.model = model;
- context.ecModel = ecModel;
- context.api = api;
- renderTask.__block = !view.incrementalPrepareRender;
- pipe(this, model, renderTask);
- };
-
- proto.performDataProcessorTasks = function (ecModel, payload) {
- // If we do not use `block` here, it should be considered when to update modes.
- performStageTasks(this, this._dataProcessorHandlers, ecModel, payload, {
- block: true
- });
- }; // opt
- // opt.visualType: 'visual' or 'layout'
- // opt.setDirty
-
-
- proto.performVisualTasks = function (ecModel, payload, opt) {
- performStageTasks(this, this._visualHandlers, ecModel, payload, opt);
- };
-
- function performStageTasks(scheduler, stageHandlers, ecModel, payload, opt) {
- opt = opt || {};
- var unfinished;
- each(stageHandlers, function (stageHandler, idx) {
- if (opt.visualType && opt.visualType !== stageHandler.visualType) {
- return;
- }
-
- var stageHandlerRecord = scheduler._stageTaskMap.get(stageHandler.uid);
-
- var seriesTaskMap = stageHandlerRecord.seriesTaskMap;
- var overallTask = stageHandlerRecord.overallTask;
-
- if (overallTask) {
- var overallNeedDirty;
- var agentStubMap = overallTask.agentStubMap;
- agentStubMap.each(function (stub) {
- if (needSetDirty(opt, stub)) {
- stub.dirty();
- overallNeedDirty = true;
- }
- });
- overallNeedDirty && overallTask.dirty();
- updatePayload(overallTask, payload);
- var performArgs = scheduler.getPerformArgs(overallTask, opt.block); // Execute stubs firstly, which may set the overall task dirty,
- // then execute the overall task. And stub will call seriesModel.setData,
- // which ensures that in the overallTask seriesModel.getData() will not
- // return incorrect data.
-
- agentStubMap.each(function (stub) {
- stub.perform(performArgs);
- });
- unfinished |= overallTask.perform(performArgs);
- } else if (seriesTaskMap) {
- seriesTaskMap.each(function (task, pipelineId) {
- if (needSetDirty(opt, task)) {
- task.dirty();
- }
-
- var performArgs = scheduler.getPerformArgs(task, opt.block);
- performArgs.skip = !stageHandler.performRawSeries && ecModel.isSeriesFiltered(task.context.model);
- updatePayload(task, payload);
- unfinished |= task.perform(performArgs);
- });
- }
- });
-
- function needSetDirty(opt, task) {
- return opt.setDirty && (!opt.dirtyMap || opt.dirtyMap.get(task.__pipeline.id));
- }
-
- scheduler.unfinished |= unfinished;
- }
-
- proto.performSeriesTasks = function (ecModel) {
- var unfinished;
- ecModel.eachSeries(function (seriesModel) {
- // Progress to the end for dataInit and dataRestore.
- unfinished |= seriesModel.dataTask.perform();
- });
- this.unfinished |= unfinished;
- };
-
- proto.plan = function () {
- // Travel pipelines, check block.
- this._pipelineMap.each(function (pipeline) {
- var task = pipeline.tail;
-
- do {
- if (task.__block) {
- pipeline.blockIndex = task.__idxInPipeline;
- break;
- }
-
- task = task.getUpstream();
- } while (task);
- });
- };
-
- var updatePayload = proto.updatePayload = function (task, payload) {
- payload !== 'remain' && (task.context.payload = payload);
- };
-
- function createSeriesStageTask(scheduler, stageHandler, stageHandlerRecord, ecModel, api) {
- var seriesTaskMap = stageHandlerRecord.seriesTaskMap || (stageHandlerRecord.seriesTaskMap = createHashMap());
- var seriesType = stageHandler.seriesType;
- var getTargetSeries = stageHandler.getTargetSeries; // If a stageHandler should cover all series, `createOnAllSeries` should be declared mandatorily,
- // to avoid some typo or abuse. Otherwise if an extension do not specify a `seriesType`,
- // it works but it may cause other irrelevant charts blocked.
-
- if (stageHandler.createOnAllSeries) {
- ecModel.eachRawSeries(create);
- } else if (seriesType) {
- ecModel.eachRawSeriesByType(seriesType, create);
- } else if (getTargetSeries) {
- getTargetSeries(ecModel, api).each(create);
- }
-
- function create(seriesModel) {
- var pipelineId = seriesModel.uid; // Init tasks for each seriesModel only once.
- // Reuse original task instance.
-
- var task = seriesTaskMap.get(pipelineId) || seriesTaskMap.set(pipelineId, createTask({
- plan: seriesTaskPlan,
- reset: seriesTaskReset,
- count: seriesTaskCount
- }));
- task.context = {
- model: seriesModel,
- ecModel: ecModel,
- api: api,
- useClearVisual: stageHandler.isVisual && !stageHandler.isLayout,
- plan: stageHandler.plan,
- reset: stageHandler.reset,
- scheduler: scheduler
- };
- pipe(scheduler, seriesModel, task);
- } // Clear unused series tasks.
-
-
- var pipelineMap = scheduler._pipelineMap;
- seriesTaskMap.each(function (task, pipelineId) {
- if (!pipelineMap.get(pipelineId)) {
- task.dispose();
- seriesTaskMap.removeKey(pipelineId);
- }
- });
- }
-
- function createOverallStageTask(scheduler, stageHandler, stageHandlerRecord, ecModel, api) {
- var overallTask = stageHandlerRecord.overallTask = stageHandlerRecord.overallTask // For overall task, the function only be called on reset stage.
- || createTask({
- reset: overallTaskReset
- });
- overallTask.context = {
- ecModel: ecModel,
- api: api,
- overallReset: stageHandler.overallReset,
- scheduler: scheduler
- }; // Reuse orignal stubs.
-
- var agentStubMap = overallTask.agentStubMap = overallTask.agentStubMap || createHashMap();
- var seriesType = stageHandler.seriesType;
- var getTargetSeries = stageHandler.getTargetSeries;
- var overallProgress = true;
- var modifyOutputEnd = stageHandler.modifyOutputEnd; // An overall task with seriesType detected or has `getTargetSeries`, we add
- // stub in each pipelines, it will set the overall task dirty when the pipeline
- // progress. Moreover, to avoid call the overall task each frame (too frequent),
- // we set the pipeline block.
-
- if (seriesType) {
- ecModel.eachRawSeriesByType(seriesType, createStub);
- } else if (getTargetSeries) {
- getTargetSeries(ecModel, api).each(createStub);
- } // Otherwise, (usually it is legancy case), the overall task will only be
- // executed when upstream dirty. Otherwise the progressive rendering of all
- // pipelines will be disabled unexpectedly. But it still needs stubs to receive
- // dirty info from upsteam.
- else {
- overallProgress = false;
- each(ecModel.getSeries(), createStub);
- }
-
- function createStub(seriesModel) {
- var pipelineId = seriesModel.uid;
- var stub = agentStubMap.get(pipelineId);
-
- if (!stub) {
- stub = agentStubMap.set(pipelineId, createTask({
- reset: stubReset,
- onDirty: stubOnDirty
- })); // When the result of `getTargetSeries` changed, the overallTask
- // should be set as dirty and re-performed.
-
- overallTask.dirty();
- }
-
- stub.context = {
- model: seriesModel,
- overallProgress: overallProgress,
- modifyOutputEnd: modifyOutputEnd
- };
- stub.agent = overallTask;
- stub.__block = overallProgress;
- pipe(scheduler, seriesModel, stub);
- } // Clear unused stubs.
-
-
- var pipelineMap = scheduler._pipelineMap;
- agentStubMap.each(function (stub, pipelineId) {
- if (!pipelineMap.get(pipelineId)) {
- stub.dispose(); // When the result of `getTargetSeries` changed, the overallTask
- // should be set as dirty and re-performed.
-
- overallTask.dirty();
- agentStubMap.removeKey(pipelineId);
- }
- });
- }
-
- function overallTaskReset(context) {
- context.overallReset(context.ecModel, context.api, context.payload);
- }
-
- function stubReset(context, upstreamContext) {
- return context.overallProgress && stubProgress;
- }
-
- function stubProgress() {
- this.agent.dirty();
- this.getDownstream().dirty();
- }
-
- function stubOnDirty() {
- this.agent && this.agent.dirty();
- }
-
- function seriesTaskPlan(context) {
- return context.plan && context.plan(context.model, context.ecModel, context.api, context.payload);
- }
-
- function seriesTaskReset(context) {
- if (context.useClearVisual) {
- context.data.clearAllVisual();
- }
-
- var resetDefines = context.resetDefines = normalizeToArray(context.reset(context.model, context.ecModel, context.api, context.payload));
- return resetDefines.length > 1 ? map(resetDefines, function (v, idx) {
- return makeSeriesTaskProgress(idx);
- }) : singleSeriesTaskProgress;
- }
-
- var singleSeriesTaskProgress = makeSeriesTaskProgress(0);
-
- function makeSeriesTaskProgress(resetDefineIdx) {
- return function (params, context) {
- var data = context.data;
- var resetDefine = context.resetDefines[resetDefineIdx];
-
- if (resetDefine && resetDefine.dataEach) {
- for (var i = params.start; i < params.end; i++) {
- resetDefine.dataEach(data, i);
- }
- } else if (resetDefine && resetDefine.progress) {
- resetDefine.progress(params, data);
- }
- };
- }
-
- function seriesTaskCount(context) {
- return context.data.count();
- }
-
- function pipe(scheduler, seriesModel, task) {
- var pipelineId = seriesModel.uid;
-
- var pipeline = scheduler._pipelineMap.get(pipelineId);
-
- !pipeline.head && (pipeline.head = task);
- pipeline.tail && pipeline.tail.pipe(task);
- pipeline.tail = task;
- task.__idxInPipeline = pipeline.count++;
- task.__pipeline = pipeline;
- }
-
- Scheduler.wrapStageHandler = function (stageHandler, visualType) {
- if (isFunction(stageHandler)) {
- stageHandler = {
- overallReset: stageHandler,
- seriesType: detectSeriseType(stageHandler)
- };
- }
-
- stageHandler.uid = getUID('stageHandler');
- visualType && (stageHandler.visualType = visualType);
- return stageHandler;
- };
- /**
- * Only some legacy stage handlers (usually in echarts extensions) are pure function.
- * To ensure that they can work normally, they should work in block mode, that is,
- * they should not be started util the previous tasks finished. So they cause the
- * progressive rendering disabled. We try to detect the series type, to narrow down
- * the block range to only the series type they concern, but not all series.
- */
-
-
- function detectSeriseType(legacyFunc) {
- seriesType = null;
-
- try {
- // Assume there is no async when calling `eachSeriesByType`.
- legacyFunc(ecModelMock, apiMock);
- } catch (e) {}
-
- return seriesType;
- }
-
- var ecModelMock = {};
- var apiMock = {};
- var seriesType;
- mockMethods(ecModelMock, GlobalModel);
- mockMethods(apiMock, ExtensionAPI);
-
- ecModelMock.eachSeriesByType = ecModelMock.eachRawSeriesByType = function (type) {
- seriesType = type;
- };
-
- ecModelMock.eachComponent = function (cond) {
- if (cond.mainType === 'series' && cond.subType) {
- seriesType = cond.subType;
- }
- };
-
- function mockMethods(target, Clz) {
- /* eslint-disable */
- for (var name in Clz.prototype) {
- // Do not use hasOwnProperty
- target[name] = noop;
- }
- /* eslint-enable */
-
- }
-
- var _default = Scheduler;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2546:
- /***/ (function(module, exports) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var colorAll = ['#37A2DA', '#32C5E9', '#67E0E3', '#9FE6B8', '#FFDB5C', '#ff9f7f', '#fb7293', '#E062AE', '#E690D1', '#e7bcf3', '#9d96f5', '#8378EA', '#96BFFF'];
- var _default = {
- color: colorAll,
- colorLayer: [['#37A2DA', '#ffd85c', '#fd7b5f'], ['#37A2DA', '#67E0E3', '#FFDB5C', '#ff9f7f', '#E062AE', '#9d96f5'], ['#37A2DA', '#32C5E9', '#9FE6B8', '#FFDB5C', '#ff9f7f', '#fb7293', '#e7bcf3', '#8378EA', '#96BFFF'], colorAll]
- };
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2547:
- /***/ (function(module, exports) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var contrastColor = '#eee';
-
- var axisCommon = function () {
- return {
- axisLine: {
- lineStyle: {
- color: contrastColor
- }
- },
- axisTick: {
- lineStyle: {
- color: contrastColor
- }
- },
- axisLabel: {
- textStyle: {
- color: contrastColor
- }
- },
- splitLine: {
- lineStyle: {
- type: 'dashed',
- color: '#aaa'
- }
- },
- splitArea: {
- areaStyle: {
- color: contrastColor
- }
- }
- };
- };
-
- var colorPalette = ['#dd6b66', '#759aa0', '#e69d87', '#8dc1a9', '#ea7e53', '#eedd78', '#73a373', '#73b9bc', '#7289ab', '#91ca8c', '#f49f42'];
- var theme = {
- color: colorPalette,
- backgroundColor: '#333',
- tooltip: {
- axisPointer: {
- lineStyle: {
- color: contrastColor
- },
- crossStyle: {
- color: contrastColor
- },
- label: {
- color: '#000'
- }
- }
- },
- legend: {
- textStyle: {
- color: contrastColor
- }
- },
- textStyle: {
- color: contrastColor
- },
- title: {
- textStyle: {
- color: contrastColor
- }
- },
- toolbox: {
- iconStyle: {
- normal: {
- borderColor: contrastColor
- }
- }
- },
- dataZoom: {
- textStyle: {
- color: contrastColor
- }
- },
- visualMap: {
- textStyle: {
- color: contrastColor
- }
- },
- timeline: {
- lineStyle: {
- color: contrastColor
- },
- itemStyle: {
- normal: {
- color: colorPalette[1]
- }
- },
- label: {
- normal: {
- textStyle: {
- color: contrastColor
- }
- }
- },
- controlStyle: {
- normal: {
- color: contrastColor,
- borderColor: contrastColor
- }
- }
- },
- timeAxis: axisCommon(),
- logAxis: axisCommon(),
- valueAxis: axisCommon(),
- categoryAxis: axisCommon(),
- line: {
- symbol: 'circle'
- },
- graph: {
- color: colorPalette
- },
- gauge: {
- title: {
- textStyle: {
- color: contrastColor
- }
- }
- },
- candlestick: {
- itemStyle: {
- normal: {
- color: '#FD1050',
- color0: '#0CF49B',
- borderColor: '#FD1050',
- borderColor0: '#0CF49B'
- }
- }
- }
- };
- theme.categoryAxis.splitLine.show = false;
- var _default = theme;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2548:
- /***/ (function(module, exports, __webpack_require__) {
-
- var Path = __webpack_require__(1280);
-
- /**
- * 椭圆形状
- * @module zrender/graphic/shape/Ellipse
- */
- var _default = Path.extend({
- type: 'ellipse',
- shape: {
- cx: 0,
- cy: 0,
- rx: 0,
- ry: 0
- },
- buildPath: function (ctx, shape) {
- var k = 0.5522848;
- var x = shape.cx;
- var y = shape.cy;
- var a = shape.rx;
- var b = shape.ry;
- var ox = a * k; // 水平控制点偏移量
-
- var oy = b * k; // 垂直控制点偏移量
- // 从椭圆的左端点开始顺时针绘制四条三次贝塞尔曲线
-
- ctx.moveTo(x - a, y);
- ctx.bezierCurveTo(x - a, y - oy, x - ox, y - b, x, y - b);
- ctx.bezierCurveTo(x + ox, y - b, x + a, y - oy, x + a, y);
- ctx.bezierCurveTo(x + a, y + oy, x + ox, y + b, x, y + b);
- ctx.bezierCurveTo(x - ox, y + b, x - a, y + oy, x - a, y);
- ctx.closePath();
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2549:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var createListFromArray = __webpack_require__(1458);
-
- var axisHelper = __webpack_require__(1415);
-
- var axisModelCommonMixin = __webpack_require__(1603);
-
- var Model = __webpack_require__(1317);
-
- var _layout = __webpack_require__(1171);
-
- var getLayoutRect = _layout.getLayoutRect;
- exports.getLayoutRect = _layout.getLayoutRect;
-
- var _dataStackHelper = __webpack_require__(1440);
-
- var enableDataStack = _dataStackHelper.enableDataStack;
- var isDimensionStacked = _dataStackHelper.isDimensionStacked;
- var getStackedDimension = _dataStackHelper.getStackedDimension;
-
- var _completeDimensions = __webpack_require__(2285);
-
- exports.completeDimensions = _completeDimensions;
-
- var _createDimensions = __webpack_require__(1602);
-
- exports.createDimensions = _createDimensions;
-
- var _symbol = __webpack_require__(1404);
-
- exports.createSymbol = _symbol.createSymbol;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // import createGraphFromNodeEdge from './chart/helper/createGraphFromNodeEdge';
-
- /**
- * Create a muti dimension List structure from seriesModel.
- * @param {module:echarts/model/Model} seriesModel
- * @return {module:echarts/data/List} list
- */
- function createList(seriesModel) {
- return createListFromArray(seriesModel.getSource(), seriesModel);
- } // export function createGraph(seriesModel) {
- // var nodes = seriesModel.get('data');
- // var links = seriesModel.get('links');
- // return createGraphFromNodeEdge(nodes, links, seriesModel);
- // }
-
-
- var dataStack = {
- isDimensionStacked: isDimensionStacked,
- enableDataStack: enableDataStack,
- getStackedDimension: getStackedDimension
- };
- /**
- * Create a symbol element with given symbol configuration: shape, x, y, width, height, color
- * @param {string} symbolDesc
- * @param {number} x
- * @param {number} y
- * @param {number} w
- * @param {number} h
- * @param {string} color
- */
-
- /**
- * Create scale
- * @param {Array.<number>} dataExtent
- * @param {Object|module:echarts/Model} option
- */
- function createScale(dataExtent, option) {
- var axisModel = option;
-
- if (!Model.isInstance(option)) {
- axisModel = new Model(option);
- zrUtil.mixin(axisModel, axisModelCommonMixin);
- }
-
- var scale = axisHelper.createScaleByModel(axisModel);
- scale.setExtent(dataExtent[0], dataExtent[1]);
- axisHelper.niceScaleExtent(scale, axisModel);
- return scale;
- }
- /**
- * Mixin common methods to axis model,
- *
- * Inlcude methods
- * `getFormattedLabels() => Array.<string>`
- * `getCategories() => Array.<string>`
- * `getMin(origin: boolean) => number`
- * `getMax(origin: boolean) => number`
- * `getNeedCrossZero() => boolean`
- * `setRange(start: number, end: number)`
- * `resetRange()`
- */
-
-
- function mixinAxisModelCommonMethods(Model) {
- zrUtil.mixin(Model, axisModelCommonMixin);
- }
-
- exports.createList = createList;
- exports.dataStack = dataStack;
- exports.createScale = createScale;
- exports.mixinAxisModelCommonMethods = mixinAxisModelCommonMethods;
-
- /***/ }),
-
- /***/ 2550:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var _util = __webpack_require__(864);
-
- var createHashMap = _util.createHashMap;
- var retrieve = _util.retrieve;
- var each = _util.each;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Helper for model references.
- * There are many manners to refer axis/coordSys.
- */
- // TODO
- // merge relevant logic to this file?
- // check: "modelHelper" of tooltip and "BrushTargetManager".
-
- /**
- * @class
- * For example:
- * {
- * coordSysName: 'cartesian2d',
- * coordSysDims: ['x', 'y', ...],
- * axisMap: HashMap({
- * x: xAxisModel,
- * y: yAxisModel
- * }),
- * categoryAxisMap: HashMap({
- * x: xAxisModel,
- * y: undefined
- * }),
- * // The index of the first category axis in `coordSysDims`.
- * // `null/undefined` means no category axis exists.
- * firstCategoryDimIndex: 1,
- * // To replace user specified encode.
- * }
- */
- function CoordSysInfo(coordSysName) {
- /**
- * @type {string}
- */
- this.coordSysName = coordSysName;
- /**
- * @type {Array.<string>}
- */
-
- this.coordSysDims = [];
- /**
- * @type {module:zrender/core/util#HashMap}
- */
-
- this.axisMap = createHashMap();
- /**
- * @type {module:zrender/core/util#HashMap}
- */
-
- this.categoryAxisMap = createHashMap();
- /**
- * @type {number}
- */
-
- this.firstCategoryDimIndex = null;
- }
- /**
- * @return {module:model/referHelper#CoordSysInfo}
- */
-
-
- function getCoordSysInfoBySeries(seriesModel) {
- var coordSysName = seriesModel.get('coordinateSystem');
- var result = new CoordSysInfo(coordSysName);
- var fetch = fetchers[coordSysName];
-
- if (fetch) {
- fetch(seriesModel, result, result.axisMap, result.categoryAxisMap);
- return result;
- }
- }
-
- var fetchers = {
- cartesian2d: function (seriesModel, result, axisMap, categoryAxisMap) {
- var xAxisModel = seriesModel.getReferringComponents('xAxis')[0];
- var yAxisModel = seriesModel.getReferringComponents('yAxis')[0];
- result.coordSysDims = ['x', 'y'];
- axisMap.set('x', xAxisModel);
- axisMap.set('y', yAxisModel);
-
- if (isCategory(xAxisModel)) {
- categoryAxisMap.set('x', xAxisModel);
- result.firstCategoryDimIndex = 0;
- }
-
- if (isCategory(yAxisModel)) {
- categoryAxisMap.set('y', yAxisModel);
- result.firstCategoryDimIndex == null & (result.firstCategoryDimIndex = 1);
- }
- },
- singleAxis: function (seriesModel, result, axisMap, categoryAxisMap) {
- var singleAxisModel = seriesModel.getReferringComponents('singleAxis')[0];
- result.coordSysDims = ['single'];
- axisMap.set('single', singleAxisModel);
-
- if (isCategory(singleAxisModel)) {
- categoryAxisMap.set('single', singleAxisModel);
- result.firstCategoryDimIndex = 0;
- }
- },
- polar: function (seriesModel, result, axisMap, categoryAxisMap) {
- var polarModel = seriesModel.getReferringComponents('polar')[0];
- var radiusAxisModel = polarModel.findAxisModel('radiusAxis');
- var angleAxisModel = polarModel.findAxisModel('angleAxis');
- result.coordSysDims = ['radius', 'angle'];
- axisMap.set('radius', radiusAxisModel);
- axisMap.set('angle', angleAxisModel);
-
- if (isCategory(radiusAxisModel)) {
- categoryAxisMap.set('radius', radiusAxisModel);
- result.firstCategoryDimIndex = 0;
- }
-
- if (isCategory(angleAxisModel)) {
- categoryAxisMap.set('angle', angleAxisModel);
- result.firstCategoryDimIndex == null && (result.firstCategoryDimIndex = 1);
- }
- },
- geo: function (seriesModel, result, axisMap, categoryAxisMap) {
- result.coordSysDims = ['lng', 'lat'];
- },
- parallel: function (seriesModel, result, axisMap, categoryAxisMap) {
- var ecModel = seriesModel.ecModel;
- var parallelModel = ecModel.getComponent('parallel', seriesModel.get('parallelIndex'));
- var coordSysDims = result.coordSysDims = parallelModel.dimensions.slice();
- each(parallelModel.parallelAxisIndex, function (axisIndex, index) {
- var axisModel = ecModel.getComponent('parallelAxis', axisIndex);
- var axisDim = coordSysDims[index];
- axisMap.set(axisDim, axisModel);
-
- if (isCategory(axisModel) && result.firstCategoryDimIndex == null) {
- categoryAxisMap.set(axisDim, axisModel);
- result.firstCategoryDimIndex = index;
- }
- });
- }
- };
-
- function isCategory(axisModel) {
- return axisModel.get('type') === 'category';
- }
-
- exports.getCoordSysInfoBySeries = getCoordSysInfoBySeries;
-
- /***/ }),
-
- /***/ 2551:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var Scale = __webpack_require__(1787);
-
- var OrdinalMeta = __webpack_require__(2286);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Linear continuous scale
- * @module echarts/coord/scale/Ordinal
- *
- * http://en.wikipedia.org/wiki/Level_of_measurement
- */
- // FIXME only one data
- var scaleProto = Scale.prototype;
- var OrdinalScale = Scale.extend({
- type: 'ordinal',
-
- /**
- * @param {module:echarts/data/OrdianlMeta|Array.<string>} ordinalMeta
- */
- init: function (ordinalMeta, extent) {
- // Caution: Should not use instanceof, consider ec-extensions using
- // import approach to get OrdinalMeta class.
- if (!ordinalMeta || zrUtil.isArray(ordinalMeta)) {
- ordinalMeta = new OrdinalMeta({
- categories: ordinalMeta
- });
- }
-
- this._ordinalMeta = ordinalMeta;
- this._extent = extent || [0, ordinalMeta.categories.length - 1];
- },
- parse: function (val) {
- return typeof val === 'string' ? this._ordinalMeta.getOrdinal(val) // val might be float.
- : Math.round(val);
- },
- contain: function (rank) {
- rank = this.parse(rank);
- return scaleProto.contain.call(this, rank) && this._ordinalMeta.categories[rank] != null;
- },
-
- /**
- * Normalize given rank or name to linear [0, 1]
- * @param {number|string} [val]
- * @return {number}
- */
- normalize: function (val) {
- return scaleProto.normalize.call(this, this.parse(val));
- },
- scale: function (val) {
- return Math.round(scaleProto.scale.call(this, val));
- },
-
- /**
- * @return {Array}
- */
- getTicks: function () {
- var ticks = [];
- var extent = this._extent;
- var rank = extent[0];
-
- while (rank <= extent[1]) {
- ticks.push(rank);
- rank++;
- }
-
- return ticks;
- },
-
- /**
- * Get item on rank n
- * @param {number} n
- * @return {string}
- */
- getLabel: function (n) {
- if (!this.isBlank()) {
- // Note that if no data, ordinalMeta.categories is an empty array.
- return this._ordinalMeta.categories[n];
- }
- },
-
- /**
- * @return {number}
- */
- count: function () {
- return this._extent[1] - this._extent[0] + 1;
- },
-
- /**
- * @override
- */
- unionExtentFromData: function (data, dim) {
- this.unionExtent(data.getApproximateExtent(dim));
- },
- getOrdinalMeta: function () {
- return this._ordinalMeta;
- },
- niceTicks: zrUtil.noop,
- niceExtent: zrUtil.noop
- });
- /**
- * @return {module:echarts/scale/Time}
- */
-
- OrdinalScale.create = function () {
- return new OrdinalScale();
- };
-
- var _default = OrdinalScale;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2552:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var numberUtil = __webpack_require__(985);
-
- var formatUtil = __webpack_require__(1186);
-
- var scaleHelper = __webpack_require__(2287);
-
- var IntervalScale = __webpack_require__(1788);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * A third-party license is embeded for some of the code in this file:
- * The "scaleLevels" was originally copied from "d3.js" with some
- * modifications made for this project.
- * (See more details in the comment on the definition of "scaleLevels" below.)
- * The use of the source code of this file is also subject to the terms
- * and consitions of the license of "d3.js" (BSD-3Clause, see
- * </licenses/LICENSE-d3>).
- */
- // [About UTC and local time zone]:
- // In most cases, `number.parseDate` will treat input data string as local time
- // (except time zone is specified in time string). And `format.formateTime` returns
- // local time by default. option.useUTC is false by default. This design have
- // concidered these common case:
- // (1) Time that is persistent in server is in UTC, but it is needed to be diplayed
- // in local time by default.
- // (2) By default, the input data string (e.g., '2011-01-02') should be displayed
- // as its original time, without any time difference.
- var intervalScaleProto = IntervalScale.prototype;
- var mathCeil = Math.ceil;
- var mathFloor = Math.floor;
- var ONE_SECOND = 1000;
- var ONE_MINUTE = ONE_SECOND * 60;
- var ONE_HOUR = ONE_MINUTE * 60;
- var ONE_DAY = ONE_HOUR * 24; // FIXME 公用?
-
- var bisect = function (a, x, lo, hi) {
- while (lo < hi) {
- var mid = lo + hi >>> 1;
-
- if (a[mid][1] < x) {
- lo = mid + 1;
- } else {
- hi = mid;
- }
- }
-
- return lo;
- };
- /**
- * @alias module:echarts/coord/scale/Time
- * @constructor
- */
-
-
- var TimeScale = IntervalScale.extend({
- type: 'time',
-
- /**
- * @override
- */
- getLabel: function (val) {
- var stepLvl = this._stepLvl;
- var date = new Date(val);
- return formatUtil.formatTime(stepLvl[0], date, this.getSetting('useUTC'));
- },
-
- /**
- * @override
- */
- niceExtent: function (opt) {
- var extent = this._extent; // If extent start and end are same, expand them
-
- if (extent[0] === extent[1]) {
- // Expand extent
- extent[0] -= ONE_DAY;
- extent[1] += ONE_DAY;
- } // If there are no data and extent are [Infinity, -Infinity]
-
-
- if (extent[1] === -Infinity && extent[0] === Infinity) {
- var d = new Date();
- extent[1] = +new Date(d.getFullYear(), d.getMonth(), d.getDate());
- extent[0] = extent[1] - ONE_DAY;
- }
-
- this.niceTicks(opt.splitNumber, opt.minInterval, opt.maxInterval); // var extent = this._extent;
-
- var interval = this._interval;
-
- if (!opt.fixMin) {
- extent[0] = numberUtil.round(mathFloor(extent[0] / interval) * interval);
- }
-
- if (!opt.fixMax) {
- extent[1] = numberUtil.round(mathCeil(extent[1] / interval) * interval);
- }
- },
-
- /**
- * @override
- */
- niceTicks: function (approxTickNum, minInterval, maxInterval) {
- approxTickNum = approxTickNum || 10;
- var extent = this._extent;
- var span = extent[1] - extent[0];
- var approxInterval = span / approxTickNum;
-
- if (minInterval != null && approxInterval < minInterval) {
- approxInterval = minInterval;
- }
-
- if (maxInterval != null && approxInterval > maxInterval) {
- approxInterval = maxInterval;
- }
-
- var scaleLevelsLen = scaleLevels.length;
- var idx = bisect(scaleLevels, approxInterval, 0, scaleLevelsLen);
- var level = scaleLevels[Math.min(idx, scaleLevelsLen - 1)];
- var interval = level[1]; // Same with interval scale if span is much larger than 1 year
-
- if (level[0] === 'year') {
- var yearSpan = span / interval; // From "Nice Numbers for Graph Labels" of Graphic Gems
- // var niceYearSpan = numberUtil.nice(yearSpan, false);
-
- var yearStep = numberUtil.nice(yearSpan / approxTickNum, true);
- interval *= yearStep;
- }
-
- var timezoneOffset = this.getSetting('useUTC') ? 0 : new Date(+extent[0] || +extent[1]).getTimezoneOffset() * 60 * 1000;
- var niceExtent = [Math.round(mathCeil((extent[0] - timezoneOffset) / interval) * interval + timezoneOffset), Math.round(mathFloor((extent[1] - timezoneOffset) / interval) * interval + timezoneOffset)];
- scaleHelper.fixExtent(niceExtent, extent);
- this._stepLvl = level; // Interval will be used in getTicks
-
- this._interval = interval;
- this._niceExtent = niceExtent;
- },
- parse: function (val) {
- // val might be float.
- return +numberUtil.parseDate(val);
- }
- });
- zrUtil.each(['contain', 'normalize'], function (methodName) {
- TimeScale.prototype[methodName] = function (val) {
- return intervalScaleProto[methodName].call(this, this.parse(val));
- };
- });
- /**
- * This implementation was originally copied from "d3.js"
- * <https://github.com/d3/d3/blob/b516d77fb8566b576088e73410437494717ada26/src/time/scale.js>
- * with some modifications made for this program.
- * See the license statement at the head of this file.
- */
-
- var scaleLevels = [// Format interval
- ['hh:mm:ss', ONE_SECOND], // 1s
- ['hh:mm:ss', ONE_SECOND * 5], // 5s
- ['hh:mm:ss', ONE_SECOND * 10], // 10s
- ['hh:mm:ss', ONE_SECOND * 15], // 15s
- ['hh:mm:ss', ONE_SECOND * 30], // 30s
- ['hh:mm\nMM-dd', ONE_MINUTE], // 1m
- ['hh:mm\nMM-dd', ONE_MINUTE * 5], // 5m
- ['hh:mm\nMM-dd', ONE_MINUTE * 10], // 10m
- ['hh:mm\nMM-dd', ONE_MINUTE * 15], // 15m
- ['hh:mm\nMM-dd', ONE_MINUTE * 30], // 30m
- ['hh:mm\nMM-dd', ONE_HOUR], // 1h
- ['hh:mm\nMM-dd', ONE_HOUR * 2], // 2h
- ['hh:mm\nMM-dd', ONE_HOUR * 6], // 6h
- ['hh:mm\nMM-dd', ONE_HOUR * 12], // 12h
- ['MM-dd\nyyyy', ONE_DAY], // 1d
- ['MM-dd\nyyyy', ONE_DAY * 2], // 2d
- ['MM-dd\nyyyy', ONE_DAY * 3], // 3d
- ['MM-dd\nyyyy', ONE_DAY * 4], // 4d
- ['MM-dd\nyyyy', ONE_DAY * 5], // 5d
- ['MM-dd\nyyyy', ONE_DAY * 6], // 6d
- ['week', ONE_DAY * 7], // 7d
- ['MM-dd\nyyyy', ONE_DAY * 10], // 10d
- ['week', ONE_DAY * 14], // 2w
- ['week', ONE_DAY * 21], // 3w
- ['month', ONE_DAY * 31], // 1M
- ['week', ONE_DAY * 42], // 6w
- ['month', ONE_DAY * 62], // 2M
- ['week', ONE_DAY * 70], // 10w
- ['quarter', ONE_DAY * 95], // 3M
- ['month', ONE_DAY * 31 * 4], // 4M
- ['month', ONE_DAY * 31 * 5], // 5M
- ['half-year', ONE_DAY * 380 / 2], // 6M
- ['month', ONE_DAY * 31 * 8], // 8M
- ['month', ONE_DAY * 31 * 10], // 10M
- ['year', ONE_DAY * 380] // 1Y
- ];
- /**
- * @param {module:echarts/model/Model}
- * @return {module:echarts/scale/Time}
- */
-
- TimeScale.create = function (model) {
- return new TimeScale({
- useUTC: model.ecModel.get('useUTC')
- });
- };
-
- var _default = TimeScale;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2553:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var textContain = __webpack_require__(1402);
-
- var _model = __webpack_require__(1064);
-
- var makeInner = _model.makeInner;
-
- var _axisHelper = __webpack_require__(1415);
-
- var makeLabelFormatter = _axisHelper.makeLabelFormatter;
- var getOptionCategoryInterval = _axisHelper.getOptionCategoryInterval;
- var shouldShowAllLabels = _axisHelper.shouldShowAllLabels;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var inner = makeInner();
- /**
- * @param {module:echats/coord/Axis} axis
- * @return {Object} {
- * labels: [{
- * formattedLabel: string,
- * rawLabel: string,
- * tickValue: number
- * }, ...],
- * labelCategoryInterval: number
- * }
- */
-
- function createAxisLabels(axis) {
- // Only ordinal scale support tick interval
- return axis.type === 'category' ? makeCategoryLabels(axis) : makeRealNumberLabels(axis);
- }
- /**
- * @param {module:echats/coord/Axis} axis
- * @param {module:echarts/model/Model} tickModel For example, can be axisTick, splitLine, splitArea.
- * @return {Object} {
- * ticks: Array.<number>
- * tickCategoryInterval: number
- * }
- */
-
-
- function createAxisTicks(axis, tickModel) {
- // Only ordinal scale support tick interval
- return axis.type === 'category' ? makeCategoryTicks(axis, tickModel) : {
- ticks: axis.scale.getTicks()
- };
- }
-
- function makeCategoryLabels(axis) {
- var labelModel = axis.getLabelModel();
- var result = makeCategoryLabelsActually(axis, labelModel);
- return !labelModel.get('show') || axis.scale.isBlank() ? {
- labels: [],
- labelCategoryInterval: result.labelCategoryInterval
- } : result;
- }
-
- function makeCategoryLabelsActually(axis, labelModel) {
- var labelsCache = getListCache(axis, 'labels');
- var optionLabelInterval = getOptionCategoryInterval(labelModel);
- var result = listCacheGet(labelsCache, optionLabelInterval);
-
- if (result) {
- return result;
- }
-
- var labels;
- var numericLabelInterval;
-
- if (zrUtil.isFunction(optionLabelInterval)) {
- labels = makeLabelsByCustomizedCategoryInterval(axis, optionLabelInterval);
- } else {
- numericLabelInterval = optionLabelInterval === 'auto' ? makeAutoCategoryInterval(axis) : optionLabelInterval;
- labels = makeLabelsByNumericCategoryInterval(axis, numericLabelInterval);
- } // Cache to avoid calling interval function repeatly.
-
-
- return listCacheSet(labelsCache, optionLabelInterval, {
- labels: labels,
- labelCategoryInterval: numericLabelInterval
- });
- }
-
- function makeCategoryTicks(axis, tickModel) {
- var ticksCache = getListCache(axis, 'ticks');
- var optionTickInterval = getOptionCategoryInterval(tickModel);
- var result = listCacheGet(ticksCache, optionTickInterval);
-
- if (result) {
- return result;
- }
-
- var ticks;
- var tickCategoryInterval; // Optimize for the case that large category data and no label displayed,
- // we should not return all ticks.
-
- if (!tickModel.get('show') || axis.scale.isBlank()) {
- ticks = [];
- }
-
- if (zrUtil.isFunction(optionTickInterval)) {
- ticks = makeLabelsByCustomizedCategoryInterval(axis, optionTickInterval, true);
- } // Always use label interval by default despite label show. Consider this
- // scenario, Use multiple grid with the xAxis sync, and only one xAxis shows
- // labels. `splitLine` and `axisTick` should be consistent in this case.
- else if (optionTickInterval === 'auto') {
- var labelsResult = makeCategoryLabelsActually(axis, axis.getLabelModel());
- tickCategoryInterval = labelsResult.labelCategoryInterval;
- ticks = zrUtil.map(labelsResult.labels, function (labelItem) {
- return labelItem.tickValue;
- });
- } else {
- tickCategoryInterval = optionTickInterval;
- ticks = makeLabelsByNumericCategoryInterval(axis, tickCategoryInterval, true);
- } // Cache to avoid calling interval function repeatly.
-
-
- return listCacheSet(ticksCache, optionTickInterval, {
- ticks: ticks,
- tickCategoryInterval: tickCategoryInterval
- });
- }
-
- function makeRealNumberLabels(axis) {
- var ticks = axis.scale.getTicks();
- var labelFormatter = makeLabelFormatter(axis);
- return {
- labels: zrUtil.map(ticks, function (tickValue, idx) {
- return {
- formattedLabel: labelFormatter(tickValue, idx),
- rawLabel: axis.scale.getLabel(tickValue),
- tickValue: tickValue
- };
- })
- };
- } // Large category data calculation is performence sensitive, and ticks and label
- // probably be fetched by multiple times. So we cache the result.
- // axis is created each time during a ec process, so we do not need to clear cache.
-
-
- function getListCache(axis, prop) {
- // Because key can be funciton, and cache size always be small, we use array cache.
- return inner(axis)[prop] || (inner(axis)[prop] = []);
- }
-
- function listCacheGet(cache, key) {
- for (var i = 0; i < cache.length; i++) {
- if (cache[i].key === key) {
- return cache[i].value;
- }
- }
- }
-
- function listCacheSet(cache, key, value) {
- cache.push({
- key: key,
- value: value
- });
- return value;
- }
-
- function makeAutoCategoryInterval(axis) {
- var result = inner(axis).autoInterval;
- return result != null ? result : inner(axis).autoInterval = axis.calculateCategoryInterval();
- }
- /**
- * Calculate interval for category axis ticks and labels.
- * To get precise result, at least one of `getRotate` and `isHorizontal`
- * should be implemented in axis.
- */
-
-
- function calculateCategoryInterval(axis) {
- var params = fetchAutoCategoryIntervalCalculationParams(axis);
- var labelFormatter = makeLabelFormatter(axis);
- var rotation = (params.axisRotate - params.labelRotate) / 180 * Math.PI;
- var ordinalScale = axis.scale;
- var ordinalExtent = ordinalScale.getExtent(); // Providing this method is for optimization:
- // avoid generating a long array by `getTicks`
- // in large category data case.
-
- var tickCount = ordinalScale.count();
-
- if (ordinalExtent[1] - ordinalExtent[0] < 1) {
- return 0;
- }
-
- var step = 1; // Simple optimization. Empirical value: tick count should less than 40.
-
- if (tickCount > 40) {
- step = Math.max(1, Math.floor(tickCount / 40));
- }
-
- var tickValue = ordinalExtent[0];
- var unitSpan = axis.dataToCoord(tickValue + 1) - axis.dataToCoord(tickValue);
- var unitW = Math.abs(unitSpan * Math.cos(rotation));
- var unitH = Math.abs(unitSpan * Math.sin(rotation));
- var maxW = 0;
- var maxH = 0; // Caution: Performance sensitive for large category data.
- // Consider dataZoom, we should make appropriate step to avoid O(n) loop.
-
- for (; tickValue <= ordinalExtent[1]; tickValue += step) {
- var width = 0;
- var height = 0; // Not precise, do not consider align and vertical align
- // and each distance from axis line yet.
-
- var rect = textContain.getBoundingRect(labelFormatter(tickValue), params.font, 'center', 'top'); // Magic number
-
- width = rect.width * 1.3;
- height = rect.height * 1.3; // Min size, void long loop.
-
- maxW = Math.max(maxW, width, 7);
- maxH = Math.max(maxH, height, 7);
- }
-
- var dw = maxW / unitW;
- var dh = maxH / unitH; // 0/0 is NaN, 1/0 is Infinity.
-
- isNaN(dw) && (dw = Infinity);
- isNaN(dh) && (dh = Infinity);
- var interval = Math.max(0, Math.floor(Math.min(dw, dh)));
- var cache = inner(axis.model);
- var axisExtent = axis.getExtent();
- var lastAutoInterval = cache.lastAutoInterval;
- var lastTickCount = cache.lastTickCount; // Use cache to keep interval stable while moving zoom window,
- // otherwise the calculated interval might jitter when the zoom
- // window size is close to the interval-changing size.
- // For example, if all of the axis labels are `a, b, c, d, e, f, g`.
- // The jitter will cause that sometimes the displayed labels are
- // `a, d, g` (interval: 2) sometimes `a, c, e`(interval: 1).
-
- if (lastAutoInterval != null && lastTickCount != null && Math.abs(lastAutoInterval - interval) <= 1 && Math.abs(lastTickCount - tickCount) <= 1 // Always choose the bigger one, otherwise the critical
- // point is not the same when zooming in or zooming out.
- && lastAutoInterval > interval // If the axis change is caused by chart resize, the cache should not
- // be used. Otherwise some hiden labels might not be shown again.
- && cache.axisExtend0 === axisExtent[0] && cache.axisExtend1 === axisExtent[1]) {
- interval = lastAutoInterval;
- } // Only update cache if cache not used, otherwise the
- // changing of interval is too insensitive.
- else {
- cache.lastTickCount = tickCount;
- cache.lastAutoInterval = interval;
- cache.axisExtend0 = axisExtent[0];
- cache.axisExtend1 = axisExtent[1];
- }
-
- return interval;
- }
-
- function fetchAutoCategoryIntervalCalculationParams(axis) {
- var labelModel = axis.getLabelModel();
- return {
- axisRotate: axis.getRotate ? axis.getRotate() : axis.isHorizontal && !axis.isHorizontal() ? 90 : 0,
- labelRotate: labelModel.get('rotate') || 0,
- font: labelModel.getFont()
- };
- }
-
- function makeLabelsByNumericCategoryInterval(axis, categoryInterval, onlyTick) {
- var labelFormatter = makeLabelFormatter(axis);
- var ordinalScale = axis.scale;
- var ordinalExtent = ordinalScale.getExtent();
- var labelModel = axis.getLabelModel();
- var result = []; // TODO: axisType: ordinalTime, pick the tick from each month/day/year/...
-
- var step = Math.max((categoryInterval || 0) + 1, 1);
- var startTick = ordinalExtent[0];
- var tickCount = ordinalScale.count(); // Calculate start tick based on zero if possible to keep label consistent
- // while zooming and moving while interval > 0. Otherwise the selection
- // of displayable ticks and symbols probably keep changing.
- // 3 is empirical value.
-
- if (startTick !== 0 && step > 1 && tickCount / step > 2) {
- startTick = Math.round(Math.ceil(startTick / step) * step);
- } // (1) Only add min max label here but leave overlap checking
- // to render stage, which also ensure the returned list
- // suitable for splitLine and splitArea rendering.
- // (2) Scales except category always contain min max label so
- // do not need to perform this process.
-
-
- var showAllLabel = shouldShowAllLabels(axis);
- var includeMinLabel = labelModel.get('showMinLabel') || showAllLabel;
- var includeMaxLabel = labelModel.get('showMaxLabel') || showAllLabel;
-
- if (includeMinLabel && startTick !== ordinalExtent[0]) {
- addItem(ordinalExtent[0]);
- } // Optimize: avoid generating large array by `ordinalScale.getTicks()`.
-
-
- var tickValue = startTick;
-
- for (; tickValue <= ordinalExtent[1]; tickValue += step) {
- addItem(tickValue);
- }
-
- if (includeMaxLabel && tickValue - step !== ordinalExtent[1]) {
- addItem(ordinalExtent[1]);
- }
-
- function addItem(tVal) {
- result.push(onlyTick ? tVal : {
- formattedLabel: labelFormatter(tVal),
- rawLabel: ordinalScale.getLabel(tVal),
- tickValue: tVal
- });
- }
-
- return result;
- } // When interval is function, the result `false` means ignore the tick.
- // It is time consuming for large category data.
-
-
- function makeLabelsByCustomizedCategoryInterval(axis, categoryInterval, onlyTick) {
- var ordinalScale = axis.scale;
- var labelFormatter = makeLabelFormatter(axis);
- var result = [];
- zrUtil.each(ordinalScale.getTicks(), function (tickValue) {
- var rawLabel = ordinalScale.getLabel(tickValue);
-
- if (categoryInterval(tickValue, rawLabel)) {
- result.push(onlyTick ? tickValue : {
- formattedLabel: labelFormatter(tickValue),
- rawLabel: rawLabel,
- tickValue: tickValue
- });
- }
- });
- return result;
- }
-
- exports.createAxisLabels = createAxisLabels;
- exports.createAxisTicks = createAxisTicks;
- exports.calculateCategoryInterval = calculateCategoryInterval;
-
- /***/ }),
-
- /***/ 2554:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- __webpack_require__(2555);
-
- __webpack_require__(2556);
-
- var visualSymbol = __webpack_require__(1520);
-
- var layoutPoints = __webpack_require__(1663);
-
- var dataSample = __webpack_require__(2558);
-
- __webpack_require__(1664);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // In case developer forget to include grid component
- echarts.registerVisual(visualSymbol('line', 'circle', 'line'));
- echarts.registerLayout(layoutPoints('line')); // Down sample after filter
-
- echarts.registerProcessor(echarts.PRIORITY.PROCESSOR.STATISTIC, dataSample('line'));
-
- /***/ }),
-
- /***/ 2555:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var createListFromArray = __webpack_require__(1458);
-
- var SeriesModel = __webpack_require__(1322);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = SeriesModel.extend({
- type: 'series.line',
- dependencies: ['grid', 'polar'],
- getInitialData: function (option, ecModel) {
- return createListFromArray(this.getSource(), this, {
- useEncodeDefaulter: true
- });
- },
- defaultOption: {
- zlevel: 0,
- z: 2,
- coordinateSystem: 'cartesian2d',
- legendHoverLink: true,
- hoverAnimation: true,
- // stack: null
- // xAxisIndex: 0,
- // yAxisIndex: 0,
- // polarIndex: 0,
- // If clip the overflow value
- clip: true,
- // cursor: null,
- label: {
- position: 'top'
- },
- // itemStyle: {
- // },
- lineStyle: {
- width: 2,
- type: 'solid'
- },
- // areaStyle: {
- // origin of areaStyle. Valid values:
- // `'auto'/null/undefined`: from axisLine to data
- // `'start'`: from min to data
- // `'end'`: from data to max
- // origin: 'auto'
- // },
- // false, 'start', 'end', 'middle'
- step: false,
- // Disabled if step is true
- smooth: false,
- smoothMonotone: null,
- symbol: 'emptyCircle',
- symbolSize: 4,
- symbolRotate: null,
- showSymbol: true,
- // `false`: follow the label interval strategy.
- // `true`: show all symbols.
- // `'auto'`: If possible, show all symbols, otherwise
- // follow the label interval strategy.
- showAllSymbol: 'auto',
- // Whether to connect break point.
- connectNulls: false,
- // Sampling for large data. Can be: 'average', 'max', 'min', 'sum'.
- sampling: 'none',
- animationEasing: 'linear',
- // Disable progressive
- progressive: 0,
- hoverLayerThreshold: Infinity
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2556:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var zrUtil = __webpack_require__(864);
-
- var SymbolDraw = __webpack_require__(1661);
-
- var SymbolClz = __webpack_require__(1790);
-
- var lineAnimationDiff = __webpack_require__(2557);
-
- var graphic = __webpack_require__(906);
-
- var modelUtil = __webpack_require__(1064);
-
- var _poly = __webpack_require__(2293);
-
- var Polyline = _poly.Polyline;
- var Polygon = _poly.Polygon;
-
- var ChartView = __webpack_require__(1439);
-
- var _helper = __webpack_require__(2292);
-
- var prepareDataCoordInfo = _helper.prepareDataCoordInfo;
- var getStackedOnPoint = _helper.getStackedOnPoint;
-
- var _createClipPathFromCoordSys = __webpack_require__(1662);
-
- var createGridClipPath = _createClipPathFromCoordSys.createGridClipPath;
- var createPolarClipPath = _createClipPathFromCoordSys.createPolarClipPath;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // FIXME step not support polar
- function isPointsSame(points1, points2) {
- if (points1.length !== points2.length) {
- return;
- }
-
- for (var i = 0; i < points1.length; i++) {
- var p1 = points1[i];
- var p2 = points2[i];
-
- if (p1[0] !== p2[0] || p1[1] !== p2[1]) {
- return;
- }
- }
-
- return true;
- }
-
- function getSmooth(smooth) {
- return typeof smooth === 'number' ? smooth : smooth ? 0.5 : 0;
- }
- /**
- * @param {module:echarts/coord/cartesian/Cartesian2D|module:echarts/coord/polar/Polar} coordSys
- * @param {module:echarts/data/List} data
- * @param {Object} dataCoordInfo
- * @param {Array.<Array.<number>>} points
- */
-
-
- function getStackedOnPoints(coordSys, data, dataCoordInfo) {
- if (!dataCoordInfo.valueDim) {
- return [];
- }
-
- var points = [];
-
- for (var idx = 0, len = data.count(); idx < len; idx++) {
- points.push(getStackedOnPoint(dataCoordInfo, coordSys, data, idx));
- }
-
- return points;
- }
-
- function turnPointsIntoStep(points, coordSys, stepTurnAt) {
- var baseAxis = coordSys.getBaseAxis();
- var baseIndex = baseAxis.dim === 'x' || baseAxis.dim === 'radius' ? 0 : 1;
- var stepPoints = [];
-
- for (var i = 0; i < points.length - 1; i++) {
- var nextPt = points[i + 1];
- var pt = points[i];
- stepPoints.push(pt);
- var stepPt = [];
-
- switch (stepTurnAt) {
- case 'end':
- stepPt[baseIndex] = nextPt[baseIndex];
- stepPt[1 - baseIndex] = pt[1 - baseIndex]; // default is start
-
- stepPoints.push(stepPt);
- break;
-
- case 'middle':
- // default is start
- var middle = (pt[baseIndex] + nextPt[baseIndex]) / 2;
- var stepPt2 = [];
- stepPt[baseIndex] = stepPt2[baseIndex] = middle;
- stepPt[1 - baseIndex] = pt[1 - baseIndex];
- stepPt2[1 - baseIndex] = nextPt[1 - baseIndex];
- stepPoints.push(stepPt);
- stepPoints.push(stepPt2);
- break;
-
- default:
- stepPt[baseIndex] = pt[baseIndex];
- stepPt[1 - baseIndex] = nextPt[1 - baseIndex]; // default is start
-
- stepPoints.push(stepPt);
- }
- } // Last points
-
-
- points[i] && stepPoints.push(points[i]);
- return stepPoints;
- }
-
- function getVisualGradient(data, coordSys) {
- var visualMetaList = data.getVisual('visualMeta');
-
- if (!visualMetaList || !visualMetaList.length || !data.count()) {
- // When data.count() is 0, gradient range can not be calculated.
- return;
- }
-
- if (coordSys.type !== 'cartesian2d') {
- return;
- }
-
- var coordDim;
- var visualMeta;
-
- for (var i = visualMetaList.length - 1; i >= 0; i--) {
- var dimIndex = visualMetaList[i].dimension;
- var dimName = data.dimensions[dimIndex];
- var dimInfo = data.getDimensionInfo(dimName);
- coordDim = dimInfo && dimInfo.coordDim; // Can only be x or y
-
- if (coordDim === 'x' || coordDim === 'y') {
- visualMeta = visualMetaList[i];
- break;
- }
- }
-
- if (!visualMeta) {
- return;
- } // If the area to be rendered is bigger than area defined by LinearGradient,
- // the canvas spec prescribes that the color of the first stop and the last
- // stop should be used. But if two stops are added at offset 0, in effect
- // browsers use the color of the second stop to render area outside
- // LinearGradient. So we can only infinitesimally extend area defined in
- // LinearGradient to render `outerColors`.
-
-
- var axis = coordSys.getAxis(coordDim); // dataToCoor mapping may not be linear, but must be monotonic.
-
- var colorStops = zrUtil.map(visualMeta.stops, function (stop) {
- return {
- coord: axis.toGlobalCoord(axis.dataToCoord(stop.value)),
- color: stop.color
- };
- });
- var stopLen = colorStops.length;
- var outerColors = visualMeta.outerColors.slice();
-
- if (stopLen && colorStops[0].coord > colorStops[stopLen - 1].coord) {
- colorStops.reverse();
- outerColors.reverse();
- }
-
- var tinyExtent = 10; // Arbitrary value: 10px
-
- var minCoord = colorStops[0].coord - tinyExtent;
- var maxCoord = colorStops[stopLen - 1].coord + tinyExtent;
- var coordSpan = maxCoord - minCoord;
-
- if (coordSpan < 1e-3) {
- return 'transparent';
- }
-
- zrUtil.each(colorStops, function (stop) {
- stop.offset = (stop.coord - minCoord) / coordSpan;
- });
- colorStops.push({
- offset: stopLen ? colorStops[stopLen - 1].offset : 0.5,
- color: outerColors[1] || 'transparent'
- });
- colorStops.unshift({
- // notice colorStops.length have been changed.
- offset: stopLen ? colorStops[0].offset : 0.5,
- color: outerColors[0] || 'transparent'
- }); // zrUtil.each(colorStops, function (colorStop) {
- // // Make sure each offset has rounded px to avoid not sharp edge
- // colorStop.offset = (Math.round(colorStop.offset * (end - start) + start) - start) / (end - start);
- // });
-
- var gradient = new graphic.LinearGradient(0, 0, 0, 0, colorStops, true);
- gradient[coordDim] = minCoord;
- gradient[coordDim + '2'] = maxCoord;
- return gradient;
- }
-
- function getIsIgnoreFunc(seriesModel, data, coordSys) {
- var showAllSymbol = seriesModel.get('showAllSymbol');
- var isAuto = showAllSymbol === 'auto';
-
- if (showAllSymbol && !isAuto) {
- return;
- }
-
- var categoryAxis = coordSys.getAxesByScale('ordinal')[0];
-
- if (!categoryAxis) {
- return;
- } // Note that category label interval strategy might bring some weird effect
- // in some scenario: users may wonder why some of the symbols are not
- // displayed. So we show all symbols as possible as we can.
-
-
- if (isAuto // Simplify the logic, do not determine label overlap here.
- && canShowAllSymbolForCategory(categoryAxis, data)) {
- return;
- } // Otherwise follow the label interval strategy on category axis.
-
-
- var categoryDataDim = data.mapDimension(categoryAxis.dim);
- var labelMap = {};
- zrUtil.each(categoryAxis.getViewLabels(), function (labelItem) {
- labelMap[labelItem.tickValue] = 1;
- });
- return function (dataIndex) {
- return !labelMap.hasOwnProperty(data.get(categoryDataDim, dataIndex));
- };
- }
-
- function canShowAllSymbolForCategory(categoryAxis, data) {
- // In mose cases, line is monotonous on category axis, and the label size
- // is close with each other. So we check the symbol size and some of the
- // label size alone with the category axis to estimate whether all symbol
- // can be shown without overlap.
- var axisExtent = categoryAxis.getExtent();
- var availSize = Math.abs(axisExtent[1] - axisExtent[0]) / categoryAxis.scale.count();
- isNaN(availSize) && (availSize = 0); // 0/0 is NaN.
- // Sampling some points, max 5.
-
- var dataLen = data.count();
- var step = Math.max(1, Math.round(dataLen / 5));
-
- for (var dataIndex = 0; dataIndex < dataLen; dataIndex += step) {
- if (SymbolClz.getSymbolSize(data, dataIndex // Only for cartesian, where `isHorizontal` exists.
- )[categoryAxis.isHorizontal() ? 1 : 0] // Empirical number
- * 1.5 > availSize) {
- return false;
- }
- }
-
- return true;
- }
-
- function createLineClipPath(coordSys, hasAnimation, seriesModel) {
- if (coordSys.type === 'cartesian2d') {
- var isHorizontal = coordSys.getBaseAxis().isHorizontal();
- var clipPath = createGridClipPath(coordSys, hasAnimation, seriesModel); // Expand clip shape to avoid clipping when line value exceeds axis
-
- if (!seriesModel.get('clip', true)) {
- var rectShape = clipPath.shape;
- var expandSize = Math.max(rectShape.width, rectShape.height);
-
- if (isHorizontal) {
- rectShape.y -= expandSize;
- rectShape.height += expandSize * 2;
- } else {
- rectShape.x -= expandSize;
- rectShape.width += expandSize * 2;
- }
- }
-
- return clipPath;
- } else {
- return createPolarClipPath(coordSys, hasAnimation, seriesModel);
- }
- }
-
- var _default = ChartView.extend({
- type: 'line',
- init: function () {
- var lineGroup = new graphic.Group();
- var symbolDraw = new SymbolDraw();
- this.group.add(symbolDraw.group);
- this._symbolDraw = symbolDraw;
- this._lineGroup = lineGroup;
- },
- render: function (seriesModel, ecModel, api) {
- var coordSys = seriesModel.coordinateSystem;
- var group = this.group;
- var data = seriesModel.getData();
- var lineStyleModel = seriesModel.getModel('lineStyle');
- var areaStyleModel = seriesModel.getModel('areaStyle');
- var points = data.mapArray(data.getItemLayout);
- var isCoordSysPolar = coordSys.type === 'polar';
- var prevCoordSys = this._coordSys;
- var symbolDraw = this._symbolDraw;
- var polyline = this._polyline;
- var polygon = this._polygon;
- var lineGroup = this._lineGroup;
- var hasAnimation = seriesModel.get('animation');
- var isAreaChart = !areaStyleModel.isEmpty();
- var valueOrigin = areaStyleModel.get('origin');
- var dataCoordInfo = prepareDataCoordInfo(coordSys, data, valueOrigin);
- var stackedOnPoints = getStackedOnPoints(coordSys, data, dataCoordInfo);
- var showSymbol = seriesModel.get('showSymbol');
- var isIgnoreFunc = showSymbol && !isCoordSysPolar && getIsIgnoreFunc(seriesModel, data, coordSys); // Remove temporary symbols
-
- var oldData = this._data;
- oldData && oldData.eachItemGraphicEl(function (el, idx) {
- if (el.__temp) {
- group.remove(el);
- oldData.setItemGraphicEl(idx, null);
- }
- }); // Remove previous created symbols if showSymbol changed to false
-
- if (!showSymbol) {
- symbolDraw.remove();
- }
-
- group.add(lineGroup); // FIXME step not support polar
-
- var step = !isCoordSysPolar && seriesModel.get('step');
- var clipShapeForSymbol;
-
- if (coordSys && coordSys.getArea && seriesModel.get('clip', true)) {
- clipShapeForSymbol = coordSys.getArea(); // Avoid float number rounding error for symbol on the edge of axis extent.
- // See #7913 and `test/dataZoom-clip.html`.
-
- if (clipShapeForSymbol.width != null) {
- clipShapeForSymbol.x -= 0.1;
- clipShapeForSymbol.y -= 0.1;
- clipShapeForSymbol.width += 0.2;
- clipShapeForSymbol.height += 0.2;
- } else if (clipShapeForSymbol.r0) {
- clipShapeForSymbol.r0 -= 0.5;
- clipShapeForSymbol.r1 += 0.5;
- }
- }
-
- this._clipShapeForSymbol = clipShapeForSymbol; // Initialization animation or coordinate system changed
-
- if (!(polyline && prevCoordSys.type === coordSys.type && step === this._step)) {
- showSymbol && symbolDraw.updateData(data, {
- isIgnore: isIgnoreFunc,
- clipShape: clipShapeForSymbol
- });
-
- if (step) {
- // TODO If stacked series is not step
- points = turnPointsIntoStep(points, coordSys, step);
- stackedOnPoints = turnPointsIntoStep(stackedOnPoints, coordSys, step);
- }
-
- polyline = this._newPolyline(points, coordSys, hasAnimation);
-
- if (isAreaChart) {
- polygon = this._newPolygon(points, stackedOnPoints, coordSys, hasAnimation);
- }
-
- lineGroup.setClipPath(createLineClipPath(coordSys, true, seriesModel));
- } else {
- if (isAreaChart && !polygon) {
- // If areaStyle is added
- polygon = this._newPolygon(points, stackedOnPoints, coordSys, hasAnimation);
- } else if (polygon && !isAreaChart) {
- // If areaStyle is removed
- lineGroup.remove(polygon);
- polygon = this._polygon = null;
- } // Update clipPath
-
-
- lineGroup.setClipPath(createLineClipPath(coordSys, false, seriesModel)); // Always update, or it is wrong in the case turning on legend
- // because points are not changed
-
- showSymbol && symbolDraw.updateData(data, {
- isIgnore: isIgnoreFunc,
- clipShape: clipShapeForSymbol
- }); // Stop symbol animation and sync with line points
- // FIXME performance?
-
- data.eachItemGraphicEl(function (el) {
- el.stopAnimation(true);
- }); // In the case data zoom triggerred refreshing frequently
- // Data may not change if line has a category axis. So it should animate nothing
-
- if (!isPointsSame(this._stackedOnPoints, stackedOnPoints) || !isPointsSame(this._points, points)) {
- if (hasAnimation) {
- this._updateAnimation(data, stackedOnPoints, coordSys, api, step, valueOrigin);
- } else {
- // Not do it in update with animation
- if (step) {
- // TODO If stacked series is not step
- points = turnPointsIntoStep(points, coordSys, step);
- stackedOnPoints = turnPointsIntoStep(stackedOnPoints, coordSys, step);
- }
-
- polyline.setShape({
- points: points
- });
- polygon && polygon.setShape({
- points: points,
- stackedOnPoints: stackedOnPoints
- });
- }
- }
- }
-
- var visualColor = getVisualGradient(data, coordSys) || data.getVisual('color');
- polyline.useStyle(zrUtil.defaults( // Use color in lineStyle first
- lineStyleModel.getLineStyle(), {
- fill: 'none',
- stroke: visualColor,
- lineJoin: 'bevel'
- }));
- var smooth = seriesModel.get('smooth');
- smooth = getSmooth(seriesModel.get('smooth'));
- polyline.setShape({
- smooth: smooth,
- smoothMonotone: seriesModel.get('smoothMonotone'),
- connectNulls: seriesModel.get('connectNulls')
- });
-
- if (polygon) {
- var stackedOnSeries = data.getCalculationInfo('stackedOnSeries');
- var stackedOnSmooth = 0;
- polygon.useStyle(zrUtil.defaults(areaStyleModel.getAreaStyle(), {
- fill: visualColor,
- opacity: 0.7,
- lineJoin: 'bevel'
- }));
-
- if (stackedOnSeries) {
- stackedOnSmooth = getSmooth(stackedOnSeries.get('smooth'));
- }
-
- polygon.setShape({
- smooth: smooth,
- stackedOnSmooth: stackedOnSmooth,
- smoothMonotone: seriesModel.get('smoothMonotone'),
- connectNulls: seriesModel.get('connectNulls')
- });
- }
-
- this._data = data; // Save the coordinate system for transition animation when data changed
-
- this._coordSys = coordSys;
- this._stackedOnPoints = stackedOnPoints;
- this._points = points;
- this._step = step;
- this._valueOrigin = valueOrigin;
- },
- dispose: function () {},
- highlight: function (seriesModel, ecModel, api, payload) {
- var data = seriesModel.getData();
- var dataIndex = modelUtil.queryDataIndex(data, payload);
-
- if (!(dataIndex instanceof Array) && dataIndex != null && dataIndex >= 0) {
- var symbol = data.getItemGraphicEl(dataIndex);
-
- if (!symbol) {
- // Create a temporary symbol if it is not exists
- var pt = data.getItemLayout(dataIndex);
-
- if (!pt) {
- // Null data
- return;
- } // fix #11360: should't draw symbol outside clipShapeForSymbol
-
-
- if (this._clipShapeForSymbol && !this._clipShapeForSymbol.contain(pt[0], pt[1])) {
- return;
- }
-
- symbol = new SymbolClz(data, dataIndex);
- symbol.position = pt;
- symbol.setZ(seriesModel.get('zlevel'), seriesModel.get('z'));
- symbol.ignore = isNaN(pt[0]) || isNaN(pt[1]);
- symbol.__temp = true;
- data.setItemGraphicEl(dataIndex, symbol); // Stop scale animation
-
- symbol.stopSymbolAnimation(true);
- this.group.add(symbol);
- }
-
- symbol.highlight();
- } else {
- // Highlight whole series
- ChartView.prototype.highlight.call(this, seriesModel, ecModel, api, payload);
- }
- },
- downplay: function (seriesModel, ecModel, api, payload) {
- var data = seriesModel.getData();
- var dataIndex = modelUtil.queryDataIndex(data, payload);
-
- if (dataIndex != null && dataIndex >= 0) {
- var symbol = data.getItemGraphicEl(dataIndex);
-
- if (symbol) {
- if (symbol.__temp) {
- data.setItemGraphicEl(dataIndex, null);
- this.group.remove(symbol);
- } else {
- symbol.downplay();
- }
- }
- } else {
- // FIXME
- // can not downplay completely.
- // Downplay whole series
- ChartView.prototype.downplay.call(this, seriesModel, ecModel, api, payload);
- }
- },
-
- /**
- * @param {module:zrender/container/Group} group
- * @param {Array.<Array.<number>>} points
- * @private
- */
- _newPolyline: function (points) {
- var polyline = this._polyline; // Remove previous created polyline
-
- if (polyline) {
- this._lineGroup.remove(polyline);
- }
-
- polyline = new Polyline({
- shape: {
- points: points
- },
- silent: true,
- z2: 10
- });
-
- this._lineGroup.add(polyline);
-
- this._polyline = polyline;
- return polyline;
- },
-
- /**
- * @param {module:zrender/container/Group} group
- * @param {Array.<Array.<number>>} stackedOnPoints
- * @param {Array.<Array.<number>>} points
- * @private
- */
- _newPolygon: function (points, stackedOnPoints) {
- var polygon = this._polygon; // Remove previous created polygon
-
- if (polygon) {
- this._lineGroup.remove(polygon);
- }
-
- polygon = new Polygon({
- shape: {
- points: points,
- stackedOnPoints: stackedOnPoints
- },
- silent: true
- });
-
- this._lineGroup.add(polygon);
-
- this._polygon = polygon;
- return polygon;
- },
-
- /**
- * @private
- */
- // FIXME Two value axis
- _updateAnimation: function (data, stackedOnPoints, coordSys, api, step, valueOrigin) {
- var polyline = this._polyline;
- var polygon = this._polygon;
- var seriesModel = data.hostModel;
- var diff = lineAnimationDiff(this._data, data, this._stackedOnPoints, stackedOnPoints, this._coordSys, coordSys, this._valueOrigin, valueOrigin);
- var current = diff.current;
- var stackedOnCurrent = diff.stackedOnCurrent;
- var next = diff.next;
- var stackedOnNext = diff.stackedOnNext;
-
- if (step) {
- // TODO If stacked series is not step
- current = turnPointsIntoStep(diff.current, coordSys, step);
- stackedOnCurrent = turnPointsIntoStep(diff.stackedOnCurrent, coordSys, step);
- next = turnPointsIntoStep(diff.next, coordSys, step);
- stackedOnNext = turnPointsIntoStep(diff.stackedOnNext, coordSys, step);
- } // `diff.current` is subset of `current` (which should be ensured by
- // turnPointsIntoStep), so points in `__points` can be updated when
- // points in `current` are update during animation.
-
-
- polyline.shape.__points = diff.current;
- polyline.shape.points = current;
- graphic.updateProps(polyline, {
- shape: {
- points: next
- }
- }, seriesModel);
-
- if (polygon) {
- polygon.setShape({
- points: current,
- stackedOnPoints: stackedOnCurrent
- });
- graphic.updateProps(polygon, {
- shape: {
- points: next,
- stackedOnPoints: stackedOnNext
- }
- }, seriesModel);
- }
-
- var updatedDataInfo = [];
- var diffStatus = diff.status;
-
- for (var i = 0; i < diffStatus.length; i++) {
- var cmd = diffStatus[i].cmd;
-
- if (cmd === '=') {
- var el = data.getItemGraphicEl(diffStatus[i].idx1);
-
- if (el) {
- updatedDataInfo.push({
- el: el,
- ptIdx: i // Index of points
-
- });
- }
- }
- }
-
- if (polyline.animators && polyline.animators.length) {
- polyline.animators[0].during(function () {
- for (var i = 0; i < updatedDataInfo.length; i++) {
- var el = updatedDataInfo[i].el;
- el.attr('position', polyline.shape.__points[updatedDataInfo[i].ptIdx]);
- }
- });
- }
- },
- remove: function (ecModel) {
- var group = this.group;
- var oldData = this._data;
-
- this._lineGroup.removeAll();
-
- this._symbolDraw.remove(true); // Remove temporary created elements when highlighting
-
-
- oldData && oldData.eachItemGraphicEl(function (el, idx) {
- if (el.__temp) {
- group.remove(el);
- oldData.setItemGraphicEl(idx, null);
- }
- });
- this._polyline = this._polygon = this._coordSys = this._points = this._stackedOnPoints = this._data = null;
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2557:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _helper = __webpack_require__(2292);
-
- var prepareDataCoordInfo = _helper.prepareDataCoordInfo;
- var getStackedOnPoint = _helper.getStackedOnPoint;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // var arrayDiff = require('zrender/src/core/arrayDiff');
- // 'zrender/src/core/arrayDiff' has been used before, but it did
- // not do well in performance when roam with fixed dataZoom window.
- // function convertToIntId(newIdList, oldIdList) {
- // // Generate int id instead of string id.
- // // Compare string maybe slow in score function of arrDiff
- // // Assume id in idList are all unique
- // var idIndicesMap = {};
- // var idx = 0;
- // for (var i = 0; i < newIdList.length; i++) {
- // idIndicesMap[newIdList[i]] = idx;
- // newIdList[i] = idx++;
- // }
- // for (var i = 0; i < oldIdList.length; i++) {
- // var oldId = oldIdList[i];
- // // Same with newIdList
- // if (idIndicesMap[oldId]) {
- // oldIdList[i] = idIndicesMap[oldId];
- // }
- // else {
- // oldIdList[i] = idx++;
- // }
- // }
- // }
- function diffData(oldData, newData) {
- var diffResult = [];
- newData.diff(oldData).add(function (idx) {
- diffResult.push({
- cmd: '+',
- idx: idx
- });
- }).update(function (newIdx, oldIdx) {
- diffResult.push({
- cmd: '=',
- idx: oldIdx,
- idx1: newIdx
- });
- }).remove(function (idx) {
- diffResult.push({
- cmd: '-',
- idx: idx
- });
- }).execute();
- return diffResult;
- }
-
- function _default(oldData, newData, oldStackedOnPoints, newStackedOnPoints, oldCoordSys, newCoordSys, oldValueOrigin, newValueOrigin) {
- var diff = diffData(oldData, newData); // var newIdList = newData.mapArray(newData.getId);
- // var oldIdList = oldData.mapArray(oldData.getId);
- // convertToIntId(newIdList, oldIdList);
- // // FIXME One data ?
- // diff = arrayDiff(oldIdList, newIdList);
-
- var currPoints = [];
- var nextPoints = []; // Points for stacking base line
-
- var currStackedPoints = [];
- var nextStackedPoints = [];
- var status = [];
- var sortedIndices = [];
- var rawIndices = [];
- var newDataOldCoordInfo = prepareDataCoordInfo(oldCoordSys, newData, oldValueOrigin);
- var oldDataNewCoordInfo = prepareDataCoordInfo(newCoordSys, oldData, newValueOrigin);
-
- for (var i = 0; i < diff.length; i++) {
- var diffItem = diff[i];
- var pointAdded = true; // FIXME, animation is not so perfect when dataZoom window moves fast
- // Which is in case remvoing or add more than one data in the tail or head
-
- switch (diffItem.cmd) {
- case '=':
- var currentPt = oldData.getItemLayout(diffItem.idx);
- var nextPt = newData.getItemLayout(diffItem.idx1); // If previous data is NaN, use next point directly
-
- if (isNaN(currentPt[0]) || isNaN(currentPt[1])) {
- currentPt = nextPt.slice();
- }
-
- currPoints.push(currentPt);
- nextPoints.push(nextPt);
- currStackedPoints.push(oldStackedOnPoints[diffItem.idx]);
- nextStackedPoints.push(newStackedOnPoints[diffItem.idx1]);
- rawIndices.push(newData.getRawIndex(diffItem.idx1));
- break;
-
- case '+':
- var idx = diffItem.idx;
- currPoints.push(oldCoordSys.dataToPoint([newData.get(newDataOldCoordInfo.dataDimsForPoint[0], idx), newData.get(newDataOldCoordInfo.dataDimsForPoint[1], idx)]));
- nextPoints.push(newData.getItemLayout(idx).slice());
- currStackedPoints.push(getStackedOnPoint(newDataOldCoordInfo, oldCoordSys, newData, idx));
- nextStackedPoints.push(newStackedOnPoints[idx]);
- rawIndices.push(newData.getRawIndex(idx));
- break;
-
- case '-':
- var idx = diffItem.idx;
- var rawIndex = oldData.getRawIndex(idx); // Data is replaced. In the case of dynamic data queue
- // FIXME FIXME FIXME
-
- if (rawIndex !== idx) {
- currPoints.push(oldData.getItemLayout(idx));
- nextPoints.push(newCoordSys.dataToPoint([oldData.get(oldDataNewCoordInfo.dataDimsForPoint[0], idx), oldData.get(oldDataNewCoordInfo.dataDimsForPoint[1], idx)]));
- currStackedPoints.push(oldStackedOnPoints[idx]);
- nextStackedPoints.push(getStackedOnPoint(oldDataNewCoordInfo, newCoordSys, oldData, idx));
- rawIndices.push(rawIndex);
- } else {
- pointAdded = false;
- }
-
- } // Original indices
-
-
- if (pointAdded) {
- status.push(diffItem);
- sortedIndices.push(sortedIndices.length);
- }
- } // Diff result may be crossed if all items are changed
- // Sort by data index
-
-
- sortedIndices.sort(function (a, b) {
- return rawIndices[a] - rawIndices[b];
- });
- var sortedCurrPoints = [];
- var sortedNextPoints = [];
- var sortedCurrStackedPoints = [];
- var sortedNextStackedPoints = [];
- var sortedStatus = [];
-
- for (var i = 0; i < sortedIndices.length; i++) {
- var idx = sortedIndices[i];
- sortedCurrPoints[i] = currPoints[idx];
- sortedNextPoints[i] = nextPoints[idx];
- sortedCurrStackedPoints[i] = currStackedPoints[idx];
- sortedNextStackedPoints[i] = nextStackedPoints[idx];
- sortedStatus[i] = status[idx];
- }
-
- return {
- current: sortedCurrPoints,
- next: sortedNextPoints,
- stackedOnCurrent: sortedCurrStackedPoints,
- stackedOnNext: sortedNextStackedPoints,
- status: sortedStatus
- };
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2558:
- /***/ (function(module, exports) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var samplers = {
- average: function (frame) {
- var sum = 0;
- var count = 0;
-
- for (var i = 0; i < frame.length; i++) {
- if (!isNaN(frame[i])) {
- sum += frame[i];
- count++;
- }
- } // Return NaN if count is 0
-
-
- return count === 0 ? NaN : sum / count;
- },
- sum: function (frame) {
- var sum = 0;
-
- for (var i = 0; i < frame.length; i++) {
- // Ignore NaN
- sum += frame[i] || 0;
- }
-
- return sum;
- },
- max: function (frame) {
- var max = -Infinity;
-
- for (var i = 0; i < frame.length; i++) {
- frame[i] > max && (max = frame[i]);
- } // NaN will cause illegal axis extent.
-
-
- return isFinite(max) ? max : NaN;
- },
- min: function (frame) {
- var min = Infinity;
-
- for (var i = 0; i < frame.length; i++) {
- frame[i] < min && (min = frame[i]);
- } // NaN will cause illegal axis extent.
-
-
- return isFinite(min) ? min : NaN;
- },
- // TODO
- // Median
- nearest: function (frame) {
- return frame[0];
- }
- };
-
- var indexSampler = function (frame, value) {
- return Math.round(frame.length / 2);
- };
-
- function _default(seriesType) {
- return {
- seriesType: seriesType,
- modifyOutputEnd: true,
- reset: function (seriesModel, ecModel, api) {
- var data = seriesModel.getData();
- var sampling = seriesModel.get('sampling');
- var coordSys = seriesModel.coordinateSystem; // Only cartesian2d support down sampling
-
- if (coordSys.type === 'cartesian2d' && sampling) {
- var baseAxis = coordSys.getBaseAxis();
- var valueAxis = coordSys.getOtherAxis(baseAxis);
- var extent = baseAxis.getExtent(); // Coordinste system has been resized
-
- var size = extent[1] - extent[0];
- var rate = Math.round(data.count() / size);
-
- if (rate > 1) {
- var sampler;
-
- if (typeof sampling === 'string') {
- sampler = samplers[sampling];
- } else if (typeof sampling === 'function') {
- sampler = sampling;
- }
-
- if (sampler) {
- // Only support sample the first dim mapped from value axis.
- seriesModel.setData(data.downSample(data.mapDimension(valueAxis.dim), 1 / rate, sampler, indexSampler));
- }
- }
- }
- }
- };
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2559:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var BoundingRect = __webpack_require__(1185);
-
- var Cartesian = __webpack_require__(2560);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function Cartesian2D(name) {
- Cartesian.call(this, name);
- }
-
- Cartesian2D.prototype = {
- constructor: Cartesian2D,
- type: 'cartesian2d',
-
- /**
- * @type {Array.<string>}
- * @readOnly
- */
- dimensions: ['x', 'y'],
-
- /**
- * Base axis will be used on stacking.
- *
- * @return {module:echarts/coord/cartesian/Axis2D}
- */
- getBaseAxis: function () {
- return this.getAxesByScale('ordinal')[0] || this.getAxesByScale('time')[0] || this.getAxis('x');
- },
-
- /**
- * If contain point
- * @param {Array.<number>} point
- * @return {boolean}
- */
- containPoint: function (point) {
- var axisX = this.getAxis('x');
- var axisY = this.getAxis('y');
- return axisX.contain(axisX.toLocalCoord(point[0])) && axisY.contain(axisY.toLocalCoord(point[1]));
- },
-
- /**
- * If contain data
- * @param {Array.<number>} data
- * @return {boolean}
- */
- containData: function (data) {
- return this.getAxis('x').containData(data[0]) && this.getAxis('y').containData(data[1]);
- },
-
- /**
- * @param {Array.<number>} data
- * @param {Array.<number>} out
- * @return {Array.<number>}
- */
- dataToPoint: function (data, reserved, out) {
- var xAxis = this.getAxis('x');
- var yAxis = this.getAxis('y');
- out = out || [];
- out[0] = xAxis.toGlobalCoord(xAxis.dataToCoord(data[0]));
- out[1] = yAxis.toGlobalCoord(yAxis.dataToCoord(data[1]));
- return out;
- },
-
- /**
- * @param {Array.<number>} data
- * @param {Array.<number>} out
- * @return {Array.<number>}
- */
- clampData: function (data, out) {
- var xScale = this.getAxis('x').scale;
- var yScale = this.getAxis('y').scale;
- var xAxisExtent = xScale.getExtent();
- var yAxisExtent = yScale.getExtent();
- var x = xScale.parse(data[0]);
- var y = yScale.parse(data[1]);
- out = out || [];
- out[0] = Math.min(Math.max(Math.min(xAxisExtent[0], xAxisExtent[1]), x), Math.max(xAxisExtent[0], xAxisExtent[1]));
- out[1] = Math.min(Math.max(Math.min(yAxisExtent[0], yAxisExtent[1]), y), Math.max(yAxisExtent[0], yAxisExtent[1]));
- return out;
- },
-
- /**
- * @param {Array.<number>} point
- * @param {Array.<number>} out
- * @return {Array.<number>}
- */
- pointToData: function (point, out) {
- var xAxis = this.getAxis('x');
- var yAxis = this.getAxis('y');
- out = out || [];
- out[0] = xAxis.coordToData(xAxis.toLocalCoord(point[0]));
- out[1] = yAxis.coordToData(yAxis.toLocalCoord(point[1]));
- return out;
- },
-
- /**
- * Get other axis
- * @param {module:echarts/coord/cartesian/Axis2D} axis
- */
- getOtherAxis: function (axis) {
- return this.getAxis(axis.dim === 'x' ? 'y' : 'x');
- },
-
- /**
- * Get rect area of cartesian.
- * Area will have a contain function to determine if a point is in the coordinate system.
- * @return {BoundingRect}
- */
- getArea: function () {
- var xExtent = this.getAxis('x').getGlobalExtent();
- var yExtent = this.getAxis('y').getGlobalExtent();
- var x = Math.min(xExtent[0], xExtent[1]);
- var y = Math.min(yExtent[0], yExtent[1]);
- var width = Math.max(xExtent[0], xExtent[1]) - x;
- var height = Math.max(yExtent[0], yExtent[1]) - y;
- var rect = new BoundingRect(x, y, width, height);
- return rect;
- }
- };
- zrUtil.inherits(Cartesian2D, Cartesian);
- var _default = Cartesian2D;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2560:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Cartesian coordinate system
- * @module echarts/coord/Cartesian
- *
- */
- function dimAxisMapper(dim) {
- return this._axes[dim];
- }
- /**
- * @alias module:echarts/coord/Cartesian
- * @constructor
- */
-
-
- var Cartesian = function (name) {
- this._axes = {};
- this._dimList = [];
- /**
- * @type {string}
- */
-
- this.name = name || '';
- };
-
- Cartesian.prototype = {
- constructor: Cartesian,
- type: 'cartesian',
-
- /**
- * Get axis
- * @param {number|string} dim
- * @return {module:echarts/coord/Cartesian~Axis}
- */
- getAxis: function (dim) {
- return this._axes[dim];
- },
-
- /**
- * Get axes list
- * @return {Array.<module:echarts/coord/Cartesian~Axis>}
- */
- getAxes: function () {
- return zrUtil.map(this._dimList, dimAxisMapper, this);
- },
-
- /**
- * Get axes list by given scale type
- */
- getAxesByScale: function (scaleType) {
- scaleType = scaleType.toLowerCase();
- return zrUtil.filter(this.getAxes(), function (axis) {
- return axis.scale.type === scaleType;
- });
- },
-
- /**
- * Add axis
- * @param {module:echarts/coord/Cartesian.Axis}
- */
- addAxis: function (axis) {
- var dim = axis.dim;
- this._axes[dim] = axis;
-
- this._dimList.push(dim);
- },
-
- /**
- * Convert data to coord in nd space
- * @param {Array.<number>|Object.<string, number>} val
- * @return {Array.<number>|Object.<string, number>}
- */
- dataToCoord: function (val) {
- return this._dataCoordConvert(val, 'dataToCoord');
- },
-
- /**
- * Convert coord in nd space to data
- * @param {Array.<number>|Object.<string, number>} val
- * @return {Array.<number>|Object.<string, number>}
- */
- coordToData: function (val) {
- return this._dataCoordConvert(val, 'coordToData');
- },
- _dataCoordConvert: function (input, method) {
- var dimList = this._dimList;
- var output = input instanceof Array ? [] : {};
-
- for (var i = 0; i < dimList.length; i++) {
- var dim = dimList[i];
- var axis = this._axes[dim];
- output[dim] = axis[method](input[dim]);
- }
-
- return output;
- }
- };
- var _default = Cartesian;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2561:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var Axis = __webpack_require__(1484);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Extend axis 2d
- * @constructor module:echarts/coord/cartesian/Axis2D
- * @extends {module:echarts/coord/cartesian/Axis}
- * @param {string} dim
- * @param {*} scale
- * @param {Array.<number>} coordExtent
- * @param {string} axisType
- * @param {string} position
- */
- var Axis2D = function (dim, scale, coordExtent, axisType, position) {
- Axis.call(this, dim, scale, coordExtent);
- /**
- * Axis type
- * - 'category'
- * - 'value'
- * - 'time'
- * - 'log'
- * @type {string}
- */
-
- this.type = axisType || 'value';
- /**
- * Axis position
- * - 'top'
- * - 'bottom'
- * - 'left'
- * - 'right'
- */
-
- this.position = position || 'bottom';
- };
-
- Axis2D.prototype = {
- constructor: Axis2D,
-
- /**
- * Index of axis, can be used as key
- */
- index: 0,
-
- /**
- * Implemented in <module:echarts/coord/cartesian/Grid>.
- * @return {Array.<module:echarts/coord/cartesian/Axis2D>}
- * If not on zero of other axis, return null/undefined.
- * If no axes, return an empty array.
- */
- getAxesOnZeroOf: null,
-
- /**
- * Axis model
- * @param {module:echarts/coord/cartesian/AxisModel}
- */
- model: null,
- isHorizontal: function () {
- var position = this.position;
- return position === 'top' || position === 'bottom';
- },
-
- /**
- * Each item cooresponds to this.getExtent(), which
- * means globalExtent[0] may greater than globalExtent[1],
- * unless `asc` is input.
- *
- * @param {boolean} [asc]
- * @return {Array.<number>}
- */
- getGlobalExtent: function (asc) {
- var ret = this.getExtent();
- ret[0] = this.toGlobalCoord(ret[0]);
- ret[1] = this.toGlobalCoord(ret[1]);
- asc && ret[0] > ret[1] && ret.reverse();
- return ret;
- },
- getOtherAxis: function () {
- this.grid.getOtherAxis();
- },
-
- /**
- * @override
- */
- pointToData: function (point, clamp) {
- return this.coordToData(this.toLocalCoord(point[this.dim === 'x' ? 0 : 1]), clamp);
- },
-
- /**
- * Transform global coord to local coord,
- * i.e. var localCoord = axis.toLocalCoord(80);
- * designate by module:echarts/coord/cartesian/Grid.
- * @type {Function}
- */
- toLocalCoord: null,
-
- /**
- * Transform global coord to local coord,
- * i.e. var globalCoord = axis.toLocalCoord(40);
- * designate by module:echarts/coord/cartesian/Grid.
- * @type {Function}
- */
- toGlobalCoord: null
- };
- zrUtil.inherits(Axis2D, Axis);
- var _default = Axis2D;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2562:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- __webpack_require__(2294);
-
- var ComponentModel = __webpack_require__(1321);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // Grid 是在有直角坐标系的时候必须要存在的
- // 所以这里也要被 Cartesian2D 依赖
- var _default = ComponentModel.extend({
- type: 'grid',
- dependencies: ['xAxis', 'yAxis'],
- layoutMode: 'box',
-
- /**
- * @type {module:echarts/coord/cartesian/Grid}
- */
- coordinateSystem: null,
- defaultOption: {
- show: false,
- zlevel: 0,
- z: 0,
- left: '10%',
- top: 60,
- right: '10%',
- bottom: 60,
- // If grid size contain label
- containLabel: false,
- // width: {totalWidth} - left - right,
- // height: {totalHeight} - top - bottom,
- backgroundColor: 'rgba(0,0,0,0)',
- borderWidth: 1,
- borderColor: '#ccc'
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2563:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- __webpack_require__(2294);
-
- __webpack_require__(2564);
-
- /***/ }),
-
- /***/ 2564:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var graphic = __webpack_require__(906);
-
- var AxisBuilder = __webpack_require__(1485);
-
- var AxisView = __webpack_require__(1521);
-
- var cartesianAxisHelper = __webpack_require__(2296);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var axisBuilderAttrs = ['axisLine', 'axisTickLabel', 'axisName'];
- var selfBuilderAttrs = ['splitArea', 'splitLine', 'minorSplitLine'];
- var CartesianAxisView = AxisView.extend({
- type: 'cartesianAxis',
- axisPointerClass: 'CartesianAxisPointer',
-
- /**
- * @override
- */
- render: function (axisModel, ecModel, api, payload) {
- this.group.removeAll();
- var oldAxisGroup = this._axisGroup;
- this._axisGroup = new graphic.Group();
- this.group.add(this._axisGroup);
-
- if (!axisModel.get('show')) {
- return;
- }
-
- var gridModel = axisModel.getCoordSysModel();
- var layout = cartesianAxisHelper.layout(gridModel, axisModel);
- var axisBuilder = new AxisBuilder(axisModel, layout);
- zrUtil.each(axisBuilderAttrs, axisBuilder.add, axisBuilder);
-
- this._axisGroup.add(axisBuilder.getGroup());
-
- zrUtil.each(selfBuilderAttrs, function (name) {
- if (axisModel.get(name + '.show')) {
- this['_' + name](axisModel, gridModel);
- }
- }, this);
- graphic.groupTransition(oldAxisGroup, this._axisGroup, axisModel);
- CartesianAxisView.superCall(this, 'render', axisModel, ecModel, api, payload);
- },
- remove: function () {
- this._splitAreaColors = null;
- },
-
- /**
- * @param {module:echarts/coord/cartesian/AxisModel} axisModel
- * @param {module:echarts/coord/cartesian/GridModel} gridModel
- * @private
- */
- _splitLine: function (axisModel, gridModel) {
- var axis = axisModel.axis;
-
- if (axis.scale.isBlank()) {
- return;
- }
-
- var splitLineModel = axisModel.getModel('splitLine');
- var lineStyleModel = splitLineModel.getModel('lineStyle');
- var lineColors = lineStyleModel.get('color');
- lineColors = zrUtil.isArray(lineColors) ? lineColors : [lineColors];
- var gridRect = gridModel.coordinateSystem.getRect();
- var isHorizontal = axis.isHorizontal();
- var lineCount = 0;
- var ticksCoords = axis.getTicksCoords({
- tickModel: splitLineModel
- });
- var p1 = [];
- var p2 = [];
- var lineStyle = lineStyleModel.getLineStyle();
-
- for (var i = 0; i < ticksCoords.length; i++) {
- var tickCoord = axis.toGlobalCoord(ticksCoords[i].coord);
-
- if (isHorizontal) {
- p1[0] = tickCoord;
- p1[1] = gridRect.y;
- p2[0] = tickCoord;
- p2[1] = gridRect.y + gridRect.height;
- } else {
- p1[0] = gridRect.x;
- p1[1] = tickCoord;
- p2[0] = gridRect.x + gridRect.width;
- p2[1] = tickCoord;
- }
-
- var colorIndex = lineCount++ % lineColors.length;
- var tickValue = ticksCoords[i].tickValue;
-
- this._axisGroup.add(new graphic.Line({
- anid: tickValue != null ? 'line_' + ticksCoords[i].tickValue : null,
- subPixelOptimize: true,
- shape: {
- x1: p1[0],
- y1: p1[1],
- x2: p2[0],
- y2: p2[1]
- },
- style: zrUtil.defaults({
- stroke: lineColors[colorIndex]
- }, lineStyle),
- silent: true
- }));
- }
- },
-
- /**
- * @param {module:echarts/coord/cartesian/AxisModel} axisModel
- * @param {module:echarts/coord/cartesian/GridModel} gridModel
- * @private
- */
- _minorSplitLine: function (axisModel, gridModel) {
- var axis = axisModel.axis;
- var minorSplitLineModel = axisModel.getModel('minorSplitLine');
- var lineStyleModel = minorSplitLineModel.getModel('lineStyle');
- var gridRect = gridModel.coordinateSystem.getRect();
- var isHorizontal = axis.isHorizontal();
- var minorTicksCoords = axis.getMinorTicksCoords();
-
- if (!minorTicksCoords.length) {
- return;
- }
-
- var p1 = [];
- var p2 = [];
- var lineStyle = lineStyleModel.getLineStyle();
-
- for (var i = 0; i < minorTicksCoords.length; i++) {
- for (var k = 0; k < minorTicksCoords[i].length; k++) {
- var tickCoord = axis.toGlobalCoord(minorTicksCoords[i][k].coord);
-
- if (isHorizontal) {
- p1[0] = tickCoord;
- p1[1] = gridRect.y;
- p2[0] = tickCoord;
- p2[1] = gridRect.y + gridRect.height;
- } else {
- p1[0] = gridRect.x;
- p1[1] = tickCoord;
- p2[0] = gridRect.x + gridRect.width;
- p2[1] = tickCoord;
- }
-
- this._axisGroup.add(new graphic.Line({
- anid: 'minor_line_' + minorTicksCoords[i][k].tickValue,
- subPixelOptimize: true,
- shape: {
- x1: p1[0],
- y1: p1[1],
- x2: p2[0],
- y2: p2[1]
- },
- style: lineStyle,
- silent: true
- }));
- }
- }
- },
-
- /**
- * @param {module:echarts/coord/cartesian/AxisModel} axisModel
- * @param {module:echarts/coord/cartesian/GridModel} gridModel
- * @private
- */
- _splitArea: function (axisModel, gridModel) {
- var axis = axisModel.axis;
-
- if (axis.scale.isBlank()) {
- return;
- }
-
- var splitAreaModel = axisModel.getModel('splitArea');
- var areaStyleModel = splitAreaModel.getModel('areaStyle');
- var areaColors = areaStyleModel.get('color');
- var gridRect = gridModel.coordinateSystem.getRect();
- var ticksCoords = axis.getTicksCoords({
- tickModel: splitAreaModel,
- clamp: true
- });
-
- if (!ticksCoords.length) {
- return;
- } // For Making appropriate splitArea animation, the color and anid
- // should be corresponding to previous one if possible.
-
-
- var areaColorsLen = areaColors.length;
- var lastSplitAreaColors = this._splitAreaColors;
- var newSplitAreaColors = zrUtil.createHashMap();
- var colorIndex = 0;
-
- if (lastSplitAreaColors) {
- for (var i = 0; i < ticksCoords.length; i++) {
- var cIndex = lastSplitAreaColors.get(ticksCoords[i].tickValue);
-
- if (cIndex != null) {
- colorIndex = (cIndex + (areaColorsLen - 1) * i) % areaColorsLen;
- break;
- }
- }
- }
-
- var prev = axis.toGlobalCoord(ticksCoords[0].coord);
- var areaStyle = areaStyleModel.getAreaStyle();
- areaColors = zrUtil.isArray(areaColors) ? areaColors : [areaColors];
-
- for (var i = 1; i < ticksCoords.length; i++) {
- var tickCoord = axis.toGlobalCoord(ticksCoords[i].coord);
- var x;
- var y;
- var width;
- var height;
-
- if (axis.isHorizontal()) {
- x = prev;
- y = gridRect.y;
- width = tickCoord - x;
- height = gridRect.height;
- prev = x + width;
- } else {
- x = gridRect.x;
- y = prev;
- width = gridRect.width;
- height = tickCoord - y;
- prev = y + height;
- }
-
- var tickValue = ticksCoords[i - 1].tickValue;
- tickValue != null && newSplitAreaColors.set(tickValue, colorIndex);
-
- this._axisGroup.add(new graphic.Rect({
- anid: tickValue != null ? 'area_' + tickValue : null,
- shape: {
- x: x,
- y: y,
- width: width,
- height: height
- },
- style: zrUtil.defaults({
- fill: areaColors[colorIndex]
- }, areaStyle),
- silent: true
- }));
-
- colorIndex = (colorIndex + 1) % areaColorsLen;
- }
-
- this._splitAreaColors = newSplitAreaColors;
- }
- });
- CartesianAxisView.extend({
- type: 'xAxis'
- });
- CartesianAxisView.extend({
- type: 'yAxis'
- });
-
- /***/ }),
-
- /***/ 2565:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var _barGrid = __webpack_require__(1789);
-
- var layout = _barGrid.layout;
- var largeLayout = _barGrid.largeLayout;
-
- __webpack_require__(1905);
-
- __webpack_require__(2566);
-
- __webpack_require__(2567);
-
- __webpack_require__(1664);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // In case developer forget to include grid component
- echarts.registerLayout(echarts.PRIORITY.VISUAL.LAYOUT, zrUtil.curry(layout, 'bar')); // Use higher prority to avoid to be blocked by other overall layout, which do not
- // only exist in this module, but probably also exist in other modules, like `barPolar`.
-
- echarts.registerLayout(echarts.PRIORITY.VISUAL.PROGRESSIVE_LAYOUT, largeLayout);
- echarts.registerVisual({
- seriesType: 'bar',
- reset: function (seriesModel) {
- // Visual coding for legend
- seriesModel.getData().setVisual('legendSymbol', 'roundRect');
- }
- });
-
- /***/ }),
-
- /***/ 2566:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var BaseBarSeries = __webpack_require__(2297);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = BaseBarSeries.extend({
- type: 'series.bar',
- dependencies: ['grid', 'polar'],
- brushSelector: 'rect',
-
- /**
- * @override
- */
- getProgressive: function () {
- // Do not support progressive in normal mode.
- return this.get('large') ? this.get('progressive') : false;
- },
-
- /**
- * @override
- */
- getProgressiveThreshold: function () {
- // Do not support progressive in normal mode.
- var progressiveThreshold = this.get('progressiveThreshold');
- var largeThreshold = this.get('largeThreshold');
-
- if (largeThreshold > progressiveThreshold) {
- progressiveThreshold = largeThreshold;
- }
-
- return progressiveThreshold;
- },
- defaultOption: {
- // If clipped
- // Only available on cartesian2d
- clip: true,
- // If use caps on two sides of bars
- // Only available on tangential polar bar
- roundCap: false
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2567:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var graphic = __webpack_require__(906);
-
- var _helper = __webpack_require__(2298);
-
- var setLabel = _helper.setLabel;
-
- var Model = __webpack_require__(1317);
-
- var barItemStyle = __webpack_require__(2568);
-
- var Path = __webpack_require__(1280);
-
- var _throttle = __webpack_require__(1482);
-
- var throttle = _throttle.throttle;
-
- var _createClipPathFromCoordSys = __webpack_require__(1662);
-
- var createClipPath = _createClipPathFromCoordSys.createClipPath;
-
- var Sausage = __webpack_require__(2569);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var BAR_BORDER_WIDTH_QUERY = ['itemStyle', 'barBorderWidth'];
- var _eventPos = [0, 0]; // FIXME
- // Just for compatible with ec2.
-
- zrUtil.extend(Model.prototype, barItemStyle);
-
- function getClipArea(coord, data) {
- var coordSysClipArea = coord.getArea && coord.getArea();
-
- if (coord.type === 'cartesian2d') {
- var baseAxis = coord.getBaseAxis(); // When boundaryGap is false or using time axis. bar may exceed the grid.
- // We should not clip this part.
- // See test/bar2.html
-
- if (baseAxis.type !== 'category' || !baseAxis.onBand) {
- var expandWidth = data.getLayout('bandWidth');
-
- if (baseAxis.isHorizontal()) {
- coordSysClipArea.x -= expandWidth;
- coordSysClipArea.width += expandWidth * 2;
- } else {
- coordSysClipArea.y -= expandWidth;
- coordSysClipArea.height += expandWidth * 2;
- }
- }
- }
-
- return coordSysClipArea;
- }
-
- var _default = echarts.extendChartView({
- type: 'bar',
- render: function (seriesModel, ecModel, api) {
- this._updateDrawMode(seriesModel);
-
- var coordinateSystemType = seriesModel.get('coordinateSystem');
-
- if (coordinateSystemType === 'cartesian2d' || coordinateSystemType === 'polar') {
- this._isLargeDraw ? this._renderLarge(seriesModel, ecModel, api) : this._renderNormal(seriesModel, ecModel, api);
- } else {}
-
- return this.group;
- },
- incrementalPrepareRender: function (seriesModel, ecModel, api) {
- this._clear();
-
- this._updateDrawMode(seriesModel);
- },
- incrementalRender: function (params, seriesModel, ecModel, api) {
- // Do not support progressive in normal mode.
- this._incrementalRenderLarge(params, seriesModel);
- },
- _updateDrawMode: function (seriesModel) {
- var isLargeDraw = seriesModel.pipelineContext.large;
-
- if (this._isLargeDraw == null || isLargeDraw ^ this._isLargeDraw) {
- this._isLargeDraw = isLargeDraw;
-
- this._clear();
- }
- },
- _renderNormal: function (seriesModel, ecModel, api) {
- var group = this.group;
- var data = seriesModel.getData();
- var oldData = this._data;
- var coord = seriesModel.coordinateSystem;
- var baseAxis = coord.getBaseAxis();
- var isHorizontalOrRadial;
-
- if (coord.type === 'cartesian2d') {
- isHorizontalOrRadial = baseAxis.isHorizontal();
- } else if (coord.type === 'polar') {
- isHorizontalOrRadial = baseAxis.dim === 'angle';
- }
-
- var animationModel = seriesModel.isAnimationEnabled() ? seriesModel : null;
- var needsClip = seriesModel.get('clip', true);
- var coordSysClipArea = getClipArea(coord, data); // If there is clipPath created in large mode. Remove it.
-
- group.removeClipPath(); // We don't use clipPath in normal mode because we needs a perfect animation
- // And don't want the label are clipped.
-
- var roundCap = seriesModel.get('roundCap', true);
- data.diff(oldData).add(function (dataIndex) {
- if (!data.hasValue(dataIndex)) {
- return;
- }
-
- var itemModel = data.getItemModel(dataIndex);
- var layout = getLayout[coord.type](data, dataIndex, itemModel);
-
- if (needsClip) {
- // Clip will modify the layout params.
- // And return a boolean to determine if the shape are fully clipped.
- var isClipped = clip[coord.type](coordSysClipArea, layout);
-
- if (isClipped) {
- group.remove(el);
- return;
- }
- }
-
- var el = elementCreator[coord.type](dataIndex, layout, isHorizontalOrRadial, animationModel, false, roundCap);
- data.setItemGraphicEl(dataIndex, el);
- group.add(el);
- updateStyle(el, data, dataIndex, itemModel, layout, seriesModel, isHorizontalOrRadial, coord.type === 'polar');
- }).update(function (newIndex, oldIndex) {
- var el = oldData.getItemGraphicEl(oldIndex);
-
- if (!data.hasValue(newIndex)) {
- group.remove(el);
- return;
- }
-
- var itemModel = data.getItemModel(newIndex);
- var layout = getLayout[coord.type](data, newIndex, itemModel);
-
- if (needsClip) {
- var isClipped = clip[coord.type](coordSysClipArea, layout);
-
- if (isClipped) {
- group.remove(el);
- return;
- }
- }
-
- if (el) {
- graphic.updateProps(el, {
- shape: layout
- }, animationModel, newIndex);
- } else {
- el = elementCreator[coord.type](newIndex, layout, isHorizontalOrRadial, animationModel, true, roundCap);
- }
-
- data.setItemGraphicEl(newIndex, el); // Add back
-
- group.add(el);
- updateStyle(el, data, newIndex, itemModel, layout, seriesModel, isHorizontalOrRadial, coord.type === 'polar');
- }).remove(function (dataIndex) {
- var el = oldData.getItemGraphicEl(dataIndex);
-
- if (coord.type === 'cartesian2d') {
- el && removeRect(dataIndex, animationModel, el);
- } else {
- el && removeSector(dataIndex, animationModel, el);
- }
- }).execute();
- this._data = data;
- },
- _renderLarge: function (seriesModel, ecModel, api) {
- this._clear();
-
- createLarge(seriesModel, this.group); // Use clipPath in large mode.
-
- var clipPath = seriesModel.get('clip', true) ? createClipPath(seriesModel.coordinateSystem, false, seriesModel) : null;
-
- if (clipPath) {
- this.group.setClipPath(clipPath);
- } else {
- this.group.removeClipPath();
- }
- },
- _incrementalRenderLarge: function (params, seriesModel) {
- createLarge(seriesModel, this.group, true);
- },
- dispose: zrUtil.noop,
- remove: function (ecModel) {
- this._clear(ecModel);
- },
- _clear: function (ecModel) {
- var group = this.group;
- var data = this._data;
-
- if (ecModel && ecModel.get('animation') && data && !this._isLargeDraw) {
- data.eachItemGraphicEl(function (el) {
- if (el.type === 'sector') {
- removeSector(el.dataIndex, ecModel, el);
- } else {
- removeRect(el.dataIndex, ecModel, el);
- }
- });
- } else {
- group.removeAll();
- }
-
- this._data = null;
- }
- });
-
- var mathMax = Math.max;
- var mathMin = Math.min;
- var clip = {
- cartesian2d: function (coordSysBoundingRect, layout) {
- var signWidth = layout.width < 0 ? -1 : 1;
- var signHeight = layout.height < 0 ? -1 : 1; // Needs positive width and height
-
- if (signWidth < 0) {
- layout.x += layout.width;
- layout.width = -layout.width;
- }
-
- if (signHeight < 0) {
- layout.y += layout.height;
- layout.height = -layout.height;
- }
-
- var x = mathMax(layout.x, coordSysBoundingRect.x);
- var x2 = mathMin(layout.x + layout.width, coordSysBoundingRect.x + coordSysBoundingRect.width);
- var y = mathMax(layout.y, coordSysBoundingRect.y);
- var y2 = mathMin(layout.y + layout.height, coordSysBoundingRect.y + coordSysBoundingRect.height);
- layout.x = x;
- layout.y = y;
- layout.width = x2 - x;
- layout.height = y2 - y;
- var clipped = layout.width < 0 || layout.height < 0; // Reverse back
-
- if (signWidth < 0) {
- layout.x += layout.width;
- layout.width = -layout.width;
- }
-
- if (signHeight < 0) {
- layout.y += layout.height;
- layout.height = -layout.height;
- }
-
- return clipped;
- },
- polar: function (coordSysClipArea) {
- return false;
- }
- };
- var elementCreator = {
- cartesian2d: function (dataIndex, layout, isHorizontal, animationModel, isUpdate) {
- var rect = new graphic.Rect({
- shape: zrUtil.extend({}, layout)
- }); // Animation
-
- if (animationModel) {
- var rectShape = rect.shape;
- var animateProperty = isHorizontal ? 'height' : 'width';
- var animateTarget = {};
- rectShape[animateProperty] = 0;
- animateTarget[animateProperty] = layout[animateProperty];
- graphic[isUpdate ? 'updateProps' : 'initProps'](rect, {
- shape: animateTarget
- }, animationModel, dataIndex);
- }
-
- return rect;
- },
- polar: function (dataIndex, layout, isRadial, animationModel, isUpdate, roundCap) {
- // Keep the same logic with bar in catesion: use end value to control
- // direction. Notice that if clockwise is true (by default), the sector
- // will always draw clockwisely, no matter whether endAngle is greater
- // or less than startAngle.
- var clockwise = layout.startAngle < layout.endAngle;
- var ShapeClass = !isRadial && roundCap ? Sausage : graphic.Sector;
- var sector = new ShapeClass({
- shape: zrUtil.defaults({
- clockwise: clockwise
- }, layout)
- }); // Animation
-
- if (animationModel) {
- var sectorShape = sector.shape;
- var animateProperty = isRadial ? 'r' : 'endAngle';
- var animateTarget = {};
- sectorShape[animateProperty] = isRadial ? 0 : layout.startAngle;
- animateTarget[animateProperty] = layout[animateProperty];
- graphic[isUpdate ? 'updateProps' : 'initProps'](sector, {
- shape: animateTarget
- }, animationModel, dataIndex);
- }
-
- return sector;
- }
- };
-
- function removeRect(dataIndex, animationModel, el) {
- // Not show text when animating
- el.style.text = null;
- graphic.updateProps(el, {
- shape: {
- width: 0
- }
- }, animationModel, dataIndex, function () {
- el.parent && el.parent.remove(el);
- });
- }
-
- function removeSector(dataIndex, animationModel, el) {
- // Not show text when animating
- el.style.text = null;
- graphic.updateProps(el, {
- shape: {
- r: el.shape.r0
- }
- }, animationModel, dataIndex, function () {
- el.parent && el.parent.remove(el);
- });
- }
-
- var getLayout = {
- cartesian2d: function (data, dataIndex, itemModel) {
- var layout = data.getItemLayout(dataIndex);
- var fixedLineWidth = getLineWidth(itemModel, layout); // fix layout with lineWidth
-
- var signX = layout.width > 0 ? 1 : -1;
- var signY = layout.height > 0 ? 1 : -1;
- return {
- x: layout.x + signX * fixedLineWidth / 2,
- y: layout.y + signY * fixedLineWidth / 2,
- width: layout.width - signX * fixedLineWidth,
- height: layout.height - signY * fixedLineWidth
- };
- },
- polar: function (data, dataIndex, itemModel) {
- var layout = data.getItemLayout(dataIndex);
- return {
- cx: layout.cx,
- cy: layout.cy,
- r0: layout.r0,
- r: layout.r,
- startAngle: layout.startAngle,
- endAngle: layout.endAngle
- };
- }
- };
-
- function isZeroOnPolar(layout) {
- return layout.startAngle != null && layout.endAngle != null && layout.startAngle === layout.endAngle;
- }
-
- function updateStyle(el, data, dataIndex, itemModel, layout, seriesModel, isHorizontal, isPolar) {
- var color = data.getItemVisual(dataIndex, 'color');
- var opacity = data.getItemVisual(dataIndex, 'opacity');
- var stroke = data.getVisual('borderColor');
- var itemStyleModel = itemModel.getModel('itemStyle');
- var hoverStyle = itemModel.getModel('emphasis.itemStyle').getBarItemStyle();
-
- if (!isPolar) {
- el.setShape('r', itemStyleModel.get('barBorderRadius') || 0);
- }
-
- el.useStyle(zrUtil.defaults({
- stroke: isZeroOnPolar(layout) ? 'none' : stroke,
- fill: isZeroOnPolar(layout) ? 'none' : color,
- opacity: opacity
- }, itemStyleModel.getBarItemStyle()));
- var cursorStyle = itemModel.getShallow('cursor');
- cursorStyle && el.attr('cursor', cursorStyle);
- var labelPositionOutside = isHorizontal ? layout.height > 0 ? 'bottom' : 'top' : layout.width > 0 ? 'left' : 'right';
-
- if (!isPolar) {
- setLabel(el.style, hoverStyle, itemModel, color, seriesModel, dataIndex, labelPositionOutside);
- }
-
- if (isZeroOnPolar(layout)) {
- hoverStyle.fill = hoverStyle.stroke = 'none';
- }
-
- graphic.setHoverStyle(el, hoverStyle);
- } // In case width or height are too small.
-
-
- function getLineWidth(itemModel, rawLayout) {
- var lineWidth = itemModel.get(BAR_BORDER_WIDTH_QUERY) || 0;
- return Math.min(lineWidth, Math.abs(rawLayout.width), Math.abs(rawLayout.height));
- }
-
- var LargePath = Path.extend({
- type: 'largeBar',
- shape: {
- points: []
- },
- buildPath: function (ctx, shape) {
- // Drawing lines is more efficient than drawing
- // a whole line or drawing rects.
- var points = shape.points;
- var startPoint = this.__startPoint;
- var baseDimIdx = this.__baseDimIdx;
-
- for (var i = 0; i < points.length; i += 2) {
- startPoint[baseDimIdx] = points[i + baseDimIdx];
- ctx.moveTo(startPoint[0], startPoint[1]);
- ctx.lineTo(points[i], points[i + 1]);
- }
- }
- });
-
- function createLarge(seriesModel, group, incremental) {
- // TODO support polar
- var data = seriesModel.getData();
- var startPoint = [];
- var baseDimIdx = data.getLayout('valueAxisHorizontal') ? 1 : 0;
- startPoint[1 - baseDimIdx] = data.getLayout('valueAxisStart');
- var el = new LargePath({
- shape: {
- points: data.getLayout('largePoints')
- },
- incremental: !!incremental,
- __startPoint: startPoint,
- __baseDimIdx: baseDimIdx,
- __largeDataIndices: data.getLayout('largeDataIndices'),
- __barWidth: data.getLayout('barWidth')
- });
- group.add(el);
- setLargeStyle(el, seriesModel, data); // Enable tooltip and user mouse/touch event handlers.
-
- el.seriesIndex = seriesModel.seriesIndex;
-
- if (!seriesModel.get('silent')) {
- el.on('mousedown', largePathUpdateDataIndex);
- el.on('mousemove', largePathUpdateDataIndex);
- }
- } // Use throttle to avoid frequently traverse to find dataIndex.
-
-
- var largePathUpdateDataIndex = throttle(function (event) {
- var largePath = this;
- var dataIndex = largePathFindDataIndex(largePath, event.offsetX, event.offsetY);
- largePath.dataIndex = dataIndex >= 0 ? dataIndex : null;
- }, 30, false);
-
- function largePathFindDataIndex(largePath, x, y) {
- var baseDimIdx = largePath.__baseDimIdx;
- var valueDimIdx = 1 - baseDimIdx;
- var points = largePath.shape.points;
- var largeDataIndices = largePath.__largeDataIndices;
- var barWidthHalf = Math.abs(largePath.__barWidth / 2);
- var startValueVal = largePath.__startPoint[valueDimIdx];
- _eventPos[0] = x;
- _eventPos[1] = y;
- var pointerBaseVal = _eventPos[baseDimIdx];
- var pointerValueVal = _eventPos[1 - baseDimIdx];
- var baseLowerBound = pointerBaseVal - barWidthHalf;
- var baseUpperBound = pointerBaseVal + barWidthHalf;
-
- for (var i = 0, len = points.length / 2; i < len; i++) {
- var ii = i * 2;
- var barBaseVal = points[ii + baseDimIdx];
- var barValueVal = points[ii + valueDimIdx];
-
- if (barBaseVal >= baseLowerBound && barBaseVal <= baseUpperBound && (startValueVal <= barValueVal ? pointerValueVal >= startValueVal && pointerValueVal <= barValueVal : pointerValueVal >= barValueVal && pointerValueVal <= startValueVal)) {
- return largeDataIndices[i];
- }
- }
-
- return -1;
- }
-
- function setLargeStyle(el, seriesModel, data) {
- var borderColor = data.getVisual('borderColor') || data.getVisual('color');
- var itemStyle = seriesModel.getModel('itemStyle').getItemStyle(['color', 'borderColor']);
- el.useStyle(itemStyle);
- el.style.fill = null;
- el.style.stroke = borderColor;
- el.style.lineWidth = data.getLayout('barWidth');
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2568:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var makeStyleMapper = __webpack_require__(1599);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var getBarItemStyle = makeStyleMapper([['fill', 'color'], ['stroke', 'borderColor'], ['lineWidth', 'borderWidth'], // Compatitable with 2
- ['stroke', 'barBorderColor'], ['lineWidth', 'barBorderWidth'], ['opacity'], ['shadowBlur'], ['shadowOffsetX'], ['shadowOffsetY'], ['shadowColor']]);
- var _default = {
- getBarItemStyle: function (excludes) {
- var style = getBarItemStyle(this, excludes);
-
- if (this.getBorderLineDash) {
- var lineDash = this.getBorderLineDash();
- lineDash && (style.lineDash = lineDash);
- }
-
- return style;
- }
- };
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2569:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _graphic = __webpack_require__(906);
-
- var extendShape = _graphic.extendShape;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Sausage: similar to sector, but have half circle on both sides
- * @public
- */
- var _default = extendShape({
- type: 'sausage',
- shape: {
- cx: 0,
- cy: 0,
- r0: 0,
- r: 0,
- startAngle: 0,
- endAngle: Math.PI * 2,
- clockwise: true
- },
- buildPath: function (ctx, shape) {
- var x = shape.cx;
- var y = shape.cy;
- var r0 = Math.max(shape.r0 || 0, 0);
- var r = Math.max(shape.r, 0);
- var dr = (r - r0) * 0.5;
- var rCenter = r0 + dr;
- var startAngle = shape.startAngle;
- var endAngle = shape.endAngle;
- var clockwise = shape.clockwise;
- var unitStartX = Math.cos(startAngle);
- var unitStartY = Math.sin(startAngle);
- var unitEndX = Math.cos(endAngle);
- var unitEndY = Math.sin(endAngle);
- var lessThanCircle = clockwise ? endAngle - startAngle < Math.PI * 2 : startAngle - endAngle < Math.PI * 2;
-
- if (lessThanCircle) {
- ctx.moveTo(unitStartX * r0 + x, unitStartY * r0 + y);
- ctx.arc(unitStartX * rCenter + x, unitStartY * rCenter + y, dr, -Math.PI + startAngle, startAngle, !clockwise);
- }
-
- ctx.arc(x, y, r, startAngle, endAngle, !clockwise);
- ctx.moveTo(unitEndX * r + x, unitEndY * r + y);
- ctx.arc(unitEndX * rCenter + x, unitEndY * rCenter + y, dr, endAngle - Math.PI * 2, endAngle - Math.PI, !clockwise);
-
- if (r0 !== 0) {
- ctx.arc(x, y, r0, endAngle, startAngle, clockwise);
- ctx.moveTo(unitStartX * r0 + x, unitEndY * r0 + y);
- }
-
- ctx.closePath();
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2570:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- __webpack_require__(2571);
-
- __webpack_require__(2572);
-
- var createDataSelectAction = __webpack_require__(2299);
-
- var dataColor = __webpack_require__(1793);
-
- var pieLayout = __webpack_require__(2573);
-
- var dataFilter = __webpack_require__(1666);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- createDataSelectAction('pie', [{
- type: 'pieToggleSelect',
- event: 'pieselectchanged',
- method: 'toggleSelected'
- }, {
- type: 'pieSelect',
- event: 'pieselected',
- method: 'select'
- }, {
- type: 'pieUnSelect',
- event: 'pieunselected',
- method: 'unSelect'
- }]);
- echarts.registerVisual(dataColor('pie'));
- echarts.registerLayout(zrUtil.curry(pieLayout, 'pie'));
- echarts.registerProcessor(dataFilter('pie'));
-
- /***/ }),
-
- /***/ 2571:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var createListSimply = __webpack_require__(1604);
-
- var zrUtil = __webpack_require__(864);
-
- var modelUtil = __webpack_require__(1064);
-
- var _number = __webpack_require__(985);
-
- var getPercentWithPrecision = _number.getPercentWithPrecision;
-
- var dataSelectableMixin = __webpack_require__(1906);
-
- var _dataProvider = __webpack_require__(1518);
-
- var retrieveRawAttr = _dataProvider.retrieveRawAttr;
-
- var _sourceHelper = __webpack_require__(1457);
-
- var makeSeriesEncodeForNameBased = _sourceHelper.makeSeriesEncodeForNameBased;
-
- var LegendVisualProvider = __webpack_require__(1665);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var PieSeries = echarts.extendSeriesModel({
- type: 'series.pie',
- // Overwrite
- init: function (option) {
- PieSeries.superApply(this, 'init', arguments); // Enable legend selection for each data item
- // Use a function instead of direct access because data reference may changed
-
- this.legendVisualProvider = new LegendVisualProvider(zrUtil.bind(this.getData, this), zrUtil.bind(this.getRawData, this));
- this.updateSelectedMap(this._createSelectableList());
-
- this._defaultLabelLine(option);
- },
- // Overwrite
- mergeOption: function (newOption) {
- PieSeries.superCall(this, 'mergeOption', newOption);
- this.updateSelectedMap(this._createSelectableList());
- },
- getInitialData: function (option, ecModel) {
- return createListSimply(this, {
- coordDimensions: ['value'],
- encodeDefaulter: zrUtil.curry(makeSeriesEncodeForNameBased, this)
- });
- },
- _createSelectableList: function () {
- var data = this.getRawData();
- var valueDim = data.mapDimension('value');
- var targetList = [];
-
- for (var i = 0, len = data.count(); i < len; i++) {
- targetList.push({
- name: data.getName(i),
- value: data.get(valueDim, i),
- selected: retrieveRawAttr(data, i, 'selected')
- });
- }
-
- return targetList;
- },
- // Overwrite
- getDataParams: function (dataIndex) {
- var data = this.getData();
- var params = PieSeries.superCall(this, 'getDataParams', dataIndex); // FIXME toFixed?
-
- var valueList = [];
- data.each(data.mapDimension('value'), function (value) {
- valueList.push(value);
- });
- params.percent = getPercentWithPrecision(valueList, dataIndex, data.hostModel.get('percentPrecision'));
- params.$vars.push('percent');
- return params;
- },
- _defaultLabelLine: function (option) {
- // Extend labelLine emphasis
- modelUtil.defaultEmphasis(option, 'labelLine', ['show']);
- var labelLineNormalOpt = option.labelLine;
- var labelLineEmphasisOpt = option.emphasis.labelLine; // Not show label line if `label.normal.show = false`
-
- labelLineNormalOpt.show = labelLineNormalOpt.show && option.label.show;
- labelLineEmphasisOpt.show = labelLineEmphasisOpt.show && option.emphasis.label.show;
- },
- defaultOption: {
- zlevel: 0,
- z: 2,
- legendHoverLink: true,
- hoverAnimation: true,
- // 默认全局居中
- center: ['50%', '50%'],
- radius: [0, '75%'],
- // 默认顺时针
- clockwise: true,
- startAngle: 90,
- // 最小角度改为0
- minAngle: 0,
- // If the angle of a sector less than `minShowLabelAngle`,
- // the label will not be displayed.
- minShowLabelAngle: 0,
- // 选中时扇区偏移量
- selectedOffset: 10,
- // 高亮扇区偏移量
- hoverOffset: 10,
- // If use strategy to avoid label overlapping
- avoidLabelOverlap: true,
- // 选择模式,默认关闭,可选single,multiple
- // selectedMode: false,
- // 南丁格尔玫瑰图模式,'radius'(半径) | 'area'(面积)
- // roseType: null,
- percentPrecision: 2,
- // If still show when all data zero.
- stillShowZeroSum: true,
- // cursor: null,
- left: 0,
- top: 0,
- right: 0,
- bottom: 0,
- width: null,
- height: null,
- label: {
- // If rotate around circle
- rotate: false,
- show: true,
- // 'outer', 'inside', 'center'
- position: 'outer',
- // 'none', 'labelLine', 'edge'. Works only when position is 'outer'
- alignTo: 'none',
- // Closest distance between label and chart edge.
- // Works only position is 'outer' and alignTo is 'edge'.
- margin: '25%',
- // Works only position is 'outer' and alignTo is not 'edge'.
- bleedMargin: 10,
- // Distance between text and label line.
- distanceToLabelLine: 5 // formatter: 标签文本格式器,同Tooltip.formatter,不支持异步回调
- // 默认使用全局文本样式,详见TEXTSTYLE
- // distance: 当position为inner时有效,为label位置到圆心的距离与圆半径(环状图为内外半径和)的比例系数
-
- },
- // Enabled when label.normal.position is 'outer'
- labelLine: {
- show: true,
- // 引导线两段中的第一段长度
- length: 15,
- // 引导线两段中的第二段长度
- length2: 15,
- smooth: false,
- lineStyle: {
- // color: 各异,
- width: 1,
- type: 'solid'
- }
- },
- itemStyle: {
- borderWidth: 1
- },
- // Animation type. Valid values: expansion, scale
- animationType: 'expansion',
- // Animation type when update. Valid values: transition, expansion
- animationTypeUpdate: 'transition',
- animationEasing: 'cubicOut'
- }
- });
- zrUtil.mixin(PieSeries, dataSelectableMixin);
- var _default = PieSeries;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2572:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var graphic = __webpack_require__(906);
-
- var ChartView = __webpack_require__(1439);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @param {module:echarts/model/Series} seriesModel
- * @param {boolean} hasAnimation
- * @inner
- */
- function updateDataSelected(uid, seriesModel, hasAnimation, api) {
- var data = seriesModel.getData();
- var dataIndex = this.dataIndex;
- var name = data.getName(dataIndex);
- var selectedOffset = seriesModel.get('selectedOffset');
- api.dispatchAction({
- type: 'pieToggleSelect',
- from: uid,
- name: name,
- seriesId: seriesModel.id
- });
- data.each(function (idx) {
- toggleItemSelected(data.getItemGraphicEl(idx), data.getItemLayout(idx), seriesModel.isSelected(data.getName(idx)), selectedOffset, hasAnimation);
- });
- }
- /**
- * @param {module:zrender/graphic/Sector} el
- * @param {Object} layout
- * @param {boolean} isSelected
- * @param {number} selectedOffset
- * @param {boolean} hasAnimation
- * @inner
- */
-
-
- function toggleItemSelected(el, layout, isSelected, selectedOffset, hasAnimation) {
- var midAngle = (layout.startAngle + layout.endAngle) / 2;
- var dx = Math.cos(midAngle);
- var dy = Math.sin(midAngle);
- var offset = isSelected ? selectedOffset : 0;
- var position = [dx * offset, dy * offset];
- hasAnimation // animateTo will stop revious animation like update transition
- ? el.animate().when(200, {
- position: position
- }).start('bounceOut') : el.attr('position', position);
- }
- /**
- * Piece of pie including Sector, Label, LabelLine
- * @constructor
- * @extends {module:zrender/graphic/Group}
- */
-
-
- function PiePiece(data, idx) {
- graphic.Group.call(this);
- var sector = new graphic.Sector({
- z2: 2
- });
- var polyline = new graphic.Polyline();
- var text = new graphic.Text();
- this.add(sector);
- this.add(polyline);
- this.add(text);
- this.updateData(data, idx, true);
- }
-
- var piePieceProto = PiePiece.prototype;
-
- piePieceProto.updateData = function (data, idx, firstCreate) {
- var sector = this.childAt(0);
- var labelLine = this.childAt(1);
- var labelText = this.childAt(2);
- var seriesModel = data.hostModel;
- var itemModel = data.getItemModel(idx);
- var layout = data.getItemLayout(idx);
- var sectorShape = zrUtil.extend({}, layout);
- sectorShape.label = null;
- var animationTypeUpdate = seriesModel.getShallow('animationTypeUpdate');
-
- if (firstCreate) {
- sector.setShape(sectorShape);
- var animationType = seriesModel.getShallow('animationType');
-
- if (animationType === 'scale') {
- sector.shape.r = layout.r0;
- graphic.initProps(sector, {
- shape: {
- r: layout.r
- }
- }, seriesModel, idx);
- } // Expansion
- else {
- sector.shape.endAngle = layout.startAngle;
- graphic.updateProps(sector, {
- shape: {
- endAngle: layout.endAngle
- }
- }, seriesModel, idx);
- }
- } else {
- if (animationTypeUpdate === 'expansion') {
- // Sectors are set to be target shape and an overlaying clipPath is used for animation
- sector.setShape(sectorShape);
- } else {
- // Transition animation from the old shape
- graphic.updateProps(sector, {
- shape: sectorShape
- }, seriesModel, idx);
- }
- } // Update common style
-
-
- var visualColor = data.getItemVisual(idx, 'color');
- sector.useStyle(zrUtil.defaults({
- lineJoin: 'bevel',
- fill: visualColor
- }, itemModel.getModel('itemStyle').getItemStyle()));
- sector.hoverStyle = itemModel.getModel('emphasis.itemStyle').getItemStyle();
- var cursorStyle = itemModel.getShallow('cursor');
- cursorStyle && sector.attr('cursor', cursorStyle); // Toggle selected
-
- toggleItemSelected(this, data.getItemLayout(idx), seriesModel.isSelected(null, idx), seriesModel.get('selectedOffset'), seriesModel.get('animation')); // Label and text animation should be applied only for transition type animation when update
-
- var withAnimation = !firstCreate && animationTypeUpdate === 'transition';
-
- this._updateLabel(data, idx, withAnimation);
-
- this.highDownOnUpdate = itemModel.get('hoverAnimation') && seriesModel.isAnimationEnabled() ? function (fromState, toState) {
- if (toState === 'emphasis') {
- labelLine.ignore = labelLine.hoverIgnore;
- labelText.ignore = labelText.hoverIgnore; // Sector may has animation of updating data. Force to move to the last frame
- // Or it may stopped on the wrong shape
-
- sector.stopAnimation(true);
- sector.animateTo({
- shape: {
- r: layout.r + seriesModel.get('hoverOffset')
- }
- }, 300, 'elasticOut');
- } else {
- labelLine.ignore = labelLine.normalIgnore;
- labelText.ignore = labelText.normalIgnore;
- sector.stopAnimation(true);
- sector.animateTo({
- shape: {
- r: layout.r
- }
- }, 300, 'elasticOut');
- }
- } : null;
- graphic.setHoverStyle(this);
- };
-
- piePieceProto._updateLabel = function (data, idx, withAnimation) {
- var labelLine = this.childAt(1);
- var labelText = this.childAt(2);
- var seriesModel = data.hostModel;
- var itemModel = data.getItemModel(idx);
- var layout = data.getItemLayout(idx);
- var labelLayout = layout.label;
- var visualColor = data.getItemVisual(idx, 'color');
-
- if (!labelLayout || isNaN(labelLayout.x) || isNaN(labelLayout.y)) {
- labelText.ignore = labelText.normalIgnore = labelText.hoverIgnore = labelLine.ignore = labelLine.normalIgnore = labelLine.hoverIgnore = true;
- return;
- }
-
- var targetLineShape = {
- points: labelLayout.linePoints || [[labelLayout.x, labelLayout.y], [labelLayout.x, labelLayout.y], [labelLayout.x, labelLayout.y]]
- };
- var targetTextStyle = {
- x: labelLayout.x,
- y: labelLayout.y
- };
-
- if (withAnimation) {
- graphic.updateProps(labelLine, {
- shape: targetLineShape
- }, seriesModel, idx);
- graphic.updateProps(labelText, {
- style: targetTextStyle
- }, seriesModel, idx);
- } else {
- labelLine.attr({
- shape: targetLineShape
- });
- labelText.attr({
- style: targetTextStyle
- });
- }
-
- labelText.attr({
- rotation: labelLayout.rotation,
- origin: [labelLayout.x, labelLayout.y],
- z2: 10
- });
- var labelModel = itemModel.getModel('label');
- var labelHoverModel = itemModel.getModel('emphasis.label');
- var labelLineModel = itemModel.getModel('labelLine');
- var labelLineHoverModel = itemModel.getModel('emphasis.labelLine');
- var visualColor = data.getItemVisual(idx, 'color');
- graphic.setLabelStyle(labelText.style, labelText.hoverStyle = {}, labelModel, labelHoverModel, {
- labelFetcher: data.hostModel,
- labelDataIndex: idx,
- defaultText: labelLayout.text,
- autoColor: visualColor,
- useInsideStyle: !!labelLayout.inside
- }, {
- textAlign: labelLayout.textAlign,
- textVerticalAlign: labelLayout.verticalAlign,
- opacity: data.getItemVisual(idx, 'opacity')
- });
- labelText.ignore = labelText.normalIgnore = !labelModel.get('show');
- labelText.hoverIgnore = !labelHoverModel.get('show');
- labelLine.ignore = labelLine.normalIgnore = !labelLineModel.get('show');
- labelLine.hoverIgnore = !labelLineHoverModel.get('show'); // Default use item visual color
-
- labelLine.setStyle({
- stroke: visualColor,
- opacity: data.getItemVisual(idx, 'opacity')
- });
- labelLine.setStyle(labelLineModel.getModel('lineStyle').getLineStyle());
- labelLine.hoverStyle = labelLineHoverModel.getModel('lineStyle').getLineStyle();
- var smooth = labelLineModel.get('smooth');
-
- if (smooth && smooth === true) {
- smooth = 0.4;
- }
-
- labelLine.setShape({
- smooth: smooth
- });
- };
-
- zrUtil.inherits(PiePiece, graphic.Group); // Pie view
-
- var PieView = ChartView.extend({
- type: 'pie',
- init: function () {
- var sectorGroup = new graphic.Group();
- this._sectorGroup = sectorGroup;
- },
- render: function (seriesModel, ecModel, api, payload) {
- if (payload && payload.from === this.uid) {
- return;
- }
-
- var data = seriesModel.getData();
- var oldData = this._data;
- var group = this.group;
- var hasAnimation = ecModel.get('animation');
- var isFirstRender = !oldData;
- var animationType = seriesModel.get('animationType');
- var animationTypeUpdate = seriesModel.get('animationTypeUpdate');
- var onSectorClick = zrUtil.curry(updateDataSelected, this.uid, seriesModel, hasAnimation, api);
- var selectedMode = seriesModel.get('selectedMode');
- data.diff(oldData).add(function (idx) {
- var piePiece = new PiePiece(data, idx); // Default expansion animation
-
- if (isFirstRender && animationType !== 'scale') {
- piePiece.eachChild(function (child) {
- child.stopAnimation(true);
- });
- }
-
- selectedMode && piePiece.on('click', onSectorClick);
- data.setItemGraphicEl(idx, piePiece);
- group.add(piePiece);
- }).update(function (newIdx, oldIdx) {
- var piePiece = oldData.getItemGraphicEl(oldIdx);
-
- if (!isFirstRender && animationTypeUpdate !== 'transition') {
- piePiece.eachChild(function (child) {
- child.stopAnimation(true);
- });
- }
-
- piePiece.updateData(data, newIdx);
- piePiece.off('click');
- selectedMode && piePiece.on('click', onSectorClick);
- group.add(piePiece);
- data.setItemGraphicEl(newIdx, piePiece);
- }).remove(function (idx) {
- var piePiece = oldData.getItemGraphicEl(idx);
- group.remove(piePiece);
- }).execute();
-
- if (hasAnimation && data.count() > 0 && (isFirstRender ? animationType !== 'scale' : animationTypeUpdate !== 'transition')) {
- var shape = data.getItemLayout(0);
-
- for (var s = 1; isNaN(shape.startAngle) && s < data.count(); ++s) {
- shape = data.getItemLayout(s);
- }
-
- var r = Math.max(api.getWidth(), api.getHeight()) / 2;
- var removeClipPath = zrUtil.bind(group.removeClipPath, group);
- group.setClipPath(this._createClipPath(shape.cx, shape.cy, r, shape.startAngle, shape.clockwise, removeClipPath, seriesModel, isFirstRender));
- } else {
- // clipPath is used in first-time animation, so remove it when otherwise. See: #8994
- group.removeClipPath();
- }
-
- this._data = data;
- },
- dispose: function () {},
- _createClipPath: function (cx, cy, r, startAngle, clockwise, cb, seriesModel, isFirstRender) {
- var clipPath = new graphic.Sector({
- shape: {
- cx: cx,
- cy: cy,
- r0: 0,
- r: r,
- startAngle: startAngle,
- endAngle: startAngle,
- clockwise: clockwise
- }
- });
- var initOrUpdate = isFirstRender ? graphic.initProps : graphic.updateProps;
- initOrUpdate(clipPath, {
- shape: {
- endAngle: startAngle + (clockwise ? 1 : -1) * Math.PI * 2
- }
- }, seriesModel, cb);
- return clipPath;
- },
-
- /**
- * @implement
- */
- containPoint: function (point, seriesModel) {
- var data = seriesModel.getData();
- var itemLayout = data.getItemLayout(0);
-
- if (itemLayout) {
- var dx = point[0] - itemLayout.cx;
- var dy = point[1] - itemLayout.cy;
- var radius = Math.sqrt(dx * dx + dy * dy);
- return radius <= itemLayout.r && radius >= itemLayout.r0;
- }
- }
- });
- var _default = PieView;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2573:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _number = __webpack_require__(985);
-
- var parsePercent = _number.parsePercent;
- var linearMap = _number.linearMap;
-
- var layout = __webpack_require__(1171);
-
- var labelLayout = __webpack_require__(2574);
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var PI2 = Math.PI * 2;
- var RADIAN = Math.PI / 180;
-
- function getViewRect(seriesModel, api) {
- return layout.getLayoutRect(seriesModel.getBoxLayoutParams(), {
- width: api.getWidth(),
- height: api.getHeight()
- });
- }
-
- function _default(seriesType, ecModel, api, payload) {
- ecModel.eachSeriesByType(seriesType, function (seriesModel) {
- var data = seriesModel.getData();
- var valueDim = data.mapDimension('value');
- var viewRect = getViewRect(seriesModel, api);
- var center = seriesModel.get('center');
- var radius = seriesModel.get('radius');
-
- if (!zrUtil.isArray(radius)) {
- radius = [0, radius];
- }
-
- if (!zrUtil.isArray(center)) {
- center = [center, center];
- }
-
- var width = parsePercent(viewRect.width, api.getWidth());
- var height = parsePercent(viewRect.height, api.getHeight());
- var size = Math.min(width, height);
- var cx = parsePercent(center[0], width) + viewRect.x;
- var cy = parsePercent(center[1], height) + viewRect.y;
- var r0 = parsePercent(radius[0], size / 2);
- var r = parsePercent(radius[1], size / 2);
- var startAngle = -seriesModel.get('startAngle') * RADIAN;
- var minAngle = seriesModel.get('minAngle') * RADIAN;
- var validDataCount = 0;
- data.each(valueDim, function (value) {
- !isNaN(value) && validDataCount++;
- });
- var sum = data.getSum(valueDim); // Sum may be 0
-
- var unitRadian = Math.PI / (sum || validDataCount) * 2;
- var clockwise = seriesModel.get('clockwise');
- var roseType = seriesModel.get('roseType');
- var stillShowZeroSum = seriesModel.get('stillShowZeroSum'); // [0...max]
-
- var extent = data.getDataExtent(valueDim);
- extent[0] = 0; // In the case some sector angle is smaller than minAngle
-
- var restAngle = PI2;
- var valueSumLargerThanMinAngle = 0;
- var currentAngle = startAngle;
- var dir = clockwise ? 1 : -1;
- data.each(valueDim, function (value, idx) {
- var angle;
-
- if (isNaN(value)) {
- data.setItemLayout(idx, {
- angle: NaN,
- startAngle: NaN,
- endAngle: NaN,
- clockwise: clockwise,
- cx: cx,
- cy: cy,
- r0: r0,
- r: roseType ? NaN : r,
- viewRect: viewRect
- });
- return;
- } // FIXME 兼容 2.0 但是 roseType 是 area 的时候才是这样?
-
-
- if (roseType !== 'area') {
- angle = sum === 0 && stillShowZeroSum ? unitRadian : value * unitRadian;
- } else {
- angle = PI2 / validDataCount;
- }
-
- if (angle < minAngle) {
- angle = minAngle;
- restAngle -= minAngle;
- } else {
- valueSumLargerThanMinAngle += value;
- }
-
- var endAngle = currentAngle + dir * angle;
- data.setItemLayout(idx, {
- angle: angle,
- startAngle: currentAngle,
- endAngle: endAngle,
- clockwise: clockwise,
- cx: cx,
- cy: cy,
- r0: r0,
- r: roseType ? linearMap(value, extent, [r0, r]) : r,
- viewRect: viewRect
- });
- currentAngle = endAngle;
- }); // Some sector is constrained by minAngle
- // Rest sectors needs recalculate angle
-
- if (restAngle < PI2 && validDataCount) {
- // Average the angle if rest angle is not enough after all angles is
- // Constrained by minAngle
- if (restAngle <= 1e-3) {
- var angle = PI2 / validDataCount;
- data.each(valueDim, function (value, idx) {
- if (!isNaN(value)) {
- var layout = data.getItemLayout(idx);
- layout.angle = angle;
- layout.startAngle = startAngle + dir * idx * angle;
- layout.endAngle = startAngle + dir * (idx + 1) * angle;
- }
- });
- } else {
- unitRadian = restAngle / valueSumLargerThanMinAngle;
- currentAngle = startAngle;
- data.each(valueDim, function (value, idx) {
- if (!isNaN(value)) {
- var layout = data.getItemLayout(idx);
- var angle = layout.angle === minAngle ? minAngle : value * unitRadian;
- layout.startAngle = currentAngle;
- layout.endAngle = currentAngle + dir * angle;
- currentAngle += dir * angle;
- }
- });
- }
- }
-
- labelLayout(seriesModel, r, viewRect.width, viewRect.height, viewRect.x, viewRect.y);
- });
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2574:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var textContain = __webpack_require__(1402);
-
- var _number = __webpack_require__(985);
-
- var parsePercent = _number.parsePercent;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // FIXME emphasis label position is not same with normal label position
- var RADIAN = Math.PI / 180;
-
- function adjustSingleSide(list, cx, cy, r, dir, viewWidth, viewHeight, viewLeft, viewTop, farthestX) {
- list.sort(function (a, b) {
- return a.y - b.y;
- });
-
- function shiftDown(start, end, delta, dir) {
- for (var j = start; j < end; j++) {
- if (list[j].y + delta > viewTop + viewHeight) {
- break;
- }
-
- list[j].y += delta;
-
- if (j > start && j + 1 < end && list[j + 1].y > list[j].y + list[j].height) {
- shiftUp(j, delta / 2);
- return;
- }
- }
-
- shiftUp(end - 1, delta / 2);
- }
-
- function shiftUp(end, delta) {
- for (var j = end; j >= 0; j--) {
- if (list[j].y - delta < viewTop) {
- break;
- }
-
- list[j].y -= delta;
-
- if (j > 0 && list[j].y > list[j - 1].y + list[j - 1].height) {
- break;
- }
- }
- }
-
- function changeX(list, isDownList, cx, cy, r, dir) {
- var lastDeltaX = dir > 0 ? isDownList // right-side
- ? Number.MAX_VALUE // down
- : 0 // up
- : isDownList // left-side
- ? Number.MAX_VALUE // down
- : 0; // up
-
- for (var i = 0, l = list.length; i < l; i++) {
- if (list[i].labelAlignTo !== 'none') {
- continue;
- }
-
- var deltaY = Math.abs(list[i].y - cy);
- var length = list[i].len;
- var length2 = list[i].len2;
- var deltaX = deltaY < r + length ? Math.sqrt((r + length + length2) * (r + length + length2) - deltaY * deltaY) : Math.abs(list[i].x - cx);
-
- if (isDownList && deltaX >= lastDeltaX) {
- // right-down, left-down
- deltaX = lastDeltaX - 10;
- }
-
- if (!isDownList && deltaX <= lastDeltaX) {
- // right-up, left-up
- deltaX = lastDeltaX + 10;
- }
-
- list[i].x = cx + deltaX * dir;
- lastDeltaX = deltaX;
- }
- }
-
- var lastY = 0;
- var delta;
- var len = list.length;
- var upList = [];
- var downList = [];
-
- for (var i = 0; i < len; i++) {
- if (list[i].position === 'outer' && list[i].labelAlignTo === 'labelLine') {
- var dx = list[i].x - farthestX;
- list[i].linePoints[1][0] += dx;
- list[i].x = farthestX;
- }
-
- delta = list[i].y - lastY;
-
- if (delta < 0) {
- shiftDown(i, len, -delta, dir);
- }
-
- lastY = list[i].y + list[i].height;
- }
-
- if (viewHeight - lastY < 0) {
- shiftUp(len - 1, lastY - viewHeight);
- }
-
- for (var i = 0; i < len; i++) {
- if (list[i].y >= cy) {
- downList.push(list[i]);
- } else {
- upList.push(list[i]);
- }
- }
-
- changeX(upList, false, cx, cy, r, dir);
- changeX(downList, true, cx, cy, r, dir);
- }
-
- function avoidOverlap(labelLayoutList, cx, cy, r, viewWidth, viewHeight, viewLeft, viewTop) {
- var leftList = [];
- var rightList = [];
- var leftmostX = Number.MAX_VALUE;
- var rightmostX = -Number.MAX_VALUE;
-
- for (var i = 0; i < labelLayoutList.length; i++) {
- if (isPositionCenter(labelLayoutList[i])) {
- continue;
- }
-
- if (labelLayoutList[i].x < cx) {
- leftmostX = Math.min(leftmostX, labelLayoutList[i].x);
- leftList.push(labelLayoutList[i]);
- } else {
- rightmostX = Math.max(rightmostX, labelLayoutList[i].x);
- rightList.push(labelLayoutList[i]);
- }
- }
-
- adjustSingleSide(rightList, cx, cy, r, 1, viewWidth, viewHeight, viewLeft, viewTop, rightmostX);
- adjustSingleSide(leftList, cx, cy, r, -1, viewWidth, viewHeight, viewLeft, viewTop, leftmostX);
-
- for (var i = 0; i < labelLayoutList.length; i++) {
- var layout = labelLayoutList[i];
-
- if (isPositionCenter(layout)) {
- continue;
- }
-
- var linePoints = layout.linePoints;
-
- if (linePoints) {
- var isAlignToEdge = layout.labelAlignTo === 'edge';
- var realTextWidth = layout.textRect.width;
- var targetTextWidth;
-
- if (isAlignToEdge) {
- if (layout.x < cx) {
- targetTextWidth = linePoints[2][0] - layout.labelDistance - viewLeft - layout.labelMargin;
- } else {
- targetTextWidth = viewLeft + viewWidth - layout.labelMargin - linePoints[2][0] - layout.labelDistance;
- }
- } else {
- if (layout.x < cx) {
- targetTextWidth = layout.x - viewLeft - layout.bleedMargin;
- } else {
- targetTextWidth = viewLeft + viewWidth - layout.x - layout.bleedMargin;
- }
- }
-
- if (targetTextWidth < layout.textRect.width) {
- layout.text = textContain.truncateText(layout.text, targetTextWidth, layout.font);
-
- if (layout.labelAlignTo === 'edge') {
- realTextWidth = textContain.getWidth(layout.text, layout.font);
- }
- }
-
- var dist = linePoints[1][0] - linePoints[2][0];
-
- if (isAlignToEdge) {
- if (layout.x < cx) {
- linePoints[2][0] = viewLeft + layout.labelMargin + realTextWidth + layout.labelDistance;
- } else {
- linePoints[2][0] = viewLeft + viewWidth - layout.labelMargin - realTextWidth - layout.labelDistance;
- }
- } else {
- if (layout.x < cx) {
- linePoints[2][0] = layout.x + layout.labelDistance;
- } else {
- linePoints[2][0] = layout.x - layout.labelDistance;
- }
-
- linePoints[1][0] = linePoints[2][0] + dist;
- }
-
- linePoints[1][1] = linePoints[2][1] = layout.y;
- }
- }
- }
-
- function isPositionCenter(layout) {
- // Not change x for center label
- return layout.position === 'center';
- }
-
- function _default(seriesModel, r, viewWidth, viewHeight, viewLeft, viewTop) {
- var data = seriesModel.getData();
- var labelLayoutList = [];
- var cx;
- var cy;
- var hasLabelRotate = false;
- var minShowLabelRadian = (seriesModel.get('minShowLabelAngle') || 0) * RADIAN;
- data.each(function (idx) {
- var layout = data.getItemLayout(idx);
- var itemModel = data.getItemModel(idx);
- var labelModel = itemModel.getModel('label'); // Use position in normal or emphasis
-
- var labelPosition = labelModel.get('position') || itemModel.get('emphasis.label.position');
- var labelDistance = labelModel.get('distanceToLabelLine');
- var labelAlignTo = labelModel.get('alignTo');
- var labelMargin = parsePercent(labelModel.get('margin'), viewWidth);
- var bleedMargin = labelModel.get('bleedMargin');
- var font = labelModel.getFont();
- var labelLineModel = itemModel.getModel('labelLine');
- var labelLineLen = labelLineModel.get('length');
- labelLineLen = parsePercent(labelLineLen, viewWidth);
- var labelLineLen2 = labelLineModel.get('length2');
- labelLineLen2 = parsePercent(labelLineLen2, viewWidth);
-
- if (layout.angle < minShowLabelRadian) {
- return;
- }
-
- var midAngle = (layout.startAngle + layout.endAngle) / 2;
- var dx = Math.cos(midAngle);
- var dy = Math.sin(midAngle);
- var textX;
- var textY;
- var linePoints;
- var textAlign;
- cx = layout.cx;
- cy = layout.cy;
- var text = seriesModel.getFormattedLabel(idx, 'normal') || data.getName(idx);
- var textRect = textContain.getBoundingRect(text, font, textAlign, 'top');
- var isLabelInside = labelPosition === 'inside' || labelPosition === 'inner';
-
- if (labelPosition === 'center') {
- textX = layout.cx;
- textY = layout.cy;
- textAlign = 'center';
- } else {
- var x1 = (isLabelInside ? (layout.r + layout.r0) / 2 * dx : layout.r * dx) + cx;
- var y1 = (isLabelInside ? (layout.r + layout.r0) / 2 * dy : layout.r * dy) + cy;
- textX = x1 + dx * 3;
- textY = y1 + dy * 3;
-
- if (!isLabelInside) {
- // For roseType
- var x2 = x1 + dx * (labelLineLen + r - layout.r);
- var y2 = y1 + dy * (labelLineLen + r - layout.r);
- var x3 = x2 + (dx < 0 ? -1 : 1) * labelLineLen2;
- var y3 = y2;
-
- if (labelAlignTo === 'edge') {
- // Adjust textX because text align of edge is opposite
- textX = dx < 0 ? viewLeft + labelMargin : viewLeft + viewWidth - labelMargin;
- } else {
- textX = x3 + (dx < 0 ? -labelDistance : labelDistance);
- }
-
- textY = y3;
- linePoints = [[x1, y1], [x2, y2], [x3, y3]];
- }
-
- textAlign = isLabelInside ? 'center' : labelAlignTo === 'edge' ? dx > 0 ? 'right' : 'left' : dx > 0 ? 'left' : 'right';
- }
-
- var labelRotate;
- var rotate = labelModel.get('rotate');
-
- if (typeof rotate === 'number') {
- labelRotate = rotate * (Math.PI / 180);
- } else {
- labelRotate = rotate ? dx < 0 ? -midAngle + Math.PI : -midAngle : 0;
- }
-
- hasLabelRotate = !!labelRotate;
- layout.label = {
- x: textX,
- y: textY,
- position: labelPosition,
- height: textRect.height,
- len: labelLineLen,
- len2: labelLineLen2,
- linePoints: linePoints,
- textAlign: textAlign,
- verticalAlign: 'middle',
- rotation: labelRotate,
- inside: isLabelInside,
- labelDistance: labelDistance,
- labelAlignTo: labelAlignTo,
- labelMargin: labelMargin,
- bleedMargin: bleedMargin,
- textRect: textRect,
- text: text,
- font: font
- }; // Not layout the inside label
-
- if (!isLabelInside) {
- labelLayoutList.push(layout.label);
- }
- });
-
- if (!hasLabelRotate && seriesModel.get('avoidLabelOverlap')) {
- avoidOverlap(labelLayoutList, cx, cy, r, viewWidth, viewHeight, viewLeft, viewTop);
- }
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2575:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- __webpack_require__(2576);
-
- __webpack_require__(2577);
-
- var visualSymbol = __webpack_require__(1520);
-
- var layoutPoints = __webpack_require__(1663);
-
- __webpack_require__(1664);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // import * as zrUtil from 'zrender/src/core/util';
- // In case developer forget to include grid component
- echarts.registerVisual(visualSymbol('scatter', 'circle'));
- echarts.registerLayout(layoutPoints('scatter')); // echarts.registerProcessor(function (ecModel, api) {
- // ecModel.eachSeriesByType('scatter', function (seriesModel) {
- // var data = seriesModel.getData();
- // var coordSys = seriesModel.coordinateSystem;
- // if (coordSys.type !== 'geo') {
- // return;
- // }
- // var startPt = coordSys.pointToData([0, 0]);
- // var endPt = coordSys.pointToData([api.getWidth(), api.getHeight()]);
- // var dims = zrUtil.map(coordSys.dimensions, function (dim) {
- // return data.mapDimension(dim);
- // });
- // var range = {};
- // range[dims[0]] = [Math.min(startPt[0], endPt[0]), Math.max(startPt[0], endPt[0])];
- // range[dims[1]] = [Math.min(startPt[1], endPt[1]), Math.max(startPt[1], endPt[1])];
- // data.selectRange(range);
- // });
- // });
-
- /***/ }),
-
- /***/ 2576:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var createListFromArray = __webpack_require__(1458);
-
- var SeriesModel = __webpack_require__(1322);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = SeriesModel.extend({
- type: 'series.scatter',
- dependencies: ['grid', 'polar', 'geo', 'singleAxis', 'calendar'],
- getInitialData: function (option, ecModel) {
- return createListFromArray(this.getSource(), this, {
- useEncodeDefaulter: true
- });
- },
- brushSelector: 'point',
- getProgressive: function () {
- var progressive = this.option.progressive;
-
- if (progressive == null) {
- // PENDING
- return this.option.large ? 5e3 : this.get('progressive');
- }
-
- return progressive;
- },
- getProgressiveThreshold: function () {
- var progressiveThreshold = this.option.progressiveThreshold;
-
- if (progressiveThreshold == null) {
- // PENDING
- return this.option.large ? 1e4 : this.get('progressiveThreshold');
- }
-
- return progressiveThreshold;
- },
- defaultOption: {
- coordinateSystem: 'cartesian2d',
- zlevel: 0,
- z: 2,
- legendHoverLink: true,
- hoverAnimation: true,
- // Cartesian coordinate system
- // xAxisIndex: 0,
- // yAxisIndex: 0,
- // Polar coordinate system
- // polarIndex: 0,
- // Geo coordinate system
- // geoIndex: 0,
- // symbol: null, // 图形类型
- symbolSize: 10,
- // 图形大小,半宽(半径)参数,当图形为方向或菱形则总宽度为symbolSize * 2
- // symbolRotate: null, // 图形旋转控制
- large: false,
- // Available when large is true
- largeThreshold: 2000,
- // cursor: null,
- // label: {
- // show: false
- // distance: 5,
- // formatter: 标签文本格式器,同Tooltip.formatter,不支持异步回调
- // position: 默认自适应,水平布局为'top',垂直布局为'right',可选为
- // 'inside'|'left'|'right'|'top'|'bottom'
- // 默认使用全局文本样式,详见TEXTSTYLE
- // },
- itemStyle: {
- opacity: 0.8 // color: 各异
-
- },
- // If clip the overflow graphics
- // Works on cartesian / polar series
- clip: true // progressive: null
-
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2577:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var SymbolDraw = __webpack_require__(1661);
-
- var LargeSymbolDraw = __webpack_require__(2578);
-
- var pointsLayout = __webpack_require__(1663);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- echarts.extendChartView({
- type: 'scatter',
- render: function (seriesModel, ecModel, api) {
- var data = seriesModel.getData();
-
- var symbolDraw = this._updateSymbolDraw(data, seriesModel);
-
- symbolDraw.updateData(data, {
- // TODO
- // If this parameter should be a shape or a bounding volume
- // shape will be more general.
- // But bounding volume like bounding rect will be much faster in the contain calculation
- clipShape: this._getClipShape(seriesModel)
- });
- this._finished = true;
- },
- incrementalPrepareRender: function (seriesModel, ecModel, api) {
- var data = seriesModel.getData();
-
- var symbolDraw = this._updateSymbolDraw(data, seriesModel);
-
- symbolDraw.incrementalPrepareUpdate(data);
- this._finished = false;
- },
- incrementalRender: function (taskParams, seriesModel, ecModel) {
- this._symbolDraw.incrementalUpdate(taskParams, seriesModel.getData(), {
- clipShape: this._getClipShape(seriesModel)
- });
-
- this._finished = taskParams.end === seriesModel.getData().count();
- },
- updateTransform: function (seriesModel, ecModel, api) {
- var data = seriesModel.getData(); // Must mark group dirty and make sure the incremental layer will be cleared
- // PENDING
-
- this.group.dirty();
-
- if (!this._finished || data.count() > 1e4 || !this._symbolDraw.isPersistent()) {
- return {
- update: true
- };
- } else {
- var res = pointsLayout().reset(seriesModel);
-
- if (res.progress) {
- res.progress({
- start: 0,
- end: data.count()
- }, data);
- }
-
- this._symbolDraw.updateLayout(data);
- }
- },
- _getClipShape: function (seriesModel) {
- var coordSys = seriesModel.coordinateSystem;
- var clipArea = coordSys && coordSys.getArea && coordSys.getArea();
- return seriesModel.get('clip', true) ? clipArea : null;
- },
- _updateSymbolDraw: function (data, seriesModel) {
- var symbolDraw = this._symbolDraw;
- var pipelineContext = seriesModel.pipelineContext;
- var isLargeDraw = pipelineContext.large;
-
- if (!symbolDraw || isLargeDraw !== this._isLargeDraw) {
- symbolDraw && symbolDraw.remove();
- symbolDraw = this._symbolDraw = isLargeDraw ? new LargeSymbolDraw() : new SymbolDraw();
- this._isLargeDraw = isLargeDraw;
- this.group.removeAll();
- }
-
- this.group.add(symbolDraw.group);
- return symbolDraw;
- },
- remove: function (ecModel, api) {
- this._symbolDraw && this._symbolDraw.remove(true);
- this._symbolDraw = null;
- },
- dispose: function () {}
- });
-
- /***/ }),
-
- /***/ 2578:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var graphic = __webpack_require__(906);
-
- var _symbol = __webpack_require__(1404);
-
- var createSymbol = _symbol.createSymbol;
-
- var IncrementalDisplayable = __webpack_require__(1900);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /* global Float32Array */
- // TODO Batch by color
- var BOOST_SIZE_THRESHOLD = 4;
- var LargeSymbolPath = graphic.extendShape({
- shape: {
- points: null
- },
- symbolProxy: null,
- softClipShape: null,
- buildPath: function (path, shape) {
- var points = shape.points;
- var size = shape.size;
- var symbolProxy = this.symbolProxy;
- var symbolProxyShape = symbolProxy.shape;
- var ctx = path.getContext ? path.getContext() : path;
- var canBoost = ctx && size[0] < BOOST_SIZE_THRESHOLD; // Do draw in afterBrush.
-
- if (canBoost) {
- return;
- }
-
- for (var i = 0; i < points.length;) {
- var x = points[i++];
- var y = points[i++];
-
- if (isNaN(x) || isNaN(y)) {
- continue;
- }
-
- if (this.softClipShape && !this.softClipShape.contain(x, y)) {
- continue;
- }
-
- symbolProxyShape.x = x - size[0] / 2;
- symbolProxyShape.y = y - size[1] / 2;
- symbolProxyShape.width = size[0];
- symbolProxyShape.height = size[1];
- symbolProxy.buildPath(path, symbolProxyShape, true);
- }
- },
- afterBrush: function (ctx) {
- var shape = this.shape;
- var points = shape.points;
- var size = shape.size;
- var canBoost = size[0] < BOOST_SIZE_THRESHOLD;
-
- if (!canBoost) {
- return;
- }
-
- this.setTransform(ctx); // PENDING If style or other canvas status changed?
-
- for (var i = 0; i < points.length;) {
- var x = points[i++];
- var y = points[i++];
-
- if (isNaN(x) || isNaN(y)) {
- continue;
- }
-
- if (this.softClipShape && !this.softClipShape.contain(x, y)) {
- continue;
- } // fillRect is faster than building a rect path and draw.
- // And it support light globalCompositeOperation.
-
-
- ctx.fillRect(x - size[0] / 2, y - size[1] / 2, size[0], size[1]);
- }
-
- this.restoreTransform(ctx);
- },
- findDataIndex: function (x, y) {
- // TODO ???
- // Consider transform
- var shape = this.shape;
- var points = shape.points;
- var size = shape.size;
- var w = Math.max(size[0], 4);
- var h = Math.max(size[1], 4); // Not consider transform
- // Treat each element as a rect
- // top down traverse
-
- for (var idx = points.length / 2 - 1; idx >= 0; idx--) {
- var i = idx * 2;
- var x0 = points[i] - w / 2;
- var y0 = points[i + 1] - h / 2;
-
- if (x >= x0 && y >= y0 && x <= x0 + w && y <= y0 + h) {
- return idx;
- }
- }
-
- return -1;
- }
- });
-
- function LargeSymbolDraw() {
- this.group = new graphic.Group();
- }
-
- var largeSymbolProto = LargeSymbolDraw.prototype;
-
- largeSymbolProto.isPersistent = function () {
- return !this._incremental;
- };
- /**
- * Update symbols draw by new data
- * @param {module:echarts/data/List} data
- * @param {Object} opt
- * @param {Object} [opt.clipShape]
- */
-
-
- largeSymbolProto.updateData = function (data, opt) {
- this.group.removeAll();
- var symbolEl = new LargeSymbolPath({
- rectHover: true,
- cursor: 'default'
- });
- symbolEl.setShape({
- points: data.getLayout('symbolPoints')
- });
-
- this._setCommon(symbolEl, data, false, opt);
-
- this.group.add(symbolEl);
- this._incremental = null;
- };
-
- largeSymbolProto.updateLayout = function (data) {
- if (this._incremental) {
- return;
- }
-
- var points = data.getLayout('symbolPoints');
- this.group.eachChild(function (child) {
- if (child.startIndex != null) {
- var len = (child.endIndex - child.startIndex) * 2;
- var byteOffset = child.startIndex * 4 * 2;
- points = new Float32Array(points.buffer, byteOffset, len);
- }
-
- child.setShape('points', points);
- });
- };
-
- largeSymbolProto.incrementalPrepareUpdate = function (data) {
- this.group.removeAll();
-
- this._clearIncremental(); // Only use incremental displayables when data amount is larger than 2 million.
- // PENDING Incremental data?
-
-
- if (data.count() > 2e6) {
- if (!this._incremental) {
- this._incremental = new IncrementalDisplayable({
- silent: true
- });
- }
-
- this.group.add(this._incremental);
- } else {
- this._incremental = null;
- }
- };
-
- largeSymbolProto.incrementalUpdate = function (taskParams, data, opt) {
- var symbolEl;
-
- if (this._incremental) {
- symbolEl = new LargeSymbolPath();
-
- this._incremental.addDisplayable(symbolEl, true);
- } else {
- symbolEl = new LargeSymbolPath({
- rectHover: true,
- cursor: 'default',
- startIndex: taskParams.start,
- endIndex: taskParams.end
- });
- symbolEl.incremental = true;
- this.group.add(symbolEl);
- }
-
- symbolEl.setShape({
- points: data.getLayout('symbolPoints')
- });
-
- this._setCommon(symbolEl, data, !!this._incremental, opt);
- };
-
- largeSymbolProto._setCommon = function (symbolEl, data, isIncremental, opt) {
- var hostModel = data.hostModel;
- opt = opt || {}; // TODO
- // if (data.hasItemVisual.symbolSize) {
- // // TODO typed array?
- // symbolEl.setShape('sizes', data.mapArray(
- // function (idx) {
- // var size = data.getItemVisual(idx, 'symbolSize');
- // return (size instanceof Array) ? size : [size, size];
- // }
- // ));
- // }
- // else {
-
- var size = data.getVisual('symbolSize');
- symbolEl.setShape('size', size instanceof Array ? size : [size, size]); // }
-
- symbolEl.softClipShape = opt.clipShape || null; // Create symbolProxy to build path for each data
-
- symbolEl.symbolProxy = createSymbol(data.getVisual('symbol'), 0, 0, 0, 0); // Use symbolProxy setColor method
-
- symbolEl.setColor = symbolEl.symbolProxy.setColor;
- var extrudeShadow = symbolEl.shape.size[0] < BOOST_SIZE_THRESHOLD;
- symbolEl.useStyle( // Draw shadow when doing fillRect is extremely slow.
- hostModel.getModel('itemStyle').getItemStyle(extrudeShadow ? ['color', 'shadowBlur', 'shadowColor'] : ['color']));
- var visualColor = data.getVisual('color');
-
- if (visualColor) {
- symbolEl.setColor(visualColor);
- }
-
- if (!isIncremental) {
- // Enable tooltip
- // PENDING May have performance issue when path is extremely large
- symbolEl.seriesIndex = hostModel.seriesIndex;
- symbolEl.on('mousemove', function (e) {
- symbolEl.dataIndex = null;
- var dataIndex = symbolEl.findDataIndex(e.offsetX, e.offsetY);
-
- if (dataIndex >= 0) {
- // Provide dataIndex for tooltip
- symbolEl.dataIndex = dataIndex + (symbolEl.startIndex || 0);
- }
- });
- }
- };
-
- largeSymbolProto.remove = function () {
- this._clearIncremental();
-
- this._incremental = null;
- this.group.removeAll();
- };
-
- largeSymbolProto._clearIncremental = function () {
- var incremental = this._incremental;
-
- if (incremental) {
- incremental.clearDisplaybles();
- }
- };
-
- var _default = LargeSymbolDraw;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2579:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- __webpack_require__(2580);
-
- __webpack_require__(2585);
-
- __webpack_require__(2586);
-
- var dataColor = __webpack_require__(1793);
-
- var visualSymbol = __webpack_require__(1520);
-
- var radarLayout = __webpack_require__(2587);
-
- var dataFilter = __webpack_require__(1666);
-
- var backwardCompat = __webpack_require__(2588);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // Must use radar component
- echarts.registerVisual(dataColor('radar'));
- echarts.registerVisual(visualSymbol('radar', 'circle'));
- echarts.registerLayout(radarLayout);
- echarts.registerProcessor(dataFilter('radar'));
- echarts.registerPreprocessor(backwardCompat);
-
- /***/ }),
-
- /***/ 2580:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- __webpack_require__(2581);
-
- __webpack_require__(2583);
-
- __webpack_require__(2584);
-
- /***/ }),
-
- /***/ 2581:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var IndicatorAxis = __webpack_require__(2582);
-
- var IntervalScale = __webpack_require__(1788);
-
- var numberUtil = __webpack_require__(985);
-
- var _axisHelper = __webpack_require__(1415);
-
- var getScaleExtent = _axisHelper.getScaleExtent;
- var niceScaleExtent = _axisHelper.niceScaleExtent;
-
- var CoordinateSystem = __webpack_require__(1414);
-
- var LogScale = __webpack_require__(2288);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // TODO clockwise
- function Radar(radarModel, ecModel, api) {
- this._model = radarModel;
- /**
- * Radar dimensions
- * @type {Array.<string>}
- */
-
- this.dimensions = [];
- this._indicatorAxes = zrUtil.map(radarModel.getIndicatorModels(), function (indicatorModel, idx) {
- var dim = 'indicator_' + idx;
- var indicatorAxis = new IndicatorAxis(dim, indicatorModel.get('axisType') === 'log' ? new LogScale() : new IntervalScale());
- indicatorAxis.name = indicatorModel.get('name'); // Inject model and axis
-
- indicatorAxis.model = indicatorModel;
- indicatorModel.axis = indicatorAxis;
- this.dimensions.push(dim);
- return indicatorAxis;
- }, this);
- this.resize(radarModel, api);
- /**
- * @type {number}
- * @readOnly
- */
-
- this.cx;
- /**
- * @type {number}
- * @readOnly
- */
-
- this.cy;
- /**
- * @type {number}
- * @readOnly
- */
-
- this.r;
- /**
- * @type {number}
- * @readOnly
- */
-
- this.r0;
- /**
- * @type {number}
- * @readOnly
- */
-
- this.startAngle;
- }
-
- Radar.prototype.getIndicatorAxes = function () {
- return this._indicatorAxes;
- };
-
- Radar.prototype.dataToPoint = function (value, indicatorIndex) {
- var indicatorAxis = this._indicatorAxes[indicatorIndex];
- return this.coordToPoint(indicatorAxis.dataToCoord(value), indicatorIndex);
- };
-
- Radar.prototype.coordToPoint = function (coord, indicatorIndex) {
- var indicatorAxis = this._indicatorAxes[indicatorIndex];
- var angle = indicatorAxis.angle;
- var x = this.cx + coord * Math.cos(angle);
- var y = this.cy - coord * Math.sin(angle);
- return [x, y];
- };
-
- Radar.prototype.pointToData = function (pt) {
- var dx = pt[0] - this.cx;
- var dy = pt[1] - this.cy;
- var radius = Math.sqrt(dx * dx + dy * dy);
- dx /= radius;
- dy /= radius;
- var radian = Math.atan2(-dy, dx); // Find the closest angle
- // FIXME index can calculated directly
-
- var minRadianDiff = Infinity;
- var closestAxis;
- var closestAxisIdx = -1;
-
- for (var i = 0; i < this._indicatorAxes.length; i++) {
- var indicatorAxis = this._indicatorAxes[i];
- var diff = Math.abs(radian - indicatorAxis.angle);
-
- if (diff < minRadianDiff) {
- closestAxis = indicatorAxis;
- closestAxisIdx = i;
- minRadianDiff = diff;
- }
- }
-
- return [closestAxisIdx, +(closestAxis && closestAxis.coordToData(radius))];
- };
-
- Radar.prototype.resize = function (radarModel, api) {
- var center = radarModel.get('center');
- var viewWidth = api.getWidth();
- var viewHeight = api.getHeight();
- var viewSize = Math.min(viewWidth, viewHeight) / 2;
- this.cx = numberUtil.parsePercent(center[0], viewWidth);
- this.cy = numberUtil.parsePercent(center[1], viewHeight);
- this.startAngle = radarModel.get('startAngle') * Math.PI / 180; // radius may be single value like `20`, `'80%'`, or array like `[10, '80%']`
-
- var radius = radarModel.get('radius');
-
- if (typeof radius === 'string' || typeof radius === 'number') {
- radius = [0, radius];
- }
-
- this.r0 = numberUtil.parsePercent(radius[0], viewSize);
- this.r = numberUtil.parsePercent(radius[1], viewSize);
- zrUtil.each(this._indicatorAxes, function (indicatorAxis, idx) {
- indicatorAxis.setExtent(this.r0, this.r);
- var angle = this.startAngle + idx * Math.PI * 2 / this._indicatorAxes.length; // Normalize to [-PI, PI]
-
- angle = Math.atan2(Math.sin(angle), Math.cos(angle));
- indicatorAxis.angle = angle;
- }, this);
- };
-
- Radar.prototype.update = function (ecModel, api) {
- var indicatorAxes = this._indicatorAxes;
- var radarModel = this._model;
- zrUtil.each(indicatorAxes, function (indicatorAxis) {
- indicatorAxis.scale.setExtent(Infinity, -Infinity);
- });
- ecModel.eachSeriesByType('radar', function (radarSeries, idx) {
- if (radarSeries.get('coordinateSystem') !== 'radar' || ecModel.getComponent('radar', radarSeries.get('radarIndex')) !== radarModel) {
- return;
- }
-
- var data = radarSeries.getData();
- zrUtil.each(indicatorAxes, function (indicatorAxis) {
- indicatorAxis.scale.unionExtentFromData(data, data.mapDimension(indicatorAxis.dim));
- });
- }, this);
- var splitNumber = radarModel.get('splitNumber');
-
- function increaseInterval(interval) {
- var exp10 = Math.pow(10, Math.floor(Math.log(interval) / Math.LN10)); // Increase interval
-
- var f = interval / exp10;
-
- if (f === 2) {
- f = 5;
- } else {
- // f is 2 or 5
- f *= 2;
- }
-
- return f * exp10;
- } // Force all the axis fixing the maxSplitNumber.
-
-
- zrUtil.each(indicatorAxes, function (indicatorAxis, idx) {
- var rawExtent = getScaleExtent(indicatorAxis.scale, indicatorAxis.model);
- niceScaleExtent(indicatorAxis.scale, indicatorAxis.model);
- var axisModel = indicatorAxis.model;
- var scale = indicatorAxis.scale;
- var fixedMin = axisModel.getMin();
- var fixedMax = axisModel.getMax();
- var interval = scale.getInterval();
-
- if (fixedMin != null && fixedMax != null) {
- // User set min, max, divide to get new interval
- scale.setExtent(+fixedMin, +fixedMax);
- scale.setInterval((fixedMax - fixedMin) / splitNumber);
- } else if (fixedMin != null) {
- var max; // User set min, expand extent on the other side
-
- do {
- max = fixedMin + interval * splitNumber;
- scale.setExtent(+fixedMin, max); // Interval must been set after extent
- // FIXME
-
- scale.setInterval(interval);
- interval = increaseInterval(interval);
- } while (max < rawExtent[1] && isFinite(max) && isFinite(rawExtent[1]));
- } else if (fixedMax != null) {
- var min; // User set min, expand extent on the other side
-
- do {
- min = fixedMax - interval * splitNumber;
- scale.setExtent(min, +fixedMax);
- scale.setInterval(interval);
- interval = increaseInterval(interval);
- } while (min > rawExtent[0] && isFinite(min) && isFinite(rawExtent[0]));
- } else {
- var nicedSplitNumber = scale.getTicks().length - 1;
-
- if (nicedSplitNumber > splitNumber) {
- interval = increaseInterval(interval);
- } // PENDING
-
-
- var center = Math.round((rawExtent[0] + rawExtent[1]) / 2 / interval) * interval;
- var halfSplitNumber = Math.round(splitNumber / 2);
- scale.setExtent(numberUtil.round(center - halfSplitNumber * interval), numberUtil.round(center + (splitNumber - halfSplitNumber) * interval));
- scale.setInterval(interval);
- }
- });
- };
- /**
- * Radar dimensions is based on the data
- * @type {Array}
- */
-
-
- Radar.dimensions = [];
-
- Radar.create = function (ecModel, api) {
- var radarList = [];
- ecModel.eachComponent('radar', function (radarModel) {
- var radar = new Radar(radarModel, ecModel, api);
- radarList.push(radar);
- radarModel.coordinateSystem = radar;
- });
- ecModel.eachSeriesByType('radar', function (radarSeries) {
- if (radarSeries.get('coordinateSystem') === 'radar') {
- // Inject coordinate system
- radarSeries.coordinateSystem = radarList[radarSeries.get('radarIndex') || 0];
- }
- });
- return radarList;
- };
-
- CoordinateSystem.register('radar', Radar);
- var _default = Radar;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2582:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var Axis = __webpack_require__(1484);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function IndicatorAxis(dim, scale, radiusExtent) {
- Axis.call(this, dim, scale, radiusExtent);
- /**
- * Axis type
- * - 'category'
- * - 'value'
- * - 'time'
- * - 'log'
- * @type {string}
- */
-
- this.type = 'value';
- this.angle = 0;
- /**
- * Indicator name
- * @type {string}
- */
-
- this.name = '';
- /**
- * @type {module:echarts/model/Model}
- */
-
- this.model;
- }
-
- zrUtil.inherits(IndicatorAxis, Axis);
- var _default = IndicatorAxis;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2583:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var axisDefault = __webpack_require__(2295);
-
- var Model = __webpack_require__(1317);
-
- var axisModelCommonMixin = __webpack_require__(1603);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var valueAxisDefault = axisDefault.valueAxis;
-
- function defaultsShow(opt, show) {
- return zrUtil.defaults({
- show: show
- }, opt);
- }
-
- var RadarModel = echarts.extendComponentModel({
- type: 'radar',
- optionUpdated: function () {
- var boundaryGap = this.get('boundaryGap');
- var splitNumber = this.get('splitNumber');
- var scale = this.get('scale');
- var axisLine = this.get('axisLine');
- var axisTick = this.get('axisTick');
- var axisType = this.get('axisType');
- var axisLabel = this.get('axisLabel');
- var nameTextStyle = this.get('name');
- var showName = this.get('name.show');
- var nameFormatter = this.get('name.formatter');
- var nameGap = this.get('nameGap');
- var triggerEvent = this.get('triggerEvent');
- var indicatorModels = zrUtil.map(this.get('indicator') || [], function (indicatorOpt) {
- // PENDING
- if (indicatorOpt.max != null && indicatorOpt.max > 0 && !indicatorOpt.min) {
- indicatorOpt.min = 0;
- } else if (indicatorOpt.min != null && indicatorOpt.min < 0 && !indicatorOpt.max) {
- indicatorOpt.max = 0;
- }
-
- var iNameTextStyle = nameTextStyle;
-
- if (indicatorOpt.color != null) {
- iNameTextStyle = zrUtil.defaults({
- color: indicatorOpt.color
- }, nameTextStyle);
- } // Use same configuration
-
-
- indicatorOpt = zrUtil.merge(zrUtil.clone(indicatorOpt), {
- boundaryGap: boundaryGap,
- splitNumber: splitNumber,
- scale: scale,
- axisLine: axisLine,
- axisTick: axisTick,
- axisType: axisType,
- axisLabel: axisLabel,
- // Compatible with 2 and use text
- name: indicatorOpt.text,
- nameLocation: 'end',
- nameGap: nameGap,
- // min: 0,
- nameTextStyle: iNameTextStyle,
- triggerEvent: triggerEvent
- }, false);
-
- if (!showName) {
- indicatorOpt.name = '';
- }
-
- if (typeof nameFormatter === 'string') {
- var indName = indicatorOpt.name;
- indicatorOpt.name = nameFormatter.replace('{value}', indName != null ? indName : '');
- } else if (typeof nameFormatter === 'function') {
- indicatorOpt.name = nameFormatter(indicatorOpt.name, indicatorOpt);
- }
-
- var model = zrUtil.extend(new Model(indicatorOpt, null, this.ecModel), axisModelCommonMixin); // For triggerEvent.
-
- model.mainType = 'radar';
- model.componentIndex = this.componentIndex;
- return model;
- }, this);
-
- this.getIndicatorModels = function () {
- return indicatorModels;
- };
- },
- defaultOption: {
- zlevel: 0,
- z: 0,
- center: ['50%', '50%'],
- radius: '75%',
- startAngle: 90,
- name: {
- show: true // formatter: null
- // textStyle: {}
-
- },
- boundaryGap: [0, 0],
- splitNumber: 5,
- nameGap: 15,
- scale: false,
- // Polygon or circle
- shape: 'polygon',
- axisLine: zrUtil.merge({
- lineStyle: {
- color: '#bbb'
- }
- }, valueAxisDefault.axisLine),
- axisLabel: defaultsShow(valueAxisDefault.axisLabel, false),
- axisTick: defaultsShow(valueAxisDefault.axisTick, false),
- axisType: 'interval',
- splitLine: defaultsShow(valueAxisDefault.splitLine, true),
- splitArea: defaultsShow(valueAxisDefault.splitArea, true),
- // {text, min, max}
- indicator: []
- }
- });
- var _default = RadarModel;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2584:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var AxisBuilder = __webpack_require__(1485);
-
- var graphic = __webpack_require__(906);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var axisBuilderAttrs = ['axisLine', 'axisTickLabel', 'axisName'];
-
- var _default = echarts.extendComponentView({
- type: 'radar',
- render: function (radarModel, ecModel, api) {
- var group = this.group;
- group.removeAll();
-
- this._buildAxes(radarModel);
-
- this._buildSplitLineAndArea(radarModel);
- },
- _buildAxes: function (radarModel) {
- var radar = radarModel.coordinateSystem;
- var indicatorAxes = radar.getIndicatorAxes();
- var axisBuilders = zrUtil.map(indicatorAxes, function (indicatorAxis) {
- var axisBuilder = new AxisBuilder(indicatorAxis.model, {
- position: [radar.cx, radar.cy],
- rotation: indicatorAxis.angle,
- labelDirection: -1,
- tickDirection: -1,
- nameDirection: 1
- });
- return axisBuilder;
- });
- zrUtil.each(axisBuilders, function (axisBuilder) {
- zrUtil.each(axisBuilderAttrs, axisBuilder.add, axisBuilder);
- this.group.add(axisBuilder.getGroup());
- }, this);
- },
- _buildSplitLineAndArea: function (radarModel) {
- var radar = radarModel.coordinateSystem;
- var indicatorAxes = radar.getIndicatorAxes();
-
- if (!indicatorAxes.length) {
- return;
- }
-
- var shape = radarModel.get('shape');
- var splitLineModel = radarModel.getModel('splitLine');
- var splitAreaModel = radarModel.getModel('splitArea');
- var lineStyleModel = splitLineModel.getModel('lineStyle');
- var areaStyleModel = splitAreaModel.getModel('areaStyle');
- var showSplitLine = splitLineModel.get('show');
- var showSplitArea = splitAreaModel.get('show');
- var splitLineColors = lineStyleModel.get('color');
- var splitAreaColors = areaStyleModel.get('color');
- splitLineColors = zrUtil.isArray(splitLineColors) ? splitLineColors : [splitLineColors];
- splitAreaColors = zrUtil.isArray(splitAreaColors) ? splitAreaColors : [splitAreaColors];
- var splitLines = [];
- var splitAreas = [];
-
- function getColorIndex(areaOrLine, areaOrLineColorList, idx) {
- var colorIndex = idx % areaOrLineColorList.length;
- areaOrLine[colorIndex] = areaOrLine[colorIndex] || [];
- return colorIndex;
- }
-
- if (shape === 'circle') {
- var ticksRadius = indicatorAxes[0].getTicksCoords();
- var cx = radar.cx;
- var cy = radar.cy;
-
- for (var i = 0; i < ticksRadius.length; i++) {
- if (showSplitLine) {
- var colorIndex = getColorIndex(splitLines, splitLineColors, i);
- splitLines[colorIndex].push(new graphic.Circle({
- shape: {
- cx: cx,
- cy: cy,
- r: ticksRadius[i].coord
- }
- }));
- }
-
- if (showSplitArea && i < ticksRadius.length - 1) {
- var colorIndex = getColorIndex(splitAreas, splitAreaColors, i);
- splitAreas[colorIndex].push(new graphic.Ring({
- shape: {
- cx: cx,
- cy: cy,
- r0: ticksRadius[i].coord,
- r: ticksRadius[i + 1].coord
- }
- }));
- }
- }
- } // Polyyon
- else {
- var realSplitNumber;
- var axesTicksPoints = zrUtil.map(indicatorAxes, function (indicatorAxis, idx) {
- var ticksCoords = indicatorAxis.getTicksCoords();
- realSplitNumber = realSplitNumber == null ? ticksCoords.length - 1 : Math.min(ticksCoords.length - 1, realSplitNumber);
- return zrUtil.map(ticksCoords, function (tickCoord) {
- return radar.coordToPoint(tickCoord.coord, idx);
- });
- });
- var prevPoints = [];
-
- for (var i = 0; i <= realSplitNumber; i++) {
- var points = [];
-
- for (var j = 0; j < indicatorAxes.length; j++) {
- points.push(axesTicksPoints[j][i]);
- } // Close
-
-
- if (points[0]) {
- points.push(points[0].slice());
- } else {}
-
- if (showSplitLine) {
- var colorIndex = getColorIndex(splitLines, splitLineColors, i);
- splitLines[colorIndex].push(new graphic.Polyline({
- shape: {
- points: points
- }
- }));
- }
-
- if (showSplitArea && prevPoints) {
- var colorIndex = getColorIndex(splitAreas, splitAreaColors, i - 1);
- splitAreas[colorIndex].push(new graphic.Polygon({
- shape: {
- points: points.concat(prevPoints)
- }
- }));
- }
-
- prevPoints = points.slice().reverse();
- }
- }
-
- var lineStyle = lineStyleModel.getLineStyle();
- var areaStyle = areaStyleModel.getAreaStyle(); // Add splitArea before splitLine
-
- zrUtil.each(splitAreas, function (splitAreas, idx) {
- this.group.add(graphic.mergePath(splitAreas, {
- style: zrUtil.defaults({
- stroke: 'none',
- fill: splitAreaColors[idx % splitAreaColors.length]
- }, areaStyle),
- silent: true
- }));
- }, this);
- zrUtil.each(splitLines, function (splitLines, idx) {
- this.group.add(graphic.mergePath(splitLines, {
- style: zrUtil.defaults({
- fill: 'none',
- stroke: splitLineColors[idx % splitLineColors.length]
- }, lineStyle),
- silent: true
- }));
- }, this);
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2585:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var SeriesModel = __webpack_require__(1322);
-
- var createListSimply = __webpack_require__(1604);
-
- var zrUtil = __webpack_require__(864);
-
- var _format = __webpack_require__(1186);
-
- var encodeHTML = _format.encodeHTML;
-
- var LegendVisualProvider = __webpack_require__(1665);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var RadarSeries = SeriesModel.extend({
- type: 'series.radar',
- dependencies: ['radar'],
- // Overwrite
- init: function (option) {
- RadarSeries.superApply(this, 'init', arguments); // Enable legend selection for each data item
- // Use a function instead of direct access because data reference may changed
-
- this.legendVisualProvider = new LegendVisualProvider(zrUtil.bind(this.getData, this), zrUtil.bind(this.getRawData, this));
- },
- getInitialData: function (option, ecModel) {
- return createListSimply(this, {
- generateCoord: 'indicator_',
- generateCoordCount: Infinity
- });
- },
- formatTooltip: function (dataIndex) {
- var data = this.getData();
- var coordSys = this.coordinateSystem;
- var indicatorAxes = coordSys.getIndicatorAxes();
- var name = this.getData().getName(dataIndex);
- return encodeHTML(name === '' ? this.name : name) + '<br/>' + zrUtil.map(indicatorAxes, function (axis, idx) {
- var val = data.get(data.mapDimension(axis.dim), dataIndex);
- return encodeHTML(axis.name + ' : ' + val);
- }).join('<br />');
- },
- defaultOption: {
- zlevel: 0,
- z: 2,
- coordinateSystem: 'radar',
- legendHoverLink: true,
- radarIndex: 0,
- lineStyle: {
- width: 2,
- type: 'solid'
- },
- label: {
- position: 'top'
- },
- // areaStyle: {
- // },
- // itemStyle: {}
- symbol: 'emptyCircle',
- symbolSize: 4 // symbolRotate: null
-
- }
- });
- var _default = RadarSeries;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2586:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var graphic = __webpack_require__(906);
-
- var zrUtil = __webpack_require__(864);
-
- var symbolUtil = __webpack_require__(1404);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function normalizeSymbolSize(symbolSize) {
- if (!zrUtil.isArray(symbolSize)) {
- symbolSize = [+symbolSize, +symbolSize];
- }
-
- return symbolSize;
- }
-
- var _default = echarts.extendChartView({
- type: 'radar',
- render: function (seriesModel, ecModel, api) {
- var polar = seriesModel.coordinateSystem;
- var group = this.group;
- var data = seriesModel.getData();
- var oldData = this._data;
-
- function createSymbol(data, idx) {
- var symbolType = data.getItemVisual(idx, 'symbol') || 'circle';
- var color = data.getItemVisual(idx, 'color');
-
- if (symbolType === 'none') {
- return;
- }
-
- var symbolSize = normalizeSymbolSize(data.getItemVisual(idx, 'symbolSize'));
- var symbolPath = symbolUtil.createSymbol(symbolType, -1, -1, 2, 2, color);
- symbolPath.attr({
- style: {
- strokeNoScale: true
- },
- z2: 100,
- scale: [symbolSize[0] / 2, symbolSize[1] / 2]
- });
- return symbolPath;
- }
-
- function updateSymbols(oldPoints, newPoints, symbolGroup, data, idx, isInit) {
- // Simply rerender all
- symbolGroup.removeAll();
-
- for (var i = 0; i < newPoints.length - 1; i++) {
- var symbolPath = createSymbol(data, idx);
-
- if (symbolPath) {
- symbolPath.__dimIdx = i;
-
- if (oldPoints[i]) {
- symbolPath.attr('position', oldPoints[i]);
- graphic[isInit ? 'initProps' : 'updateProps'](symbolPath, {
- position: newPoints[i]
- }, seriesModel, idx);
- } else {
- symbolPath.attr('position', newPoints[i]);
- }
-
- symbolGroup.add(symbolPath);
- }
- }
- }
-
- function getInitialPoints(points) {
- return zrUtil.map(points, function (pt) {
- return [polar.cx, polar.cy];
- });
- }
-
- data.diff(oldData).add(function (idx) {
- var points = data.getItemLayout(idx);
-
- if (!points) {
- return;
- }
-
- var polygon = new graphic.Polygon();
- var polyline = new graphic.Polyline();
- var target = {
- shape: {
- points: points
- }
- };
- polygon.shape.points = getInitialPoints(points);
- polyline.shape.points = getInitialPoints(points);
- graphic.initProps(polygon, target, seriesModel, idx);
- graphic.initProps(polyline, target, seriesModel, idx);
- var itemGroup = new graphic.Group();
- var symbolGroup = new graphic.Group();
- itemGroup.add(polyline);
- itemGroup.add(polygon);
- itemGroup.add(symbolGroup);
- updateSymbols(polyline.shape.points, points, symbolGroup, data, idx, true);
- data.setItemGraphicEl(idx, itemGroup);
- }).update(function (newIdx, oldIdx) {
- var itemGroup = oldData.getItemGraphicEl(oldIdx);
- var polyline = itemGroup.childAt(0);
- var polygon = itemGroup.childAt(1);
- var symbolGroup = itemGroup.childAt(2);
- var target = {
- shape: {
- points: data.getItemLayout(newIdx)
- }
- };
-
- if (!target.shape.points) {
- return;
- }
-
- updateSymbols(polyline.shape.points, target.shape.points, symbolGroup, data, newIdx, false);
- graphic.updateProps(polyline, target, seriesModel);
- graphic.updateProps(polygon, target, seriesModel);
- data.setItemGraphicEl(newIdx, itemGroup);
- }).remove(function (idx) {
- group.remove(oldData.getItemGraphicEl(idx));
- }).execute();
- data.eachItemGraphicEl(function (itemGroup, idx) {
- var itemModel = data.getItemModel(idx);
- var polyline = itemGroup.childAt(0);
- var polygon = itemGroup.childAt(1);
- var symbolGroup = itemGroup.childAt(2);
- var color = data.getItemVisual(idx, 'color');
- group.add(itemGroup);
- polyline.useStyle(zrUtil.defaults(itemModel.getModel('lineStyle').getLineStyle(), {
- fill: 'none',
- stroke: color
- }));
- polyline.hoverStyle = itemModel.getModel('emphasis.lineStyle').getLineStyle();
- var areaStyleModel = itemModel.getModel('areaStyle');
- var hoverAreaStyleModel = itemModel.getModel('emphasis.areaStyle');
- var polygonIgnore = areaStyleModel.isEmpty() && areaStyleModel.parentModel.isEmpty();
- var hoverPolygonIgnore = hoverAreaStyleModel.isEmpty() && hoverAreaStyleModel.parentModel.isEmpty();
- hoverPolygonIgnore = hoverPolygonIgnore && polygonIgnore;
- polygon.ignore = polygonIgnore;
- polygon.useStyle(zrUtil.defaults(areaStyleModel.getAreaStyle(), {
- fill: color,
- opacity: 0.7
- }));
- polygon.hoverStyle = hoverAreaStyleModel.getAreaStyle();
- var itemStyle = itemModel.getModel('itemStyle').getItemStyle(['color']);
- var itemHoverStyle = itemModel.getModel('emphasis.itemStyle').getItemStyle();
- var labelModel = itemModel.getModel('label');
- var labelHoverModel = itemModel.getModel('emphasis.label');
- symbolGroup.eachChild(function (symbolPath) {
- symbolPath.setStyle(itemStyle);
- symbolPath.hoverStyle = zrUtil.clone(itemHoverStyle);
- var defaultText = data.get(data.dimensions[symbolPath.__dimIdx], idx);
- (defaultText == null || isNaN(defaultText)) && (defaultText = '');
- graphic.setLabelStyle(symbolPath.style, symbolPath.hoverStyle, labelModel, labelHoverModel, {
- labelFetcher: data.hostModel,
- labelDataIndex: idx,
- labelDimIndex: symbolPath.__dimIdx,
- defaultText: defaultText,
- autoColor: color,
- isRectText: true
- });
- });
-
- itemGroup.highDownOnUpdate = function (fromState, toState) {
- polygon.attr('ignore', toState === 'emphasis' ? hoverPolygonIgnore : polygonIgnore);
- };
-
- graphic.setHoverStyle(itemGroup);
- });
- this._data = data;
- },
- remove: function () {
- this.group.removeAll();
- this._data = null;
- },
- dispose: function () {}
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2587:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function _default(ecModel) {
- ecModel.eachSeriesByType('radar', function (seriesModel) {
- var data = seriesModel.getData();
- var points = [];
- var coordSys = seriesModel.coordinateSystem;
-
- if (!coordSys) {
- return;
- }
-
- var axes = coordSys.getIndicatorAxes();
- zrUtil.each(axes, function (axis, axisIndex) {
- data.each(data.mapDimension(axes[axisIndex].dim), function (val, dataIndex) {
- points[dataIndex] = points[dataIndex] || [];
- var point = coordSys.dataToPoint(val, axisIndex);
- points[dataIndex][axisIndex] = isValidPoint(point) ? point : getValueMissingPoint(coordSys);
- });
- }); // Close polygon
-
- data.each(function (idx) {
- // TODO
- // Is it appropriate to connect to the next data when some data is missing?
- // Or, should trade it like `connectNull` in line chart?
- var firstPoint = zrUtil.find(points[idx], function (point) {
- return isValidPoint(point);
- }) || getValueMissingPoint(coordSys); // Copy the first actual point to the end of the array
-
- points[idx].push(firstPoint.slice());
- data.setItemLayout(idx, points[idx]);
- });
- });
- }
-
- function isValidPoint(point) {
- return !isNaN(point[0]) && !isNaN(point[1]);
- }
-
- function getValueMissingPoint(coordSys) {
- // It is error-prone to input [NaN, NaN] into polygon, polygon.
- // (probably cause problem when refreshing or animating)
- return [coordSys.cx, coordSys.cy];
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2588:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // Backward compat for radar chart in 2
- function _default(option) {
- var polarOptArr = option.polar;
-
- if (polarOptArr) {
- if (!zrUtil.isArray(polarOptArr)) {
- polarOptArr = [polarOptArr];
- }
-
- var polarNotRadar = [];
- zrUtil.each(polarOptArr, function (polarOpt, idx) {
- if (polarOpt.indicator) {
- if (polarOpt.type && !polarOpt.shape) {
- polarOpt.shape = polarOpt.type;
- }
-
- option.radar = option.radar || [];
-
- if (!zrUtil.isArray(option.radar)) {
- option.radar = [option.radar];
- }
-
- option.radar.push(polarOpt);
- } else {
- polarNotRadar.push(polarOpt);
- }
- });
- option.polar = polarNotRadar;
- }
-
- zrUtil.each(option.series, function (seriesOpt) {
- if (seriesOpt && seriesOpt.type === 'radar' && seriesOpt.polarIndex) {
- seriesOpt.radarIndex = seriesOpt.polarIndex;
- }
- });
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2589:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- __webpack_require__(2590);
-
- __webpack_require__(2597);
-
- __webpack_require__(2302);
-
- __webpack_require__(1909);
-
- var mapSymbolLayout = __webpack_require__(2599);
-
- var mapVisual = __webpack_require__(2600);
-
- var mapDataStatistic = __webpack_require__(2601);
-
- var backwardCompat = __webpack_require__(2602);
-
- var createDataSelectAction = __webpack_require__(2299);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- echarts.registerLayout(mapSymbolLayout);
- echarts.registerVisual(mapVisual);
- echarts.registerProcessor(echarts.PRIORITY.PROCESSOR.STATISTIC, mapDataStatistic);
- echarts.registerPreprocessor(backwardCompat);
- createDataSelectAction('map', [{
- type: 'mapToggleSelect',
- event: 'mapselectchanged',
- method: 'toggleSelected'
- }, {
- type: 'mapSelect',
- event: 'mapselected',
- method: 'select'
- }, {
- type: 'mapUnSelect',
- event: 'mapunselected',
- method: 'unSelect'
- }]);
-
- /***/ }),
-
- /***/ 2590:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var createListSimply = __webpack_require__(1604);
-
- var SeriesModel = __webpack_require__(1322);
-
- var _format = __webpack_require__(1186);
-
- var encodeHTML = _format.encodeHTML;
- var addCommas = _format.addCommas;
-
- var dataSelectableMixin = __webpack_require__(1906);
-
- var _dataProvider = __webpack_require__(1518);
-
- var retrieveRawAttr = _dataProvider.retrieveRawAttr;
-
- var geoSourceManager = __webpack_require__(1794);
-
- var _sourceHelper = __webpack_require__(1457);
-
- var makeSeriesEncodeForNameBased = _sourceHelper.makeSeriesEncodeForNameBased;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var MapSeries = SeriesModel.extend({
- type: 'series.map',
- dependencies: ['geo'],
- layoutMode: 'box',
-
- /**
- * Only first map series of same mapType will drawMap
- * @type {boolean}
- */
- needsDrawMap: false,
-
- /**
- * Group of all map series with same mapType
- * @type {boolean}
- */
- seriesGroup: [],
- getInitialData: function (option) {
- var data = createListSimply(this, {
- coordDimensions: ['value'],
- encodeDefaulter: zrUtil.curry(makeSeriesEncodeForNameBased, this)
- });
- var valueDim = data.mapDimension('value');
- var dataNameMap = zrUtil.createHashMap();
- var selectTargetList = [];
- var toAppendNames = [];
-
- for (var i = 0, len = data.count(); i < len; i++) {
- var name = data.getName(i);
- dataNameMap.set(name, true);
- selectTargetList.push({
- name: name,
- value: data.get(valueDim, i),
- selected: retrieveRawAttr(data, i, 'selected')
- });
- }
-
- var geoSource = geoSourceManager.load(this.getMapType(), this.option.nameMap);
- zrUtil.each(geoSource.regions, function (region) {
- var name = region.name;
-
- if (!dataNameMap.get(name)) {
- selectTargetList.push({
- name: name
- });
- toAppendNames.push(name);
- }
- });
- this.updateSelectedMap(selectTargetList); // Complete data with missing regions. The consequent processes (like visual
- // map and render) can not be performed without a "full data". For example,
- // find `dataIndex` by name.
-
- data.appendValues([], toAppendNames);
- return data;
- },
-
- /**
- * If no host geo model, return null, which means using a
- * inner exclusive geo model.
- */
- getHostGeoModel: function () {
- var geoIndex = this.option.geoIndex;
- return geoIndex != null ? this.dependentModels.geo[geoIndex] : null;
- },
- getMapType: function () {
- return (this.getHostGeoModel() || this).option.map;
- },
- // _fillOption: function (option, mapName) {
- // Shallow clone
- // option = zrUtil.extend({}, option);
- // option.data = geoCreator.getFilledRegions(option.data, mapName, option.nameMap);
- // return option;
- // },
- getRawValue: function (dataIndex) {
- // Use value stored in data instead because it is calculated from multiple series
- // FIXME Provide all value of multiple series ?
- var data = this.getData();
- return data.get(data.mapDimension('value'), dataIndex);
- },
-
- /**
- * Get model of region
- * @param {string} name
- * @return {module:echarts/model/Model}
- */
- getRegionModel: function (regionName) {
- var data = this.getData();
- return data.getItemModel(data.indexOfName(regionName));
- },
-
- /**
- * Map tooltip formatter
- *
- * @param {number} dataIndex
- */
- formatTooltip: function (dataIndex) {
- // FIXME orignalData and data is a bit confusing
- var data = this.getData();
- var formattedValue = addCommas(this.getRawValue(dataIndex));
- var name = data.getName(dataIndex);
- var seriesGroup = this.seriesGroup;
- var seriesNames = [];
-
- for (var i = 0; i < seriesGroup.length; i++) {
- var otherIndex = seriesGroup[i].originalData.indexOfName(name);
- var valueDim = data.mapDimension('value');
-
- if (!isNaN(seriesGroup[i].originalData.get(valueDim, otherIndex))) {
- seriesNames.push(encodeHTML(seriesGroup[i].name));
- }
- }
-
- return seriesNames.join(', ') + '<br />' + encodeHTML(name + ' : ' + formattedValue);
- },
-
- /**
- * @implement
- */
- getTooltipPosition: function (dataIndex) {
- if (dataIndex != null) {
- var name = this.getData().getName(dataIndex);
- var geo = this.coordinateSystem;
- var region = geo.getRegion(name);
- return region && geo.dataToPoint(region.center);
- }
- },
- setZoom: function (zoom) {
- this.option.zoom = zoom;
- },
- setCenter: function (center) {
- this.option.center = center;
- },
- defaultOption: {
- // 一级层叠
- zlevel: 0,
- // 二级层叠
- z: 2,
- coordinateSystem: 'geo',
- // map should be explicitly specified since ec3.
- map: '',
- // If `geoIndex` is not specified, a exclusive geo will be
- // created. Otherwise use the specified geo component, and
- // `map` and `mapType` are ignored.
- // geoIndex: 0,
- // 'center' | 'left' | 'right' | 'x%' | {number}
- left: 'center',
- // 'center' | 'top' | 'bottom' | 'x%' | {number}
- top: 'center',
- // right
- // bottom
- // width:
- // height
- // Aspect is width / height. Inited to be geoJson bbox aspect
- // This parameter is used for scale this aspect
- aspectScale: 0.75,
- ///// Layout with center and size
- // If you wan't to put map in a fixed size box with right aspect ratio
- // This two properties may more conveninet
- // layoutCenter: [50%, 50%]
- // layoutSize: 100
- // 数值合并方式,默认加和,可选为:
- // 'sum' | 'average' | 'max' | 'min'
- // mapValueCalculation: 'sum',
- // 地图数值计算结果小数精度
- // mapValuePrecision: 0,
- // 显示图例颜色标识(系列标识的小圆点),图例开启时有效
- showLegendSymbol: true,
- // 选择模式,默认关闭,可选single,multiple
- // selectedMode: false,
- dataRangeHoverLink: true,
- // 是否开启缩放及漫游模式
- // roam: false,
- // Define left-top, right-bottom coords to control view
- // For example, [ [180, 90], [-180, -90] ],
- // higher priority than center and zoom
- boundingCoords: null,
- // Default on center of map
- center: null,
- zoom: 1,
- scaleLimit: null,
- label: {
- show: false,
- color: '#000'
- },
- // scaleLimit: null,
- itemStyle: {
- borderWidth: 0.5,
- borderColor: '#444',
- areaColor: '#eee'
- },
- emphasis: {
- label: {
- show: true,
- color: 'rgb(100,0,0)'
- },
- itemStyle: {
- areaColor: 'rgba(255,215,0,0.8)'
- }
- }
- }
- });
- zrUtil.mixin(MapSeries, dataSelectableMixin);
- var _default = MapSeries;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2591:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _util = __webpack_require__(864);
-
- var each = _util.each;
-
- var parseGeoJson = __webpack_require__(2289);
-
- var _model = __webpack_require__(1064);
-
- var makeInner = _model.makeInner;
-
- var fixNanhai = __webpack_require__(2592);
-
- var fixTextCoord = __webpack_require__(2593);
-
- var fixGeoCoord = __webpack_require__(2594);
-
- var fixDiaoyuIsland = __webpack_require__(2595);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // Built-in GEO fixer.
- var inner = makeInner();
- var _default = {
- /**
- * @param {string} mapName
- * @param {Object} mapRecord {specialAreas, geoJSON}
- * @return {Object} {regions, boundingRect}
- */
- load: function (mapName, mapRecord) {
- var parsed = inner(mapRecord).parsed;
-
- if (parsed) {
- return parsed;
- }
-
- var specialAreas = mapRecord.specialAreas || {};
- var geoJSON = mapRecord.geoJSON;
- var regions; // https://jsperf.com/try-catch-performance-overhead
-
- try {
- regions = geoJSON ? parseGeoJson(geoJSON) : [];
- } catch (e) {
- throw new Error('Invalid geoJson format\n' + e.message);
- }
-
- fixNanhai(mapName, regions);
- each(regions, function (region) {
- var regionName = region.name;
- fixTextCoord(mapName, region);
- fixGeoCoord(mapName, region);
- fixDiaoyuIsland(mapName, region); // Some area like Alaska in USA map needs to be tansformed
- // to look better
-
- var specialArea = specialAreas[regionName];
-
- if (specialArea) {
- region.transformTo(specialArea.left, specialArea.top, specialArea.width, specialArea.height);
- }
- });
- return inner(mapRecord).parsed = {
- regions: regions,
- boundingRect: getBoundingRect(regions)
- };
- }
- };
-
- function getBoundingRect(regions) {
- var rect;
-
- for (var i = 0; i < regions.length; i++) {
- var regionRect = regions[i].getBoundingRect();
- rect = rect || regionRect.clone();
- rect.union(regionRect);
- }
-
- return rect;
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2592:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var Region = __webpack_require__(2290);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // Fix for 南海诸岛
- var geoCoord = [126, 25];
- var points = [[[0, 3.5], [7, 11.2], [15, 11.9], [30, 7], [42, 0.7], [52, 0.7], [56, 7.7], [59, 0.7], [64, 0.7], [64, 0], [5, 0], [0, 3.5]], [[13, 16.1], [19, 14.7], [16, 21.7], [11, 23.1], [13, 16.1]], [[12, 32.2], [14, 38.5], [15, 38.5], [13, 32.2], [12, 32.2]], [[16, 47.6], [12, 53.2], [13, 53.2], [18, 47.6], [16, 47.6]], [[6, 64.4], [8, 70], [9, 70], [8, 64.4], [6, 64.4]], [[23, 82.6], [29, 79.8], [30, 79.8], [25, 82.6], [23, 82.6]], [[37, 70.7], [43, 62.3], [44, 62.3], [39, 70.7], [37, 70.7]], [[48, 51.1], [51, 45.5], [53, 45.5], [50, 51.1], [48, 51.1]], [[51, 35], [51, 28.7], [53, 28.7], [53, 35], [51, 35]], [[52, 22.4], [55, 17.5], [56, 17.5], [53, 22.4], [52, 22.4]], [[58, 12.6], [62, 7], [63, 7], [60, 12.6], [58, 12.6]], [[0, 3.5], [0, 93.1], [64, 93.1], [64, 0], [63, 0], [63, 92.4], [1, 92.4], [1, 3.5], [0, 3.5]]];
-
- for (var i = 0; i < points.length; i++) {
- for (var k = 0; k < points[i].length; k++) {
- points[i][k][0] /= 10.5;
- points[i][k][1] /= -10.5 / 0.75;
- points[i][k][0] += geoCoord[0];
- points[i][k][1] += geoCoord[1];
- }
- }
-
- function _default(mapType, regions) {
- if (mapType === 'china') {
- regions.push(new Region('南海诸岛', zrUtil.map(points, function (exterior) {
- return {
- type: 'polygon',
- exterior: exterior
- };
- }), geoCoord));
- }
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2593:
- /***/ (function(module, exports) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var coordsOffsetMap = {
- '南海诸岛': [32, 80],
- // 全国
- '广东': [0, -10],
- '香港': [10, 5],
- '澳门': [-10, 10],
- //'北京': [-10, 0],
- '天津': [5, 5]
- };
-
- function _default(mapType, region) {
- if (mapType === 'china') {
- var coordFix = coordsOffsetMap[region.name];
-
- if (coordFix) {
- var cp = region.center;
- cp[0] += coordFix[0] / 10.5;
- cp[1] += -coordFix[1] / (10.5 / 0.75);
- }
- }
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2594:
- /***/ (function(module, exports) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var geoCoordMap = {
- 'Russia': [100, 60],
- 'United States': [-99, 38],
- 'United States of America': [-99, 38]
- };
-
- function _default(mapType, region) {
- if (mapType === 'world') {
- var geoCoord = geoCoordMap[region.name];
-
- if (geoCoord) {
- var cp = region.center;
- cp[0] = geoCoord[0];
- cp[1] = geoCoord[1];
- }
- }
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2595:
- /***/ (function(module, exports) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // Fix for 钓鱼岛
- // var Region = require('../Region');
- // var zrUtil = require('zrender/src/core/util');
- // var geoCoord = [126, 25];
- var points = [[[123.45165252685547, 25.73527164402261], [123.49731445312499, 25.73527164402261], [123.49731445312499, 25.750734064600884], [123.45165252685547, 25.750734064600884], [123.45165252685547, 25.73527164402261]]];
-
- function _default(mapType, region) {
- if (mapType === 'china' && region.name === '台湾') {
- region.geometries.push({
- type: 'polygon',
- exterior: points[0]
- });
- }
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2596:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _parseSVG = __webpack_require__(2282);
-
- var parseSVG = _parseSVG.parseSVG;
- var makeViewBoxTransform = _parseSVG.makeViewBoxTransform;
-
- var Group = __webpack_require__(1597);
-
- var Rect = __webpack_require__(1897);
-
- var _util = __webpack_require__(864);
-
- var assert = _util.assert;
- var createHashMap = _util.createHashMap;
-
- var BoundingRect = __webpack_require__(1185);
-
- var _model = __webpack_require__(1064);
-
- var makeInner = _model.makeInner;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var inner = makeInner();
- var _default = {
- /**
- * @param {string} mapName
- * @param {Object} mapRecord {specialAreas, geoJSON}
- * @return {Object} {root, boundingRect}
- */
- load: function (mapName, mapRecord) {
- var originRoot = inner(mapRecord).originRoot;
-
- if (originRoot) {
- return {
- root: originRoot,
- boundingRect: inner(mapRecord).boundingRect
- };
- }
-
- var graphic = buildGraphic(mapRecord);
- inner(mapRecord).originRoot = graphic.root;
- inner(mapRecord).boundingRect = graphic.boundingRect;
- return graphic;
- },
- makeGraphic: function (mapName, mapRecord, hostKey) {
- // For performance consideration (in large SVG), graphic only maked
- // when necessary and reuse them according to hostKey.
- var field = inner(mapRecord);
- var rootMap = field.rootMap || (field.rootMap = createHashMap());
- var root = rootMap.get(hostKey);
-
- if (root) {
- return root;
- }
-
- var originRoot = field.originRoot;
- var boundingRect = field.boundingRect; // For performance, if originRoot is not used by a view,
- // assign it to a view, but not reproduce graphic elements.
-
- if (!field.originRootHostKey) {
- field.originRootHostKey = hostKey;
- root = originRoot;
- } else {
- root = buildGraphic(mapRecord, boundingRect).root;
- }
-
- return rootMap.set(hostKey, root);
- },
- removeGraphic: function (mapName, mapRecord, hostKey) {
- var field = inner(mapRecord);
- var rootMap = field.rootMap;
- rootMap && rootMap.removeKey(hostKey);
-
- if (hostKey === field.originRootHostKey) {
- field.originRootHostKey = null;
- }
- }
- };
-
- function buildGraphic(mapRecord, boundingRect) {
- var svgXML = mapRecord.svgXML;
- var result;
- var root;
-
- try {
- result = svgXML && parseSVG(svgXML, {
- ignoreViewBox: true,
- ignoreRootClip: true
- }) || {};
- root = result.root;
- assert(root != null);
- } catch (e) {
- throw new Error('Invalid svg format\n' + e.message);
- }
-
- var svgWidth = result.width;
- var svgHeight = result.height;
- var viewBoxRect = result.viewBoxRect;
-
- if (!boundingRect) {
- boundingRect = svgWidth == null || svgHeight == null ? // If svg width / height not specified, calculate
- // bounding rect as the width / height
- root.getBoundingRect() : new BoundingRect(0, 0, 0, 0);
-
- if (svgWidth != null) {
- boundingRect.width = svgWidth;
- }
-
- if (svgHeight != null) {
- boundingRect.height = svgHeight;
- }
- }
-
- if (viewBoxRect) {
- var viewBoxTransform = makeViewBoxTransform(viewBoxRect, boundingRect.width, boundingRect.height);
- var elRoot = root;
- root = new Group();
- root.add(elRoot);
- elRoot.scale = viewBoxTransform.scale;
- elRoot.position = viewBoxTransform.position;
- }
-
- root.setClipPath(new Rect({
- shape: boundingRect.plain()
- }));
- return {
- root: root,
- boundingRect: boundingRect
- };
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2597:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var graphic = __webpack_require__(906);
-
- var MapDraw = __webpack_require__(2300);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var HIGH_DOWN_PROP = '__seriesMapHighDown';
- var RECORD_VERSION_PROP = '__seriesMapCallKey';
-
- var _default = echarts.extendChartView({
- type: 'map',
- render: function (mapModel, ecModel, api, payload) {
- // Not render if it is an toggleSelect action from self
- if (payload && payload.type === 'mapToggleSelect' && payload.from === this.uid) {
- return;
- }
-
- var group = this.group;
- group.removeAll();
-
- if (mapModel.getHostGeoModel()) {
- return;
- } // Not update map if it is an roam action from self
-
-
- if (!(payload && payload.type === 'geoRoam' && payload.componentType === 'series' && payload.seriesId === mapModel.id)) {
- if (mapModel.needsDrawMap) {
- var mapDraw = this._mapDraw || new MapDraw(api, true);
- group.add(mapDraw.group);
- mapDraw.draw(mapModel, ecModel, api, this, payload);
- this._mapDraw = mapDraw;
- } else {
- // Remove drawed map
- this._mapDraw && this._mapDraw.remove();
- this._mapDraw = null;
- }
- } else {
- var mapDraw = this._mapDraw;
- mapDraw && group.add(mapDraw.group);
- }
-
- mapModel.get('showLegendSymbol') && ecModel.getComponent('legend') && this._renderSymbols(mapModel, ecModel, api);
- },
- remove: function () {
- this._mapDraw && this._mapDraw.remove();
- this._mapDraw = null;
- this.group.removeAll();
- },
- dispose: function () {
- this._mapDraw && this._mapDraw.remove();
- this._mapDraw = null;
- },
- _renderSymbols: function (mapModel, ecModel, api) {
- var originalData = mapModel.originalData;
- var group = this.group;
- originalData.each(originalData.mapDimension('value'), function (value, originalDataIndex) {
- if (isNaN(value)) {
- return;
- }
-
- var layout = originalData.getItemLayout(originalDataIndex);
-
- if (!layout || !layout.point) {
- // Not exists in map
- return;
- }
-
- var point = layout.point;
- var offset = layout.offset;
- var circle = new graphic.Circle({
- style: {
- // Because the special of map draw.
- // Which needs statistic of multiple series and draw on one map.
- // And each series also need a symbol with legend color
- //
- // Layout and visual are put one the different data
- fill: mapModel.getData().getVisual('color')
- },
- shape: {
- cx: point[0] + offset * 9,
- cy: point[1],
- r: 3
- },
- silent: true,
- // Do not overlap the first series, on which labels are displayed.
- z2: 8 + (!offset ? graphic.Z2_EMPHASIS_LIFT + 1 : 0)
- }); // Only the series that has the first value on the same region is in charge of rendering the label.
- // But consider the case:
- // series: [
- // {id: 'X', type: 'map', map: 'm', {data: [{name: 'A', value: 11}, {name: 'B', {value: 22}]},
- // {id: 'Y', type: 'map', map: 'm', {data: [{name: 'A', value: 21}, {name: 'C', {value: 33}]}
- // ]
- // The offset `0` of item `A` is at series `X`, but of item `C` is at series `Y`.
- // For backward compatibility, we follow the rule that render label `A` by the
- // settings on series `X` but render label `C` by the settings on series `Y`.
-
- if (!offset) {
- var fullData = mapModel.mainSeries.getData();
- var name = originalData.getName(originalDataIndex);
- var fullIndex = fullData.indexOfName(name);
- var itemModel = originalData.getItemModel(originalDataIndex);
- var labelModel = itemModel.getModel('label');
- var hoverLabelModel = itemModel.getModel('emphasis.label');
- var regionGroup = fullData.getItemGraphicEl(fullIndex); // `getFormattedLabel` needs to use `getData` inside. Here
- // `mapModel.getData()` is shallow cloned from `mainSeries.getData()`.
- // FIXME
- // If this is not the `mainSeries`, the item model (like label formatter)
- // set on original data item will never get. But it has been working
- // like that from the begining, and this scenario is rarely encountered.
- // So it won't be fixed until have to.
-
- var normalText = zrUtil.retrieve2(mapModel.getFormattedLabel(fullIndex, 'normal'), name);
- var emphasisText = zrUtil.retrieve2(mapModel.getFormattedLabel(fullIndex, 'emphasis'), normalText);
- var highDownRecord = regionGroup[HIGH_DOWN_PROP];
- var recordVersion = Math.random(); // Prevent from register listeners duplicatedly when roaming.
-
- if (!highDownRecord) {
- highDownRecord = regionGroup[HIGH_DOWN_PROP] = {};
- var onEmphasis = zrUtil.curry(onRegionHighDown, true);
- var onNormal = zrUtil.curry(onRegionHighDown, false);
- regionGroup.on('mouseover', onEmphasis).on('mouseout', onNormal).on('emphasis', onEmphasis).on('normal', onNormal);
- } // Prevent removed regions effect current grapics.
-
-
- regionGroup[RECORD_VERSION_PROP] = recordVersion;
- zrUtil.extend(highDownRecord, {
- recordVersion: recordVersion,
- circle: circle,
- labelModel: labelModel,
- hoverLabelModel: hoverLabelModel,
- emphasisText: emphasisText,
- normalText: normalText
- }); // FIXME
- // Consider set option when emphasis.
-
- enterRegionHighDown(highDownRecord, false);
- }
-
- group.add(circle);
- });
- }
- });
-
- function onRegionHighDown(toHighOrDown) {
- var highDownRecord = this[HIGH_DOWN_PROP];
-
- if (highDownRecord && highDownRecord.recordVersion === this[RECORD_VERSION_PROP]) {
- enterRegionHighDown(highDownRecord, toHighOrDown);
- }
- }
-
- function enterRegionHighDown(highDownRecord, toHighOrDown) {
- var circle = highDownRecord.circle;
- var labelModel = highDownRecord.labelModel;
- var hoverLabelModel = highDownRecord.hoverLabelModel;
- var emphasisText = highDownRecord.emphasisText;
- var normalText = highDownRecord.normalText;
-
- if (toHighOrDown) {
- circle.style.extendFrom(graphic.setTextStyle({}, hoverLabelModel, {
- text: hoverLabelModel.get('show') ? emphasisText : null
- }, {
- isRectText: true,
- useInsideStyle: false
- }, true)); // Make label upper than others if overlaps.
-
- circle.__mapOriginalZ2 = circle.z2;
- circle.z2 += graphic.Z2_EMPHASIS_LIFT;
- } else {
- graphic.setTextStyle(circle.style, labelModel, {
- text: labelModel.get('show') ? normalText : null,
- textPosition: labelModel.getShallow('position') || 'bottom'
- }, {
- isRectText: true,
- useInsideStyle: false
- }); // Trigger normalize style like padding.
-
- circle.dirty(false);
-
- if (circle.__mapOriginalZ2 != null) {
- circle.z2 = circle.__mapOriginalZ2;
- circle.__mapOriginalZ2 = null;
- }
- }
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2598:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var BoundingRect = __webpack_require__(1185);
-
- var View = __webpack_require__(1910);
-
- var geoSourceManager = __webpack_require__(1794);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * [Geo description]
- * For backward compatibility, the orginal interface:
- * `name, map, geoJson, specialAreas, nameMap` is kept.
- *
- * @param {string|Object} name
- * @param {string} map Map type
- * Specify the positioned areas by left, top, width, height
- * @param {Object.<string, string>} [nameMap]
- * Specify name alias
- * @param {boolean} [invertLongitute=true]
- */
- function Geo(name, map, nameMap, invertLongitute) {
- View.call(this, name);
- /**
- * Map type
- * @type {string}
- */
-
- this.map = map;
- var source = geoSourceManager.load(map, nameMap);
- this._nameCoordMap = source.nameCoordMap;
- this._regionsMap = source.regionsMap;
- this._invertLongitute = invertLongitute == null ? true : invertLongitute;
- /**
- * @readOnly
- */
-
- this.regions = source.regions;
- /**
- * @type {module:zrender/src/core/BoundingRect}
- */
-
- this._rect = source.boundingRect;
- }
-
- Geo.prototype = {
- constructor: Geo,
- type: 'geo',
-
- /**
- * @param {Array.<string>}
- * @readOnly
- */
- dimensions: ['lng', 'lat'],
-
- /**
- * If contain given lng,lat coord
- * @param {Array.<number>}
- * @readOnly
- */
- containCoord: function (coord) {
- var regions = this.regions;
-
- for (var i = 0; i < regions.length; i++) {
- if (regions[i].contain(coord)) {
- return true;
- }
- }
-
- return false;
- },
-
- /**
- * @override
- */
- transformTo: function (x, y, width, height) {
- var rect = this.getBoundingRect();
- var invertLongitute = this._invertLongitute;
- rect = rect.clone();
-
- if (invertLongitute) {
- // Longitute is inverted
- rect.y = -rect.y - rect.height;
- }
-
- var rawTransformable = this._rawTransformable;
- rawTransformable.transform = rect.calculateTransform(new BoundingRect(x, y, width, height));
- rawTransformable.decomposeTransform();
-
- if (invertLongitute) {
- var scale = rawTransformable.scale;
- scale[1] = -scale[1];
- }
-
- rawTransformable.updateTransform();
-
- this._updateTransform();
- },
-
- /**
- * @param {string} name
- * @return {module:echarts/coord/geo/Region}
- */
- getRegion: function (name) {
- return this._regionsMap.get(name);
- },
- getRegionByCoord: function (coord) {
- var regions = this.regions;
-
- for (var i = 0; i < regions.length; i++) {
- if (regions[i].contain(coord)) {
- return regions[i];
- }
- }
- },
-
- /**
- * Add geoCoord for indexing by name
- * @param {string} name
- * @param {Array.<number>} geoCoord
- */
- addGeoCoord: function (name, geoCoord) {
- this._nameCoordMap.set(name, geoCoord);
- },
-
- /**
- * Get geoCoord by name
- * @param {string} name
- * @return {Array.<number>}
- */
- getGeoCoord: function (name) {
- return this._nameCoordMap.get(name);
- },
-
- /**
- * @override
- */
- getBoundingRect: function () {
- return this._rect;
- },
-
- /**
- * @param {string|Array.<number>} data
- * @param {boolean} noRoam
- * @param {Array.<number>} [out]
- * @return {Array.<number>}
- */
- dataToPoint: function (data, noRoam, out) {
- if (typeof data === 'string') {
- // Map area name to geoCoord
- data = this.getGeoCoord(data);
- }
-
- if (data) {
- return View.prototype.dataToPoint.call(this, data, noRoam, out);
- }
- },
-
- /**
- * @override
- */
- convertToPixel: zrUtil.curry(doConvert, 'dataToPoint'),
-
- /**
- * @override
- */
- convertFromPixel: zrUtil.curry(doConvert, 'pointToData')
- };
- zrUtil.mixin(Geo, View);
-
- function doConvert(methodName, ecModel, finder, value) {
- var geoModel = finder.geoModel;
- var seriesModel = finder.seriesModel;
- var coordSys = geoModel ? geoModel.coordinateSystem : seriesModel ? seriesModel.coordinateSystem // For map.
- || (seriesModel.getReferringComponents('geo')[0] || {}).coordinateSystem : null;
- return coordSys === this ? coordSys[methodName](value) : null;
- }
-
- var _default = Geo;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2599:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function _default(ecModel) {
- var processedMapType = {};
- ecModel.eachSeriesByType('map', function (mapSeries) {
- var mapType = mapSeries.getMapType();
-
- if (mapSeries.getHostGeoModel() || processedMapType[mapType]) {
- return;
- }
-
- var mapSymbolOffsets = {};
- zrUtil.each(mapSeries.seriesGroup, function (subMapSeries) {
- var geo = subMapSeries.coordinateSystem;
- var data = subMapSeries.originalData;
-
- if (subMapSeries.get('showLegendSymbol') && ecModel.getComponent('legend')) {
- data.each(data.mapDimension('value'), function (value, idx) {
- var name = data.getName(idx);
- var region = geo.getRegion(name); // If input series.data is [11, 22, '-'/null/undefined, 44],
- // it will be filled with NaN: [11, 22, NaN, 44] and NaN will
- // not be drawn. So here must validate if value is NaN.
-
- if (!region || isNaN(value)) {
- return;
- }
-
- var offset = mapSymbolOffsets[name] || 0;
- var point = geo.dataToPoint(region.center);
- mapSymbolOffsets[name] = offset + 1;
- data.setItemLayout(idx, {
- point: point,
- offset: offset
- });
- });
- }
- }); // Show label of those region not has legendSymbol(which is offset 0)
-
- var data = mapSeries.getData();
- data.each(function (idx) {
- var name = data.getName(idx);
- var layout = data.getItemLayout(idx) || {};
- layout.showLabel = !mapSymbolOffsets[name];
- data.setItemLayout(idx, layout);
- });
- processedMapType[mapType] = true;
- });
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2600:
- /***/ (function(module, exports) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function _default(ecModel) {
- ecModel.eachSeriesByType('map', function (seriesModel) {
- var colorList = seriesModel.get('color');
- var itemStyleModel = seriesModel.getModel('itemStyle');
- var areaColor = itemStyleModel.get('areaColor');
- var color = itemStyleModel.get('color') || colorList[seriesModel.seriesIndex % colorList.length];
- seriesModel.getData().setVisual({
- 'areaColor': areaColor,
- 'color': color
- });
- });
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2601:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // FIXME 公用?
-
- /**
- * @param {Array.<module:echarts/data/List>} datas
- * @param {string} statisticType 'average' 'sum'
- * @inner
- */
- function dataStatistics(datas, statisticType) {
- var dataNameMap = {};
- zrUtil.each(datas, function (data) {
- data.each(data.mapDimension('value'), function (value, idx) {
- // Add prefix to avoid conflict with Object.prototype.
- var mapKey = 'ec-' + data.getName(idx);
- dataNameMap[mapKey] = dataNameMap[mapKey] || [];
-
- if (!isNaN(value)) {
- dataNameMap[mapKey].push(value);
- }
- });
- });
- return datas[0].map(datas[0].mapDimension('value'), function (value, idx) {
- var mapKey = 'ec-' + datas[0].getName(idx);
- var sum = 0;
- var min = Infinity;
- var max = -Infinity;
- var len = dataNameMap[mapKey].length;
-
- for (var i = 0; i < len; i++) {
- min = Math.min(min, dataNameMap[mapKey][i]);
- max = Math.max(max, dataNameMap[mapKey][i]);
- sum += dataNameMap[mapKey][i];
- }
-
- var result;
-
- if (statisticType === 'min') {
- result = min;
- } else if (statisticType === 'max') {
- result = max;
- } else if (statisticType === 'average') {
- result = sum / len;
- } else {
- result = sum;
- }
-
- return len === 0 ? NaN : result;
- });
- }
-
- function _default(ecModel) {
- var seriesGroups = {};
- ecModel.eachSeriesByType('map', function (seriesModel) {
- var hostGeoModel = seriesModel.getHostGeoModel();
- var key = hostGeoModel ? 'o' + hostGeoModel.id : 'i' + seriesModel.getMapType();
- (seriesGroups[key] = seriesGroups[key] || []).push(seriesModel);
- });
- zrUtil.each(seriesGroups, function (seriesList, key) {
- var data = dataStatistics(zrUtil.map(seriesList, function (seriesModel) {
- return seriesModel.getData();
- }), seriesList[0].get('mapValueCalculation'));
-
- for (var i = 0; i < seriesList.length; i++) {
- seriesList[i].originalData = seriesList[i].getData();
- } // FIXME Put where?
-
-
- for (var i = 0; i < seriesList.length; i++) {
- seriesList[i].seriesGroup = seriesList;
- seriesList[i].needsDrawMap = i === 0 && !seriesList[i].getHostGeoModel();
- seriesList[i].setData(data.cloneShallow());
- seriesList[i].mainSeries = seriesList[0];
- }
- });
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2602:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function _default(option) {
- // Save geoCoord
- var mapSeries = [];
- zrUtil.each(option.series, function (seriesOpt) {
- if (seriesOpt && seriesOpt.type === 'map') {
- mapSeries.push(seriesOpt);
- seriesOpt.map = seriesOpt.map || seriesOpt.mapType; // Put x, y, width, height, x2, y2 in the top level
-
- zrUtil.defaults(seriesOpt, seriesOpt.mapLocation);
- }
- });
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2603:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- __webpack_require__(2604);
-
- __webpack_require__(2605);
-
- __webpack_require__(2606);
-
- var visualSymbol = __webpack_require__(1520);
-
- var treeLayout = __webpack_require__(2607);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- echarts.registerVisual(visualSymbol('tree', 'circle'));
- echarts.registerLayout(treeLayout);
-
- /***/ }),
-
- /***/ 2604:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var SeriesModel = __webpack_require__(1322);
-
- var Tree = __webpack_require__(1911);
-
- var _format = __webpack_require__(1186);
-
- var encodeHTML = _format.encodeHTML;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = SeriesModel.extend({
- type: 'series.tree',
- layoutInfo: null,
- // can support the position parameters 'left', 'top','right','bottom', 'width',
- // 'height' in the setOption() with 'merge' mode normal.
- layoutMode: 'box',
-
- /**
- * Init a tree data structure from data in option series
- * @param {Object} option the object used to config echarts view
- * @return {module:echarts/data/List} storage initial data
- */
- getInitialData: function (option) {
- //create an virtual root
- var root = {
- name: option.name,
- children: option.data
- };
- var leaves = option.leaves || {};
- var treeOption = {};
- treeOption.leaves = leaves;
- var tree = Tree.createTree(root, this, treeOption, beforeLink);
-
- function beforeLink(nodeData) {
- nodeData.wrapMethod('getItemModel', function (model, idx) {
- var node = tree.getNodeByDataIndex(idx);
- var leavesModel = node.getLeavesModel();
-
- if (!node.children.length || !node.isExpand) {
- model.parentModel = leavesModel;
- }
-
- return model;
- });
- }
-
- var treeDepth = 0;
- tree.eachNode('preorder', function (node) {
- if (node.depth > treeDepth) {
- treeDepth = node.depth;
- }
- });
- var expandAndCollapse = option.expandAndCollapse;
- var expandTreeDepth = expandAndCollapse && option.initialTreeDepth >= 0 ? option.initialTreeDepth : treeDepth;
- tree.root.eachNode('preorder', function (node) {
- var item = node.hostTree.data.getRawDataItem(node.dataIndex); // Add item.collapsed != null, because users can collapse node original in the series.data.
-
- node.isExpand = item && item.collapsed != null ? !item.collapsed : node.depth <= expandTreeDepth;
- });
- return tree.data;
- },
-
- /**
- * Make the configuration 'orient' backward compatibly, with 'horizontal = LR', 'vertical = TB'.
- * @returns {string} orient
- */
- getOrient: function () {
- var orient = this.get('orient');
-
- if (orient === 'horizontal') {
- orient = 'LR';
- } else if (orient === 'vertical') {
- orient = 'TB';
- }
-
- return orient;
- },
- setZoom: function (zoom) {
- this.option.zoom = zoom;
- },
- setCenter: function (center) {
- this.option.center = center;
- },
-
- /**
- * @override
- * @param {number} dataIndex
- */
- formatTooltip: function (dataIndex) {
- var tree = this.getData().tree;
- var realRoot = tree.root.children[0];
- var node = tree.getNodeByDataIndex(dataIndex);
- var value = node.getValue();
- var name = node.name;
-
- while (node && node !== realRoot) {
- name = node.parentNode.name + '.' + name;
- node = node.parentNode;
- }
-
- return encodeHTML(name + (isNaN(value) || value == null ? '' : ' : ' + value));
- },
- defaultOption: {
- zlevel: 0,
- z: 2,
- coordinateSystem: 'view',
- // the position of the whole view
- left: '12%',
- top: '12%',
- right: '12%',
- bottom: '12%',
- // the layout of the tree, two value can be selected, 'orthogonal' or 'radial'
- layout: 'orthogonal',
- // true | false | 'move' | 'scale', see module:component/helper/RoamController.
- roam: false,
- // Symbol size scale ratio in roam
- nodeScaleRatio: 0.4,
- // Default on center of graph
- center: null,
- zoom: 1,
- // The orient of orthoginal layout, can be setted to 'LR', 'TB', 'RL', 'BT'.
- // and the backward compatibility configuration 'horizontal = LR', 'vertical = TB'.
- orient: 'LR',
- symbol: 'emptyCircle',
- symbolSize: 7,
- expandAndCollapse: true,
- initialTreeDepth: 2,
- lineStyle: {
- color: '#ccc',
- width: 1.5,
- curveness: 0.5
- },
- itemStyle: {
- color: 'lightsteelblue',
- borderColor: '#c23531',
- borderWidth: 1.5
- },
- label: {
- show: true,
- color: '#555'
- },
- leaves: {
- label: {
- show: true
- }
- },
- animationEasing: 'linear',
- animationDuration: 700,
- animationDurationUpdate: 1000
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2605:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var graphic = __webpack_require__(906);
-
- var SymbolClz = __webpack_require__(1790);
-
- var _layoutHelper = __webpack_require__(2304);
-
- var radialCoordinate = _layoutHelper.radialCoordinate;
-
- var echarts = __webpack_require__(881);
-
- var bbox = __webpack_require__(1784);
-
- var View = __webpack_require__(1910);
-
- var roamHelper = __webpack_require__(1907);
-
- var RoamController = __webpack_require__(1667);
-
- var _cursorHelper = __webpack_require__(1795);
-
- var onIrrelevantElement = _cursorHelper.onIrrelevantElement;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = echarts.extendChartView({
- type: 'tree',
-
- /**
- * Init the chart
- * @override
- * @param {module:echarts/model/Global} ecModel
- * @param {module:echarts/ExtensionAPI} api
- */
- init: function (ecModel, api) {
- /**
- * @private
- * @type {module:echarts/data/Tree}
- */
- this._oldTree;
- /**
- * @private
- * @type {module:zrender/container/Group}
- */
-
- this._mainGroup = new graphic.Group();
- /**
- * @private
- * @type {module:echarts/componet/helper/RoamController}
- */
-
- this._controller = new RoamController(api.getZr());
- this._controllerHost = {
- target: this.group
- };
- this.group.add(this._mainGroup);
- },
- render: function (seriesModel, ecModel, api, payload) {
- var data = seriesModel.getData();
- var layoutInfo = seriesModel.layoutInfo;
- var group = this._mainGroup;
- var layout = seriesModel.get('layout');
-
- if (layout === 'radial') {
- group.attr('position', [layoutInfo.x + layoutInfo.width / 2, layoutInfo.y + layoutInfo.height / 2]);
- } else {
- group.attr('position', [layoutInfo.x, layoutInfo.y]);
- }
-
- this._updateViewCoordSys(seriesModel, layoutInfo, layout);
-
- this._updateController(seriesModel, ecModel, api);
-
- var oldData = this._data;
- var seriesScope = {
- expandAndCollapse: seriesModel.get('expandAndCollapse'),
- layout: layout,
- orient: seriesModel.getOrient(),
- curvature: seriesModel.get('lineStyle.curveness'),
- symbolRotate: seriesModel.get('symbolRotate'),
- symbolOffset: seriesModel.get('symbolOffset'),
- hoverAnimation: seriesModel.get('hoverAnimation'),
- useNameLabel: true,
- fadeIn: true
- };
- data.diff(oldData).add(function (newIdx) {
- if (symbolNeedsDraw(data, newIdx)) {
- // Create node and edge
- updateNode(data, newIdx, null, group, seriesModel, seriesScope);
- }
- }).update(function (newIdx, oldIdx) {
- var symbolEl = oldData.getItemGraphicEl(oldIdx);
-
- if (!symbolNeedsDraw(data, newIdx)) {
- symbolEl && removeNode(oldData, oldIdx, symbolEl, group, seriesModel, seriesScope);
- return;
- } // Update node and edge
-
-
- updateNode(data, newIdx, symbolEl, group, seriesModel, seriesScope);
- }).remove(function (oldIdx) {
- var symbolEl = oldData.getItemGraphicEl(oldIdx); // When remove a collapsed node of subtree, since the collapsed
- // node haven't been initialized with a symbol element,
- // you can't found it's symbol element through index.
- // so if we want to remove the symbol element we should insure
- // that the symbol element is not null.
-
- if (symbolEl) {
- removeNode(oldData, oldIdx, symbolEl, group, seriesModel, seriesScope);
- }
- }).execute();
- this._nodeScaleRatio = seriesModel.get('nodeScaleRatio');
-
- this._updateNodeAndLinkScale(seriesModel);
-
- if (seriesScope.expandAndCollapse === true) {
- data.eachItemGraphicEl(function (el, dataIndex) {
- el.off('click').on('click', function () {
- api.dispatchAction({
- type: 'treeExpandAndCollapse',
- seriesId: seriesModel.id,
- dataIndex: dataIndex
- });
- });
- });
- }
-
- this._data = data;
- },
- _updateViewCoordSys: function (seriesModel) {
- var data = seriesModel.getData();
- var points = [];
- data.each(function (idx) {
- var layout = data.getItemLayout(idx);
-
- if (layout && !isNaN(layout.x) && !isNaN(layout.y)) {
- points.push([+layout.x, +layout.y]);
- }
- });
- var min = [];
- var max = [];
- bbox.fromPoints(points, min, max); // If don't Store min max when collapse the root node after roam,
- // the root node will disappear.
-
- var oldMin = this._min;
- var oldMax = this._max; // If width or height is 0
-
- if (max[0] - min[0] === 0) {
- min[0] = oldMin ? oldMin[0] : min[0] - 1;
- max[0] = oldMax ? oldMax[0] : max[0] + 1;
- }
-
- if (max[1] - min[1] === 0) {
- min[1] = oldMin ? oldMin[1] : min[1] - 1;
- max[1] = oldMax ? oldMax[1] : max[1] + 1;
- }
-
- var viewCoordSys = seriesModel.coordinateSystem = new View();
- viewCoordSys.zoomLimit = seriesModel.get('scaleLimit');
- viewCoordSys.setBoundingRect(min[0], min[1], max[0] - min[0], max[1] - min[1]);
- viewCoordSys.setCenter(seriesModel.get('center'));
- viewCoordSys.setZoom(seriesModel.get('zoom')); // Here we use viewCoordSys just for computing the 'position' and 'scale' of the group
-
- this.group.attr({
- position: viewCoordSys.position,
- scale: viewCoordSys.scale
- });
- this._viewCoordSys = viewCoordSys;
- this._min = min;
- this._max = max;
- },
- _updateController: function (seriesModel, ecModel, api) {
- var controller = this._controller;
- var controllerHost = this._controllerHost;
- var group = this.group;
- controller.setPointerChecker(function (e, x, y) {
- var rect = group.getBoundingRect();
- rect.applyTransform(group.transform);
- return rect.contain(x, y) && !onIrrelevantElement(e, api, seriesModel);
- });
- controller.enable(seriesModel.get('roam'));
- controllerHost.zoomLimit = seriesModel.get('scaleLimit');
- controllerHost.zoom = seriesModel.coordinateSystem.getZoom();
- controller.off('pan').off('zoom').on('pan', function (e) {
- roamHelper.updateViewOnPan(controllerHost, e.dx, e.dy);
- api.dispatchAction({
- seriesId: seriesModel.id,
- type: 'treeRoam',
- dx: e.dx,
- dy: e.dy
- });
- }, this).on('zoom', function (e) {
- roamHelper.updateViewOnZoom(controllerHost, e.scale, e.originX, e.originY);
- api.dispatchAction({
- seriesId: seriesModel.id,
- type: 'treeRoam',
- zoom: e.scale,
- originX: e.originX,
- originY: e.originY
- });
-
- this._updateNodeAndLinkScale(seriesModel);
- }, this);
- },
- _updateNodeAndLinkScale: function (seriesModel) {
- var data = seriesModel.getData();
-
- var nodeScale = this._getNodeGlobalScale(seriesModel);
-
- var invScale = [nodeScale, nodeScale];
- data.eachItemGraphicEl(function (el, idx) {
- el.attr('scale', invScale);
- });
- },
- _getNodeGlobalScale: function (seriesModel) {
- var coordSys = seriesModel.coordinateSystem;
-
- if (coordSys.type !== 'view') {
- return 1;
- }
-
- var nodeScaleRatio = this._nodeScaleRatio;
- var groupScale = coordSys.scale;
- var groupZoom = groupScale && groupScale[0] || 1; // Scale node when zoom changes
-
- var roamZoom = coordSys.getZoom();
- var nodeScale = (roamZoom - 1) * nodeScaleRatio + 1;
- return nodeScale / groupZoom;
- },
- dispose: function () {
- this._controller && this._controller.dispose();
- this._controllerHost = {};
- },
- remove: function () {
- this._mainGroup.removeAll();
-
- this._data = null;
- }
- });
-
- function symbolNeedsDraw(data, dataIndex) {
- var layout = data.getItemLayout(dataIndex);
- return layout && !isNaN(layout.x) && !isNaN(layout.y) && data.getItemVisual(dataIndex, 'symbol') !== 'none';
- }
-
- function getTreeNodeStyle(node, itemModel, seriesScope) {
- seriesScope.itemModel = itemModel;
- seriesScope.itemStyle = itemModel.getModel('itemStyle').getItemStyle();
- seriesScope.hoverItemStyle = itemModel.getModel('emphasis.itemStyle').getItemStyle();
- seriesScope.lineStyle = itemModel.getModel('lineStyle').getLineStyle();
- seriesScope.labelModel = itemModel.getModel('label');
- seriesScope.hoverLabelModel = itemModel.getModel('emphasis.label');
-
- if (node.isExpand === false && node.children.length !== 0) {
- seriesScope.symbolInnerColor = seriesScope.itemStyle.fill;
- } else {
- seriesScope.symbolInnerColor = '#fff';
- }
-
- return seriesScope;
- }
-
- function updateNode(data, dataIndex, symbolEl, group, seriesModel, seriesScope) {
- var isInit = !symbolEl;
- var node = data.tree.getNodeByDataIndex(dataIndex);
- var itemModel = node.getModel();
- var seriesScope = getTreeNodeStyle(node, itemModel, seriesScope);
- var virtualRoot = data.tree.root;
- var source = node.parentNode === virtualRoot ? node : node.parentNode || node;
- var sourceSymbolEl = data.getItemGraphicEl(source.dataIndex);
- var sourceLayout = source.getLayout();
- var sourceOldLayout = sourceSymbolEl ? {
- x: sourceSymbolEl.position[0],
- y: sourceSymbolEl.position[1],
- rawX: sourceSymbolEl.__radialOldRawX,
- rawY: sourceSymbolEl.__radialOldRawY
- } : sourceLayout;
- var targetLayout = node.getLayout();
-
- if (isInit) {
- symbolEl = new SymbolClz(data, dataIndex, seriesScope);
- symbolEl.attr('position', [sourceOldLayout.x, sourceOldLayout.y]);
- } else {
- symbolEl.updateData(data, dataIndex, seriesScope);
- }
-
- symbolEl.__radialOldRawX = symbolEl.__radialRawX;
- symbolEl.__radialOldRawY = symbolEl.__radialRawY;
- symbolEl.__radialRawX = targetLayout.rawX;
- symbolEl.__radialRawY = targetLayout.rawY;
- group.add(symbolEl);
- data.setItemGraphicEl(dataIndex, symbolEl);
- graphic.updateProps(symbolEl, {
- position: [targetLayout.x, targetLayout.y]
- }, seriesModel);
- var symbolPath = symbolEl.getSymbolPath();
-
- if (seriesScope.layout === 'radial') {
- var realRoot = virtualRoot.children[0];
- var rootLayout = realRoot.getLayout();
- var length = realRoot.children.length;
- var rad;
- var isLeft;
-
- if (targetLayout.x === rootLayout.x && node.isExpand === true) {
- var center = {};
- center.x = (realRoot.children[0].getLayout().x + realRoot.children[length - 1].getLayout().x) / 2;
- center.y = (realRoot.children[0].getLayout().y + realRoot.children[length - 1].getLayout().y) / 2;
- rad = Math.atan2(center.y - rootLayout.y, center.x - rootLayout.x);
-
- if (rad < 0) {
- rad = Math.PI * 2 + rad;
- }
-
- isLeft = center.x < rootLayout.x;
-
- if (isLeft) {
- rad = rad - Math.PI;
- }
- } else {
- rad = Math.atan2(targetLayout.y - rootLayout.y, targetLayout.x - rootLayout.x);
-
- if (rad < 0) {
- rad = Math.PI * 2 + rad;
- }
-
- if (node.children.length === 0 || node.children.length !== 0 && node.isExpand === false) {
- isLeft = targetLayout.x < rootLayout.x;
-
- if (isLeft) {
- rad = rad - Math.PI;
- }
- } else {
- isLeft = targetLayout.x > rootLayout.x;
-
- if (!isLeft) {
- rad = rad - Math.PI;
- }
- }
- }
-
- var textPosition = isLeft ? 'left' : 'right';
- var rotate = seriesScope.labelModel.get('rotate');
- var labelRotateRadian = rotate * (Math.PI / 180);
- symbolPath.setStyle({
- textPosition: seriesScope.labelModel.get('position') || textPosition,
- textRotation: rotate == null ? -rad : labelRotateRadian,
- textOrigin: 'center',
- verticalAlign: 'middle'
- });
- }
-
- if (node.parentNode && node.parentNode !== virtualRoot) {
- var edge = symbolEl.__edge;
-
- if (!edge) {
- edge = symbolEl.__edge = new graphic.BezierCurve({
- shape: getEdgeShape(seriesScope, sourceOldLayout, sourceOldLayout),
- style: zrUtil.defaults({
- opacity: 0,
- strokeNoScale: true
- }, seriesScope.lineStyle)
- });
- }
-
- graphic.updateProps(edge, {
- shape: getEdgeShape(seriesScope, sourceLayout, targetLayout),
- style: {
- opacity: 1
- }
- }, seriesModel);
- group.add(edge);
- }
- }
-
- function removeNode(data, dataIndex, symbolEl, group, seriesModel, seriesScope) {
- var node = data.tree.getNodeByDataIndex(dataIndex);
- var virtualRoot = data.tree.root;
- var itemModel = node.getModel();
- var seriesScope = getTreeNodeStyle(node, itemModel, seriesScope);
- var source = node.parentNode === virtualRoot ? node : node.parentNode || node;
- var sourceLayout;
-
- while (sourceLayout = source.getLayout(), sourceLayout == null) {
- source = source.parentNode === virtualRoot ? source : source.parentNode || source;
- }
-
- graphic.updateProps(symbolEl, {
- position: [sourceLayout.x + 1, sourceLayout.y + 1]
- }, seriesModel, function () {
- group.remove(symbolEl);
- data.setItemGraphicEl(dataIndex, null);
- });
- symbolEl.fadeOut(null, {
- keepLabel: true
- });
- var edge = symbolEl.__edge;
-
- if (edge) {
- graphic.updateProps(edge, {
- shape: getEdgeShape(seriesScope, sourceLayout, sourceLayout),
- style: {
- opacity: 0
- }
- }, seriesModel, function () {
- group.remove(edge);
- });
- }
- }
-
- function getEdgeShape(seriesScope, sourceLayout, targetLayout) {
- var cpx1;
- var cpy1;
- var cpx2;
- var cpy2;
- var orient = seriesScope.orient;
- var x1;
- var x2;
- var y1;
- var y2;
-
- if (seriesScope.layout === 'radial') {
- x1 = sourceLayout.rawX;
- y1 = sourceLayout.rawY;
- x2 = targetLayout.rawX;
- y2 = targetLayout.rawY;
- var radialCoor1 = radialCoordinate(x1, y1);
- var radialCoor2 = radialCoordinate(x1, y1 + (y2 - y1) * seriesScope.curvature);
- var radialCoor3 = radialCoordinate(x2, y2 + (y1 - y2) * seriesScope.curvature);
- var radialCoor4 = radialCoordinate(x2, y2);
- return {
- x1: radialCoor1.x,
- y1: radialCoor1.y,
- x2: radialCoor4.x,
- y2: radialCoor4.y,
- cpx1: radialCoor2.x,
- cpy1: radialCoor2.y,
- cpx2: radialCoor3.x,
- cpy2: radialCoor3.y
- };
- } else {
- x1 = sourceLayout.x;
- y1 = sourceLayout.y;
- x2 = targetLayout.x;
- y2 = targetLayout.y;
-
- if (orient === 'LR' || orient === 'RL') {
- cpx1 = x1 + (x2 - x1) * seriesScope.curvature;
- cpy1 = y1;
- cpx2 = x2 + (x1 - x2) * seriesScope.curvature;
- cpy2 = y2;
- }
-
- if (orient === 'TB' || orient === 'BT') {
- cpx1 = x1;
- cpy1 = y1 + (y2 - y1) * seriesScope.curvature;
- cpx2 = x2;
- cpy2 = y2 + (y1 - y2) * seriesScope.curvature;
- }
- }
-
- return {
- x1: x1,
- y1: y1,
- x2: x2,
- y2: y2,
- cpx1: cpx1,
- cpy1: cpy1,
- cpx2: cpx2,
- cpy2: cpy2
- };
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2606:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var _roamHelper = __webpack_require__(1908);
-
- var updateCenterAndZoom = _roamHelper.updateCenterAndZoom;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- echarts.registerAction({
- type: 'treeExpandAndCollapse',
- event: 'treeExpandAndCollapse',
- update: 'update'
- }, function (payload, ecModel) {
- ecModel.eachComponent({
- mainType: 'series',
- subType: 'tree',
- query: payload
- }, function (seriesModel) {
- var dataIndex = payload.dataIndex;
- var tree = seriesModel.getData().tree;
- var node = tree.getNodeByDataIndex(dataIndex);
- node.isExpand = !node.isExpand;
- });
- });
- echarts.registerAction({
- type: 'treeRoam',
- event: 'treeRoam',
- // Here we set 'none' instead of 'update', because roam action
- // just need to update the transform matrix without having to recalculate
- // the layout. So don't need to go through the whole update process, such
- // as 'dataPrcocess', 'coordSystemUpdate', 'layout' and so on.
- update: 'none'
- }, function (payload, ecModel) {
- ecModel.eachComponent({
- mainType: 'series',
- subType: 'tree',
- query: payload
- }, function (seriesModel) {
- var coordSys = seriesModel.coordinateSystem;
- var res = updateCenterAndZoom(coordSys, payload);
- seriesModel.setCenter && seriesModel.setCenter(res.center);
- seriesModel.setZoom && seriesModel.setZoom(res.zoom);
- });
- });
-
- /***/ }),
-
- /***/ 2607:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _traversalHelper = __webpack_require__(2608);
-
- var eachAfter = _traversalHelper.eachAfter;
- var eachBefore = _traversalHelper.eachBefore;
-
- var _layoutHelper = __webpack_require__(2304);
-
- var init = _layoutHelper.init;
- var firstWalk = _layoutHelper.firstWalk;
- var secondWalk = _layoutHelper.secondWalk;
- var sep = _layoutHelper.separation;
- var radialCoordinate = _layoutHelper.radialCoordinate;
- var getViewRect = _layoutHelper.getViewRect;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function _default(ecModel, api) {
- ecModel.eachSeriesByType('tree', function (seriesModel) {
- commonLayout(seriesModel, api);
- });
- }
-
- function commonLayout(seriesModel, api) {
- var layoutInfo = getViewRect(seriesModel, api);
- seriesModel.layoutInfo = layoutInfo;
- var layout = seriesModel.get('layout');
- var width = 0;
- var height = 0;
- var separation = null;
-
- if (layout === 'radial') {
- width = 2 * Math.PI;
- height = Math.min(layoutInfo.height, layoutInfo.width) / 2;
- separation = sep(function (node1, node2) {
- return (node1.parentNode === node2.parentNode ? 1 : 2) / node1.depth;
- });
- } else {
- width = layoutInfo.width;
- height = layoutInfo.height;
- separation = sep();
- }
-
- var virtualRoot = seriesModel.getData().tree.root;
- var realRoot = virtualRoot.children[0];
-
- if (realRoot) {
- init(virtualRoot);
- eachAfter(realRoot, firstWalk, separation);
- virtualRoot.hierNode.modifier = -realRoot.hierNode.prelim;
- eachBefore(realRoot, secondWalk);
- var left = realRoot;
- var right = realRoot;
- var bottom = realRoot;
- eachBefore(realRoot, function (node) {
- var x = node.getLayout().x;
-
- if (x < left.getLayout().x) {
- left = node;
- }
-
- if (x > right.getLayout().x) {
- right = node;
- }
-
- if (node.depth > bottom.depth) {
- bottom = node;
- }
- });
- var delta = left === right ? 1 : separation(left, right) / 2;
- var tx = delta - left.getLayout().x;
- var kx = 0;
- var ky = 0;
- var coorX = 0;
- var coorY = 0;
-
- if (layout === 'radial') {
- kx = width / (right.getLayout().x + delta + tx); // here we use (node.depth - 1), bucause the real root's depth is 1
-
- ky = height / (bottom.depth - 1 || 1);
- eachBefore(realRoot, function (node) {
- coorX = (node.getLayout().x + tx) * kx;
- coorY = (node.depth - 1) * ky;
- var finalCoor = radialCoordinate(coorX, coorY);
- node.setLayout({
- x: finalCoor.x,
- y: finalCoor.y,
- rawX: coorX,
- rawY: coorY
- }, true);
- });
- } else {
- var orient = seriesModel.getOrient();
-
- if (orient === 'RL' || orient === 'LR') {
- ky = height / (right.getLayout().x + delta + tx);
- kx = width / (bottom.depth - 1 || 1);
- eachBefore(realRoot, function (node) {
- coorY = (node.getLayout().x + tx) * ky;
- coorX = orient === 'LR' ? (node.depth - 1) * kx : width - (node.depth - 1) * kx;
- node.setLayout({
- x: coorX,
- y: coorY
- }, true);
- });
- } else if (orient === 'TB' || orient === 'BT') {
- kx = width / (right.getLayout().x + delta + tx);
- ky = height / (bottom.depth - 1 || 1);
- eachBefore(realRoot, function (node) {
- coorX = (node.getLayout().x + tx) * kx;
- coorY = orient === 'TB' ? (node.depth - 1) * ky : height - (node.depth - 1) * ky;
- node.setLayout({
- x: coorX,
- y: coorY
- }, true);
- });
- }
- }
- }
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2608:
- /***/ (function(module, exports) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Traverse the tree from bottom to top and do something
- * @param {module:echarts/data/Tree~TreeNode} root The real root of the tree
- * @param {Function} callback
- */
- function eachAfter(root, callback, separation) {
- var nodes = [root];
- var next = [];
- var node;
-
- while (node = nodes.pop()) {
- // jshint ignore:line
- next.push(node);
-
- if (node.isExpand) {
- var children = node.children;
-
- if (children.length) {
- for (var i = 0; i < children.length; i++) {
- nodes.push(children[i]);
- }
- }
- }
- }
-
- while (node = next.pop()) {
- // jshint ignore:line
- callback(node, separation);
- }
- }
- /**
- * Traverse the tree from top to bottom and do something
- * @param {module:echarts/data/Tree~TreeNode} root The real root of the tree
- * @param {Function} callback
- */
-
-
- function eachBefore(root, callback) {
- var nodes = [root];
- var node;
-
- while (node = nodes.pop()) {
- // jshint ignore:line
- callback(node);
-
- if (node.isExpand) {
- var children = node.children;
-
- if (children.length) {
- for (var i = children.length - 1; i >= 0; i--) {
- nodes.push(children[i]);
- }
- }
- }
- }
- }
-
- exports.eachAfter = eachAfter;
- exports.eachBefore = eachBefore;
-
- /***/ }),
-
- /***/ 2609:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- __webpack_require__(2610);
-
- __webpack_require__(2611);
-
- __webpack_require__(2614);
-
- var treemapVisual = __webpack_require__(2615);
-
- var treemapLayout = __webpack_require__(2616);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- echarts.registerVisual(treemapVisual);
- echarts.registerLayout(treemapLayout);
-
- /***/ }),
-
- /***/ 2610:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var SeriesModel = __webpack_require__(1322);
-
- var Tree = __webpack_require__(1911);
-
- var Model = __webpack_require__(1317);
-
- var _format = __webpack_require__(1186);
-
- var encodeHTML = _format.encodeHTML;
- var addCommas = _format.addCommas;
-
- var _treeHelper = __webpack_require__(1522);
-
- var wrapTreePathInfo = _treeHelper.wrapTreePathInfo;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = SeriesModel.extend({
- type: 'series.treemap',
- layoutMode: 'box',
- dependencies: ['grid', 'polar'],
- preventUsingHoverLayer: true,
-
- /**
- * @type {module:echarts/data/Tree~Node}
- */
- _viewRoot: null,
- defaultOption: {
- // Disable progressive rendering
- progressive: 0,
- // center: ['50%', '50%'], // not supported in ec3.
- // size: ['80%', '80%'], // deprecated, compatible with ec2.
- left: 'center',
- top: 'middle',
- right: null,
- bottom: null,
- width: '80%',
- height: '80%',
- sort: true,
- // Can be null or false or true
- // (order by desc default, asc not supported yet (strange effect))
- clipWindow: 'origin',
- // Size of clipped window when zooming. 'origin' or 'fullscreen'
- squareRatio: 0.5 * (1 + Math.sqrt(5)),
- // golden ratio
- leafDepth: null,
- // Nodes on depth from root are regarded as leaves.
- // Count from zero (zero represents only view root).
- drillDownIcon: '▶',
- // Use html character temporarily because it is complicated
- // to align specialized icon. ▷▶❒❐▼✚
- zoomToNodeRatio: 0.32 * 0.32,
- // Be effective when using zoomToNode. Specify the proportion of the
- // target node area in the view area.
- roam: true,
- // true, false, 'scale' or 'zoom', 'move'.
- nodeClick: 'zoomToNode',
- // Leaf node click behaviour: 'zoomToNode', 'link', false.
- // If leafDepth is set and clicking a node which has children but
- // be on left depth, the behaviour would be changing root. Otherwise
- // use behavious defined above.
- animation: true,
- animationDurationUpdate: 900,
- animationEasing: 'quinticInOut',
- breadcrumb: {
- show: true,
- height: 22,
- left: 'center',
- top: 'bottom',
- // right
- // bottom
- emptyItemWidth: 25,
- // Width of empty node.
- itemStyle: {
- color: 'rgba(0,0,0,0.7)',
- //'#5793f3',
- borderColor: 'rgba(255,255,255,0.7)',
- borderWidth: 1,
- shadowColor: 'rgba(150,150,150,1)',
- shadowBlur: 3,
- shadowOffsetX: 0,
- shadowOffsetY: 0,
- textStyle: {
- color: '#fff'
- }
- },
- emphasis: {
- textStyle: {}
- }
- },
- label: {
- show: true,
- // Do not use textDistance, for ellipsis rect just the same as treemap node rect.
- distance: 0,
- padding: 5,
- position: 'inside',
- // Can be [5, '5%'] or position stirng like 'insideTopLeft', ...
- // formatter: null,
- color: '#fff',
- ellipsis: true // align
- // verticalAlign
-
- },
- upperLabel: {
- // Label when node is parent.
- show: false,
- position: [0, '50%'],
- height: 20,
- // formatter: null,
- color: '#fff',
- ellipsis: true,
- // align: null,
- verticalAlign: 'middle'
- },
- itemStyle: {
- color: null,
- // Can be 'none' if not necessary.
- colorAlpha: null,
- // Can be 'none' if not necessary.
- colorSaturation: null,
- // Can be 'none' if not necessary.
- borderWidth: 0,
- gapWidth: 0,
- borderColor: '#fff',
- borderColorSaturation: null // If specified, borderColor will be ineffective, and the
- // border color is evaluated by color of current node and
- // borderColorSaturation.
-
- },
- emphasis: {
- upperLabel: {
- show: true,
- position: [0, '50%'],
- color: '#fff',
- ellipsis: true,
- verticalAlign: 'middle'
- }
- },
- visualDimension: 0,
- // Can be 0, 1, 2, 3.
- visualMin: null,
- visualMax: null,
- color: [],
- // + treemapSeries.color should not be modified. Please only modified
- // level[n].color (if necessary).
- // + Specify color list of each level. level[0].color would be global
- // color list if not specified. (see method `setDefault`).
- // + But set as a empty array to forbid fetch color from global palette
- // when using nodeModel.get('color'), otherwise nodes on deep level
- // will always has color palette set and are not able to inherit color
- // from parent node.
- // + TreemapSeries.color can not be set as 'none', otherwise effect
- // legend color fetching (see seriesColor.js).
- colorAlpha: null,
- // Array. Specify color alpha range of each level, like [0.2, 0.8]
- colorSaturation: null,
- // Array. Specify color saturation of each level, like [0.2, 0.5]
- colorMappingBy: 'index',
- // 'value' or 'index' or 'id'.
- visibleMin: 10,
- // If area less than this threshold (unit: pixel^2), node will not
- // be rendered. Only works when sort is 'asc' or 'desc'.
- childrenVisibleMin: null,
- // If area of a node less than this threshold (unit: pixel^2),
- // grandchildren will not show.
- // Why grandchildren? If not grandchildren but children,
- // some siblings show children and some not,
- // the appearance may be mess and not consistent,
- levels: [] // Each item: {
- // visibleMin, itemStyle, visualDimension, label
- // }
- // data: {
- // value: [],
- // children: [],
- // link: 'http://xxx.xxx.xxx',
- // target: 'blank' or 'self'
- // }
-
- },
-
- /**
- * @override
- */
- getInitialData: function (option, ecModel) {
- // Create a virtual root.
- var root = {
- name: option.name,
- children: option.data
- };
- completeTreeValue(root);
- var levels = option.levels || [];
- levels = option.levels = setDefault(levels, ecModel);
- var treeOption = {};
- treeOption.levels = levels; // Make sure always a new tree is created when setOption,
- // in TreemapView, we check whether oldTree === newTree
- // to choose mappings approach among old shapes and new shapes.
-
- return Tree.createTree(root, this, treeOption).data;
- },
- optionUpdated: function () {
- this.resetViewRoot();
- },
-
- /**
- * @override
- * @param {number} dataIndex
- * @param {boolean} [mutipleSeries=false]
- */
- formatTooltip: function (dataIndex) {
- var data = this.getData();
- var value = this.getRawValue(dataIndex);
- var formattedValue = zrUtil.isArray(value) ? addCommas(value[0]) : addCommas(value);
- var name = data.getName(dataIndex);
- return encodeHTML(name + ': ' + formattedValue);
- },
-
- /**
- * Add tree path to tooltip param
- *
- * @override
- * @param {number} dataIndex
- * @return {Object}
- */
- getDataParams: function (dataIndex) {
- var params = SeriesModel.prototype.getDataParams.apply(this, arguments);
- var node = this.getData().tree.getNodeByDataIndex(dataIndex);
- params.treePathInfo = wrapTreePathInfo(node, this);
- return params;
- },
-
- /**
- * @public
- * @param {Object} layoutInfo {
- * x: containerGroup x
- * y: containerGroup y
- * width: containerGroup width
- * height: containerGroup height
- * }
- */
- setLayoutInfo: function (layoutInfo) {
- /**
- * @readOnly
- * @type {Object}
- */
- this.layoutInfo = this.layoutInfo || {};
- zrUtil.extend(this.layoutInfo, layoutInfo);
- },
-
- /**
- * @param {string} id
- * @return {number} index
- */
- mapIdToIndex: function (id) {
- // A feature is implemented:
- // index is monotone increasing with the sequence of
- // input id at the first time.
- // This feature can make sure that each data item and its
- // mapped color have the same index between data list and
- // color list at the beginning, which is useful for user
- // to adjust data-color mapping.
-
- /**
- * @private
- * @type {Object}
- */
- var idIndexMap = this._idIndexMap;
-
- if (!idIndexMap) {
- idIndexMap = this._idIndexMap = zrUtil.createHashMap();
- /**
- * @private
- * @type {number}
- */
-
- this._idIndexMapCount = 0;
- }
-
- var index = idIndexMap.get(id);
-
- if (index == null) {
- idIndexMap.set(id, index = this._idIndexMapCount++);
- }
-
- return index;
- },
- getViewRoot: function () {
- return this._viewRoot;
- },
-
- /**
- * @param {module:echarts/data/Tree~Node} [viewRoot]
- */
- resetViewRoot: function (viewRoot) {
- viewRoot ? this._viewRoot = viewRoot : viewRoot = this._viewRoot;
- var root = this.getRawData().tree.root;
-
- if (!viewRoot || viewRoot !== root && !root.contains(viewRoot)) {
- this._viewRoot = root;
- }
- }
- });
- /**
- * @param {Object} dataNode
- */
-
-
- function completeTreeValue(dataNode) {
- // Postorder travel tree.
- // If value of none-leaf node is not set,
- // calculate it by suming up the value of all children.
- var sum = 0;
- zrUtil.each(dataNode.children, function (child) {
- completeTreeValue(child);
- var childValue = child.value;
- zrUtil.isArray(childValue) && (childValue = childValue[0]);
- sum += childValue;
- });
- var thisValue = dataNode.value;
-
- if (zrUtil.isArray(thisValue)) {
- thisValue = thisValue[0];
- }
-
- if (thisValue == null || isNaN(thisValue)) {
- thisValue = sum;
- } // Value should not less than 0.
-
-
- if (thisValue < 0) {
- thisValue = 0;
- }
-
- zrUtil.isArray(dataNode.value) ? dataNode.value[0] = thisValue : dataNode.value = thisValue;
- }
- /**
- * set default to level configuration
- */
-
-
- function setDefault(levels, ecModel) {
- var globalColorList = ecModel.get('color');
-
- if (!globalColorList) {
- return;
- }
-
- levels = levels || [];
- var hasColorDefine;
- zrUtil.each(levels, function (levelDefine) {
- var model = new Model(levelDefine);
- var modelColor = model.get('color');
-
- if (model.get('itemStyle.color') || modelColor && modelColor !== 'none') {
- hasColorDefine = true;
- }
- });
-
- if (!hasColorDefine) {
- var level0 = levels[0] || (levels[0] = {});
- level0.color = globalColorList.slice();
- }
-
- return levels;
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2611:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var graphic = __webpack_require__(906);
-
- var DataDiffer = __webpack_require__(1519);
-
- var helper = __webpack_require__(1522);
-
- var Breadcrumb = __webpack_require__(2612);
-
- var RoamController = __webpack_require__(1667);
-
- var BoundingRect = __webpack_require__(1185);
-
- var matrix = __webpack_require__(1350);
-
- var animationUtil = __webpack_require__(2613);
-
- var makeStyleMapper = __webpack_require__(1599);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var bind = zrUtil.bind;
- var Group = graphic.Group;
- var Rect = graphic.Rect;
- var each = zrUtil.each;
- var DRAG_THRESHOLD = 3;
- var PATH_LABEL_NOAMAL = ['label'];
- var PATH_LABEL_EMPHASIS = ['emphasis', 'label'];
- var PATH_UPPERLABEL_NORMAL = ['upperLabel'];
- var PATH_UPPERLABEL_EMPHASIS = ['emphasis', 'upperLabel'];
- var Z_BASE = 10; // Should bigger than every z.
-
- var Z_BG = 1;
- var Z_CONTENT = 2;
- var getItemStyleEmphasis = makeStyleMapper([['fill', 'color'], // `borderColor` and `borderWidth` has been occupied,
- // so use `stroke` to indicate the stroke of the rect.
- ['stroke', 'strokeColor'], ['lineWidth', 'strokeWidth'], ['shadowBlur'], ['shadowOffsetX'], ['shadowOffsetY'], ['shadowColor']]);
-
- var getItemStyleNormal = function (model) {
- // Normal style props should include emphasis style props.
- var itemStyle = getItemStyleEmphasis(model); // Clear styles set by emphasis.
-
- itemStyle.stroke = itemStyle.fill = itemStyle.lineWidth = null;
- return itemStyle;
- };
-
- var _default = echarts.extendChartView({
- type: 'treemap',
-
- /**
- * @override
- */
- init: function (o, api) {
- /**
- * @private
- * @type {module:zrender/container/Group}
- */
- this._containerGroup;
- /**
- * @private
- * @type {Object.<string, Array.<module:zrender/container/Group>>}
- */
-
- this._storage = createStorage();
- /**
- * @private
- * @type {module:echarts/data/Tree}
- */
-
- this._oldTree;
- /**
- * @private
- * @type {module:echarts/chart/treemap/Breadcrumb}
- */
-
- this._breadcrumb;
- /**
- * @private
- * @type {module:echarts/component/helper/RoamController}
- */
-
- this._controller;
- /**
- * 'ready', 'animating'
- * @private
- */
-
- this._state = 'ready';
- },
-
- /**
- * @override
- */
- render: function (seriesModel, ecModel, api, payload) {
- var models = ecModel.findComponents({
- mainType: 'series',
- subType: 'treemap',
- query: payload
- });
-
- if (zrUtil.indexOf(models, seriesModel) < 0) {
- return;
- }
-
- this.seriesModel = seriesModel;
- this.api = api;
- this.ecModel = ecModel;
- var types = ['treemapZoomToNode', 'treemapRootToNode'];
- var targetInfo = helper.retrieveTargetInfo(payload, types, seriesModel);
- var payloadType = payload && payload.type;
- var layoutInfo = seriesModel.layoutInfo;
- var isInit = !this._oldTree;
- var thisStorage = this._storage; // Mark new root when action is treemapRootToNode.
-
- var reRoot = payloadType === 'treemapRootToNode' && targetInfo && thisStorage ? {
- rootNodeGroup: thisStorage.nodeGroup[targetInfo.node.getRawIndex()],
- direction: payload.direction
- } : null;
-
- var containerGroup = this._giveContainerGroup(layoutInfo);
-
- var renderResult = this._doRender(containerGroup, seriesModel, reRoot);
-
- !isInit && (!payloadType || payloadType === 'treemapZoomToNode' || payloadType === 'treemapRootToNode') ? this._doAnimation(containerGroup, renderResult, seriesModel, reRoot) : renderResult.renderFinally();
-
- this._resetController(api);
-
- this._renderBreadcrumb(seriesModel, api, targetInfo);
- },
-
- /**
- * @private
- */
- _giveContainerGroup: function (layoutInfo) {
- var containerGroup = this._containerGroup;
-
- if (!containerGroup) {
- // FIXME
- // 加一层containerGroup是为了clip,但是现在clip功能并没有实现。
- containerGroup = this._containerGroup = new Group();
-
- this._initEvents(containerGroup);
-
- this.group.add(containerGroup);
- }
-
- containerGroup.attr('position', [layoutInfo.x, layoutInfo.y]);
- return containerGroup;
- },
-
- /**
- * @private
- */
- _doRender: function (containerGroup, seriesModel, reRoot) {
- var thisTree = seriesModel.getData().tree;
- var oldTree = this._oldTree; // Clear last shape records.
-
- var lastsForAnimation = createStorage();
- var thisStorage = createStorage();
- var oldStorage = this._storage;
- var willInvisibleEls = [];
- var doRenderNode = zrUtil.curry(renderNode, seriesModel, thisStorage, oldStorage, reRoot, lastsForAnimation, willInvisibleEls); // Notice: when thisTree and oldTree are the same tree (see list.cloneShallow),
- // the oldTree is actually losted, so we can not find all of the old graphic
- // elements from tree. So we use this stragegy: make element storage, move
- // from old storage to new storage, clear old storage.
-
- dualTravel(thisTree.root ? [thisTree.root] : [], oldTree && oldTree.root ? [oldTree.root] : [], containerGroup, thisTree === oldTree || !oldTree, 0); // Process all removing.
-
- var willDeleteEls = clearStorage(oldStorage);
- this._oldTree = thisTree;
- this._storage = thisStorage;
- return {
- lastsForAnimation: lastsForAnimation,
- willDeleteEls: willDeleteEls,
- renderFinally: renderFinally
- };
-
- function dualTravel(thisViewChildren, oldViewChildren, parentGroup, sameTree, depth) {
- // When 'render' is triggered by action,
- // 'this' and 'old' may be the same tree,
- // we use rawIndex in that case.
- if (sameTree) {
- oldViewChildren = thisViewChildren;
- each(thisViewChildren, function (child, index) {
- !child.isRemoved() && processNode(index, index);
- });
- } // Diff hierarchically (diff only in each subtree, but not whole).
- // because, consistency of view is important.
- else {
- new DataDiffer(oldViewChildren, thisViewChildren, getKey, getKey).add(processNode).update(processNode).remove(zrUtil.curry(processNode, null)).execute();
- }
-
- function getKey(node) {
- // Identify by name or raw index.
- return node.getId();
- }
-
- function processNode(newIndex, oldIndex) {
- var thisNode = newIndex != null ? thisViewChildren[newIndex] : null;
- var oldNode = oldIndex != null ? oldViewChildren[oldIndex] : null;
- var group = doRenderNode(thisNode, oldNode, parentGroup, depth);
- group && dualTravel(thisNode && thisNode.viewChildren || [], oldNode && oldNode.viewChildren || [], group, sameTree, depth + 1);
- }
- }
-
- function clearStorage(storage) {
- var willDeleteEls = createStorage();
- storage && each(storage, function (store, storageName) {
- var delEls = willDeleteEls[storageName];
- each(store, function (el) {
- el && (delEls.push(el), el.__tmWillDelete = 1);
- });
- });
- return willDeleteEls;
- }
-
- function renderFinally() {
- each(willDeleteEls, function (els) {
- each(els, function (el) {
- el.parent && el.parent.remove(el);
- });
- });
- each(willInvisibleEls, function (el) {
- el.invisible = true; // Setting invisible is for optimizing, so no need to set dirty,
- // just mark as invisible.
-
- el.dirty();
- });
- }
- },
-
- /**
- * @private
- */
- _doAnimation: function (containerGroup, renderResult, seriesModel, reRoot) {
- if (!seriesModel.get('animation')) {
- return;
- }
-
- var duration = seriesModel.get('animationDurationUpdate');
- var easing = seriesModel.get('animationEasing');
- var animationWrap = animationUtil.createWrap(); // Make delete animations.
-
- each(renderResult.willDeleteEls, function (store, storageName) {
- each(store, function (el, rawIndex) {
- if (el.invisible) {
- return;
- }
-
- var parent = el.parent; // Always has parent, and parent is nodeGroup.
-
- var target;
-
- if (reRoot && reRoot.direction === 'drillDown') {
- target = parent === reRoot.rootNodeGroup // This is the content element of view root.
- // Only `content` will enter this branch, because
- // `background` and `nodeGroup` will not be deleted.
- ? {
- shape: {
- x: 0,
- y: 0,
- width: parent.__tmNodeWidth,
- height: parent.__tmNodeHeight
- },
- style: {
- opacity: 0
- } // Others.
-
- } : {
- style: {
- opacity: 0
- }
- };
- } else {
- var targetX = 0;
- var targetY = 0;
-
- if (!parent.__tmWillDelete) {
- // Let node animate to right-bottom corner, cooperating with fadeout,
- // which is appropriate for user understanding.
- // Divided by 2 for reRoot rolling up effect.
- targetX = parent.__tmNodeWidth / 2;
- targetY = parent.__tmNodeHeight / 2;
- }
-
- target = storageName === 'nodeGroup' ? {
- position: [targetX, targetY],
- style: {
- opacity: 0
- }
- } : {
- shape: {
- x: targetX,
- y: targetY,
- width: 0,
- height: 0
- },
- style: {
- opacity: 0
- }
- };
- }
-
- target && animationWrap.add(el, target, duration, easing);
- });
- }); // Make other animations
-
- each(this._storage, function (store, storageName) {
- each(store, function (el, rawIndex) {
- var last = renderResult.lastsForAnimation[storageName][rawIndex];
- var target = {};
-
- if (!last) {
- return;
- }
-
- if (storageName === 'nodeGroup') {
- if (last.old) {
- target.position = el.position.slice();
- el.attr('position', last.old);
- }
- } else {
- if (last.old) {
- target.shape = zrUtil.extend({}, el.shape);
- el.setShape(last.old);
- }
-
- if (last.fadein) {
- el.setStyle('opacity', 0);
- target.style = {
- opacity: 1
- };
- } // When animation is stopped for succedent animation starting,
- // el.style.opacity might not be 1
- else if (el.style.opacity !== 1) {
- target.style = {
- opacity: 1
- };
- }
- }
-
- animationWrap.add(el, target, duration, easing);
- });
- }, this);
- this._state = 'animating';
- animationWrap.done(bind(function () {
- this._state = 'ready';
- renderResult.renderFinally();
- }, this)).start();
- },
-
- /**
- * @private
- */
- _resetController: function (api) {
- var controller = this._controller; // Init controller.
-
- if (!controller) {
- controller = this._controller = new RoamController(api.getZr());
- controller.enable(this.seriesModel.get('roam'));
- controller.on('pan', bind(this._onPan, this));
- controller.on('zoom', bind(this._onZoom, this));
- }
-
- var rect = new BoundingRect(0, 0, api.getWidth(), api.getHeight());
- controller.setPointerChecker(function (e, x, y) {
- return rect.contain(x, y);
- });
- },
-
- /**
- * @private
- */
- _clearController: function () {
- var controller = this._controller;
-
- if (controller) {
- controller.dispose();
- controller = null;
- }
- },
-
- /**
- * @private
- */
- _onPan: function (e) {
- if (this._state !== 'animating' && (Math.abs(e.dx) > DRAG_THRESHOLD || Math.abs(e.dy) > DRAG_THRESHOLD)) {
- // These param must not be cached.
- var root = this.seriesModel.getData().tree.root;
-
- if (!root) {
- return;
- }
-
- var rootLayout = root.getLayout();
-
- if (!rootLayout) {
- return;
- }
-
- this.api.dispatchAction({
- type: 'treemapMove',
- from: this.uid,
- seriesId: this.seriesModel.id,
- rootRect: {
- x: rootLayout.x + e.dx,
- y: rootLayout.y + e.dy,
- width: rootLayout.width,
- height: rootLayout.height
- }
- });
- }
- },
-
- /**
- * @private
- */
- _onZoom: function (e) {
- var mouseX = e.originX;
- var mouseY = e.originY;
-
- if (this._state !== 'animating') {
- // These param must not be cached.
- var root = this.seriesModel.getData().tree.root;
-
- if (!root) {
- return;
- }
-
- var rootLayout = root.getLayout();
-
- if (!rootLayout) {
- return;
- }
-
- var rect = new BoundingRect(rootLayout.x, rootLayout.y, rootLayout.width, rootLayout.height);
- var layoutInfo = this.seriesModel.layoutInfo; // Transform mouse coord from global to containerGroup.
-
- mouseX -= layoutInfo.x;
- mouseY -= layoutInfo.y; // Scale root bounding rect.
-
- var m = matrix.create();
- matrix.translate(m, m, [-mouseX, -mouseY]);
- matrix.scale(m, m, [e.scale, e.scale]);
- matrix.translate(m, m, [mouseX, mouseY]);
- rect.applyTransform(m);
- this.api.dispatchAction({
- type: 'treemapRender',
- from: this.uid,
- seriesId: this.seriesModel.id,
- rootRect: {
- x: rect.x,
- y: rect.y,
- width: rect.width,
- height: rect.height
- }
- });
- }
- },
-
- /**
- * @private
- */
- _initEvents: function (containerGroup) {
- containerGroup.on('click', function (e) {
- if (this._state !== 'ready') {
- return;
- }
-
- var nodeClick = this.seriesModel.get('nodeClick', true);
-
- if (!nodeClick) {
- return;
- }
-
- var targetInfo = this.findTarget(e.offsetX, e.offsetY);
-
- if (!targetInfo) {
- return;
- }
-
- var node = targetInfo.node;
-
- if (node.getLayout().isLeafRoot) {
- this._rootToNode(targetInfo);
- } else {
- if (nodeClick === 'zoomToNode') {
- this._zoomToNode(targetInfo);
- } else if (nodeClick === 'link') {
- var itemModel = node.hostTree.data.getItemModel(node.dataIndex);
- var link = itemModel.get('link', true);
- var linkTarget = itemModel.get('target', true) || 'blank';
- link && window.open(link, linkTarget);
- }
- }
- }, this);
- },
-
- /**
- * @private
- */
- _renderBreadcrumb: function (seriesModel, api, targetInfo) {
- if (!targetInfo) {
- targetInfo = seriesModel.get('leafDepth', true) != null ? {
- node: seriesModel.getViewRoot() // FIXME
- // better way?
- // Find breadcrumb tail on center of containerGroup.
-
- } : this.findTarget(api.getWidth() / 2, api.getHeight() / 2);
-
- if (!targetInfo) {
- targetInfo = {
- node: seriesModel.getData().tree.root
- };
- }
- }
-
- (this._breadcrumb || (this._breadcrumb = new Breadcrumb(this.group))).render(seriesModel, api, targetInfo.node, bind(onSelect, this));
-
- function onSelect(node) {
- if (this._state !== 'animating') {
- helper.aboveViewRoot(seriesModel.getViewRoot(), node) ? this._rootToNode({
- node: node
- }) : this._zoomToNode({
- node: node
- });
- }
- }
- },
-
- /**
- * @override
- */
- remove: function () {
- this._clearController();
-
- this._containerGroup && this._containerGroup.removeAll();
- this._storage = createStorage();
- this._state = 'ready';
- this._breadcrumb && this._breadcrumb.remove();
- },
- dispose: function () {
- this._clearController();
- },
-
- /**
- * @private
- */
- _zoomToNode: function (targetInfo) {
- this.api.dispatchAction({
- type: 'treemapZoomToNode',
- from: this.uid,
- seriesId: this.seriesModel.id,
- targetNode: targetInfo.node
- });
- },
-
- /**
- * @private
- */
- _rootToNode: function (targetInfo) {
- this.api.dispatchAction({
- type: 'treemapRootToNode',
- from: this.uid,
- seriesId: this.seriesModel.id,
- targetNode: targetInfo.node
- });
- },
-
- /**
- * @public
- * @param {number} x Global coord x.
- * @param {number} y Global coord y.
- * @return {Object} info If not found, return undefined;
- * @return {number} info.node Target node.
- * @return {number} info.offsetX x refer to target node.
- * @return {number} info.offsetY y refer to target node.
- */
- findTarget: function (x, y) {
- var targetInfo;
- var viewRoot = this.seriesModel.getViewRoot();
- viewRoot.eachNode({
- attr: 'viewChildren',
- order: 'preorder'
- }, function (node) {
- var bgEl = this._storage.background[node.getRawIndex()]; // If invisible, there might be no element.
-
-
- if (bgEl) {
- var point = bgEl.transformCoordToLocal(x, y);
- var shape = bgEl.shape; // For performance consideration, dont use 'getBoundingRect'.
-
- if (shape.x <= point[0] && point[0] <= shape.x + shape.width && shape.y <= point[1] && point[1] <= shape.y + shape.height) {
- targetInfo = {
- node: node,
- offsetX: point[0],
- offsetY: point[1]
- };
- } else {
- return false; // Suppress visit subtree.
- }
- }
- }, this);
- return targetInfo;
- }
- });
- /**
- * @inner
- */
-
-
- function createStorage() {
- return {
- nodeGroup: [],
- background: [],
- content: []
- };
- }
- /**
- * @inner
- * @return Return undefined means do not travel further.
- */
-
-
- function renderNode(seriesModel, thisStorage, oldStorage, reRoot, lastsForAnimation, willInvisibleEls, thisNode, oldNode, parentGroup, depth) {
- // Whether under viewRoot.
- if (!thisNode) {
- // Deleting nodes will be performed finally. This method just find
- // element from old storage, or create new element, set them to new
- // storage, and set styles.
- return;
- } // -------------------------------------------------------------------
- // Start of closure variables available in "Procedures in renderNode".
-
-
- var thisLayout = thisNode.getLayout();
-
- if (!thisLayout || !thisLayout.isInView) {
- return;
- }
-
- var thisWidth = thisLayout.width;
- var thisHeight = thisLayout.height;
- var borderWidth = thisLayout.borderWidth;
- var thisInvisible = thisLayout.invisible;
- var thisRawIndex = thisNode.getRawIndex();
- var oldRawIndex = oldNode && oldNode.getRawIndex();
- var thisViewChildren = thisNode.viewChildren;
- var upperHeight = thisLayout.upperHeight;
- var isParent = thisViewChildren && thisViewChildren.length;
- var itemStyleNormalModel = thisNode.getModel('itemStyle');
- var itemStyleEmphasisModel = thisNode.getModel('emphasis.itemStyle'); // End of closure ariables available in "Procedures in renderNode".
- // -----------------------------------------------------------------
- // Node group
-
- var group = giveGraphic('nodeGroup', Group);
-
- if (!group) {
- return;
- }
-
- parentGroup.add(group); // x,y are not set when el is above view root.
-
- group.attr('position', [thisLayout.x || 0, thisLayout.y || 0]);
- group.__tmNodeWidth = thisWidth;
- group.__tmNodeHeight = thisHeight;
-
- if (thisLayout.isAboveViewRoot) {
- return group;
- } // Background
-
-
- var bg = giveGraphic('background', Rect, depth, Z_BG);
- bg && renderBackground(group, bg, isParent && thisLayout.upperHeight); // No children, render content.
-
- if (!isParent) {
- var content = giveGraphic('content', Rect, depth, Z_CONTENT);
- content && renderContent(group, content);
- }
-
- return group; // ----------------------------
- // | Procedures in renderNode |
- // ----------------------------
-
- function renderBackground(group, bg, useUpperLabel) {
- // For tooltip.
- bg.dataIndex = thisNode.dataIndex;
- bg.seriesIndex = seriesModel.seriesIndex;
- bg.setShape({
- x: 0,
- y: 0,
- width: thisWidth,
- height: thisHeight
- });
- var visualBorderColor = thisNode.getVisual('borderColor', true);
- var emphasisBorderColor = itemStyleEmphasisModel.get('borderColor');
- updateStyle(bg, function () {
- var normalStyle = getItemStyleNormal(itemStyleNormalModel);
- normalStyle.fill = visualBorderColor;
- var emphasisStyle = getItemStyleEmphasis(itemStyleEmphasisModel);
- emphasisStyle.fill = emphasisBorderColor;
-
- if (useUpperLabel) {
- var upperLabelWidth = thisWidth - 2 * borderWidth;
- prepareText(normalStyle, emphasisStyle, visualBorderColor, upperLabelWidth, upperHeight, {
- x: borderWidth,
- y: 0,
- width: upperLabelWidth,
- height: upperHeight
- });
- } // For old bg.
- else {
- normalStyle.text = emphasisStyle.text = null;
- }
-
- bg.setStyle(normalStyle);
- graphic.setHoverStyle(bg, emphasisStyle);
- });
- group.add(bg);
- }
-
- function renderContent(group, content) {
- // For tooltip.
- content.dataIndex = thisNode.dataIndex;
- content.seriesIndex = seriesModel.seriesIndex;
- var contentWidth = Math.max(thisWidth - 2 * borderWidth, 0);
- var contentHeight = Math.max(thisHeight - 2 * borderWidth, 0);
- content.culling = true;
- content.setShape({
- x: borderWidth,
- y: borderWidth,
- width: contentWidth,
- height: contentHeight
- });
- var visualColor = thisNode.getVisual('color', true);
- updateStyle(content, function () {
- var normalStyle = getItemStyleNormal(itemStyleNormalModel);
- normalStyle.fill = visualColor;
- var emphasisStyle = getItemStyleEmphasis(itemStyleEmphasisModel);
- prepareText(normalStyle, emphasisStyle, visualColor, contentWidth, contentHeight);
- content.setStyle(normalStyle);
- graphic.setHoverStyle(content, emphasisStyle);
- });
- group.add(content);
- }
-
- function updateStyle(element, cb) {
- if (!thisInvisible) {
- // If invisible, do not set visual, otherwise the element will
- // change immediately before animation. We think it is OK to
- // remain its origin color when moving out of the view window.
- cb();
-
- if (!element.__tmWillVisible) {
- element.invisible = false;
- }
- } else {
- // Delay invisible setting utill animation finished,
- // avoid element vanish suddenly before animation.
- !element.invisible && willInvisibleEls.push(element);
- }
- }
-
- function prepareText(normalStyle, emphasisStyle, visualColor, width, height, upperLabelRect) {
- var nodeModel = thisNode.getModel();
- var text = zrUtil.retrieve(seriesModel.getFormattedLabel(thisNode.dataIndex, 'normal', null, null, upperLabelRect ? 'upperLabel' : 'label'), nodeModel.get('name'));
-
- if (!upperLabelRect && thisLayout.isLeafRoot) {
- var iconChar = seriesModel.get('drillDownIcon', true);
- text = iconChar ? iconChar + ' ' + text : text;
- }
-
- var normalLabelModel = nodeModel.getModel(upperLabelRect ? PATH_UPPERLABEL_NORMAL : PATH_LABEL_NOAMAL);
- var emphasisLabelModel = nodeModel.getModel(upperLabelRect ? PATH_UPPERLABEL_EMPHASIS : PATH_LABEL_EMPHASIS);
- var isShow = normalLabelModel.getShallow('show');
- graphic.setLabelStyle(normalStyle, emphasisStyle, normalLabelModel, emphasisLabelModel, {
- defaultText: isShow ? text : null,
- autoColor: visualColor,
- isRectText: true
- });
- upperLabelRect && (normalStyle.textRect = zrUtil.clone(upperLabelRect));
- normalStyle.truncate = isShow && normalLabelModel.get('ellipsis') ? {
- outerWidth: width,
- outerHeight: height,
- minChar: 2
- } : null;
- }
-
- function giveGraphic(storageName, Ctor, depth, z) {
- var element = oldRawIndex != null && oldStorage[storageName][oldRawIndex];
- var lasts = lastsForAnimation[storageName];
-
- if (element) {
- // Remove from oldStorage
- oldStorage[storageName][oldRawIndex] = null;
- prepareAnimationWhenHasOld(lasts, element, storageName);
- } // If invisible and no old element, do not create new element (for optimizing).
- else if (!thisInvisible) {
- element = new Ctor({
- z: calculateZ(depth, z)
- });
- element.__tmDepth = depth;
- element.__tmStorageName = storageName;
- prepareAnimationWhenNoOld(lasts, element, storageName);
- } // Set to thisStorage
-
-
- return thisStorage[storageName][thisRawIndex] = element;
- }
-
- function prepareAnimationWhenHasOld(lasts, element, storageName) {
- var lastCfg = lasts[thisRawIndex] = {};
- lastCfg.old = storageName === 'nodeGroup' ? element.position.slice() : zrUtil.extend({}, element.shape);
- } // If a element is new, we need to find the animation start point carefully,
- // otherwise it will looks strange when 'zoomToNode'.
-
-
- function prepareAnimationWhenNoOld(lasts, element, storageName) {
- var lastCfg = lasts[thisRawIndex] = {};
- var parentNode = thisNode.parentNode;
-
- if (parentNode && (!reRoot || reRoot.direction === 'drillDown')) {
- var parentOldX = 0;
- var parentOldY = 0; // New nodes appear from right-bottom corner in 'zoomToNode' animation.
- // For convenience, get old bounding rect from background.
-
- var parentOldBg = lastsForAnimation.background[parentNode.getRawIndex()];
-
- if (!reRoot && parentOldBg && parentOldBg.old) {
- parentOldX = parentOldBg.old.width;
- parentOldY = parentOldBg.old.height;
- } // When no parent old shape found, its parent is new too,
- // so we can just use {x:0, y:0}.
-
-
- lastCfg.old = storageName === 'nodeGroup' ? [0, parentOldY] : {
- x: parentOldX,
- y: parentOldY,
- width: 0,
- height: 0
- };
- } // Fade in, user can be aware that these nodes are new.
-
-
- lastCfg.fadein = storageName !== 'nodeGroup';
- }
- } // We can not set all backgroud with the same z, Because the behaviour of
- // drill down and roll up differ background creation sequence from tree
- // hierarchy sequence, which cause that lowser background element overlap
- // upper ones. So we calculate z based on depth.
- // Moreover, we try to shrink down z interval to [0, 1] to avoid that
- // treemap with large z overlaps other components.
-
-
- function calculateZ(depth, zInLevel) {
- var zb = depth * Z_BASE + zInLevel;
- return (zb - 1) / zb;
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2612:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var graphic = __webpack_require__(906);
-
- var layout = __webpack_require__(1171);
-
- var zrUtil = __webpack_require__(864);
-
- var _treeHelper = __webpack_require__(1522);
-
- var wrapTreePathInfo = _treeHelper.wrapTreePathInfo;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var TEXT_PADDING = 8;
- var ITEM_GAP = 8;
- var ARRAY_LENGTH = 5;
-
- function Breadcrumb(containerGroup) {
- /**
- * @private
- * @type {module:zrender/container/Group}
- */
- this.group = new graphic.Group();
- containerGroup.add(this.group);
- }
-
- Breadcrumb.prototype = {
- constructor: Breadcrumb,
- render: function (seriesModel, api, targetNode, onSelect) {
- var model = seriesModel.getModel('breadcrumb');
- var thisGroup = this.group;
- thisGroup.removeAll();
-
- if (!model.get('show') || !targetNode) {
- return;
- }
-
- var normalStyleModel = model.getModel('itemStyle'); // var emphasisStyleModel = model.getModel('emphasis.itemStyle');
-
- var textStyleModel = normalStyleModel.getModel('textStyle');
- var layoutParam = {
- pos: {
- left: model.get('left'),
- right: model.get('right'),
- top: model.get('top'),
- bottom: model.get('bottom')
- },
- box: {
- width: api.getWidth(),
- height: api.getHeight()
- },
- emptyItemWidth: model.get('emptyItemWidth'),
- totalWidth: 0,
- renderList: []
- };
-
- this._prepare(targetNode, layoutParam, textStyleModel);
-
- this._renderContent(seriesModel, layoutParam, normalStyleModel, textStyleModel, onSelect);
-
- layout.positionElement(thisGroup, layoutParam.pos, layoutParam.box);
- },
-
- /**
- * Prepare render list and total width
- * @private
- */
- _prepare: function (targetNode, layoutParam, textStyleModel) {
- for (var node = targetNode; node; node = node.parentNode) {
- var text = node.getModel().get('name');
- var textRect = textStyleModel.getTextRect(text);
- var itemWidth = Math.max(textRect.width + TEXT_PADDING * 2, layoutParam.emptyItemWidth);
- layoutParam.totalWidth += itemWidth + ITEM_GAP;
- layoutParam.renderList.push({
- node: node,
- text: text,
- width: itemWidth
- });
- }
- },
-
- /**
- * @private
- */
- _renderContent: function (seriesModel, layoutParam, normalStyleModel, textStyleModel, onSelect) {
- // Start rendering.
- var lastX = 0;
- var emptyItemWidth = layoutParam.emptyItemWidth;
- var height = seriesModel.get('breadcrumb.height');
- var availableSize = layout.getAvailableSize(layoutParam.pos, layoutParam.box);
- var totalWidth = layoutParam.totalWidth;
- var renderList = layoutParam.renderList;
-
- for (var i = renderList.length - 1; i >= 0; i--) {
- var item = renderList[i];
- var itemNode = item.node;
- var itemWidth = item.width;
- var text = item.text; // Hdie text and shorten width if necessary.
-
- if (totalWidth > availableSize.width) {
- totalWidth -= itemWidth - emptyItemWidth;
- itemWidth = emptyItemWidth;
- text = null;
- }
-
- var el = new graphic.Polygon({
- shape: {
- points: makeItemPoints(lastX, 0, itemWidth, height, i === renderList.length - 1, i === 0)
- },
- style: zrUtil.defaults(normalStyleModel.getItemStyle(), {
- lineJoin: 'bevel',
- text: text,
- textFill: textStyleModel.getTextColor(),
- textFont: textStyleModel.getFont()
- }),
- z: 10,
- onclick: zrUtil.curry(onSelect, itemNode)
- });
- this.group.add(el);
- packEventData(el, seriesModel, itemNode);
- lastX += itemWidth + ITEM_GAP;
- }
- },
-
- /**
- * @override
- */
- remove: function () {
- this.group.removeAll();
- }
- };
-
- function makeItemPoints(x, y, itemWidth, itemHeight, head, tail) {
- var points = [[head ? x : x - ARRAY_LENGTH, y], [x + itemWidth, y], [x + itemWidth, y + itemHeight], [head ? x : x - ARRAY_LENGTH, y + itemHeight]];
- !tail && points.splice(2, 0, [x + itemWidth + ARRAY_LENGTH, y + itemHeight / 2]);
- !head && points.push([x, y + itemHeight / 2]);
- return points;
- } // Package custom mouse event.
-
-
- function packEventData(el, seriesModel, itemNode) {
- el.eventData = {
- componentType: 'series',
- componentSubType: 'treemap',
- componentIndex: seriesModel.componentIndex,
- seriesIndex: seriesModel.componentIndex,
- seriesName: seriesModel.name,
- seriesType: 'treemap',
- selfType: 'breadcrumb',
- // Distinguish with click event on treemap node.
- nodeData: {
- dataIndex: itemNode && itemNode.dataIndex,
- name: itemNode && itemNode.name
- },
- treePathInfo: itemNode && wrapTreePathInfo(itemNode, seriesModel)
- };
- }
-
- var _default = Breadcrumb;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2613:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @param {number} [time=500] Time in ms
- * @param {string} [easing='linear']
- * @param {number} [delay=0]
- * @param {Function} [callback]
- *
- * @example
- * // Animate position
- * animation
- * .createWrap()
- * .add(el1, {position: [10, 10]})
- * .add(el2, {shape: {width: 500}, style: {fill: 'red'}}, 400)
- * .done(function () { // done })
- * .start('cubicOut');
- */
- function createWrap() {
- var storage = [];
- var elExistsMap = {};
- var doneCallback;
- return {
- /**
- * Caution: a el can only be added once, otherwise 'done'
- * might not be called. This method checks this (by el.id),
- * suppresses adding and returns false when existing el found.
- *
- * @param {modele:zrender/Element} el
- * @param {Object} target
- * @param {number} [time=500]
- * @param {number} [delay=0]
- * @param {string} [easing='linear']
- * @return {boolean} Whether adding succeeded.
- *
- * @example
- * add(el, target, time, delay, easing);
- * add(el, target, time, easing);
- * add(el, target, time);
- * add(el, target);
- */
- add: function (el, target, time, delay, easing) {
- if (zrUtil.isString(delay)) {
- easing = delay;
- delay = 0;
- }
-
- if (elExistsMap[el.id]) {
- return false;
- }
-
- elExistsMap[el.id] = 1;
- storage.push({
- el: el,
- target: target,
- time: time,
- delay: delay,
- easing: easing
- });
- return true;
- },
-
- /**
- * Only execute when animation finished. Will not execute when any
- * of 'stop' or 'stopAnimation' called.
- *
- * @param {Function} callback
- */
- done: function (callback) {
- doneCallback = callback;
- return this;
- },
-
- /**
- * Will stop exist animation firstly.
- */
- start: function () {
- var count = storage.length;
-
- for (var i = 0, len = storage.length; i < len; i++) {
- var item = storage[i];
- item.el.animateTo(item.target, item.time, item.delay, item.easing, done);
- }
-
- return this;
-
- function done() {
- count--;
-
- if (!count) {
- storage.length = 0;
- elExistsMap = {};
- doneCallback && doneCallback();
- }
- }
- }
- };
- }
-
- exports.createWrap = createWrap;
-
- /***/ }),
-
- /***/ 2614:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var helper = __webpack_require__(1522);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @file Treemap action
- */
- var noop = function () {};
-
- var actionTypes = ['treemapZoomToNode', 'treemapRender', 'treemapMove'];
-
- for (var i = 0; i < actionTypes.length; i++) {
- echarts.registerAction({
- type: actionTypes[i],
- update: 'updateView'
- }, noop);
- }
-
- echarts.registerAction({
- type: 'treemapRootToNode',
- update: 'updateView'
- }, function (payload, ecModel) {
- ecModel.eachComponent({
- mainType: 'series',
- subType: 'treemap',
- query: payload
- }, handleRootToNode);
-
- function handleRootToNode(model, index) {
- var types = ['treemapZoomToNode', 'treemapRootToNode'];
- var targetInfo = helper.retrieveTargetInfo(payload, types, model);
-
- if (targetInfo) {
- var originViewRoot = model.getViewRoot();
-
- if (originViewRoot) {
- payload.direction = helper.aboveViewRoot(originViewRoot, targetInfo.node) ? 'rollUp' : 'drillDown';
- }
-
- model.resetViewRoot(targetInfo.node);
- }
- }
- });
-
- /***/ }),
-
- /***/ 2615:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var VisualMapping = __webpack_require__(1523);
-
- var zrColor = __webpack_require__(1438);
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var isArray = zrUtil.isArray;
- var ITEM_STYLE_NORMAL = 'itemStyle';
- var _default = {
- seriesType: 'treemap',
- reset: function (seriesModel, ecModel, api, payload) {
- var tree = seriesModel.getData().tree;
- var root = tree.root;
- var seriesItemStyleModel = seriesModel.getModel(ITEM_STYLE_NORMAL);
-
- if (root.isRemoved()) {
- return;
- }
-
- var levelItemStyles = zrUtil.map(tree.levelModels, function (levelModel) {
- return levelModel ? levelModel.get(ITEM_STYLE_NORMAL) : null;
- });
- travelTree(root, // Visual should calculate from tree root but not view root.
- {}, levelItemStyles, seriesItemStyleModel, seriesModel.getViewRoot().getAncestors(), seriesModel);
- }
- };
-
- function travelTree(node, designatedVisual, levelItemStyles, seriesItemStyleModel, viewRootAncestors, seriesModel) {
- var nodeModel = node.getModel();
- var nodeLayout = node.getLayout(); // Optimize
-
- if (!nodeLayout || nodeLayout.invisible || !nodeLayout.isInView) {
- return;
- }
-
- var nodeItemStyleModel = node.getModel(ITEM_STYLE_NORMAL);
- var levelItemStyle = levelItemStyles[node.depth];
- var visuals = buildVisuals(nodeItemStyleModel, designatedVisual, levelItemStyle, seriesItemStyleModel); // calculate border color
-
- var borderColor = nodeItemStyleModel.get('borderColor');
- var borderColorSaturation = nodeItemStyleModel.get('borderColorSaturation');
- var thisNodeColor;
-
- if (borderColorSaturation != null) {
- // For performance, do not always execute 'calculateColor'.
- thisNodeColor = calculateColor(visuals, node);
- borderColor = calculateBorderColor(borderColorSaturation, thisNodeColor);
- }
-
- node.setVisual('borderColor', borderColor);
- var viewChildren = node.viewChildren;
-
- if (!viewChildren || !viewChildren.length) {
- thisNodeColor = calculateColor(visuals, node); // Apply visual to this node.
-
- node.setVisual('color', thisNodeColor);
- } else {
- var mapping = buildVisualMapping(node, nodeModel, nodeLayout, nodeItemStyleModel, visuals, viewChildren); // Designate visual to children.
-
- zrUtil.each(viewChildren, function (child, index) {
- // If higher than viewRoot, only ancestors of viewRoot is needed to visit.
- if (child.depth >= viewRootAncestors.length || child === viewRootAncestors[child.depth]) {
- var childVisual = mapVisual(nodeModel, visuals, child, index, mapping, seriesModel);
- travelTree(child, childVisual, levelItemStyles, seriesItemStyleModel, viewRootAncestors, seriesModel);
- }
- });
- }
- }
-
- function buildVisuals(nodeItemStyleModel, designatedVisual, levelItemStyle, seriesItemStyleModel) {
- var visuals = zrUtil.extend({}, designatedVisual);
- zrUtil.each(['color', 'colorAlpha', 'colorSaturation'], function (visualName) {
- // Priority: thisNode > thisLevel > parentNodeDesignated > seriesModel
- var val = nodeItemStyleModel.get(visualName, true); // Ignore parent
-
- val == null && levelItemStyle && (val = levelItemStyle[visualName]);
- val == null && (val = designatedVisual[visualName]);
- val == null && (val = seriesItemStyleModel.get(visualName));
- val != null && (visuals[visualName] = val);
- });
- return visuals;
- }
-
- function calculateColor(visuals) {
- var color = getValueVisualDefine(visuals, 'color');
-
- if (color) {
- var colorAlpha = getValueVisualDefine(visuals, 'colorAlpha');
- var colorSaturation = getValueVisualDefine(visuals, 'colorSaturation');
-
- if (colorSaturation) {
- color = zrColor.modifyHSL(color, null, null, colorSaturation);
- }
-
- if (colorAlpha) {
- color = zrColor.modifyAlpha(color, colorAlpha);
- }
-
- return color;
- }
- }
-
- function calculateBorderColor(borderColorSaturation, thisNodeColor) {
- return thisNodeColor != null ? zrColor.modifyHSL(thisNodeColor, null, null, borderColorSaturation) : null;
- }
-
- function getValueVisualDefine(visuals, name) {
- var value = visuals[name];
-
- if (value != null && value !== 'none') {
- return value;
- }
- }
-
- function buildVisualMapping(node, nodeModel, nodeLayout, nodeItemStyleModel, visuals, viewChildren) {
- if (!viewChildren || !viewChildren.length) {
- return;
- }
-
- var rangeVisual = getRangeVisual(nodeModel, 'color') || visuals.color != null && visuals.color !== 'none' && (getRangeVisual(nodeModel, 'colorAlpha') || getRangeVisual(nodeModel, 'colorSaturation'));
-
- if (!rangeVisual) {
- return;
- }
-
- var visualMin = nodeModel.get('visualMin');
- var visualMax = nodeModel.get('visualMax');
- var dataExtent = nodeLayout.dataExtent.slice();
- visualMin != null && visualMin < dataExtent[0] && (dataExtent[0] = visualMin);
- visualMax != null && visualMax > dataExtent[1] && (dataExtent[1] = visualMax);
- var colorMappingBy = nodeModel.get('colorMappingBy');
- var opt = {
- type: rangeVisual.name,
- dataExtent: dataExtent,
- visual: rangeVisual.range
- };
-
- if (opt.type === 'color' && (colorMappingBy === 'index' || colorMappingBy === 'id')) {
- opt.mappingMethod = 'category';
- opt.loop = true; // categories is ordinal, so do not set opt.categories.
- } else {
- opt.mappingMethod = 'linear';
- }
-
- var mapping = new VisualMapping(opt);
- mapping.__drColorMappingBy = colorMappingBy;
- return mapping;
- } // Notice: If we dont have the attribute 'colorRange', but only use
- // attribute 'color' to represent both concepts of 'colorRange' and 'color',
- // (It means 'colorRange' when 'color' is Array, means 'color' when not array),
- // this problem will be encountered:
- // If a level-1 node dont have children, and its siblings has children,
- // and colorRange is set on level-1, then the node can not be colored.
- // So we separate 'colorRange' and 'color' to different attributes.
-
-
- function getRangeVisual(nodeModel, name) {
- // 'colorRange', 'colorARange', 'colorSRange'.
- // If not exsits on this node, fetch from levels and series.
- var range = nodeModel.get(name);
- return isArray(range) && range.length ? {
- name: name,
- range: range
- } : null;
- }
-
- function mapVisual(nodeModel, visuals, child, index, mapping, seriesModel) {
- var childVisuals = zrUtil.extend({}, visuals);
-
- if (mapping) {
- var mappingType = mapping.type;
- var colorMappingBy = mappingType === 'color' && mapping.__drColorMappingBy;
- var value = colorMappingBy === 'index' ? index : colorMappingBy === 'id' ? seriesModel.mapIdToIndex(child.getId()) : child.getValue(nodeModel.get('visualDimension'));
- childVisuals[mappingType] = mapping.mapValueToVisual(value);
- }
-
- return childVisuals;
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2616:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var BoundingRect = __webpack_require__(1185);
-
- var _number = __webpack_require__(985);
-
- var parsePercent = _number.parsePercent;
- var MAX_SAFE_INTEGER = _number.MAX_SAFE_INTEGER;
-
- var layout = __webpack_require__(1171);
-
- var helper = __webpack_require__(1522);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * A third-party license is embeded for some of the code in this file:
- * The treemap layout implementation was originally copied from
- * "d3.js" with some modifications made for this project.
- * (See more details in the comment of the method "squarify" below.)
- * The use of the source code of this file is also subject to the terms
- * and consitions of the license of "d3.js" (BSD-3Clause, see
- * </licenses/LICENSE-d3>).
- */
- var mathMax = Math.max;
- var mathMin = Math.min;
- var retrieveValue = zrUtil.retrieve;
- var each = zrUtil.each;
- var PATH_BORDER_WIDTH = ['itemStyle', 'borderWidth'];
- var PATH_GAP_WIDTH = ['itemStyle', 'gapWidth'];
- var PATH_UPPER_LABEL_SHOW = ['upperLabel', 'show'];
- var PATH_UPPER_LABEL_HEIGHT = ['upperLabel', 'height'];
- /**
- * @public
- */
-
- var _default = {
- seriesType: 'treemap',
- reset: function (seriesModel, ecModel, api, payload) {
- // Layout result in each node:
- // {x, y, width, height, area, borderWidth}
- var ecWidth = api.getWidth();
- var ecHeight = api.getHeight();
- var seriesOption = seriesModel.option;
- var layoutInfo = layout.getLayoutRect(seriesModel.getBoxLayoutParams(), {
- width: api.getWidth(),
- height: api.getHeight()
- });
- var size = seriesOption.size || []; // Compatible with ec2.
-
- var containerWidth = parsePercent(retrieveValue(layoutInfo.width, size[0]), ecWidth);
- var containerHeight = parsePercent(retrieveValue(layoutInfo.height, size[1]), ecHeight); // Fetch payload info.
-
- var payloadType = payload && payload.type;
- var types = ['treemapZoomToNode', 'treemapRootToNode'];
- var targetInfo = helper.retrieveTargetInfo(payload, types, seriesModel);
- var rootRect = payloadType === 'treemapRender' || payloadType === 'treemapMove' ? payload.rootRect : null;
- var viewRoot = seriesModel.getViewRoot();
- var viewAbovePath = helper.getPathToRoot(viewRoot);
-
- if (payloadType !== 'treemapMove') {
- var rootSize = payloadType === 'treemapZoomToNode' ? estimateRootSize(seriesModel, targetInfo, viewRoot, containerWidth, containerHeight) : rootRect ? [rootRect.width, rootRect.height] : [containerWidth, containerHeight];
- var sort = seriesOption.sort;
-
- if (sort && sort !== 'asc' && sort !== 'desc') {
- sort = 'desc';
- }
-
- var options = {
- squareRatio: seriesOption.squareRatio,
- sort: sort,
- leafDepth: seriesOption.leafDepth
- }; // layout should be cleared because using updateView but not update.
-
- viewRoot.hostTree.clearLayouts(); // TODO
- // optimize: if out of view clip, do not layout.
- // But take care that if do not render node out of view clip,
- // how to calculate start po
-
- var viewRootLayout = {
- x: 0,
- y: 0,
- width: rootSize[0],
- height: rootSize[1],
- area: rootSize[0] * rootSize[1]
- };
- viewRoot.setLayout(viewRootLayout);
- squarify(viewRoot, options, false, 0); // Supplement layout.
-
- var viewRootLayout = viewRoot.getLayout();
- each(viewAbovePath, function (node, index) {
- var childValue = (viewAbovePath[index + 1] || viewRoot).getValue();
- node.setLayout(zrUtil.extend({
- dataExtent: [childValue, childValue],
- borderWidth: 0,
- upperHeight: 0
- }, viewRootLayout));
- });
- }
-
- var treeRoot = seriesModel.getData().tree.root;
- treeRoot.setLayout(calculateRootPosition(layoutInfo, rootRect, targetInfo), true);
- seriesModel.setLayoutInfo(layoutInfo); // FIXME
- // 现在没有clip功能,暂时取ec高宽。
-
- prunning(treeRoot, // Transform to base element coordinate system.
- new BoundingRect(-layoutInfo.x, -layoutInfo.y, ecWidth, ecHeight), viewAbovePath, viewRoot, 0);
- }
- };
- /**
- * Layout treemap with squarify algorithm.
- * The original presentation of this algorithm
- * was made by Mark Bruls, Kees Huizing, and Jarke J. van Wijk
- * <https://graphics.ethz.ch/teaching/scivis_common/Literature/squarifiedTreeMaps.pdf>.
- * The implementation of this algorithm was originally copied from "d3.js"
- * <https://github.com/d3/d3/blob/9cc9a875e636a1dcf36cc1e07bdf77e1ad6e2c74/src/layout/treemap.js>
- * with some modifications made for this program.
- * See the license statement at the head of this file.
- *
- * @protected
- * @param {module:echarts/data/Tree~TreeNode} node
- * @param {Object} options
- * @param {string} options.sort 'asc' or 'desc'
- * @param {number} options.squareRatio
- * @param {boolean} hideChildren
- * @param {number} depth
- */
-
- function squarify(node, options, hideChildren, depth) {
- var width;
- var height;
-
- if (node.isRemoved()) {
- return;
- }
-
- var thisLayout = node.getLayout();
- width = thisLayout.width;
- height = thisLayout.height; // Considering border and gap
-
- var nodeModel = node.getModel();
- var borderWidth = nodeModel.get(PATH_BORDER_WIDTH);
- var halfGapWidth = nodeModel.get(PATH_GAP_WIDTH) / 2;
- var upperLabelHeight = getUpperLabelHeight(nodeModel);
- var upperHeight = Math.max(borderWidth, upperLabelHeight);
- var layoutOffset = borderWidth - halfGapWidth;
- var layoutOffsetUpper = upperHeight - halfGapWidth;
- var nodeModel = node.getModel();
- node.setLayout({
- borderWidth: borderWidth,
- upperHeight: upperHeight,
- upperLabelHeight: upperLabelHeight
- }, true);
- width = mathMax(width - 2 * layoutOffset, 0);
- height = mathMax(height - layoutOffset - layoutOffsetUpper, 0);
- var totalArea = width * height;
- var viewChildren = initChildren(node, nodeModel, totalArea, options, hideChildren, depth);
-
- if (!viewChildren.length) {
- return;
- }
-
- var rect = {
- x: layoutOffset,
- y: layoutOffsetUpper,
- width: width,
- height: height
- };
- var rowFixedLength = mathMin(width, height);
- var best = Infinity; // the best row score so far
-
- var row = [];
- row.area = 0;
-
- for (var i = 0, len = viewChildren.length; i < len;) {
- var child = viewChildren[i];
- row.push(child);
- row.area += child.getLayout().area;
- var score = worst(row, rowFixedLength, options.squareRatio); // continue with this orientation
-
- if (score <= best) {
- i++;
- best = score;
- } // abort, and try a different orientation
- else {
- row.area -= row.pop().getLayout().area;
- position(row, rowFixedLength, rect, halfGapWidth, false);
- rowFixedLength = mathMin(rect.width, rect.height);
- row.length = row.area = 0;
- best = Infinity;
- }
- }
-
- if (row.length) {
- position(row, rowFixedLength, rect, halfGapWidth, true);
- }
-
- if (!hideChildren) {
- var childrenVisibleMin = nodeModel.get('childrenVisibleMin');
-
- if (childrenVisibleMin != null && totalArea < childrenVisibleMin) {
- hideChildren = true;
- }
- }
-
- for (var i = 0, len = viewChildren.length; i < len; i++) {
- squarify(viewChildren[i], options, hideChildren, depth + 1);
- }
- }
- /**
- * Set area to each child, and calculate data extent for visual coding.
- */
-
-
- function initChildren(node, nodeModel, totalArea, options, hideChildren, depth) {
- var viewChildren = node.children || [];
- var orderBy = options.sort;
- orderBy !== 'asc' && orderBy !== 'desc' && (orderBy = null);
- var overLeafDepth = options.leafDepth != null && options.leafDepth <= depth; // leafDepth has higher priority.
-
- if (hideChildren && !overLeafDepth) {
- return node.viewChildren = [];
- } // Sort children, order by desc.
-
-
- viewChildren = zrUtil.filter(viewChildren, function (child) {
- return !child.isRemoved();
- });
- sort(viewChildren, orderBy);
- var info = statistic(nodeModel, viewChildren, orderBy);
-
- if (info.sum === 0) {
- return node.viewChildren = [];
- }
-
- info.sum = filterByThreshold(nodeModel, totalArea, info.sum, orderBy, viewChildren);
-
- if (info.sum === 0) {
- return node.viewChildren = [];
- } // Set area to each child.
-
-
- for (var i = 0, len = viewChildren.length; i < len; i++) {
- var area = viewChildren[i].getValue() / info.sum * totalArea; // Do not use setLayout({...}, true), because it is needed to clear last layout.
-
- viewChildren[i].setLayout({
- area: area
- });
- }
-
- if (overLeafDepth) {
- viewChildren.length && node.setLayout({
- isLeafRoot: true
- }, true);
- viewChildren.length = 0;
- }
-
- node.viewChildren = viewChildren;
- node.setLayout({
- dataExtent: info.dataExtent
- }, true);
- return viewChildren;
- }
- /**
- * Consider 'visibleMin'. Modify viewChildren and get new sum.
- */
-
-
- function filterByThreshold(nodeModel, totalArea, sum, orderBy, orderedChildren) {
- // visibleMin is not supported yet when no option.sort.
- if (!orderBy) {
- return sum;
- }
-
- var visibleMin = nodeModel.get('visibleMin');
- var len = orderedChildren.length;
- var deletePoint = len; // Always travel from little value to big value.
-
- for (var i = len - 1; i >= 0; i--) {
- var value = orderedChildren[orderBy === 'asc' ? len - i - 1 : i].getValue();
-
- if (value / sum * totalArea < visibleMin) {
- deletePoint = i;
- sum -= value;
- }
- }
-
- orderBy === 'asc' ? orderedChildren.splice(0, len - deletePoint) : orderedChildren.splice(deletePoint, len - deletePoint);
- return sum;
- }
- /**
- * Sort
- */
-
-
- function sort(viewChildren, orderBy) {
- if (orderBy) {
- viewChildren.sort(function (a, b) {
- var diff = orderBy === 'asc' ? a.getValue() - b.getValue() : b.getValue() - a.getValue();
- return diff === 0 ? orderBy === 'asc' ? a.dataIndex - b.dataIndex : b.dataIndex - a.dataIndex : diff;
- });
- }
-
- return viewChildren;
- }
- /**
- * Statistic
- */
-
-
- function statistic(nodeModel, children, orderBy) {
- // Calculate sum.
- var sum = 0;
-
- for (var i = 0, len = children.length; i < len; i++) {
- sum += children[i].getValue();
- } // Statistic data extent for latter visual coding.
- // Notice: data extent should be calculate based on raw children
- // but not filtered view children, otherwise visual mapping will not
- // be stable when zoom (where children is filtered by visibleMin).
-
-
- var dimension = nodeModel.get('visualDimension');
- var dataExtent; // The same as area dimension.
-
- if (!children || !children.length) {
- dataExtent = [NaN, NaN];
- } else if (dimension === 'value' && orderBy) {
- dataExtent = [children[children.length - 1].getValue(), children[0].getValue()];
- orderBy === 'asc' && dataExtent.reverse();
- } // Other dimension.
- else {
- var dataExtent = [Infinity, -Infinity];
- each(children, function (child) {
- var value = child.getValue(dimension);
- value < dataExtent[0] && (dataExtent[0] = value);
- value > dataExtent[1] && (dataExtent[1] = value);
- });
- }
-
- return {
- sum: sum,
- dataExtent: dataExtent
- };
- }
- /**
- * Computes the score for the specified row,
- * as the worst aspect ratio.
- */
-
-
- function worst(row, rowFixedLength, ratio) {
- var areaMax = 0;
- var areaMin = Infinity;
-
- for (var i = 0, area, len = row.length; i < len; i++) {
- area = row[i].getLayout().area;
-
- if (area) {
- area < areaMin && (areaMin = area);
- area > areaMax && (areaMax = area);
- }
- }
-
- var squareArea = row.area * row.area;
- var f = rowFixedLength * rowFixedLength * ratio;
- return squareArea ? mathMax(f * areaMax / squareArea, squareArea / (f * areaMin)) : Infinity;
- }
- /**
- * Positions the specified row of nodes. Modifies `rect`.
- */
-
-
- function position(row, rowFixedLength, rect, halfGapWidth, flush) {
- // When rowFixedLength === rect.width,
- // it is horizontal subdivision,
- // rowFixedLength is the width of the subdivision,
- // rowOtherLength is the height of the subdivision,
- // and nodes will be positioned from left to right.
- // wh[idx0WhenH] means: when horizontal,
- // wh[idx0WhenH] => wh[0] => 'width'.
- // xy[idx1WhenH] => xy[1] => 'y'.
- var idx0WhenH = rowFixedLength === rect.width ? 0 : 1;
- var idx1WhenH = 1 - idx0WhenH;
- var xy = ['x', 'y'];
- var wh = ['width', 'height'];
- var last = rect[xy[idx0WhenH]];
- var rowOtherLength = rowFixedLength ? row.area / rowFixedLength : 0;
-
- if (flush || rowOtherLength > rect[wh[idx1WhenH]]) {
- rowOtherLength = rect[wh[idx1WhenH]]; // over+underflow
- }
-
- for (var i = 0, rowLen = row.length; i < rowLen; i++) {
- var node = row[i];
- var nodeLayout = {};
- var step = rowOtherLength ? node.getLayout().area / rowOtherLength : 0;
- var wh1 = nodeLayout[wh[idx1WhenH]] = mathMax(rowOtherLength - 2 * halfGapWidth, 0); // We use Math.max/min to avoid negative width/height when considering gap width.
-
- var remain = rect[xy[idx0WhenH]] + rect[wh[idx0WhenH]] - last;
- var modWH = i === rowLen - 1 || remain < step ? remain : step;
- var wh0 = nodeLayout[wh[idx0WhenH]] = mathMax(modWH - 2 * halfGapWidth, 0);
- nodeLayout[xy[idx1WhenH]] = rect[xy[idx1WhenH]] + mathMin(halfGapWidth, wh1 / 2);
- nodeLayout[xy[idx0WhenH]] = last + mathMin(halfGapWidth, wh0 / 2);
- last += modWH;
- node.setLayout(nodeLayout, true);
- }
-
- rect[xy[idx1WhenH]] += rowOtherLength;
- rect[wh[idx1WhenH]] -= rowOtherLength;
- } // Return [containerWidth, containerHeight] as defualt.
-
-
- function estimateRootSize(seriesModel, targetInfo, viewRoot, containerWidth, containerHeight) {
- // If targetInfo.node exists, we zoom to the node,
- // so estimate whold width and heigth by target node.
- var currNode = (targetInfo || {}).node;
- var defaultSize = [containerWidth, containerHeight];
-
- if (!currNode || currNode === viewRoot) {
- return defaultSize;
- }
-
- var parent;
- var viewArea = containerWidth * containerHeight;
- var area = viewArea * seriesModel.option.zoomToNodeRatio;
-
- while (parent = currNode.parentNode) {
- // jshint ignore:line
- var sum = 0;
- var siblings = parent.children;
-
- for (var i = 0, len = siblings.length; i < len; i++) {
- sum += siblings[i].getValue();
- }
-
- var currNodeValue = currNode.getValue();
-
- if (currNodeValue === 0) {
- return defaultSize;
- }
-
- area *= sum / currNodeValue; // Considering border, suppose aspect ratio is 1.
-
- var parentModel = parent.getModel();
- var borderWidth = parentModel.get(PATH_BORDER_WIDTH);
- var upperHeight = Math.max(borderWidth, getUpperLabelHeight(parentModel, borderWidth));
- area += 4 * borderWidth * borderWidth + (3 * borderWidth + upperHeight) * Math.pow(area, 0.5);
- area > MAX_SAFE_INTEGER && (area = MAX_SAFE_INTEGER);
- currNode = parent;
- }
-
- area < viewArea && (area = viewArea);
- var scale = Math.pow(area / viewArea, 0.5);
- return [containerWidth * scale, containerHeight * scale];
- } // Root postion base on coord of containerGroup
-
-
- function calculateRootPosition(layoutInfo, rootRect, targetInfo) {
- if (rootRect) {
- return {
- x: rootRect.x,
- y: rootRect.y
- };
- }
-
- var defaultPosition = {
- x: 0,
- y: 0
- };
-
- if (!targetInfo) {
- return defaultPosition;
- } // If targetInfo is fetched by 'retrieveTargetInfo',
- // old tree and new tree are the same tree,
- // so the node still exists and we can visit it.
-
-
- var targetNode = targetInfo.node;
- var layout = targetNode.getLayout();
-
- if (!layout) {
- return defaultPosition;
- } // Transform coord from local to container.
-
-
- var targetCenter = [layout.width / 2, layout.height / 2];
- var node = targetNode;
-
- while (node) {
- var nodeLayout = node.getLayout();
- targetCenter[0] += nodeLayout.x;
- targetCenter[1] += nodeLayout.y;
- node = node.parentNode;
- }
-
- return {
- x: layoutInfo.width / 2 - targetCenter[0],
- y: layoutInfo.height / 2 - targetCenter[1]
- };
- } // Mark nodes visible for prunning when visual coding and rendering.
- // Prunning depends on layout and root position, so we have to do it after layout.
-
-
- function prunning(node, clipRect, viewAbovePath, viewRoot, depth) {
- var nodeLayout = node.getLayout();
- var nodeInViewAbovePath = viewAbovePath[depth];
- var isAboveViewRoot = nodeInViewAbovePath && nodeInViewAbovePath === node;
-
- if (nodeInViewAbovePath && !isAboveViewRoot || depth === viewAbovePath.length && node !== viewRoot) {
- return;
- }
-
- node.setLayout({
- // isInView means: viewRoot sub tree + viewAbovePath
- isInView: true,
- // invisible only means: outside view clip so that the node can not
- // see but still layout for animation preparation but not render.
- invisible: !isAboveViewRoot && !clipRect.intersect(nodeLayout),
- isAboveViewRoot: isAboveViewRoot
- }, true); // Transform to child coordinate.
-
- var childClipRect = new BoundingRect(clipRect.x - nodeLayout.x, clipRect.y - nodeLayout.y, clipRect.width, clipRect.height);
- each(node.viewChildren || [], function (child) {
- prunning(child, childClipRect, viewAbovePath, viewRoot, depth + 1);
- });
- }
-
- function getUpperLabelHeight(model) {
- return model.get(PATH_UPPER_LABEL_SHOW) ? model.get(PATH_UPPER_LABEL_HEIGHT) : 0;
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2617:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- __webpack_require__(2618);
-
- __webpack_require__(2620);
-
- __webpack_require__(2623);
-
- var categoryFilter = __webpack_require__(2624);
-
- var visualSymbol = __webpack_require__(1520);
-
- var categoryVisual = __webpack_require__(2625);
-
- var edgeVisual = __webpack_require__(2626);
-
- var simpleLayout = __webpack_require__(2627);
-
- var circularLayout = __webpack_require__(2628);
-
- var forceLayout = __webpack_require__(2629);
-
- var createView = __webpack_require__(2631);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- echarts.registerProcessor(categoryFilter);
- echarts.registerVisual(visualSymbol('graph', 'circle', null));
- echarts.registerVisual(categoryVisual);
- echarts.registerVisual(edgeVisual);
- echarts.registerLayout(simpleLayout);
- echarts.registerLayout(echarts.PRIORITY.VISUAL.POST_CHART_LAYOUT, circularLayout);
- echarts.registerLayout(forceLayout); // Graph view coordinate system
-
- echarts.registerCoordinateSystem('graphView', {
- create: createView
- });
-
- /***/ }),
-
- /***/ 2618:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var List = __webpack_require__(1403);
-
- var zrUtil = __webpack_require__(864);
-
- var _model = __webpack_require__(1064);
-
- var defaultEmphasis = _model.defaultEmphasis;
-
- var Model = __webpack_require__(1317);
-
- var _format = __webpack_require__(1186);
-
- var encodeHTML = _format.encodeHTML;
-
- var createGraphFromNodeEdge = __webpack_require__(2305);
-
- var LegendVisualProvider = __webpack_require__(1665);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var GraphSeries = echarts.extendSeriesModel({
- type: 'series.graph',
- init: function (option) {
- GraphSeries.superApply(this, 'init', arguments);
- var self = this;
-
- function getCategoriesData() {
- return self._categoriesData;
- } // Provide data for legend select
-
-
- this.legendVisualProvider = new LegendVisualProvider(getCategoriesData, getCategoriesData);
- this.fillDataTextStyle(option.edges || option.links);
-
- this._updateCategoriesData();
- },
- mergeOption: function (option) {
- GraphSeries.superApply(this, 'mergeOption', arguments);
- this.fillDataTextStyle(option.edges || option.links);
-
- this._updateCategoriesData();
- },
- mergeDefaultAndTheme: function (option) {
- GraphSeries.superApply(this, 'mergeDefaultAndTheme', arguments);
- defaultEmphasis(option, ['edgeLabel'], ['show']);
- },
- getInitialData: function (option, ecModel) {
- var edges = option.edges || option.links || [];
- var nodes = option.data || option.nodes || [];
- var self = this;
-
- if (nodes && edges) {
- return createGraphFromNodeEdge(nodes, edges, this, true, beforeLink).data;
- }
-
- function beforeLink(nodeData, edgeData) {
- // Overwrite nodeData.getItemModel to
- nodeData.wrapMethod('getItemModel', function (model) {
- var categoriesModels = self._categoriesModels;
- var categoryIdx = model.getShallow('category');
- var categoryModel = categoriesModels[categoryIdx];
-
- if (categoryModel) {
- categoryModel.parentModel = model.parentModel;
- model.parentModel = categoryModel;
- }
-
- return model;
- });
- var edgeLabelModel = self.getModel('edgeLabel'); // For option `edgeLabel` can be found by label.xxx.xxx on item mode.
-
- var fakeSeriesModel = new Model({
- label: edgeLabelModel.option
- }, edgeLabelModel.parentModel, ecModel);
- var emphasisEdgeLabelModel = self.getModel('emphasis.edgeLabel');
- var emphasisFakeSeriesModel = new Model({
- emphasis: {
- label: emphasisEdgeLabelModel.option
- }
- }, emphasisEdgeLabelModel.parentModel, ecModel);
- edgeData.wrapMethod('getItemModel', function (model) {
- model.customizeGetParent(edgeGetParent);
- return model;
- });
-
- function edgeGetParent(path) {
- path = this.parsePath(path);
- return path && path[0] === 'label' ? fakeSeriesModel : path && path[0] === 'emphasis' && path[1] === 'label' ? emphasisFakeSeriesModel : this.parentModel;
- }
- }
- },
-
- /**
- * @return {module:echarts/data/Graph}
- */
- getGraph: function () {
- return this.getData().graph;
- },
-
- /**
- * @return {module:echarts/data/List}
- */
- getEdgeData: function () {
- return this.getGraph().edgeData;
- },
-
- /**
- * @return {module:echarts/data/List}
- */
- getCategoriesData: function () {
- return this._categoriesData;
- },
-
- /**
- * @override
- */
- formatTooltip: function (dataIndex, multipleSeries, dataType) {
- if (dataType === 'edge') {
- var nodeData = this.getData();
- var params = this.getDataParams(dataIndex, dataType);
- var edge = nodeData.graph.getEdgeByIndex(dataIndex);
- var sourceName = nodeData.getName(edge.node1.dataIndex);
- var targetName = nodeData.getName(edge.node2.dataIndex);
- var html = [];
- sourceName != null && html.push(sourceName);
- targetName != null && html.push(targetName);
- html = encodeHTML(html.join(' > '));
-
- if (params.value) {
- html += ' : ' + encodeHTML(params.value);
- }
-
- return html;
- } else {
- // dataType === 'node' or empty
- return GraphSeries.superApply(this, 'formatTooltip', arguments);
- }
- },
- _updateCategoriesData: function () {
- var categories = zrUtil.map(this.option.categories || [], function (category) {
- // Data must has value
- return category.value != null ? category : zrUtil.extend({
- value: 0
- }, category);
- });
- var categoriesData = new List(['value'], this);
- categoriesData.initData(categories);
- this._categoriesData = categoriesData;
- this._categoriesModels = categoriesData.mapArray(function (idx) {
- return categoriesData.getItemModel(idx, true);
- });
- },
- setZoom: function (zoom) {
- this.option.zoom = zoom;
- },
- setCenter: function (center) {
- this.option.center = center;
- },
- isAnimationEnabled: function () {
- return GraphSeries.superCall(this, 'isAnimationEnabled') // Not enable animation when do force layout
- && !(this.get('layout') === 'force' && this.get('force.layoutAnimation'));
- },
- defaultOption: {
- zlevel: 0,
- z: 2,
- coordinateSystem: 'view',
- // Default option for all coordinate systems
- // xAxisIndex: 0,
- // yAxisIndex: 0,
- // polarIndex: 0,
- // geoIndex: 0,
- legendHoverLink: true,
- hoverAnimation: true,
- layout: null,
- focusNodeAdjacency: false,
- // Configuration of circular layout
- circular: {
- rotateLabel: false
- },
- // Configuration of force directed layout
- force: {
- initLayout: null,
- // Node repulsion. Can be an array to represent range.
- repulsion: [0, 50],
- gravity: 0.1,
- // Initial friction
- friction: 0.6,
- // Edge length. Can be an array to represent range.
- edgeLength: 30,
- layoutAnimation: true
- },
- left: 'center',
- top: 'center',
- // right: null,
- // bottom: null,
- // width: '80%',
- // height: '80%',
- symbol: 'circle',
- symbolSize: 10,
- edgeSymbol: ['none', 'none'],
- edgeSymbolSize: 10,
- edgeLabel: {
- position: 'middle'
- },
- draggable: false,
- roam: false,
- // Default on center of graph
- center: null,
- zoom: 1,
- // Symbol size scale ratio in roam
- nodeScaleRatio: 0.6,
- // cursor: null,
- // categories: [],
- // data: []
- // Or
- // nodes: []
- //
- // links: []
- // Or
- // edges: []
- label: {
- show: false,
- formatter: '{b}'
- },
- itemStyle: {},
- lineStyle: {
- color: '#aaa',
- width: 1,
- curveness: 0,
- opacity: 0.5
- },
- emphasis: {
- label: {
- show: true
- }
- }
- }
- });
- var _default = GraphSeries;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2619:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var zrUtil = __webpack_require__(864);
-
- var _clazz = __webpack_require__(1456);
-
- var enableClassCheck = _clazz.enableClassCheck;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // id may be function name of Object, add a prefix to avoid this problem.
- function generateNodeKey(id) {
- return '_EC_' + id;
- }
- /**
- * @alias module:echarts/data/Graph
- * @constructor
- * @param {boolean} directed
- */
-
-
- var Graph = function (directed) {
- /**
- * 是否是有向图
- * @type {boolean}
- * @private
- */
- this._directed = directed || false;
- /**
- * @type {Array.<module:echarts/data/Graph.Node>}
- * @readOnly
- */
-
- this.nodes = [];
- /**
- * @type {Array.<module:echarts/data/Graph.Edge>}
- * @readOnly
- */
-
- this.edges = [];
- /**
- * @type {Object.<string, module:echarts/data/Graph.Node>}
- * @private
- */
-
- this._nodesMap = {};
- /**
- * @type {Object.<string, module:echarts/data/Graph.Edge>}
- * @private
- */
-
- this._edgesMap = {};
- /**
- * @type {module:echarts/data/List}
- * @readOnly
- */
-
- this.data;
- /**
- * @type {module:echarts/data/List}
- * @readOnly
- */
-
- this.edgeData;
- };
-
- var graphProto = Graph.prototype;
- /**
- * @type {string}
- */
-
- graphProto.type = 'graph';
- /**
- * If is directed graph
- * @return {boolean}
- */
-
- graphProto.isDirected = function () {
- return this._directed;
- };
- /**
- * Add a new node
- * @param {string} id
- * @param {number} [dataIndex]
- */
-
-
- graphProto.addNode = function (id, dataIndex) {
- id = id == null ? '' + dataIndex : '' + id;
- var nodesMap = this._nodesMap;
-
- if (nodesMap[generateNodeKey(id)]) {
- return;
- }
-
- var node = new Node(id, dataIndex);
- node.hostGraph = this;
- this.nodes.push(node);
- nodesMap[generateNodeKey(id)] = node;
- return node;
- };
- /**
- * Get node by data index
- * @param {number} dataIndex
- * @return {module:echarts/data/Graph~Node}
- */
-
-
- graphProto.getNodeByIndex = function (dataIndex) {
- var rawIdx = this.data.getRawIndex(dataIndex);
- return this.nodes[rawIdx];
- };
- /**
- * Get node by id
- * @param {string} id
- * @return {module:echarts/data/Graph.Node}
- */
-
-
- graphProto.getNodeById = function (id) {
- return this._nodesMap[generateNodeKey(id)];
- };
- /**
- * Add a new edge
- * @param {number|string|module:echarts/data/Graph.Node} n1
- * @param {number|string|module:echarts/data/Graph.Node} n2
- * @param {number} [dataIndex=-1]
- * @return {module:echarts/data/Graph.Edge}
- */
-
-
- graphProto.addEdge = function (n1, n2, dataIndex) {
- var nodesMap = this._nodesMap;
- var edgesMap = this._edgesMap; // PNEDING
-
- if (typeof n1 === 'number') {
- n1 = this.nodes[n1];
- }
-
- if (typeof n2 === 'number') {
- n2 = this.nodes[n2];
- }
-
- if (!Node.isInstance(n1)) {
- n1 = nodesMap[generateNodeKey(n1)];
- }
-
- if (!Node.isInstance(n2)) {
- n2 = nodesMap[generateNodeKey(n2)];
- }
-
- if (!n1 || !n2) {
- return;
- }
-
- var key = n1.id + '-' + n2.id; // PENDING
-
- if (edgesMap[key]) {
- return;
- }
-
- var edge = new Edge(n1, n2, dataIndex);
- edge.hostGraph = this;
-
- if (this._directed) {
- n1.outEdges.push(edge);
- n2.inEdges.push(edge);
- }
-
- n1.edges.push(edge);
-
- if (n1 !== n2) {
- n2.edges.push(edge);
- }
-
- this.edges.push(edge);
- edgesMap[key] = edge;
- return edge;
- };
- /**
- * Get edge by data index
- * @param {number} dataIndex
- * @return {module:echarts/data/Graph~Node}
- */
-
-
- graphProto.getEdgeByIndex = function (dataIndex) {
- var rawIdx = this.edgeData.getRawIndex(dataIndex);
- return this.edges[rawIdx];
- };
- /**
- * Get edge by two linked nodes
- * @param {module:echarts/data/Graph.Node|string} n1
- * @param {module:echarts/data/Graph.Node|string} n2
- * @return {module:echarts/data/Graph.Edge}
- */
-
-
- graphProto.getEdge = function (n1, n2) {
- if (Node.isInstance(n1)) {
- n1 = n1.id;
- }
-
- if (Node.isInstance(n2)) {
- n2 = n2.id;
- }
-
- var edgesMap = this._edgesMap;
-
- if (this._directed) {
- return edgesMap[n1 + '-' + n2];
- } else {
- return edgesMap[n1 + '-' + n2] || edgesMap[n2 + '-' + n1];
- }
- };
- /**
- * Iterate all nodes
- * @param {Function} cb
- * @param {*} [context]
- */
-
-
- graphProto.eachNode = function (cb, context) {
- var nodes = this.nodes;
- var len = nodes.length;
-
- for (var i = 0; i < len; i++) {
- if (nodes[i].dataIndex >= 0) {
- cb.call(context, nodes[i], i);
- }
- }
- };
- /**
- * Iterate all edges
- * @param {Function} cb
- * @param {*} [context]
- */
-
-
- graphProto.eachEdge = function (cb, context) {
- var edges = this.edges;
- var len = edges.length;
-
- for (var i = 0; i < len; i++) {
- if (edges[i].dataIndex >= 0 && edges[i].node1.dataIndex >= 0 && edges[i].node2.dataIndex >= 0) {
- cb.call(context, edges[i], i);
- }
- }
- };
- /**
- * Breadth first traverse
- * @param {Function} cb
- * @param {module:echarts/data/Graph.Node} startNode
- * @param {string} [direction='none'] 'none'|'in'|'out'
- * @param {*} [context]
- */
-
-
- graphProto.breadthFirstTraverse = function (cb, startNode, direction, context) {
- if (!Node.isInstance(startNode)) {
- startNode = this._nodesMap[generateNodeKey(startNode)];
- }
-
- if (!startNode) {
- return;
- }
-
- var edgeType = direction === 'out' ? 'outEdges' : direction === 'in' ? 'inEdges' : 'edges';
-
- for (var i = 0; i < this.nodes.length; i++) {
- this.nodes[i].__visited = false;
- }
-
- if (cb.call(context, startNode, null)) {
- return;
- }
-
- var queue = [startNode];
-
- while (queue.length) {
- var currentNode = queue.shift();
- var edges = currentNode[edgeType];
-
- for (var i = 0; i < edges.length; i++) {
- var e = edges[i];
- var otherNode = e.node1 === currentNode ? e.node2 : e.node1;
-
- if (!otherNode.__visited) {
- if (cb.call(context, otherNode, currentNode)) {
- // Stop traversing
- return;
- }
-
- queue.push(otherNode);
- otherNode.__visited = true;
- }
- }
- }
- }; // TODO
- // graphProto.depthFirstTraverse = function (
- // cb, startNode, direction, context
- // ) {
- // };
- // Filter update
-
-
- graphProto.update = function () {
- var data = this.data;
- var edgeData = this.edgeData;
- var nodes = this.nodes;
- var edges = this.edges;
-
- for (var i = 0, len = nodes.length; i < len; i++) {
- nodes[i].dataIndex = -1;
- }
-
- for (var i = 0, len = data.count(); i < len; i++) {
- nodes[data.getRawIndex(i)].dataIndex = i;
- }
-
- edgeData.filterSelf(function (idx) {
- var edge = edges[edgeData.getRawIndex(idx)];
- return edge.node1.dataIndex >= 0 && edge.node2.dataIndex >= 0;
- }); // Update edge
-
- for (var i = 0, len = edges.length; i < len; i++) {
- edges[i].dataIndex = -1;
- }
-
- for (var i = 0, len = edgeData.count(); i < len; i++) {
- edges[edgeData.getRawIndex(i)].dataIndex = i;
- }
- };
- /**
- * @return {module:echarts/data/Graph}
- */
-
-
- graphProto.clone = function () {
- var graph = new Graph(this._directed);
- var nodes = this.nodes;
- var edges = this.edges;
-
- for (var i = 0; i < nodes.length; i++) {
- graph.addNode(nodes[i].id, nodes[i].dataIndex);
- }
-
- for (var i = 0; i < edges.length; i++) {
- var e = edges[i];
- graph.addEdge(e.node1.id, e.node2.id, e.dataIndex);
- }
-
- return graph;
- };
- /**
- * @alias module:echarts/data/Graph.Node
- */
-
-
- function Node(id, dataIndex) {
- /**
- * @type {string}
- */
- this.id = id == null ? '' : id;
- /**
- * @type {Array.<module:echarts/data/Graph.Edge>}
- */
-
- this.inEdges = [];
- /**
- * @type {Array.<module:echarts/data/Graph.Edge>}
- */
-
- this.outEdges = [];
- /**
- * @type {Array.<module:echarts/data/Graph.Edge>}
- */
-
- this.edges = [];
- /**
- * @type {module:echarts/data/Graph}
- */
-
- this.hostGraph;
- /**
- * @type {number}
- */
-
- this.dataIndex = dataIndex == null ? -1 : dataIndex;
- }
-
- Node.prototype = {
- constructor: Node,
-
- /**
- * @return {number}
- */
- degree: function () {
- return this.edges.length;
- },
-
- /**
- * @return {number}
- */
- inDegree: function () {
- return this.inEdges.length;
- },
-
- /**
- * @return {number}
- */
- outDegree: function () {
- return this.outEdges.length;
- },
-
- /**
- * @param {string} [path]
- * @return {module:echarts/model/Model}
- */
- getModel: function (path) {
- if (this.dataIndex < 0) {
- return;
- }
-
- var graph = this.hostGraph;
- var itemModel = graph.data.getItemModel(this.dataIndex);
- return itemModel.getModel(path);
- }
- };
- /**
- * 图边
- * @alias module:echarts/data/Graph.Edge
- * @param {module:echarts/data/Graph.Node} n1
- * @param {module:echarts/data/Graph.Node} n2
- * @param {number} [dataIndex=-1]
- */
-
- function Edge(n1, n2, dataIndex) {
- /**
- * 节点1,如果是有向图则为源节点
- * @type {module:echarts/data/Graph.Node}
- */
- this.node1 = n1;
- /**
- * 节点2,如果是有向图则为目标节点
- * @type {module:echarts/data/Graph.Node}
- */
-
- this.node2 = n2;
- this.dataIndex = dataIndex == null ? -1 : dataIndex;
- }
- /**
- * @param {string} [path]
- * @return {module:echarts/model/Model}
- */
-
-
- Edge.prototype.getModel = function (path) {
- if (this.dataIndex < 0) {
- return;
- }
-
- var graph = this.hostGraph;
- var itemModel = graph.edgeData.getItemModel(this.dataIndex);
- return itemModel.getModel(path);
- };
-
- var createGraphDataProxyMixin = function (hostName, dataName) {
- return {
- /**
- * @param {string=} [dimension='value'] Default 'value'. can be 'a', 'b', 'c', 'd', 'e'.
- * @return {number}
- */
- getValue: function (dimension) {
- var data = this[hostName][dataName];
- return data.get(data.getDimension(dimension || 'value'), this.dataIndex);
- },
-
- /**
- * @param {Object|string} key
- * @param {*} [value]
- */
- setVisual: function (key, value) {
- this.dataIndex >= 0 && this[hostName][dataName].setItemVisual(this.dataIndex, key, value);
- },
-
- /**
- * @param {string} key
- * @return {boolean}
- */
- getVisual: function (key, ignoreParent) {
- return this[hostName][dataName].getItemVisual(this.dataIndex, key, ignoreParent);
- },
-
- /**
- * @param {Object} layout
- * @return {boolean} [merge=false]
- */
- setLayout: function (layout, merge) {
- this.dataIndex >= 0 && this[hostName][dataName].setItemLayout(this.dataIndex, layout, merge);
- },
-
- /**
- * @return {Object}
- */
- getLayout: function () {
- return this[hostName][dataName].getItemLayout(this.dataIndex);
- },
-
- /**
- * @return {module:zrender/Element}
- */
- getGraphicEl: function () {
- return this[hostName][dataName].getItemGraphicEl(this.dataIndex);
- },
-
- /**
- * @return {number}
- */
- getRawIndex: function () {
- return this[hostName][dataName].getRawIndex(this.dataIndex);
- }
- };
- };
-
- zrUtil.mixin(Node, createGraphDataProxyMixin('hostGraph', 'data'));
- zrUtil.mixin(Edge, createGraphDataProxyMixin('hostGraph', 'edgeData'));
- Graph.Node = Node;
- Graph.Edge = Edge;
- enableClassCheck(Node);
- enableClassCheck(Edge);
- var _default = Graph;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2620:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var SymbolDraw = __webpack_require__(1661);
-
- var LineDraw = __webpack_require__(1912);
-
- var RoamController = __webpack_require__(1667);
-
- var roamHelper = __webpack_require__(1907);
-
- var _cursorHelper = __webpack_require__(1795);
-
- var onIrrelevantElement = _cursorHelper.onIrrelevantElement;
-
- var graphic = __webpack_require__(906);
-
- var adjustEdge = __webpack_require__(2622);
-
- var _graphHelper = __webpack_require__(1914);
-
- var getNodeGlobalScale = _graphHelper.getNodeGlobalScale;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var FOCUS_ADJACENCY = '__focusNodeAdjacency';
- var UNFOCUS_ADJACENCY = '__unfocusNodeAdjacency';
- var nodeOpacityPath = ['itemStyle', 'opacity'];
- var lineOpacityPath = ['lineStyle', 'opacity'];
-
- function getItemOpacity(item, opacityPath) {
- var opacity = item.getVisual('opacity');
- return opacity != null ? opacity : item.getModel().get(opacityPath);
- }
-
- function fadeOutItem(item, opacityPath, opacityRatio) {
- var el = item.getGraphicEl();
- var opacity = getItemOpacity(item, opacityPath);
-
- if (opacityRatio != null) {
- opacity == null && (opacity = 1);
- opacity *= opacityRatio;
- }
-
- el.downplay && el.downplay();
- el.traverse(function (child) {
- if (!child.isGroup) {
- var opct = child.lineLabelOriginalOpacity;
-
- if (opct == null || opacityRatio != null) {
- opct = opacity;
- }
-
- child.setStyle('opacity', opct);
- }
- });
- }
-
- function fadeInItem(item, opacityPath) {
- var opacity = getItemOpacity(item, opacityPath);
- var el = item.getGraphicEl(); // Should go back to normal opacity first, consider hoverLayer,
- // where current state is copied to elMirror, and support
- // emphasis opacity here.
-
- el.traverse(function (child) {
- !child.isGroup && child.setStyle('opacity', opacity);
- });
- el.highlight && el.highlight();
- }
-
- var _default = echarts.extendChartView({
- type: 'graph',
- init: function (ecModel, api) {
- var symbolDraw = new SymbolDraw();
- var lineDraw = new LineDraw();
- var group = this.group;
- this._controller = new RoamController(api.getZr());
- this._controllerHost = {
- target: group
- };
- group.add(symbolDraw.group);
- group.add(lineDraw.group);
- this._symbolDraw = symbolDraw;
- this._lineDraw = lineDraw;
- this._firstRender = true;
- },
- render: function (seriesModel, ecModel, api) {
- var graphView = this;
- var coordSys = seriesModel.coordinateSystem;
- this._model = seriesModel;
- var symbolDraw = this._symbolDraw;
- var lineDraw = this._lineDraw;
- var group = this.group;
-
- if (coordSys.type === 'view') {
- var groupNewProp = {
- position: coordSys.position,
- scale: coordSys.scale
- };
-
- if (this._firstRender) {
- group.attr(groupNewProp);
- } else {
- graphic.updateProps(group, groupNewProp, seriesModel);
- }
- } // Fix edge contact point with node
-
-
- adjustEdge(seriesModel.getGraph(), getNodeGlobalScale(seriesModel));
- var data = seriesModel.getData();
- symbolDraw.updateData(data);
- var edgeData = seriesModel.getEdgeData();
- lineDraw.updateData(edgeData);
-
- this._updateNodeAndLinkScale();
-
- this._updateController(seriesModel, ecModel, api);
-
- clearTimeout(this._layoutTimeout);
- var forceLayout = seriesModel.forceLayout;
- var layoutAnimation = seriesModel.get('force.layoutAnimation');
-
- if (forceLayout) {
- this._startForceLayoutIteration(forceLayout, layoutAnimation);
- }
-
- data.eachItemGraphicEl(function (el, idx) {
- var itemModel = data.getItemModel(idx); // Update draggable
-
- el.off('drag').off('dragend');
- var draggable = itemModel.get('draggable');
-
- if (draggable) {
- el.on('drag', function () {
- if (forceLayout) {
- forceLayout.warmUp();
- !this._layouting && this._startForceLayoutIteration(forceLayout, layoutAnimation);
- forceLayout.setFixed(idx); // Write position back to layout
-
- data.setItemLayout(idx, el.position);
- }
- }, this).on('dragend', function () {
- if (forceLayout) {
- forceLayout.setUnfixed(idx);
- }
- }, this);
- }
-
- el.setDraggable(draggable && forceLayout);
- el[FOCUS_ADJACENCY] && el.off('mouseover', el[FOCUS_ADJACENCY]);
- el[UNFOCUS_ADJACENCY] && el.off('mouseout', el[UNFOCUS_ADJACENCY]);
-
- if (itemModel.get('focusNodeAdjacency')) {
- el.on('mouseover', el[FOCUS_ADJACENCY] = function () {
- graphView._clearTimer();
-
- api.dispatchAction({
- type: 'focusNodeAdjacency',
- seriesId: seriesModel.id,
- dataIndex: el.dataIndex
- });
- });
- el.on('mouseout', el[UNFOCUS_ADJACENCY] = function () {
- graphView._dispatchUnfocus(api);
- });
- }
- }, this);
- data.graph.eachEdge(function (edge) {
- var el = edge.getGraphicEl();
- el[FOCUS_ADJACENCY] && el.off('mouseover', el[FOCUS_ADJACENCY]);
- el[UNFOCUS_ADJACENCY] && el.off('mouseout', el[UNFOCUS_ADJACENCY]);
-
- if (edge.getModel().get('focusNodeAdjacency')) {
- el.on('mouseover', el[FOCUS_ADJACENCY] = function () {
- graphView._clearTimer();
-
- api.dispatchAction({
- type: 'focusNodeAdjacency',
- seriesId: seriesModel.id,
- edgeDataIndex: edge.dataIndex
- });
- });
- el.on('mouseout', el[UNFOCUS_ADJACENCY] = function () {
- graphView._dispatchUnfocus(api);
- });
- }
- });
- var circularRotateLabel = seriesModel.get('layout') === 'circular' && seriesModel.get('circular.rotateLabel');
- var cx = data.getLayout('cx');
- var cy = data.getLayout('cy');
- data.eachItemGraphicEl(function (el, idx) {
- var itemModel = data.getItemModel(idx);
- var labelRotate = itemModel.get('label.rotate') || 0;
- var symbolPath = el.getSymbolPath();
-
- if (circularRotateLabel) {
- var pos = data.getItemLayout(idx);
- var rad = Math.atan2(pos[1] - cy, pos[0] - cx);
-
- if (rad < 0) {
- rad = Math.PI * 2 + rad;
- }
-
- var isLeft = pos[0] < cx;
-
- if (isLeft) {
- rad = rad - Math.PI;
- }
-
- var textPosition = isLeft ? 'left' : 'right';
- graphic.modifyLabelStyle(symbolPath, {
- textRotation: -rad,
- textPosition: textPosition,
- textOrigin: 'center'
- }, {
- textPosition: textPosition
- });
- } else {
- graphic.modifyLabelStyle(symbolPath, {
- textRotation: labelRotate *= Math.PI / 180
- });
- }
- });
- this._firstRender = false;
- },
- dispose: function () {
- this._controller && this._controller.dispose();
- this._controllerHost = {};
-
- this._clearTimer();
- },
- _dispatchUnfocus: function (api, opt) {
- var self = this;
-
- this._clearTimer();
-
- this._unfocusDelayTimer = setTimeout(function () {
- self._unfocusDelayTimer = null;
- api.dispatchAction({
- type: 'unfocusNodeAdjacency',
- seriesId: self._model.id
- });
- }, 500);
- },
- _clearTimer: function () {
- if (this._unfocusDelayTimer) {
- clearTimeout(this._unfocusDelayTimer);
- this._unfocusDelayTimer = null;
- }
- },
- focusNodeAdjacency: function (seriesModel, ecModel, api, payload) {
- var data = this._model.getData();
-
- var graph = data.graph;
- var dataIndex = payload.dataIndex;
- var edgeDataIndex = payload.edgeDataIndex;
- var node = graph.getNodeByIndex(dataIndex);
- var edge = graph.getEdgeByIndex(edgeDataIndex);
-
- if (!node && !edge) {
- return;
- }
-
- graph.eachNode(function (node) {
- fadeOutItem(node, nodeOpacityPath, 0.1);
- });
- graph.eachEdge(function (edge) {
- fadeOutItem(edge, lineOpacityPath, 0.1);
- });
-
- if (node) {
- fadeInItem(node, nodeOpacityPath);
- zrUtil.each(node.edges, function (adjacentEdge) {
- if (adjacentEdge.dataIndex < 0) {
- return;
- }
-
- fadeInItem(adjacentEdge, lineOpacityPath);
- fadeInItem(adjacentEdge.node1, nodeOpacityPath);
- fadeInItem(adjacentEdge.node2, nodeOpacityPath);
- });
- }
-
- if (edge) {
- fadeInItem(edge, lineOpacityPath);
- fadeInItem(edge.node1, nodeOpacityPath);
- fadeInItem(edge.node2, nodeOpacityPath);
- }
- },
- unfocusNodeAdjacency: function (seriesModel, ecModel, api, payload) {
- var graph = this._model.getData().graph;
-
- graph.eachNode(function (node) {
- fadeOutItem(node, nodeOpacityPath);
- });
- graph.eachEdge(function (edge) {
- fadeOutItem(edge, lineOpacityPath);
- });
- },
- _startForceLayoutIteration: function (forceLayout, layoutAnimation) {
- var self = this;
-
- (function step() {
- forceLayout.step(function (stopped) {
- self.updateLayout(self._model);
- (self._layouting = !stopped) && (layoutAnimation ? self._layoutTimeout = setTimeout(step, 16) : step());
- });
- })();
- },
- _updateController: function (seriesModel, ecModel, api) {
- var controller = this._controller;
- var controllerHost = this._controllerHost;
- var group = this.group;
- controller.setPointerChecker(function (e, x, y) {
- var rect = group.getBoundingRect();
- rect.applyTransform(group.transform);
- return rect.contain(x, y) && !onIrrelevantElement(e, api, seriesModel);
- });
-
- if (seriesModel.coordinateSystem.type !== 'view') {
- controller.disable();
- return;
- }
-
- controller.enable(seriesModel.get('roam'));
- controllerHost.zoomLimit = seriesModel.get('scaleLimit');
- controllerHost.zoom = seriesModel.coordinateSystem.getZoom();
- controller.off('pan').off('zoom').on('pan', function (e) {
- roamHelper.updateViewOnPan(controllerHost, e.dx, e.dy);
- api.dispatchAction({
- seriesId: seriesModel.id,
- type: 'graphRoam',
- dx: e.dx,
- dy: e.dy
- });
- }).on('zoom', function (e) {
- roamHelper.updateViewOnZoom(controllerHost, e.scale, e.originX, e.originY);
- api.dispatchAction({
- seriesId: seriesModel.id,
- type: 'graphRoam',
- zoom: e.scale,
- originX: e.originX,
- originY: e.originY
- });
-
- this._updateNodeAndLinkScale();
-
- adjustEdge(seriesModel.getGraph(), getNodeGlobalScale(seriesModel));
-
- this._lineDraw.updateLayout();
- }, this);
- },
- _updateNodeAndLinkScale: function () {
- var seriesModel = this._model;
- var data = seriesModel.getData();
- var nodeScale = getNodeGlobalScale(seriesModel);
- var invScale = [nodeScale, nodeScale];
- data.eachItemGraphicEl(function (el, idx) {
- el.attr('scale', invScale);
- });
- },
- updateLayout: function (seriesModel) {
- adjustEdge(seriesModel.getGraph(), getNodeGlobalScale(seriesModel));
-
- this._symbolDraw.updateLayout();
-
- this._lineDraw.updateLayout();
- },
- remove: function (ecModel, api) {
- this._symbolDraw && this._symbolDraw.remove();
- this._lineDraw && this._lineDraw.remove();
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2621:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var graphic = __webpack_require__(906);
-
- var vec2 = __webpack_require__(1180);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Line path for bezier and straight line draw
- */
- var straightLineProto = graphic.Line.prototype;
- var bezierCurveProto = graphic.BezierCurve.prototype;
-
- function isLine(shape) {
- return isNaN(+shape.cpx1) || isNaN(+shape.cpy1);
- }
-
- var _default = graphic.extendShape({
- type: 'ec-line',
- style: {
- stroke: '#000',
- fill: null
- },
- shape: {
- x1: 0,
- y1: 0,
- x2: 0,
- y2: 0,
- percent: 1,
- cpx1: null,
- cpy1: null
- },
- buildPath: function (ctx, shape) {
- this[isLine(shape) ? '_buildPathLine' : '_buildPathCurve'](ctx, shape);
- },
- _buildPathLine: straightLineProto.buildPath,
- _buildPathCurve: bezierCurveProto.buildPath,
- pointAt: function (t) {
- return this[isLine(this.shape) ? '_pointAtLine' : '_pointAtCurve'](t);
- },
- _pointAtLine: straightLineProto.pointAt,
- _pointAtCurve: bezierCurveProto.pointAt,
- tangentAt: function (t) {
- var shape = this.shape;
- var p = isLine(shape) ? [shape.x2 - shape.x1, shape.y2 - shape.y1] : this._tangentAtCurve(t);
- return vec2.normalize(p, p);
- },
- _tangentAtCurve: bezierCurveProto.tangentAt
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2622:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var curveTool = __webpack_require__(1481);
-
- var vec2 = __webpack_require__(1180);
-
- var _graphHelper = __webpack_require__(1914);
-
- var getSymbolSize = _graphHelper.getSymbolSize;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var v1 = [];
- var v2 = [];
- var v3 = [];
- var quadraticAt = curveTool.quadraticAt;
- var v2DistSquare = vec2.distSquare;
- var mathAbs = Math.abs;
-
- function intersectCurveCircle(curvePoints, center, radius) {
- var p0 = curvePoints[0];
- var p1 = curvePoints[1];
- var p2 = curvePoints[2];
- var d = Infinity;
- var t;
- var radiusSquare = radius * radius;
- var interval = 0.1;
-
- for (var _t = 0.1; _t <= 0.9; _t += 0.1) {
- v1[0] = quadraticAt(p0[0], p1[0], p2[0], _t);
- v1[1] = quadraticAt(p0[1], p1[1], p2[1], _t);
- var diff = mathAbs(v2DistSquare(v1, center) - radiusSquare);
-
- if (diff < d) {
- d = diff;
- t = _t;
- }
- } // Assume the segment is monotone,Find root through Bisection method
- // At most 32 iteration
-
-
- for (var i = 0; i < 32; i++) {
- // var prev = t - interval;
- var next = t + interval; // v1[0] = quadraticAt(p0[0], p1[0], p2[0], prev);
- // v1[1] = quadraticAt(p0[1], p1[1], p2[1], prev);
-
- v2[0] = quadraticAt(p0[0], p1[0], p2[0], t);
- v2[1] = quadraticAt(p0[1], p1[1], p2[1], t);
- v3[0] = quadraticAt(p0[0], p1[0], p2[0], next);
- v3[1] = quadraticAt(p0[1], p1[1], p2[1], next);
- var diff = v2DistSquare(v2, center) - radiusSquare;
-
- if (mathAbs(diff) < 1e-2) {
- break;
- } // var prevDiff = v2DistSquare(v1, center) - radiusSquare;
-
-
- var nextDiff = v2DistSquare(v3, center) - radiusSquare;
- interval /= 2;
-
- if (diff < 0) {
- if (nextDiff >= 0) {
- t = t + interval;
- } else {
- t = t - interval;
- }
- } else {
- if (nextDiff >= 0) {
- t = t - interval;
- } else {
- t = t + interval;
- }
- }
- }
-
- return t;
- } // Adjust edge to avoid
-
-
- function _default(graph, scale) {
- var tmp0 = [];
- var quadraticSubdivide = curveTool.quadraticSubdivide;
- var pts = [[], [], []];
- var pts2 = [[], []];
- var v = [];
- scale /= 2;
- graph.eachEdge(function (edge, idx) {
- var linePoints = edge.getLayout();
- var fromSymbol = edge.getVisual('fromSymbol');
- var toSymbol = edge.getVisual('toSymbol');
-
- if (!linePoints.__original) {
- linePoints.__original = [vec2.clone(linePoints[0]), vec2.clone(linePoints[1])];
-
- if (linePoints[2]) {
- linePoints.__original.push(vec2.clone(linePoints[2]));
- }
- }
-
- var originalPoints = linePoints.__original; // Quadratic curve
-
- if (linePoints[2] != null) {
- vec2.copy(pts[0], originalPoints[0]);
- vec2.copy(pts[1], originalPoints[2]);
- vec2.copy(pts[2], originalPoints[1]);
-
- if (fromSymbol && fromSymbol !== 'none') {
- var symbolSize = getSymbolSize(edge.node1);
- var t = intersectCurveCircle(pts, originalPoints[0], symbolSize * scale); // Subdivide and get the second
-
- quadraticSubdivide(pts[0][0], pts[1][0], pts[2][0], t, tmp0);
- pts[0][0] = tmp0[3];
- pts[1][0] = tmp0[4];
- quadraticSubdivide(pts[0][1], pts[1][1], pts[2][1], t, tmp0);
- pts[0][1] = tmp0[3];
- pts[1][1] = tmp0[4];
- }
-
- if (toSymbol && toSymbol !== 'none') {
- var symbolSize = getSymbolSize(edge.node2);
- var t = intersectCurveCircle(pts, originalPoints[1], symbolSize * scale); // Subdivide and get the first
-
- quadraticSubdivide(pts[0][0], pts[1][0], pts[2][0], t, tmp0);
- pts[1][0] = tmp0[1];
- pts[2][0] = tmp0[2];
- quadraticSubdivide(pts[0][1], pts[1][1], pts[2][1], t, tmp0);
- pts[1][1] = tmp0[1];
- pts[2][1] = tmp0[2];
- } // Copy back to layout
-
-
- vec2.copy(linePoints[0], pts[0]);
- vec2.copy(linePoints[1], pts[2]);
- vec2.copy(linePoints[2], pts[1]);
- } // Line
- else {
- vec2.copy(pts2[0], originalPoints[0]);
- vec2.copy(pts2[1], originalPoints[1]);
- vec2.sub(v, pts2[1], pts2[0]);
- vec2.normalize(v, v);
-
- if (fromSymbol && fromSymbol !== 'none') {
- var symbolSize = getSymbolSize(edge.node1);
- vec2.scaleAndAdd(pts2[0], pts2[0], v, symbolSize * scale);
- }
-
- if (toSymbol && toSymbol !== 'none') {
- var symbolSize = getSymbolSize(edge.node2);
- vec2.scaleAndAdd(pts2[1], pts2[1], v, -symbolSize * scale);
- }
-
- vec2.copy(linePoints[0], pts2[0]);
- vec2.copy(linePoints[1], pts2[1]);
- }
- });
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2623:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var _roamHelper = __webpack_require__(1908);
-
- var updateCenterAndZoom = _roamHelper.updateCenterAndZoom;
-
- __webpack_require__(2306);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var actionInfo = {
- type: 'graphRoam',
- event: 'graphRoam',
- update: 'none'
- };
- /**
- * @payload
- * @property {string} name Series name
- * @property {number} [dx]
- * @property {number} [dy]
- * @property {number} [zoom]
- * @property {number} [originX]
- * @property {number} [originY]
- */
-
- echarts.registerAction(actionInfo, function (payload, ecModel) {
- ecModel.eachComponent({
- mainType: 'series',
- query: payload
- }, function (seriesModel) {
- var coordSys = seriesModel.coordinateSystem;
- var res = updateCenterAndZoom(coordSys, payload);
- seriesModel.setCenter && seriesModel.setCenter(res.center);
- seriesModel.setZoom && seriesModel.setZoom(res.zoom);
- });
- });
-
- /***/ }),
-
- /***/ 2624:
- /***/ (function(module, exports) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function _default(ecModel) {
- var legendModels = ecModel.findComponents({
- mainType: 'legend'
- });
-
- if (!legendModels || !legendModels.length) {
- return;
- }
-
- ecModel.eachSeriesByType('graph', function (graphSeries) {
- var categoriesData = graphSeries.getCategoriesData();
- var graph = graphSeries.getGraph();
- var data = graph.data;
- var categoryNames = categoriesData.mapArray(categoriesData.getName);
- data.filterSelf(function (idx) {
- var model = data.getItemModel(idx);
- var category = model.getShallow('category');
-
- if (category != null) {
- if (typeof category === 'number') {
- category = categoryNames[category];
- } // If in any legend component the status is not selected.
-
-
- for (var i = 0; i < legendModels.length; i++) {
- if (!legendModels[i].isSelected(category)) {
- return false;
- }
- }
- }
-
- return true;
- });
- }, this);
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2625:
- /***/ (function(module, exports) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function _default(ecModel) {
- var paletteScope = {};
- ecModel.eachSeriesByType('graph', function (seriesModel) {
- var categoriesData = seriesModel.getCategoriesData();
- var data = seriesModel.getData();
- var categoryNameIdxMap = {};
- categoriesData.each(function (idx) {
- var name = categoriesData.getName(idx); // Add prefix to avoid conflict with Object.prototype.
-
- categoryNameIdxMap['ec-' + name] = idx;
- var itemModel = categoriesData.getItemModel(idx);
- var color = itemModel.get('itemStyle.color') || seriesModel.getColorFromPalette(name, paletteScope);
- categoriesData.setItemVisual(idx, 'color', color);
- var itemStyleList = ['opacity', 'symbol', 'symbolSize', 'symbolKeepAspect'];
-
- for (var i = 0; i < itemStyleList.length; i++) {
- var itemStyle = itemModel.getShallow(itemStyleList[i], true);
-
- if (itemStyle != null) {
- categoriesData.setItemVisual(idx, itemStyleList[i], itemStyle);
- }
- }
- }); // Assign category color to visual
-
- if (categoriesData.count()) {
- data.each(function (idx) {
- var model = data.getItemModel(idx);
- var category = model.getShallow('category');
-
- if (category != null) {
- if (typeof category === 'string') {
- category = categoryNameIdxMap['ec-' + category];
- }
-
- var itemStyleList = ['color', 'opacity', 'symbol', 'symbolSize', 'symbolKeepAspect'];
-
- for (var i = 0; i < itemStyleList.length; i++) {
- if (data.getItemVisual(idx, itemStyleList[i], true) == null) {
- data.setItemVisual(idx, itemStyleList[i], categoriesData.getItemVisual(category, itemStyleList[i]));
- }
- }
- }
- });
- }
- });
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2626:
- /***/ (function(module, exports) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function normalize(a) {
- if (!(a instanceof Array)) {
- a = [a, a];
- }
-
- return a;
- }
-
- function _default(ecModel) {
- ecModel.eachSeriesByType('graph', function (seriesModel) {
- var graph = seriesModel.getGraph();
- var edgeData = seriesModel.getEdgeData();
- var symbolType = normalize(seriesModel.get('edgeSymbol'));
- var symbolSize = normalize(seriesModel.get('edgeSymbolSize'));
- var colorQuery = 'lineStyle.color'.split('.');
- var opacityQuery = 'lineStyle.opacity'.split('.');
- edgeData.setVisual('fromSymbol', symbolType && symbolType[0]);
- edgeData.setVisual('toSymbol', symbolType && symbolType[1]);
- edgeData.setVisual('fromSymbolSize', symbolSize && symbolSize[0]);
- edgeData.setVisual('toSymbolSize', symbolSize && symbolSize[1]);
- edgeData.setVisual('color', seriesModel.get(colorQuery));
- edgeData.setVisual('opacity', seriesModel.get(opacityQuery));
- edgeData.each(function (idx) {
- var itemModel = edgeData.getItemModel(idx);
- var edge = graph.getEdgeByIndex(idx);
- var symbolType = normalize(itemModel.getShallow('symbol', true));
- var symbolSize = normalize(itemModel.getShallow('symbolSize', true)); // Edge visual must after node visual
-
- var color = itemModel.get(colorQuery);
- var opacity = itemModel.get(opacityQuery);
-
- switch (color) {
- case 'source':
- color = edge.node1.getVisual('color');
- break;
-
- case 'target':
- color = edge.node2.getVisual('color');
- break;
- }
-
- symbolType[0] && edge.setVisual('fromSymbol', symbolType[0]);
- symbolType[1] && edge.setVisual('toSymbol', symbolType[1]);
- symbolSize[0] && edge.setVisual('fromSymbolSize', symbolSize[0]);
- symbolSize[1] && edge.setVisual('toSymbolSize', symbolSize[1]);
- edge.setVisual('color', color);
- edge.setVisual('opacity', opacity);
- });
- });
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2627:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _util = __webpack_require__(864);
-
- var each = _util.each;
-
- var _simpleLayoutHelper = __webpack_require__(2307);
-
- var simpleLayout = _simpleLayoutHelper.simpleLayout;
- var simpleLayoutEdge = _simpleLayoutHelper.simpleLayoutEdge;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function _default(ecModel, api) {
- ecModel.eachSeriesByType('graph', function (seriesModel) {
- var layout = seriesModel.get('layout');
- var coordSys = seriesModel.coordinateSystem;
-
- if (coordSys && coordSys.type !== 'view') {
- var data = seriesModel.getData();
- var dimensions = [];
- each(coordSys.dimensions, function (coordDim) {
- dimensions = dimensions.concat(data.mapDimension(coordDim, true));
- });
-
- for (var dataIndex = 0; dataIndex < data.count(); dataIndex++) {
- var value = [];
- var hasValue = false;
-
- for (var i = 0; i < dimensions.length; i++) {
- var val = data.get(dimensions[i], dataIndex);
-
- if (!isNaN(val)) {
- hasValue = true;
- }
-
- value.push(val);
- }
-
- if (hasValue) {
- data.setItemLayout(dataIndex, coordSys.dataToPoint(value));
- } else {
- // Also {Array.<number>}, not undefined to avoid if...else... statement
- data.setItemLayout(dataIndex, [NaN, NaN]);
- }
- }
-
- simpleLayoutEdge(data.graph);
- } else if (!layout || layout === 'none') {
- simpleLayout(seriesModel);
- }
- });
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2628:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _circularLayoutHelper = __webpack_require__(2308);
-
- var circularLayout = _circularLayoutHelper.circularLayout;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function _default(ecModel) {
- ecModel.eachSeriesByType('graph', function (seriesModel) {
- if (seriesModel.get('layout') === 'circular') {
- circularLayout(seriesModel, 'symbolSize');
- }
- });
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2629:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _forceHelper = __webpack_require__(2630);
-
- var forceLayout = _forceHelper.forceLayout;
-
- var _simpleLayoutHelper = __webpack_require__(2307);
-
- var simpleLayout = _simpleLayoutHelper.simpleLayout;
-
- var _circularLayoutHelper = __webpack_require__(2308);
-
- var circularLayout = _circularLayoutHelper.circularLayout;
-
- var _number = __webpack_require__(985);
-
- var linearMap = _number.linearMap;
-
- var vec2 = __webpack_require__(1180);
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function _default(ecModel) {
- ecModel.eachSeriesByType('graph', function (graphSeries) {
- var coordSys = graphSeries.coordinateSystem;
-
- if (coordSys && coordSys.type !== 'view') {
- return;
- }
-
- if (graphSeries.get('layout') === 'force') {
- var preservedPoints = graphSeries.preservedPoints || {};
- var graph = graphSeries.getGraph();
- var nodeData = graph.data;
- var edgeData = graph.edgeData;
- var forceModel = graphSeries.getModel('force');
- var initLayout = forceModel.get('initLayout');
-
- if (graphSeries.preservedPoints) {
- nodeData.each(function (idx) {
- var id = nodeData.getId(idx);
- nodeData.setItemLayout(idx, preservedPoints[id] || [NaN, NaN]);
- });
- } else if (!initLayout || initLayout === 'none') {
- simpleLayout(graphSeries);
- } else if (initLayout === 'circular') {
- circularLayout(graphSeries, 'value');
- }
-
- var nodeDataExtent = nodeData.getDataExtent('value');
- var edgeDataExtent = edgeData.getDataExtent('value'); // var edgeDataExtent = edgeData.getDataExtent('value');
-
- var repulsion = forceModel.get('repulsion');
- var edgeLength = forceModel.get('edgeLength');
-
- if (!zrUtil.isArray(repulsion)) {
- repulsion = [repulsion, repulsion];
- }
-
- if (!zrUtil.isArray(edgeLength)) {
- edgeLength = [edgeLength, edgeLength];
- } // Larger value has smaller length
-
-
- edgeLength = [edgeLength[1], edgeLength[0]];
- var nodes = nodeData.mapArray('value', function (value, idx) {
- var point = nodeData.getItemLayout(idx);
- var rep = linearMap(value, nodeDataExtent, repulsion);
-
- if (isNaN(rep)) {
- rep = (repulsion[0] + repulsion[1]) / 2;
- }
-
- return {
- w: rep,
- rep: rep,
- fixed: nodeData.getItemModel(idx).get('fixed'),
- p: !point || isNaN(point[0]) || isNaN(point[1]) ? null : point
- };
- });
- var edges = edgeData.mapArray('value', function (value, idx) {
- var edge = graph.getEdgeByIndex(idx);
- var d = linearMap(value, edgeDataExtent, edgeLength);
-
- if (isNaN(d)) {
- d = (edgeLength[0] + edgeLength[1]) / 2;
- }
-
- var edgeModel = edge.getModel();
- return {
- n1: nodes[edge.node1.dataIndex],
- n2: nodes[edge.node2.dataIndex],
- d: d,
- curveness: edgeModel.get('lineStyle.curveness') || 0,
- ignoreForceLayout: edgeModel.get('ignoreForceLayout')
- };
- });
- var coordSys = graphSeries.coordinateSystem;
- var rect = coordSys.getBoundingRect();
- var forceInstance = forceLayout(nodes, edges, {
- rect: rect,
- gravity: forceModel.get('gravity'),
- friction: forceModel.get('friction')
- });
- var oldStep = forceInstance.step;
-
- forceInstance.step = function (cb) {
- for (var i = 0, l = nodes.length; i < l; i++) {
- if (nodes[i].fixed) {
- // Write back to layout instance
- vec2.copy(nodes[i].p, graph.getNodeByIndex(i).getLayout());
- }
- }
-
- oldStep(function (nodes, edges, stopped) {
- for (var i = 0, l = nodes.length; i < l; i++) {
- if (!nodes[i].fixed) {
- graph.getNodeByIndex(i).setLayout(nodes[i].p);
- }
-
- preservedPoints[nodeData.getId(i)] = nodes[i].p;
- }
-
- for (var i = 0, l = edges.length; i < l; i++) {
- var e = edges[i];
- var edge = graph.getEdgeByIndex(i);
- var p1 = e.n1.p;
- var p2 = e.n2.p;
- var points = edge.getLayout();
- points = points ? points.slice() : [];
- points[0] = points[0] || [];
- points[1] = points[1] || [];
- vec2.copy(points[0], p1);
- vec2.copy(points[1], p2);
-
- if (+e.curveness) {
- points[2] = [(p1[0] + p2[0]) / 2 - (p1[1] - p2[1]) * e.curveness, (p1[1] + p2[1]) / 2 - (p2[0] - p1[0]) * e.curveness];
- }
-
- edge.setLayout(points);
- } // Update layout
-
-
- cb && cb(stopped);
- });
- };
-
- graphSeries.forceLayout = forceInstance;
- graphSeries.preservedPoints = preservedPoints; // Step to get the layout
-
- forceInstance.step();
- } else {
- // Remove prev injected forceLayout instance
- graphSeries.forceLayout = null;
- }
- });
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2630:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var vec2 = __webpack_require__(1180);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * A third-party license is embeded for some of the code in this file:
- * Some formulas were originally copied from "d3.js" with some
- * modifications made for this project.
- * (See more details in the comment of the method "step" below.)
- * The use of the source code of this file is also subject to the terms
- * and consitions of the license of "d3.js" (BSD-3Clause, see
- * </licenses/LICENSE-d3>).
- */
- var scaleAndAdd = vec2.scaleAndAdd; // function adjacentNode(n, e) {
- // return e.n1 === n ? e.n2 : e.n1;
- // }
-
- function forceLayout(nodes, edges, opts) {
- var rect = opts.rect;
- var width = rect.width;
- var height = rect.height;
- var center = [rect.x + width / 2, rect.y + height / 2]; // var scale = opts.scale || 1;
-
- var gravity = opts.gravity == null ? 0.1 : opts.gravity; // for (var i = 0; i < edges.length; i++) {
- // var e = edges[i];
- // var n1 = e.n1;
- // var n2 = e.n2;
- // n1.edges = n1.edges || [];
- // n2.edges = n2.edges || [];
- // n1.edges.push(e);
- // n2.edges.push(e);
- // }
- // Init position
-
- for (var i = 0; i < nodes.length; i++) {
- var n = nodes[i];
-
- if (!n.p) {
- n.p = vec2.create(width * (Math.random() - 0.5) + center[0], height * (Math.random() - 0.5) + center[1]);
- }
-
- n.pp = vec2.clone(n.p);
- n.edges = null;
- } // Formula in 'Graph Drawing by Force-directed Placement'
- // var k = scale * Math.sqrt(width * height / nodes.length);
- // var k2 = k * k;
-
-
- var initialFriction = opts.friction == null ? 0.6 : opts.friction;
- var friction = initialFriction;
- return {
- warmUp: function () {
- friction = initialFriction * 0.8;
- },
- setFixed: function (idx) {
- nodes[idx].fixed = true;
- },
- setUnfixed: function (idx) {
- nodes[idx].fixed = false;
- },
-
- /**
- * Some formulas were originally copied from "d3.js"
- * https://github.com/d3/d3/blob/b516d77fb8566b576088e73410437494717ada26/src/layout/force.js
- * with some modifications made for this project.
- * See the license statement at the head of this file.
- */
- step: function (cb) {
- var v12 = [];
- var nLen = nodes.length;
-
- for (var i = 0; i < edges.length; i++) {
- var e = edges[i];
-
- if (e.ignoreForceLayout) {
- continue;
- }
-
- var n1 = e.n1;
- var n2 = e.n2;
- vec2.sub(v12, n2.p, n1.p);
- var d = vec2.len(v12) - e.d;
- var w = n2.w / (n1.w + n2.w);
-
- if (isNaN(w)) {
- w = 0;
- }
-
- vec2.normalize(v12, v12);
- !n1.fixed && scaleAndAdd(n1.p, n1.p, v12, w * d * friction);
- !n2.fixed && scaleAndAdd(n2.p, n2.p, v12, -(1 - w) * d * friction);
- } // Gravity
-
-
- for (var i = 0; i < nLen; i++) {
- var n = nodes[i];
-
- if (!n.fixed) {
- vec2.sub(v12, center, n.p); // var d = vec2.len(v12);
- // vec2.scale(v12, v12, 1 / d);
- // var gravityFactor = gravity;
-
- scaleAndAdd(n.p, n.p, v12, gravity * friction);
- }
- } // Repulsive
- // PENDING
-
-
- for (var i = 0; i < nLen; i++) {
- var n1 = nodes[i];
-
- for (var j = i + 1; j < nLen; j++) {
- var n2 = nodes[j];
- vec2.sub(v12, n2.p, n1.p);
- var d = vec2.len(v12);
-
- if (d === 0) {
- // Random repulse
- vec2.set(v12, Math.random() - 0.5, Math.random() - 0.5);
- d = 1;
- }
-
- var repFact = (n1.rep + n2.rep) / d / d;
- !n1.fixed && scaleAndAdd(n1.pp, n1.pp, v12, repFact);
- !n2.fixed && scaleAndAdd(n2.pp, n2.pp, v12, -repFact);
- }
- }
-
- var v = [];
-
- for (var i = 0; i < nLen; i++) {
- var n = nodes[i];
-
- if (!n.fixed) {
- vec2.sub(v, n.p, n.pp);
- scaleAndAdd(n.p, n.p, v, friction);
- vec2.copy(n.pp, n.p);
- }
- }
-
- friction = friction * 0.992;
- cb && cb(nodes, edges, friction < 0.01);
- }
- };
- }
-
- exports.forceLayout = forceLayout;
-
- /***/ }),
-
- /***/ 2631:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var View = __webpack_require__(1910);
-
- var _layout = __webpack_require__(1171);
-
- var getLayoutRect = _layout.getLayoutRect;
-
- var bbox = __webpack_require__(1784);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // FIXME Where to create the simple view coordinate system
- function getViewRect(seriesModel, api, aspect) {
- var option = seriesModel.getBoxLayoutParams();
- option.aspect = aspect;
- return getLayoutRect(option, {
- width: api.getWidth(),
- height: api.getHeight()
- });
- }
-
- function _default(ecModel, api) {
- var viewList = [];
- ecModel.eachSeriesByType('graph', function (seriesModel) {
- var coordSysType = seriesModel.get('coordinateSystem');
-
- if (!coordSysType || coordSysType === 'view') {
- var data = seriesModel.getData();
- var positions = data.mapArray(function (idx) {
- var itemModel = data.getItemModel(idx);
- return [+itemModel.get('x'), +itemModel.get('y')];
- });
- var min = [];
- var max = [];
- bbox.fromPoints(positions, min, max); // If width or height is 0
-
- if (max[0] - min[0] === 0) {
- max[0] += 1;
- min[0] -= 1;
- }
-
- if (max[1] - min[1] === 0) {
- max[1] += 1;
- min[1] -= 1;
- }
-
- var aspect = (max[0] - min[0]) / (max[1] - min[1]); // FIXME If get view rect after data processed?
-
- var viewRect = getViewRect(seriesModel, api, aspect); // Position may be NaN, use view rect instead
-
- if (isNaN(aspect)) {
- min = [viewRect.x, viewRect.y];
- max = [viewRect.x + viewRect.width, viewRect.y + viewRect.height];
- }
-
- var bbWidth = max[0] - min[0];
- var bbHeight = max[1] - min[1];
- var viewWidth = viewRect.width;
- var viewHeight = viewRect.height;
- var viewCoordSys = seriesModel.coordinateSystem = new View();
- viewCoordSys.zoomLimit = seriesModel.get('scaleLimit');
- viewCoordSys.setBoundingRect(min[0], min[1], bbWidth, bbHeight);
- viewCoordSys.setViewRect(viewRect.x, viewRect.y, viewWidth, viewHeight); // Update roam info
-
- viewCoordSys.setCenter(seriesModel.get('center'));
- viewCoordSys.setZoom(seriesModel.get('zoom'));
- viewList.push(viewCoordSys);
- }
- });
- return viewList;
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2632:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- __webpack_require__(2633);
-
- __webpack_require__(2634);
-
- /***/ }),
-
- /***/ 2633:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var createListSimply = __webpack_require__(1604);
-
- var SeriesModel = __webpack_require__(1322);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var GaugeSeries = SeriesModel.extend({
- type: 'series.gauge',
- getInitialData: function (option, ecModel) {
- return createListSimply(this, ['value']);
- },
- defaultOption: {
- zlevel: 0,
- z: 2,
- // 默认全局居中
- center: ['50%', '50%'],
- legendHoverLink: true,
- radius: '75%',
- startAngle: 225,
- endAngle: -45,
- clockwise: true,
- // 最小值
- min: 0,
- // 最大值
- max: 100,
- // 分割段数,默认为10
- splitNumber: 10,
- // 坐标轴线
- axisLine: {
- // 默认显示,属性show控制显示与否
- show: true,
- lineStyle: {
- // 属性lineStyle控制线条样式
- color: [[0.2, '#91c7ae'], [0.8, '#63869e'], [1, '#c23531']],
- width: 30
- }
- },
- // 分隔线
- splitLine: {
- // 默认显示,属性show控制显示与否
- show: true,
- // 属性length控制线长
- length: 30,
- // 属性lineStyle(详见lineStyle)控制线条样式
- lineStyle: {
- color: '#eee',
- width: 2,
- type: 'solid'
- }
- },
- // 坐标轴小标记
- axisTick: {
- // 属性show控制显示与否,默认不显示
- show: true,
- // 每份split细分多少段
- splitNumber: 5,
- // 属性length控制线长
- length: 8,
- // 属性lineStyle控制线条样式
- lineStyle: {
- color: '#eee',
- width: 1,
- type: 'solid'
- }
- },
- axisLabel: {
- show: true,
- distance: 5,
- // formatter: null,
- color: 'auto'
- },
- pointer: {
- show: true,
- length: '80%',
- width: 8
- },
- itemStyle: {
- color: 'auto'
- },
- title: {
- show: true,
- // x, y,单位px
- offsetCenter: [0, '-40%'],
- // 其余属性默认使用全局文本样式,详见TEXTSTYLE
- color: '#333',
- fontSize: 15
- },
- detail: {
- show: true,
- backgroundColor: 'rgba(0,0,0,0)',
- borderWidth: 0,
- borderColor: '#ccc',
- width: 100,
- height: null,
- // self-adaption
- padding: [5, 10],
- // x, y,单位px
- offsetCenter: [0, '40%'],
- // formatter: null,
- // 其余属性默认使用全局文本样式,详见TEXTSTYLE
- color: 'auto',
- fontSize: 30
- }
- }
- });
- var _default = GaugeSeries;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2634:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var PointerPath = __webpack_require__(2635);
-
- var graphic = __webpack_require__(906);
-
- var ChartView = __webpack_require__(1439);
-
- var _number = __webpack_require__(985);
-
- var parsePercent = _number.parsePercent;
- var round = _number.round;
- var linearMap = _number.linearMap;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function parsePosition(seriesModel, api) {
- var center = seriesModel.get('center');
- var width = api.getWidth();
- var height = api.getHeight();
- var size = Math.min(width, height);
- var cx = parsePercent(center[0], api.getWidth());
- var cy = parsePercent(center[1], api.getHeight());
- var r = parsePercent(seriesModel.get('radius'), size / 2);
- return {
- cx: cx,
- cy: cy,
- r: r
- };
- }
-
- function formatLabel(label, labelFormatter) {
- if (labelFormatter) {
- if (typeof labelFormatter === 'string') {
- label = labelFormatter.replace('{value}', label != null ? label : '');
- } else if (typeof labelFormatter === 'function') {
- label = labelFormatter(label);
- }
- }
-
- return label;
- }
-
- var PI2 = Math.PI * 2;
- var GaugeView = ChartView.extend({
- type: 'gauge',
- render: function (seriesModel, ecModel, api) {
- this.group.removeAll();
- var colorList = seriesModel.get('axisLine.lineStyle.color');
- var posInfo = parsePosition(seriesModel, api);
-
- this._renderMain(seriesModel, ecModel, api, colorList, posInfo);
- },
- dispose: function () {},
- _renderMain: function (seriesModel, ecModel, api, colorList, posInfo) {
- var group = this.group;
- var axisLineModel = seriesModel.getModel('axisLine');
- var lineStyleModel = axisLineModel.getModel('lineStyle');
- var clockwise = seriesModel.get('clockwise');
- var startAngle = -seriesModel.get('startAngle') / 180 * Math.PI;
- var endAngle = -seriesModel.get('endAngle') / 180 * Math.PI;
- var angleRangeSpan = (endAngle - startAngle) % PI2;
- var prevEndAngle = startAngle;
- var axisLineWidth = lineStyleModel.get('width');
- var showAxis = axisLineModel.get('show');
-
- for (var i = 0; showAxis && i < colorList.length; i++) {
- // Clamp
- var percent = Math.min(Math.max(colorList[i][0], 0), 1);
- var endAngle = startAngle + angleRangeSpan * percent;
- var sector = new graphic.Sector({
- shape: {
- startAngle: prevEndAngle,
- endAngle: endAngle,
- cx: posInfo.cx,
- cy: posInfo.cy,
- clockwise: clockwise,
- r0: posInfo.r - axisLineWidth,
- r: posInfo.r
- },
- silent: true
- });
- sector.setStyle({
- fill: colorList[i][1]
- });
- sector.setStyle(lineStyleModel.getLineStyle( // Because we use sector to simulate arc
- // so the properties for stroking are useless
- ['color', 'borderWidth', 'borderColor']));
- group.add(sector);
- prevEndAngle = endAngle;
- }
-
- var getColor = function (percent) {
- // Less than 0
- if (percent <= 0) {
- return colorList[0][1];
- }
-
- for (var i = 0; i < colorList.length; i++) {
- if (colorList[i][0] >= percent && (i === 0 ? 0 : colorList[i - 1][0]) < percent) {
- return colorList[i][1];
- }
- } // More than 1
-
-
- return colorList[i - 1][1];
- };
-
- if (!clockwise) {
- var tmp = startAngle;
- startAngle = endAngle;
- endAngle = tmp;
- }
-
- this._renderTicks(seriesModel, ecModel, api, getColor, posInfo, startAngle, endAngle, clockwise);
-
- this._renderPointer(seriesModel, ecModel, api, getColor, posInfo, startAngle, endAngle, clockwise);
-
- this._renderTitle(seriesModel, ecModel, api, getColor, posInfo);
-
- this._renderDetail(seriesModel, ecModel, api, getColor, posInfo);
- },
- _renderTicks: function (seriesModel, ecModel, api, getColor, posInfo, startAngle, endAngle, clockwise) {
- var group = this.group;
- var cx = posInfo.cx;
- var cy = posInfo.cy;
- var r = posInfo.r;
- var minVal = +seriesModel.get('min');
- var maxVal = +seriesModel.get('max');
- var splitLineModel = seriesModel.getModel('splitLine');
- var tickModel = seriesModel.getModel('axisTick');
- var labelModel = seriesModel.getModel('axisLabel');
- var splitNumber = seriesModel.get('splitNumber');
- var subSplitNumber = tickModel.get('splitNumber');
- var splitLineLen = parsePercent(splitLineModel.get('length'), r);
- var tickLen = parsePercent(tickModel.get('length'), r);
- var angle = startAngle;
- var step = (endAngle - startAngle) / splitNumber;
- var subStep = step / subSplitNumber;
- var splitLineStyle = splitLineModel.getModel('lineStyle').getLineStyle();
- var tickLineStyle = tickModel.getModel('lineStyle').getLineStyle();
-
- for (var i = 0; i <= splitNumber; i++) {
- var unitX = Math.cos(angle);
- var unitY = Math.sin(angle); // Split line
-
- if (splitLineModel.get('show')) {
- var splitLine = new graphic.Line({
- shape: {
- x1: unitX * r + cx,
- y1: unitY * r + cy,
- x2: unitX * (r - splitLineLen) + cx,
- y2: unitY * (r - splitLineLen) + cy
- },
- style: splitLineStyle,
- silent: true
- });
-
- if (splitLineStyle.stroke === 'auto') {
- splitLine.setStyle({
- stroke: getColor(i / splitNumber)
- });
- }
-
- group.add(splitLine);
- } // Label
-
-
- if (labelModel.get('show')) {
- var label = formatLabel(round(i / splitNumber * (maxVal - minVal) + minVal), labelModel.get('formatter'));
- var distance = labelModel.get('distance');
- var autoColor = getColor(i / splitNumber);
- group.add(new graphic.Text({
- style: graphic.setTextStyle({}, labelModel, {
- text: label,
- x: unitX * (r - splitLineLen - distance) + cx,
- y: unitY * (r - splitLineLen - distance) + cy,
- textVerticalAlign: unitY < -0.4 ? 'top' : unitY > 0.4 ? 'bottom' : 'middle',
- textAlign: unitX < -0.4 ? 'left' : unitX > 0.4 ? 'right' : 'center'
- }, {
- autoColor: autoColor
- }),
- silent: true
- }));
- } // Axis tick
-
-
- if (tickModel.get('show') && i !== splitNumber) {
- for (var j = 0; j <= subSplitNumber; j++) {
- var unitX = Math.cos(angle);
- var unitY = Math.sin(angle);
- var tickLine = new graphic.Line({
- shape: {
- x1: unitX * r + cx,
- y1: unitY * r + cy,
- x2: unitX * (r - tickLen) + cx,
- y2: unitY * (r - tickLen) + cy
- },
- silent: true,
- style: tickLineStyle
- });
-
- if (tickLineStyle.stroke === 'auto') {
- tickLine.setStyle({
- stroke: getColor((i + j / subSplitNumber) / splitNumber)
- });
- }
-
- group.add(tickLine);
- angle += subStep;
- }
-
- angle -= subStep;
- } else {
- angle += step;
- }
- }
- },
- _renderPointer: function (seriesModel, ecModel, api, getColor, posInfo, startAngle, endAngle, clockwise) {
- var group = this.group;
- var oldData = this._data;
-
- if (!seriesModel.get('pointer.show')) {
- // Remove old element
- oldData && oldData.eachItemGraphicEl(function (el) {
- group.remove(el);
- });
- return;
- }
-
- var valueExtent = [+seriesModel.get('min'), +seriesModel.get('max')];
- var angleExtent = [startAngle, endAngle];
- var data = seriesModel.getData();
- var valueDim = data.mapDimension('value');
- data.diff(oldData).add(function (idx) {
- var pointer = new PointerPath({
- shape: {
- angle: startAngle
- }
- });
- graphic.initProps(pointer, {
- shape: {
- angle: linearMap(data.get(valueDim, idx), valueExtent, angleExtent, true)
- }
- }, seriesModel);
- group.add(pointer);
- data.setItemGraphicEl(idx, pointer);
- }).update(function (newIdx, oldIdx) {
- var pointer = oldData.getItemGraphicEl(oldIdx);
- graphic.updateProps(pointer, {
- shape: {
- angle: linearMap(data.get(valueDim, newIdx), valueExtent, angleExtent, true)
- }
- }, seriesModel);
- group.add(pointer);
- data.setItemGraphicEl(newIdx, pointer);
- }).remove(function (idx) {
- var pointer = oldData.getItemGraphicEl(idx);
- group.remove(pointer);
- }).execute();
- data.eachItemGraphicEl(function (pointer, idx) {
- var itemModel = data.getItemModel(idx);
- var pointerModel = itemModel.getModel('pointer');
- pointer.setShape({
- x: posInfo.cx,
- y: posInfo.cy,
- width: parsePercent(pointerModel.get('width'), posInfo.r),
- r: parsePercent(pointerModel.get('length'), posInfo.r)
- });
- pointer.useStyle(itemModel.getModel('itemStyle').getItemStyle());
-
- if (pointer.style.fill === 'auto') {
- pointer.setStyle('fill', getColor(linearMap(data.get(valueDim, idx), valueExtent, [0, 1], true)));
- }
-
- graphic.setHoverStyle(pointer, itemModel.getModel('emphasis.itemStyle').getItemStyle());
- });
- this._data = data;
- },
- _renderTitle: function (seriesModel, ecModel, api, getColor, posInfo) {
- var data = seriesModel.getData();
- var valueDim = data.mapDimension('value');
- var titleModel = seriesModel.getModel('title');
-
- if (titleModel.get('show')) {
- var offsetCenter = titleModel.get('offsetCenter');
- var x = posInfo.cx + parsePercent(offsetCenter[0], posInfo.r);
- var y = posInfo.cy + parsePercent(offsetCenter[1], posInfo.r);
- var minVal = +seriesModel.get('min');
- var maxVal = +seriesModel.get('max');
- var value = seriesModel.getData().get(valueDim, 0);
- var autoColor = getColor(linearMap(value, [minVal, maxVal], [0, 1], true));
- this.group.add(new graphic.Text({
- silent: true,
- style: graphic.setTextStyle({}, titleModel, {
- x: x,
- y: y,
- // FIXME First data name ?
- text: data.getName(0),
- textAlign: 'center',
- textVerticalAlign: 'middle'
- }, {
- autoColor: autoColor,
- forceRich: true
- })
- }));
- }
- },
- _renderDetail: function (seriesModel, ecModel, api, getColor, posInfo) {
- var detailModel = seriesModel.getModel('detail');
- var minVal = +seriesModel.get('min');
- var maxVal = +seriesModel.get('max');
-
- if (detailModel.get('show')) {
- var offsetCenter = detailModel.get('offsetCenter');
- var x = posInfo.cx + parsePercent(offsetCenter[0], posInfo.r);
- var y = posInfo.cy + parsePercent(offsetCenter[1], posInfo.r);
- var width = parsePercent(detailModel.get('width'), posInfo.r);
- var height = parsePercent(detailModel.get('height'), posInfo.r);
- var data = seriesModel.getData();
- var value = data.get(data.mapDimension('value'), 0);
- var autoColor = getColor(linearMap(value, [minVal, maxVal], [0, 1], true));
- this.group.add(new graphic.Text({
- silent: true,
- style: graphic.setTextStyle({}, detailModel, {
- x: x,
- y: y,
- text: formatLabel( // FIXME First data name ?
- value, detailModel.get('formatter')),
- textWidth: isNaN(width) ? null : width,
- textHeight: isNaN(height) ? null : height,
- textAlign: 'center',
- textVerticalAlign: 'middle'
- }, {
- autoColor: autoColor,
- forceRich: true
- })
- }));
- }
- }
- });
- var _default = GaugeView;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2635:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var Path = __webpack_require__(1280);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = Path.extend({
- type: 'echartsGaugePointer',
- shape: {
- angle: 0,
- width: 10,
- r: 10,
- x: 0,
- y: 0
- },
- buildPath: function (ctx, shape) {
- var mathCos = Math.cos;
- var mathSin = Math.sin;
- var r = shape.r;
- var width = shape.width;
- var angle = shape.angle;
- var x = shape.x - mathCos(angle) * width * (width >= r / 3 ? 1 : 2);
- var y = shape.y - mathSin(angle) * width * (width >= r / 3 ? 1 : 2);
- angle = shape.angle - Math.PI / 2;
- ctx.moveTo(x, y);
- ctx.lineTo(shape.x + mathCos(angle) * width, shape.y + mathSin(angle) * width);
- ctx.lineTo(shape.x + mathCos(shape.angle) * r, shape.y + mathSin(shape.angle) * r);
- ctx.lineTo(shape.x - mathCos(angle) * width, shape.y - mathSin(angle) * width);
- ctx.lineTo(x, y);
- return;
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2636:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- __webpack_require__(2637);
-
- __webpack_require__(2638);
-
- var dataColor = __webpack_require__(1793);
-
- var funnelLayout = __webpack_require__(2639);
-
- var dataFilter = __webpack_require__(1666);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- echarts.registerVisual(dataColor('funnel'));
- echarts.registerLayout(funnelLayout);
- echarts.registerProcessor(dataFilter('funnel'));
-
- /***/ }),
-
- /***/ 2637:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var bind = zrUtil.bind;
-
- var createListSimply = __webpack_require__(1604);
-
- var _model = __webpack_require__(1064);
-
- var defaultEmphasis = _model.defaultEmphasis;
-
- var _sourceHelper = __webpack_require__(1457);
-
- var makeSeriesEncodeForNameBased = _sourceHelper.makeSeriesEncodeForNameBased;
-
- var LegendVisualProvider = __webpack_require__(1665);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var FunnelSeries = echarts.extendSeriesModel({
- type: 'series.funnel',
- init: function (option) {
- FunnelSeries.superApply(this, 'init', arguments); // Enable legend selection for each data item
- // Use a function instead of direct access because data reference may changed
-
- this.legendVisualProvider = new LegendVisualProvider(bind(this.getData, this), bind(this.getRawData, this)); // Extend labelLine emphasis
-
- this._defaultLabelLine(option);
- },
- getInitialData: function (option, ecModel) {
- return createListSimply(this, {
- coordDimensions: ['value'],
- encodeDefaulter: zrUtil.curry(makeSeriesEncodeForNameBased, this)
- });
- },
- _defaultLabelLine: function (option) {
- // Extend labelLine emphasis
- defaultEmphasis(option, 'labelLine', ['show']);
- var labelLineNormalOpt = option.labelLine;
- var labelLineEmphasisOpt = option.emphasis.labelLine; // Not show label line if `label.normal.show = false`
-
- labelLineNormalOpt.show = labelLineNormalOpt.show && option.label.show;
- labelLineEmphasisOpt.show = labelLineEmphasisOpt.show && option.emphasis.label.show;
- },
- // Overwrite
- getDataParams: function (dataIndex) {
- var data = this.getData();
- var params = FunnelSeries.superCall(this, 'getDataParams', dataIndex);
- var valueDim = data.mapDimension('value');
- var sum = data.getSum(valueDim); // Percent is 0 if sum is 0
-
- params.percent = !sum ? 0 : +(data.get(valueDim, dataIndex) / sum * 100).toFixed(2);
- params.$vars.push('percent');
- return params;
- },
- defaultOption: {
- zlevel: 0,
- // 一级层叠
- z: 2,
- // 二级层叠
- legendHoverLink: true,
- left: 80,
- top: 60,
- right: 80,
- bottom: 60,
- // width: {totalWidth} - left - right,
- // height: {totalHeight} - top - bottom,
- // 默认取数据最小最大值
- // min: 0,
- // max: 100,
- minSize: '0%',
- maxSize: '100%',
- sort: 'descending',
- // 'ascending', 'descending'
- gap: 0,
- funnelAlign: 'center',
- label: {
- show: true,
- position: 'outer' // formatter: 标签文本格式器,同Tooltip.formatter,不支持异步回调
-
- },
- labelLine: {
- show: true,
- length: 20,
- lineStyle: {
- // color: 各异,
- width: 1,
- type: 'solid'
- }
- },
- itemStyle: {
- // color: 各异,
- borderColor: '#fff',
- borderWidth: 1
- },
- emphasis: {
- label: {
- show: true
- }
- }
- }
- });
- var _default = FunnelSeries;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2638:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var graphic = __webpack_require__(906);
-
- var zrUtil = __webpack_require__(864);
-
- var ChartView = __webpack_require__(1439);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Piece of pie including Sector, Label, LabelLine
- * @constructor
- * @extends {module:zrender/graphic/Group}
- */
- function FunnelPiece(data, idx) {
- graphic.Group.call(this);
- var polygon = new graphic.Polygon();
- var labelLine = new graphic.Polyline();
- var text = new graphic.Text();
- this.add(polygon);
- this.add(labelLine);
- this.add(text);
-
- this.highDownOnUpdate = function (fromState, toState) {
- if (toState === 'emphasis') {
- labelLine.ignore = labelLine.hoverIgnore;
- text.ignore = text.hoverIgnore;
- } else {
- labelLine.ignore = labelLine.normalIgnore;
- text.ignore = text.normalIgnore;
- }
- };
-
- this.updateData(data, idx, true);
- }
-
- var funnelPieceProto = FunnelPiece.prototype;
- var opacityAccessPath = ['itemStyle', 'opacity'];
-
- funnelPieceProto.updateData = function (data, idx, firstCreate) {
- var polygon = this.childAt(0);
- var seriesModel = data.hostModel;
- var itemModel = data.getItemModel(idx);
- var layout = data.getItemLayout(idx);
- var opacity = data.getItemModel(idx).get(opacityAccessPath);
- opacity = opacity == null ? 1 : opacity; // Reset style
-
- polygon.useStyle({});
-
- if (firstCreate) {
- polygon.setShape({
- points: layout.points
- });
- polygon.setStyle({
- opacity: 0
- });
- graphic.initProps(polygon, {
- style: {
- opacity: opacity
- }
- }, seriesModel, idx);
- } else {
- graphic.updateProps(polygon, {
- style: {
- opacity: opacity
- },
- shape: {
- points: layout.points
- }
- }, seriesModel, idx);
- } // Update common style
-
-
- var itemStyleModel = itemModel.getModel('itemStyle');
- var visualColor = data.getItemVisual(idx, 'color');
- polygon.setStyle(zrUtil.defaults({
- lineJoin: 'round',
- fill: visualColor
- }, itemStyleModel.getItemStyle(['opacity'])));
- polygon.hoverStyle = itemStyleModel.getModel('emphasis').getItemStyle();
-
- this._updateLabel(data, idx);
-
- graphic.setHoverStyle(this);
- };
-
- funnelPieceProto._updateLabel = function (data, idx) {
- var labelLine = this.childAt(1);
- var labelText = this.childAt(2);
- var seriesModel = data.hostModel;
- var itemModel = data.getItemModel(idx);
- var layout = data.getItemLayout(idx);
- var labelLayout = layout.label;
- var visualColor = data.getItemVisual(idx, 'color');
- graphic.updateProps(labelLine, {
- shape: {
- points: labelLayout.linePoints || labelLayout.linePoints
- }
- }, seriesModel, idx);
- graphic.updateProps(labelText, {
- style: {
- x: labelLayout.x,
- y: labelLayout.y
- }
- }, seriesModel, idx);
- labelText.attr({
- rotation: labelLayout.rotation,
- origin: [labelLayout.x, labelLayout.y],
- z2: 10
- });
- var labelModel = itemModel.getModel('label');
- var labelHoverModel = itemModel.getModel('emphasis.label');
- var labelLineModel = itemModel.getModel('labelLine');
- var labelLineHoverModel = itemModel.getModel('emphasis.labelLine');
- var visualColor = data.getItemVisual(idx, 'color');
- graphic.setLabelStyle(labelText.style, labelText.hoverStyle = {}, labelModel, labelHoverModel, {
- labelFetcher: data.hostModel,
- labelDataIndex: idx,
- defaultText: data.getName(idx),
- autoColor: visualColor,
- useInsideStyle: !!labelLayout.inside
- }, {
- textAlign: labelLayout.textAlign,
- textVerticalAlign: labelLayout.verticalAlign
- });
- labelText.ignore = labelText.normalIgnore = !labelModel.get('show');
- labelText.hoverIgnore = !labelHoverModel.get('show');
- labelLine.ignore = labelLine.normalIgnore = !labelLineModel.get('show');
- labelLine.hoverIgnore = !labelLineHoverModel.get('show'); // Default use item visual color
-
- labelLine.setStyle({
- stroke: visualColor
- });
- labelLine.setStyle(labelLineModel.getModel('lineStyle').getLineStyle());
- labelLine.hoverStyle = labelLineHoverModel.getModel('lineStyle').getLineStyle();
- };
-
- zrUtil.inherits(FunnelPiece, graphic.Group);
- var FunnelView = ChartView.extend({
- type: 'funnel',
- render: function (seriesModel, ecModel, api) {
- var data = seriesModel.getData();
- var oldData = this._data;
- var group = this.group;
- data.diff(oldData).add(function (idx) {
- var funnelPiece = new FunnelPiece(data, idx);
- data.setItemGraphicEl(idx, funnelPiece);
- group.add(funnelPiece);
- }).update(function (newIdx, oldIdx) {
- var piePiece = oldData.getItemGraphicEl(oldIdx);
- piePiece.updateData(data, newIdx);
- group.add(piePiece);
- data.setItemGraphicEl(newIdx, piePiece);
- }).remove(function (idx) {
- var piePiece = oldData.getItemGraphicEl(idx);
- group.remove(piePiece);
- }).execute();
- this._data = data;
- },
- remove: function () {
- this.group.removeAll();
- this._data = null;
- },
- dispose: function () {}
- });
- var _default = FunnelView;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2639:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var layout = __webpack_require__(1171);
-
- var _number = __webpack_require__(985);
-
- var parsePercent = _number.parsePercent;
- var linearMap = _number.linearMap;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function getViewRect(seriesModel, api) {
- return layout.getLayoutRect(seriesModel.getBoxLayoutParams(), {
- width: api.getWidth(),
- height: api.getHeight()
- });
- }
-
- function getSortedIndices(data, sort) {
- var valueDim = data.mapDimension('value');
- var valueArr = data.mapArray(valueDim, function (val) {
- return val;
- });
- var indices = [];
- var isAscending = sort === 'ascending';
-
- for (var i = 0, len = data.count(); i < len; i++) {
- indices[i] = i;
- } // Add custom sortable function & none sortable opetion by "options.sort"
-
-
- if (typeof sort === 'function') {
- indices.sort(sort);
- } else if (sort !== 'none') {
- indices.sort(function (a, b) {
- return isAscending ? valueArr[a] - valueArr[b] : valueArr[b] - valueArr[a];
- });
- }
-
- return indices;
- }
-
- function labelLayout(data) {
- data.each(function (idx) {
- var itemModel = data.getItemModel(idx);
- var labelModel = itemModel.getModel('label');
- var labelPosition = labelModel.get('position');
- var labelLineModel = itemModel.getModel('labelLine');
- var layout = data.getItemLayout(idx);
- var points = layout.points;
- var isLabelInside = labelPosition === 'inner' || labelPosition === 'inside' || labelPosition === 'center' || labelPosition === 'insideLeft' || labelPosition === 'insideRight';
- var textAlign;
- var textX;
- var textY;
- var linePoints;
-
- if (isLabelInside) {
- if (labelPosition === 'insideLeft') {
- textX = (points[0][0] + points[3][0]) / 2 + 5;
- textY = (points[0][1] + points[3][1]) / 2;
- textAlign = 'left';
- } else if (labelPosition === 'insideRight') {
- textX = (points[1][0] + points[2][0]) / 2 - 5;
- textY = (points[1][1] + points[2][1]) / 2;
- textAlign = 'right';
- } else {
- textX = (points[0][0] + points[1][0] + points[2][0] + points[3][0]) / 4;
- textY = (points[0][1] + points[1][1] + points[2][1] + points[3][1]) / 4;
- textAlign = 'center';
- }
-
- linePoints = [[textX, textY], [textX, textY]];
- } else {
- var x1;
- var y1;
- var x2;
- var labelLineLen = labelLineModel.get('length');
-
- if (labelPosition === 'left') {
- // Left side
- x1 = (points[3][0] + points[0][0]) / 2;
- y1 = (points[3][1] + points[0][1]) / 2;
- x2 = x1 - labelLineLen;
- textX = x2 - 5;
- textAlign = 'right';
- } else if (labelPosition === 'right') {
- // Right side
- x1 = (points[1][0] + points[2][0]) / 2;
- y1 = (points[1][1] + points[2][1]) / 2;
- x2 = x1 + labelLineLen;
- textX = x2 + 5;
- textAlign = 'left';
- } else if (labelPosition === 'rightTop') {
- // RightTop side
- x1 = points[1][0];
- y1 = points[1][1];
- x2 = x1 + labelLineLen;
- textX = x2 + 5;
- textAlign = 'top';
- } else if (labelPosition === 'rightBottom') {
- // RightBottom side
- x1 = points[2][0];
- y1 = points[2][1];
- x2 = x1 + labelLineLen;
- textX = x2 + 5;
- textAlign = 'bottom';
- } else if (labelPosition === 'leftTop') {
- // LeftTop side
- x1 = points[0][0];
- y1 = points[1][1];
- x2 = x1 - labelLineLen;
- textX = x2 - 5;
- textAlign = 'right';
- } else if (labelPosition === 'leftBottom') {
- // LeftBottom side
- x1 = points[3][0];
- y1 = points[2][1];
- x2 = x1 - labelLineLen;
- textX = x2 - 5;
- textAlign = 'right';
- } else {
- // Right side
- x1 = (points[1][0] + points[2][0]) / 2;
- y1 = (points[1][1] + points[2][1]) / 2;
- x2 = x1 + labelLineLen;
- textX = x2 + 5;
- textAlign = 'left';
- }
-
- var y2 = y1;
- linePoints = [[x1, y1], [x2, y2]];
- textY = y2;
- }
-
- layout.label = {
- linePoints: linePoints,
- x: textX,
- y: textY,
- verticalAlign: 'middle',
- textAlign: textAlign,
- inside: isLabelInside
- };
- });
- }
-
- function _default(ecModel, api, payload) {
- ecModel.eachSeriesByType('funnel', function (seriesModel) {
- var data = seriesModel.getData();
- var valueDim = data.mapDimension('value');
- var sort = seriesModel.get('sort');
- var viewRect = getViewRect(seriesModel, api);
- var indices = getSortedIndices(data, sort);
- var sizeExtent = [parsePercent(seriesModel.get('minSize'), viewRect.width), parsePercent(seriesModel.get('maxSize'), viewRect.width)];
- var dataExtent = data.getDataExtent(valueDim);
- var min = seriesModel.get('min');
- var max = seriesModel.get('max');
-
- if (min == null) {
- min = Math.min(dataExtent[0], 0);
- }
-
- if (max == null) {
- max = dataExtent[1];
- }
-
- var funnelAlign = seriesModel.get('funnelAlign');
- var gap = seriesModel.get('gap');
- var itemHeight = (viewRect.height - gap * (data.count() - 1)) / data.count();
- var y = viewRect.y;
-
- var getLinePoints = function (idx, offY) {
- // End point index is data.count() and we assign it 0
- var val = data.get(valueDim, idx) || 0;
- var itemWidth = linearMap(val, [min, max], sizeExtent, true);
- var x0;
-
- switch (funnelAlign) {
- case 'left':
- x0 = viewRect.x;
- break;
-
- case 'center':
- x0 = viewRect.x + (viewRect.width - itemWidth) / 2;
- break;
-
- case 'right':
- x0 = viewRect.x + viewRect.width - itemWidth;
- break;
- }
-
- return [[x0, offY], [x0 + itemWidth, offY]];
- };
-
- if (sort === 'ascending') {
- // From bottom to top
- itemHeight = -itemHeight;
- gap = -gap;
- y += viewRect.height;
- indices = indices.reverse();
- }
-
- for (var i = 0; i < indices.length; i++) {
- var idx = indices[i];
- var nextIdx = indices[i + 1];
- var itemModel = data.getItemModel(idx);
- var height = itemModel.get('itemStyle.height');
-
- if (height == null) {
- height = itemHeight;
- } else {
- height = parsePercent(height, viewRect.height);
-
- if (sort === 'ascending') {
- height = -height;
- }
- }
-
- var start = getLinePoints(idx, y);
- var end = getLinePoints(nextIdx, y + height);
- y += height + gap;
- data.setItemLayout(idx, {
- points: start.concat(end.slice().reverse())
- });
- }
-
- labelLayout(data);
- });
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2640:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- __webpack_require__(2309);
-
- __webpack_require__(2649);
-
- __webpack_require__(2650);
-
- var parallelVisual = __webpack_require__(2651);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- echarts.registerVisual(parallelVisual);
-
- /***/ }),
-
- /***/ 2641:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var modelUtil = __webpack_require__(1064);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function _default(option) {
- createParallelIfNeeded(option);
- mergeAxisOptionFromParallel(option);
- }
- /**
- * Create a parallel coordinate if not exists.
- * @inner
- */
-
-
- function createParallelIfNeeded(option) {
- if (option.parallel) {
- return;
- }
-
- var hasParallelSeries = false;
- zrUtil.each(option.series, function (seriesOpt) {
- if (seriesOpt && seriesOpt.type === 'parallel') {
- hasParallelSeries = true;
- }
- });
-
- if (hasParallelSeries) {
- option.parallel = [{}];
- }
- }
- /**
- * Merge aixs definition from parallel option (if exists) to axis option.
- * @inner
- */
-
-
- function mergeAxisOptionFromParallel(option) {
- var axes = modelUtil.normalizeToArray(option.parallelAxis);
- zrUtil.each(axes, function (axisOption) {
- if (!zrUtil.isObject(axisOption)) {
- return;
- }
-
- var parallelIndex = axisOption.parallelIndex || 0;
- var parallelOption = modelUtil.normalizeToArray(option.parallel)[parallelIndex];
-
- if (parallelOption && parallelOption.parallelAxisDefault) {
- zrUtil.merge(axisOption, parallelOption.parallelAxisDefault, false);
- }
- });
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2642:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var matrix = __webpack_require__(1350);
-
- var layoutUtil = __webpack_require__(1171);
-
- var axisHelper = __webpack_require__(1415);
-
- var ParallelAxis = __webpack_require__(2643);
-
- var graphic = __webpack_require__(906);
-
- var numberUtil = __webpack_require__(985);
-
- var sliderMove = __webpack_require__(1605);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Parallel Coordinates
- * <https://en.wikipedia.org/wiki/Parallel_coordinates>
- */
- var each = zrUtil.each;
- var mathMin = Math.min;
- var mathMax = Math.max;
- var mathFloor = Math.floor;
- var mathCeil = Math.ceil;
- var round = numberUtil.round;
- var PI = Math.PI;
-
- function Parallel(parallelModel, ecModel, api) {
- /**
- * key: dimension
- * @type {Object.<string, module:echarts/coord/parallel/Axis>}
- * @private
- */
- this._axesMap = zrUtil.createHashMap();
- /**
- * key: dimension
- * value: {position: [], rotation, }
- * @type {Object.<string, Object>}
- * @private
- */
-
- this._axesLayout = {};
- /**
- * Always follow axis order.
- * @type {Array.<string>}
- * @readOnly
- */
-
- this.dimensions = parallelModel.dimensions;
- /**
- * @type {module:zrender/core/BoundingRect}
- */
-
- this._rect;
- /**
- * @type {module:echarts/coord/parallel/ParallelModel}
- */
-
- this._model = parallelModel;
-
- this._init(parallelModel, ecModel, api);
- }
-
- Parallel.prototype = {
- type: 'parallel',
- constructor: Parallel,
-
- /**
- * Initialize cartesian coordinate systems
- * @private
- */
- _init: function (parallelModel, ecModel, api) {
- var dimensions = parallelModel.dimensions;
- var parallelAxisIndex = parallelModel.parallelAxisIndex;
- each(dimensions, function (dim, idx) {
- var axisIndex = parallelAxisIndex[idx];
- var axisModel = ecModel.getComponent('parallelAxis', axisIndex);
-
- var axis = this._axesMap.set(dim, new ParallelAxis(dim, axisHelper.createScaleByModel(axisModel), [0, 0], axisModel.get('type'), axisIndex));
-
- var isCategory = axis.type === 'category';
- axis.onBand = isCategory && axisModel.get('boundaryGap');
- axis.inverse = axisModel.get('inverse'); // Injection
-
- axisModel.axis = axis;
- axis.model = axisModel;
- axis.coordinateSystem = axisModel.coordinateSystem = this;
- }, this);
- },
-
- /**
- * Update axis scale after data processed
- * @param {module:echarts/model/Global} ecModel
- * @param {module:echarts/ExtensionAPI} api
- */
- update: function (ecModel, api) {
- this._updateAxesFromSeries(this._model, ecModel);
- },
-
- /**
- * @override
- */
- containPoint: function (point) {
- var layoutInfo = this._makeLayoutInfo();
-
- var axisBase = layoutInfo.axisBase;
- var layoutBase = layoutInfo.layoutBase;
- var pixelDimIndex = layoutInfo.pixelDimIndex;
- var pAxis = point[1 - pixelDimIndex];
- var pLayout = point[pixelDimIndex];
- return pAxis >= axisBase && pAxis <= axisBase + layoutInfo.axisLength && pLayout >= layoutBase && pLayout <= layoutBase + layoutInfo.layoutLength;
- },
- getModel: function () {
- return this._model;
- },
-
- /**
- * Update properties from series
- * @private
- */
- _updateAxesFromSeries: function (parallelModel, ecModel) {
- ecModel.eachSeries(function (seriesModel) {
- if (!parallelModel.contains(seriesModel, ecModel)) {
- return;
- }
-
- var data = seriesModel.getData();
- each(this.dimensions, function (dim) {
- var axis = this._axesMap.get(dim);
-
- axis.scale.unionExtentFromData(data, data.mapDimension(dim));
- axisHelper.niceScaleExtent(axis.scale, axis.model);
- }, this);
- }, this);
- },
-
- /**
- * Resize the parallel coordinate system.
- * @param {module:echarts/coord/parallel/ParallelModel} parallelModel
- * @param {module:echarts/ExtensionAPI} api
- */
- resize: function (parallelModel, api) {
- this._rect = layoutUtil.getLayoutRect(parallelModel.getBoxLayoutParams(), {
- width: api.getWidth(),
- height: api.getHeight()
- });
-
- this._layoutAxes();
- },
-
- /**
- * @return {module:zrender/core/BoundingRect}
- */
- getRect: function () {
- return this._rect;
- },
-
- /**
- * @private
- */
- _makeLayoutInfo: function () {
- var parallelModel = this._model;
- var rect = this._rect;
- var xy = ['x', 'y'];
- var wh = ['width', 'height'];
- var layout = parallelModel.get('layout');
- var pixelDimIndex = layout === 'horizontal' ? 0 : 1;
- var layoutLength = rect[wh[pixelDimIndex]];
- var layoutExtent = [0, layoutLength];
- var axisCount = this.dimensions.length;
- var axisExpandWidth = restrict(parallelModel.get('axisExpandWidth'), layoutExtent);
- var axisExpandCount = restrict(parallelModel.get('axisExpandCount') || 0, [0, axisCount]);
- var axisExpandable = parallelModel.get('axisExpandable') && axisCount > 3 && axisCount > axisExpandCount && axisExpandCount > 1 && axisExpandWidth > 0 && layoutLength > 0; // `axisExpandWindow` is According to the coordinates of [0, axisExpandLength],
- // for sake of consider the case that axisCollapseWidth is 0 (when screen is narrow),
- // where collapsed axes should be overlapped.
-
- var axisExpandWindow = parallelModel.get('axisExpandWindow');
- var winSize;
-
- if (!axisExpandWindow) {
- winSize = restrict(axisExpandWidth * (axisExpandCount - 1), layoutExtent);
- var axisExpandCenter = parallelModel.get('axisExpandCenter') || mathFloor(axisCount / 2);
- axisExpandWindow = [axisExpandWidth * axisExpandCenter - winSize / 2];
- axisExpandWindow[1] = axisExpandWindow[0] + winSize;
- } else {
- winSize = restrict(axisExpandWindow[1] - axisExpandWindow[0], layoutExtent);
- axisExpandWindow[1] = axisExpandWindow[0] + winSize;
- }
-
- var axisCollapseWidth = (layoutLength - winSize) / (axisCount - axisExpandCount); // Avoid axisCollapseWidth is too small.
-
- axisCollapseWidth < 3 && (axisCollapseWidth = 0); // Find the first and last indices > ewin[0] and < ewin[1].
-
- var winInnerIndices = [mathFloor(round(axisExpandWindow[0] / axisExpandWidth, 1)) + 1, mathCeil(round(axisExpandWindow[1] / axisExpandWidth, 1)) - 1]; // Pos in ec coordinates.
-
- var axisExpandWindow0Pos = axisCollapseWidth / axisExpandWidth * axisExpandWindow[0];
- return {
- layout: layout,
- pixelDimIndex: pixelDimIndex,
- layoutBase: rect[xy[pixelDimIndex]],
- layoutLength: layoutLength,
- axisBase: rect[xy[1 - pixelDimIndex]],
- axisLength: rect[wh[1 - pixelDimIndex]],
- axisExpandable: axisExpandable,
- axisExpandWidth: axisExpandWidth,
- axisCollapseWidth: axisCollapseWidth,
- axisExpandWindow: axisExpandWindow,
- axisCount: axisCount,
- winInnerIndices: winInnerIndices,
- axisExpandWindow0Pos: axisExpandWindow0Pos
- };
- },
-
- /**
- * @private
- */
- _layoutAxes: function () {
- var rect = this._rect;
- var axes = this._axesMap;
- var dimensions = this.dimensions;
-
- var layoutInfo = this._makeLayoutInfo();
-
- var layout = layoutInfo.layout;
- axes.each(function (axis) {
- var axisExtent = [0, layoutInfo.axisLength];
- var idx = axis.inverse ? 1 : 0;
- axis.setExtent(axisExtent[idx], axisExtent[1 - idx]);
- });
- each(dimensions, function (dim, idx) {
- var posInfo = (layoutInfo.axisExpandable ? layoutAxisWithExpand : layoutAxisWithoutExpand)(idx, layoutInfo);
- var positionTable = {
- horizontal: {
- x: posInfo.position,
- y: layoutInfo.axisLength
- },
- vertical: {
- x: 0,
- y: posInfo.position
- }
- };
- var rotationTable = {
- horizontal: PI / 2,
- vertical: 0
- };
- var position = [positionTable[layout].x + rect.x, positionTable[layout].y + rect.y];
- var rotation = rotationTable[layout];
- var transform = matrix.create();
- matrix.rotate(transform, transform, rotation);
- matrix.translate(transform, transform, position); // TODO
- // tick等排布信息。
- // TODO
- // 根据axis order 更新 dimensions顺序。
-
- this._axesLayout[dim] = {
- position: position,
- rotation: rotation,
- transform: transform,
- axisNameAvailableWidth: posInfo.axisNameAvailableWidth,
- axisLabelShow: posInfo.axisLabelShow,
- nameTruncateMaxWidth: posInfo.nameTruncateMaxWidth,
- tickDirection: 1,
- labelDirection: 1
- };
- }, this);
- },
-
- /**
- * Get axis by dim.
- * @param {string} dim
- * @return {module:echarts/coord/parallel/ParallelAxis} [description]
- */
- getAxis: function (dim) {
- return this._axesMap.get(dim);
- },
-
- /**
- * Convert a dim value of a single item of series data to Point.
- * @param {*} value
- * @param {string} dim
- * @return {Array}
- */
- dataToPoint: function (value, dim) {
- return this.axisCoordToPoint(this._axesMap.get(dim).dataToCoord(value), dim);
- },
-
- /**
- * Travel data for one time, get activeState of each data item.
- * @param {module:echarts/data/List} data
- * @param {Functio} cb param: {string} activeState 'active' or 'inactive' or 'normal'
- * {number} dataIndex
- * @param {number} [start=0] the start dataIndex that travel from.
- * @param {number} [end=data.count()] the next dataIndex of the last dataIndex will be travel.
- */
- eachActiveState: function (data, callback, start, end) {
- start == null && (start = 0);
- end == null && (end = data.count());
- var axesMap = this._axesMap;
- var dimensions = this.dimensions;
- var dataDimensions = [];
- var axisModels = [];
- zrUtil.each(dimensions, function (axisDim) {
- dataDimensions.push(data.mapDimension(axisDim));
- axisModels.push(axesMap.get(axisDim).model);
- });
- var hasActiveSet = this.hasAxisBrushed();
-
- for (var dataIndex = start; dataIndex < end; dataIndex++) {
- var activeState;
-
- if (!hasActiveSet) {
- activeState = 'normal';
- } else {
- activeState = 'active';
- var values = data.getValues(dataDimensions, dataIndex);
-
- for (var j = 0, lenj = dimensions.length; j < lenj; j++) {
- var state = axisModels[j].getActiveState(values[j]);
-
- if (state === 'inactive') {
- activeState = 'inactive';
- break;
- }
- }
- }
-
- callback(activeState, dataIndex);
- }
- },
-
- /**
- * Whether has any activeSet.
- * @return {boolean}
- */
- hasAxisBrushed: function () {
- var dimensions = this.dimensions;
- var axesMap = this._axesMap;
- var hasActiveSet = false;
-
- for (var j = 0, lenj = dimensions.length; j < lenj; j++) {
- if (axesMap.get(dimensions[j]).model.getActiveState() !== 'normal') {
- hasActiveSet = true;
- }
- }
-
- return hasActiveSet;
- },
-
- /**
- * Convert coords of each axis to Point.
- * Return point. For example: [10, 20]
- * @param {Array.<number>} coords
- * @param {string} dim
- * @return {Array.<number>}
- */
- axisCoordToPoint: function (coord, dim) {
- var axisLayout = this._axesLayout[dim];
- return graphic.applyTransform([coord, 0], axisLayout.transform);
- },
-
- /**
- * Get axis layout.
- */
- getAxisLayout: function (dim) {
- return zrUtil.clone(this._axesLayout[dim]);
- },
-
- /**
- * @param {Array.<number>} point
- * @return {Object} {axisExpandWindow, delta, behavior: 'jump' | 'slide' | 'none'}.
- */
- getSlidedAxisExpandWindow: function (point) {
- var layoutInfo = this._makeLayoutInfo();
-
- var pixelDimIndex = layoutInfo.pixelDimIndex;
- var axisExpandWindow = layoutInfo.axisExpandWindow.slice();
- var winSize = axisExpandWindow[1] - axisExpandWindow[0];
- var extent = [0, layoutInfo.axisExpandWidth * (layoutInfo.axisCount - 1)]; // Out of the area of coordinate system.
-
- if (!this.containPoint(point)) {
- return {
- behavior: 'none',
- axisExpandWindow: axisExpandWindow
- };
- } // Conver the point from global to expand coordinates.
-
-
- var pointCoord = point[pixelDimIndex] - layoutInfo.layoutBase - layoutInfo.axisExpandWindow0Pos; // For dragging operation convenience, the window should not be
- // slided when mouse is the center area of the window.
-
- var delta;
- var behavior = 'slide';
- var axisCollapseWidth = layoutInfo.axisCollapseWidth;
-
- var triggerArea = this._model.get('axisExpandSlideTriggerArea'); // But consider touch device, jump is necessary.
-
-
- var useJump = triggerArea[0] != null;
-
- if (axisCollapseWidth) {
- if (useJump && axisCollapseWidth && pointCoord < winSize * triggerArea[0]) {
- behavior = 'jump';
- delta = pointCoord - winSize * triggerArea[2];
- } else if (useJump && axisCollapseWidth && pointCoord > winSize * (1 - triggerArea[0])) {
- behavior = 'jump';
- delta = pointCoord - winSize * (1 - triggerArea[2]);
- } else {
- (delta = pointCoord - winSize * triggerArea[1]) >= 0 && (delta = pointCoord - winSize * (1 - triggerArea[1])) <= 0 && (delta = 0);
- }
-
- delta *= layoutInfo.axisExpandWidth / axisCollapseWidth;
- delta ? sliderMove(delta, axisExpandWindow, extent, 'all') // Avoid nonsense triger on mousemove.
- : behavior = 'none';
- } // When screen is too narrow, make it visible and slidable, although it is hard to interact.
- else {
- var winSize = axisExpandWindow[1] - axisExpandWindow[0];
- var pos = extent[1] * pointCoord / winSize;
- axisExpandWindow = [mathMax(0, pos - winSize / 2)];
- axisExpandWindow[1] = mathMin(extent[1], axisExpandWindow[0] + winSize);
- axisExpandWindow[0] = axisExpandWindow[1] - winSize;
- }
-
- return {
- axisExpandWindow: axisExpandWindow,
- behavior: behavior
- };
- }
- };
-
- function restrict(len, extent) {
- return mathMin(mathMax(len, extent[0]), extent[1]);
- }
-
- function layoutAxisWithoutExpand(axisIndex, layoutInfo) {
- var step = layoutInfo.layoutLength / (layoutInfo.axisCount - 1);
- return {
- position: step * axisIndex,
- axisNameAvailableWidth: step,
- axisLabelShow: true
- };
- }
-
- function layoutAxisWithExpand(axisIndex, layoutInfo) {
- var layoutLength = layoutInfo.layoutLength;
- var axisExpandWidth = layoutInfo.axisExpandWidth;
- var axisCount = layoutInfo.axisCount;
- var axisCollapseWidth = layoutInfo.axisCollapseWidth;
- var winInnerIndices = layoutInfo.winInnerIndices;
- var position;
- var axisNameAvailableWidth = axisCollapseWidth;
- var axisLabelShow = false;
- var nameTruncateMaxWidth;
-
- if (axisIndex < winInnerIndices[0]) {
- position = axisIndex * axisCollapseWidth;
- nameTruncateMaxWidth = axisCollapseWidth;
- } else if (axisIndex <= winInnerIndices[1]) {
- position = layoutInfo.axisExpandWindow0Pos + axisIndex * axisExpandWidth - layoutInfo.axisExpandWindow[0];
- axisNameAvailableWidth = axisExpandWidth;
- axisLabelShow = true;
- } else {
- position = layoutLength - (axisCount - 1 - axisIndex) * axisCollapseWidth;
- nameTruncateMaxWidth = axisCollapseWidth;
- }
-
- return {
- position: position,
- axisNameAvailableWidth: axisNameAvailableWidth,
- axisLabelShow: axisLabelShow,
- nameTruncateMaxWidth: nameTruncateMaxWidth
- };
- }
-
- var _default = Parallel;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2643:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var Axis = __webpack_require__(1484);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @constructor module:echarts/coord/parallel/ParallelAxis
- * @extends {module:echarts/coord/Axis}
- * @param {string} dim
- * @param {*} scale
- * @param {Array.<number>} coordExtent
- * @param {string} axisType
- */
- var ParallelAxis = function (dim, scale, coordExtent, axisType, axisIndex) {
- Axis.call(this, dim, scale, coordExtent);
- /**
- * Axis type
- * - 'category'
- * - 'value'
- * - 'time'
- * - 'log'
- * @type {string}
- */
-
- this.type = axisType || 'value';
- /**
- * @type {number}
- * @readOnly
- */
-
- this.axisIndex = axisIndex;
- };
-
- ParallelAxis.prototype = {
- constructor: ParallelAxis,
-
- /**
- * Axis model
- * @param {module:echarts/coord/parallel/AxisModel}
- */
- model: null,
-
- /**
- * @override
- */
- isHorizontal: function () {
- return this.coordinateSystem.getModel().get('layout') !== 'horizontal';
- }
- };
- zrUtil.inherits(ParallelAxis, Axis);
- var _default = ParallelAxis;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2644:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var Component = __webpack_require__(1321);
-
- __webpack_require__(2645);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = Component.extend({
- type: 'parallel',
- dependencies: ['parallelAxis'],
-
- /**
- * @type {module:echarts/coord/parallel/Parallel}
- */
- coordinateSystem: null,
-
- /**
- * Each item like: 'dim0', 'dim1', 'dim2', ...
- * @type {Array.<string>}
- * @readOnly
- */
- dimensions: null,
-
- /**
- * Coresponding to dimensions.
- * @type {Array.<number>}
- * @readOnly
- */
- parallelAxisIndex: null,
- layoutMode: 'box',
- defaultOption: {
- zlevel: 0,
- z: 0,
- left: 80,
- top: 60,
- right: 80,
- bottom: 60,
- // width: {totalWidth} - left - right,
- // height: {totalHeight} - top - bottom,
- layout: 'horizontal',
- // 'horizontal' or 'vertical'
- // FIXME
- // naming?
- axisExpandable: false,
- axisExpandCenter: null,
- axisExpandCount: 0,
- axisExpandWidth: 50,
- // FIXME '10%' ?
- axisExpandRate: 17,
- axisExpandDebounce: 50,
- // [out, in, jumpTarget]. In percentage. If use [null, 0.05], null means full.
- // Do not doc to user until necessary.
- axisExpandSlideTriggerArea: [-0.15, 0.05, 0.4],
- axisExpandTriggerOn: 'click',
- // 'mousemove' or 'click'
- parallelAxisDefault: null
- },
-
- /**
- * @override
- */
- init: function () {
- Component.prototype.init.apply(this, arguments);
- this.mergeOption({});
- },
-
- /**
- * @override
- */
- mergeOption: function (newOption) {
- var thisOption = this.option;
- newOption && zrUtil.merge(thisOption, newOption, true);
-
- this._initDimensions();
- },
-
- /**
- * Whether series or axis is in this coordinate system.
- * @param {module:echarts/model/Series|module:echarts/coord/parallel/AxisModel} model
- * @param {module:echarts/model/Global} ecModel
- */
- contains: function (model, ecModel) {
- var parallelIndex = model.get('parallelIndex');
- return parallelIndex != null && ecModel.getComponent('parallel', parallelIndex) === this;
- },
- setAxisExpand: function (opt) {
- zrUtil.each(['axisExpandable', 'axisExpandCenter', 'axisExpandCount', 'axisExpandWidth', 'axisExpandWindow'], function (name) {
- if (opt.hasOwnProperty(name)) {
- this.option[name] = opt[name];
- }
- }, this);
- },
-
- /**
- * @private
- */
- _initDimensions: function () {
- var dimensions = this.dimensions = [];
- var parallelAxisIndex = this.parallelAxisIndex = [];
- var axisModels = zrUtil.filter(this.dependentModels.parallelAxis, function (axisModel) {
- // Can not use this.contains here, because
- // initialization has not been completed yet.
- return (axisModel.get('parallelIndex') || 0) === this.componentIndex;
- }, this);
- zrUtil.each(axisModels, function (axisModel) {
- dimensions.push('dim' + axisModel.get('dim'));
- parallelAxisIndex.push(axisModel.componentIndex);
- });
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2645:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var ComponentModel = __webpack_require__(1321);
-
- var makeStyleMapper = __webpack_require__(1599);
-
- var axisModelCreator = __webpack_require__(1791);
-
- var numberUtil = __webpack_require__(985);
-
- var axisModelCommonMixin = __webpack_require__(1603);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var AxisModel = ComponentModel.extend({
- type: 'baseParallelAxis',
-
- /**
- * @type {module:echarts/coord/parallel/Axis}
- */
- axis: null,
-
- /**
- * @type {Array.<Array.<number>}
- * @readOnly
- */
- activeIntervals: [],
-
- /**
- * @return {Object}
- */
- getAreaSelectStyle: function () {
- return makeStyleMapper([['fill', 'color'], ['lineWidth', 'borderWidth'], ['stroke', 'borderColor'], ['width', 'width'], ['opacity', 'opacity']])(this.getModel('areaSelectStyle'));
- },
-
- /**
- * The code of this feature is put on AxisModel but not ParallelAxis,
- * because axisModel can be alive after echarts updating but instance of
- * ParallelAxis having been disposed. this._activeInterval should be kept
- * when action dispatched (i.e. legend click).
- *
- * @param {Array.<Array<number>>} intervals interval.length === 0
- * means set all active.
- * @public
- */
- setActiveIntervals: function (intervals) {
- var activeIntervals = this.activeIntervals = zrUtil.clone(intervals); // Normalize
-
- if (activeIntervals) {
- for (var i = activeIntervals.length - 1; i >= 0; i--) {
- numberUtil.asc(activeIntervals[i]);
- }
- }
- },
-
- /**
- * @param {number|string} [value] When attempting to detect 'no activeIntervals set',
- * value can not be input.
- * @return {string} 'normal': no activeIntervals set,
- * 'active',
- * 'inactive'.
- * @public
- */
- getActiveState: function (value) {
- var activeIntervals = this.activeIntervals;
-
- if (!activeIntervals.length) {
- return 'normal';
- }
-
- if (value == null || isNaN(value)) {
- return 'inactive';
- } // Simple optimization
-
-
- if (activeIntervals.length === 1) {
- var interval = activeIntervals[0];
-
- if (interval[0] <= value && value <= interval[1]) {
- return 'active';
- }
- } else {
- for (var i = 0, len = activeIntervals.length; i < len; i++) {
- if (activeIntervals[i][0] <= value && value <= activeIntervals[i][1]) {
- return 'active';
- }
- }
- }
-
- return 'inactive';
- }
- });
- var defaultOption = {
- type: 'value',
-
- /**
- * @type {Array.<number>}
- */
- dim: null,
- // 0, 1, 2, ...
- // parallelIndex: null,
- areaSelectStyle: {
- width: 20,
- borderWidth: 1,
- borderColor: 'rgba(160,197,232)',
- color: 'rgba(160,197,232)',
- opacity: 0.3
- },
- realtime: true,
- // Whether realtime update view when select.
- z: 10
- };
- zrUtil.merge(AxisModel.prototype, axisModelCommonMixin);
-
- function getAxisType(axisName, option) {
- return option.type || (option.data ? 'category' : 'value');
- }
-
- axisModelCreator('parallel', AxisModel, getAxisType, defaultOption);
- var _default = AxisModel;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2646:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- __webpack_require__(2310);
-
- __webpack_require__(2647);
-
- __webpack_require__(2648);
-
- /***/ }),
-
- /***/ 2647:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @payload
- * @property {string} parallelAxisId
- * @property {Array.<Array.<number>>} intervals
- */
- var actionInfo = {
- type: 'axisAreaSelect',
- event: 'axisAreaSelected' // update: 'updateVisual'
-
- };
- echarts.registerAction(actionInfo, function (payload, ecModel) {
- ecModel.eachComponent({
- mainType: 'parallelAxis',
- query: payload
- }, function (parallelAxisModel) {
- parallelAxisModel.axis.model.setActiveIntervals(payload.intervals);
- });
- });
- /**
- * @payload
- */
-
- echarts.registerAction('parallelAxisExpand', function (payload, ecModel) {
- ecModel.eachComponent({
- mainType: 'parallel',
- query: payload
- }, function (parallelModel) {
- parallelModel.setAxisExpand(payload);
- });
- });
-
- /***/ }),
-
- /***/ 2648:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var AxisBuilder = __webpack_require__(1485);
-
- var BrushController = __webpack_require__(1915);
-
- var brushHelper = __webpack_require__(2311);
-
- var graphic = __webpack_require__(906);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var elementList = ['axisLine', 'axisTickLabel', 'axisName'];
- var AxisView = echarts.extendComponentView({
- type: 'parallelAxis',
-
- /**
- * @override
- */
- init: function (ecModel, api) {
- AxisView.superApply(this, 'init', arguments);
- /**
- * @type {module:echarts/component/helper/BrushController}
- */
-
- (this._brushController = new BrushController(api.getZr())).on('brush', zrUtil.bind(this._onBrush, this));
- },
-
- /**
- * @override
- */
- render: function (axisModel, ecModel, api, payload) {
- if (fromAxisAreaSelect(axisModel, ecModel, payload)) {
- return;
- }
-
- this.axisModel = axisModel;
- this.api = api;
- this.group.removeAll();
- var oldAxisGroup = this._axisGroup;
- this._axisGroup = new graphic.Group();
- this.group.add(this._axisGroup);
-
- if (!axisModel.get('show')) {
- return;
- }
-
- var coordSysModel = getCoordSysModel(axisModel, ecModel);
- var coordSys = coordSysModel.coordinateSystem;
- var areaSelectStyle = axisModel.getAreaSelectStyle();
- var areaWidth = areaSelectStyle.width;
- var dim = axisModel.axis.dim;
- var axisLayout = coordSys.getAxisLayout(dim);
- var builderOpt = zrUtil.extend({
- strokeContainThreshold: areaWidth
- }, axisLayout);
- var axisBuilder = new AxisBuilder(axisModel, builderOpt);
- zrUtil.each(elementList, axisBuilder.add, axisBuilder);
-
- this._axisGroup.add(axisBuilder.getGroup());
-
- this._refreshBrushController(builderOpt, areaSelectStyle, axisModel, coordSysModel, areaWidth, api);
-
- var animationModel = payload && payload.animation === false ? null : axisModel;
- graphic.groupTransition(oldAxisGroup, this._axisGroup, animationModel);
- },
- // /**
- // * @override
- // */
- // updateVisual: function (axisModel, ecModel, api, payload) {
- // this._brushController && this._brushController
- // .updateCovers(getCoverInfoList(axisModel));
- // },
- _refreshBrushController: function (builderOpt, areaSelectStyle, axisModel, coordSysModel, areaWidth, api) {
- // After filtering, axis may change, select area needs to be update.
- var extent = axisModel.axis.getExtent();
- var extentLen = extent[1] - extent[0];
- var extra = Math.min(30, Math.abs(extentLen) * 0.1); // Arbitrary value.
- // width/height might be negative, which will be
- // normalized in BoundingRect.
-
- var rect = graphic.BoundingRect.create({
- x: extent[0],
- y: -areaWidth / 2,
- width: extentLen,
- height: areaWidth
- });
- rect.x -= extra;
- rect.width += 2 * extra;
-
- this._brushController.mount({
- enableGlobalPan: true,
- rotation: builderOpt.rotation,
- position: builderOpt.position
- }).setPanels([{
- panelId: 'pl',
- clipPath: brushHelper.makeRectPanelClipPath(rect),
- isTargetByCursor: brushHelper.makeRectIsTargetByCursor(rect, api, coordSysModel),
- getLinearBrushOtherExtent: brushHelper.makeLinearBrushOtherExtent(rect, 0)
- }]).enableBrush({
- brushType: 'lineX',
- brushStyle: areaSelectStyle,
- removeOnClick: true
- }).updateCovers(getCoverInfoList(axisModel));
- },
- _onBrush: function (coverInfoList, opt) {
- // Do not cache these object, because the mey be changed.
- var axisModel = this.axisModel;
- var axis = axisModel.axis;
- var intervals = zrUtil.map(coverInfoList, function (coverInfo) {
- return [axis.coordToData(coverInfo.range[0], true), axis.coordToData(coverInfo.range[1], true)];
- }); // If realtime is true, action is not dispatched on drag end, because
- // the drag end emits the same params with the last drag move event,
- // and may have some delay when using touch pad.
-
- if (!axisModel.option.realtime === opt.isEnd || opt.removeOnClick) {
- // jshint ignore:line
- this.api.dispatchAction({
- type: 'axisAreaSelect',
- parallelAxisId: axisModel.id,
- intervals: intervals
- });
- }
- },
-
- /**
- * @override
- */
- dispose: function () {
- this._brushController.dispose();
- }
- });
-
- function fromAxisAreaSelect(axisModel, ecModel, payload) {
- return payload && payload.type === 'axisAreaSelect' && ecModel.findComponents({
- mainType: 'parallelAxis',
- query: payload
- })[0] === axisModel;
- }
-
- function getCoverInfoList(axisModel) {
- var axis = axisModel.axis;
- return zrUtil.map(axisModel.activeIntervals, function (interval) {
- return {
- brushType: 'lineX',
- panelId: 'pl',
- range: [axis.dataToCoord(interval[0], true), axis.dataToCoord(interval[1], true)]
- };
- });
- }
-
- function getCoordSysModel(axisModel, ecModel) {
- return ecModel.getComponent('parallel', axisModel.get('parallelIndex'));
- }
-
- var _default = AxisView;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2649:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _util = __webpack_require__(864);
-
- var each = _util.each;
- var createHashMap = _util.createHashMap;
-
- var SeriesModel = __webpack_require__(1322);
-
- var createListFromArray = __webpack_require__(1458);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = SeriesModel.extend({
- type: 'series.parallel',
- dependencies: ['parallel'],
- visualColorAccessPath: 'lineStyle.color',
- getInitialData: function (option, ecModel) {
- var source = this.getSource();
- setEncodeAndDimensions(source, this);
- return createListFromArray(source, this);
- },
-
- /**
- * User can get data raw indices on 'axisAreaSelected' event received.
- *
- * @public
- * @param {string} activeState 'active' or 'inactive' or 'normal'
- * @return {Array.<number>} Raw indices
- */
- getRawIndicesByActiveState: function (activeState) {
- var coordSys = this.coordinateSystem;
- var data = this.getData();
- var indices = [];
- coordSys.eachActiveState(data, function (theActiveState, dataIndex) {
- if (activeState === theActiveState) {
- indices.push(data.getRawIndex(dataIndex));
- }
- });
- return indices;
- },
- defaultOption: {
- zlevel: 0,
- // 一级层叠
- z: 2,
- // 二级层叠
- coordinateSystem: 'parallel',
- parallelIndex: 0,
- label: {
- show: false
- },
- inactiveOpacity: 0.05,
- activeOpacity: 1,
- lineStyle: {
- width: 1,
- opacity: 0.45,
- type: 'solid'
- },
- emphasis: {
- label: {
- show: false
- }
- },
- progressive: 500,
- smooth: false,
- // true | false | number
- animationEasing: 'linear'
- }
- });
-
- function setEncodeAndDimensions(source, seriesModel) {
- // The mapping of parallelAxis dimension to data dimension can
- // be specified in parallelAxis.option.dim. For example, if
- // parallelAxis.option.dim is 'dim3', it mapping to the third
- // dimension of data. But `data.encode` has higher priority.
- // Moreover, parallelModel.dimension should not be regarded as data
- // dimensions. Consider dimensions = ['dim4', 'dim2', 'dim6'];
- if (source.encodeDefine) {
- return;
- }
-
- var parallelModel = seriesModel.ecModel.getComponent('parallel', seriesModel.get('parallelIndex'));
-
- if (!parallelModel) {
- return;
- }
-
- var encodeDefine = source.encodeDefine = createHashMap();
- each(parallelModel.dimensions, function (axisDim) {
- var dataDimIndex = convertDimNameToNumber(axisDim);
- encodeDefine.set(axisDim, dataDimIndex);
- });
- }
-
- function convertDimNameToNumber(dimName) {
- return +dimName.replace('dim', '');
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2650:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var graphic = __webpack_require__(906);
-
- var ChartView = __webpack_require__(1439);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var DEFAULT_SMOOTH = 0.3;
- var ParallelView = ChartView.extend({
- type: 'parallel',
- init: function () {
- /**
- * @type {module:zrender/container/Group}
- * @private
- */
- this._dataGroup = new graphic.Group();
- this.group.add(this._dataGroup);
- /**
- * @type {module:echarts/data/List}
- */
-
- this._data;
- /**
- * @type {boolean}
- */
-
- this._initialized;
- },
-
- /**
- * @override
- */
- render: function (seriesModel, ecModel, api, payload) {
- var dataGroup = this._dataGroup;
- var data = seriesModel.getData();
- var oldData = this._data;
- var coordSys = seriesModel.coordinateSystem;
- var dimensions = coordSys.dimensions;
- var seriesScope = makeSeriesScope(seriesModel);
- data.diff(oldData).add(add).update(update).remove(remove).execute();
-
- function add(newDataIndex) {
- var line = addEl(data, dataGroup, newDataIndex, dimensions, coordSys);
- updateElCommon(line, data, newDataIndex, seriesScope);
- }
-
- function update(newDataIndex, oldDataIndex) {
- var line = oldData.getItemGraphicEl(oldDataIndex);
- var points = createLinePoints(data, newDataIndex, dimensions, coordSys);
- data.setItemGraphicEl(newDataIndex, line);
- var animationModel = payload && payload.animation === false ? null : seriesModel;
- graphic.updateProps(line, {
- shape: {
- points: points
- }
- }, animationModel, newDataIndex);
- updateElCommon(line, data, newDataIndex, seriesScope);
- }
-
- function remove(oldDataIndex) {
- var line = oldData.getItemGraphicEl(oldDataIndex);
- dataGroup.remove(line);
- } // First create
-
-
- if (!this._initialized) {
- this._initialized = true;
- var clipPath = createGridClipShape(coordSys, seriesModel, function () {
- // Callback will be invoked immediately if there is no animation
- setTimeout(function () {
- dataGroup.removeClipPath();
- });
- });
- dataGroup.setClipPath(clipPath);
- }
-
- this._data = data;
- },
- incrementalPrepareRender: function (seriesModel, ecModel, api) {
- this._initialized = true;
- this._data = null;
-
- this._dataGroup.removeAll();
- },
- incrementalRender: function (taskParams, seriesModel, ecModel) {
- var data = seriesModel.getData();
- var coordSys = seriesModel.coordinateSystem;
- var dimensions = coordSys.dimensions;
- var seriesScope = makeSeriesScope(seriesModel);
-
- for (var dataIndex = taskParams.start; dataIndex < taskParams.end; dataIndex++) {
- var line = addEl(data, this._dataGroup, dataIndex, dimensions, coordSys);
- line.incremental = true;
- updateElCommon(line, data, dataIndex, seriesScope);
- }
- },
- dispose: function () {},
- // _renderForProgressive: function (seriesModel) {
- // var dataGroup = this._dataGroup;
- // var data = seriesModel.getData();
- // var oldData = this._data;
- // var coordSys = seriesModel.coordinateSystem;
- // var dimensions = coordSys.dimensions;
- // var option = seriesModel.option;
- // var progressive = option.progressive;
- // var smooth = option.smooth ? SMOOTH : null;
- // // In progressive animation is disabled, so use simple data diff,
- // // which effects performance less.
- // // (Typically performance for data with length 7000+ like:
- // // simpleDiff: 60ms, addEl: 184ms,
- // // in RMBP 2.4GHz intel i7, OSX 10.9 chrome 50.0.2661.102 (64-bit))
- // if (simpleDiff(oldData, data, dimensions)) {
- // dataGroup.removeAll();
- // data.each(function (dataIndex) {
- // addEl(data, dataGroup, dataIndex, dimensions, coordSys);
- // });
- // }
- // updateElCommon(data, progressive, smooth);
- // // Consider switch between progressive and not.
- // data.__plProgressive = true;
- // this._data = data;
- // },
-
- /**
- * @override
- */
- remove: function () {
- this._dataGroup && this._dataGroup.removeAll();
- this._data = null;
- }
- });
-
- function createGridClipShape(coordSys, seriesModel, cb) {
- var parallelModel = coordSys.model;
- var rect = coordSys.getRect();
- var rectEl = new graphic.Rect({
- shape: {
- x: rect.x,
- y: rect.y,
- width: rect.width,
- height: rect.height
- }
- });
- var dim = parallelModel.get('layout') === 'horizontal' ? 'width' : 'height';
- rectEl.setShape(dim, 0);
- graphic.initProps(rectEl, {
- shape: {
- width: rect.width,
- height: rect.height
- }
- }, seriesModel, cb);
- return rectEl;
- }
-
- function createLinePoints(data, dataIndex, dimensions, coordSys) {
- var points = [];
-
- for (var i = 0; i < dimensions.length; i++) {
- var dimName = dimensions[i];
- var value = data.get(data.mapDimension(dimName), dataIndex);
-
- if (!isEmptyValue(value, coordSys.getAxis(dimName).type)) {
- points.push(coordSys.dataToPoint(value, dimName));
- }
- }
-
- return points;
- }
-
- function addEl(data, dataGroup, dataIndex, dimensions, coordSys) {
- var points = createLinePoints(data, dataIndex, dimensions, coordSys);
- var line = new graphic.Polyline({
- shape: {
- points: points
- },
- silent: true,
- z2: 10
- });
- dataGroup.add(line);
- data.setItemGraphicEl(dataIndex, line);
- return line;
- }
-
- function makeSeriesScope(seriesModel) {
- var smooth = seriesModel.get('smooth', true);
- smooth === true && (smooth = DEFAULT_SMOOTH);
- return {
- lineStyle: seriesModel.getModel('lineStyle').getLineStyle(),
- smooth: smooth != null ? smooth : DEFAULT_SMOOTH
- };
- }
-
- function updateElCommon(el, data, dataIndex, seriesScope) {
- var lineStyle = seriesScope.lineStyle;
-
- if (data.hasItemOption) {
- var lineStyleModel = data.getItemModel(dataIndex).getModel('lineStyle');
- lineStyle = lineStyleModel.getLineStyle();
- }
-
- el.useStyle(lineStyle);
- var elStyle = el.style;
- elStyle.fill = null; // lineStyle.color have been set to itemVisual in module:echarts/visual/seriesColor.
-
- elStyle.stroke = data.getItemVisual(dataIndex, 'color'); // lineStyle.opacity have been set to itemVisual in parallelVisual.
-
- elStyle.opacity = data.getItemVisual(dataIndex, 'opacity');
- seriesScope.smooth && (el.shape.smooth = seriesScope.smooth);
- } // function simpleDiff(oldData, newData, dimensions) {
- // var oldLen;
- // if (!oldData
- // || !oldData.__plProgressive
- // || (oldLen = oldData.count()) !== newData.count()
- // ) {
- // return true;
- // }
- // var dimLen = dimensions.length;
- // for (var i = 0; i < oldLen; i++) {
- // for (var j = 0; j < dimLen; j++) {
- // if (oldData.get(dimensions[j], i) !== newData.get(dimensions[j], i)) {
- // return true;
- // }
- // }
- // }
- // return false;
- // }
- // FIXME
- // 公用方法?
-
-
- function isEmptyValue(val, axisType) {
- return axisType === 'category' ? val == null : val == null || isNaN(val); // axisType === 'value'
- }
-
- var _default = ParallelView;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2651:
- /***/ (function(module, exports) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var opacityAccessPath = ['lineStyle', 'normal', 'opacity'];
- var _default = {
- seriesType: 'parallel',
- reset: function (seriesModel, ecModel, api) {
- var itemStyleModel = seriesModel.getModel('itemStyle');
- var lineStyleModel = seriesModel.getModel('lineStyle');
- var globalColors = ecModel.get('color');
- var color = lineStyleModel.get('color') || itemStyleModel.get('color') || globalColors[seriesModel.seriesIndex % globalColors.length];
- var inactiveOpacity = seriesModel.get('inactiveOpacity');
- var activeOpacity = seriesModel.get('activeOpacity');
- var lineStyle = seriesModel.getModel('lineStyle').getLineStyle();
- var coordSys = seriesModel.coordinateSystem;
- var data = seriesModel.getData();
- var opacityMap = {
- normal: lineStyle.opacity,
- active: activeOpacity,
- inactive: inactiveOpacity
- };
- data.setVisual('color', color);
-
- function progress(params, data) {
- coordSys.eachActiveState(data, function (activeState, dataIndex) {
- var opacity = opacityMap[activeState];
-
- if (activeState === 'normal' && data.hasItemOption) {
- var itemOpacity = data.getItemModel(dataIndex).get(opacityAccessPath, true);
- itemOpacity != null && (opacity = itemOpacity);
- }
-
- data.setItemVisual(dataIndex, 'opacity', opacity);
- }, params.start, params.end);
- }
-
- return {
- progress: progress
- };
- }
- };
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2652:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- __webpack_require__(2653);
-
- __webpack_require__(2654);
-
- __webpack_require__(2655);
-
- var sankeyLayout = __webpack_require__(2656);
-
- var sankeyVisual = __webpack_require__(2657);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- echarts.registerLayout(sankeyLayout);
- echarts.registerVisual(sankeyVisual);
-
- /***/ }),
-
- /***/ 2653:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var SeriesModel = __webpack_require__(1322);
-
- var createGraphFromNodeEdge = __webpack_require__(2305);
-
- var _format = __webpack_require__(1186);
-
- var encodeHTML = _format.encodeHTML;
-
- var Model = __webpack_require__(1317);
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var SankeySeries = SeriesModel.extend({
- type: 'series.sankey',
- layoutInfo: null,
- levelModels: null,
-
- /**
- * Init a graph data structure from data in option series
- *
- * @param {Object} option the object used to config echarts view
- * @return {module:echarts/data/List} storage initial data
- */
- getInitialData: function (option, ecModel) {
- var links = option.edges || option.links;
- var nodes = option.data || option.nodes;
- var levels = option.levels;
- var levelModels = this.levelModels = {};
-
- for (var i = 0; i < levels.length; i++) {
- if (levels[i].depth != null && levels[i].depth >= 0) {
- levelModels[levels[i].depth] = new Model(levels[i], this, ecModel);
- } else {}
- }
-
- if (nodes && links) {
- var graph = createGraphFromNodeEdge(nodes, links, this, true, beforeLink);
- return graph.data;
- }
-
- function beforeLink(nodeData, edgeData) {
- nodeData.wrapMethod('getItemModel', function (model, idx) {
- model.customizeGetParent(function (path) {
- var parentModel = this.parentModel;
- var nodeDepth = parentModel.getData().getItemLayout(idx).depth;
- var levelModel = parentModel.levelModels[nodeDepth];
- return levelModel || this.parentModel;
- });
- return model;
- });
- edgeData.wrapMethod('getItemModel', function (model, idx) {
- model.customizeGetParent(function (path) {
- var parentModel = this.parentModel;
- var edge = parentModel.getGraph().getEdgeByIndex(idx);
- var depth = edge.node1.getLayout().depth;
- var levelModel = parentModel.levelModels[depth];
- return levelModel || this.parentModel;
- });
- return model;
- });
- }
- },
- setNodePosition: function (dataIndex, localPosition) {
- var dataItem = this.option.data[dataIndex];
- dataItem.localX = localPosition[0];
- dataItem.localY = localPosition[1];
- },
-
- /**
- * Return the graphic data structure
- *
- * @return {module:echarts/data/Graph} graphic data structure
- */
- getGraph: function () {
- return this.getData().graph;
- },
-
- /**
- * Get edge data of graphic data structure
- *
- * @return {module:echarts/data/List} data structure of list
- */
- getEdgeData: function () {
- return this.getGraph().edgeData;
- },
-
- /**
- * @override
- */
- formatTooltip: function (dataIndex, multipleSeries, dataType) {
- // dataType === 'node' or empty do not show tooltip by default
- if (dataType === 'edge') {
- var params = this.getDataParams(dataIndex, dataType);
- var rawDataOpt = params.data;
- var html = rawDataOpt.source + ' -- ' + rawDataOpt.target;
-
- if (params.value) {
- html += ' : ' + params.value;
- }
-
- return encodeHTML(html);
- } else if (dataType === 'node') {
- var node = this.getGraph().getNodeByIndex(dataIndex);
- var value = node.getLayout().value;
- var name = this.getDataParams(dataIndex, dataType).data.name;
-
- if (value) {
- var html = name + ' : ' + value;
- }
-
- return encodeHTML(html);
- }
-
- return SankeySeries.superCall(this, 'formatTooltip', dataIndex, multipleSeries);
- },
- optionUpdated: function () {
- var option = this.option;
-
- if (option.focusNodeAdjacency === true) {
- option.focusNodeAdjacency = 'allEdges';
- }
- },
- defaultOption: {
- zlevel: 0,
- z: 2,
- coordinateSystem: 'view',
- layout: null,
- // The position of the whole view
- left: '5%',
- top: '5%',
- right: '20%',
- bottom: '5%',
- // Value can be 'vertical'
- orient: 'horizontal',
- // The dx of the node
- nodeWidth: 20,
- // The vertical distance between two nodes
- nodeGap: 8,
- // Control if the node can move or not
- draggable: true,
- // Value can be 'inEdges', 'outEdges', 'allEdges', true (the same as 'allEdges').
- focusNodeAdjacency: false,
- // The number of iterations to change the position of the node
- layoutIterations: 32,
- label: {
- show: true,
- position: 'right',
- color: '#000',
- fontSize: 12
- },
- levels: [],
- // Value can be 'left' or 'right'
- nodeAlign: 'justify',
- itemStyle: {
- borderWidth: 1,
- borderColor: '#333'
- },
- lineStyle: {
- color: '#314656',
- opacity: 0.2,
- curveness: 0.5
- },
- emphasis: {
- label: {
- show: true
- },
- lineStyle: {
- opacity: 0.6
- }
- },
- animationEasing: 'linear',
- animationDuration: 1000
- }
- });
- var _default = SankeySeries;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2654:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var graphic = __webpack_require__(906);
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var nodeOpacityPath = ['itemStyle', 'opacity'];
- var lineOpacityPath = ['lineStyle', 'opacity'];
-
- function getItemOpacity(item, opacityPath) {
- return item.getVisual('opacity') || item.getModel().get(opacityPath);
- }
-
- function fadeOutItem(item, opacityPath, opacityRatio) {
- var el = item.getGraphicEl();
- var opacity = getItemOpacity(item, opacityPath);
-
- if (opacityRatio != null) {
- opacity == null && (opacity = 1);
- opacity *= opacityRatio;
- }
-
- el.downplay && el.downplay();
- el.traverse(function (child) {
- if (child.type !== 'group') {
- child.setStyle('opacity', opacity);
- }
- });
- }
-
- function fadeInItem(item, opacityPath) {
- var opacity = getItemOpacity(item, opacityPath);
- var el = item.getGraphicEl();
- el.highlight && el.highlight();
- el.traverse(function (child) {
- if (child.type !== 'group') {
- child.setStyle('opacity', opacity);
- }
- });
- }
-
- var SankeyShape = graphic.extendShape({
- shape: {
- x1: 0,
- y1: 0,
- x2: 0,
- y2: 0,
- cpx1: 0,
- cpy1: 0,
- cpx2: 0,
- cpy2: 0,
- extent: 0,
- orient: ''
- },
- buildPath: function (ctx, shape) {
- var extent = shape.extent;
- ctx.moveTo(shape.x1, shape.y1);
- ctx.bezierCurveTo(shape.cpx1, shape.cpy1, shape.cpx2, shape.cpy2, shape.x2, shape.y2);
-
- if (shape.orient === 'vertical') {
- ctx.lineTo(shape.x2 + extent, shape.y2);
- ctx.bezierCurveTo(shape.cpx2 + extent, shape.cpy2, shape.cpx1 + extent, shape.cpy1, shape.x1 + extent, shape.y1);
- } else {
- ctx.lineTo(shape.x2, shape.y2 + extent);
- ctx.bezierCurveTo(shape.cpx2, shape.cpy2 + extent, shape.cpx1, shape.cpy1 + extent, shape.x1, shape.y1 + extent);
- }
-
- ctx.closePath();
- }
- });
-
- var _default = echarts.extendChartView({
- type: 'sankey',
-
- /**
- * @private
- * @type {module:echarts/chart/sankey/SankeySeries}
- */
- _model: null,
-
- /**
- * @private
- * @type {boolean}
- */
- _focusAdjacencyDisabled: false,
- render: function (seriesModel, ecModel, api) {
- var sankeyView = this;
- var graph = seriesModel.getGraph();
- var group = this.group;
- var layoutInfo = seriesModel.layoutInfo; // view width
-
- var width = layoutInfo.width; // view height
-
- var height = layoutInfo.height;
- var nodeData = seriesModel.getData();
- var edgeData = seriesModel.getData('edge');
- var orient = seriesModel.get('orient');
- this._model = seriesModel;
- group.removeAll();
- group.attr('position', [layoutInfo.x, layoutInfo.y]); // generate a bezire Curve for each edge
-
- graph.eachEdge(function (edge) {
- var curve = new SankeyShape();
- curve.dataIndex = edge.dataIndex;
- curve.seriesIndex = seriesModel.seriesIndex;
- curve.dataType = 'edge';
- var lineStyleModel = edge.getModel('lineStyle');
- var curvature = lineStyleModel.get('curveness');
- var n1Layout = edge.node1.getLayout();
- var node1Model = edge.node1.getModel();
- var dragX1 = node1Model.get('localX');
- var dragY1 = node1Model.get('localY');
- var n2Layout = edge.node2.getLayout();
- var node2Model = edge.node2.getModel();
- var dragX2 = node2Model.get('localX');
- var dragY2 = node2Model.get('localY');
- var edgeLayout = edge.getLayout();
- var x1;
- var y1;
- var x2;
- var y2;
- var cpx1;
- var cpy1;
- var cpx2;
- var cpy2;
- curve.shape.extent = Math.max(1, edgeLayout.dy);
- curve.shape.orient = orient;
-
- if (orient === 'vertical') {
- x1 = (dragX1 != null ? dragX1 * width : n1Layout.x) + edgeLayout.sy;
- y1 = (dragY1 != null ? dragY1 * height : n1Layout.y) + n1Layout.dy;
- x2 = (dragX2 != null ? dragX2 * width : n2Layout.x) + edgeLayout.ty;
- y2 = dragY2 != null ? dragY2 * height : n2Layout.y;
- cpx1 = x1;
- cpy1 = y1 * (1 - curvature) + y2 * curvature;
- cpx2 = x2;
- cpy2 = y1 * curvature + y2 * (1 - curvature);
- } else {
- x1 = (dragX1 != null ? dragX1 * width : n1Layout.x) + n1Layout.dx;
- y1 = (dragY1 != null ? dragY1 * height : n1Layout.y) + edgeLayout.sy;
- x2 = dragX2 != null ? dragX2 * width : n2Layout.x;
- y2 = (dragY2 != null ? dragY2 * height : n2Layout.y) + edgeLayout.ty;
- cpx1 = x1 * (1 - curvature) + x2 * curvature;
- cpy1 = y1;
- cpx2 = x1 * curvature + x2 * (1 - curvature);
- cpy2 = y2;
- }
-
- curve.setShape({
- x1: x1,
- y1: y1,
- x2: x2,
- y2: y2,
- cpx1: cpx1,
- cpy1: cpy1,
- cpx2: cpx2,
- cpy2: cpy2
- });
- curve.setStyle(lineStyleModel.getItemStyle()); // Special color, use source node color or target node color
-
- switch (curve.style.fill) {
- case 'source':
- curve.style.fill = edge.node1.getVisual('color');
- break;
-
- case 'target':
- curve.style.fill = edge.node2.getVisual('color');
- break;
- }
-
- graphic.setHoverStyle(curve, edge.getModel('emphasis.lineStyle').getItemStyle());
- group.add(curve);
- edgeData.setItemGraphicEl(edge.dataIndex, curve);
- }); // Generate a rect for each node
-
- graph.eachNode(function (node) {
- var layout = node.getLayout();
- var itemModel = node.getModel();
- var dragX = itemModel.get('localX');
- var dragY = itemModel.get('localY');
- var labelModel = itemModel.getModel('label');
- var labelHoverModel = itemModel.getModel('emphasis.label');
- var rect = new graphic.Rect({
- shape: {
- x: dragX != null ? dragX * width : layout.x,
- y: dragY != null ? dragY * height : layout.y,
- width: layout.dx,
- height: layout.dy
- },
- style: itemModel.getModel('itemStyle').getItemStyle()
- });
- var hoverStyle = node.getModel('emphasis.itemStyle').getItemStyle();
- graphic.setLabelStyle(rect.style, hoverStyle, labelModel, labelHoverModel, {
- labelFetcher: seriesModel,
- labelDataIndex: node.dataIndex,
- defaultText: node.id,
- isRectText: true
- });
- rect.setStyle('fill', node.getVisual('color'));
- graphic.setHoverStyle(rect, hoverStyle);
- group.add(rect);
- nodeData.setItemGraphicEl(node.dataIndex, rect);
- rect.dataType = 'node';
- });
- nodeData.eachItemGraphicEl(function (el, dataIndex) {
- var itemModel = nodeData.getItemModel(dataIndex);
-
- if (itemModel.get('draggable')) {
- el.drift = function (dx, dy) {
- sankeyView._focusAdjacencyDisabled = true;
- this.shape.x += dx;
- this.shape.y += dy;
- this.dirty();
- api.dispatchAction({
- type: 'dragNode',
- seriesId: seriesModel.id,
- dataIndex: nodeData.getRawIndex(dataIndex),
- localX: this.shape.x / width,
- localY: this.shape.y / height
- });
- };
-
- el.ondragend = function () {
- sankeyView._focusAdjacencyDisabled = false;
- };
-
- el.draggable = true;
- el.cursor = 'move';
- }
-
- if (itemModel.get('focusNodeAdjacency')) {
- el.off('mouseover').on('mouseover', function () {
- if (!sankeyView._focusAdjacencyDisabled) {
- sankeyView._clearTimer();
-
- api.dispatchAction({
- type: 'focusNodeAdjacency',
- seriesId: seriesModel.id,
- dataIndex: el.dataIndex
- });
- }
- });
- el.off('mouseout').on('mouseout', function () {
- if (!sankeyView._focusAdjacencyDisabled) {
- sankeyView._dispatchUnfocus(api);
- }
- });
- }
- });
- edgeData.eachItemGraphicEl(function (el, dataIndex) {
- var edgeModel = edgeData.getItemModel(dataIndex);
-
- if (edgeModel.get('focusNodeAdjacency')) {
- el.off('mouseover').on('mouseover', function () {
- if (!sankeyView._focusAdjacencyDisabled) {
- sankeyView._clearTimer();
-
- api.dispatchAction({
- type: 'focusNodeAdjacency',
- seriesId: seriesModel.id,
- edgeDataIndex: el.dataIndex
- });
- }
- });
- el.off('mouseout').on('mouseout', function () {
- if (!sankeyView._focusAdjacencyDisabled) {
- sankeyView._dispatchUnfocus(api);
- }
- });
- }
- });
-
- if (!this._data && seriesModel.get('animation')) {
- group.setClipPath(createGridClipShape(group.getBoundingRect(), seriesModel, function () {
- group.removeClipPath();
- }));
- }
-
- this._data = seriesModel.getData();
- },
- dispose: function () {
- this._clearTimer();
- },
- _dispatchUnfocus: function (api) {
- var self = this;
-
- this._clearTimer();
-
- this._unfocusDelayTimer = setTimeout(function () {
- self._unfocusDelayTimer = null;
- api.dispatchAction({
- type: 'unfocusNodeAdjacency',
- seriesId: self._model.id
- });
- }, 500);
- },
- _clearTimer: function () {
- if (this._unfocusDelayTimer) {
- clearTimeout(this._unfocusDelayTimer);
- this._unfocusDelayTimer = null;
- }
- },
- focusNodeAdjacency: function (seriesModel, ecModel, api, payload) {
- var data = this._model.getData();
-
- var graph = data.graph;
- var dataIndex = payload.dataIndex;
- var itemModel = data.getItemModel(dataIndex);
- var edgeDataIndex = payload.edgeDataIndex;
-
- if (dataIndex == null && edgeDataIndex == null) {
- return;
- }
-
- var node = graph.getNodeByIndex(dataIndex);
- var edge = graph.getEdgeByIndex(edgeDataIndex);
- graph.eachNode(function (node) {
- fadeOutItem(node, nodeOpacityPath, 0.1);
- });
- graph.eachEdge(function (edge) {
- fadeOutItem(edge, lineOpacityPath, 0.1);
- });
-
- if (node) {
- fadeInItem(node, nodeOpacityPath);
- var focusNodeAdj = itemModel.get('focusNodeAdjacency');
-
- if (focusNodeAdj === 'outEdges') {
- zrUtil.each(node.outEdges, function (edge) {
- if (edge.dataIndex < 0) {
- return;
- }
-
- fadeInItem(edge, lineOpacityPath);
- fadeInItem(edge.node2, nodeOpacityPath);
- });
- } else if (focusNodeAdj === 'inEdges') {
- zrUtil.each(node.inEdges, function (edge) {
- if (edge.dataIndex < 0) {
- return;
- }
-
- fadeInItem(edge, lineOpacityPath);
- fadeInItem(edge.node1, nodeOpacityPath);
- });
- } else if (focusNodeAdj === 'allEdges') {
- zrUtil.each(node.edges, function (edge) {
- if (edge.dataIndex < 0) {
- return;
- }
-
- fadeInItem(edge, lineOpacityPath);
- fadeInItem(edge.node1, nodeOpacityPath);
- fadeInItem(edge.node2, nodeOpacityPath);
- });
- }
- }
-
- if (edge) {
- fadeInItem(edge, lineOpacityPath);
- fadeInItem(edge.node1, nodeOpacityPath);
- fadeInItem(edge.node2, nodeOpacityPath);
- }
- },
- unfocusNodeAdjacency: function (seriesModel, ecModel, api, payload) {
- var graph = this._model.getGraph();
-
- graph.eachNode(function (node) {
- fadeOutItem(node, nodeOpacityPath);
- });
- graph.eachEdge(function (edge) {
- fadeOutItem(edge, lineOpacityPath);
- });
- }
- }); // Add animation to the view
-
-
- function createGridClipShape(rect, seriesModel, cb) {
- var rectEl = new graphic.Rect({
- shape: {
- x: rect.x - 10,
- y: rect.y - 10,
- width: 0,
- height: rect.height + 20
- }
- });
- graphic.initProps(rectEl, {
- shape: {
- width: rect.width + 20,
- height: rect.height + 20
- }
- }, seriesModel, cb);
- return rectEl;
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2655:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- __webpack_require__(2306);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- echarts.registerAction({
- type: 'dragNode',
- event: 'dragnode',
- // here can only use 'update' now, other value is not support in echarts.
- update: 'update'
- }, function (payload, ecModel) {
- ecModel.eachComponent({
- mainType: 'series',
- subType: 'sankey',
- query: payload
- }, function (seriesModel) {
- seriesModel.setNodePosition(payload.dataIndex, [payload.localX, payload.localY]);
- });
- });
-
- /***/ }),
-
- /***/ 2656:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var layout = __webpack_require__(1171);
-
- var zrUtil = __webpack_require__(864);
-
- var _model = __webpack_require__(1064);
-
- var groupData = _model.groupData;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function _default(ecModel, api, payload) {
- ecModel.eachSeriesByType('sankey', function (seriesModel) {
- var nodeWidth = seriesModel.get('nodeWidth');
- var nodeGap = seriesModel.get('nodeGap');
- var layoutInfo = getViewRect(seriesModel, api);
- seriesModel.layoutInfo = layoutInfo;
- var width = layoutInfo.width;
- var height = layoutInfo.height;
- var graph = seriesModel.getGraph();
- var nodes = graph.nodes;
- var edges = graph.edges;
- computeNodeValues(nodes);
- var filteredNodes = zrUtil.filter(nodes, function (node) {
- return node.getLayout().value === 0;
- });
- var iterations = filteredNodes.length !== 0 ? 0 : seriesModel.get('layoutIterations');
- var orient = seriesModel.get('orient');
- var nodeAlign = seriesModel.get('nodeAlign');
- layoutSankey(nodes, edges, nodeWidth, nodeGap, width, height, iterations, orient, nodeAlign);
- });
- }
- /**
- * Get the layout position of the whole view
- *
- * @param {module:echarts/model/Series} seriesModel the model object of sankey series
- * @param {module:echarts/ExtensionAPI} api provide the API list that the developer can call
- * @return {module:zrender/core/BoundingRect} size of rect to draw the sankey view
- */
-
-
- function getViewRect(seriesModel, api) {
- return layout.getLayoutRect(seriesModel.getBoxLayoutParams(), {
- width: api.getWidth(),
- height: api.getHeight()
- });
- }
-
- function layoutSankey(nodes, edges, nodeWidth, nodeGap, width, height, iterations, orient, nodeAlign) {
- computeNodeBreadths(nodes, edges, nodeWidth, width, height, orient, nodeAlign);
- computeNodeDepths(nodes, edges, height, width, nodeGap, iterations, orient);
- computeEdgeDepths(nodes, orient);
- }
- /**
- * Compute the value of each node by summing the associated edge's value
- *
- * @param {module:echarts/data/Graph~Node} nodes node of sankey view
- */
-
-
- function computeNodeValues(nodes) {
- zrUtil.each(nodes, function (node) {
- var value1 = sum(node.outEdges, getEdgeValue);
- var value2 = sum(node.inEdges, getEdgeValue);
- var value = Math.max(value1, value2);
- node.setLayout({
- value: value
- }, true);
- });
- }
- /**
- * Compute the x-position for each node.
- *
- * Here we use Kahn algorithm to detect cycle when we traverse
- * the node to computer the initial x position.
- *
- * @param {module:echarts/data/Graph~Node} nodes node of sankey view
- * @param {number} nodeWidth the dx of the node
- * @param {number} width the whole width of the area to draw the view
- */
-
-
- function computeNodeBreadths(nodes, edges, nodeWidth, width, height, orient, nodeAlign) {
- // Used to mark whether the edge is deleted. if it is deleted,
- // the value is 0, otherwise it is 1.
- var remainEdges = []; // Storage each node's indegree.
-
- var indegreeArr = []; //Used to storage the node with indegree is equal to 0.
-
- var zeroIndegrees = [];
- var nextTargetNode = [];
- var x = 0;
- var kx = 0;
-
- for (var i = 0; i < edges.length; i++) {
- remainEdges[i] = 1;
- }
-
- for (i = 0; i < nodes.length; i++) {
- indegreeArr[i] = nodes[i].inEdges.length;
-
- if (indegreeArr[i] === 0) {
- zeroIndegrees.push(nodes[i]);
- }
- }
-
- var maxNodeDepth = -1; // Traversing nodes using topological sorting to calculate the
- // horizontal(if orient === 'horizontal') or vertical(if orient === 'vertical')
- // position of the nodes.
-
- while (zeroIndegrees.length) {
- for (var idx = 0; idx < zeroIndegrees.length; idx++) {
- var node = zeroIndegrees[idx];
- var item = node.hostGraph.data.getRawDataItem(node.dataIndex);
- var isItemDepth = item.depth != null && item.depth >= 0;
-
- if (isItemDepth && item.depth > maxNodeDepth) {
- maxNodeDepth = item.depth;
- }
-
- node.setLayout({
- depth: isItemDepth ? item.depth : x
- }, true);
- orient === 'vertical' ? node.setLayout({
- dy: nodeWidth
- }, true) : node.setLayout({
- dx: nodeWidth
- }, true);
-
- for (var edgeIdx = 0; edgeIdx < node.outEdges.length; edgeIdx++) {
- var edge = node.outEdges[edgeIdx];
- var indexEdge = edges.indexOf(edge);
- remainEdges[indexEdge] = 0;
- var targetNode = edge.node2;
- var nodeIndex = nodes.indexOf(targetNode);
-
- if (--indegreeArr[nodeIndex] === 0 && nextTargetNode.indexOf(targetNode) < 0) {
- nextTargetNode.push(targetNode);
- }
- }
- }
-
- ++x;
- zeroIndegrees = nextTargetNode;
- nextTargetNode = [];
- }
-
- for (i = 0; i < remainEdges.length; i++) {
- if (remainEdges[i] === 1) {
- throw new Error('Sankey is a DAG, the original data has cycle!');
- }
- }
-
- var maxDepth = maxNodeDepth > x - 1 ? maxNodeDepth : x - 1;
-
- if (nodeAlign && nodeAlign !== 'left') {
- adjustNodeWithNodeAlign(nodes, nodeAlign, orient, maxDepth);
- }
-
- var kx = orient === 'vertical' ? (height - nodeWidth) / maxDepth : (width - nodeWidth) / maxDepth;
- scaleNodeBreadths(nodes, kx, orient);
- }
-
- function isNodeDepth(node) {
- var item = node.hostGraph.data.getRawDataItem(node.dataIndex);
- return item.depth != null && item.depth >= 0;
- }
-
- function adjustNodeWithNodeAlign(nodes, nodeAlign, orient, maxDepth) {
- if (nodeAlign === 'right') {
- var nextSourceNode = [];
- var remainNodes = nodes;
- var nodeHeight = 0;
-
- while (remainNodes.length) {
- for (var i = 0; i < remainNodes.length; i++) {
- var node = remainNodes[i];
- node.setLayout({
- skNodeHeight: nodeHeight
- }, true);
-
- for (var j = 0; j < node.inEdges.length; j++) {
- var edge = node.inEdges[j];
-
- if (nextSourceNode.indexOf(edge.node1) < 0) {
- nextSourceNode.push(edge.node1);
- }
- }
- }
-
- remainNodes = nextSourceNode;
- nextSourceNode = [];
- ++nodeHeight;
- }
-
- zrUtil.each(nodes, function (node) {
- if (!isNodeDepth(node)) {
- node.setLayout({
- depth: Math.max(0, maxDepth - node.getLayout().skNodeHeight)
- }, true);
- }
- });
- } else if (nodeAlign === 'justify') {
- moveSinksRight(nodes, maxDepth);
- }
- }
- /**
- * All the node without outEgdes are assigned maximum x-position and
- * be aligned in the last column.
- *
- * @param {module:echarts/data/Graph~Node} nodes. node of sankey view.
- * @param {number} maxDepth. use to assign to node without outEdges as x-position.
- */
-
-
- function moveSinksRight(nodes, maxDepth) {
- zrUtil.each(nodes, function (node) {
- if (!isNodeDepth(node) && !node.outEdges.length) {
- node.setLayout({
- depth: maxDepth
- }, true);
- }
- });
- }
- /**
- * Scale node x-position to the width
- *
- * @param {module:echarts/data/Graph~Node} nodes node of sankey view
- * @param {number} kx multiple used to scale nodes
- */
-
-
- function scaleNodeBreadths(nodes, kx, orient) {
- zrUtil.each(nodes, function (node) {
- var nodeDepth = node.getLayout().depth * kx;
- orient === 'vertical' ? node.setLayout({
- y: nodeDepth
- }, true) : node.setLayout({
- x: nodeDepth
- }, true);
- });
- }
- /**
- * Using Gauss-Seidel iterations method to compute the node depth(y-position)
- *
- * @param {module:echarts/data/Graph~Node} nodes node of sankey view
- * @param {module:echarts/data/Graph~Edge} edges edge of sankey view
- * @param {number} height the whole height of the area to draw the view
- * @param {number} nodeGap the vertical distance between two nodes
- * in the same column.
- * @param {number} iterations the number of iterations for the algorithm
- */
-
-
- function computeNodeDepths(nodes, edges, height, width, nodeGap, iterations, orient) {
- var nodesByBreadth = prepareNodesByBreadth(nodes, orient);
- initializeNodeDepth(nodesByBreadth, edges, height, width, nodeGap, orient);
- resolveCollisions(nodesByBreadth, nodeGap, height, width, orient);
-
- for (var alpha = 1; iterations > 0; iterations--) {
- // 0.99 is a experience parameter, ensure that each iterations of
- // changes as small as possible.
- alpha *= 0.99;
- relaxRightToLeft(nodesByBreadth, alpha, orient);
- resolveCollisions(nodesByBreadth, nodeGap, height, width, orient);
- relaxLeftToRight(nodesByBreadth, alpha, orient);
- resolveCollisions(nodesByBreadth, nodeGap, height, width, orient);
- }
- }
-
- function prepareNodesByBreadth(nodes, orient) {
- var nodesByBreadth = [];
- var keyAttr = orient === 'vertical' ? 'y' : 'x';
- var groupResult = groupData(nodes, function (node) {
- return node.getLayout()[keyAttr];
- });
- groupResult.keys.sort(function (a, b) {
- return a - b;
- });
- zrUtil.each(groupResult.keys, function (key) {
- nodesByBreadth.push(groupResult.buckets.get(key));
- });
- return nodesByBreadth;
- }
- /**
- * Compute the original y-position for each node
- *
- * @param {module:echarts/data/Graph~Node} nodes node of sankey view
- * @param {Array.<Array.<module:echarts/data/Graph~Node>>} nodesByBreadth
- * group by the array of all sankey nodes based on the nodes x-position.
- * @param {module:echarts/data/Graph~Edge} edges edge of sankey view
- * @param {number} height the whole height of the area to draw the view
- * @param {number} nodeGap the vertical distance between two nodes
- */
-
-
- function initializeNodeDepth(nodesByBreadth, edges, height, width, nodeGap, orient) {
- var minKy = Infinity;
- zrUtil.each(nodesByBreadth, function (nodes) {
- var n = nodes.length;
- var sum = 0;
- zrUtil.each(nodes, function (node) {
- sum += node.getLayout().value;
- });
- var ky = orient === 'vertical' ? (width - (n - 1) * nodeGap) / sum : (height - (n - 1) * nodeGap) / sum;
-
- if (ky < minKy) {
- minKy = ky;
- }
- });
- zrUtil.each(nodesByBreadth, function (nodes) {
- zrUtil.each(nodes, function (node, i) {
- var nodeDy = node.getLayout().value * minKy;
-
- if (orient === 'vertical') {
- node.setLayout({
- x: i
- }, true);
- node.setLayout({
- dx: nodeDy
- }, true);
- } else {
- node.setLayout({
- y: i
- }, true);
- node.setLayout({
- dy: nodeDy
- }, true);
- }
- });
- });
- zrUtil.each(edges, function (edge) {
- var edgeDy = +edge.getValue() * minKy;
- edge.setLayout({
- dy: edgeDy
- }, true);
- });
- }
- /**
- * Resolve the collision of initialized depth (y-position)
- *
- * @param {Array.<Array.<module:echarts/data/Graph~Node>>} nodesByBreadth
- * group by the array of all sankey nodes based on the nodes x-position.
- * @param {number} nodeGap the vertical distance between two nodes
- * @param {number} height the whole height of the area to draw the view
- */
-
-
- function resolveCollisions(nodesByBreadth, nodeGap, height, width, orient) {
- var keyAttr = orient === 'vertical' ? 'x' : 'y';
- zrUtil.each(nodesByBreadth, function (nodes) {
- nodes.sort(function (a, b) {
- return a.getLayout()[keyAttr] - b.getLayout()[keyAttr];
- });
- var nodeX;
- var node;
- var dy;
- var y0 = 0;
- var n = nodes.length;
- var nodeDyAttr = orient === 'vertical' ? 'dx' : 'dy';
-
- for (var i = 0; i < n; i++) {
- node = nodes[i];
- dy = y0 - node.getLayout()[keyAttr];
-
- if (dy > 0) {
- nodeX = node.getLayout()[keyAttr] + dy;
- orient === 'vertical' ? node.setLayout({
- x: nodeX
- }, true) : node.setLayout({
- y: nodeX
- }, true);
- }
-
- y0 = node.getLayout()[keyAttr] + node.getLayout()[nodeDyAttr] + nodeGap;
- }
-
- var viewWidth = orient === 'vertical' ? width : height; // If the bottommost node goes outside the bounds, push it back up
-
- dy = y0 - nodeGap - viewWidth;
-
- if (dy > 0) {
- nodeX = node.getLayout()[keyAttr] - dy;
- orient === 'vertical' ? node.setLayout({
- x: nodeX
- }, true) : node.setLayout({
- y: nodeX
- }, true);
- y0 = nodeX;
-
- for (i = n - 2; i >= 0; --i) {
- node = nodes[i];
- dy = node.getLayout()[keyAttr] + node.getLayout()[nodeDyAttr] + nodeGap - y0;
-
- if (dy > 0) {
- nodeX = node.getLayout()[keyAttr] - dy;
- orient === 'vertical' ? node.setLayout({
- x: nodeX
- }, true) : node.setLayout({
- y: nodeX
- }, true);
- }
-
- y0 = node.getLayout()[keyAttr];
- }
- }
- });
- }
- /**
- * Change the y-position of the nodes, except most the right side nodes
- *
- * @param {Array.<Array.<module:echarts/data/Graph~Node>>} nodesByBreadth
- * group by the array of all sankey nodes based on the node x-position.
- * @param {number} alpha parameter used to adjust the nodes y-position
- */
-
-
- function relaxRightToLeft(nodesByBreadth, alpha, orient) {
- zrUtil.each(nodesByBreadth.slice().reverse(), function (nodes) {
- zrUtil.each(nodes, function (node) {
- if (node.outEdges.length) {
- var y = sum(node.outEdges, weightedTarget, orient) / sum(node.outEdges, getEdgeValue, orient);
-
- if (orient === 'vertical') {
- var nodeX = node.getLayout().x + (y - center(node, orient)) * alpha;
- node.setLayout({
- x: nodeX
- }, true);
- } else {
- var nodeY = node.getLayout().y + (y - center(node, orient)) * alpha;
- node.setLayout({
- y: nodeY
- }, true);
- }
- }
- });
- });
- }
-
- function weightedTarget(edge, orient) {
- return center(edge.node2, orient) * edge.getValue();
- }
-
- function weightedSource(edge, orient) {
- return center(edge.node1, orient) * edge.getValue();
- }
-
- function center(node, orient) {
- return orient === 'vertical' ? node.getLayout().x + node.getLayout().dx / 2 : node.getLayout().y + node.getLayout().dy / 2;
- }
-
- function getEdgeValue(edge) {
- return edge.getValue();
- }
-
- function sum(array, f, orient) {
- var sum = 0;
- var len = array.length;
- var i = -1;
-
- while (++i < len) {
- var value = +f.call(array, array[i], orient);
-
- if (!isNaN(value)) {
- sum += value;
- }
- }
-
- return sum;
- }
- /**
- * Change the y-position of the nodes, except most the left side nodes
- *
- * @param {Array.<Array.<module:echarts/data/Graph~Node>>} nodesByBreadth
- * group by the array of all sankey nodes based on the node x-position.
- * @param {number} alpha parameter used to adjust the nodes y-position
- */
-
-
- function relaxLeftToRight(nodesByBreadth, alpha, orient) {
- zrUtil.each(nodesByBreadth, function (nodes) {
- zrUtil.each(nodes, function (node) {
- if (node.inEdges.length) {
- var y = sum(node.inEdges, weightedSource, orient) / sum(node.inEdges, getEdgeValue, orient);
-
- if (orient === 'vertical') {
- var nodeX = node.getLayout().x + (y - center(node, orient)) * alpha;
- node.setLayout({
- x: nodeX
- }, true);
- } else {
- var nodeY = node.getLayout().y + (y - center(node, orient)) * alpha;
- node.setLayout({
- y: nodeY
- }, true);
- }
- }
- });
- });
- }
- /**
- * Compute the depth(y-position) of each edge
- *
- * @param {module:echarts/data/Graph~Node} nodes node of sankey view
- */
-
-
- function computeEdgeDepths(nodes, orient) {
- var keyAttr = orient === 'vertical' ? 'x' : 'y';
- zrUtil.each(nodes, function (node) {
- node.outEdges.sort(function (a, b) {
- return a.node2.getLayout()[keyAttr] - b.node2.getLayout()[keyAttr];
- });
- node.inEdges.sort(function (a, b) {
- return a.node1.getLayout()[keyAttr] - b.node1.getLayout()[keyAttr];
- });
- });
- zrUtil.each(nodes, function (node) {
- var sy = 0;
- var ty = 0;
- zrUtil.each(node.outEdges, function (edge) {
- edge.setLayout({
- sy: sy
- }, true);
- sy += edge.getLayout().dy;
- });
- zrUtil.each(node.inEdges, function (edge) {
- edge.setLayout({
- ty: ty
- }, true);
- ty += edge.getLayout().dy;
- });
- });
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2657:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var VisualMapping = __webpack_require__(1523);
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function _default(ecModel, payload) {
- ecModel.eachSeriesByType('sankey', function (seriesModel) {
- var graph = seriesModel.getGraph();
- var nodes = graph.nodes;
-
- if (nodes.length) {
- var minValue = Infinity;
- var maxValue = -Infinity;
- zrUtil.each(nodes, function (node) {
- var nodeValue = node.getLayout().value;
-
- if (nodeValue < minValue) {
- minValue = nodeValue;
- }
-
- if (nodeValue > maxValue) {
- maxValue = nodeValue;
- }
- });
- zrUtil.each(nodes, function (node) {
- var mapping = new VisualMapping({
- type: 'color',
- mappingMethod: 'linear',
- dataExtent: [minValue, maxValue],
- visual: seriesModel.get('color')
- });
- var mapValueToColor = mapping.mapValueToVisual(node.getLayout().value);
- var customColor = node.getModel().get('itemStyle.color');
- customColor != null ? node.setVisual('color', customColor) : node.setVisual('color', mapValueToColor);
- });
- }
- });
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2658:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- __webpack_require__(2659);
-
- __webpack_require__(2660);
-
- var boxplotVisual = __webpack_require__(2661);
-
- var boxplotLayout = __webpack_require__(2662);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- echarts.registerVisual(boxplotVisual);
- echarts.registerLayout(boxplotLayout);
-
- /***/ }),
-
- /***/ 2659:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var SeriesModel = __webpack_require__(1322);
-
- var _whiskerBoxCommon = __webpack_require__(2312);
-
- var seriesModelMixin = _whiskerBoxCommon.seriesModelMixin;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var BoxplotSeries = SeriesModel.extend({
- type: 'series.boxplot',
- dependencies: ['xAxis', 'yAxis', 'grid'],
- // TODO
- // box width represents group size, so dimension should have 'size'.
-
- /**
- * @see <https://en.wikipedia.org/wiki/Box_plot>
- * The meanings of 'min' and 'max' depend on user,
- * and echarts do not need to know it.
- * @readOnly
- */
- defaultValueDimensions: [{
- name: 'min',
- defaultTooltip: true
- }, {
- name: 'Q1',
- defaultTooltip: true
- }, {
- name: 'median',
- defaultTooltip: true
- }, {
- name: 'Q3',
- defaultTooltip: true
- }, {
- name: 'max',
- defaultTooltip: true
- }],
-
- /**
- * @type {Array.<string>}
- * @readOnly
- */
- dimensions: null,
-
- /**
- * @override
- */
- defaultOption: {
- zlevel: 0,
- // 一级层叠
- z: 2,
- // 二级层叠
- coordinateSystem: 'cartesian2d',
- legendHoverLink: true,
- hoverAnimation: true,
- // xAxisIndex: 0,
- // yAxisIndex: 0,
- layout: null,
- // 'horizontal' or 'vertical'
- boxWidth: [7, 50],
- // [min, max] can be percent of band width.
- itemStyle: {
- color: '#fff',
- borderWidth: 1
- },
- emphasis: {
- itemStyle: {
- borderWidth: 2,
- shadowBlur: 5,
- shadowOffsetX: 2,
- shadowOffsetY: 2,
- shadowColor: 'rgba(0,0,0,0.4)'
- }
- },
- animationEasing: 'elasticOut',
- animationDuration: 800
- }
- });
- zrUtil.mixin(BoxplotSeries, seriesModelMixin, true);
- var _default = BoxplotSeries;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2660:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var ChartView = __webpack_require__(1439);
-
- var graphic = __webpack_require__(906);
-
- var Path = __webpack_require__(1280);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // Update common properties
- var NORMAL_ITEM_STYLE_PATH = ['itemStyle'];
- var EMPHASIS_ITEM_STYLE_PATH = ['emphasis', 'itemStyle'];
- var BoxplotView = ChartView.extend({
- type: 'boxplot',
- render: function (seriesModel, ecModel, api) {
- var data = seriesModel.getData();
- var group = this.group;
- var oldData = this._data; // There is no old data only when first rendering or switching from
- // stream mode to normal mode, where previous elements should be removed.
-
- if (!this._data) {
- group.removeAll();
- }
-
- var constDim = seriesModel.get('layout') === 'horizontal' ? 1 : 0;
- data.diff(oldData).add(function (newIdx) {
- if (data.hasValue(newIdx)) {
- var itemLayout = data.getItemLayout(newIdx);
- var symbolEl = createNormalBox(itemLayout, data, newIdx, constDim, true);
- data.setItemGraphicEl(newIdx, symbolEl);
- group.add(symbolEl);
- }
- }).update(function (newIdx, oldIdx) {
- var symbolEl = oldData.getItemGraphicEl(oldIdx); // Empty data
-
- if (!data.hasValue(newIdx)) {
- group.remove(symbolEl);
- return;
- }
-
- var itemLayout = data.getItemLayout(newIdx);
-
- if (!symbolEl) {
- symbolEl = createNormalBox(itemLayout, data, newIdx, constDim);
- } else {
- updateNormalBoxData(itemLayout, symbolEl, data, newIdx);
- }
-
- group.add(symbolEl);
- data.setItemGraphicEl(newIdx, symbolEl);
- }).remove(function (oldIdx) {
- var el = oldData.getItemGraphicEl(oldIdx);
- el && group.remove(el);
- }).execute();
- this._data = data;
- },
- remove: function (ecModel) {
- var group = this.group;
- var data = this._data;
- this._data = null;
- data && data.eachItemGraphicEl(function (el) {
- el && group.remove(el);
- });
- },
- dispose: zrUtil.noop
- });
- var BoxPath = Path.extend({
- type: 'boxplotBoxPath',
- shape: {},
- buildPath: function (ctx, shape) {
- var ends = shape.points;
- var i = 0;
- ctx.moveTo(ends[i][0], ends[i][1]);
- i++;
-
- for (; i < 4; i++) {
- ctx.lineTo(ends[i][0], ends[i][1]);
- }
-
- ctx.closePath();
-
- for (; i < ends.length; i++) {
- ctx.moveTo(ends[i][0], ends[i][1]);
- i++;
- ctx.lineTo(ends[i][0], ends[i][1]);
- }
- }
- });
-
- function createNormalBox(itemLayout, data, dataIndex, constDim, isInit) {
- var ends = itemLayout.ends;
- var el = new BoxPath({
- shape: {
- points: isInit ? transInit(ends, constDim, itemLayout) : ends
- }
- });
- updateNormalBoxData(itemLayout, el, data, dataIndex, isInit);
- return el;
- }
-
- function updateNormalBoxData(itemLayout, el, data, dataIndex, isInit) {
- var seriesModel = data.hostModel;
- var updateMethod = graphic[isInit ? 'initProps' : 'updateProps'];
- updateMethod(el, {
- shape: {
- points: itemLayout.ends
- }
- }, seriesModel, dataIndex);
- var itemModel = data.getItemModel(dataIndex);
- var normalItemStyleModel = itemModel.getModel(NORMAL_ITEM_STYLE_PATH);
- var borderColor = data.getItemVisual(dataIndex, 'color'); // Exclude borderColor.
-
- var itemStyle = normalItemStyleModel.getItemStyle(['borderColor']);
- itemStyle.stroke = borderColor;
- itemStyle.strokeNoScale = true;
- el.useStyle(itemStyle);
- el.z2 = 100;
- var hoverStyle = itemModel.getModel(EMPHASIS_ITEM_STYLE_PATH).getItemStyle();
- graphic.setHoverStyle(el, hoverStyle);
- }
-
- function transInit(points, dim, itemLayout) {
- return zrUtil.map(points, function (point) {
- point = point.slice();
- point[dim] = itemLayout.initBaseline;
- return point;
- });
- }
-
- var _default = BoxplotView;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2661:
- /***/ (function(module, exports) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var borderColorQuery = ['itemStyle', 'borderColor'];
-
- function _default(ecModel, api) {
- var globalColors = ecModel.get('color');
- ecModel.eachRawSeriesByType('boxplot', function (seriesModel) {
- var defaulColor = globalColors[seriesModel.seriesIndex % globalColors.length];
- var data = seriesModel.getData();
- data.setVisual({
- legendSymbol: 'roundRect',
- // Use name 'color' but not 'borderColor' for legend usage and
- // visual coding from other component like dataRange.
- color: seriesModel.get(borderColorQuery) || defaulColor
- }); // Only visible series has each data be visual encoded
-
- if (!ecModel.isSeriesFiltered(seriesModel)) {
- data.each(function (idx) {
- var itemModel = data.getItemModel(idx);
- data.setItemVisual(idx, {
- color: itemModel.get(borderColorQuery, true)
- });
- });
- }
- });
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2662:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var _number = __webpack_require__(985);
-
- var parsePercent = _number.parsePercent;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var each = zrUtil.each;
-
- function _default(ecModel) {
- var groupResult = groupSeriesByAxis(ecModel);
- each(groupResult, function (groupItem) {
- var seriesModels = groupItem.seriesModels;
-
- if (!seriesModels.length) {
- return;
- }
-
- calculateBase(groupItem);
- each(seriesModels, function (seriesModel, idx) {
- layoutSingleSeries(seriesModel, groupItem.boxOffsetList[idx], groupItem.boxWidthList[idx]);
- });
- });
- }
- /**
- * Group series by axis.
- */
-
-
- function groupSeriesByAxis(ecModel) {
- var result = [];
- var axisList = [];
- ecModel.eachSeriesByType('boxplot', function (seriesModel) {
- var baseAxis = seriesModel.getBaseAxis();
- var idx = zrUtil.indexOf(axisList, baseAxis);
-
- if (idx < 0) {
- idx = axisList.length;
- axisList[idx] = baseAxis;
- result[idx] = {
- axis: baseAxis,
- seriesModels: []
- };
- }
-
- result[idx].seriesModels.push(seriesModel);
- });
- return result;
- }
- /**
- * Calculate offset and box width for each series.
- */
-
-
- function calculateBase(groupItem) {
- var extent;
- var baseAxis = groupItem.axis;
- var seriesModels = groupItem.seriesModels;
- var seriesCount = seriesModels.length;
- var boxWidthList = groupItem.boxWidthList = [];
- var boxOffsetList = groupItem.boxOffsetList = [];
- var boundList = [];
- var bandWidth;
-
- if (baseAxis.type === 'category') {
- bandWidth = baseAxis.getBandWidth();
- } else {
- var maxDataCount = 0;
- each(seriesModels, function (seriesModel) {
- maxDataCount = Math.max(maxDataCount, seriesModel.getData().count());
- });
- extent = baseAxis.getExtent(), Math.abs(extent[1] - extent[0]) / maxDataCount;
- }
-
- each(seriesModels, function (seriesModel) {
- var boxWidthBound = seriesModel.get('boxWidth');
-
- if (!zrUtil.isArray(boxWidthBound)) {
- boxWidthBound = [boxWidthBound, boxWidthBound];
- }
-
- boundList.push([parsePercent(boxWidthBound[0], bandWidth) || 0, parsePercent(boxWidthBound[1], bandWidth) || 0]);
- });
- var availableWidth = bandWidth * 0.8 - 2;
- var boxGap = availableWidth / seriesCount * 0.3;
- var boxWidth = (availableWidth - boxGap * (seriesCount - 1)) / seriesCount;
- var base = boxWidth / 2 - availableWidth / 2;
- each(seriesModels, function (seriesModel, idx) {
- boxOffsetList.push(base);
- base += boxGap + boxWidth;
- boxWidthList.push(Math.min(Math.max(boxWidth, boundList[idx][0]), boundList[idx][1]));
- });
- }
- /**
- * Calculate points location for each series.
- */
-
-
- function layoutSingleSeries(seriesModel, offset, boxWidth) {
- var coordSys = seriesModel.coordinateSystem;
- var data = seriesModel.getData();
- var halfWidth = boxWidth / 2;
- var cDimIdx = seriesModel.get('layout') === 'horizontal' ? 0 : 1;
- var vDimIdx = 1 - cDimIdx;
- var coordDims = ['x', 'y'];
- var cDim = data.mapDimension(coordDims[cDimIdx]);
- var vDims = data.mapDimension(coordDims[vDimIdx], true);
-
- if (cDim == null || vDims.length < 5) {
- return;
- }
-
- for (var dataIndex = 0; dataIndex < data.count(); dataIndex++) {
- var axisDimVal = data.get(cDim, dataIndex);
- var median = getPoint(axisDimVal, vDims[2], dataIndex);
- var end1 = getPoint(axisDimVal, vDims[0], dataIndex);
- var end2 = getPoint(axisDimVal, vDims[1], dataIndex);
- var end4 = getPoint(axisDimVal, vDims[3], dataIndex);
- var end5 = getPoint(axisDimVal, vDims[4], dataIndex);
- var ends = [];
- addBodyEnd(ends, end2, 0);
- addBodyEnd(ends, end4, 1);
- ends.push(end1, end2, end5, end4);
- layEndLine(ends, end1);
- layEndLine(ends, end5);
- layEndLine(ends, median);
- data.setItemLayout(dataIndex, {
- initBaseline: median[vDimIdx],
- ends: ends
- });
- }
-
- function getPoint(axisDimVal, dimIdx, dataIndex) {
- var val = data.get(dimIdx, dataIndex);
- var p = [];
- p[cDimIdx] = axisDimVal;
- p[vDimIdx] = val;
- var point;
-
- if (isNaN(axisDimVal) || isNaN(val)) {
- point = [NaN, NaN];
- } else {
- point = coordSys.dataToPoint(p);
- point[cDimIdx] += offset;
- }
-
- return point;
- }
-
- function addBodyEnd(ends, point, start) {
- var point1 = point.slice();
- var point2 = point.slice();
- point1[cDimIdx] += halfWidth;
- point2[cDimIdx] -= halfWidth;
- start ? ends.push(point1, point2) : ends.push(point2, point1);
- }
-
- function layEndLine(ends, endCenter) {
- var from = endCenter.slice();
- var to = endCenter.slice();
- from[cDimIdx] -= halfWidth;
- to[cDimIdx] += halfWidth;
- ends.push(from, to);
- }
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2663:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- __webpack_require__(2664);
-
- __webpack_require__(2665);
-
- var preprocessor = __webpack_require__(2666);
-
- var candlestickVisual = __webpack_require__(2667);
-
- var candlestickLayout = __webpack_require__(2668);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- echarts.registerPreprocessor(preprocessor);
- echarts.registerVisual(candlestickVisual);
- echarts.registerLayout(candlestickLayout);
-
- /***/ }),
-
- /***/ 2664:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var SeriesModel = __webpack_require__(1322);
-
- var _whiskerBoxCommon = __webpack_require__(2312);
-
- var seriesModelMixin = _whiskerBoxCommon.seriesModelMixin;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var CandlestickSeries = SeriesModel.extend({
- type: 'series.candlestick',
- dependencies: ['xAxis', 'yAxis', 'grid'],
-
- /**
- * @readOnly
- */
- defaultValueDimensions: [{
- name: 'open',
- defaultTooltip: true
- }, {
- name: 'close',
- defaultTooltip: true
- }, {
- name: 'lowest',
- defaultTooltip: true
- }, {
- name: 'highest',
- defaultTooltip: true
- }],
-
- /**
- * @type {Array.<string>}
- * @readOnly
- */
- dimensions: null,
-
- /**
- * @override
- */
- defaultOption: {
- zlevel: 0,
- z: 2,
- coordinateSystem: 'cartesian2d',
- legendHoverLink: true,
- hoverAnimation: true,
- // xAxisIndex: 0,
- // yAxisIndex: 0,
- layout: null,
- // 'horizontal' or 'vertical'
- clip: true,
- itemStyle: {
- color: '#c23531',
- // 阳线 positive
- color0: '#314656',
- // 阴线 negative '#c23531', '#314656'
- borderWidth: 1,
- // FIXME
- // ec2中使用的是lineStyle.color 和 lineStyle.color0
- borderColor: '#c23531',
- borderColor0: '#314656'
- },
- emphasis: {
- itemStyle: {
- borderWidth: 2
- }
- },
- barMaxWidth: null,
- barMinWidth: null,
- barWidth: null,
- large: true,
- largeThreshold: 600,
- progressive: 3e3,
- progressiveThreshold: 1e4,
- progressiveChunkMode: 'mod',
- animationUpdate: false,
- animationEasing: 'linear',
- animationDuration: 300
- },
-
- /**
- * Get dimension for shadow in dataZoom
- * @return {string} dimension name
- */
- getShadowDim: function () {
- return 'open';
- },
- brushSelector: function (dataIndex, data, selectors) {
- var itemLayout = data.getItemLayout(dataIndex);
- return itemLayout && selectors.rect(itemLayout.brushRect);
- }
- });
- zrUtil.mixin(CandlestickSeries, seriesModelMixin, true);
- var _default = CandlestickSeries;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2665:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var ChartView = __webpack_require__(1439);
-
- var graphic = __webpack_require__(906);
-
- var Path = __webpack_require__(1280);
-
- var _createClipPathFromCoordSys = __webpack_require__(1662);
-
- var createClipPath = _createClipPathFromCoordSys.createClipPath;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var NORMAL_ITEM_STYLE_PATH = ['itemStyle'];
- var EMPHASIS_ITEM_STYLE_PATH = ['emphasis', 'itemStyle'];
- var SKIP_PROPS = ['color', 'color0', 'borderColor', 'borderColor0'];
- var CandlestickView = ChartView.extend({
- type: 'candlestick',
- render: function (seriesModel, ecModel, api) {
- // If there is clipPath created in large mode. Remove it.
- this.group.removeClipPath();
-
- this._updateDrawMode(seriesModel);
-
- this._isLargeDraw ? this._renderLarge(seriesModel) : this._renderNormal(seriesModel);
- },
- incrementalPrepareRender: function (seriesModel, ecModel, api) {
- this._clear();
-
- this._updateDrawMode(seriesModel);
- },
- incrementalRender: function (params, seriesModel, ecModel, api) {
- this._isLargeDraw ? this._incrementalRenderLarge(params, seriesModel) : this._incrementalRenderNormal(params, seriesModel);
- },
- _updateDrawMode: function (seriesModel) {
- var isLargeDraw = seriesModel.pipelineContext.large;
-
- if (this._isLargeDraw == null || isLargeDraw ^ this._isLargeDraw) {
- this._isLargeDraw = isLargeDraw;
-
- this._clear();
- }
- },
- _renderNormal: function (seriesModel) {
- var data = seriesModel.getData();
- var oldData = this._data;
- var group = this.group;
- var isSimpleBox = data.getLayout('isSimpleBox');
- var needsClip = seriesModel.get('clip', true);
- var coord = seriesModel.coordinateSystem;
- var clipArea = coord.getArea && coord.getArea(); // There is no old data only when first rendering or switching from
- // stream mode to normal mode, where previous elements should be removed.
-
- if (!this._data) {
- group.removeAll();
- }
-
- data.diff(oldData).add(function (newIdx) {
- if (data.hasValue(newIdx)) {
- var el;
- var itemLayout = data.getItemLayout(newIdx);
-
- if (needsClip && isNormalBoxClipped(clipArea, itemLayout)) {
- return;
- }
-
- el = createNormalBox(itemLayout, newIdx, true);
- graphic.initProps(el, {
- shape: {
- points: itemLayout.ends
- }
- }, seriesModel, newIdx);
- setBoxCommon(el, data, newIdx, isSimpleBox);
- group.add(el);
- data.setItemGraphicEl(newIdx, el);
- }
- }).update(function (newIdx, oldIdx) {
- var el = oldData.getItemGraphicEl(oldIdx); // Empty data
-
- if (!data.hasValue(newIdx)) {
- group.remove(el);
- return;
- }
-
- var itemLayout = data.getItemLayout(newIdx);
-
- if (needsClip && isNormalBoxClipped(clipArea, itemLayout)) {
- group.remove(el);
- return;
- }
-
- if (!el) {
- el = createNormalBox(itemLayout, newIdx);
- } else {
- graphic.updateProps(el, {
- shape: {
- points: itemLayout.ends
- }
- }, seriesModel, newIdx);
- }
-
- setBoxCommon(el, data, newIdx, isSimpleBox);
- group.add(el);
- data.setItemGraphicEl(newIdx, el);
- }).remove(function (oldIdx) {
- var el = oldData.getItemGraphicEl(oldIdx);
- el && group.remove(el);
- }).execute();
- this._data = data;
- },
- _renderLarge: function (seriesModel) {
- this._clear();
-
- createLarge(seriesModel, this.group);
- var clipPath = seriesModel.get('clip', true) ? createClipPath(seriesModel.coordinateSystem, false, seriesModel) : null;
-
- if (clipPath) {
- this.group.setClipPath(clipPath);
- } else {
- this.group.removeClipPath();
- }
- },
- _incrementalRenderNormal: function (params, seriesModel) {
- var data = seriesModel.getData();
- var isSimpleBox = data.getLayout('isSimpleBox');
- var dataIndex;
-
- while ((dataIndex = params.next()) != null) {
- var el;
- var itemLayout = data.getItemLayout(dataIndex);
- el = createNormalBox(itemLayout, dataIndex);
- setBoxCommon(el, data, dataIndex, isSimpleBox);
- el.incremental = true;
- this.group.add(el);
- }
- },
- _incrementalRenderLarge: function (params, seriesModel) {
- createLarge(seriesModel, this.group, true);
- },
- remove: function (ecModel) {
- this._clear();
- },
- _clear: function () {
- this.group.removeAll();
- this._data = null;
- },
- dispose: zrUtil.noop
- });
- var NormalBoxPath = Path.extend({
- type: 'normalCandlestickBox',
- shape: {},
- buildPath: function (ctx, shape) {
- var ends = shape.points;
-
- if (this.__simpleBox) {
- ctx.moveTo(ends[4][0], ends[4][1]);
- ctx.lineTo(ends[6][0], ends[6][1]);
- } else {
- ctx.moveTo(ends[0][0], ends[0][1]);
- ctx.lineTo(ends[1][0], ends[1][1]);
- ctx.lineTo(ends[2][0], ends[2][1]);
- ctx.lineTo(ends[3][0], ends[3][1]);
- ctx.closePath();
- ctx.moveTo(ends[4][0], ends[4][1]);
- ctx.lineTo(ends[5][0], ends[5][1]);
- ctx.moveTo(ends[6][0], ends[6][1]);
- ctx.lineTo(ends[7][0], ends[7][1]);
- }
- }
- });
-
- function createNormalBox(itemLayout, dataIndex, isInit) {
- var ends = itemLayout.ends;
- return new NormalBoxPath({
- shape: {
- points: isInit ? transInit(ends, itemLayout) : ends
- },
- z2: 100
- });
- }
-
- function isNormalBoxClipped(clipArea, itemLayout) {
- var clipped = true;
-
- for (var i = 0; i < itemLayout.ends.length; i++) {
- // If any point are in the region.
- if (clipArea.contain(itemLayout.ends[i][0], itemLayout.ends[i][1])) {
- clipped = false;
- break;
- }
- }
-
- return clipped;
- }
-
- function setBoxCommon(el, data, dataIndex, isSimpleBox) {
- var itemModel = data.getItemModel(dataIndex);
- var normalItemStyleModel = itemModel.getModel(NORMAL_ITEM_STYLE_PATH);
- var color = data.getItemVisual(dataIndex, 'color');
- var borderColor = data.getItemVisual(dataIndex, 'borderColor') || color; // Color must be excluded.
- // Because symbol provide setColor individually to set fill and stroke
-
- var itemStyle = normalItemStyleModel.getItemStyle(SKIP_PROPS);
- el.useStyle(itemStyle);
- el.style.strokeNoScale = true;
- el.style.fill = color;
- el.style.stroke = borderColor;
- el.__simpleBox = isSimpleBox;
- var hoverStyle = itemModel.getModel(EMPHASIS_ITEM_STYLE_PATH).getItemStyle();
- graphic.setHoverStyle(el, hoverStyle);
- }
-
- function transInit(points, itemLayout) {
- return zrUtil.map(points, function (point) {
- point = point.slice();
- point[1] = itemLayout.initBaseline;
- return point;
- });
- }
-
- var LargeBoxPath = Path.extend({
- type: 'largeCandlestickBox',
- shape: {},
- buildPath: function (ctx, shape) {
- // Drawing lines is more efficient than drawing
- // a whole line or drawing rects.
- var points = shape.points;
-
- for (var i = 0; i < points.length;) {
- if (this.__sign === points[i++]) {
- var x = points[i++];
- ctx.moveTo(x, points[i++]);
- ctx.lineTo(x, points[i++]);
- } else {
- i += 3;
- }
- }
- }
- });
-
- function createLarge(seriesModel, group, incremental) {
- var data = seriesModel.getData();
- var largePoints = data.getLayout('largePoints');
- var elP = new LargeBoxPath({
- shape: {
- points: largePoints
- },
- __sign: 1
- });
- group.add(elP);
- var elN = new LargeBoxPath({
- shape: {
- points: largePoints
- },
- __sign: -1
- });
- group.add(elN);
- setLargeStyle(1, elP, seriesModel, data);
- setLargeStyle(-1, elN, seriesModel, data);
-
- if (incremental) {
- elP.incremental = true;
- elN.incremental = true;
- }
- }
-
- function setLargeStyle(sign, el, seriesModel, data) {
- var suffix = sign > 0 ? 'P' : 'N';
- var borderColor = data.getVisual('borderColor' + suffix) || data.getVisual('color' + suffix); // Color must be excluded.
- // Because symbol provide setColor individually to set fill and stroke
-
- var itemStyle = seriesModel.getModel(NORMAL_ITEM_STYLE_PATH).getItemStyle(SKIP_PROPS);
- el.useStyle(itemStyle);
- el.style.fill = null;
- el.style.stroke = borderColor; // No different
- // el.style.lineWidth = .5;
- }
-
- var _default = CandlestickView;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2666:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function _default(option) {
- if (!option || !zrUtil.isArray(option.series)) {
- return;
- } // Translate 'k' to 'candlestick'.
-
-
- zrUtil.each(option.series, function (seriesItem) {
- if (zrUtil.isObject(seriesItem) && seriesItem.type === 'k') {
- seriesItem.type = 'candlestick';
- }
- });
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2667:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var createRenderPlanner = __webpack_require__(1601);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var positiveBorderColorQuery = ['itemStyle', 'borderColor'];
- var negativeBorderColorQuery = ['itemStyle', 'borderColor0'];
- var positiveColorQuery = ['itemStyle', 'color'];
- var negativeColorQuery = ['itemStyle', 'color0'];
- var _default = {
- seriesType: 'candlestick',
- plan: createRenderPlanner(),
- // For legend.
- performRawSeries: true,
- reset: function (seriesModel, ecModel) {
- var data = seriesModel.getData();
- var isLargeRender = seriesModel.pipelineContext.large;
- data.setVisual({
- legendSymbol: 'roundRect',
- colorP: getColor(1, seriesModel),
- colorN: getColor(-1, seriesModel),
- borderColorP: getBorderColor(1, seriesModel),
- borderColorN: getBorderColor(-1, seriesModel)
- }); // Only visible series has each data be visual encoded
-
- if (ecModel.isSeriesFiltered(seriesModel)) {
- return;
- }
-
- return !isLargeRender && {
- progress: progress
- };
-
- function progress(params, data) {
- var dataIndex;
-
- while ((dataIndex = params.next()) != null) {
- var itemModel = data.getItemModel(dataIndex);
- var sign = data.getItemLayout(dataIndex).sign;
- data.setItemVisual(dataIndex, {
- color: getColor(sign, itemModel),
- borderColor: getBorderColor(sign, itemModel)
- });
- }
- }
-
- function getColor(sign, model) {
- return model.get(sign > 0 ? positiveColorQuery : negativeColorQuery);
- }
-
- function getBorderColor(sign, model) {
- return model.get(sign > 0 ? positiveBorderColorQuery : negativeBorderColorQuery);
- }
- }
- };
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2668:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _graphic = __webpack_require__(906);
-
- var subPixelOptimize = _graphic.subPixelOptimize;
-
- var createRenderPlanner = __webpack_require__(1601);
-
- var _number = __webpack_require__(985);
-
- var parsePercent = _number.parsePercent;
-
- var _util = __webpack_require__(864);
-
- var retrieve2 = _util.retrieve2;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /* global Float32Array */
- var LargeArr = typeof Float32Array !== 'undefined' ? Float32Array : Array;
- var _default = {
- seriesType: 'candlestick',
- plan: createRenderPlanner(),
- reset: function (seriesModel) {
- var coordSys = seriesModel.coordinateSystem;
- var data = seriesModel.getData();
- var candleWidth = calculateCandleWidth(seriesModel, data);
- var cDimIdx = 0;
- var vDimIdx = 1;
- var coordDims = ['x', 'y'];
- var cDim = data.mapDimension(coordDims[cDimIdx]);
- var vDims = data.mapDimension(coordDims[vDimIdx], true);
- var openDim = vDims[0];
- var closeDim = vDims[1];
- var lowestDim = vDims[2];
- var highestDim = vDims[3];
- data.setLayout({
- candleWidth: candleWidth,
- // The value is experimented visually.
- isSimpleBox: candleWidth <= 1.3
- });
-
- if (cDim == null || vDims.length < 4) {
- return;
- }
-
- return {
- progress: seriesModel.pipelineContext.large ? largeProgress : normalProgress
- };
-
- function normalProgress(params, data) {
- var dataIndex;
-
- while ((dataIndex = params.next()) != null) {
- var axisDimVal = data.get(cDim, dataIndex);
- var openVal = data.get(openDim, dataIndex);
- var closeVal = data.get(closeDim, dataIndex);
- var lowestVal = data.get(lowestDim, dataIndex);
- var highestVal = data.get(highestDim, dataIndex);
- var ocLow = Math.min(openVal, closeVal);
- var ocHigh = Math.max(openVal, closeVal);
- var ocLowPoint = getPoint(ocLow, axisDimVal);
- var ocHighPoint = getPoint(ocHigh, axisDimVal);
- var lowestPoint = getPoint(lowestVal, axisDimVal);
- var highestPoint = getPoint(highestVal, axisDimVal);
- var ends = [];
- addBodyEnd(ends, ocHighPoint, 0);
- addBodyEnd(ends, ocLowPoint, 1);
- ends.push(subPixelOptimizePoint(highestPoint), subPixelOptimizePoint(ocHighPoint), subPixelOptimizePoint(lowestPoint), subPixelOptimizePoint(ocLowPoint));
- data.setItemLayout(dataIndex, {
- sign: getSign(data, dataIndex, openVal, closeVal, closeDim),
- initBaseline: openVal > closeVal ? ocHighPoint[vDimIdx] : ocLowPoint[vDimIdx],
- // open point.
- ends: ends,
- brushRect: makeBrushRect(lowestVal, highestVal, axisDimVal)
- });
- }
-
- function getPoint(val, axisDimVal) {
- var p = [];
- p[cDimIdx] = axisDimVal;
- p[vDimIdx] = val;
- return isNaN(axisDimVal) || isNaN(val) ? [NaN, NaN] : coordSys.dataToPoint(p);
- }
-
- function addBodyEnd(ends, point, start) {
- var point1 = point.slice();
- var point2 = point.slice();
- point1[cDimIdx] = subPixelOptimize(point1[cDimIdx] + candleWidth / 2, 1, false);
- point2[cDimIdx] = subPixelOptimize(point2[cDimIdx] - candleWidth / 2, 1, true);
- start ? ends.push(point1, point2) : ends.push(point2, point1);
- }
-
- function makeBrushRect(lowestVal, highestVal, axisDimVal) {
- var pmin = getPoint(lowestVal, axisDimVal);
- var pmax = getPoint(highestVal, axisDimVal);
- pmin[cDimIdx] -= candleWidth / 2;
- pmax[cDimIdx] -= candleWidth / 2;
- return {
- x: pmin[0],
- y: pmin[1],
- width: vDimIdx ? candleWidth : pmax[0] - pmin[0],
- height: vDimIdx ? pmax[1] - pmin[1] : candleWidth
- };
- }
-
- function subPixelOptimizePoint(point) {
- point[cDimIdx] = subPixelOptimize(point[cDimIdx], 1);
- return point;
- }
- }
-
- function largeProgress(params, data) {
- // Structure: [sign, x, yhigh, ylow, sign, x, yhigh, ylow, ...]
- var points = new LargeArr(params.count * 4);
- var offset = 0;
- var point;
- var tmpIn = [];
- var tmpOut = [];
- var dataIndex;
-
- while ((dataIndex = params.next()) != null) {
- var axisDimVal = data.get(cDim, dataIndex);
- var openVal = data.get(openDim, dataIndex);
- var closeVal = data.get(closeDim, dataIndex);
- var lowestVal = data.get(lowestDim, dataIndex);
- var highestVal = data.get(highestDim, dataIndex);
-
- if (isNaN(axisDimVal) || isNaN(lowestVal) || isNaN(highestVal)) {
- points[offset++] = NaN;
- offset += 3;
- continue;
- }
-
- points[offset++] = getSign(data, dataIndex, openVal, closeVal, closeDim);
- tmpIn[cDimIdx] = axisDimVal;
- tmpIn[vDimIdx] = lowestVal;
- point = coordSys.dataToPoint(tmpIn, null, tmpOut);
- points[offset++] = point ? point[0] : NaN;
- points[offset++] = point ? point[1] : NaN;
- tmpIn[vDimIdx] = highestVal;
- point = coordSys.dataToPoint(tmpIn, null, tmpOut);
- points[offset++] = point ? point[1] : NaN;
- }
-
- data.setLayout('largePoints', points);
- }
- }
- };
-
- function getSign(data, dataIndex, openVal, closeVal, closeDim) {
- var sign;
-
- if (openVal > closeVal) {
- sign = -1;
- } else if (openVal < closeVal) {
- sign = 1;
- } else {
- sign = dataIndex > 0 // If close === open, compare with close of last record
- ? data.get(closeDim, dataIndex - 1) <= closeVal ? 1 : -1 : // No record of previous, set to be positive
- 1;
- }
-
- return sign;
- }
-
- function calculateCandleWidth(seriesModel, data) {
- var baseAxis = seriesModel.getBaseAxis();
- var extent;
- var bandWidth = baseAxis.type === 'category' ? baseAxis.getBandWidth() : (extent = baseAxis.getExtent(), Math.abs(extent[1] - extent[0]) / data.count());
- var barMaxWidth = parsePercent(retrieve2(seriesModel.get('barMaxWidth'), bandWidth), bandWidth);
- var barMinWidth = parsePercent(retrieve2(seriesModel.get('barMinWidth'), 1), bandWidth);
- var barWidth = seriesModel.get('barWidth');
- return barWidth != null ? parsePercent(barWidth, bandWidth) // Put max outer to ensure bar visible in spite of overlap.
- : Math.max(Math.min(bandWidth / 2, barMaxWidth), barMinWidth);
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2669:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- __webpack_require__(2670);
-
- __webpack_require__(2671);
-
- var visualSymbol = __webpack_require__(1520);
-
- var layoutPoints = __webpack_require__(1663);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- echarts.registerVisual(visualSymbol('effectScatter', 'circle'));
- echarts.registerLayout(layoutPoints('effectScatter'));
-
- /***/ }),
-
- /***/ 2670:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var createListFromArray = __webpack_require__(1458);
-
- var SeriesModel = __webpack_require__(1322);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = SeriesModel.extend({
- type: 'series.effectScatter',
- dependencies: ['grid', 'polar'],
- getInitialData: function (option, ecModel) {
- return createListFromArray(this.getSource(), this, {
- useEncodeDefaulter: true
- });
- },
- brushSelector: 'point',
- defaultOption: {
- coordinateSystem: 'cartesian2d',
- zlevel: 0,
- z: 2,
- legendHoverLink: true,
- effectType: 'ripple',
- progressive: 0,
- // When to show the effect, option: 'render'|'emphasis'
- showEffectOn: 'render',
- // Ripple effect config
- rippleEffect: {
- period: 4,
- // Scale of ripple
- scale: 2.5,
- // Brush type can be fill or stroke
- brushType: 'fill'
- },
- // Cartesian coordinate system
- // xAxisIndex: 0,
- // yAxisIndex: 0,
- // Polar coordinate system
- // polarIndex: 0,
- // Geo coordinate system
- // geoIndex: 0,
- // symbol: null, // 图形类型
- symbolSize: 10 // 图形大小,半宽(半径)参数,当图形为方向或菱形则总宽度为symbolSize * 2
- // symbolRotate: null, // 图形旋转控制
- // large: false,
- // Available when large is true
- // largeThreshold: 2000,
- // itemStyle: {
- // opacity: 1
- // }
-
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2671:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var SymbolDraw = __webpack_require__(1661);
-
- var EffectSymbol = __webpack_require__(2672);
-
- var matrix = __webpack_require__(1350);
-
- var pointsLayout = __webpack_require__(1663);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = echarts.extendChartView({
- type: 'effectScatter',
- init: function () {
- this._symbolDraw = new SymbolDraw(EffectSymbol);
- },
- render: function (seriesModel, ecModel, api) {
- var data = seriesModel.getData();
- var effectSymbolDraw = this._symbolDraw;
- effectSymbolDraw.updateData(data);
- this.group.add(effectSymbolDraw.group);
- },
- updateTransform: function (seriesModel, ecModel, api) {
- var data = seriesModel.getData();
- this.group.dirty();
- var res = pointsLayout().reset(seriesModel);
-
- if (res.progress) {
- res.progress({
- start: 0,
- end: data.count()
- }, data);
- }
-
- this._symbolDraw.updateLayout(data);
- },
- _updateGroupTransform: function (seriesModel) {
- var coordSys = seriesModel.coordinateSystem;
-
- if (coordSys && coordSys.getRoamTransform) {
- this.group.transform = matrix.clone(coordSys.getRoamTransform());
- this.group.decomposeTransform();
- }
- },
- remove: function (ecModel, api) {
- this._symbolDraw && this._symbolDraw.remove(api);
- },
- dispose: function () {}
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2672:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var _symbol = __webpack_require__(1404);
-
- var createSymbol = _symbol.createSymbol;
-
- var _graphic = __webpack_require__(906);
-
- var Group = _graphic.Group;
-
- var _number = __webpack_require__(985);
-
- var parsePercent = _number.parsePercent;
-
- var SymbolClz = __webpack_require__(1790);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Symbol with ripple effect
- * @module echarts/chart/helper/EffectSymbol
- */
- var EFFECT_RIPPLE_NUMBER = 3;
-
- function normalizeSymbolSize(symbolSize) {
- if (!zrUtil.isArray(symbolSize)) {
- symbolSize = [+symbolSize, +symbolSize];
- }
-
- return symbolSize;
- }
-
- function updateRipplePath(rippleGroup, effectCfg) {
- var color = effectCfg.rippleEffectColor || effectCfg.color;
- rippleGroup.eachChild(function (ripplePath) {
- ripplePath.attr({
- z: effectCfg.z,
- zlevel: effectCfg.zlevel,
- style: {
- stroke: effectCfg.brushType === 'stroke' ? color : null,
- fill: effectCfg.brushType === 'fill' ? color : null
- }
- });
- });
- }
- /**
- * @constructor
- * @param {module:echarts/data/List} data
- * @param {number} idx
- * @extends {module:zrender/graphic/Group}
- */
-
-
- function EffectSymbol(data, idx) {
- Group.call(this);
- var symbol = new SymbolClz(data, idx);
- var rippleGroup = new Group();
- this.add(symbol);
- this.add(rippleGroup);
-
- rippleGroup.beforeUpdate = function () {
- this.attr(symbol.getScale());
- };
-
- this.updateData(data, idx);
- }
-
- var effectSymbolProto = EffectSymbol.prototype;
-
- effectSymbolProto.stopEffectAnimation = function () {
- this.childAt(1).removeAll();
- };
-
- effectSymbolProto.startEffectAnimation = function (effectCfg) {
- var symbolType = effectCfg.symbolType;
- var color = effectCfg.color;
- var rippleGroup = this.childAt(1);
-
- for (var i = 0; i < EFFECT_RIPPLE_NUMBER; i++) {
- // If width/height are set too small (e.g., set to 1) on ios10
- // and macOS Sierra, a circle stroke become a rect, no matter what
- // the scale is set. So we set width/height as 2. See #4136.
- var ripplePath = createSymbol(symbolType, -1, -1, 2, 2, color);
- ripplePath.attr({
- style: {
- strokeNoScale: true
- },
- z2: 99,
- silent: true,
- scale: [0.5, 0.5]
- });
- var delay = -i / EFFECT_RIPPLE_NUMBER * effectCfg.period + effectCfg.effectOffset; // TODO Configurable effectCfg.period
-
- ripplePath.animate('', true).when(effectCfg.period, {
- scale: [effectCfg.rippleScale / 2, effectCfg.rippleScale / 2]
- }).delay(delay).start();
- ripplePath.animateStyle(true).when(effectCfg.period, {
- opacity: 0
- }).delay(delay).start();
- rippleGroup.add(ripplePath);
- }
-
- updateRipplePath(rippleGroup, effectCfg);
- };
- /**
- * Update effect symbol
- */
-
-
- effectSymbolProto.updateEffectAnimation = function (effectCfg) {
- var oldEffectCfg = this._effectCfg;
- var rippleGroup = this.childAt(1); // Must reinitialize effect if following configuration changed
-
- var DIFFICULT_PROPS = ['symbolType', 'period', 'rippleScale'];
-
- for (var i = 0; i < DIFFICULT_PROPS.length; i++) {
- var propName = DIFFICULT_PROPS[i];
-
- if (oldEffectCfg[propName] !== effectCfg[propName]) {
- this.stopEffectAnimation();
- this.startEffectAnimation(effectCfg);
- return;
- }
- }
-
- updateRipplePath(rippleGroup, effectCfg);
- };
- /**
- * Highlight symbol
- */
-
-
- effectSymbolProto.highlight = function () {
- this.trigger('emphasis');
- };
- /**
- * Downplay symbol
- */
-
-
- effectSymbolProto.downplay = function () {
- this.trigger('normal');
- };
- /**
- * Update symbol properties
- * @param {module:echarts/data/List} data
- * @param {number} idx
- */
-
-
- effectSymbolProto.updateData = function (data, idx) {
- var seriesModel = data.hostModel;
- this.childAt(0).updateData(data, idx);
- var rippleGroup = this.childAt(1);
- var itemModel = data.getItemModel(idx);
- var symbolType = data.getItemVisual(idx, 'symbol');
- var symbolSize = normalizeSymbolSize(data.getItemVisual(idx, 'symbolSize'));
- var color = data.getItemVisual(idx, 'color');
- rippleGroup.attr('scale', symbolSize);
- rippleGroup.traverse(function (ripplePath) {
- ripplePath.attr({
- fill: color
- });
- });
- var symbolOffset = itemModel.getShallow('symbolOffset');
-
- if (symbolOffset) {
- var pos = rippleGroup.position;
- pos[0] = parsePercent(symbolOffset[0], symbolSize[0]);
- pos[1] = parsePercent(symbolOffset[1], symbolSize[1]);
- }
-
- rippleGroup.rotation = (itemModel.getShallow('symbolRotate') || 0) * Math.PI / 180 || 0;
- var effectCfg = {};
- effectCfg.showEffectOn = seriesModel.get('showEffectOn');
- effectCfg.rippleScale = itemModel.get('rippleEffect.scale');
- effectCfg.brushType = itemModel.get('rippleEffect.brushType');
- effectCfg.period = itemModel.get('rippleEffect.period') * 1000;
- effectCfg.effectOffset = idx / data.count();
- effectCfg.z = itemModel.getShallow('z') || 0;
- effectCfg.zlevel = itemModel.getShallow('zlevel') || 0;
- effectCfg.symbolType = symbolType;
- effectCfg.color = color;
- effectCfg.rippleEffectColor = itemModel.get('rippleEffect.color');
- this.off('mouseover').off('mouseout').off('emphasis').off('normal');
-
- if (effectCfg.showEffectOn === 'render') {
- this._effectCfg ? this.updateEffectAnimation(effectCfg) : this.startEffectAnimation(effectCfg);
- this._effectCfg = effectCfg;
- } else {
- // Not keep old effect config
- this._effectCfg = null;
- this.stopEffectAnimation();
- var symbol = this.childAt(0);
-
- var onEmphasis = function () {
- symbol.highlight();
-
- if (effectCfg.showEffectOn !== 'render') {
- this.startEffectAnimation(effectCfg);
- }
- };
-
- var onNormal = function () {
- symbol.downplay();
-
- if (effectCfg.showEffectOn !== 'render') {
- this.stopEffectAnimation();
- }
- };
-
- this.on('mouseover', onEmphasis, this).on('mouseout', onNormal, this).on('emphasis', onEmphasis, this).on('normal', onNormal, this);
- }
-
- this._effectCfg = effectCfg;
- };
-
- effectSymbolProto.fadeOut = function (cb) {
- this.off('mouseover').off('mouseout').off('emphasis').off('normal');
- cb && cb();
- };
-
- zrUtil.inherits(EffectSymbol, Group);
- var _default = EffectSymbol;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2673:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- __webpack_require__(2674);
-
- __webpack_require__(2675);
-
- var linesLayout = __webpack_require__(2315);
-
- var linesVisual = __webpack_require__(2678);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- echarts.registerLayout(linesLayout);
- echarts.registerVisual(linesVisual);
-
- /***/ }),
-
- /***/ 2674:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var SeriesModel = __webpack_require__(1322);
-
- var List = __webpack_require__(1403);
-
- var _util = __webpack_require__(864);
-
- var concatArray = _util.concatArray;
- var mergeAll = _util.mergeAll;
- var map = _util.map;
-
- var _format = __webpack_require__(1186);
-
- var encodeHTML = _format.encodeHTML;
-
- var CoordinateSystem = __webpack_require__(1414);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /* global Uint32Array, Float64Array, Float32Array */
- var Uint32Arr = typeof Uint32Array === 'undefined' ? Array : Uint32Array;
- var Float64Arr = typeof Float64Array === 'undefined' ? Array : Float64Array;
-
- function compatEc2(seriesOpt) {
- var data = seriesOpt.data;
-
- if (data && data[0] && data[0][0] && data[0][0].coord) {
- seriesOpt.data = map(data, function (itemOpt) {
- var coords = [itemOpt[0].coord, itemOpt[1].coord];
- var target = {
- coords: coords
- };
-
- if (itemOpt[0].name) {
- target.fromName = itemOpt[0].name;
- }
-
- if (itemOpt[1].name) {
- target.toName = itemOpt[1].name;
- }
-
- return mergeAll([target, itemOpt[0], itemOpt[1]]);
- });
- }
- }
-
- var LinesSeries = SeriesModel.extend({
- type: 'series.lines',
- dependencies: ['grid', 'polar'],
- visualColorAccessPath: 'lineStyle.color',
- init: function (option) {
- // The input data may be null/undefined.
- option.data = option.data || []; // Not using preprocessor because mergeOption may not have series.type
-
- compatEc2(option);
-
- var result = this._processFlatCoordsArray(option.data);
-
- this._flatCoords = result.flatCoords;
- this._flatCoordsOffset = result.flatCoordsOffset;
-
- if (result.flatCoords) {
- option.data = new Float32Array(result.count);
- }
-
- LinesSeries.superApply(this, 'init', arguments);
- },
- mergeOption: function (option) {
- // The input data may be null/undefined.
- option.data = option.data || [];
- compatEc2(option);
-
- if (option.data) {
- // Only update when have option data to merge.
- var result = this._processFlatCoordsArray(option.data);
-
- this._flatCoords = result.flatCoords;
- this._flatCoordsOffset = result.flatCoordsOffset;
-
- if (result.flatCoords) {
- option.data = new Float32Array(result.count);
- }
- }
-
- LinesSeries.superApply(this, 'mergeOption', arguments);
- },
- appendData: function (params) {
- var result = this._processFlatCoordsArray(params.data);
-
- if (result.flatCoords) {
- if (!this._flatCoords) {
- this._flatCoords = result.flatCoords;
- this._flatCoordsOffset = result.flatCoordsOffset;
- } else {
- this._flatCoords = concatArray(this._flatCoords, result.flatCoords);
- this._flatCoordsOffset = concatArray(this._flatCoordsOffset, result.flatCoordsOffset);
- }
-
- params.data = new Float32Array(result.count);
- }
-
- this.getRawData().appendData(params.data);
- },
- _getCoordsFromItemModel: function (idx) {
- var itemModel = this.getData().getItemModel(idx);
- var coords = itemModel.option instanceof Array ? itemModel.option : itemModel.getShallow('coords');
- return coords;
- },
- getLineCoordsCount: function (idx) {
- if (this._flatCoordsOffset) {
- return this._flatCoordsOffset[idx * 2 + 1];
- } else {
- return this._getCoordsFromItemModel(idx).length;
- }
- },
- getLineCoords: function (idx, out) {
- if (this._flatCoordsOffset) {
- var offset = this._flatCoordsOffset[idx * 2];
- var len = this._flatCoordsOffset[idx * 2 + 1];
-
- for (var i = 0; i < len; i++) {
- out[i] = out[i] || [];
- out[i][0] = this._flatCoords[offset + i * 2];
- out[i][1] = this._flatCoords[offset + i * 2 + 1];
- }
-
- return len;
- } else {
- var coords = this._getCoordsFromItemModel(idx);
-
- for (var i = 0; i < coords.length; i++) {
- out[i] = out[i] || [];
- out[i][0] = coords[i][0];
- out[i][1] = coords[i][1];
- }
-
- return coords.length;
- }
- },
- _processFlatCoordsArray: function (data) {
- var startOffset = 0;
-
- if (this._flatCoords) {
- startOffset = this._flatCoords.length;
- } // Stored as a typed array. In format
- // Points Count(2) | x | y | x | y | Points Count(3) | x | y | x | y | x | y |
-
-
- if (typeof data[0] === 'number') {
- var len = data.length; // Store offset and len of each segment
-
- var coordsOffsetAndLenStorage = new Uint32Arr(len);
- var coordsStorage = new Float64Arr(len);
- var coordsCursor = 0;
- var offsetCursor = 0;
- var dataCount = 0;
-
- for (var i = 0; i < len;) {
- dataCount++;
- var count = data[i++]; // Offset
-
- coordsOffsetAndLenStorage[offsetCursor++] = coordsCursor + startOffset; // Len
-
- coordsOffsetAndLenStorage[offsetCursor++] = count;
-
- for (var k = 0; k < count; k++) {
- var x = data[i++];
- var y = data[i++];
- coordsStorage[coordsCursor++] = x;
- coordsStorage[coordsCursor++] = y;
-
- if (i > len) {}
- }
- }
-
- return {
- flatCoordsOffset: new Uint32Array(coordsOffsetAndLenStorage.buffer, 0, offsetCursor),
- flatCoords: coordsStorage,
- count: dataCount
- };
- }
-
- return {
- flatCoordsOffset: null,
- flatCoords: null,
- count: data.length
- };
- },
- getInitialData: function (option, ecModel) {
- var lineData = new List(['value'], this);
- lineData.hasItemOption = false;
- lineData.initData(option.data, [], function (dataItem, dimName, dataIndex, dimIndex) {
- // dataItem is simply coords
- if (dataItem instanceof Array) {
- return NaN;
- } else {
- lineData.hasItemOption = true;
- var value = dataItem.value;
-
- if (value != null) {
- return value instanceof Array ? value[dimIndex] : value;
- }
- }
- });
- return lineData;
- },
- formatTooltip: function (dataIndex) {
- var data = this.getData();
- var itemModel = data.getItemModel(dataIndex);
- var name = itemModel.get('name');
-
- if (name) {
- return name;
- }
-
- var fromName = itemModel.get('fromName');
- var toName = itemModel.get('toName');
- var html = [];
- fromName != null && html.push(fromName);
- toName != null && html.push(toName);
- return encodeHTML(html.join(' > '));
- },
- preventIncremental: function () {
- return !!this.get('effect.show');
- },
- getProgressive: function () {
- var progressive = this.option.progressive;
-
- if (progressive == null) {
- return this.option.large ? 1e4 : this.get('progressive');
- }
-
- return progressive;
- },
- getProgressiveThreshold: function () {
- var progressiveThreshold = this.option.progressiveThreshold;
-
- if (progressiveThreshold == null) {
- return this.option.large ? 2e4 : this.get('progressiveThreshold');
- }
-
- return progressiveThreshold;
- },
- defaultOption: {
- coordinateSystem: 'geo',
- zlevel: 0,
- z: 2,
- legendHoverLink: true,
- hoverAnimation: true,
- // Cartesian coordinate system
- xAxisIndex: 0,
- yAxisIndex: 0,
- symbol: ['none', 'none'],
- symbolSize: [10, 10],
- // Geo coordinate system
- geoIndex: 0,
- effect: {
- show: false,
- period: 4,
- // Animation delay. support callback
- // delay: 0,
- // If move with constant speed px/sec
- // period will be ignored if this property is > 0,
- constantSpeed: 0,
- symbol: 'circle',
- symbolSize: 3,
- loop: true,
- // Length of trail, 0 - 1
- trailLength: 0.2 // Same with lineStyle.color
- // color
-
- },
- large: false,
- // Available when large is true
- largeThreshold: 2000,
- // If lines are polyline
- // polyline not support curveness, label, animation
- polyline: false,
- // If clip the overflow.
- // Available when coordinateSystem is cartesian or polar.
- clip: true,
- label: {
- show: false,
- position: 'end' // distance: 5,
- // formatter: 标签文本格式器,同Tooltip.formatter,不支持异步回调
-
- },
- lineStyle: {
- opacity: 0.5
- }
- }
- });
- var _default = LinesSeries;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2675:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var echarts = __webpack_require__(881);
-
- var LineDraw = __webpack_require__(1912);
-
- var EffectLine = __webpack_require__(2313);
-
- var Line = __webpack_require__(1913);
-
- var Polyline = __webpack_require__(2314);
-
- var EffectPolyline = __webpack_require__(2676);
-
- var LargeLineDraw = __webpack_require__(2677);
-
- var linesLayout = __webpack_require__(2315);
-
- var _createClipPathFromCoordSys = __webpack_require__(1662);
-
- var createClipPath = _createClipPathFromCoordSys.createClipPath;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = echarts.extendChartView({
- type: 'lines',
- init: function () {},
- render: function (seriesModel, ecModel, api) {
- var data = seriesModel.getData();
-
- var lineDraw = this._updateLineDraw(data, seriesModel);
-
- var zlevel = seriesModel.get('zlevel');
- var trailLength = seriesModel.get('effect.trailLength');
- var zr = api.getZr(); // Avoid the drag cause ghost shadow
- // FIXME Better way ?
- // SVG doesn't support
-
- var isSvg = zr.painter.getType() === 'svg';
-
- if (!isSvg) {
- zr.painter.getLayer(zlevel).clear(true);
- } // Config layer with motion blur
-
-
- if (this._lastZlevel != null && !isSvg) {
- zr.configLayer(this._lastZlevel, {
- motionBlur: false
- });
- }
-
- if (this._showEffect(seriesModel) && trailLength) {
- if (!isSvg) {
- zr.configLayer(zlevel, {
- motionBlur: true,
- lastFrameAlpha: Math.max(Math.min(trailLength / 10 + 0.9, 1), 0)
- });
- }
- }
-
- lineDraw.updateData(data);
- var clipPath = seriesModel.get('clip', true) && createClipPath(seriesModel.coordinateSystem, false, seriesModel);
-
- if (clipPath) {
- this.group.setClipPath(clipPath);
- } else {
- this.group.removeClipPath();
- }
-
- this._lastZlevel = zlevel;
- this._finished = true;
- },
- incrementalPrepareRender: function (seriesModel, ecModel, api) {
- var data = seriesModel.getData();
-
- var lineDraw = this._updateLineDraw(data, seriesModel);
-
- lineDraw.incrementalPrepareUpdate(data);
-
- this._clearLayer(api);
-
- this._finished = false;
- },
- incrementalRender: function (taskParams, seriesModel, ecModel) {
- this._lineDraw.incrementalUpdate(taskParams, seriesModel.getData());
-
- this._finished = taskParams.end === seriesModel.getData().count();
- },
- updateTransform: function (seriesModel, ecModel, api) {
- var data = seriesModel.getData();
- var pipelineContext = seriesModel.pipelineContext;
-
- if (!this._finished || pipelineContext.large || pipelineContext.progressiveRender) {
- // TODO Don't have to do update in large mode. Only do it when there are millions of data.
- return {
- update: true
- };
- } else {
- // TODO Use same logic with ScatterView.
- // Manually update layout
- var res = linesLayout.reset(seriesModel);
-
- if (res.progress) {
- res.progress({
- start: 0,
- end: data.count()
- }, data);
- }
-
- this._lineDraw.updateLayout();
-
- this._clearLayer(api);
- }
- },
- _updateLineDraw: function (data, seriesModel) {
- var lineDraw = this._lineDraw;
-
- var hasEffect = this._showEffect(seriesModel);
-
- var isPolyline = !!seriesModel.get('polyline');
- var pipelineContext = seriesModel.pipelineContext;
- var isLargeDraw = pipelineContext.large;
-
- if (!lineDraw || hasEffect !== this._hasEffet || isPolyline !== this._isPolyline || isLargeDraw !== this._isLargeDraw) {
- if (lineDraw) {
- lineDraw.remove();
- }
-
- lineDraw = this._lineDraw = isLargeDraw ? new LargeLineDraw() : new LineDraw(isPolyline ? hasEffect ? EffectPolyline : Polyline : hasEffect ? EffectLine : Line);
- this._hasEffet = hasEffect;
- this._isPolyline = isPolyline;
- this._isLargeDraw = isLargeDraw;
- this.group.removeAll();
- }
-
- this.group.add(lineDraw.group);
- return lineDraw;
- },
- _showEffect: function (seriesModel) {
- return !!seriesModel.get('effect.show');
- },
- _clearLayer: function (api) {
- // Not use motion when dragging or zooming
- var zr = api.getZr();
- var isSvg = zr.painter.getType() === 'svg';
-
- if (!isSvg && this._lastZlevel != null) {
- zr.painter.getLayer(this._lastZlevel).clear(true);
- }
- },
- remove: function (ecModel, api) {
- this._lineDraw && this._lineDraw.remove();
- this._lineDraw = null; // Clear motion when lineDraw is removed
-
- this._clearLayer(api);
- },
- dispose: function () {}
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2676:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var Polyline = __webpack_require__(2314);
-
- var zrUtil = __webpack_require__(864);
-
- var EffectLine = __webpack_require__(2313);
-
- var vec2 = __webpack_require__(1180);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Provide effect for line
- * @module echarts/chart/helper/EffectLine
- */
-
- /**
- * @constructor
- * @extends {module:echarts/chart/helper/EffectLine}
- * @alias {module:echarts/chart/helper/Polyline}
- */
- function EffectPolyline(lineData, idx, seriesScope) {
- EffectLine.call(this, lineData, idx, seriesScope);
- this._lastFrame = 0;
- this._lastFramePercent = 0;
- }
-
- var effectPolylineProto = EffectPolyline.prototype; // Overwrite
-
- effectPolylineProto.createLine = function (lineData, idx, seriesScope) {
- return new Polyline(lineData, idx, seriesScope);
- }; // Overwrite
-
-
- effectPolylineProto.updateAnimationPoints = function (symbol, points) {
- this._points = points;
- var accLenArr = [0];
- var len = 0;
-
- for (var i = 1; i < points.length; i++) {
- var p1 = points[i - 1];
- var p2 = points[i];
- len += vec2.dist(p1, p2);
- accLenArr.push(len);
- }
-
- if (len === 0) {
- return;
- }
-
- for (var i = 0; i < accLenArr.length; i++) {
- accLenArr[i] /= len;
- }
-
- this._offsets = accLenArr;
- this._length = len;
- }; // Overwrite
-
-
- effectPolylineProto.getLineLength = function (symbol) {
- return this._length;
- }; // Overwrite
-
-
- effectPolylineProto.updateSymbolPosition = function (symbol) {
- var t = symbol.__t;
- var points = this._points;
- var offsets = this._offsets;
- var len = points.length;
-
- if (!offsets) {
- // Has length 0
- return;
- }
-
- var lastFrame = this._lastFrame;
- var frame;
-
- if (t < this._lastFramePercent) {
- // Start from the next frame
- // PENDING start from lastFrame ?
- var start = Math.min(lastFrame + 1, len - 1);
-
- for (frame = start; frame >= 0; frame--) {
- if (offsets[frame] <= t) {
- break;
- }
- } // PENDING really need to do this ?
-
-
- frame = Math.min(frame, len - 2);
- } else {
- for (var frame = lastFrame; frame < len; frame++) {
- if (offsets[frame] > t) {
- break;
- }
- }
-
- frame = Math.min(frame - 1, len - 2);
- }
-
- vec2.lerp(symbol.position, points[frame], points[frame + 1], (t - offsets[frame]) / (offsets[frame + 1] - offsets[frame]));
- var tx = points[frame + 1][0] - points[frame][0];
- var ty = points[frame + 1][1] - points[frame][1];
- symbol.rotation = -Math.atan2(ty, tx) - Math.PI / 2;
- this._lastFrame = frame;
- this._lastFramePercent = t;
- symbol.ignore = false;
- };
-
- zrUtil.inherits(EffectPolyline, EffectLine);
- var _default = EffectPolyline;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2677:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var graphic = __webpack_require__(906);
-
- var IncrementalDisplayable = __webpack_require__(1900);
-
- var lineContain = __webpack_require__(2269);
-
- var quadraticContain = __webpack_require__(2270);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // TODO Batch by color
- var LargeLineShape = graphic.extendShape({
- shape: {
- polyline: false,
- curveness: 0,
- segs: []
- },
- buildPath: function (path, shape) {
- var segs = shape.segs;
- var curveness = shape.curveness;
-
- if (shape.polyline) {
- for (var i = 0; i < segs.length;) {
- var count = segs[i++];
-
- if (count > 0) {
- path.moveTo(segs[i++], segs[i++]);
-
- for (var k = 1; k < count; k++) {
- path.lineTo(segs[i++], segs[i++]);
- }
- }
- }
- } else {
- for (var i = 0; i < segs.length;) {
- var x0 = segs[i++];
- var y0 = segs[i++];
- var x1 = segs[i++];
- var y1 = segs[i++];
- path.moveTo(x0, y0);
-
- if (curveness > 0) {
- var x2 = (x0 + x1) / 2 - (y0 - y1) * curveness;
- var y2 = (y0 + y1) / 2 - (x1 - x0) * curveness;
- path.quadraticCurveTo(x2, y2, x1, y1);
- } else {
- path.lineTo(x1, y1);
- }
- }
- }
- },
- findDataIndex: function (x, y) {
- var shape = this.shape;
- var segs = shape.segs;
- var curveness = shape.curveness;
-
- if (shape.polyline) {
- var dataIndex = 0;
-
- for (var i = 0; i < segs.length;) {
- var count = segs[i++];
-
- if (count > 0) {
- var x0 = segs[i++];
- var y0 = segs[i++];
-
- for (var k = 1; k < count; k++) {
- var x1 = segs[i++];
- var y1 = segs[i++];
-
- if (lineContain.containStroke(x0, y0, x1, y1)) {
- return dataIndex;
- }
- }
- }
-
- dataIndex++;
- }
- } else {
- var dataIndex = 0;
-
- for (var i = 0; i < segs.length;) {
- var x0 = segs[i++];
- var y0 = segs[i++];
- var x1 = segs[i++];
- var y1 = segs[i++];
-
- if (curveness > 0) {
- var x2 = (x0 + x1) / 2 - (y0 - y1) * curveness;
- var y2 = (y0 + y1) / 2 - (x1 - x0) * curveness;
-
- if (quadraticContain.containStroke(x0, y0, x2, y2, x1, y1)) {
- return dataIndex;
- }
- } else {
- if (lineContain.containStroke(x0, y0, x1, y1)) {
- return dataIndex;
- }
- }
-
- dataIndex++;
- }
- }
-
- return -1;
- }
- });
-
- function LargeLineDraw() {
- this.group = new graphic.Group();
- }
-
- var largeLineProto = LargeLineDraw.prototype;
-
- largeLineProto.isPersistent = function () {
- return !this._incremental;
- };
- /**
- * Update symbols draw by new data
- * @param {module:echarts/data/List} data
- */
-
-
- largeLineProto.updateData = function (data) {
- this.group.removeAll();
- var lineEl = new LargeLineShape({
- rectHover: true,
- cursor: 'default'
- });
- lineEl.setShape({
- segs: data.getLayout('linesPoints')
- });
-
- this._setCommon(lineEl, data); // Add back
-
-
- this.group.add(lineEl);
- this._incremental = null;
- };
- /**
- * @override
- */
-
-
- largeLineProto.incrementalPrepareUpdate = function (data) {
- this.group.removeAll();
-
- this._clearIncremental();
-
- if (data.count() > 5e5) {
- if (!this._incremental) {
- this._incremental = new IncrementalDisplayable({
- silent: true
- });
- }
-
- this.group.add(this._incremental);
- } else {
- this._incremental = null;
- }
- };
- /**
- * @override
- */
-
-
- largeLineProto.incrementalUpdate = function (taskParams, data) {
- var lineEl = new LargeLineShape();
- lineEl.setShape({
- segs: data.getLayout('linesPoints')
- });
-
- this._setCommon(lineEl, data, !!this._incremental);
-
- if (!this._incremental) {
- lineEl.rectHover = true;
- lineEl.cursor = 'default';
- lineEl.__startIndex = taskParams.start;
- this.group.add(lineEl);
- } else {
- this._incremental.addDisplayable(lineEl, true);
- }
- };
- /**
- * @override
- */
-
-
- largeLineProto.remove = function () {
- this._clearIncremental();
-
- this._incremental = null;
- this.group.removeAll();
- };
-
- largeLineProto._setCommon = function (lineEl, data, isIncremental) {
- var hostModel = data.hostModel;
- lineEl.setShape({
- polyline: hostModel.get('polyline'),
- curveness: hostModel.get('lineStyle.curveness')
- });
- lineEl.useStyle(hostModel.getModel('lineStyle').getLineStyle());
- lineEl.style.strokeNoScale = true;
- var visualColor = data.getVisual('color');
-
- if (visualColor) {
- lineEl.setStyle('stroke', visualColor);
- }
-
- lineEl.setStyle('fill');
-
- if (!isIncremental) {
- // Enable tooltip
- // PENDING May have performance issue when path is extremely large
- lineEl.seriesIndex = hostModel.seriesIndex;
- lineEl.on('mousemove', function (e) {
- lineEl.dataIndex = null;
- var dataIndex = lineEl.findDataIndex(e.offsetX, e.offsetY);
-
- if (dataIndex > 0) {
- // Provide dataIndex for tooltip
- lineEl.dataIndex = dataIndex + lineEl.__startIndex;
- }
- });
- }
- };
-
- largeLineProto._clearIncremental = function () {
- var incremental = this._incremental;
-
- if (incremental) {
- incremental.clearDisplaybles();
- }
- };
-
- var _default = LargeLineDraw;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2678:
- /***/ (function(module, exports) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function normalize(a) {
- if (!(a instanceof Array)) {
- a = [a, a];
- }
-
- return a;
- }
-
- var opacityQuery = 'lineStyle.opacity'.split('.');
- var _default = {
- seriesType: 'lines',
- reset: function (seriesModel, ecModel, api) {
- var symbolType = normalize(seriesModel.get('symbol'));
- var symbolSize = normalize(seriesModel.get('symbolSize'));
- var data = seriesModel.getData();
- data.setVisual('fromSymbol', symbolType && symbolType[0]);
- data.setVisual('toSymbol', symbolType && symbolType[1]);
- data.setVisual('fromSymbolSize', symbolSize && symbolSize[0]);
- data.setVisual('toSymbolSize', symbolSize && symbolSize[1]);
- data.setVisual('opacity', seriesModel.get(opacityQuery));
-
- function dataEach(data, idx) {
- var itemModel = data.getItemModel(idx);
- var symbolType = normalize(itemModel.getShallow('symbol', true));
- var symbolSize = normalize(itemModel.getShallow('symbolSize', true));
- var opacity = itemModel.get(opacityQuery);
- symbolType[0] && data.setItemVisual(idx, 'fromSymbol', symbolType[0]);
- symbolType[1] && data.setItemVisual(idx, 'toSymbol', symbolType[1]);
- symbolSize[0] && data.setItemVisual(idx, 'fromSymbolSize', symbolSize[0]);
- symbolSize[1] && data.setItemVisual(idx, 'toSymbolSize', symbolSize[1]);
- data.setItemVisual(idx, 'opacity', opacity);
- }
-
- return {
- dataEach: data.hasItemOption ? dataEach : null
- };
- }
- };
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2679:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- __webpack_require__(2680);
-
- __webpack_require__(2681);
-
- /***/ }),
-
- /***/ 2680:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var SeriesModel = __webpack_require__(1322);
-
- var createListFromArray = __webpack_require__(1458);
-
- var CoordinateSystem = __webpack_require__(1414);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = SeriesModel.extend({
- type: 'series.heatmap',
- getInitialData: function (option, ecModel) {
- return createListFromArray(this.getSource(), this, {
- generateCoord: 'value'
- });
- },
- preventIncremental: function () {
- var coordSysCreator = CoordinateSystem.get(this.get('coordinateSystem'));
-
- if (coordSysCreator && coordSysCreator.dimensions) {
- return coordSysCreator.dimensions[0] === 'lng' && coordSysCreator.dimensions[1] === 'lat';
- }
- },
- defaultOption: {
- // Cartesian2D or geo
- coordinateSystem: 'cartesian2d',
- zlevel: 0,
- z: 2,
- // Cartesian coordinate system
- // xAxisIndex: 0,
- // yAxisIndex: 0,
- // Geo coordinate system
- geoIndex: 0,
- blurSize: 30,
- pointSize: 20,
- maxOpacity: 1,
- minOpacity: 0
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2681:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var echarts = __webpack_require__(881);
-
- var graphic = __webpack_require__(906);
-
- var HeatmapLayer = __webpack_require__(2682);
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function getIsInPiecewiseRange(dataExtent, pieceList, selected) {
- var dataSpan = dataExtent[1] - dataExtent[0];
- pieceList = zrUtil.map(pieceList, function (piece) {
- return {
- interval: [(piece.interval[0] - dataExtent[0]) / dataSpan, (piece.interval[1] - dataExtent[0]) / dataSpan]
- };
- });
- var len = pieceList.length;
- var lastIndex = 0;
- return function (val) {
- // Try to find in the location of the last found
- for (var i = lastIndex; i < len; i++) {
- var interval = pieceList[i].interval;
-
- if (interval[0] <= val && val <= interval[1]) {
- lastIndex = i;
- break;
- }
- }
-
- if (i === len) {
- // Not found, back interation
- for (var i = lastIndex - 1; i >= 0; i--) {
- var interval = pieceList[i].interval;
-
- if (interval[0] <= val && val <= interval[1]) {
- lastIndex = i;
- break;
- }
- }
- }
-
- return i >= 0 && i < len && selected[i];
- };
- }
-
- function getIsInContinuousRange(dataExtent, range) {
- var dataSpan = dataExtent[1] - dataExtent[0];
- range = [(range[0] - dataExtent[0]) / dataSpan, (range[1] - dataExtent[0]) / dataSpan];
- return function (val) {
- return val >= range[0] && val <= range[1];
- };
- }
-
- function isGeoCoordSys(coordSys) {
- var dimensions = coordSys.dimensions; // Not use coorSys.type === 'geo' because coordSys maybe extended
-
- return dimensions[0] === 'lng' && dimensions[1] === 'lat';
- }
-
- var _default = echarts.extendChartView({
- type: 'heatmap',
- render: function (seriesModel, ecModel, api) {
- var visualMapOfThisSeries;
- ecModel.eachComponent('visualMap', function (visualMap) {
- visualMap.eachTargetSeries(function (targetSeries) {
- if (targetSeries === seriesModel) {
- visualMapOfThisSeries = visualMap;
- }
- });
- });
- this.group.removeAll();
- this._incrementalDisplayable = null;
- var coordSys = seriesModel.coordinateSystem;
-
- if (coordSys.type === 'cartesian2d' || coordSys.type === 'calendar') {
- this._renderOnCartesianAndCalendar(seriesModel, api, 0, seriesModel.getData().count());
- } else if (isGeoCoordSys(coordSys)) {
- this._renderOnGeo(coordSys, seriesModel, visualMapOfThisSeries, api);
- }
- },
- incrementalPrepareRender: function (seriesModel, ecModel, api) {
- this.group.removeAll();
- },
- incrementalRender: function (params, seriesModel, ecModel, api) {
- var coordSys = seriesModel.coordinateSystem;
-
- if (coordSys) {
- this._renderOnCartesianAndCalendar(seriesModel, api, params.start, params.end, true);
- }
- },
- _renderOnCartesianAndCalendar: function (seriesModel, api, start, end, incremental) {
- var coordSys = seriesModel.coordinateSystem;
- var width;
- var height;
-
- if (coordSys.type === 'cartesian2d') {
- var xAxis = coordSys.getAxis('x');
- var yAxis = coordSys.getAxis('y');
- width = xAxis.getBandWidth();
- height = yAxis.getBandWidth();
- }
-
- var group = this.group;
- var data = seriesModel.getData();
- var itemStyleQuery = 'itemStyle';
- var hoverItemStyleQuery = 'emphasis.itemStyle';
- var labelQuery = 'label';
- var hoverLabelQuery = 'emphasis.label';
- var style = seriesModel.getModel(itemStyleQuery).getItemStyle(['color']);
- var hoverStl = seriesModel.getModel(hoverItemStyleQuery).getItemStyle();
- var labelModel = seriesModel.getModel(labelQuery);
- var hoverLabelModel = seriesModel.getModel(hoverLabelQuery);
- var coordSysType = coordSys.type;
- var dataDims = coordSysType === 'cartesian2d' ? [data.mapDimension('x'), data.mapDimension('y'), data.mapDimension('value')] : [data.mapDimension('time'), data.mapDimension('value')];
-
- for (var idx = start; idx < end; idx++) {
- var rect;
-
- if (coordSysType === 'cartesian2d') {
- // Ignore empty data
- if (isNaN(data.get(dataDims[2], idx))) {
- continue;
- }
-
- var point = coordSys.dataToPoint([data.get(dataDims[0], idx), data.get(dataDims[1], idx)]);
- rect = new graphic.Rect({
- shape: {
- x: Math.floor(point[0] - width / 2),
- y: Math.floor(point[1] - height / 2),
- width: Math.ceil(width),
- height: Math.ceil(height)
- },
- style: {
- fill: data.getItemVisual(idx, 'color'),
- opacity: data.getItemVisual(idx, 'opacity')
- }
- });
- } else {
- // Ignore empty data
- if (isNaN(data.get(dataDims[1], idx))) {
- continue;
- }
-
- rect = new graphic.Rect({
- z2: 1,
- shape: coordSys.dataToRect([data.get(dataDims[0], idx)]).contentShape,
- style: {
- fill: data.getItemVisual(idx, 'color'),
- opacity: data.getItemVisual(idx, 'opacity')
- }
- });
- }
-
- var itemModel = data.getItemModel(idx); // Optimization for large datset
-
- if (data.hasItemOption) {
- style = itemModel.getModel(itemStyleQuery).getItemStyle(['color']);
- hoverStl = itemModel.getModel(hoverItemStyleQuery).getItemStyle();
- labelModel = itemModel.getModel(labelQuery);
- hoverLabelModel = itemModel.getModel(hoverLabelQuery);
- }
-
- var rawValue = seriesModel.getRawValue(idx);
- var defaultText = '-';
-
- if (rawValue && rawValue[2] != null) {
- defaultText = rawValue[2];
- }
-
- graphic.setLabelStyle(style, hoverStl, labelModel, hoverLabelModel, {
- labelFetcher: seriesModel,
- labelDataIndex: idx,
- defaultText: defaultText,
- isRectText: true
- });
- rect.setStyle(style);
- graphic.setHoverStyle(rect, data.hasItemOption ? hoverStl : zrUtil.extend({}, hoverStl));
- rect.incremental = incremental; // PENDING
-
- if (incremental) {
- // Rect must use hover layer if it's incremental.
- rect.useHoverLayer = true;
- }
-
- group.add(rect);
- data.setItemGraphicEl(idx, rect);
- }
- },
- _renderOnGeo: function (geo, seriesModel, visualMapModel, api) {
- var inRangeVisuals = visualMapModel.targetVisuals.inRange;
- var outOfRangeVisuals = visualMapModel.targetVisuals.outOfRange; // if (!visualMapping) {
- // throw new Error('Data range must have color visuals');
- // }
-
- var data = seriesModel.getData();
- var hmLayer = this._hmLayer || this._hmLayer || new HeatmapLayer();
- hmLayer.blurSize = seriesModel.get('blurSize');
- hmLayer.pointSize = seriesModel.get('pointSize');
- hmLayer.minOpacity = seriesModel.get('minOpacity');
- hmLayer.maxOpacity = seriesModel.get('maxOpacity');
- var rect = geo.getViewRect().clone();
- var roamTransform = geo.getRoamTransform();
- rect.applyTransform(roamTransform); // Clamp on viewport
-
- var x = Math.max(rect.x, 0);
- var y = Math.max(rect.y, 0);
- var x2 = Math.min(rect.width + rect.x, api.getWidth());
- var y2 = Math.min(rect.height + rect.y, api.getHeight());
- var width = x2 - x;
- var height = y2 - y;
- var dims = [data.mapDimension('lng'), data.mapDimension('lat'), data.mapDimension('value')];
- var points = data.mapArray(dims, function (lng, lat, value) {
- var pt = geo.dataToPoint([lng, lat]);
- pt[0] -= x;
- pt[1] -= y;
- pt.push(value);
- return pt;
- });
- var dataExtent = visualMapModel.getExtent();
- var isInRange = visualMapModel.type === 'visualMap.continuous' ? getIsInContinuousRange(dataExtent, visualMapModel.option.range) : getIsInPiecewiseRange(dataExtent, visualMapModel.getPieceList(), visualMapModel.option.selected);
- hmLayer.update(points, width, height, inRangeVisuals.color.getNormalizer(), {
- inRange: inRangeVisuals.color.getColorMapper(),
- outOfRange: outOfRangeVisuals.color.getColorMapper()
- }, isInRange);
- var img = new graphic.Image({
- style: {
- width: width,
- height: height,
- x: x,
- y: y,
- image: hmLayer.canvas
- },
- silent: true
- });
- this.group.add(img);
- },
- dispose: function () {}
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2682:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /* global Uint8ClampedArray */
- var GRADIENT_LEVELS = 256;
- /**
- * Heatmap Chart
- *
- * @class
- */
-
- function Heatmap() {
- var canvas = zrUtil.createCanvas();
- this.canvas = canvas;
- this.blurSize = 30;
- this.pointSize = 20;
- this.maxOpacity = 1;
- this.minOpacity = 0;
- this._gradientPixels = {};
- }
-
- Heatmap.prototype = {
- /**
- * Renders Heatmap and returns the rendered canvas
- * @param {Array} data array of data, each has x, y, value
- * @param {number} width canvas width
- * @param {number} height canvas height
- */
- update: function (data, width, height, normalize, colorFunc, isInRange) {
- var brush = this._getBrush();
-
- var gradientInRange = this._getGradient(data, colorFunc, 'inRange');
-
- var gradientOutOfRange = this._getGradient(data, colorFunc, 'outOfRange');
-
- var r = this.pointSize + this.blurSize;
- var canvas = this.canvas;
- var ctx = canvas.getContext('2d');
- var len = data.length;
- canvas.width = width;
- canvas.height = height;
-
- for (var i = 0; i < len; ++i) {
- var p = data[i];
- var x = p[0];
- var y = p[1];
- var value = p[2]; // calculate alpha using value
-
- var alpha = normalize(value); // draw with the circle brush with alpha
-
- ctx.globalAlpha = alpha;
- ctx.drawImage(brush, x - r, y - r);
- }
-
- if (!canvas.width || !canvas.height) {
- // Avoid "Uncaught DOMException: Failed to execute 'getImageData' on
- // 'CanvasRenderingContext2D': The source height is 0."
- return canvas;
- } // colorize the canvas using alpha value and set with gradient
-
-
- var imageData = ctx.getImageData(0, 0, canvas.width, canvas.height);
- var pixels = imageData.data;
- var offset = 0;
- var pixelLen = pixels.length;
- var minOpacity = this.minOpacity;
- var maxOpacity = this.maxOpacity;
- var diffOpacity = maxOpacity - minOpacity;
-
- while (offset < pixelLen) {
- var alpha = pixels[offset + 3] / 256;
- var gradientOffset = Math.floor(alpha * (GRADIENT_LEVELS - 1)) * 4; // Simple optimize to ignore the empty data
-
- if (alpha > 0) {
- var gradient = isInRange(alpha) ? gradientInRange : gradientOutOfRange; // Any alpha > 0 will be mapped to [minOpacity, maxOpacity]
-
- alpha > 0 && (alpha = alpha * diffOpacity + minOpacity);
- pixels[offset++] = gradient[gradientOffset];
- pixels[offset++] = gradient[gradientOffset + 1];
- pixels[offset++] = gradient[gradientOffset + 2];
- pixels[offset++] = gradient[gradientOffset + 3] * alpha * 256;
- } else {
- offset += 4;
- }
- }
-
- ctx.putImageData(imageData, 0, 0);
- return canvas;
- },
-
- /**
- * get canvas of a black circle brush used for canvas to draw later
- * @private
- * @returns {Object} circle brush canvas
- */
- _getBrush: function () {
- var brushCanvas = this._brushCanvas || (this._brushCanvas = zrUtil.createCanvas()); // set brush size
-
- var r = this.pointSize + this.blurSize;
- var d = r * 2;
- brushCanvas.width = d;
- brushCanvas.height = d;
- var ctx = brushCanvas.getContext('2d');
- ctx.clearRect(0, 0, d, d); // in order to render shadow without the distinct circle,
- // draw the distinct circle in an invisible place,
- // and use shadowOffset to draw shadow in the center of the canvas
-
- ctx.shadowOffsetX = d;
- ctx.shadowBlur = this.blurSize; // draw the shadow in black, and use alpha and shadow blur to generate
- // color in color map
-
- ctx.shadowColor = '#000'; // draw circle in the left to the canvas
-
- ctx.beginPath();
- ctx.arc(-r, r, this.pointSize, 0, Math.PI * 2, true);
- ctx.closePath();
- ctx.fill();
- return brushCanvas;
- },
-
- /**
- * get gradient color map
- * @private
- */
- _getGradient: function (data, colorFunc, state) {
- var gradientPixels = this._gradientPixels;
- var pixelsSingleState = gradientPixels[state] || (gradientPixels[state] = new Uint8ClampedArray(256 * 4));
- var color = [0, 0, 0, 0];
- var off = 0;
-
- for (var i = 0; i < 256; i++) {
- colorFunc[state](i / 255, true, color);
- pixelsSingleState[off++] = color[0];
- pixelsSingleState[off++] = color[1];
- pixelsSingleState[off++] = color[2];
- pixelsSingleState[off++] = color[3];
- }
-
- return pixelsSingleState;
- }
- };
- var _default = Heatmap;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2683:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- __webpack_require__(1905);
-
- __webpack_require__(2684);
-
- __webpack_require__(2685);
-
- var _barGrid = __webpack_require__(1789);
-
- var layout = _barGrid.layout;
-
- var visualSymbol = __webpack_require__(1520);
-
- __webpack_require__(1664);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // In case developer forget to include grid component
- echarts.registerLayout(zrUtil.curry(layout, 'pictorialBar'));
- echarts.registerVisual(visualSymbol('pictorialBar', 'roundRect'));
-
- /***/ }),
-
- /***/ 2684:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var BaseBarSeries = __webpack_require__(2297);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var PictorialBarSeries = BaseBarSeries.extend({
- type: 'series.pictorialBar',
- dependencies: ['grid'],
- defaultOption: {
- symbol: 'circle',
- // Customized bar shape
- symbolSize: null,
- // Can be ['100%', '100%'], null means auto.
- symbolRotate: null,
- symbolPosition: null,
- // 'start' or 'end' or 'center', null means auto.
- symbolOffset: null,
- symbolMargin: null,
- // start margin and end margin. Can be a number or a percent string.
- // Auto margin by defualt.
- symbolRepeat: false,
- // false/null/undefined, means no repeat.
- // Can be true, means auto calculate repeat times and cut by data.
- // Can be a number, specifies repeat times, and do not cut by data.
- // Can be 'fixed', means auto calculate repeat times but do not cut by data.
- symbolRepeatDirection: 'end',
- // 'end' means from 'start' to 'end'.
- symbolClip: false,
- symbolBoundingData: null,
- // Can be 60 or -40 or [-40, 60]
- symbolPatternSize: 400,
- // 400 * 400 px
- barGap: '-100%',
- // In most case, overlap is needed.
- // z can be set in data item, which is z2 actually.
- // Disable progressive
- progressive: 0,
- hoverAnimation: false // Open only when needed.
-
- },
- getInitialData: function (option) {
- // Disable stack.
- option.stack = null;
- return PictorialBarSeries.superApply(this, 'getInitialData', arguments);
- }
- });
- var _default = PictorialBarSeries;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2685:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var graphic = __webpack_require__(906);
-
- var _symbol = __webpack_require__(1404);
-
- var createSymbol = _symbol.createSymbol;
-
- var _number = __webpack_require__(985);
-
- var parsePercent = _number.parsePercent;
- var isNumeric = _number.isNumeric;
-
- var _helper = __webpack_require__(2298);
-
- var setLabel = _helper.setLabel;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var BAR_BORDER_WIDTH_QUERY = ['itemStyle', 'borderWidth']; // index: +isHorizontal
-
- var LAYOUT_ATTRS = [{
- xy: 'x',
- wh: 'width',
- index: 0,
- posDesc: ['left', 'right']
- }, {
- xy: 'y',
- wh: 'height',
- index: 1,
- posDesc: ['top', 'bottom']
- }];
- var pathForLineWidth = new graphic.Circle();
- var BarView = echarts.extendChartView({
- type: 'pictorialBar',
- render: function (seriesModel, ecModel, api) {
- var group = this.group;
- var data = seriesModel.getData();
- var oldData = this._data;
- var cartesian = seriesModel.coordinateSystem;
- var baseAxis = cartesian.getBaseAxis();
- var isHorizontal = !!baseAxis.isHorizontal();
- var coordSysRect = cartesian.grid.getRect();
- var opt = {
- ecSize: {
- width: api.getWidth(),
- height: api.getHeight()
- },
- seriesModel: seriesModel,
- coordSys: cartesian,
- coordSysExtent: [[coordSysRect.x, coordSysRect.x + coordSysRect.width], [coordSysRect.y, coordSysRect.y + coordSysRect.height]],
- isHorizontal: isHorizontal,
- valueDim: LAYOUT_ATTRS[+isHorizontal],
- categoryDim: LAYOUT_ATTRS[1 - isHorizontal]
- };
- data.diff(oldData).add(function (dataIndex) {
- if (!data.hasValue(dataIndex)) {
- return;
- }
-
- var itemModel = getItemModel(data, dataIndex);
- var symbolMeta = getSymbolMeta(data, dataIndex, itemModel, opt);
- var bar = createBar(data, opt, symbolMeta);
- data.setItemGraphicEl(dataIndex, bar);
- group.add(bar);
- updateCommon(bar, opt, symbolMeta);
- }).update(function (newIndex, oldIndex) {
- var bar = oldData.getItemGraphicEl(oldIndex);
-
- if (!data.hasValue(newIndex)) {
- group.remove(bar);
- return;
- }
-
- var itemModel = getItemModel(data, newIndex);
- var symbolMeta = getSymbolMeta(data, newIndex, itemModel, opt);
- var pictorialShapeStr = getShapeStr(data, symbolMeta);
-
- if (bar && pictorialShapeStr !== bar.__pictorialShapeStr) {
- group.remove(bar);
- data.setItemGraphicEl(newIndex, null);
- bar = null;
- }
-
- if (bar) {
- updateBar(bar, opt, symbolMeta);
- } else {
- bar = createBar(data, opt, symbolMeta, true);
- }
-
- data.setItemGraphicEl(newIndex, bar);
- bar.__pictorialSymbolMeta = symbolMeta; // Add back
-
- group.add(bar);
- updateCommon(bar, opt, symbolMeta);
- }).remove(function (dataIndex) {
- var bar = oldData.getItemGraphicEl(dataIndex);
- bar && removeBar(oldData, dataIndex, bar.__pictorialSymbolMeta.animationModel, bar);
- }).execute();
- this._data = data;
- return this.group;
- },
- dispose: zrUtil.noop,
- remove: function (ecModel, api) {
- var group = this.group;
- var data = this._data;
-
- if (ecModel.get('animation')) {
- if (data) {
- data.eachItemGraphicEl(function (bar) {
- removeBar(data, bar.dataIndex, ecModel, bar);
- });
- }
- } else {
- group.removeAll();
- }
- }
- }); // Set or calculate default value about symbol, and calculate layout info.
-
- function getSymbolMeta(data, dataIndex, itemModel, opt) {
- var layout = data.getItemLayout(dataIndex);
- var symbolRepeat = itemModel.get('symbolRepeat');
- var symbolClip = itemModel.get('symbolClip');
- var symbolPosition = itemModel.get('symbolPosition') || 'start';
- var symbolRotate = itemModel.get('symbolRotate');
- var rotation = (symbolRotate || 0) * Math.PI / 180 || 0;
- var symbolPatternSize = itemModel.get('symbolPatternSize') || 2;
- var isAnimationEnabled = itemModel.isAnimationEnabled();
- var symbolMeta = {
- dataIndex: dataIndex,
- layout: layout,
- itemModel: itemModel,
- symbolType: data.getItemVisual(dataIndex, 'symbol') || 'circle',
- color: data.getItemVisual(dataIndex, 'color'),
- symbolClip: symbolClip,
- symbolRepeat: symbolRepeat,
- symbolRepeatDirection: itemModel.get('symbolRepeatDirection'),
- symbolPatternSize: symbolPatternSize,
- rotation: rotation,
- animationModel: isAnimationEnabled ? itemModel : null,
- hoverAnimation: isAnimationEnabled && itemModel.get('hoverAnimation'),
- z2: itemModel.getShallow('z', true) || 0
- };
- prepareBarLength(itemModel, symbolRepeat, layout, opt, symbolMeta);
- prepareSymbolSize(data, dataIndex, layout, symbolRepeat, symbolClip, symbolMeta.boundingLength, symbolMeta.pxSign, symbolPatternSize, opt, symbolMeta);
- prepareLineWidth(itemModel, symbolMeta.symbolScale, rotation, opt, symbolMeta);
- var symbolSize = symbolMeta.symbolSize;
- var symbolOffset = itemModel.get('symbolOffset');
-
- if (zrUtil.isArray(symbolOffset)) {
- symbolOffset = [parsePercent(symbolOffset[0], symbolSize[0]), parsePercent(symbolOffset[1], symbolSize[1])];
- }
-
- prepareLayoutInfo(itemModel, symbolSize, layout, symbolRepeat, symbolClip, symbolOffset, symbolPosition, symbolMeta.valueLineWidth, symbolMeta.boundingLength, symbolMeta.repeatCutLength, opt, symbolMeta);
- return symbolMeta;
- } // bar length can be negative.
-
-
- function prepareBarLength(itemModel, symbolRepeat, layout, opt, output) {
- var valueDim = opt.valueDim;
- var symbolBoundingData = itemModel.get('symbolBoundingData');
- var valueAxis = opt.coordSys.getOtherAxis(opt.coordSys.getBaseAxis());
- var zeroPx = valueAxis.toGlobalCoord(valueAxis.dataToCoord(0));
- var pxSignIdx = 1 - +(layout[valueDim.wh] <= 0);
- var boundingLength;
-
- if (zrUtil.isArray(symbolBoundingData)) {
- var symbolBoundingExtent = [convertToCoordOnAxis(valueAxis, symbolBoundingData[0]) - zeroPx, convertToCoordOnAxis(valueAxis, symbolBoundingData[1]) - zeroPx];
- symbolBoundingExtent[1] < symbolBoundingExtent[0] && symbolBoundingExtent.reverse();
- boundingLength = symbolBoundingExtent[pxSignIdx];
- } else if (symbolBoundingData != null) {
- boundingLength = convertToCoordOnAxis(valueAxis, symbolBoundingData) - zeroPx;
- } else if (symbolRepeat) {
- boundingLength = opt.coordSysExtent[valueDim.index][pxSignIdx] - zeroPx;
- } else {
- boundingLength = layout[valueDim.wh];
- }
-
- output.boundingLength = boundingLength;
-
- if (symbolRepeat) {
- output.repeatCutLength = layout[valueDim.wh];
- }
-
- output.pxSign = boundingLength > 0 ? 1 : boundingLength < 0 ? -1 : 0;
- }
-
- function convertToCoordOnAxis(axis, value) {
- return axis.toGlobalCoord(axis.dataToCoord(axis.scale.parse(value)));
- } // Support ['100%', '100%']
-
-
- function prepareSymbolSize(data, dataIndex, layout, symbolRepeat, symbolClip, boundingLength, pxSign, symbolPatternSize, opt, output) {
- var valueDim = opt.valueDim;
- var categoryDim = opt.categoryDim;
- var categorySize = Math.abs(layout[categoryDim.wh]);
- var symbolSize = data.getItemVisual(dataIndex, 'symbolSize');
-
- if (zrUtil.isArray(symbolSize)) {
- symbolSize = symbolSize.slice();
- } else {
- if (symbolSize == null) {
- symbolSize = '100%';
- }
-
- symbolSize = [symbolSize, symbolSize];
- } // Note: percentage symbolSize (like '100%') do not consider lineWidth, because it is
- // to complicated to calculate real percent value if considering scaled lineWidth.
- // So the actual size will bigger than layout size if lineWidth is bigger than zero,
- // which can be tolerated in pictorial chart.
-
-
- symbolSize[categoryDim.index] = parsePercent(symbolSize[categoryDim.index], categorySize);
- symbolSize[valueDim.index] = parsePercent(symbolSize[valueDim.index], symbolRepeat ? categorySize : Math.abs(boundingLength));
- output.symbolSize = symbolSize; // If x or y is less than zero, show reversed shape.
-
- var symbolScale = output.symbolScale = [symbolSize[0] / symbolPatternSize, symbolSize[1] / symbolPatternSize]; // Follow convention, 'right' and 'top' is the normal scale.
-
- symbolScale[valueDim.index] *= (opt.isHorizontal ? -1 : 1) * pxSign;
- }
-
- function prepareLineWidth(itemModel, symbolScale, rotation, opt, output) {
- // In symbols are drawn with scale, so do not need to care about the case that width
- // or height are too small. But symbol use strokeNoScale, where acture lineWidth should
- // be calculated.
- var valueLineWidth = itemModel.get(BAR_BORDER_WIDTH_QUERY) || 0;
-
- if (valueLineWidth) {
- pathForLineWidth.attr({
- scale: symbolScale.slice(),
- rotation: rotation
- });
- pathForLineWidth.updateTransform();
- valueLineWidth /= pathForLineWidth.getLineScale();
- valueLineWidth *= symbolScale[opt.valueDim.index];
- }
-
- output.valueLineWidth = valueLineWidth;
- }
-
- function prepareLayoutInfo(itemModel, symbolSize, layout, symbolRepeat, symbolClip, symbolOffset, symbolPosition, valueLineWidth, boundingLength, repeatCutLength, opt, output) {
- var categoryDim = opt.categoryDim;
- var valueDim = opt.valueDim;
- var pxSign = output.pxSign;
- var unitLength = Math.max(symbolSize[valueDim.index] + valueLineWidth, 0);
- var pathLen = unitLength; // Note: rotation will not effect the layout of symbols, because user may
- // want symbols to rotate on its center, which should not be translated
- // when rotating.
-
- if (symbolRepeat) {
- var absBoundingLength = Math.abs(boundingLength);
- var symbolMargin = zrUtil.retrieve(itemModel.get('symbolMargin'), '15%') + '';
- var hasEndGap = false;
-
- if (symbolMargin.lastIndexOf('!') === symbolMargin.length - 1) {
- hasEndGap = true;
- symbolMargin = symbolMargin.slice(0, symbolMargin.length - 1);
- }
-
- symbolMargin = parsePercent(symbolMargin, symbolSize[valueDim.index]);
- var uLenWithMargin = Math.max(unitLength + symbolMargin * 2, 0); // When symbol margin is less than 0, margin at both ends will be subtracted
- // to ensure that all of the symbols will not be overflow the given area.
-
- var endFix = hasEndGap ? 0 : symbolMargin * 2; // Both final repeatTimes and final symbolMargin area calculated based on
- // boundingLength.
-
- var repeatSpecified = isNumeric(symbolRepeat);
- var repeatTimes = repeatSpecified ? symbolRepeat : toIntTimes((absBoundingLength + endFix) / uLenWithMargin); // Adjust calculate margin, to ensure each symbol is displayed
- // entirely in the given layout area.
-
- var mDiff = absBoundingLength - repeatTimes * unitLength;
- symbolMargin = mDiff / 2 / (hasEndGap ? repeatTimes : repeatTimes - 1);
- uLenWithMargin = unitLength + symbolMargin * 2;
- endFix = hasEndGap ? 0 : symbolMargin * 2; // Update repeatTimes when not all symbol will be shown.
-
- if (!repeatSpecified && symbolRepeat !== 'fixed') {
- repeatTimes = repeatCutLength ? toIntTimes((Math.abs(repeatCutLength) + endFix) / uLenWithMargin) : 0;
- }
-
- pathLen = repeatTimes * uLenWithMargin - endFix;
- output.repeatTimes = repeatTimes;
- output.symbolMargin = symbolMargin;
- }
-
- var sizeFix = pxSign * (pathLen / 2);
- var pathPosition = output.pathPosition = [];
- pathPosition[categoryDim.index] = layout[categoryDim.wh] / 2;
- pathPosition[valueDim.index] = symbolPosition === 'start' ? sizeFix : symbolPosition === 'end' ? boundingLength - sizeFix : boundingLength / 2; // 'center'
-
- if (symbolOffset) {
- pathPosition[0] += symbolOffset[0];
- pathPosition[1] += symbolOffset[1];
- }
-
- var bundlePosition = output.bundlePosition = [];
- bundlePosition[categoryDim.index] = layout[categoryDim.xy];
- bundlePosition[valueDim.index] = layout[valueDim.xy];
- var barRectShape = output.barRectShape = zrUtil.extend({}, layout);
- barRectShape[valueDim.wh] = pxSign * Math.max(Math.abs(layout[valueDim.wh]), Math.abs(pathPosition[valueDim.index] + sizeFix));
- barRectShape[categoryDim.wh] = layout[categoryDim.wh];
- var clipShape = output.clipShape = {}; // Consider that symbol may be overflow layout rect.
-
- clipShape[categoryDim.xy] = -layout[categoryDim.xy];
- clipShape[categoryDim.wh] = opt.ecSize[categoryDim.wh];
- clipShape[valueDim.xy] = 0;
- clipShape[valueDim.wh] = layout[valueDim.wh];
- }
-
- function createPath(symbolMeta) {
- var symbolPatternSize = symbolMeta.symbolPatternSize;
- var path = createSymbol( // Consider texture img, make a big size.
- symbolMeta.symbolType, -symbolPatternSize / 2, -symbolPatternSize / 2, symbolPatternSize, symbolPatternSize, symbolMeta.color);
- path.attr({
- culling: true
- });
- path.type !== 'image' && path.setStyle({
- strokeNoScale: true
- });
- return path;
- }
-
- function createOrUpdateRepeatSymbols(bar, opt, symbolMeta, isUpdate) {
- var bundle = bar.__pictorialBundle;
- var symbolSize = symbolMeta.symbolSize;
- var valueLineWidth = symbolMeta.valueLineWidth;
- var pathPosition = symbolMeta.pathPosition;
- var valueDim = opt.valueDim;
- var repeatTimes = symbolMeta.repeatTimes || 0;
- var index = 0;
- var unit = symbolSize[opt.valueDim.index] + valueLineWidth + symbolMeta.symbolMargin * 2;
- eachPath(bar, function (path) {
- path.__pictorialAnimationIndex = index;
- path.__pictorialRepeatTimes = repeatTimes;
-
- if (index < repeatTimes) {
- updateAttr(path, null, makeTarget(index), symbolMeta, isUpdate);
- } else {
- updateAttr(path, null, {
- scale: [0, 0]
- }, symbolMeta, isUpdate, function () {
- bundle.remove(path);
- });
- }
-
- updateHoverAnimation(path, symbolMeta);
- index++;
- });
-
- for (; index < repeatTimes; index++) {
- var path = createPath(symbolMeta);
- path.__pictorialAnimationIndex = index;
- path.__pictorialRepeatTimes = repeatTimes;
- bundle.add(path);
- var target = makeTarget(index);
- updateAttr(path, {
- position: target.position,
- scale: [0, 0]
- }, {
- scale: target.scale,
- rotation: target.rotation
- }, symbolMeta, isUpdate); // FIXME
- // If all emphasis/normal through action.
-
- path.on('mouseover', onMouseOver).on('mouseout', onMouseOut);
- updateHoverAnimation(path, symbolMeta);
- }
-
- function makeTarget(index) {
- var position = pathPosition.slice(); // (start && pxSign > 0) || (end && pxSign < 0): i = repeatTimes - index
- // Otherwise: i = index;
-
- var pxSign = symbolMeta.pxSign;
- var i = index;
-
- if (symbolMeta.symbolRepeatDirection === 'start' ? pxSign > 0 : pxSign < 0) {
- i = repeatTimes - 1 - index;
- }
-
- position[valueDim.index] = unit * (i - repeatTimes / 2 + 0.5) + pathPosition[valueDim.index];
- return {
- position: position,
- scale: symbolMeta.symbolScale.slice(),
- rotation: symbolMeta.rotation
- };
- }
-
- function onMouseOver() {
- eachPath(bar, function (path) {
- path.trigger('emphasis');
- });
- }
-
- function onMouseOut() {
- eachPath(bar, function (path) {
- path.trigger('normal');
- });
- }
- }
-
- function createOrUpdateSingleSymbol(bar, opt, symbolMeta, isUpdate) {
- var bundle = bar.__pictorialBundle;
- var mainPath = bar.__pictorialMainPath;
-
- if (!mainPath) {
- mainPath = bar.__pictorialMainPath = createPath(symbolMeta);
- bundle.add(mainPath);
- updateAttr(mainPath, {
- position: symbolMeta.pathPosition.slice(),
- scale: [0, 0],
- rotation: symbolMeta.rotation
- }, {
- scale: symbolMeta.symbolScale.slice()
- }, symbolMeta, isUpdate);
- mainPath.on('mouseover', onMouseOver).on('mouseout', onMouseOut);
- } else {
- updateAttr(mainPath, null, {
- position: symbolMeta.pathPosition.slice(),
- scale: symbolMeta.symbolScale.slice(),
- rotation: symbolMeta.rotation
- }, symbolMeta, isUpdate);
- }
-
- updateHoverAnimation(mainPath, symbolMeta);
-
- function onMouseOver() {
- this.trigger('emphasis');
- }
-
- function onMouseOut() {
- this.trigger('normal');
- }
- } // bar rect is used for label.
-
-
- function createOrUpdateBarRect(bar, symbolMeta, isUpdate) {
- var rectShape = zrUtil.extend({}, symbolMeta.barRectShape);
- var barRect = bar.__pictorialBarRect;
-
- if (!barRect) {
- barRect = bar.__pictorialBarRect = new graphic.Rect({
- z2: 2,
- shape: rectShape,
- silent: true,
- style: {
- stroke: 'transparent',
- fill: 'transparent',
- lineWidth: 0
- }
- });
- bar.add(barRect);
- } else {
- updateAttr(barRect, null, {
- shape: rectShape
- }, symbolMeta, isUpdate);
- }
- }
-
- function createOrUpdateClip(bar, opt, symbolMeta, isUpdate) {
- // If not clip, symbol will be remove and rebuilt.
- if (symbolMeta.symbolClip) {
- var clipPath = bar.__pictorialClipPath;
- var clipShape = zrUtil.extend({}, symbolMeta.clipShape);
- var valueDim = opt.valueDim;
- var animationModel = symbolMeta.animationModel;
- var dataIndex = symbolMeta.dataIndex;
-
- if (clipPath) {
- graphic.updateProps(clipPath, {
- shape: clipShape
- }, animationModel, dataIndex);
- } else {
- clipShape[valueDim.wh] = 0;
- clipPath = new graphic.Rect({
- shape: clipShape
- });
-
- bar.__pictorialBundle.setClipPath(clipPath);
-
- bar.__pictorialClipPath = clipPath;
- var target = {};
- target[valueDim.wh] = symbolMeta.clipShape[valueDim.wh];
- graphic[isUpdate ? 'updateProps' : 'initProps'](clipPath, {
- shape: target
- }, animationModel, dataIndex);
- }
- }
- }
-
- function getItemModel(data, dataIndex) {
- var itemModel = data.getItemModel(dataIndex);
- itemModel.getAnimationDelayParams = getAnimationDelayParams;
- itemModel.isAnimationEnabled = isAnimationEnabled;
- return itemModel;
- }
-
- function getAnimationDelayParams(path) {
- // The order is the same as the z-order, see `symbolRepeatDiretion`.
- return {
- index: path.__pictorialAnimationIndex,
- count: path.__pictorialRepeatTimes
- };
- }
-
- function isAnimationEnabled() {
- // `animation` prop can be set on itemModel in pictorial bar chart.
- return this.parentModel.isAnimationEnabled() && !!this.getShallow('animation');
- }
-
- function updateHoverAnimation(path, symbolMeta) {
- path.off('emphasis').off('normal');
- var scale = symbolMeta.symbolScale.slice();
- symbolMeta.hoverAnimation && path.on('emphasis', function () {
- this.animateTo({
- scale: [scale[0] * 1.1, scale[1] * 1.1]
- }, 400, 'elasticOut');
- }).on('normal', function () {
- this.animateTo({
- scale: scale.slice()
- }, 400, 'elasticOut');
- });
- }
-
- function createBar(data, opt, symbolMeta, isUpdate) {
- // bar is the main element for each data.
- var bar = new graphic.Group(); // bundle is used for location and clip.
-
- var bundle = new graphic.Group();
- bar.add(bundle);
- bar.__pictorialBundle = bundle;
- bundle.attr('position', symbolMeta.bundlePosition.slice());
-
- if (symbolMeta.symbolRepeat) {
- createOrUpdateRepeatSymbols(bar, opt, symbolMeta);
- } else {
- createOrUpdateSingleSymbol(bar, opt, symbolMeta);
- }
-
- createOrUpdateBarRect(bar, symbolMeta, isUpdate);
- createOrUpdateClip(bar, opt, symbolMeta, isUpdate);
- bar.__pictorialShapeStr = getShapeStr(data, symbolMeta);
- bar.__pictorialSymbolMeta = symbolMeta;
- return bar;
- }
-
- function updateBar(bar, opt, symbolMeta) {
- var animationModel = symbolMeta.animationModel;
- var dataIndex = symbolMeta.dataIndex;
- var bundle = bar.__pictorialBundle;
- graphic.updateProps(bundle, {
- position: symbolMeta.bundlePosition.slice()
- }, animationModel, dataIndex);
-
- if (symbolMeta.symbolRepeat) {
- createOrUpdateRepeatSymbols(bar, opt, symbolMeta, true);
- } else {
- createOrUpdateSingleSymbol(bar, opt, symbolMeta, true);
- }
-
- createOrUpdateBarRect(bar, symbolMeta, true);
- createOrUpdateClip(bar, opt, symbolMeta, true);
- }
-
- function removeBar(data, dataIndex, animationModel, bar) {
- // Not show text when animating
- var labelRect = bar.__pictorialBarRect;
- labelRect && (labelRect.style.text = null);
- var pathes = [];
- eachPath(bar, function (path) {
- pathes.push(path);
- });
- bar.__pictorialMainPath && pathes.push(bar.__pictorialMainPath); // I do not find proper remove animation for clip yet.
-
- bar.__pictorialClipPath && (animationModel = null);
- zrUtil.each(pathes, function (path) {
- graphic.updateProps(path, {
- scale: [0, 0]
- }, animationModel, dataIndex, function () {
- bar.parent && bar.parent.remove(bar);
- });
- });
- data.setItemGraphicEl(dataIndex, null);
- }
-
- function getShapeStr(data, symbolMeta) {
- return [data.getItemVisual(symbolMeta.dataIndex, 'symbol') || 'none', !!symbolMeta.symbolRepeat, !!symbolMeta.symbolClip].join(':');
- }
-
- function eachPath(bar, cb, context) {
- // Do not use Group#eachChild, because it do not support remove.
- zrUtil.each(bar.__pictorialBundle.children(), function (el) {
- el !== bar.__pictorialBarRect && cb.call(context, el);
- });
- }
-
- function updateAttr(el, immediateAttrs, animationAttrs, symbolMeta, isUpdate, cb) {
- immediateAttrs && el.attr(immediateAttrs); // when symbolCip used, only clip path has init animation, otherwise it would be weird effect.
-
- if (symbolMeta.symbolClip && !isUpdate) {
- animationAttrs && el.attr(animationAttrs);
- } else {
- animationAttrs && graphic[isUpdate ? 'updateProps' : 'initProps'](el, animationAttrs, symbolMeta.animationModel, symbolMeta.dataIndex, cb);
- }
- }
-
- function updateCommon(bar, opt, symbolMeta) {
- var color = symbolMeta.color;
- var dataIndex = symbolMeta.dataIndex;
- var itemModel = symbolMeta.itemModel; // Color must be excluded.
- // Because symbol provide setColor individually to set fill and stroke
-
- var normalStyle = itemModel.getModel('itemStyle').getItemStyle(['color']);
- var hoverStyle = itemModel.getModel('emphasis.itemStyle').getItemStyle();
- var cursorStyle = itemModel.getShallow('cursor');
- eachPath(bar, function (path) {
- // PENDING setColor should be before setStyle!!!
- path.setColor(color);
- path.setStyle(zrUtil.defaults({
- fill: color,
- opacity: symbolMeta.opacity
- }, normalStyle));
- graphic.setHoverStyle(path, hoverStyle);
- cursorStyle && (path.cursor = cursorStyle);
- path.z2 = symbolMeta.z2;
- });
- var barRectHoverStyle = {};
- var barPositionOutside = opt.valueDim.posDesc[+(symbolMeta.boundingLength > 0)];
- var barRect = bar.__pictorialBarRect;
- setLabel(barRect.style, barRectHoverStyle, itemModel, color, opt.seriesModel, dataIndex, barPositionOutside);
- graphic.setHoverStyle(barRect, barRectHoverStyle);
- }
-
- function toIntTimes(times) {
- var roundedTimes = Math.round(times); // Escapse accurate error
-
- return Math.abs(times - roundedTimes) < 1e-4 ? roundedTimes : Math.ceil(times);
- }
-
- var _default = BarView;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2686:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- __webpack_require__(2316);
-
- __webpack_require__(2696);
-
- __webpack_require__(2697);
-
- var themeRiverLayout = __webpack_require__(2698);
-
- var themeRiverVisual = __webpack_require__(2699);
-
- var dataFilter = __webpack_require__(1666);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- echarts.registerLayout(themeRiverLayout);
- echarts.registerVisual(themeRiverVisual);
- echarts.registerProcessor(dataFilter('themeRiver'));
-
- /***/ }),
-
- /***/ 2687:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var Single = __webpack_require__(2688);
-
- var CoordinateSystem = __webpack_require__(1414);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Single coordinate system creator.
- */
-
- /**
- * Create single coordinate system and inject it into seriesModel.
- *
- * @param {module:echarts/model/Global} ecModel
- * @param {module:echarts/ExtensionAPI} api
- * @return {Array.<module:echarts/coord/single/Single>}
- */
- function create(ecModel, api) {
- var singles = [];
- ecModel.eachComponent('singleAxis', function (axisModel, idx) {
- var single = new Single(axisModel, ecModel, api);
- single.name = 'single_' + idx;
- single.resize(axisModel, api);
- axisModel.coordinateSystem = single;
- singles.push(single);
- });
- ecModel.eachSeries(function (seriesModel) {
- if (seriesModel.get('coordinateSystem') === 'singleAxis') {
- var singleAxisModel = ecModel.queryComponents({
- mainType: 'singleAxis',
- index: seriesModel.get('singleAxisIndex'),
- id: seriesModel.get('singleAxisId')
- })[0];
- seriesModel.coordinateSystem = singleAxisModel && singleAxisModel.coordinateSystem;
- }
- });
- return singles;
- }
-
- CoordinateSystem.register('single', {
- create: create,
- dimensions: Single.prototype.dimensions
- });
-
- /***/ }),
-
- /***/ 2688:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var SingleAxis = __webpack_require__(2689);
-
- var axisHelper = __webpack_require__(1415);
-
- var _layout = __webpack_require__(1171);
-
- var getLayoutRect = _layout.getLayoutRect;
-
- var _util = __webpack_require__(864);
-
- var each = _util.each;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Single coordinates system.
- */
-
- /**
- * Create a single coordinates system.
- *
- * @param {module:echarts/coord/single/AxisModel} axisModel
- * @param {module:echarts/model/Global} ecModel
- * @param {module:echarts/ExtensionAPI} api
- */
- function Single(axisModel, ecModel, api) {
- /**
- * @type {string}
- * @readOnly
- */
- this.dimension = 'single';
- /**
- * Add it just for draw tooltip.
- *
- * @type {Array.<string>}
- * @readOnly
- */
-
- this.dimensions = ['single'];
- /**
- * @private
- * @type {module:echarts/coord/single/SingleAxis}.
- */
-
- this._axis = null;
- /**
- * @private
- * @type {module:zrender/core/BoundingRect}
- */
-
- this._rect;
-
- this._init(axisModel, ecModel, api);
- /**
- * @type {module:echarts/coord/single/AxisModel}
- */
-
-
- this.model = axisModel;
- }
-
- Single.prototype = {
- type: 'singleAxis',
- axisPointerEnabled: true,
- constructor: Single,
-
- /**
- * Initialize single coordinate system.
- *
- * @param {module:echarts/coord/single/AxisModel} axisModel
- * @param {module:echarts/model/Global} ecModel
- * @param {module:echarts/ExtensionAPI} api
- * @private
- */
- _init: function (axisModel, ecModel, api) {
- var dim = this.dimension;
- var axis = new SingleAxis(dim, axisHelper.createScaleByModel(axisModel), [0, 0], axisModel.get('type'), axisModel.get('position'));
- var isCategory = axis.type === 'category';
- axis.onBand = isCategory && axisModel.get('boundaryGap');
- axis.inverse = axisModel.get('inverse');
- axis.orient = axisModel.get('orient');
- axisModel.axis = axis;
- axis.model = axisModel;
- axis.coordinateSystem = this;
- this._axis = axis;
- },
-
- /**
- * Update axis scale after data processed
- * @param {module:echarts/model/Global} ecModel
- * @param {module:echarts/ExtensionAPI} api
- */
- update: function (ecModel, api) {
- ecModel.eachSeries(function (seriesModel) {
- if (seriesModel.coordinateSystem === this) {
- var data = seriesModel.getData();
- each(data.mapDimension(this.dimension, true), function (dim) {
- this._axis.scale.unionExtentFromData(data, dim);
- }, this);
- axisHelper.niceScaleExtent(this._axis.scale, this._axis.model);
- }
- }, this);
- },
-
- /**
- * Resize the single coordinate system.
- *
- * @param {module:echarts/coord/single/AxisModel} axisModel
- * @param {module:echarts/ExtensionAPI} api
- */
- resize: function (axisModel, api) {
- this._rect = getLayoutRect({
- left: axisModel.get('left'),
- top: axisModel.get('top'),
- right: axisModel.get('right'),
- bottom: axisModel.get('bottom'),
- width: axisModel.get('width'),
- height: axisModel.get('height')
- }, {
- width: api.getWidth(),
- height: api.getHeight()
- });
-
- this._adjustAxis();
- },
-
- /**
- * @return {module:zrender/core/BoundingRect}
- */
- getRect: function () {
- return this._rect;
- },
-
- /**
- * @private
- */
- _adjustAxis: function () {
- var rect = this._rect;
- var axis = this._axis;
- var isHorizontal = axis.isHorizontal();
- var extent = isHorizontal ? [0, rect.width] : [0, rect.height];
- var idx = axis.reverse ? 1 : 0;
- axis.setExtent(extent[idx], extent[1 - idx]);
-
- this._updateAxisTransform(axis, isHorizontal ? rect.x : rect.y);
- },
-
- /**
- * @param {module:echarts/coord/single/SingleAxis} axis
- * @param {number} coordBase
- */
- _updateAxisTransform: function (axis, coordBase) {
- var axisExtent = axis.getExtent();
- var extentSum = axisExtent[0] + axisExtent[1];
- var isHorizontal = axis.isHorizontal();
- axis.toGlobalCoord = isHorizontal ? function (coord) {
- return coord + coordBase;
- } : function (coord) {
- return extentSum - coord + coordBase;
- };
- axis.toLocalCoord = isHorizontal ? function (coord) {
- return coord - coordBase;
- } : function (coord) {
- return extentSum - coord + coordBase;
- };
- },
-
- /**
- * Get axis.
- *
- * @return {module:echarts/coord/single/SingleAxis}
- */
- getAxis: function () {
- return this._axis;
- },
-
- /**
- * Get axis, add it just for draw tooltip.
- *
- * @return {[type]} [description]
- */
- getBaseAxis: function () {
- return this._axis;
- },
-
- /**
- * @return {Array.<module:echarts/coord/Axis>}
- */
- getAxes: function () {
- return [this._axis];
- },
-
- /**
- * @return {Object} {baseAxes: [], otherAxes: []}
- */
- getTooltipAxes: function () {
- return {
- baseAxes: [this.getAxis()]
- };
- },
-
- /**
- * If contain point.
- *
- * @param {Array.<number>} point
- * @return {boolean}
- */
- containPoint: function (point) {
- var rect = this.getRect();
- var axis = this.getAxis();
- var orient = axis.orient;
-
- if (orient === 'horizontal') {
- return axis.contain(axis.toLocalCoord(point[0])) && point[1] >= rect.y && point[1] <= rect.y + rect.height;
- } else {
- return axis.contain(axis.toLocalCoord(point[1])) && point[0] >= rect.y && point[0] <= rect.y + rect.height;
- }
- },
-
- /**
- * @param {Array.<number>} point
- * @return {Array.<number>}
- */
- pointToData: function (point) {
- var axis = this.getAxis();
- return [axis.coordToData(axis.toLocalCoord(point[axis.orient === 'horizontal' ? 0 : 1]))];
- },
-
- /**
- * Convert the series data to concrete point.
- *
- * @param {number|Array.<number>} val
- * @return {Array.<number>}
- */
- dataToPoint: function (val) {
- var axis = this.getAxis();
- var rect = this.getRect();
- var pt = [];
- var idx = axis.orient === 'horizontal' ? 0 : 1;
-
- if (val instanceof Array) {
- val = val[0];
- }
-
- pt[idx] = axis.toGlobalCoord(axis.dataToCoord(+val));
- pt[1 - idx] = idx === 0 ? rect.y + rect.height / 2 : rect.x + rect.width / 2;
- return pt;
- }
- };
- var _default = Single;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2689:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var Axis = __webpack_require__(1484);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @constructor module:echarts/coord/single/SingleAxis
- * @extends {module:echarts/coord/Axis}
- * @param {string} dim
- * @param {*} scale
- * @param {Array.<number>} coordExtent
- * @param {string} axisType
- * @param {string} position
- */
- var SingleAxis = function (dim, scale, coordExtent, axisType, position) {
- Axis.call(this, dim, scale, coordExtent);
- /**
- * Axis type
- * - 'category'
- * - 'value'
- * - 'time'
- * - 'log'
- * @type {string}
- */
-
- this.type = axisType || 'value';
- /**
- * Axis position
- * - 'top'
- * - 'bottom'
- * - 'left'
- * - 'right'
- * @type {string}
- */
-
- this.position = position || 'bottom';
- /**
- * Axis orient
- * - 'horizontal'
- * - 'vertical'
- * @type {[type]}
- */
-
- this.orient = null;
- };
-
- SingleAxis.prototype = {
- constructor: SingleAxis,
-
- /**
- * Axis model
- * @type {module:echarts/coord/single/AxisModel}
- */
- model: null,
-
- /**
- * Judge the orient of the axis.
- * @return {boolean}
- */
- isHorizontal: function () {
- var position = this.position;
- return position === 'top' || position === 'bottom';
- },
-
- /**
- * @override
- */
- pointToData: function (point, clamp) {
- return this.coordinateSystem.pointToData(point, clamp)[0];
- },
-
- /**
- * Convert the local coord(processed by dataToCoord())
- * to global coord(concrete pixel coord).
- * designated by module:echarts/coord/single/Single.
- * @type {Function}
- */
- toGlobalCoord: null,
-
- /**
- * Convert the global coord to local coord.
- * designated by module:echarts/coord/single/Single.
- * @type {Function}
- */
- toLocalCoord: null
- };
- zrUtil.inherits(SingleAxis, Axis);
- var _default = SingleAxis;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2690:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var AxisBuilder = __webpack_require__(1485);
-
- var graphic = __webpack_require__(906);
-
- var singleAxisHelper = __webpack_require__(2317);
-
- var AxisView = __webpack_require__(1521);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var axisBuilderAttrs = ['axisLine', 'axisTickLabel', 'axisName'];
- var selfBuilderAttr = 'splitLine';
- var SingleAxisView = AxisView.extend({
- type: 'singleAxis',
- axisPointerClass: 'SingleAxisPointer',
- render: function (axisModel, ecModel, api, payload) {
- var group = this.group;
- group.removeAll();
- var layout = singleAxisHelper.layout(axisModel);
- var axisBuilder = new AxisBuilder(axisModel, layout);
- zrUtil.each(axisBuilderAttrs, axisBuilder.add, axisBuilder);
- group.add(axisBuilder.getGroup());
-
- if (axisModel.get(selfBuilderAttr + '.show')) {
- this['_' + selfBuilderAttr](axisModel);
- }
-
- SingleAxisView.superCall(this, 'render', axisModel, ecModel, api, payload);
- },
- _splitLine: function (axisModel) {
- var axis = axisModel.axis;
-
- if (axis.scale.isBlank()) {
- return;
- }
-
- var splitLineModel = axisModel.getModel('splitLine');
- var lineStyleModel = splitLineModel.getModel('lineStyle');
- var lineWidth = lineStyleModel.get('width');
- var lineColors = lineStyleModel.get('color');
- lineColors = lineColors instanceof Array ? lineColors : [lineColors];
- var gridRect = axisModel.coordinateSystem.getRect();
- var isHorizontal = axis.isHorizontal();
- var splitLines = [];
- var lineCount = 0;
- var ticksCoords = axis.getTicksCoords({
- tickModel: splitLineModel
- });
- var p1 = [];
- var p2 = [];
-
- for (var i = 0; i < ticksCoords.length; ++i) {
- var tickCoord = axis.toGlobalCoord(ticksCoords[i].coord);
-
- if (isHorizontal) {
- p1[0] = tickCoord;
- p1[1] = gridRect.y;
- p2[0] = tickCoord;
- p2[1] = gridRect.y + gridRect.height;
- } else {
- p1[0] = gridRect.x;
- p1[1] = tickCoord;
- p2[0] = gridRect.x + gridRect.width;
- p2[1] = tickCoord;
- }
-
- var colorIndex = lineCount++ % lineColors.length;
- splitLines[colorIndex] = splitLines[colorIndex] || [];
- splitLines[colorIndex].push(new graphic.Line({
- subPixelOptimize: true,
- shape: {
- x1: p1[0],
- y1: p1[1],
- x2: p2[0],
- y2: p2[1]
- },
- style: {
- lineWidth: lineWidth
- },
- silent: true
- }));
- }
-
- for (var i = 0; i < splitLines.length; ++i) {
- this.group.add(graphic.mergePath(splitLines[i], {
- style: {
- stroke: lineColors[i % lineColors.length],
- lineDash: lineStyleModel.getLineDash(lineWidth),
- lineWidth: lineWidth
- },
- silent: true
- }));
- }
- }
- });
- var _default = SingleAxisView;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2691:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var ComponentModel = __webpack_require__(1321);
-
- var axisModelCreator = __webpack_require__(1791);
-
- var axisModelCommonMixin = __webpack_require__(1603);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var AxisModel = ComponentModel.extend({
- type: 'singleAxis',
- layoutMode: 'box',
-
- /**
- * @type {module:echarts/coord/single/SingleAxis}
- */
- axis: null,
-
- /**
- * @type {module:echarts/coord/single/Single}
- */
- coordinateSystem: null,
-
- /**
- * @override
- */
- getCoordSysModel: function () {
- return this;
- }
- });
- var defaultOption = {
- left: '5%',
- top: '5%',
- right: '5%',
- bottom: '5%',
- type: 'value',
- position: 'bottom',
- orient: 'horizontal',
- axisLine: {
- show: true,
- lineStyle: {
- width: 1,
- type: 'solid'
- }
- },
- // Single coordinate system and single axis is the,
- // which is used as the parent tooltip model.
- // same model, so we set default tooltip show as true.
- tooltip: {
- show: true
- },
- axisTick: {
- show: true,
- length: 6,
- lineStyle: {
- width: 1
- }
- },
- axisLabel: {
- show: true,
- interval: 'auto'
- },
- splitLine: {
- show: true,
- lineStyle: {
- type: 'dashed',
- opacity: 0.2
- }
- }
- };
-
- function getAxisType(axisName, option) {
- return option.type || (option.data ? 'category' : 'value');
- }
-
- zrUtil.merge(AxisModel.prototype, axisModelCommonMixin);
- axisModelCreator('single', AxisModel, getAxisType, defaultOption);
- var _default = AxisModel;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2692:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var _model = __webpack_require__(1064);
-
- var makeInner = _model.makeInner;
-
- var modelHelper = __webpack_require__(1792);
-
- var findPointFromSeries = __webpack_require__(2318);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var each = zrUtil.each;
- var curry = zrUtil.curry;
- var inner = makeInner();
- /**
- * Basic logic: check all axis, if they do not demand show/highlight,
- * then hide/downplay them.
- *
- * @param {Object} coordSysAxesInfo
- * @param {Object} payload
- * @param {string} [payload.currTrigger] 'click' | 'mousemove' | 'leave'
- * @param {Array.<number>} [payload.x] x and y, which are mandatory, specify a point to
- * trigger axisPointer and tooltip.
- * @param {Array.<number>} [payload.y] x and y, which are mandatory, specify a point to
- * trigger axisPointer and tooltip.
- * @param {Object} [payload.seriesIndex] finder, optional, restrict target axes.
- * @param {Object} [payload.dataIndex] finder, restrict target axes.
- * @param {Object} [payload.axesInfo] finder, restrict target axes.
- * [{
- * axisDim: 'x'|'y'|'angle'|...,
- * axisIndex: ...,
- * value: ...
- * }, ...]
- * @param {Function} [payload.dispatchAction]
- * @param {Object} [payload.tooltipOption]
- * @param {Object|Array.<number>|Function} [payload.position] Tooltip position,
- * which can be specified in dispatchAction
- * @param {module:echarts/model/Global} ecModel
- * @param {module:echarts/ExtensionAPI} api
- * @return {Object} content of event obj for echarts.connect.
- */
-
- function _default(payload, ecModel, api) {
- var currTrigger = payload.currTrigger;
- var point = [payload.x, payload.y];
- var finder = payload;
- var dispatchAction = payload.dispatchAction || zrUtil.bind(api.dispatchAction, api);
- var coordSysAxesInfo = ecModel.getComponent('axisPointer').coordSysAxesInfo; // Pending
- // See #6121. But we are not able to reproduce it yet.
-
- if (!coordSysAxesInfo) {
- return;
- }
-
- if (illegalPoint(point)) {
- // Used in the default behavior of `connection`: use the sample seriesIndex
- // and dataIndex. And also used in the tooltipView trigger.
- point = findPointFromSeries({
- seriesIndex: finder.seriesIndex,
- // Do not use dataIndexInside from other ec instance.
- // FIXME: auto detect it?
- dataIndex: finder.dataIndex
- }, ecModel).point;
- }
-
- var isIllegalPoint = illegalPoint(point); // Axis and value can be specified when calling dispatchAction({type: 'updateAxisPointer'}).
- // Notice: In this case, it is difficult to get the `point` (which is necessary to show
- // tooltip, so if point is not given, we just use the point found by sample seriesIndex
- // and dataIndex.
-
- var inputAxesInfo = finder.axesInfo;
- var axesInfo = coordSysAxesInfo.axesInfo;
- var shouldHide = currTrigger === 'leave' || illegalPoint(point);
- var outputFinder = {};
- var showValueMap = {};
- var dataByCoordSys = {
- list: [],
- map: {}
- };
- var updaters = {
- showPointer: curry(showPointer, showValueMap),
- showTooltip: curry(showTooltip, dataByCoordSys)
- }; // Process for triggered axes.
-
- each(coordSysAxesInfo.coordSysMap, function (coordSys, coordSysKey) {
- // If a point given, it must be contained by the coordinate system.
- var coordSysContainsPoint = isIllegalPoint || coordSys.containPoint(point);
- each(coordSysAxesInfo.coordSysAxesInfo[coordSysKey], function (axisInfo, key) {
- var axis = axisInfo.axis;
- var inputAxisInfo = findInputAxisInfo(inputAxesInfo, axisInfo); // If no inputAxesInfo, no axis is restricted.
-
- if (!shouldHide && coordSysContainsPoint && (!inputAxesInfo || inputAxisInfo)) {
- var val = inputAxisInfo && inputAxisInfo.value;
-
- if (val == null && !isIllegalPoint) {
- val = axis.pointToData(point);
- }
-
- val != null && processOnAxis(axisInfo, val, updaters, false, outputFinder);
- }
- });
- }); // Process for linked axes.
-
- var linkTriggers = {};
- each(axesInfo, function (tarAxisInfo, tarKey) {
- var linkGroup = tarAxisInfo.linkGroup; // If axis has been triggered in the previous stage, it should not be triggered by link.
-
- if (linkGroup && !showValueMap[tarKey]) {
- each(linkGroup.axesInfo, function (srcAxisInfo, srcKey) {
- var srcValItem = showValueMap[srcKey]; // If srcValItem exist, source axis is triggered, so link to target axis.
-
- if (srcAxisInfo !== tarAxisInfo && srcValItem) {
- var val = srcValItem.value;
- linkGroup.mapper && (val = tarAxisInfo.axis.scale.parse(linkGroup.mapper(val, makeMapperParam(srcAxisInfo), makeMapperParam(tarAxisInfo))));
- linkTriggers[tarAxisInfo.key] = val;
- }
- });
- }
- });
- each(linkTriggers, function (val, tarKey) {
- processOnAxis(axesInfo[tarKey], val, updaters, true, outputFinder);
- });
- updateModelActually(showValueMap, axesInfo, outputFinder);
- dispatchTooltipActually(dataByCoordSys, point, payload, dispatchAction);
- dispatchHighDownActually(axesInfo, dispatchAction, api);
- return outputFinder;
- }
-
- function processOnAxis(axisInfo, newValue, updaters, dontSnap, outputFinder) {
- var axis = axisInfo.axis;
-
- if (axis.scale.isBlank() || !axis.containData(newValue)) {
- return;
- }
-
- if (!axisInfo.involveSeries) {
- updaters.showPointer(axisInfo, newValue);
- return;
- } // Heavy calculation. So put it after axis.containData checking.
-
-
- var payloadInfo = buildPayloadsBySeries(newValue, axisInfo);
- var payloadBatch = payloadInfo.payloadBatch;
- var snapToValue = payloadInfo.snapToValue; // Fill content of event obj for echarts.connect.
- // By defualt use the first involved series data as a sample to connect.
-
- if (payloadBatch[0] && outputFinder.seriesIndex == null) {
- zrUtil.extend(outputFinder, payloadBatch[0]);
- } // If no linkSource input, this process is for collecting link
- // target, where snap should not be accepted.
-
-
- if (!dontSnap && axisInfo.snap) {
- if (axis.containData(snapToValue) && snapToValue != null) {
- newValue = snapToValue;
- }
- }
-
- updaters.showPointer(axisInfo, newValue, payloadBatch, outputFinder); // Tooltip should always be snapToValue, otherwise there will be
- // incorrect "axis value ~ series value" mapping displayed in tooltip.
-
- updaters.showTooltip(axisInfo, payloadInfo, snapToValue);
- }
-
- function buildPayloadsBySeries(value, axisInfo) {
- var axis = axisInfo.axis;
- var dim = axis.dim;
- var snapToValue = value;
- var payloadBatch = [];
- var minDist = Number.MAX_VALUE;
- var minDiff = -1;
- each(axisInfo.seriesModels, function (series, idx) {
- var dataDim = series.getData().mapDimension(dim, true);
- var seriesNestestValue;
- var dataIndices;
-
- if (series.getAxisTooltipData) {
- var result = series.getAxisTooltipData(dataDim, value, axis);
- dataIndices = result.dataIndices;
- seriesNestestValue = result.nestestValue;
- } else {
- dataIndices = series.getData().indicesOfNearest(dataDim[0], value, // Add a threshold to avoid find the wrong dataIndex
- // when data length is not same.
- // false,
- axis.type === 'category' ? 0.5 : null);
-
- if (!dataIndices.length) {
- return;
- }
-
- seriesNestestValue = series.getData().get(dataDim[0], dataIndices[0]);
- }
-
- if (seriesNestestValue == null || !isFinite(seriesNestestValue)) {
- return;
- }
-
- var diff = value - seriesNestestValue;
- var dist = Math.abs(diff); // Consider category case
-
- if (dist <= minDist) {
- if (dist < minDist || diff >= 0 && minDiff < 0) {
- minDist = dist;
- minDiff = diff;
- snapToValue = seriesNestestValue;
- payloadBatch.length = 0;
- }
-
- each(dataIndices, function (dataIndex) {
- payloadBatch.push({
- seriesIndex: series.seriesIndex,
- dataIndexInside: dataIndex,
- dataIndex: series.getData().getRawIndex(dataIndex)
- });
- });
- }
- });
- return {
- payloadBatch: payloadBatch,
- snapToValue: snapToValue
- };
- }
-
- function showPointer(showValueMap, axisInfo, value, payloadBatch) {
- showValueMap[axisInfo.key] = {
- value: value,
- payloadBatch: payloadBatch
- };
- }
-
- function showTooltip(dataByCoordSys, axisInfo, payloadInfo, value) {
- var payloadBatch = payloadInfo.payloadBatch;
- var axis = axisInfo.axis;
- var axisModel = axis.model;
- var axisPointerModel = axisInfo.axisPointerModel; // If no data, do not create anything in dataByCoordSys,
- // whose length will be used to judge whether dispatch action.
-
- if (!axisInfo.triggerTooltip || !payloadBatch.length) {
- return;
- }
-
- var coordSysModel = axisInfo.coordSys.model;
- var coordSysKey = modelHelper.makeKey(coordSysModel);
- var coordSysItem = dataByCoordSys.map[coordSysKey];
-
- if (!coordSysItem) {
- coordSysItem = dataByCoordSys.map[coordSysKey] = {
- coordSysId: coordSysModel.id,
- coordSysIndex: coordSysModel.componentIndex,
- coordSysType: coordSysModel.type,
- coordSysMainType: coordSysModel.mainType,
- dataByAxis: []
- };
- dataByCoordSys.list.push(coordSysItem);
- }
-
- coordSysItem.dataByAxis.push({
- axisDim: axis.dim,
- axisIndex: axisModel.componentIndex,
- axisType: axisModel.type,
- axisId: axisModel.id,
- value: value,
- // Caustion: viewHelper.getValueLabel is actually on "view stage", which
- // depends that all models have been updated. So it should not be performed
- // here. Considering axisPointerModel used here is volatile, which is hard
- // to be retrieve in TooltipView, we prepare parameters here.
- valueLabelOpt: {
- precision: axisPointerModel.get('label.precision'),
- formatter: axisPointerModel.get('label.formatter')
- },
- seriesDataIndices: payloadBatch.slice()
- });
- }
-
- function updateModelActually(showValueMap, axesInfo, outputFinder) {
- var outputAxesInfo = outputFinder.axesInfo = []; // Basic logic: If no 'show' required, 'hide' this axisPointer.
-
- each(axesInfo, function (axisInfo, key) {
- var option = axisInfo.axisPointerModel.option;
- var valItem = showValueMap[key];
-
- if (valItem) {
- !axisInfo.useHandle && (option.status = 'show');
- option.value = valItem.value; // For label formatter param and highlight.
-
- option.seriesDataIndices = (valItem.payloadBatch || []).slice();
- } // When always show (e.g., handle used), remain
- // original value and status.
- else {
- // If hide, value still need to be set, consider
- // click legend to toggle axis blank.
- !axisInfo.useHandle && (option.status = 'hide');
- } // If status is 'hide', should be no info in payload.
-
-
- option.status === 'show' && outputAxesInfo.push({
- axisDim: axisInfo.axis.dim,
- axisIndex: axisInfo.axis.model.componentIndex,
- value: option.value
- });
- });
- }
-
- function dispatchTooltipActually(dataByCoordSys, point, payload, dispatchAction) {
- // Basic logic: If no showTip required, hideTip will be dispatched.
- if (illegalPoint(point) || !dataByCoordSys.list.length) {
- dispatchAction({
- type: 'hideTip'
- });
- return;
- } // In most case only one axis (or event one series is used). It is
- // convinient to fetch payload.seriesIndex and payload.dataIndex
- // dirtectly. So put the first seriesIndex and dataIndex of the first
- // axis on the payload.
-
-
- var sampleItem = ((dataByCoordSys.list[0].dataByAxis[0] || {}).seriesDataIndices || [])[0] || {};
- dispatchAction({
- type: 'showTip',
- escapeConnect: true,
- x: point[0],
- y: point[1],
- tooltipOption: payload.tooltipOption,
- position: payload.position,
- dataIndexInside: sampleItem.dataIndexInside,
- dataIndex: sampleItem.dataIndex,
- seriesIndex: sampleItem.seriesIndex,
- dataByCoordSys: dataByCoordSys.list
- });
- }
-
- function dispatchHighDownActually(axesInfo, dispatchAction, api) {
- // FIXME
- // highlight status modification shoule be a stage of main process?
- // (Consider confilct (e.g., legend and axisPointer) and setOption)
- var zr = api.getZr();
- var highDownKey = 'axisPointerLastHighlights';
- var lastHighlights = inner(zr)[highDownKey] || {};
- var newHighlights = inner(zr)[highDownKey] = {}; // Update highlight/downplay status according to axisPointer model.
- // Build hash map and remove duplicate incidentally.
-
- each(axesInfo, function (axisInfo, key) {
- var option = axisInfo.axisPointerModel.option;
- option.status === 'show' && each(option.seriesDataIndices, function (batchItem) {
- var key = batchItem.seriesIndex + ' | ' + batchItem.dataIndex;
- newHighlights[key] = batchItem;
- });
- }); // Diff.
-
- var toHighlight = [];
- var toDownplay = [];
- zrUtil.each(lastHighlights, function (batchItem, key) {
- !newHighlights[key] && toDownplay.push(batchItem);
- });
- zrUtil.each(newHighlights, function (batchItem, key) {
- !lastHighlights[key] && toHighlight.push(batchItem);
- });
- toDownplay.length && api.dispatchAction({
- type: 'downplay',
- escapeConnect: true,
- batch: toDownplay
- });
- toHighlight.length && api.dispatchAction({
- type: 'highlight',
- escapeConnect: true,
- batch: toHighlight
- });
- }
-
- function findInputAxisInfo(inputAxesInfo, axisInfo) {
- for (var i = 0; i < (inputAxesInfo || []).length; i++) {
- var inputAxisInfo = inputAxesInfo[i];
-
- if (axisInfo.axis.dim === inputAxisInfo.axisDim && axisInfo.axis.model.componentIndex === inputAxisInfo.axisIndex) {
- return inputAxisInfo;
- }
- }
- }
-
- function makeMapperParam(axisInfo) {
- var axisModel = axisInfo.axis.model;
- var item = {};
- var dim = item.axisDim = axisInfo.axis.dim;
- item.axisIndex = item[dim + 'AxisIndex'] = axisModel.componentIndex;
- item.axisName = item[dim + 'AxisName'] = axisModel.name;
- item.axisId = item[dim + 'AxisId'] = axisModel.id;
- return item;
- }
-
- function illegalPoint(point) {
- return !point || point[0] == null || isNaN(point[0]) || point[1] == null || isNaN(point[1]);
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2693:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var AxisPointerModel = echarts.extendComponentModel({
- type: 'axisPointer',
- coordSysAxesInfo: null,
- defaultOption: {
- // 'auto' means that show when triggered by tooltip or handle.
- show: 'auto',
- // 'click' | 'mousemove' | 'none'
- triggerOn: null,
- // set default in AxisPonterView.js
- zlevel: 0,
- z: 50,
- type: 'line',
- // 'line' 'shadow' 'cross' 'none'.
- // axispointer triggered by tootip determine snap automatically,
- // see `modelHelper`.
- snap: false,
- triggerTooltip: true,
- value: null,
- status: null,
- // Init value depends on whether handle is used.
- // [group0, group1, ...]
- // Each group can be: {
- // mapper: function () {},
- // singleTooltip: 'multiple', // 'multiple' or 'single'
- // xAxisId: ...,
- // yAxisName: ...,
- // angleAxisIndex: ...
- // }
- // mapper: can be ignored.
- // input: {axisInfo, value}
- // output: {axisInfo, value}
- link: [],
- // Do not set 'auto' here, otherwise global animation: false
- // will not effect at this axispointer.
- animation: null,
- animationDurationUpdate: 200,
- lineStyle: {
- color: '#aaa',
- width: 1,
- type: 'solid'
- },
- shadowStyle: {
- color: 'rgba(150,150,150,0.3)'
- },
- label: {
- show: true,
- formatter: null,
- // string | Function
- precision: 'auto',
- // Or a number like 0, 1, 2 ...
- margin: 3,
- color: '#fff',
- padding: [5, 7, 5, 7],
- backgroundColor: 'auto',
- // default: axis line color
- borderColor: null,
- borderWidth: 0,
- shadowBlur: 3,
- shadowColor: '#aaa' // Considering applicability, common style should
- // better not have shadowOffset.
- // shadowOffsetX: 0,
- // shadowOffsetY: 2
-
- },
- handle: {
- show: false,
-
- /* eslint-disable */
- icon: 'M10.7,11.9v-1.3H9.3v1.3c-4.9,0.3-8.8,4.4-8.8,9.4c0,5,3.9,9.1,8.8,9.4h1.3c4.9-0.3,8.8-4.4,8.8-9.4C19.5,16.3,15.6,12.2,10.7,11.9z M13.3,24.4H6.7v-1.2h6.6z M13.3,22H6.7v-1.2h6.6z M13.3,19.6H6.7v-1.2h6.6z',
- // jshint ignore:line
-
- /* eslint-enable */
- size: 45,
- // handle margin is from symbol center to axis, which is stable when circular move.
- margin: 50,
- // color: '#1b8bbd'
- // color: '#2f4554'
- color: '#333',
- shadowBlur: 3,
- shadowColor: '#aaa',
- shadowOffsetX: 0,
- shadowOffsetY: 2,
- // For mobile performance
- throttle: 40
- }
- }
- });
- var _default = AxisPointerModel;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2694:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var globalListener = __webpack_require__(2319);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var AxisPointerView = echarts.extendComponentView({
- type: 'axisPointer',
- render: function (globalAxisPointerModel, ecModel, api) {
- var globalTooltipModel = ecModel.getComponent('tooltip');
- var triggerOn = globalAxisPointerModel.get('triggerOn') || globalTooltipModel && globalTooltipModel.get('triggerOn') || 'mousemove|click'; // Register global listener in AxisPointerView to enable
- // AxisPointerView to be independent to Tooltip.
-
- globalListener.register('axisPointer', api, function (currTrigger, e, dispatchAction) {
- // If 'none', it is not controlled by mouse totally.
- if (triggerOn !== 'none' && (currTrigger === 'leave' || triggerOn.indexOf(currTrigger) >= 0)) {
- dispatchAction({
- type: 'updateAxisPointer',
- currTrigger: currTrigger,
- x: e && e.offsetX,
- y: e && e.offsetY
- });
- }
- });
- },
-
- /**
- * @override
- */
- remove: function (ecModel, api) {
- globalListener.unregister(api.getZr(), 'axisPointer');
- AxisPointerView.superApply(this._model, 'remove', arguments);
- },
-
- /**
- * @override
- */
- dispose: function (ecModel, api) {
- globalListener.unregister('axisPointer', api);
- AxisPointerView.superApply(this._model, 'dispose', arguments);
- }
- });
- var _default = AxisPointerView;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2695:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var BaseAxisPointer = __webpack_require__(1916);
-
- var viewHelper = __webpack_require__(1796);
-
- var singleAxisHelper = __webpack_require__(2317);
-
- var AxisView = __webpack_require__(1521);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var XY = ['x', 'y'];
- var WH = ['width', 'height'];
- var SingleAxisPointer = BaseAxisPointer.extend({
- /**
- * @override
- */
- makeElOption: function (elOption, value, axisModel, axisPointerModel, api) {
- var axis = axisModel.axis;
- var coordSys = axis.coordinateSystem;
- var otherExtent = getGlobalExtent(coordSys, 1 - getPointDimIndex(axis));
- var pixelValue = coordSys.dataToPoint(value)[0];
- var axisPointerType = axisPointerModel.get('type');
-
- if (axisPointerType && axisPointerType !== 'none') {
- var elStyle = viewHelper.buildElStyle(axisPointerModel);
- var pointerOption = pointerShapeBuilder[axisPointerType](axis, pixelValue, otherExtent);
- pointerOption.style = elStyle;
- elOption.graphicKey = pointerOption.type;
- elOption.pointer = pointerOption;
- }
-
- var layoutInfo = singleAxisHelper.layout(axisModel);
- viewHelper.buildCartesianSingleLabelElOption(value, elOption, layoutInfo, axisModel, axisPointerModel, api);
- },
-
- /**
- * @override
- */
- getHandleTransform: function (value, axisModel, axisPointerModel) {
- var layoutInfo = singleAxisHelper.layout(axisModel, {
- labelInside: false
- });
- layoutInfo.labelMargin = axisPointerModel.get('handle.margin');
- return {
- position: viewHelper.getTransformedPosition(axisModel.axis, value, layoutInfo),
- rotation: layoutInfo.rotation + (layoutInfo.labelDirection < 0 ? Math.PI : 0)
- };
- },
-
- /**
- * @override
- */
- updateHandleTransform: function (transform, delta, axisModel, axisPointerModel) {
- var axis = axisModel.axis;
- var coordSys = axis.coordinateSystem;
- var dimIndex = getPointDimIndex(axis);
- var axisExtent = getGlobalExtent(coordSys, dimIndex);
- var currPosition = transform.position;
- currPosition[dimIndex] += delta[dimIndex];
- currPosition[dimIndex] = Math.min(axisExtent[1], currPosition[dimIndex]);
- currPosition[dimIndex] = Math.max(axisExtent[0], currPosition[dimIndex]);
- var otherExtent = getGlobalExtent(coordSys, 1 - dimIndex);
- var cursorOtherValue = (otherExtent[1] + otherExtent[0]) / 2;
- var cursorPoint = [cursorOtherValue, cursorOtherValue];
- cursorPoint[dimIndex] = currPosition[dimIndex];
- return {
- position: currPosition,
- rotation: transform.rotation,
- cursorPoint: cursorPoint,
- tooltipOption: {
- verticalAlign: 'middle'
- }
- };
- }
- });
- var pointerShapeBuilder = {
- line: function (axis, pixelValue, otherExtent) {
- var targetShape = viewHelper.makeLineShape([pixelValue, otherExtent[0]], [pixelValue, otherExtent[1]], getPointDimIndex(axis));
- return {
- type: 'Line',
- subPixelOptimize: true,
- shape: targetShape
- };
- },
- shadow: function (axis, pixelValue, otherExtent) {
- var bandWidth = axis.getBandWidth();
- var span = otherExtent[1] - otherExtent[0];
- return {
- type: 'Rect',
- shape: viewHelper.makeRectShape([pixelValue - bandWidth / 2, otherExtent[0]], [bandWidth, span], getPointDimIndex(axis))
- };
- }
- };
-
- function getPointDimIndex(axis) {
- return axis.isHorizontal() ? 0 : 1;
- }
-
- function getGlobalExtent(coordSys, dimIndex) {
- var rect = coordSys.getRect();
- return [rect[XY[dimIndex]], rect[XY[dimIndex]] + rect[WH[dimIndex]]];
- }
-
- AxisView.registerAxisPointerClass('SingleAxisPointer', SingleAxisPointer);
- var _default = SingleAxisPointer;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2696:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var SeriesModel = __webpack_require__(1322);
-
- var createDimensions = __webpack_require__(1602);
-
- var _dimensionHelper = __webpack_require__(1660);
-
- var getDimensionTypeByAxis = _dimensionHelper.getDimensionTypeByAxis;
-
- var List = __webpack_require__(1403);
-
- var zrUtil = __webpack_require__(864);
-
- var _model = __webpack_require__(1064);
-
- var groupData = _model.groupData;
-
- var _format = __webpack_require__(1186);
-
- var encodeHTML = _format.encodeHTML;
-
- var LegendVisualProvider = __webpack_require__(1665);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var DATA_NAME_INDEX = 2;
- var ThemeRiverSeries = SeriesModel.extend({
- type: 'series.themeRiver',
- dependencies: ['singleAxis'],
-
- /**
- * @readOnly
- * @type {module:zrender/core/util#HashMap}
- */
- nameMap: null,
-
- /**
- * @override
- */
- init: function (option) {
- // eslint-disable-next-line
- ThemeRiverSeries.superApply(this, 'init', arguments); // Put this function here is for the sake of consistency of code style.
- // Enable legend selection for each data item
- // Use a function instead of direct access because data reference may changed
-
- this.legendVisualProvider = new LegendVisualProvider(zrUtil.bind(this.getData, this), zrUtil.bind(this.getRawData, this));
- },
-
- /**
- * If there is no value of a certain point in the time for some event,set it value to 0.
- *
- * @param {Array} data initial data in the option
- * @return {Array}
- */
- fixData: function (data) {
- var rawDataLength = data.length; // grouped data by name
-
- var groupResult = groupData(data, function (item) {
- return item[2];
- });
- var layData = [];
- groupResult.buckets.each(function (items, key) {
- layData.push({
- name: key,
- dataList: items
- });
- });
- var layerNum = layData.length;
- var largestLayer = -1;
- var index = -1;
-
- for (var i = 0; i < layerNum; ++i) {
- var len = layData[i].dataList.length;
-
- if (len > largestLayer) {
- largestLayer = len;
- index = i;
- }
- }
-
- for (var k = 0; k < layerNum; ++k) {
- if (k === index) {
- continue;
- }
-
- var name = layData[k].name;
-
- for (var j = 0; j < largestLayer; ++j) {
- var timeValue = layData[index].dataList[j][0];
- var length = layData[k].dataList.length;
- var keyIndex = -1;
-
- for (var l = 0; l < length; ++l) {
- var value = layData[k].dataList[l][0];
-
- if (value === timeValue) {
- keyIndex = l;
- break;
- }
- }
-
- if (keyIndex === -1) {
- data[rawDataLength] = [];
- data[rawDataLength][0] = timeValue;
- data[rawDataLength][1] = 0;
- data[rawDataLength][2] = name;
- rawDataLength++;
- }
- }
- }
-
- return data;
- },
-
- /**
- * @override
- * @param {Object} option the initial option that user gived
- * @param {module:echarts/model/Model} ecModel the model object for themeRiver option
- * @return {module:echarts/data/List}
- */
- getInitialData: function (option, ecModel) {
- var singleAxisModel = ecModel.queryComponents({
- mainType: 'singleAxis',
- index: this.get('singleAxisIndex'),
- id: this.get('singleAxisId')
- })[0];
- var axisType = singleAxisModel.get('type'); // filter the data item with the value of label is undefined
-
- var filterData = zrUtil.filter(option.data, function (dataItem) {
- return dataItem[2] !== undefined;
- }); // ??? TODO design a stage to transfer data for themeRiver and lines?
-
- var data = this.fixData(filterData || []);
- var nameList = [];
- var nameMap = this.nameMap = zrUtil.createHashMap();
- var count = 0;
-
- for (var i = 0; i < data.length; ++i) {
- nameList.push(data[i][DATA_NAME_INDEX]);
-
- if (!nameMap.get(data[i][DATA_NAME_INDEX])) {
- nameMap.set(data[i][DATA_NAME_INDEX], count);
- count++;
- }
- }
-
- var dimensionsInfo = createDimensions(data, {
- coordDimensions: ['single'],
- dimensionsDefine: [{
- name: 'time',
- type: getDimensionTypeByAxis(axisType)
- }, {
- name: 'value',
- type: 'float'
- }, {
- name: 'name',
- type: 'ordinal'
- }],
- encodeDefine: {
- single: 0,
- value: 1,
- itemName: 2
- }
- });
- var list = new List(dimensionsInfo, this);
- list.initData(data);
- return list;
- },
-
- /**
- * The raw data is divided into multiple layers and each layer
- * has same name.
- *
- * @return {Array.<Array.<number>>}
- */
- getLayerSeries: function () {
- var data = this.getData();
- var lenCount = data.count();
- var indexArr = [];
-
- for (var i = 0; i < lenCount; ++i) {
- indexArr[i] = i;
- }
-
- var timeDim = data.mapDimension('single'); // data group by name
-
- var groupResult = groupData(indexArr, function (index) {
- return data.get('name', index);
- });
- var layerSeries = [];
- groupResult.buckets.each(function (items, key) {
- items.sort(function (index1, index2) {
- return data.get(timeDim, index1) - data.get(timeDim, index2);
- });
- layerSeries.push({
- name: key,
- indices: items
- });
- });
- return layerSeries;
- },
-
- /**
- * Get data indices for show tooltip content
- * @param {Array.<string>|string} dim single coordinate dimension
- * @param {number} value axis value
- * @param {module:echarts/coord/single/SingleAxis} baseAxis single Axis used
- * the themeRiver.
- * @return {Object} {dataIndices, nestestValue}
- */
- getAxisTooltipData: function (dim, value, baseAxis) {
- if (!zrUtil.isArray(dim)) {
- dim = dim ? [dim] : [];
- }
-
- var data = this.getData();
- var layerSeries = this.getLayerSeries();
- var indices = [];
- var layerNum = layerSeries.length;
- var nestestValue;
-
- for (var i = 0; i < layerNum; ++i) {
- var minDist = Number.MAX_VALUE;
- var nearestIdx = -1;
- var pointNum = layerSeries[i].indices.length;
-
- for (var j = 0; j < pointNum; ++j) {
- var theValue = data.get(dim[0], layerSeries[i].indices[j]);
- var dist = Math.abs(theValue - value);
-
- if (dist <= minDist) {
- nestestValue = theValue;
- minDist = dist;
- nearestIdx = layerSeries[i].indices[j];
- }
- }
-
- indices.push(nearestIdx);
- }
-
- return {
- dataIndices: indices,
- nestestValue: nestestValue
- };
- },
-
- /**
- * @override
- * @param {number} dataIndex index of data
- */
- formatTooltip: function (dataIndex) {
- var data = this.getData();
- var htmlName = data.getName(dataIndex);
- var htmlValue = data.get(data.mapDimension('value'), dataIndex);
-
- if (isNaN(htmlValue) || htmlValue == null) {
- htmlValue = '-';
- }
-
- return encodeHTML(htmlName + ' : ' + htmlValue);
- },
- defaultOption: {
- zlevel: 0,
- z: 2,
- coordinateSystem: 'singleAxis',
- // gap in axis's orthogonal orientation
- boundaryGap: ['10%', '10%'],
- // legendHoverLink: true,
- singleAxisIndex: 0,
- animationEasing: 'linear',
- label: {
- margin: 4,
- show: true,
- position: 'left',
- color: '#000',
- fontSize: 11
- },
- emphasis: {
- label: {
- show: true
- }
- }
- }
- });
- var _default = ThemeRiverSeries;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2697:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var _poly = __webpack_require__(2293);
-
- var Polygon = _poly.Polygon;
-
- var graphic = __webpack_require__(906);
-
- var _util = __webpack_require__(864);
-
- var bind = _util.bind;
- var extend = _util.extend;
-
- var DataDiffer = __webpack_require__(1519);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = echarts.extendChartView({
- type: 'themeRiver',
- init: function () {
- this._layers = [];
- },
- render: function (seriesModel, ecModel, api) {
- var data = seriesModel.getData();
- var group = this.group;
- var layerSeries = seriesModel.getLayerSeries();
- var layoutInfo = data.getLayout('layoutInfo');
- var rect = layoutInfo.rect;
- var boundaryGap = layoutInfo.boundaryGap;
- group.attr('position', [0, rect.y + boundaryGap[0]]);
-
- function keyGetter(item) {
- return item.name;
- }
-
- var dataDiffer = new DataDiffer(this._layersSeries || [], layerSeries, keyGetter, keyGetter);
- var newLayersGroups = {};
- dataDiffer.add(bind(process, this, 'add')).update(bind(process, this, 'update')).remove(bind(process, this, 'remove')).execute();
-
- function process(status, idx, oldIdx) {
- var oldLayersGroups = this._layers;
-
- if (status === 'remove') {
- group.remove(oldLayersGroups[idx]);
- return;
- }
-
- var points0 = [];
- var points1 = [];
- var color;
- var indices = layerSeries[idx].indices;
-
- for (var j = 0; j < indices.length; j++) {
- var layout = data.getItemLayout(indices[j]);
- var x = layout.x;
- var y0 = layout.y0;
- var y = layout.y;
- points0.push([x, y0]);
- points1.push([x, y0 + y]);
- color = data.getItemVisual(indices[j], 'color');
- }
-
- var polygon;
- var text;
- var textLayout = data.getItemLayout(indices[0]);
- var itemModel = data.getItemModel(indices[j - 1]);
- var labelModel = itemModel.getModel('label');
- var margin = labelModel.get('margin');
-
- if (status === 'add') {
- var layerGroup = newLayersGroups[idx] = new graphic.Group();
- polygon = new Polygon({
- shape: {
- points: points0,
- stackedOnPoints: points1,
- smooth: 0.4,
- stackedOnSmooth: 0.4,
- smoothConstraint: false
- },
- z2: 0
- });
- text = new graphic.Text({
- style: {
- x: textLayout.x - margin,
- y: textLayout.y0 + textLayout.y / 2
- }
- });
- layerGroup.add(polygon);
- layerGroup.add(text);
- group.add(layerGroup);
- polygon.setClipPath(createGridClipShape(polygon.getBoundingRect(), seriesModel, function () {
- polygon.removeClipPath();
- }));
- } else {
- var layerGroup = oldLayersGroups[oldIdx];
- polygon = layerGroup.childAt(0);
- text = layerGroup.childAt(1);
- group.add(layerGroup);
- newLayersGroups[idx] = layerGroup;
- graphic.updateProps(polygon, {
- shape: {
- points: points0,
- stackedOnPoints: points1
- }
- }, seriesModel);
- graphic.updateProps(text, {
- style: {
- x: textLayout.x - margin,
- y: textLayout.y0 + textLayout.y / 2
- }
- }, seriesModel);
- }
-
- var hoverItemStyleModel = itemModel.getModel('emphasis.itemStyle');
- var itemStyleModel = itemModel.getModel('itemStyle');
- graphic.setTextStyle(text.style, labelModel, {
- text: labelModel.get('show') ? seriesModel.getFormattedLabel(indices[j - 1], 'normal') || data.getName(indices[j - 1]) : null,
- textVerticalAlign: 'middle'
- });
- polygon.setStyle(extend({
- fill: color
- }, itemStyleModel.getItemStyle(['color'])));
- graphic.setHoverStyle(polygon, hoverItemStyleModel.getItemStyle());
- }
-
- this._layersSeries = layerSeries;
- this._layers = newLayersGroups;
- },
- dispose: function () {}
- }); // add animation to the view
-
-
- function createGridClipShape(rect, seriesModel, cb) {
- var rectEl = new graphic.Rect({
- shape: {
- x: rect.x - 10,
- y: rect.y - 10,
- width: 0,
- height: rect.height + 20
- }
- });
- graphic.initProps(rectEl, {
- shape: {
- width: rect.width + 20,
- height: rect.height + 20
- }
- }, seriesModel, cb);
- return rectEl;
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2698:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var numberUtil = __webpack_require__(985);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function _default(ecModel, api) {
- ecModel.eachSeriesByType('themeRiver', function (seriesModel) {
- var data = seriesModel.getData();
- var single = seriesModel.coordinateSystem;
- var layoutInfo = {}; // use the axis boundingRect for view
-
- var rect = single.getRect();
- layoutInfo.rect = rect;
- var boundaryGap = seriesModel.get('boundaryGap');
- var axis = single.getAxis();
- layoutInfo.boundaryGap = boundaryGap;
-
- if (axis.orient === 'horizontal') {
- boundaryGap[0] = numberUtil.parsePercent(boundaryGap[0], rect.height);
- boundaryGap[1] = numberUtil.parsePercent(boundaryGap[1], rect.height);
- var height = rect.height - boundaryGap[0] - boundaryGap[1];
- themeRiverLayout(data, seriesModel, height);
- } else {
- boundaryGap[0] = numberUtil.parsePercent(boundaryGap[0], rect.width);
- boundaryGap[1] = numberUtil.parsePercent(boundaryGap[1], rect.width);
- var width = rect.width - boundaryGap[0] - boundaryGap[1];
- themeRiverLayout(data, seriesModel, width);
- }
-
- data.setLayout('layoutInfo', layoutInfo);
- });
- }
- /**
- * The layout information about themeriver
- *
- * @param {module:echarts/data/List} data data in the series
- * @param {module:echarts/model/Series} seriesModel the model object of themeRiver series
- * @param {number} height value used to compute every series height
- */
-
-
- function themeRiverLayout(data, seriesModel, height) {
- if (!data.count()) {
- return;
- }
-
- var coordSys = seriesModel.coordinateSystem; // the data in each layer are organized into a series.
-
- var layerSeries = seriesModel.getLayerSeries(); // the points in each layer.
-
- var timeDim = data.mapDimension('single');
- var valueDim = data.mapDimension('value');
- var layerPoints = zrUtil.map(layerSeries, function (singleLayer) {
- return zrUtil.map(singleLayer.indices, function (idx) {
- var pt = coordSys.dataToPoint(data.get(timeDim, idx));
- pt[1] = data.get(valueDim, idx);
- return pt;
- });
- });
- var base = computeBaseline(layerPoints);
- var baseLine = base.y0;
- var ky = height / base.max; // set layout information for each item.
-
- var n = layerSeries.length;
- var m = layerSeries[0].indices.length;
- var baseY0;
-
- for (var j = 0; j < m; ++j) {
- baseY0 = baseLine[j] * ky;
- data.setItemLayout(layerSeries[0].indices[j], {
- layerIndex: 0,
- x: layerPoints[0][j][0],
- y0: baseY0,
- y: layerPoints[0][j][1] * ky
- });
-
- for (var i = 1; i < n; ++i) {
- baseY0 += layerPoints[i - 1][j][1] * ky;
- data.setItemLayout(layerSeries[i].indices[j], {
- layerIndex: i,
- x: layerPoints[i][j][0],
- y0: baseY0,
- y: layerPoints[i][j][1] * ky
- });
- }
- }
- }
- /**
- * Compute the baseLine of the rawdata
- * Inspired by Lee Byron's paper Stacked Graphs - Geometry & Aesthetics
- *
- * @param {Array.<Array>} data the points in each layer
- * @return {Object}
- */
-
-
- function computeBaseline(data) {
- var layerNum = data.length;
- var pointNum = data[0].length;
- var sums = [];
- var y0 = [];
- var max = 0;
- var temp;
- var base = {};
-
- for (var i = 0; i < pointNum; ++i) {
- for (var j = 0, temp = 0; j < layerNum; ++j) {
- temp += data[j][i][1];
- }
-
- if (temp > max) {
- max = temp;
- }
-
- sums.push(temp);
- }
-
- for (var k = 0; k < pointNum; ++k) {
- y0[k] = (max - sums[k]) / 2;
- }
-
- max = 0;
-
- for (var l = 0; l < pointNum; ++l) {
- var sum = sums[l] + y0[l];
-
- if (sum > max) {
- max = sum;
- }
- }
-
- base.y0 = y0;
- base.max = max;
- return base;
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2699:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _util = __webpack_require__(864);
-
- var createHashMap = _util.createHashMap;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function _default(ecModel) {
- ecModel.eachSeriesByType('themeRiver', function (seriesModel) {
- var data = seriesModel.getData();
- var rawData = seriesModel.getRawData();
- var colorList = seriesModel.get('color');
- var idxMap = createHashMap();
- data.each(function (idx) {
- idxMap.set(data.getRawIndex(idx), idx);
- });
- rawData.each(function (rawIndex) {
- var name = rawData.getName(rawIndex);
- var color = colorList[(seriesModel.nameMap.get(name) - 1) % colorList.length];
- rawData.setItemVisual(rawIndex, 'color', color);
- var idx = idxMap.get(rawIndex);
-
- if (idx != null) {
- data.setItemVisual(idx, 'color', color);
- }
- });
- });
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2700:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- __webpack_require__(2701);
-
- __webpack_require__(2702);
-
- __webpack_require__(2704);
-
- var dataColor = __webpack_require__(1793);
-
- var sunburstLayout = __webpack_require__(2705);
-
- var dataFilter = __webpack_require__(1666);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- echarts.registerVisual(zrUtil.curry(dataColor, 'sunburst'));
- echarts.registerLayout(zrUtil.curry(sunburstLayout, 'sunburst'));
- echarts.registerProcessor(zrUtil.curry(dataFilter, 'sunburst'));
-
- /***/ }),
-
- /***/ 2701:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var SeriesModel = __webpack_require__(1322);
-
- var Tree = __webpack_require__(1911);
-
- var _treeHelper = __webpack_require__(1522);
-
- var wrapTreePathInfo = _treeHelper.wrapTreePathInfo;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = SeriesModel.extend({
- type: 'series.sunburst',
-
- /**
- * @type {module:echarts/data/Tree~Node}
- */
- _viewRoot: null,
- getInitialData: function (option, ecModel) {
- // Create a virtual root.
- var root = {
- name: option.name,
- children: option.data
- };
- completeTreeValue(root);
- var levels = option.levels || []; // levels = option.levels = setDefault(levels, ecModel);
-
- var treeOption = {};
- treeOption.levels = levels; // Make sure always a new tree is created when setOption,
- // in TreemapView, we check whether oldTree === newTree
- // to choose mappings approach among old shapes and new shapes.
-
- return Tree.createTree(root, this, treeOption).data;
- },
- optionUpdated: function () {
- this.resetViewRoot();
- },
-
- /*
- * @override
- */
- getDataParams: function (dataIndex) {
- var params = SeriesModel.prototype.getDataParams.apply(this, arguments);
- var node = this.getData().tree.getNodeByDataIndex(dataIndex);
- params.treePathInfo = wrapTreePathInfo(node, this);
- return params;
- },
- defaultOption: {
- zlevel: 0,
- z: 2,
- // 默认全局居中
- center: ['50%', '50%'],
- radius: [0, '75%'],
- // 默认顺时针
- clockwise: true,
- startAngle: 90,
- // 最小角度改为0
- minAngle: 0,
- percentPrecision: 2,
- // If still show when all data zero.
- stillShowZeroSum: true,
- // Policy of highlighting pieces when hover on one
- // Valid values: 'none' (for not downplay others), 'descendant',
- // 'ancestor', 'self'
- highlightPolicy: 'descendant',
- // 'rootToNode', 'link', or false
- nodeClick: 'rootToNode',
- renderLabelForZeroData: false,
- label: {
- // could be: 'radial', 'tangential', or 'none'
- rotate: 'radial',
- show: true,
- opacity: 1,
- // 'left' is for inner side of inside, and 'right' is for outter
- // side for inside
- align: 'center',
- position: 'inside',
- distance: 5,
- silent: true,
- emphasis: {}
- },
- itemStyle: {
- borderWidth: 1,
- borderColor: 'white',
- borderType: 'solid',
- shadowBlur: 0,
- shadowColor: 'rgba(0, 0, 0, 0.2)',
- shadowOffsetX: 0,
- shadowOffsetY: 0,
- opacity: 1,
- emphasis: {},
- highlight: {
- opacity: 1
- },
- downplay: {
- opacity: 0.9
- }
- },
- // Animation type canbe expansion, scale
- animationType: 'expansion',
- animationDuration: 1000,
- animationDurationUpdate: 500,
- animationEasing: 'cubicOut',
- data: [],
- levels: [],
-
- /**
- * Sort order.
- *
- * Valid values: 'desc', 'asc', null, or callback function.
- * 'desc' and 'asc' for descend and ascendant order;
- * null for not sorting;
- * example of callback function:
- * function(nodeA, nodeB) {
- * return nodeA.getValue() - nodeB.getValue();
- * }
- */
- sort: 'desc'
- },
- getViewRoot: function () {
- return this._viewRoot;
- },
-
- /**
- * @param {module:echarts/data/Tree~Node} [viewRoot]
- */
- resetViewRoot: function (viewRoot) {
- viewRoot ? this._viewRoot = viewRoot : viewRoot = this._viewRoot;
- var root = this.getRawData().tree.root;
-
- if (!viewRoot || viewRoot !== root && !root.contains(viewRoot)) {
- this._viewRoot = root;
- }
- }
- });
- /**
- * @param {Object} dataNode
- */
-
-
- function completeTreeValue(dataNode) {
- // Postorder travel tree.
- // If value of none-leaf node is not set,
- // calculate it by suming up the value of all children.
- var sum = 0;
- zrUtil.each(dataNode.children, function (child) {
- completeTreeValue(child);
- var childValue = child.value;
- zrUtil.isArray(childValue) && (childValue = childValue[0]);
- sum += childValue;
- });
- var thisValue = dataNode.value;
-
- if (zrUtil.isArray(thisValue)) {
- thisValue = thisValue[0];
- }
-
- if (thisValue == null || isNaN(thisValue)) {
- thisValue = sum;
- } // Value should not less than 0.
-
-
- if (thisValue < 0) {
- thisValue = 0;
- }
-
- zrUtil.isArray(dataNode.value) ? dataNode.value[0] = thisValue : dataNode.value = thisValue;
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2702:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var ChartView = __webpack_require__(1439);
-
- var SunburstPiece = __webpack_require__(2703);
-
- var DataDiffer = __webpack_require__(1519);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var ROOT_TO_NODE_ACTION = 'sunburstRootToNode';
- var SunburstView = ChartView.extend({
- type: 'sunburst',
- init: function () {},
- render: function (seriesModel, ecModel, api, payload) {
- var that = this;
- this.seriesModel = seriesModel;
- this.api = api;
- this.ecModel = ecModel;
- var data = seriesModel.getData();
- var virtualRoot = data.tree.root;
- var newRoot = seriesModel.getViewRoot();
- var group = this.group;
- var renderLabelForZeroData = seriesModel.get('renderLabelForZeroData');
- var newChildren = [];
- newRoot.eachNode(function (node) {
- newChildren.push(node);
- });
- var oldChildren = this._oldChildren || [];
- dualTravel(newChildren, oldChildren);
- renderRollUp(virtualRoot, newRoot);
-
- if (payload && payload.highlight && payload.highlight.piece) {
- var highlightPolicy = seriesModel.getShallow('highlightPolicy');
- payload.highlight.piece.onEmphasis(highlightPolicy);
- } else if (payload && payload.unhighlight) {
- var piece = this.virtualPiece;
-
- if (!piece && virtualRoot.children.length) {
- piece = virtualRoot.children[0].piece;
- }
-
- if (piece) {
- piece.onNormal();
- }
- }
-
- this._initEvents();
-
- this._oldChildren = newChildren;
-
- function dualTravel(newChildren, oldChildren) {
- if (newChildren.length === 0 && oldChildren.length === 0) {
- return;
- }
-
- new DataDiffer(oldChildren, newChildren, getKey, getKey).add(processNode).update(processNode).remove(zrUtil.curry(processNode, null)).execute();
-
- function getKey(node) {
- return node.getId();
- }
-
- function processNode(newId, oldId) {
- var newNode = newId == null ? null : newChildren[newId];
- var oldNode = oldId == null ? null : oldChildren[oldId];
- doRenderNode(newNode, oldNode);
- }
- }
-
- function doRenderNode(newNode, oldNode) {
- if (!renderLabelForZeroData && newNode && !newNode.getValue()) {
- // Not render data with value 0
- newNode = null;
- }
-
- if (newNode !== virtualRoot && oldNode !== virtualRoot) {
- if (oldNode && oldNode.piece) {
- if (newNode) {
- // Update
- oldNode.piece.updateData(false, newNode, 'normal', seriesModel, ecModel); // For tooltip
-
- data.setItemGraphicEl(newNode.dataIndex, oldNode.piece);
- } else {
- // Remove
- removeNode(oldNode);
- }
- } else if (newNode) {
- // Add
- var piece = new SunburstPiece(newNode, seriesModel, ecModel);
- group.add(piece); // For tooltip
-
- data.setItemGraphicEl(newNode.dataIndex, piece);
- }
- }
- }
-
- function removeNode(node) {
- if (!node) {
- return;
- }
-
- if (node.piece) {
- group.remove(node.piece);
- node.piece = null;
- }
- }
-
- function renderRollUp(virtualRoot, viewRoot) {
- if (viewRoot.depth > 0) {
- // Render
- if (that.virtualPiece) {
- // Update
- that.virtualPiece.updateData(false, virtualRoot, 'normal', seriesModel, ecModel);
- } else {
- // Add
- that.virtualPiece = new SunburstPiece(virtualRoot, seriesModel, ecModel);
- group.add(that.virtualPiece);
- }
-
- if (viewRoot.piece._onclickEvent) {
- viewRoot.piece.off('click', viewRoot.piece._onclickEvent);
- }
-
- var event = function (e) {
- that._rootToNode(viewRoot.parentNode);
- };
-
- viewRoot.piece._onclickEvent = event;
- that.virtualPiece.on('click', event);
- } else if (that.virtualPiece) {
- // Remove
- group.remove(that.virtualPiece);
- that.virtualPiece = null;
- }
- }
- },
- dispose: function () {},
-
- /**
- * @private
- */
- _initEvents: function () {
- var that = this;
-
- var event = function (e) {
- var targetFound = false;
- var viewRoot = that.seriesModel.getViewRoot();
- viewRoot.eachNode(function (node) {
- if (!targetFound && node.piece && node.piece.childAt(0) === e.target) {
- var nodeClick = node.getModel().get('nodeClick');
-
- if (nodeClick === 'rootToNode') {
- that._rootToNode(node);
- } else if (nodeClick === 'link') {
- var itemModel = node.getModel();
- var link = itemModel.get('link');
-
- if (link) {
- var linkTarget = itemModel.get('target', true) || '_blank';
- window.open(link, linkTarget);
- }
- }
-
- targetFound = true;
- }
- });
- };
-
- if (this.group._onclickEvent) {
- this.group.off('click', this.group._onclickEvent);
- }
-
- this.group.on('click', event);
- this.group._onclickEvent = event;
- },
-
- /**
- * @private
- */
- _rootToNode: function (node) {
- if (node !== this.seriesModel.getViewRoot()) {
- this.api.dispatchAction({
- type: ROOT_TO_NODE_ACTION,
- from: this.uid,
- seriesId: this.seriesModel.id,
- targetNode: node
- });
- }
- },
-
- /**
- * @implement
- */
- containPoint: function (point, seriesModel) {
- var treeRoot = seriesModel.getData();
- var itemLayout = treeRoot.getItemLayout(0);
-
- if (itemLayout) {
- var dx = point[0] - itemLayout.cx;
- var dy = point[1] - itemLayout.cy;
- var radius = Math.sqrt(dx * dx + dy * dy);
- return radius <= itemLayout.r && radius >= itemLayout.r0;
- }
- }
- });
- var _default = SunburstView;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2703:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var graphic = __webpack_require__(906);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var NodeHighlightPolicy = {
- NONE: 'none',
- // not downplay others
- DESCENDANT: 'descendant',
- ANCESTOR: 'ancestor',
- SELF: 'self'
- };
- var DEFAULT_SECTOR_Z = 2;
- var DEFAULT_TEXT_Z = 4;
- /**
- * Sunburstce of Sunburst including Sector, Label, LabelLine
- * @constructor
- * @extends {module:zrender/graphic/Group}
- */
-
- function SunburstPiece(node, seriesModel, ecModel) {
- graphic.Group.call(this);
- var sector = new graphic.Sector({
- z2: DEFAULT_SECTOR_Z
- });
- sector.seriesIndex = seriesModel.seriesIndex;
- var text = new graphic.Text({
- z2: DEFAULT_TEXT_Z,
- silent: node.getModel('label').get('silent')
- });
- this.add(sector);
- this.add(text);
- this.updateData(true, node, 'normal', seriesModel, ecModel); // Hover to change label and labelLine
-
- function onEmphasis() {
- text.ignore = text.hoverIgnore;
- }
-
- function onNormal() {
- text.ignore = text.normalIgnore;
- }
-
- this.on('emphasis', onEmphasis).on('normal', onNormal).on('mouseover', onEmphasis).on('mouseout', onNormal);
- }
-
- var SunburstPieceProto = SunburstPiece.prototype;
-
- SunburstPieceProto.updateData = function (firstCreate, node, state, seriesModel, ecModel) {
- this.node = node;
- node.piece = this;
- seriesModel = seriesModel || this._seriesModel;
- ecModel = ecModel || this._ecModel;
- var sector = this.childAt(0);
- sector.dataIndex = node.dataIndex;
- var itemModel = node.getModel();
- var layout = node.getLayout(); // if (!layout) {
- // console.log(node.getLayout());
- // }
-
- var sectorShape = zrUtil.extend({}, layout);
- sectorShape.label = null;
- var visualColor = getNodeColor(node, seriesModel, ecModel);
- fillDefaultColor(node, seriesModel, visualColor);
- var normalStyle = itemModel.getModel('itemStyle').getItemStyle();
- var style;
-
- if (state === 'normal') {
- style = normalStyle;
- } else {
- var stateStyle = itemModel.getModel(state + '.itemStyle').getItemStyle();
- style = zrUtil.merge(stateStyle, normalStyle);
- }
-
- style = zrUtil.defaults({
- lineJoin: 'bevel',
- fill: style.fill || visualColor
- }, style);
-
- if (firstCreate) {
- sector.setShape(sectorShape);
- sector.shape.r = layout.r0;
- graphic.updateProps(sector, {
- shape: {
- r: layout.r
- }
- }, seriesModel, node.dataIndex);
- sector.useStyle(style);
- } else if (typeof style.fill === 'object' && style.fill.type || typeof sector.style.fill === 'object' && sector.style.fill.type) {
- // Disable animation for gradient since no interpolation method
- // is supported for gradient
- graphic.updateProps(sector, {
- shape: sectorShape
- }, seriesModel);
- sector.useStyle(style);
- } else {
- graphic.updateProps(sector, {
- shape: sectorShape,
- style: style
- }, seriesModel);
- }
-
- this._updateLabel(seriesModel, visualColor, state);
-
- var cursorStyle = itemModel.getShallow('cursor');
- cursorStyle && sector.attr('cursor', cursorStyle);
-
- if (firstCreate) {
- var highlightPolicy = seriesModel.getShallow('highlightPolicy');
-
- this._initEvents(sector, node, seriesModel, highlightPolicy);
- }
-
- this._seriesModel = seriesModel || this._seriesModel;
- this._ecModel = ecModel || this._ecModel;
- };
-
- SunburstPieceProto.onEmphasis = function (highlightPolicy) {
- var that = this;
- this.node.hostTree.root.eachNode(function (n) {
- if (n.piece) {
- if (that.node === n) {
- n.piece.updateData(false, n, 'emphasis');
- } else if (isNodeHighlighted(n, that.node, highlightPolicy)) {
- n.piece.childAt(0).trigger('highlight');
- } else if (highlightPolicy !== NodeHighlightPolicy.NONE) {
- n.piece.childAt(0).trigger('downplay');
- }
- }
- });
- };
-
- SunburstPieceProto.onNormal = function () {
- this.node.hostTree.root.eachNode(function (n) {
- if (n.piece) {
- n.piece.updateData(false, n, 'normal');
- }
- });
- };
-
- SunburstPieceProto.onHighlight = function () {
- this.updateData(false, this.node, 'highlight');
- };
-
- SunburstPieceProto.onDownplay = function () {
- this.updateData(false, this.node, 'downplay');
- };
-
- SunburstPieceProto._updateLabel = function (seriesModel, visualColor, state) {
- var itemModel = this.node.getModel();
- var normalModel = itemModel.getModel('label');
- var labelModel = state === 'normal' || state === 'emphasis' ? normalModel : itemModel.getModel(state + '.label');
- var labelHoverModel = itemModel.getModel('emphasis.label');
- var text = zrUtil.retrieve(seriesModel.getFormattedLabel(this.node.dataIndex, state, null, null, 'label'), this.node.name);
-
- if (getLabelAttr('show') === false) {
- text = '';
- }
-
- var layout = this.node.getLayout();
- var labelMinAngle = labelModel.get('minAngle');
-
- if (labelMinAngle == null) {
- labelMinAngle = normalModel.get('minAngle');
- }
-
- labelMinAngle = labelMinAngle / 180 * Math.PI;
- var angle = layout.endAngle - layout.startAngle;
-
- if (labelMinAngle != null && Math.abs(angle) < labelMinAngle) {
- // Not displaying text when angle is too small
- text = '';
- }
-
- var label = this.childAt(1);
- graphic.setLabelStyle(label.style, label.hoverStyle || {}, normalModel, labelHoverModel, {
- defaultText: labelModel.getShallow('show') ? text : null,
- autoColor: visualColor,
- useInsideStyle: true
- });
- var midAngle = (layout.startAngle + layout.endAngle) / 2;
- var dx = Math.cos(midAngle);
- var dy = Math.sin(midAngle);
- var r;
- var labelPosition = getLabelAttr('position');
- var labelPadding = getLabelAttr('distance') || 0;
- var textAlign = getLabelAttr('align');
-
- if (labelPosition === 'outside') {
- r = layout.r + labelPadding;
- textAlign = midAngle > Math.PI / 2 ? 'right' : 'left';
- } else {
- if (!textAlign || textAlign === 'center') {
- r = (layout.r + layout.r0) / 2;
- textAlign = 'center';
- } else if (textAlign === 'left') {
- r = layout.r0 + labelPadding;
-
- if (midAngle > Math.PI / 2) {
- textAlign = 'right';
- }
- } else if (textAlign === 'right') {
- r = layout.r - labelPadding;
-
- if (midAngle > Math.PI / 2) {
- textAlign = 'left';
- }
- }
- }
-
- label.attr('style', {
- text: text,
- textAlign: textAlign,
- textVerticalAlign: getLabelAttr('verticalAlign') || 'middle',
- opacity: getLabelAttr('opacity')
- });
- var textX = r * dx + layout.cx;
- var textY = r * dy + layout.cy;
- label.attr('position', [textX, textY]);
- var rotateType = getLabelAttr('rotate');
- var rotate = 0;
-
- if (rotateType === 'radial') {
- rotate = -midAngle;
-
- if (rotate < -Math.PI / 2) {
- rotate += Math.PI;
- }
- } else if (rotateType === 'tangential') {
- rotate = Math.PI / 2 - midAngle;
-
- if (rotate > Math.PI / 2) {
- rotate -= Math.PI;
- } else if (rotate < -Math.PI / 2) {
- rotate += Math.PI;
- }
- } else if (typeof rotateType === 'number') {
- rotate = rotateType * Math.PI / 180;
- }
-
- label.attr('rotation', rotate);
-
- function getLabelAttr(name) {
- var stateAttr = labelModel.get(name);
-
- if (stateAttr == null) {
- return normalModel.get(name);
- } else {
- return stateAttr;
- }
- }
- };
-
- SunburstPieceProto._initEvents = function (sector, node, seriesModel, highlightPolicy) {
- sector.off('mouseover').off('mouseout').off('emphasis').off('normal');
- var that = this;
-
- var onEmphasis = function () {
- that.onEmphasis(highlightPolicy);
- };
-
- var onNormal = function () {
- that.onNormal();
- };
-
- var onDownplay = function () {
- that.onDownplay();
- };
-
- var onHighlight = function () {
- that.onHighlight();
- };
-
- if (seriesModel.isAnimationEnabled()) {
- sector.on('mouseover', onEmphasis).on('mouseout', onNormal).on('emphasis', onEmphasis).on('normal', onNormal).on('downplay', onDownplay).on('highlight', onHighlight);
- }
- };
-
- zrUtil.inherits(SunburstPiece, graphic.Group);
- var _default = SunburstPiece;
- /**
- * Get node color
- *
- * @param {TreeNode} node the node to get color
- * @param {module:echarts/model/Series} seriesModel series
- * @param {module:echarts/model/Global} ecModel echarts defaults
- */
-
- function getNodeColor(node, seriesModel, ecModel) {
- // Color from visualMap
- var visualColor = node.getVisual('color');
- var visualMetaList = node.getVisual('visualMeta');
-
- if (!visualMetaList || visualMetaList.length === 0) {
- // Use first-generation color if has no visualMap
- visualColor = null;
- } // Self color or level color
-
-
- var color = node.getModel('itemStyle').get('color');
-
- if (color) {
- return color;
- } else if (visualColor) {
- // Color mapping
- return visualColor;
- } else if (node.depth === 0) {
- // Virtual root node
- return ecModel.option.color[0];
- } else {
- // First-generation color
- var length = ecModel.option.color.length;
- color = ecModel.option.color[getRootId(node) % length];
- }
-
- return color;
- }
- /**
- * Get index of root in sorted order
- *
- * @param {TreeNode} node current node
- * @return {number} index in root
- */
-
-
- function getRootId(node) {
- var ancestor = node;
-
- while (ancestor.depth > 1) {
- ancestor = ancestor.parentNode;
- }
-
- var virtualRoot = node.getAncestors()[0];
- return zrUtil.indexOf(virtualRoot.children, ancestor);
- }
-
- function isNodeHighlighted(node, activeNode, policy) {
- if (policy === NodeHighlightPolicy.NONE) {
- return false;
- } else if (policy === NodeHighlightPolicy.SELF) {
- return node === activeNode;
- } else if (policy === NodeHighlightPolicy.ANCESTOR) {
- return node === activeNode || node.isAncestorOf(activeNode);
- } else {
- return node === activeNode || node.isDescendantOf(activeNode);
- }
- } // Fix tooltip callback function params.color incorrect when pick a default color
-
-
- function fillDefaultColor(node, seriesModel, color) {
- var data = seriesModel.getData();
- data.setItemVisual(node.dataIndex, 'color', color);
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2704:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var helper = __webpack_require__(1522);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @file Sunburst action
- */
- var ROOT_TO_NODE_ACTION = 'sunburstRootToNode';
- echarts.registerAction({
- type: ROOT_TO_NODE_ACTION,
- update: 'updateView'
- }, function (payload, ecModel) {
- ecModel.eachComponent({
- mainType: 'series',
- subType: 'sunburst',
- query: payload
- }, handleRootToNode);
-
- function handleRootToNode(model, index) {
- var targetInfo = helper.retrieveTargetInfo(payload, [ROOT_TO_NODE_ACTION], model);
-
- if (targetInfo) {
- var originViewRoot = model.getViewRoot();
-
- if (originViewRoot) {
- payload.direction = helper.aboveViewRoot(originViewRoot, targetInfo.node) ? 'rollUp' : 'drillDown';
- }
-
- model.resetViewRoot(targetInfo.node);
- }
- }
- });
- var HIGHLIGHT_ACTION = 'sunburstHighlight';
- echarts.registerAction({
- type: HIGHLIGHT_ACTION,
- update: 'updateView'
- }, function (payload, ecModel) {
- ecModel.eachComponent({
- mainType: 'series',
- subType: 'sunburst',
- query: payload
- }, handleHighlight);
-
- function handleHighlight(model, index) {
- var targetInfo = helper.retrieveTargetInfo(payload, [HIGHLIGHT_ACTION], model);
-
- if (targetInfo) {
- payload.highlight = targetInfo.node;
- }
- }
- });
- var UNHIGHLIGHT_ACTION = 'sunburstUnhighlight';
- echarts.registerAction({
- type: UNHIGHLIGHT_ACTION,
- update: 'updateView'
- }, function (payload, ecModel) {
- ecModel.eachComponent({
- mainType: 'series',
- subType: 'sunburst',
- query: payload
- }, handleUnhighlight);
-
- function handleUnhighlight(model, index) {
- payload.unhighlight = true;
- }
- });
-
- /***/ }),
-
- /***/ 2705:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _number = __webpack_require__(985);
-
- var parsePercent = _number.parsePercent;
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // var PI2 = Math.PI * 2;
- var RADIAN = Math.PI / 180;
-
- function _default(seriesType, ecModel, api, payload) {
- ecModel.eachSeriesByType(seriesType, function (seriesModel) {
- var center = seriesModel.get('center');
- var radius = seriesModel.get('radius');
-
- if (!zrUtil.isArray(radius)) {
- radius = [0, radius];
- }
-
- if (!zrUtil.isArray(center)) {
- center = [center, center];
- }
-
- var width = api.getWidth();
- var height = api.getHeight();
- var size = Math.min(width, height);
- var cx = parsePercent(center[0], width);
- var cy = parsePercent(center[1], height);
- var r0 = parsePercent(radius[0], size / 2);
- var r = parsePercent(radius[1], size / 2);
- var startAngle = -seriesModel.get('startAngle') * RADIAN;
- var minAngle = seriesModel.get('minAngle') * RADIAN;
- var virtualRoot = seriesModel.getData().tree.root;
- var treeRoot = seriesModel.getViewRoot();
- var rootDepth = treeRoot.depth;
- var sort = seriesModel.get('sort');
-
- if (sort != null) {
- initChildren(treeRoot, sort);
- }
-
- var validDataCount = 0;
- zrUtil.each(treeRoot.children, function (child) {
- !isNaN(child.getValue()) && validDataCount++;
- });
- var sum = treeRoot.getValue(); // Sum may be 0
-
- var unitRadian = Math.PI / (sum || validDataCount) * 2;
- var renderRollupNode = treeRoot.depth > 0;
- var levels = treeRoot.height - (renderRollupNode ? -1 : 1);
- var rPerLevel = (r - r0) / (levels || 1);
- var clockwise = seriesModel.get('clockwise');
- var stillShowZeroSum = seriesModel.get('stillShowZeroSum'); // In the case some sector angle is smaller than minAngle
- // var restAngle = PI2;
- // var valueSumLargerThanMinAngle = 0;
-
- var dir = clockwise ? 1 : -1;
- /**
- * Render a tree
- * @return increased angle
- */
-
- var renderNode = function (node, startAngle) {
- if (!node) {
- return;
- }
-
- var endAngle = startAngle; // Render self
-
- if (node !== virtualRoot) {
- // Tree node is virtual, so it doesn't need to be drawn
- var value = node.getValue();
- var angle = sum === 0 && stillShowZeroSum ? unitRadian : value * unitRadian;
-
- if (angle < minAngle) {
- angle = minAngle; // restAngle -= minAngle;
- } // else {
- // valueSumLargerThanMinAngle += value;
- // }
-
-
- endAngle = startAngle + dir * angle;
- var depth = node.depth - rootDepth - (renderRollupNode ? -1 : 1);
- var rStart = r0 + rPerLevel * depth;
- var rEnd = r0 + rPerLevel * (depth + 1);
- var itemModel = node.getModel();
-
- if (itemModel.get('r0') != null) {
- rStart = parsePercent(itemModel.get('r0'), size / 2);
- }
-
- if (itemModel.get('r') != null) {
- rEnd = parsePercent(itemModel.get('r'), size / 2);
- }
-
- node.setLayout({
- angle: angle,
- startAngle: startAngle,
- endAngle: endAngle,
- clockwise: clockwise,
- cx: cx,
- cy: cy,
- r0: rStart,
- r: rEnd
- });
- } // Render children
-
-
- if (node.children && node.children.length) {
- // currentAngle = startAngle;
- var siblingAngle = 0;
- zrUtil.each(node.children, function (node) {
- siblingAngle += renderNode(node, startAngle + siblingAngle);
- });
- }
-
- return endAngle - startAngle;
- }; // Virtual root node for roll up
-
-
- if (renderRollupNode) {
- var rStart = r0;
- var rEnd = r0 + rPerLevel;
- var angle = Math.PI * 2;
- virtualRoot.setLayout({
- angle: angle,
- startAngle: startAngle,
- endAngle: startAngle + angle,
- clockwise: clockwise,
- cx: cx,
- cy: cy,
- r0: rStart,
- r: rEnd
- });
- }
-
- renderNode(treeRoot, startAngle);
- });
- }
- /**
- * Init node children by order and update visual
- *
- * @param {TreeNode} node root node
- * @param {boolean} isAsc if is in ascendant order
- */
-
-
- function initChildren(node, isAsc) {
- var children = node.children || [];
- node.children = sort(children, isAsc); // Init children recursively
-
- if (children.length) {
- zrUtil.each(node.children, function (child) {
- initChildren(child, isAsc);
- });
- }
- }
- /**
- * Sort children nodes
- *
- * @param {TreeNode[]} children children of node to be sorted
- * @param {string | function | null} sort sort method
- * See SunburstSeries.js for details.
- */
-
-
- function sort(children, sortOrder) {
- if (typeof sortOrder === 'function') {
- return children.sort(sortOrder);
- } else {
- var isAsc = sortOrder === 'asc';
- return children.sort(function (a, b) {
- var diff = (a.getValue() - b.getValue()) * (isAsc ? 1 : -1);
- return diff === 0 ? (a.dataIndex - b.dataIndex) * (isAsc ? -1 : 1) : diff;
- });
- }
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2706:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var zrUtil = __webpack_require__(864);
-
- var graphicUtil = __webpack_require__(906);
-
- var _labelHelper = __webpack_require__(1904);
-
- var getDefaultLabel = _labelHelper.getDefaultLabel;
-
- var createListFromArray = __webpack_require__(1458);
-
- var _barGrid = __webpack_require__(1789);
-
- var getLayoutOnAxis = _barGrid.getLayoutOnAxis;
-
- var DataDiffer = __webpack_require__(1519);
-
- var SeriesModel = __webpack_require__(1322);
-
- var Model = __webpack_require__(1317);
-
- var ChartView = __webpack_require__(1439);
-
- var _createClipPathFromCoordSys = __webpack_require__(1662);
-
- var createClipPath = _createClipPathFromCoordSys.createClipPath;
-
- var prepareCartesian2d = __webpack_require__(2707);
-
- var prepareGeo = __webpack_require__(2708);
-
- var prepareSingleAxis = __webpack_require__(2709);
-
- var preparePolar = __webpack_require__(2710);
-
- var prepareCalendar = __webpack_require__(2711);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var CACHED_LABEL_STYLE_PROPERTIES = graphicUtil.CACHED_LABEL_STYLE_PROPERTIES;
- var ITEM_STYLE_NORMAL_PATH = ['itemStyle'];
- var ITEM_STYLE_EMPHASIS_PATH = ['emphasis', 'itemStyle'];
- var LABEL_NORMAL = ['label'];
- var LABEL_EMPHASIS = ['emphasis', 'label']; // Use prefix to avoid index to be the same as el.name,
- // which will cause weird udpate animation.
-
- var GROUP_DIFF_PREFIX = 'e\0\0';
- /**
- * To reduce total package size of each coordinate systems, the modules `prepareCustom`
- * of each coordinate systems are not required by each coordinate systems directly, but
- * required by the module `custom`.
- *
- * prepareInfoForCustomSeries {Function}: optional
- * @return {Object} {coordSys: {...}, api: {
- * coord: function (data, clamp) {}, // return point in global.
- * size: function (dataSize, dataItem) {} // return size of each axis in coordSys.
- * }}
- */
-
- var prepareCustoms = {
- cartesian2d: prepareCartesian2d,
- geo: prepareGeo,
- singleAxis: prepareSingleAxis,
- polar: preparePolar,
- calendar: prepareCalendar
- }; // ------
- // Model
- // ------
-
- SeriesModel.extend({
- type: 'series.custom',
- dependencies: ['grid', 'polar', 'geo', 'singleAxis', 'calendar'],
- defaultOption: {
- coordinateSystem: 'cartesian2d',
- // Can be set as 'none'
- zlevel: 0,
- z: 2,
- legendHoverLink: true,
- useTransform: true,
- // Custom series will not clip by default.
- // Some case will use custom series to draw label
- // For example https://echarts.apache.org/examples/en/editor.html?c=custom-gantt-flight
- // Only works on polar and cartesian2d coordinate system.
- clip: false // Cartesian coordinate system
- // xAxisIndex: 0,
- // yAxisIndex: 0,
- // Polar coordinate system
- // polarIndex: 0,
- // Geo coordinate system
- // geoIndex: 0,
- // label: {}
- // itemStyle: {}
-
- },
-
- /**
- * @override
- */
- getInitialData: function (option, ecModel) {
- return createListFromArray(this.getSource(), this);
- },
-
- /**
- * @override
- */
- getDataParams: function (dataIndex, dataType, el) {
- var params = SeriesModel.prototype.getDataParams.apply(this, arguments);
- el && (params.info = el.info);
- return params;
- }
- }); // -----
- // View
- // -----
-
- ChartView.extend({
- type: 'custom',
-
- /**
- * @private
- * @type {module:echarts/data/List}
- */
- _data: null,
-
- /**
- * @override
- */
- render: function (customSeries, ecModel, api, payload) {
- var oldData = this._data;
- var data = customSeries.getData();
- var group = this.group;
- var renderItem = makeRenderItem(customSeries, data, ecModel, api); // By default, merge mode is applied. In most cases, custom series is
- // used in the scenario that data amount is not large but graphic elements
- // is complicated, where merge mode is probably necessary for optimization.
- // For example, reuse graphic elements and only update the transform when
- // roam or data zoom according to `actionType`.
-
- data.diff(oldData).add(function (newIdx) {
- createOrUpdate(null, newIdx, renderItem(newIdx, payload), customSeries, group, data);
- }).update(function (newIdx, oldIdx) {
- var el = oldData.getItemGraphicEl(oldIdx);
- createOrUpdate(el, newIdx, renderItem(newIdx, payload), customSeries, group, data);
- }).remove(function (oldIdx) {
- var el = oldData.getItemGraphicEl(oldIdx);
- el && group.remove(el);
- }).execute(); // Do clipping
-
- var clipPath = customSeries.get('clip', true) ? createClipPath(customSeries.coordinateSystem, false, customSeries) : null;
-
- if (clipPath) {
- group.setClipPath(clipPath);
- } else {
- group.removeClipPath();
- }
-
- this._data = data;
- },
- incrementalPrepareRender: function (customSeries, ecModel, api) {
- this.group.removeAll();
- this._data = null;
- },
- incrementalRender: function (params, customSeries, ecModel, api, payload) {
- var data = customSeries.getData();
- var renderItem = makeRenderItem(customSeries, data, ecModel, api);
-
- function setIncrementalAndHoverLayer(el) {
- if (!el.isGroup) {
- el.incremental = true;
- el.useHoverLayer = true;
- }
- }
-
- for (var idx = params.start; idx < params.end; idx++) {
- var el = createOrUpdate(null, idx, renderItem(idx, payload), customSeries, this.group, data);
- el.traverse(setIncrementalAndHoverLayer);
- }
- },
-
- /**
- * @override
- */
- dispose: zrUtil.noop,
-
- /**
- * @override
- */
- filterForExposedEvent: function (eventType, query, targetEl, packedEvent) {
- var elementName = query.element;
-
- if (elementName == null || targetEl.name === elementName) {
- return true;
- } // Enable to give a name on a group made by `renderItem`, and listen
- // events that triggerd by its descendents.
-
-
- while ((targetEl = targetEl.parent) && targetEl !== this.group) {
- if (targetEl.name === elementName) {
- return true;
- }
- }
-
- return false;
- }
- });
-
- function createEl(elOption) {
- var graphicType = elOption.type;
- var el; // Those graphic elements are not shapes. They should not be
- // overwritten by users, so do them first.
-
- if (graphicType === 'path') {
- var shape = elOption.shape; // Using pathRect brings convenience to users sacle svg path.
-
- var pathRect = shape.width != null && shape.height != null ? {
- x: shape.x || 0,
- y: shape.y || 0,
- width: shape.width,
- height: shape.height
- } : null;
- var pathData = getPathData(shape); // Path is also used for icon, so layout 'center' by default.
-
- el = graphicUtil.makePath(pathData, null, pathRect, shape.layout || 'center');
- el.__customPathData = pathData;
- } else if (graphicType === 'image') {
- el = new graphicUtil.Image({});
- el.__customImagePath = elOption.style.image;
- } else if (graphicType === 'text') {
- el = new graphicUtil.Text({});
- el.__customText = elOption.style.text;
- } else if (graphicType === 'group') {
- el = new graphicUtil.Group();
- } else if (graphicType === 'compoundPath') {
- throw new Error('"compoundPath" is not supported yet.');
- } else {
- var Clz = graphicUtil.getShapeClass(graphicType);
- el = new Clz();
- }
-
- el.__customGraphicType = graphicType;
- el.name = elOption.name;
- return el;
- }
-
- function updateEl(el, dataIndex, elOption, animatableModel, data, isInit, isRoot) {
- var transitionProps = {};
- var elOptionStyle = elOption.style || {};
- elOption.shape && (transitionProps.shape = zrUtil.clone(elOption.shape));
- elOption.position && (transitionProps.position = elOption.position.slice());
- elOption.scale && (transitionProps.scale = elOption.scale.slice());
- elOption.origin && (transitionProps.origin = elOption.origin.slice());
- elOption.rotation && (transitionProps.rotation = elOption.rotation);
-
- if (el.type === 'image' && elOption.style) {
- var targetStyle = transitionProps.style = {};
- zrUtil.each(['x', 'y', 'width', 'height'], function (prop) {
- prepareStyleTransition(prop, targetStyle, elOptionStyle, el.style, isInit);
- });
- }
-
- if (el.type === 'text' && elOption.style) {
- var targetStyle = transitionProps.style = {};
- zrUtil.each(['x', 'y'], function (prop) {
- prepareStyleTransition(prop, targetStyle, elOptionStyle, el.style, isInit);
- }); // Compatible with previous: both support
- // textFill and fill, textStroke and stroke in 'text' element.
-
- !elOptionStyle.hasOwnProperty('textFill') && elOptionStyle.fill && (elOptionStyle.textFill = elOptionStyle.fill);
- !elOptionStyle.hasOwnProperty('textStroke') && elOptionStyle.stroke && (elOptionStyle.textStroke = elOptionStyle.stroke);
- }
-
- if (el.type !== 'group') {
- el.useStyle(elOptionStyle); // Init animation.
-
- if (isInit) {
- el.style.opacity = 0;
- var targetOpacity = elOptionStyle.opacity;
- targetOpacity == null && (targetOpacity = 1);
- graphicUtil.initProps(el, {
- style: {
- opacity: targetOpacity
- }
- }, animatableModel, dataIndex);
- }
- }
-
- if (isInit) {
- el.attr(transitionProps);
- } else {
- graphicUtil.updateProps(el, transitionProps, animatableModel, dataIndex);
- } // Merge by default.
- // z2 must not be null/undefined, otherwise sort error may occur.
-
-
- elOption.hasOwnProperty('z2') && el.attr('z2', elOption.z2 || 0);
- elOption.hasOwnProperty('silent') && el.attr('silent', elOption.silent);
- elOption.hasOwnProperty('invisible') && el.attr('invisible', elOption.invisible);
- elOption.hasOwnProperty('ignore') && el.attr('ignore', elOption.ignore); // `elOption.info` enables user to mount some info on
- // elements and use them in event handlers.
- // Update them only when user specified, otherwise, remain.
-
- elOption.hasOwnProperty('info') && el.attr('info', elOption.info); // If `elOption.styleEmphasis` is `false`, remove hover style. The
- // logic is ensured by `graphicUtil.setElementHoverStyle`.
-
- var styleEmphasis = elOption.styleEmphasis; // hoverStyle should always be set here, because if the hover style
- // may already be changed, where the inner cache should be reset.
-
- graphicUtil.setElementHoverStyle(el, styleEmphasis);
-
- if (isRoot) {
- graphicUtil.setAsHighDownDispatcher(el, styleEmphasis !== false);
- }
- }
-
- function prepareStyleTransition(prop, targetStyle, elOptionStyle, oldElStyle, isInit) {
- if (elOptionStyle[prop] != null && !isInit) {
- targetStyle[prop] = elOptionStyle[prop];
- elOptionStyle[prop] = oldElStyle[prop];
- }
- }
-
- function makeRenderItem(customSeries, data, ecModel, api) {
- var renderItem = customSeries.get('renderItem');
- var coordSys = customSeries.coordinateSystem;
- var prepareResult = {};
-
- if (coordSys) {
- prepareResult = coordSys.prepareCustoms ? coordSys.prepareCustoms() : prepareCustoms[coordSys.type](coordSys);
- }
-
- var userAPI = zrUtil.defaults({
- getWidth: api.getWidth,
- getHeight: api.getHeight,
- getZr: api.getZr,
- getDevicePixelRatio: api.getDevicePixelRatio,
- value: value,
- style: style,
- styleEmphasis: styleEmphasis,
- visual: visual,
- barLayout: barLayout,
- currentSeriesIndices: currentSeriesIndices,
- font: font
- }, prepareResult.api || {});
- var userParams = {
- // The life cycle of context: current round of rendering.
- // The global life cycle is probably not necessary, because
- // user can store global status by themselves.
- context: {},
- seriesId: customSeries.id,
- seriesName: customSeries.name,
- seriesIndex: customSeries.seriesIndex,
- coordSys: prepareResult.coordSys,
- dataInsideLength: data.count(),
- encode: wrapEncodeDef(customSeries.getData())
- }; // Do not support call `api` asynchronously without dataIndexInside input.
-
- var currDataIndexInside;
- var currDirty = true;
- var currItemModel;
- var currLabelNormalModel;
- var currLabelEmphasisModel;
- var currVisualColor;
- return function (dataIndexInside, payload) {
- currDataIndexInside = dataIndexInside;
- currDirty = true;
- return renderItem && renderItem(zrUtil.defaults({
- dataIndexInside: dataIndexInside,
- dataIndex: data.getRawIndex(dataIndexInside),
- // Can be used for optimization when zoom or roam.
- actionType: payload ? payload.type : null
- }, userParams), userAPI);
- }; // Do not update cache until api called.
-
- function updateCache(dataIndexInside) {
- dataIndexInside == null && (dataIndexInside = currDataIndexInside);
-
- if (currDirty) {
- currItemModel = data.getItemModel(dataIndexInside);
- currLabelNormalModel = currItemModel.getModel(LABEL_NORMAL);
- currLabelEmphasisModel = currItemModel.getModel(LABEL_EMPHASIS);
- currVisualColor = data.getItemVisual(dataIndexInside, 'color');
- currDirty = false;
- }
- }
- /**
- * @public
- * @param {number|string} dim
- * @param {number} [dataIndexInside=currDataIndexInside]
- * @return {number|string} value
- */
-
-
- function value(dim, dataIndexInside) {
- dataIndexInside == null && (dataIndexInside = currDataIndexInside);
- return data.get(data.getDimension(dim || 0), dataIndexInside);
- }
- /**
- * By default, `visual` is applied to style (to support visualMap).
- * `visual.color` is applied at `fill`. If user want apply visual.color on `stroke`,
- * it can be implemented as:
- * `api.style({stroke: api.visual('color'), fill: null})`;
- * @public
- * @param {Object} [extra]
- * @param {number} [dataIndexInside=currDataIndexInside]
- */
-
-
- function style(extra, dataIndexInside) {
- dataIndexInside == null && (dataIndexInside = currDataIndexInside);
- updateCache(dataIndexInside);
- var itemStyle = currItemModel.getModel(ITEM_STYLE_NORMAL_PATH).getItemStyle();
- currVisualColor != null && (itemStyle.fill = currVisualColor);
- var opacity = data.getItemVisual(dataIndexInside, 'opacity');
- opacity != null && (itemStyle.opacity = opacity);
- var labelModel = extra ? applyExtraBefore(extra, currLabelNormalModel) : currLabelNormalModel;
- graphicUtil.setTextStyle(itemStyle, labelModel, null, {
- autoColor: currVisualColor,
- isRectText: true
- });
- itemStyle.text = labelModel.getShallow('show') ? zrUtil.retrieve2(customSeries.getFormattedLabel(dataIndexInside, 'normal'), getDefaultLabel(data, dataIndexInside)) : null;
- extra && applyExtraAfter(itemStyle, extra);
- return itemStyle;
- }
- /**
- * @public
- * @param {Object} [extra]
- * @param {number} [dataIndexInside=currDataIndexInside]
- */
-
-
- function styleEmphasis(extra, dataIndexInside) {
- dataIndexInside == null && (dataIndexInside = currDataIndexInside);
- updateCache(dataIndexInside);
- var itemStyle = currItemModel.getModel(ITEM_STYLE_EMPHASIS_PATH).getItemStyle();
- var labelModel = extra ? applyExtraBefore(extra, currLabelEmphasisModel) : currLabelEmphasisModel;
- graphicUtil.setTextStyle(itemStyle, labelModel, null, {
- isRectText: true
- }, true);
- itemStyle.text = labelModel.getShallow('show') ? zrUtil.retrieve3(customSeries.getFormattedLabel(dataIndexInside, 'emphasis'), customSeries.getFormattedLabel(dataIndexInside, 'normal'), getDefaultLabel(data, dataIndexInside)) : null;
- extra && applyExtraAfter(itemStyle, extra);
- return itemStyle;
- }
- /**
- * @public
- * @param {string} visualType
- * @param {number} [dataIndexInside=currDataIndexInside]
- */
-
-
- function visual(visualType, dataIndexInside) {
- dataIndexInside == null && (dataIndexInside = currDataIndexInside);
- return data.getItemVisual(dataIndexInside, visualType);
- }
- /**
- * @public
- * @param {number} opt.count Positive interger.
- * @param {number} [opt.barWidth]
- * @param {number} [opt.barMaxWidth]
- * @param {number} [opt.barMinWidth]
- * @param {number} [opt.barGap]
- * @param {number} [opt.barCategoryGap]
- * @return {Object} {width, offset, offsetCenter} is not support, return undefined.
- */
-
-
- function barLayout(opt) {
- if (coordSys.getBaseAxis) {
- var baseAxis = coordSys.getBaseAxis();
- return getLayoutOnAxis(zrUtil.defaults({
- axis: baseAxis
- }, opt), api);
- }
- }
- /**
- * @public
- * @return {Array.<number>}
- */
-
-
- function currentSeriesIndices() {
- return ecModel.getCurrentSeriesIndices();
- }
- /**
- * @public
- * @param {Object} opt
- * @param {string} [opt.fontStyle]
- * @param {number} [opt.fontWeight]
- * @param {number} [opt.fontSize]
- * @param {string} [opt.fontFamily]
- * @return {string} font string
- */
-
-
- function font(opt) {
- return graphicUtil.getFont(opt, ecModel);
- }
- }
-
- function wrapEncodeDef(data) {
- var encodeDef = {};
- zrUtil.each(data.dimensions, function (dimName, dataDimIndex) {
- var dimInfo = data.getDimensionInfo(dimName);
-
- if (!dimInfo.isExtraCoord) {
- var coordDim = dimInfo.coordDim;
- var dataDims = encodeDef[coordDim] = encodeDef[coordDim] || [];
- dataDims[dimInfo.coordDimIndex] = dataDimIndex;
- }
- });
- return encodeDef;
- }
-
- function createOrUpdate(el, dataIndex, elOption, animatableModel, group, data) {
- el = doCreateOrUpdate(el, dataIndex, elOption, animatableModel, group, data, true);
- el && data.setItemGraphicEl(dataIndex, el);
- return el;
- }
-
- function doCreateOrUpdate(el, dataIndex, elOption, animatableModel, group, data, isRoot) {
- // [Rule]
- // By default, follow merge mode.
- // (It probably brings benifit for performance in some cases of large data, where
- // user program can be optimized to that only updated props needed to be re-calculated,
- // or according to `actionType` some calculation can be skipped.)
- // If `renderItem` returns `null`/`undefined`/`false`, remove the previous el if existing.
- // (It seems that violate the "merge" principle, but most of users probably intuitively
- // regard "return;" as "show nothing element whatever", so make a exception to meet the
- // most cases.)
- var simplyRemove = !elOption; // `null`/`undefined`/`false`
-
- elOption = elOption || {};
- var elOptionType = elOption.type;
- var elOptionShape = elOption.shape;
- var elOptionStyle = elOption.style;
-
- if (el && (simplyRemove // || elOption.$merge === false
- // If `elOptionType` is `null`, follow the merge principle.
- || elOptionType != null && elOptionType !== el.__customGraphicType || elOptionType === 'path' && hasOwnPathData(elOptionShape) && getPathData(elOptionShape) !== el.__customPathData || elOptionType === 'image' && hasOwn(elOptionStyle, 'image') && elOptionStyle.image !== el.__customImagePath // FIXME test and remove this restriction?
- || elOptionType === 'text' && hasOwn(elOptionShape, 'text') && elOptionStyle.text !== el.__customText)) {
- group.remove(el);
- el = null;
- } // `elOption.type` is undefined when `renderItem` returns nothing.
-
-
- if (simplyRemove) {
- return;
- }
-
- var isInit = !el;
- !el && (el = createEl(elOption));
- updateEl(el, dataIndex, elOption, animatableModel, data, isInit, isRoot);
-
- if (elOptionType === 'group') {
- mergeChildren(el, dataIndex, elOption, animatableModel, data);
- } // Always add whatever already added to ensure sequence.
-
-
- group.add(el);
- return el;
- } // Usage:
- // (1) By default, `elOption.$mergeChildren` is `'byIndex'`, which indicates that
- // the existing children will not be removed, and enables the feature that
- // update some of the props of some of the children simply by construct
- // the returned children of `renderItem` like:
- // `var children = group.children = []; children[3] = {opacity: 0.5};`
- // (2) If `elOption.$mergeChildren` is `'byName'`, add/update/remove children
- // by child.name. But that might be lower performance.
- // (3) If `elOption.$mergeChildren` is `false`, the existing children will be
- // replaced totally.
- // (4) If `!elOption.children`, following the "merge" principle, nothing will happen.
- //
- // For implementation simpleness, do not provide a direct way to remove sinlge
- // child (otherwise the total indicies of the children array have to be modified).
- // User can remove a single child by set its `ignore` as `true` or replace
- // it by another element, where its `$merge` can be set as `true` if necessary.
-
-
- function mergeChildren(el, dataIndex, elOption, animatableModel, data) {
- var newChildren = elOption.children;
- var newLen = newChildren ? newChildren.length : 0;
- var mergeChildren = elOption.$mergeChildren; // `diffChildrenByName` has been deprecated.
-
- var byName = mergeChildren === 'byName' || elOption.diffChildrenByName;
- var notMerge = mergeChildren === false; // For better performance on roam update, only enter if necessary.
-
- if (!newLen && !byName && !notMerge) {
- return;
- }
-
- if (byName) {
- diffGroupChildren({
- oldChildren: el.children() || [],
- newChildren: newChildren || [],
- dataIndex: dataIndex,
- animatableModel: animatableModel,
- group: el,
- data: data
- });
- return;
- }
-
- notMerge && el.removeAll(); // Mapping children of a group simply by index, which
- // might be better performance.
-
- var index = 0;
-
- for (; index < newLen; index++) {
- newChildren[index] && doCreateOrUpdate(el.childAt(index), dataIndex, newChildren[index], animatableModel, el, data);
- }
- }
-
- function diffGroupChildren(context) {
- new DataDiffer(context.oldChildren, context.newChildren, getKey, getKey, context).add(processAddUpdate).update(processAddUpdate).remove(processRemove).execute();
- }
-
- function getKey(item, idx) {
- var name = item && item.name;
- return name != null ? name : GROUP_DIFF_PREFIX + idx;
- }
-
- function processAddUpdate(newIndex, oldIndex) {
- var context = this.context;
- var childOption = newIndex != null ? context.newChildren[newIndex] : null;
- var child = oldIndex != null ? context.oldChildren[oldIndex] : null;
- doCreateOrUpdate(child, context.dataIndex, childOption, context.animatableModel, context.group, context.data);
- } // `graphic#applyDefaultTextStyle` will cache
- // textFill, textStroke, textStrokeWidth.
- // We have to do this trick.
-
-
- function applyExtraBefore(extra, model) {
- var dummyModel = new Model({}, model);
- zrUtil.each(CACHED_LABEL_STYLE_PROPERTIES, function (stylePropName, modelPropName) {
- if (extra.hasOwnProperty(stylePropName)) {
- dummyModel.option[modelPropName] = extra[stylePropName];
- }
- });
- return dummyModel;
- }
-
- function applyExtraAfter(itemStyle, extra) {
- for (var key in extra) {
- if (extra.hasOwnProperty(key) || !CACHED_LABEL_STYLE_PROPERTIES.hasOwnProperty(key)) {
- itemStyle[key] = extra[key];
- }
- }
- }
-
- function processRemove(oldIndex) {
- var context = this.context;
- var child = context.oldChildren[oldIndex];
- child && context.group.remove(child);
- }
-
- function getPathData(shape) {
- // "d" follows the SVG convention.
- return shape && (shape.pathData || shape.d);
- }
-
- function hasOwnPathData(shape) {
- return shape && (shape.hasOwnProperty('pathData') || shape.hasOwnProperty('d'));
- }
-
- function hasOwn(host, prop) {
- return host && host.hasOwnProperty(prop);
- }
-
- /***/ }),
-
- /***/ 2707:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function dataToCoordSize(dataSize, dataItem) {
- // dataItem is necessary in log axis.
- dataItem = dataItem || [0, 0];
- return zrUtil.map(['x', 'y'], function (dim, dimIdx) {
- var axis = this.getAxis(dim);
- var val = dataItem[dimIdx];
- var halfSize = dataSize[dimIdx] / 2;
- return axis.type === 'category' ? axis.getBandWidth() : Math.abs(axis.dataToCoord(val - halfSize) - axis.dataToCoord(val + halfSize));
- }, this);
- }
-
- function _default(coordSys) {
- var rect = coordSys.grid.getRect();
- return {
- coordSys: {
- // The name exposed to user is always 'cartesian2d' but not 'grid'.
- type: 'cartesian2d',
- x: rect.x,
- y: rect.y,
- width: rect.width,
- height: rect.height
- },
- api: {
- coord: function (data) {
- // do not provide "out" param
- return coordSys.dataToPoint(data);
- },
- size: zrUtil.bind(dataToCoordSize, coordSys)
- }
- };
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2708:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function dataToCoordSize(dataSize, dataItem) {
- dataItem = dataItem || [0, 0];
- return zrUtil.map([0, 1], function (dimIdx) {
- var val = dataItem[dimIdx];
- var halfSize = dataSize[dimIdx] / 2;
- var p1 = [];
- var p2 = [];
- p1[dimIdx] = val - halfSize;
- p2[dimIdx] = val + halfSize;
- p1[1 - dimIdx] = p2[1 - dimIdx] = dataItem[1 - dimIdx];
- return Math.abs(this.dataToPoint(p1)[dimIdx] - this.dataToPoint(p2)[dimIdx]);
- }, this);
- }
-
- function _default(coordSys) {
- var rect = coordSys.getBoundingRect();
- return {
- coordSys: {
- type: 'geo',
- x: rect.x,
- y: rect.y,
- width: rect.width,
- height: rect.height,
- zoom: coordSys.getZoom()
- },
- api: {
- coord: function (data) {
- // do not provide "out" and noRoam param,
- // Compatible with this usage:
- // echarts.util.map(item.points, api.coord)
- return coordSys.dataToPoint(data);
- },
- size: zrUtil.bind(dataToCoordSize, coordSys)
- }
- };
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2709:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function dataToCoordSize(dataSize, dataItem) {
- // dataItem is necessary in log axis.
- var axis = this.getAxis();
- var val = dataItem instanceof Array ? dataItem[0] : dataItem;
- var halfSize = (dataSize instanceof Array ? dataSize[0] : dataSize) / 2;
- return axis.type === 'category' ? axis.getBandWidth() : Math.abs(axis.dataToCoord(val - halfSize) - axis.dataToCoord(val + halfSize));
- }
-
- function _default(coordSys) {
- var rect = coordSys.getRect();
- return {
- coordSys: {
- type: 'singleAxis',
- x: rect.x,
- y: rect.y,
- width: rect.width,
- height: rect.height
- },
- api: {
- coord: function (val) {
- // do not provide "out" param
- return coordSys.dataToPoint(val);
- },
- size: zrUtil.bind(dataToCoordSize, coordSys)
- }
- };
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2710:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function dataToCoordSize(dataSize, dataItem) {
- // dataItem is necessary in log axis.
- return zrUtil.map(['Radius', 'Angle'], function (dim, dimIdx) {
- var axis = this['get' + dim + 'Axis']();
- var val = dataItem[dimIdx];
- var halfSize = dataSize[dimIdx] / 2;
- var method = 'dataTo' + dim;
- var result = axis.type === 'category' ? axis.getBandWidth() : Math.abs(axis[method](val - halfSize) - axis[method](val + halfSize));
-
- if (dim === 'Angle') {
- result = result * Math.PI / 180;
- }
-
- return result;
- }, this);
- }
-
- function _default(coordSys) {
- var radiusAxis = coordSys.getRadiusAxis();
- var angleAxis = coordSys.getAngleAxis();
- var radius = radiusAxis.getExtent();
- radius[0] > radius[1] && radius.reverse();
- return {
- coordSys: {
- type: 'polar',
- cx: coordSys.cx,
- cy: coordSys.cy,
- r: radius[1],
- r0: radius[0]
- },
- api: {
- coord: zrUtil.bind(function (data) {
- var radius = radiusAxis.dataToRadius(data[0]);
- var angle = angleAxis.dataToAngle(data[1]);
- var coord = coordSys.coordToPoint([radius, angle]);
- coord.push(radius, angle * Math.PI / 180);
- return coord;
- }),
- size: zrUtil.bind(dataToCoordSize, coordSys)
- }
- };
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2711:
- /***/ (function(module, exports) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function _default(coordSys) {
- var rect = coordSys.getRect();
- var rangeInfo = coordSys.getRangeInfo();
- return {
- coordSys: {
- type: 'calendar',
- x: rect.x,
- y: rect.y,
- width: rect.width,
- height: rect.height,
- cellWidth: coordSys.getCellWidth(),
- cellHeight: coordSys.getCellHeight(),
- rangeInfo: {
- start: rangeInfo.start,
- end: rangeInfo.end,
- weeks: rangeInfo.weeks,
- dayCount: rangeInfo.allDay
- }
- },
- api: {
- coord: function (data, clamp) {
- return coordSys.dataToPoint(data, clamp);
- }
- }
- };
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2712:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- __webpack_require__(1664);
-
- __webpack_require__(2320);
-
- __webpack_require__(1668);
-
- /***/ }),
-
- /***/ 2713:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var barPolar = __webpack_require__(2714);
-
- __webpack_require__(1917);
-
- __webpack_require__(2720);
-
- __webpack_require__(2722);
-
- __webpack_require__(1668);
-
- __webpack_require__(2724);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // For reducing size of echarts.min, barLayoutPolar is required by polar.
- echarts.registerLayout(zrUtil.curry(barPolar, 'bar')); // Polar view
-
- echarts.extendComponentView({
- type: 'polar'
- });
-
- /***/ }),
-
- /***/ 2714:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var _number = __webpack_require__(985);
-
- var parsePercent = _number.parsePercent;
-
- var _dataStackHelper = __webpack_require__(1440);
-
- var isDimensionStacked = _dataStackHelper.isDimensionStacked;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function getSeriesStackId(seriesModel) {
- return seriesModel.get('stack') || '__ec_stack_' + seriesModel.seriesIndex;
- }
-
- function getAxisKey(polar, axis) {
- return axis.dim + polar.model.componentIndex;
- }
- /**
- * @param {string} seriesType
- * @param {module:echarts/model/Global} ecModel
- * @param {module:echarts/ExtensionAPI} api
- */
-
-
- function barLayoutPolar(seriesType, ecModel, api) {
- var lastStackCoords = {};
- var barWidthAndOffset = calRadialBar(zrUtil.filter(ecModel.getSeriesByType(seriesType), function (seriesModel) {
- return !ecModel.isSeriesFiltered(seriesModel) && seriesModel.coordinateSystem && seriesModel.coordinateSystem.type === 'polar';
- }));
- ecModel.eachSeriesByType(seriesType, function (seriesModel) {
- // Check series coordinate, do layout for polar only
- if (seriesModel.coordinateSystem.type !== 'polar') {
- return;
- }
-
- var data = seriesModel.getData();
- var polar = seriesModel.coordinateSystem;
- var baseAxis = polar.getBaseAxis();
- var axisKey = getAxisKey(polar, baseAxis);
- var stackId = getSeriesStackId(seriesModel);
- var columnLayoutInfo = barWidthAndOffset[axisKey][stackId];
- var columnOffset = columnLayoutInfo.offset;
- var columnWidth = columnLayoutInfo.width;
- var valueAxis = polar.getOtherAxis(baseAxis);
- var cx = seriesModel.coordinateSystem.cx;
- var cy = seriesModel.coordinateSystem.cy;
- var barMinHeight = seriesModel.get('barMinHeight') || 0;
- var barMinAngle = seriesModel.get('barMinAngle') || 0;
- lastStackCoords[stackId] = lastStackCoords[stackId] || [];
- var valueDim = data.mapDimension(valueAxis.dim);
- var baseDim = data.mapDimension(baseAxis.dim);
- var stacked = isDimensionStacked(data, valueDim
- /*, baseDim*/
- );
- var clampLayout = baseAxis.dim !== 'radius' || !seriesModel.get('roundCap', true);
- var valueAxisStart = valueAxis.getExtent()[0];
-
- for (var idx = 0, len = data.count(); idx < len; idx++) {
- var value = data.get(valueDim, idx);
- var baseValue = data.get(baseDim, idx);
-
- if (isNaN(value)) {
- continue;
- }
-
- var sign = value >= 0 ? 'p' : 'n';
- var baseCoord = valueAxisStart; // Because of the barMinHeight, we can not use the value in
- // stackResultDimension directly.
- // Only ordinal axis can be stacked.
-
- if (stacked) {
- if (!lastStackCoords[stackId][baseValue]) {
- lastStackCoords[stackId][baseValue] = {
- p: valueAxisStart,
- // Positive stack
- n: valueAxisStart // Negative stack
-
- };
- } // Should also consider #4243
-
-
- baseCoord = lastStackCoords[stackId][baseValue][sign];
- }
-
- var r0;
- var r;
- var startAngle;
- var endAngle; // radial sector
-
- if (valueAxis.dim === 'radius') {
- var radiusSpan = valueAxis.dataToRadius(value) - valueAxisStart;
- var angle = baseAxis.dataToAngle(baseValue);
-
- if (Math.abs(radiusSpan) < barMinHeight) {
- radiusSpan = (radiusSpan < 0 ? -1 : 1) * barMinHeight;
- }
-
- r0 = baseCoord;
- r = baseCoord + radiusSpan;
- startAngle = angle - columnOffset;
- endAngle = startAngle - columnWidth;
- stacked && (lastStackCoords[stackId][baseValue][sign] = r);
- } // tangential sector
- else {
- var angleSpan = valueAxis.dataToAngle(value, clampLayout) - valueAxisStart;
- var radius = baseAxis.dataToRadius(baseValue);
-
- if (Math.abs(angleSpan) < barMinAngle) {
- angleSpan = (angleSpan < 0 ? -1 : 1) * barMinAngle;
- }
-
- r0 = radius + columnOffset;
- r = r0 + columnWidth;
- startAngle = baseCoord;
- endAngle = baseCoord + angleSpan; // if the previous stack is at the end of the ring,
- // add a round to differentiate it from origin
- // var extent = angleAxis.getExtent();
- // var stackCoord = angle;
- // if (stackCoord === extent[0] && value > 0) {
- // stackCoord = extent[1];
- // }
- // else if (stackCoord === extent[1] && value < 0) {
- // stackCoord = extent[0];
- // }
-
- stacked && (lastStackCoords[stackId][baseValue][sign] = endAngle);
- }
-
- data.setItemLayout(idx, {
- cx: cx,
- cy: cy,
- r0: r0,
- r: r,
- // Consider that positive angle is anti-clockwise,
- // while positive radian of sector is clockwise
- startAngle: -startAngle * Math.PI / 180,
- endAngle: -endAngle * Math.PI / 180
- });
- }
- }, this);
- }
- /**
- * Calculate bar width and offset for radial bar charts
- */
-
-
- function calRadialBar(barSeries, api) {
- // Columns info on each category axis. Key is polar name
- var columnsMap = {};
- zrUtil.each(barSeries, function (seriesModel, idx) {
- var data = seriesModel.getData();
- var polar = seriesModel.coordinateSystem;
- var baseAxis = polar.getBaseAxis();
- var axisKey = getAxisKey(polar, baseAxis);
- var axisExtent = baseAxis.getExtent();
- var bandWidth = baseAxis.type === 'category' ? baseAxis.getBandWidth() : Math.abs(axisExtent[1] - axisExtent[0]) / data.count();
- var columnsOnAxis = columnsMap[axisKey] || {
- bandWidth: bandWidth,
- remainedWidth: bandWidth,
- autoWidthCount: 0,
- categoryGap: '20%',
- gap: '30%',
- stacks: {}
- };
- var stacks = columnsOnAxis.stacks;
- columnsMap[axisKey] = columnsOnAxis;
- var stackId = getSeriesStackId(seriesModel);
-
- if (!stacks[stackId]) {
- columnsOnAxis.autoWidthCount++;
- }
-
- stacks[stackId] = stacks[stackId] || {
- width: 0,
- maxWidth: 0
- };
- var barWidth = parsePercent(seriesModel.get('barWidth'), bandWidth);
- var barMaxWidth = parsePercent(seriesModel.get('barMaxWidth'), bandWidth);
- var barGap = seriesModel.get('barGap');
- var barCategoryGap = seriesModel.get('barCategoryGap');
-
- if (barWidth && !stacks[stackId].width) {
- barWidth = Math.min(columnsOnAxis.remainedWidth, barWidth);
- stacks[stackId].width = barWidth;
- columnsOnAxis.remainedWidth -= barWidth;
- }
-
- barMaxWidth && (stacks[stackId].maxWidth = barMaxWidth);
- barGap != null && (columnsOnAxis.gap = barGap);
- barCategoryGap != null && (columnsOnAxis.categoryGap = barCategoryGap);
- });
- var result = {};
- zrUtil.each(columnsMap, function (columnsOnAxis, coordSysName) {
- result[coordSysName] = {};
- var stacks = columnsOnAxis.stacks;
- var bandWidth = columnsOnAxis.bandWidth;
- var categoryGap = parsePercent(columnsOnAxis.categoryGap, bandWidth);
- var barGapPercent = parsePercent(columnsOnAxis.gap, 1);
- var remainedWidth = columnsOnAxis.remainedWidth;
- var autoWidthCount = columnsOnAxis.autoWidthCount;
- var autoWidth = (remainedWidth - categoryGap) / (autoWidthCount + (autoWidthCount - 1) * barGapPercent);
- autoWidth = Math.max(autoWidth, 0); // Find if any auto calculated bar exceeded maxBarWidth
-
- zrUtil.each(stacks, function (column, stack) {
- var maxWidth = column.maxWidth;
-
- if (maxWidth && maxWidth < autoWidth) {
- maxWidth = Math.min(maxWidth, remainedWidth);
-
- if (column.width) {
- maxWidth = Math.min(maxWidth, column.width);
- }
-
- remainedWidth -= maxWidth;
- column.width = maxWidth;
- autoWidthCount--;
- }
- }); // Recalculate width again
-
- autoWidth = (remainedWidth - categoryGap) / (autoWidthCount + (autoWidthCount - 1) * barGapPercent);
- autoWidth = Math.max(autoWidth, 0);
- var widthSum = 0;
- var lastColumn;
- zrUtil.each(stacks, function (column, idx) {
- if (!column.width) {
- column.width = autoWidth;
- }
-
- lastColumn = column;
- widthSum += column.width * (1 + barGapPercent);
- });
-
- if (lastColumn) {
- widthSum -= lastColumn.width * barGapPercent;
- }
-
- var offset = -widthSum / 2;
- zrUtil.each(stacks, function (column, stackId) {
- result[coordSysName][stackId] = result[coordSysName][stackId] || {
- offset: offset,
- width: column.width
- };
- offset += column.width * (1 + barGapPercent);
- });
- });
- return result;
- }
-
- var _default = barLayoutPolar;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2715:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var RadiusAxis = __webpack_require__(2716);
-
- var AngleAxis = __webpack_require__(2717);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @module echarts/coord/polar/Polar
- */
-
- /**
- * @alias {module:echarts/coord/polar/Polar}
- * @constructor
- * @param {string} name
- */
- var Polar = function (name) {
- /**
- * @type {string}
- */
- this.name = name || '';
- /**
- * x of polar center
- * @type {number}
- */
-
- this.cx = 0;
- /**
- * y of polar center
- * @type {number}
- */
-
- this.cy = 0;
- /**
- * @type {module:echarts/coord/polar/RadiusAxis}
- * @private
- */
-
- this._radiusAxis = new RadiusAxis();
- /**
- * @type {module:echarts/coord/polar/AngleAxis}
- * @private
- */
-
- this._angleAxis = new AngleAxis();
- this._radiusAxis.polar = this._angleAxis.polar = this;
- };
-
- Polar.prototype = {
- type: 'polar',
- axisPointerEnabled: true,
- constructor: Polar,
-
- /**
- * @param {Array.<string>}
- * @readOnly
- */
- dimensions: ['radius', 'angle'],
-
- /**
- * @type {module:echarts/coord/PolarModel}
- */
- model: null,
-
- /**
- * If contain coord
- * @param {Array.<number>} point
- * @return {boolean}
- */
- containPoint: function (point) {
- var coord = this.pointToCoord(point);
- return this._radiusAxis.contain(coord[0]) && this._angleAxis.contain(coord[1]);
- },
-
- /**
- * If contain data
- * @param {Array.<number>} data
- * @return {boolean}
- */
- containData: function (data) {
- return this._radiusAxis.containData(data[0]) && this._angleAxis.containData(data[1]);
- },
-
- /**
- * @param {string} dim
- * @return {module:echarts/coord/polar/AngleAxis|module:echarts/coord/polar/RadiusAxis}
- */
- getAxis: function (dim) {
- return this['_' + dim + 'Axis'];
- },
-
- /**
- * @return {Array.<module:echarts/coord/Axis>}
- */
- getAxes: function () {
- return [this._radiusAxis, this._angleAxis];
- },
-
- /**
- * Get axes by type of scale
- * @param {string} scaleType
- * @return {module:echarts/coord/polar/AngleAxis|module:echarts/coord/polar/RadiusAxis}
- */
- getAxesByScale: function (scaleType) {
- var axes = [];
- var angleAxis = this._angleAxis;
- var radiusAxis = this._radiusAxis;
- angleAxis.scale.type === scaleType && axes.push(angleAxis);
- radiusAxis.scale.type === scaleType && axes.push(radiusAxis);
- return axes;
- },
-
- /**
- * @return {module:echarts/coord/polar/AngleAxis}
- */
- getAngleAxis: function () {
- return this._angleAxis;
- },
-
- /**
- * @return {module:echarts/coord/polar/RadiusAxis}
- */
- getRadiusAxis: function () {
- return this._radiusAxis;
- },
-
- /**
- * @param {module:echarts/coord/polar/Axis}
- * @return {module:echarts/coord/polar/Axis}
- */
- getOtherAxis: function (axis) {
- var angleAxis = this._angleAxis;
- return axis === angleAxis ? this._radiusAxis : angleAxis;
- },
-
- /**
- * Base axis will be used on stacking.
- *
- * @return {module:echarts/coord/polar/Axis}
- */
- getBaseAxis: function () {
- return this.getAxesByScale('ordinal')[0] || this.getAxesByScale('time')[0] || this.getAngleAxis();
- },
-
- /**
- * @param {string} [dim] 'radius' or 'angle' or 'auto' or null/undefined
- * @return {Object} {baseAxes: [], otherAxes: []}
- */
- getTooltipAxes: function (dim) {
- var baseAxis = dim != null && dim !== 'auto' ? this.getAxis(dim) : this.getBaseAxis();
- return {
- baseAxes: [baseAxis],
- otherAxes: [this.getOtherAxis(baseAxis)]
- };
- },
-
- /**
- * Convert a single data item to (x, y) point.
- * Parameter data is an array which the first element is radius and the second is angle
- * @param {Array.<number>} data
- * @param {boolean} [clamp=false]
- * @return {Array.<number>}
- */
- dataToPoint: function (data, clamp) {
- return this.coordToPoint([this._radiusAxis.dataToRadius(data[0], clamp), this._angleAxis.dataToAngle(data[1], clamp)]);
- },
-
- /**
- * Convert a (x, y) point to data
- * @param {Array.<number>} point
- * @param {boolean} [clamp=false]
- * @return {Array.<number>}
- */
- pointToData: function (point, clamp) {
- var coord = this.pointToCoord(point);
- return [this._radiusAxis.radiusToData(coord[0], clamp), this._angleAxis.angleToData(coord[1], clamp)];
- },
-
- /**
- * Convert a (x, y) point to (radius, angle) coord
- * @param {Array.<number>} point
- * @return {Array.<number>}
- */
- pointToCoord: function (point) {
- var dx = point[0] - this.cx;
- var dy = point[1] - this.cy;
- var angleAxis = this.getAngleAxis();
- var extent = angleAxis.getExtent();
- var minAngle = Math.min(extent[0], extent[1]);
- var maxAngle = Math.max(extent[0], extent[1]); // Fix fixed extent in polarCreator
- // FIXME
-
- angleAxis.inverse ? minAngle = maxAngle - 360 : maxAngle = minAngle + 360;
- var radius = Math.sqrt(dx * dx + dy * dy);
- dx /= radius;
- dy /= radius;
- var radian = Math.atan2(-dy, dx) / Math.PI * 180; // move to angleExtent
-
- var dir = radian < minAngle ? 1 : -1;
-
- while (radian < minAngle || radian > maxAngle) {
- radian += dir * 360;
- }
-
- return [radius, radian];
- },
-
- /**
- * Convert a (radius, angle) coord to (x, y) point
- * @param {Array.<number>} coord
- * @return {Array.<number>}
- */
- coordToPoint: function (coord) {
- var radius = coord[0];
- var radian = coord[1] / 180 * Math.PI;
- var x = Math.cos(radian) * radius + this.cx; // Inverse the y
-
- var y = -Math.sin(radian) * radius + this.cy;
- return [x, y];
- },
-
- /**
- * Get ring area of cartesian.
- * Area will have a contain function to determine if a point is in the coordinate system.
- * @return {Ring}
- */
- getArea: function () {
- var angleAxis = this.getAngleAxis();
- var radiusAxis = this.getRadiusAxis();
- var radiusExtent = radiusAxis.getExtent().slice();
- radiusExtent[0] > radiusExtent[1] && radiusExtent.reverse();
- var angleExtent = angleAxis.getExtent();
- var RADIAN = Math.PI / 180;
- return {
- cx: this.cx,
- cy: this.cy,
- r0: radiusExtent[0],
- r: radiusExtent[1],
- startAngle: -angleExtent[0] * RADIAN,
- endAngle: -angleExtent[1] * RADIAN,
- clockwise: angleAxis.inverse,
- contain: function (x, y) {
- // It's a ring shape.
- // Start angle and end angle don't matter
- var dx = x - this.cx;
- var dy = y - this.cy;
- var d2 = dx * dx + dy * dy;
- var r = this.r;
- var r0 = this.r0;
- return d2 <= r * r && d2 >= r0 * r0;
- }
- };
- }
- };
- var _default = Polar;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2716:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var Axis = __webpack_require__(1484);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function RadiusAxis(scale, radiusExtent) {
- Axis.call(this, 'radius', scale, radiusExtent);
- /**
- * Axis type
- * - 'category'
- * - 'value'
- * - 'time'
- * - 'log'
- * @type {string}
- */
-
- this.type = 'category';
- }
-
- RadiusAxis.prototype = {
- constructor: RadiusAxis,
-
- /**
- * @override
- */
- pointToData: function (point, clamp) {
- return this.polar.pointToData(point, clamp)[this.dim === 'radius' ? 0 : 1];
- },
- dataToRadius: Axis.prototype.dataToCoord,
- radiusToData: Axis.prototype.coordToData
- };
- zrUtil.inherits(RadiusAxis, Axis);
- var _default = RadiusAxis;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2717:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var textContain = __webpack_require__(1402);
-
- var Axis = __webpack_require__(1484);
-
- var _model = __webpack_require__(1064);
-
- var makeInner = _model.makeInner;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var inner = makeInner();
-
- function AngleAxis(scale, angleExtent) {
- angleExtent = angleExtent || [0, 360];
- Axis.call(this, 'angle', scale, angleExtent);
- /**
- * Axis type
- * - 'category'
- * - 'value'
- * - 'time'
- * - 'log'
- * @type {string}
- */
-
- this.type = 'category';
- }
-
- AngleAxis.prototype = {
- constructor: AngleAxis,
-
- /**
- * @override
- */
- pointToData: function (point, clamp) {
- return this.polar.pointToData(point, clamp)[this.dim === 'radius' ? 0 : 1];
- },
- dataToAngle: Axis.prototype.dataToCoord,
- angleToData: Axis.prototype.coordToData,
-
- /**
- * Only be called in category axis.
- * Angle axis uses text height to decide interval
- *
- * @override
- * @return {number} Auto interval for cateogry axis tick and label
- */
- calculateCategoryInterval: function () {
- var axis = this;
- var labelModel = axis.getLabelModel();
- var ordinalScale = axis.scale;
- var ordinalExtent = ordinalScale.getExtent(); // Providing this method is for optimization:
- // avoid generating a long array by `getTicks`
- // in large category data case.
-
- var tickCount = ordinalScale.count();
-
- if (ordinalExtent[1] - ordinalExtent[0] < 1) {
- return 0;
- }
-
- var tickValue = ordinalExtent[0];
- var unitSpan = axis.dataToCoord(tickValue + 1) - axis.dataToCoord(tickValue);
- var unitH = Math.abs(unitSpan); // Not precise, just use height as text width
- // and each distance from axis line yet.
-
- var rect = textContain.getBoundingRect(tickValue, labelModel.getFont(), 'center', 'top');
- var maxH = Math.max(rect.height, 7);
- var dh = maxH / unitH; // 0/0 is NaN, 1/0 is Infinity.
-
- isNaN(dh) && (dh = Infinity);
- var interval = Math.max(0, Math.floor(dh));
- var cache = inner(axis.model);
- var lastAutoInterval = cache.lastAutoInterval;
- var lastTickCount = cache.lastTickCount; // Use cache to keep interval stable while moving zoom window,
- // otherwise the calculated interval might jitter when the zoom
- // window size is close to the interval-changing size.
-
- if (lastAutoInterval != null && lastTickCount != null && Math.abs(lastAutoInterval - interval) <= 1 && Math.abs(lastTickCount - tickCount) <= 1 // Always choose the bigger one, otherwise the critical
- // point is not the same when zooming in or zooming out.
- && lastAutoInterval > interval) {
- interval = lastAutoInterval;
- } // Only update cache if cache not used, otherwise the
- // changing of interval is too insensitive.
- else {
- cache.lastTickCount = tickCount;
- cache.lastAutoInterval = interval;
- }
-
- return interval;
- }
- };
- zrUtil.inherits(AngleAxis, Axis);
- var _default = AngleAxis;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2718:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- __webpack_require__(2719);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = echarts.extendComponentModel({
- type: 'polar',
- dependencies: ['polarAxis', 'angleAxis'],
-
- /**
- * @type {module:echarts/coord/polar/Polar}
- */
- coordinateSystem: null,
-
- /**
- * @param {string} axisType
- * @return {module:echarts/coord/polar/AxisModel}
- */
- findAxisModel: function (axisType) {
- var foundAxisModel;
- var ecModel = this.ecModel;
- ecModel.eachComponent(axisType, function (axisModel) {
- if (axisModel.getCoordSysModel() === this) {
- foundAxisModel = axisModel;
- }
- }, this);
- return foundAxisModel;
- },
- defaultOption: {
- zlevel: 0,
- z: 0,
- center: ['50%', '50%'],
- radius: '80%'
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2719:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var ComponentModel = __webpack_require__(1321);
-
- var axisModelCreator = __webpack_require__(1791);
-
- var axisModelCommonMixin = __webpack_require__(1603);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var PolarAxisModel = ComponentModel.extend({
- type: 'polarAxis',
-
- /**
- * @type {module:echarts/coord/polar/AngleAxis|module:echarts/coord/polar/RadiusAxis}
- */
- axis: null,
-
- /**
- * @override
- */
- getCoordSysModel: function () {
- return this.ecModel.queryComponents({
- mainType: 'polar',
- index: this.option.polarIndex,
- id: this.option.polarId
- })[0];
- }
- });
- zrUtil.merge(PolarAxisModel.prototype, axisModelCommonMixin);
- var polarAxisDefaultExtendedOption = {
- angle: {
- // polarIndex: 0,
- // polarId: '',
- startAngle: 90,
- clockwise: true,
- splitNumber: 12,
- axisLabel: {
- rotate: false
- }
- },
- radius: {
- // polarIndex: 0,
- // polarId: '',
- splitNumber: 5
- }
- };
-
- function getAxisType(axisDim, option) {
- // Default axis with data is category axis
- return option.type || (option.data ? 'category' : 'value');
- }
-
- axisModelCreator('angle', PolarAxisModel, getAxisType, polarAxisDefaultExtendedOption.angle);
- axisModelCreator('radius', PolarAxisModel, getAxisType, polarAxisDefaultExtendedOption.radius);
-
- /***/ }),
-
- /***/ 2720:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- __webpack_require__(1917);
-
- __webpack_require__(2721);
-
- /***/ }),
-
- /***/ 2721:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var graphic = __webpack_require__(906);
-
- var Model = __webpack_require__(1317);
-
- var AxisView = __webpack_require__(1521);
-
- var AxisBuilder = __webpack_require__(1485);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var elementList = ['axisLine', 'axisLabel', 'axisTick', 'minorTick', 'splitLine', 'minorSplitLine', 'splitArea'];
-
- function getAxisLineShape(polar, rExtent, angle) {
- rExtent[1] > rExtent[0] && (rExtent = rExtent.slice().reverse());
- var start = polar.coordToPoint([rExtent[0], angle]);
- var end = polar.coordToPoint([rExtent[1], angle]);
- return {
- x1: start[0],
- y1: start[1],
- x2: end[0],
- y2: end[1]
- };
- }
-
- function getRadiusIdx(polar) {
- var radiusAxis = polar.getRadiusAxis();
- return radiusAxis.inverse ? 0 : 1;
- } // Remove the last tick which will overlap the first tick
-
-
- function fixAngleOverlap(list) {
- var firstItem = list[0];
- var lastItem = list[list.length - 1];
-
- if (firstItem && lastItem && Math.abs(Math.abs(firstItem.coord - lastItem.coord) - 360) < 1e-4) {
- list.pop();
- }
- }
-
- var _default = AxisView.extend({
- type: 'angleAxis',
- axisPointerClass: 'PolarAxisPointer',
- render: function (angleAxisModel, ecModel) {
- this.group.removeAll();
-
- if (!angleAxisModel.get('show')) {
- return;
- }
-
- var angleAxis = angleAxisModel.axis;
- var polar = angleAxis.polar;
- var radiusExtent = polar.getRadiusAxis().getExtent();
- var ticksAngles = angleAxis.getTicksCoords();
- var minorTickAngles = angleAxis.getMinorTicksCoords();
- var labels = zrUtil.map(angleAxis.getViewLabels(), function (labelItem) {
- var labelItem = zrUtil.clone(labelItem);
- labelItem.coord = angleAxis.dataToCoord(labelItem.tickValue);
- return labelItem;
- });
- fixAngleOverlap(labels);
- fixAngleOverlap(ticksAngles);
- zrUtil.each(elementList, function (name) {
- if (angleAxisModel.get(name + '.show') && (!angleAxis.scale.isBlank() || name === 'axisLine')) {
- this['_' + name](angleAxisModel, polar, ticksAngles, minorTickAngles, radiusExtent, labels);
- }
- }, this);
- },
-
- /**
- * @private
- */
- _axisLine: function (angleAxisModel, polar, ticksAngles, minorTickAngles, radiusExtent) {
- var lineStyleModel = angleAxisModel.getModel('axisLine.lineStyle'); // extent id of the axis radius (r0 and r)
-
- var rId = getRadiusIdx(polar);
- var r0Id = rId ? 0 : 1;
- var shape;
-
- if (radiusExtent[r0Id] === 0) {
- shape = new graphic.Circle({
- shape: {
- cx: polar.cx,
- cy: polar.cy,
- r: radiusExtent[rId]
- },
- style: lineStyleModel.getLineStyle(),
- z2: 1,
- silent: true
- });
- } else {
- shape = new graphic.Ring({
- shape: {
- cx: polar.cx,
- cy: polar.cy,
- r: radiusExtent[rId],
- r0: radiusExtent[r0Id]
- },
- style: lineStyleModel.getLineStyle(),
- z2: 1,
- silent: true
- });
- }
-
- shape.style.fill = null;
- this.group.add(shape);
- },
-
- /**
- * @private
- */
- _axisTick: function (angleAxisModel, polar, ticksAngles, minorTickAngles, radiusExtent) {
- var tickModel = angleAxisModel.getModel('axisTick');
- var tickLen = (tickModel.get('inside') ? -1 : 1) * tickModel.get('length');
- var radius = radiusExtent[getRadiusIdx(polar)];
- var lines = zrUtil.map(ticksAngles, function (tickAngleItem) {
- return new graphic.Line({
- shape: getAxisLineShape(polar, [radius, radius + tickLen], tickAngleItem.coord)
- });
- });
- this.group.add(graphic.mergePath(lines, {
- style: zrUtil.defaults(tickModel.getModel('lineStyle').getLineStyle(), {
- stroke: angleAxisModel.get('axisLine.lineStyle.color')
- })
- }));
- },
-
- /**
- * @private
- */
- _minorTick: function (angleAxisModel, polar, tickAngles, minorTickAngles, radiusExtent) {
- if (!minorTickAngles.length) {
- return;
- }
-
- var tickModel = angleAxisModel.getModel('axisTick');
- var minorTickModel = angleAxisModel.getModel('minorTick');
- var tickLen = (tickModel.get('inside') ? -1 : 1) * minorTickModel.get('length');
- var radius = radiusExtent[getRadiusIdx(polar)];
- var lines = [];
-
- for (var i = 0; i < minorTickAngles.length; i++) {
- for (var k = 0; k < minorTickAngles[i].length; k++) {
- lines.push(new graphic.Line({
- shape: getAxisLineShape(polar, [radius, radius + tickLen], minorTickAngles[i][k].coord)
- }));
- }
- }
-
- this.group.add(graphic.mergePath(lines, {
- style: zrUtil.defaults(minorTickModel.getModel('lineStyle').getLineStyle(), zrUtil.defaults(tickModel.getLineStyle(), {
- stroke: angleAxisModel.get('axisLine.lineStyle.color')
- }))
- }));
- },
-
- /**
- * @private
- */
- _axisLabel: function (angleAxisModel, polar, ticksAngles, minorTickAngles, radiusExtent, labels) {
- var rawCategoryData = angleAxisModel.getCategories(true);
- var commonLabelModel = angleAxisModel.getModel('axisLabel');
- var labelMargin = commonLabelModel.get('margin');
- var triggerEvent = angleAxisModel.get('triggerEvent'); // Use length of ticksAngles because it may remove the last tick to avoid overlapping
-
- zrUtil.each(labels, function (labelItem, idx) {
- var labelModel = commonLabelModel;
- var tickValue = labelItem.tickValue;
- var r = radiusExtent[getRadiusIdx(polar)];
- var p = polar.coordToPoint([r + labelMargin, labelItem.coord]);
- var cx = polar.cx;
- var cy = polar.cy;
- var labelTextAlign = Math.abs(p[0] - cx) / r < 0.3 ? 'center' : p[0] > cx ? 'left' : 'right';
- var labelTextVerticalAlign = Math.abs(p[1] - cy) / r < 0.3 ? 'middle' : p[1] > cy ? 'top' : 'bottom';
-
- if (rawCategoryData && rawCategoryData[tickValue] && rawCategoryData[tickValue].textStyle) {
- labelModel = new Model(rawCategoryData[tickValue].textStyle, commonLabelModel, commonLabelModel.ecModel);
- }
-
- var textEl = new graphic.Text({
- silent: AxisBuilder.isLabelSilent(angleAxisModel)
- });
- this.group.add(textEl);
- graphic.setTextStyle(textEl.style, labelModel, {
- x: p[0],
- y: p[1],
- textFill: labelModel.getTextColor() || angleAxisModel.get('axisLine.lineStyle.color'),
- text: labelItem.formattedLabel,
- textAlign: labelTextAlign,
- textVerticalAlign: labelTextVerticalAlign
- }); // Pack data for mouse event
-
- if (triggerEvent) {
- textEl.eventData = AxisBuilder.makeAxisEventDataBase(angleAxisModel);
- textEl.eventData.targetType = 'axisLabel';
- textEl.eventData.value = labelItem.rawLabel;
- }
- }, this);
- },
-
- /**
- * @private
- */
- _splitLine: function (angleAxisModel, polar, ticksAngles, minorTickAngles, radiusExtent) {
- var splitLineModel = angleAxisModel.getModel('splitLine');
- var lineStyleModel = splitLineModel.getModel('lineStyle');
- var lineColors = lineStyleModel.get('color');
- var lineCount = 0;
- lineColors = lineColors instanceof Array ? lineColors : [lineColors];
- var splitLines = [];
-
- for (var i = 0; i < ticksAngles.length; i++) {
- var colorIndex = lineCount++ % lineColors.length;
- splitLines[colorIndex] = splitLines[colorIndex] || [];
- splitLines[colorIndex].push(new graphic.Line({
- shape: getAxisLineShape(polar, radiusExtent, ticksAngles[i].coord)
- }));
- } // Simple optimization
- // Batching the lines if color are the same
-
-
- for (var i = 0; i < splitLines.length; i++) {
- this.group.add(graphic.mergePath(splitLines[i], {
- style: zrUtil.defaults({
- stroke: lineColors[i % lineColors.length]
- }, lineStyleModel.getLineStyle()),
- silent: true,
- z: angleAxisModel.get('z')
- }));
- }
- },
-
- /**
- * @private
- */
- _minorSplitLine: function (angleAxisModel, polar, ticksAngles, minorTickAngles, radiusExtent) {
- if (!minorTickAngles.length) {
- return;
- }
-
- var minorSplitLineModel = angleAxisModel.getModel('minorSplitLine');
- var lineStyleModel = minorSplitLineModel.getModel('lineStyle');
- var lines = [];
-
- for (var i = 0; i < minorTickAngles.length; i++) {
- for (var k = 0; k < minorTickAngles[i].length; k++) {
- lines.push(new graphic.Line({
- shape: getAxisLineShape(polar, radiusExtent, minorTickAngles[i][k].coord)
- }));
- }
- }
-
- this.group.add(graphic.mergePath(lines, {
- style: lineStyleModel.getLineStyle(),
- silent: true,
- z: angleAxisModel.get('z')
- }));
- },
-
- /**
- * @private
- */
- _splitArea: function (angleAxisModel, polar, ticksAngles, minorTickAngles, radiusExtent) {
- if (!ticksAngles.length) {
- return;
- }
-
- var splitAreaModel = angleAxisModel.getModel('splitArea');
- var areaStyleModel = splitAreaModel.getModel('areaStyle');
- var areaColors = areaStyleModel.get('color');
- var lineCount = 0;
- areaColors = areaColors instanceof Array ? areaColors : [areaColors];
- var splitAreas = [];
- var RADIAN = Math.PI / 180;
- var prevAngle = -ticksAngles[0].coord * RADIAN;
- var r0 = Math.min(radiusExtent[0], radiusExtent[1]);
- var r1 = Math.max(radiusExtent[0], radiusExtent[1]);
- var clockwise = angleAxisModel.get('clockwise');
-
- for (var i = 1; i < ticksAngles.length; i++) {
- var colorIndex = lineCount++ % areaColors.length;
- splitAreas[colorIndex] = splitAreas[colorIndex] || [];
- splitAreas[colorIndex].push(new graphic.Sector({
- shape: {
- cx: polar.cx,
- cy: polar.cy,
- r0: r0,
- r: r1,
- startAngle: prevAngle,
- endAngle: -ticksAngles[i].coord * RADIAN,
- clockwise: clockwise
- },
- silent: true
- }));
- prevAngle = -ticksAngles[i].coord * RADIAN;
- } // Simple optimization
- // Batching the lines if color are the same
-
-
- for (var i = 0; i < splitAreas.length; i++) {
- this.group.add(graphic.mergePath(splitAreas[i], {
- style: zrUtil.defaults({
- fill: areaColors[i % areaColors.length]
- }, areaStyleModel.getAreaStyle()),
- silent: true
- }));
- }
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2722:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- __webpack_require__(1917);
-
- __webpack_require__(2723);
-
- /***/ }),
-
- /***/ 2723:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var graphic = __webpack_require__(906);
-
- var AxisBuilder = __webpack_require__(1485);
-
- var AxisView = __webpack_require__(1521);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var axisBuilderAttrs = ['axisLine', 'axisTickLabel', 'axisName'];
- var selfBuilderAttrs = ['splitLine', 'splitArea', 'minorSplitLine'];
-
- var _default = AxisView.extend({
- type: 'radiusAxis',
- axisPointerClass: 'PolarAxisPointer',
- render: function (radiusAxisModel, ecModel) {
- this.group.removeAll();
-
- if (!radiusAxisModel.get('show')) {
- return;
- }
-
- var radiusAxis = radiusAxisModel.axis;
- var polar = radiusAxis.polar;
- var angleAxis = polar.getAngleAxis();
- var ticksCoords = radiusAxis.getTicksCoords();
- var minorTicksCoords = radiusAxis.getMinorTicksCoords();
- var axisAngle = angleAxis.getExtent()[0];
- var radiusExtent = radiusAxis.getExtent();
- var layout = layoutAxis(polar, radiusAxisModel, axisAngle);
- var axisBuilder = new AxisBuilder(radiusAxisModel, layout);
- zrUtil.each(axisBuilderAttrs, axisBuilder.add, axisBuilder);
- this.group.add(axisBuilder.getGroup());
- zrUtil.each(selfBuilderAttrs, function (name) {
- if (radiusAxisModel.get(name + '.show') && !radiusAxis.scale.isBlank()) {
- this['_' + name](radiusAxisModel, polar, axisAngle, radiusExtent, ticksCoords, minorTicksCoords);
- }
- }, this);
- },
-
- /**
- * @private
- */
- _splitLine: function (radiusAxisModel, polar, axisAngle, radiusExtent, ticksCoords) {
- var splitLineModel = radiusAxisModel.getModel('splitLine');
- var lineStyleModel = splitLineModel.getModel('lineStyle');
- var lineColors = lineStyleModel.get('color');
- var lineCount = 0;
- lineColors = lineColors instanceof Array ? lineColors : [lineColors];
- var splitLines = [];
-
- for (var i = 0; i < ticksCoords.length; i++) {
- var colorIndex = lineCount++ % lineColors.length;
- splitLines[colorIndex] = splitLines[colorIndex] || [];
- splitLines[colorIndex].push(new graphic.Circle({
- shape: {
- cx: polar.cx,
- cy: polar.cy,
- r: ticksCoords[i].coord
- }
- }));
- } // Simple optimization
- // Batching the lines if color are the same
-
-
- for (var i = 0; i < splitLines.length; i++) {
- this.group.add(graphic.mergePath(splitLines[i], {
- style: zrUtil.defaults({
- stroke: lineColors[i % lineColors.length],
- fill: null
- }, lineStyleModel.getLineStyle()),
- silent: true
- }));
- }
- },
-
- /**
- * @private
- */
- _minorSplitLine: function (radiusAxisModel, polar, axisAngle, radiusExtent, ticksCoords, minorTicksCoords) {
- if (!minorTicksCoords.length) {
- return;
- }
-
- var minorSplitLineModel = radiusAxisModel.getModel('minorSplitLine');
- var lineStyleModel = minorSplitLineModel.getModel('lineStyle');
- var lines = [];
-
- for (var i = 0; i < minorTicksCoords.length; i++) {
- for (var k = 0; k < minorTicksCoords[i].length; k++) {
- lines.push(new graphic.Circle({
- shape: {
- cx: polar.cx,
- cy: polar.cy,
- r: minorTicksCoords[i][k].coord
- }
- }));
- }
- }
-
- this.group.add(graphic.mergePath(lines, {
- style: zrUtil.defaults({
- fill: null
- }, lineStyleModel.getLineStyle()),
- silent: true
- }));
- },
-
- /**
- * @private
- */
- _splitArea: function (radiusAxisModel, polar, axisAngle, radiusExtent, ticksCoords) {
- if (!ticksCoords.length) {
- return;
- }
-
- var splitAreaModel = radiusAxisModel.getModel('splitArea');
- var areaStyleModel = splitAreaModel.getModel('areaStyle');
- var areaColors = areaStyleModel.get('color');
- var lineCount = 0;
- areaColors = areaColors instanceof Array ? areaColors : [areaColors];
- var splitAreas = [];
- var prevRadius = ticksCoords[0].coord;
-
- for (var i = 1; i < ticksCoords.length; i++) {
- var colorIndex = lineCount++ % areaColors.length;
- splitAreas[colorIndex] = splitAreas[colorIndex] || [];
- splitAreas[colorIndex].push(new graphic.Sector({
- shape: {
- cx: polar.cx,
- cy: polar.cy,
- r0: prevRadius,
- r: ticksCoords[i].coord,
- startAngle: 0,
- endAngle: Math.PI * 2
- },
- silent: true
- }));
- prevRadius = ticksCoords[i].coord;
- } // Simple optimization
- // Batching the lines if color are the same
-
-
- for (var i = 0; i < splitAreas.length; i++) {
- this.group.add(graphic.mergePath(splitAreas[i], {
- style: zrUtil.defaults({
- fill: areaColors[i % areaColors.length]
- }, areaStyleModel.getAreaStyle()),
- silent: true
- }));
- }
- }
- });
- /**
- * @inner
- */
-
-
- function layoutAxis(polar, radiusAxisModel, axisAngle) {
- return {
- position: [polar.cx, polar.cy],
- rotation: axisAngle / 180 * Math.PI,
- labelDirection: -1,
- tickDirection: -1,
- nameDirection: 1,
- labelRotate: radiusAxisModel.getModel('axisLabel').get('rotate'),
- // Over splitLine and splitArea
- z2: 1
- };
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2724:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var formatUtil = __webpack_require__(1186);
-
- var BaseAxisPointer = __webpack_require__(1916);
-
- var graphic = __webpack_require__(906);
-
- var viewHelper = __webpack_require__(1796);
-
- var matrix = __webpack_require__(1350);
-
- var AxisBuilder = __webpack_require__(1485);
-
- var AxisView = __webpack_require__(1521);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var PolarAxisPointer = BaseAxisPointer.extend({
- /**
- * @override
- */
- makeElOption: function (elOption, value, axisModel, axisPointerModel, api) {
- var axis = axisModel.axis;
-
- if (axis.dim === 'angle') {
- this.animationThreshold = Math.PI / 18;
- }
-
- var polar = axis.polar;
- var otherAxis = polar.getOtherAxis(axis);
- var otherExtent = otherAxis.getExtent();
- var coordValue;
- coordValue = axis['dataTo' + formatUtil.capitalFirst(axis.dim)](value);
- var axisPointerType = axisPointerModel.get('type');
-
- if (axisPointerType && axisPointerType !== 'none') {
- var elStyle = viewHelper.buildElStyle(axisPointerModel);
- var pointerOption = pointerShapeBuilder[axisPointerType](axis, polar, coordValue, otherExtent, elStyle);
- pointerOption.style = elStyle;
- elOption.graphicKey = pointerOption.type;
- elOption.pointer = pointerOption;
- }
-
- var labelMargin = axisPointerModel.get('label.margin');
- var labelPos = getLabelPosition(value, axisModel, axisPointerModel, polar, labelMargin);
- viewHelper.buildLabelElOption(elOption, axisModel, axisPointerModel, api, labelPos);
- } // Do not support handle, utill any user requires it.
-
- });
-
- function getLabelPosition(value, axisModel, axisPointerModel, polar, labelMargin) {
- var axis = axisModel.axis;
- var coord = axis.dataToCoord(value);
- var axisAngle = polar.getAngleAxis().getExtent()[0];
- axisAngle = axisAngle / 180 * Math.PI;
- var radiusExtent = polar.getRadiusAxis().getExtent();
- var position;
- var align;
- var verticalAlign;
-
- if (axis.dim === 'radius') {
- var transform = matrix.create();
- matrix.rotate(transform, transform, axisAngle);
- matrix.translate(transform, transform, [polar.cx, polar.cy]);
- position = graphic.applyTransform([coord, -labelMargin], transform);
- var labelRotation = axisModel.getModel('axisLabel').get('rotate') || 0;
- var labelLayout = AxisBuilder.innerTextLayout(axisAngle, labelRotation * Math.PI / 180, -1);
- align = labelLayout.textAlign;
- verticalAlign = labelLayout.textVerticalAlign;
- } else {
- // angle axis
- var r = radiusExtent[1];
- position = polar.coordToPoint([r + labelMargin, coord]);
- var cx = polar.cx;
- var cy = polar.cy;
- align = Math.abs(position[0] - cx) / r < 0.3 ? 'center' : position[0] > cx ? 'left' : 'right';
- verticalAlign = Math.abs(position[1] - cy) / r < 0.3 ? 'middle' : position[1] > cy ? 'top' : 'bottom';
- }
-
- return {
- position: position,
- align: align,
- verticalAlign: verticalAlign
- };
- }
-
- var pointerShapeBuilder = {
- line: function (axis, polar, coordValue, otherExtent, elStyle) {
- return axis.dim === 'angle' ? {
- type: 'Line',
- shape: viewHelper.makeLineShape(polar.coordToPoint([otherExtent[0], coordValue]), polar.coordToPoint([otherExtent[1], coordValue]))
- } : {
- type: 'Circle',
- shape: {
- cx: polar.cx,
- cy: polar.cy,
- r: coordValue
- }
- };
- },
- shadow: function (axis, polar, coordValue, otherExtent, elStyle) {
- var bandWidth = Math.max(1, axis.getBandWidth());
- var radian = Math.PI / 180;
- return axis.dim === 'angle' ? {
- type: 'Sector',
- shape: viewHelper.makeSectorShape(polar.cx, polar.cy, otherExtent[0], otherExtent[1], // In ECharts y is negative if angle is positive
- (-coordValue - bandWidth / 2) * radian, (-coordValue + bandWidth / 2) * radian)
- } : {
- type: 'Sector',
- shape: viewHelper.makeSectorShape(polar.cx, polar.cy, coordValue - bandWidth / 2, coordValue + bandWidth / 2, 0, Math.PI * 2)
- };
- }
- };
- AxisView.registerAxisPointerClass('PolarAxisPointer', PolarAxisPointer);
- var _default = PolarAxisPointer;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2725:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- __webpack_require__(2726);
-
- __webpack_require__(1909);
-
- __webpack_require__(2727);
-
- __webpack_require__(2302);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function makeAction(method, actionInfo) {
- actionInfo.update = 'updateView';
- echarts.registerAction(actionInfo, function (payload, ecModel) {
- var selected = {};
- ecModel.eachComponent({
- mainType: 'geo',
- query: payload
- }, function (geoModel) {
- geoModel[method](payload.name);
- var geo = geoModel.coordinateSystem;
- zrUtil.each(geo.regions, function (region) {
- selected[region.name] = geoModel.isSelected(region.name) || false;
- });
- });
- return {
- selected: selected,
- name: payload.name
- };
- });
- }
-
- makeAction('toggleSelected', {
- type: 'geoToggleSelect',
- event: 'geoselectchanged'
- });
- makeAction('select', {
- type: 'geoSelect',
- event: 'geoselected'
- });
- makeAction('unSelect', {
- type: 'geoUnSelect',
- event: 'geounselected'
- });
-
- /***/ }),
-
- /***/ 2726:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var modelUtil = __webpack_require__(1064);
-
- var ComponentModel = __webpack_require__(1321);
-
- var Model = __webpack_require__(1317);
-
- var selectableMixin = __webpack_require__(1906);
-
- var geoCreator = __webpack_require__(1909);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var GeoModel = ComponentModel.extend({
- type: 'geo',
-
- /**
- * @type {module:echarts/coord/geo/Geo}
- */
- coordinateSystem: null,
- layoutMode: 'box',
- init: function (option) {
- ComponentModel.prototype.init.apply(this, arguments); // Default label emphasis `show`
-
- modelUtil.defaultEmphasis(option, 'label', ['show']);
- },
- optionUpdated: function () {
- var option = this.option;
- var self = this;
- option.regions = geoCreator.getFilledRegions(option.regions, option.map, option.nameMap);
- this._optionModelMap = zrUtil.reduce(option.regions || [], function (optionModelMap, regionOpt) {
- if (regionOpt.name) {
- optionModelMap.set(regionOpt.name, new Model(regionOpt, self));
- }
-
- return optionModelMap;
- }, zrUtil.createHashMap());
- this.updateSelectedMap(option.regions);
- },
- defaultOption: {
- zlevel: 0,
- z: 0,
- show: true,
- left: 'center',
- top: 'center',
- // width:,
- // height:,
- // right
- // bottom
- // Aspect is width / height. Inited to be geoJson bbox aspect
- // This parameter is used for scale this aspect
- // If svg used, aspectScale is 1 by default.
- // aspectScale: 0.75,
- aspectScale: null,
- ///// Layout with center and size
- // If you wan't to put map in a fixed size box with right aspect ratio
- // This two properties may more conveninet
- // layoutCenter: [50%, 50%]
- // layoutSize: 100
- silent: false,
- // Map type
- map: '',
- // Define left-top, right-bottom coords to control view
- // For example, [ [180, 90], [-180, -90] ]
- boundingCoords: null,
- // Default on center of map
- center: null,
- zoom: 1,
- scaleLimit: null,
- // selectedMode: false
- label: {
- show: false,
- color: '#000'
- },
- itemStyle: {
- // color: 各异,
- borderWidth: 0.5,
- borderColor: '#444',
- color: '#eee'
- },
- emphasis: {
- label: {
- show: true,
- color: 'rgb(100,0,0)'
- },
- itemStyle: {
- color: 'rgba(255,215,0,0.8)'
- }
- },
- regions: []
- },
-
- /**
- * Get model of region
- * @param {string} name
- * @return {module:echarts/model/Model}
- */
- getRegionModel: function (name) {
- return this._optionModelMap.get(name) || new Model(null, this, this.ecModel);
- },
-
- /**
- * Format label
- * @param {string} name Region name
- * @param {string} [status='normal'] 'normal' or 'emphasis'
- * @return {string}
- */
- getFormattedLabel: function (name, status) {
- var regionModel = this.getRegionModel(name);
- var formatter = regionModel.get('label' + (status === 'normal' ? '.' : status + '.') + 'formatter');
- var params = {
- name: name
- };
-
- if (typeof formatter === 'function') {
- params.status = status;
- return formatter(params);
- } else if (typeof formatter === 'string') {
- return formatter.replace('{a}', name != null ? name : '');
- }
- },
- setZoom: function (zoom) {
- this.option.zoom = zoom;
- },
- setCenter: function (center) {
- this.option.center = center;
- }
- });
- zrUtil.mixin(GeoModel, selectableMixin);
- var _default = GeoModel;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2727:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var MapDraw = __webpack_require__(2300);
-
- var echarts = __webpack_require__(881);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = echarts.extendComponentView({
- type: 'geo',
- init: function (ecModel, api) {
- var mapDraw = new MapDraw(api, true);
- this._mapDraw = mapDraw;
- this.group.add(mapDraw.group);
- },
- render: function (geoModel, ecModel, api, payload) {
- // Not render if it is an toggleSelect action from self
- if (payload && payload.type === 'geoToggleSelect' && payload.from === this.uid) {
- return;
- }
-
- var mapDraw = this._mapDraw;
-
- if (geoModel.get('show')) {
- mapDraw.draw(geoModel, ecModel, api, this, payload);
- } else {
- this._mapDraw.group.removeAll();
- }
-
- this.group.silent = geoModel.get('silent');
- },
- dispose: function () {
- this._mapDraw && this._mapDraw.remove();
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2728:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- __webpack_require__(2729);
-
- __webpack_require__(2730);
-
- __webpack_require__(2731);
-
- /***/ }),
-
- /***/ 2729:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var layout = __webpack_require__(1171);
-
- var numberUtil = __webpack_require__(985);
-
- var CoordinateSystem = __webpack_require__(1414);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // (24*60*60*1000)
- var PROXIMATE_ONE_DAY = 86400000;
- /**
- * Calendar
- *
- * @constructor
- *
- * @param {Object} calendarModel calendarModel
- * @param {Object} ecModel ecModel
- * @param {Object} api api
- */
-
- function Calendar(calendarModel, ecModel, api) {
- this._model = calendarModel;
- }
-
- Calendar.prototype = {
- constructor: Calendar,
- type: 'calendar',
- dimensions: ['time', 'value'],
- // Required in createListFromData
- getDimensionsInfo: function () {
- return [{
- name: 'time',
- type: 'time'
- }, 'value'];
- },
- getRangeInfo: function () {
- return this._rangeInfo;
- },
- getModel: function () {
- return this._model;
- },
- getRect: function () {
- return this._rect;
- },
- getCellWidth: function () {
- return this._sw;
- },
- getCellHeight: function () {
- return this._sh;
- },
- getOrient: function () {
- return this._orient;
- },
-
- /**
- * getFirstDayOfWeek
- *
- * @example
- * 0 : start at Sunday
- * 1 : start at Monday
- *
- * @return {number}
- */
- getFirstDayOfWeek: function () {
- return this._firstDayOfWeek;
- },
-
- /**
- * get date info
- *
- * @param {string|number} date date
- * @return {Object}
- * {
- * y: string, local full year, eg., '1940',
- * m: string, local month, from '01' ot '12',
- * d: string, local date, from '01' to '31' (if exists),
- * day: It is not date.getDay(). It is the location of the cell in a week, from 0 to 6,
- * time: timestamp,
- * formatedDate: string, yyyy-MM-dd,
- * date: original date object.
- * }
- */
- getDateInfo: function (date) {
- date = numberUtil.parseDate(date);
- var y = date.getFullYear();
- var m = date.getMonth() + 1;
- m = m < 10 ? '0' + m : m;
- var d = date.getDate();
- d = d < 10 ? '0' + d : d;
- var day = date.getDay();
- day = Math.abs((day + 7 - this.getFirstDayOfWeek()) % 7);
- return {
- y: y,
- m: m,
- d: d,
- day: day,
- time: date.getTime(),
- formatedDate: y + '-' + m + '-' + d,
- date: date
- };
- },
- getNextNDay: function (date, n) {
- n = n || 0;
-
- if (n === 0) {
- return this.getDateInfo(date);
- }
-
- date = new Date(this.getDateInfo(date).time);
- date.setDate(date.getDate() + n);
- return this.getDateInfo(date);
- },
- update: function (ecModel, api) {
- this._firstDayOfWeek = +this._model.getModel('dayLabel').get('firstDay');
- this._orient = this._model.get('orient');
- this._lineWidth = this._model.getModel('itemStyle').getItemStyle().lineWidth || 0;
- this._rangeInfo = this._getRangeInfo(this._initRangeOption());
- var weeks = this._rangeInfo.weeks || 1;
- var whNames = ['width', 'height'];
-
- var cellSize = this._model.get('cellSize').slice();
-
- var layoutParams = this._model.getBoxLayoutParams();
-
- var cellNumbers = this._orient === 'horizontal' ? [weeks, 7] : [7, weeks];
- zrUtil.each([0, 1], function (idx) {
- if (cellSizeSpecified(cellSize, idx)) {
- layoutParams[whNames[idx]] = cellSize[idx] * cellNumbers[idx];
- }
- });
- var whGlobal = {
- width: api.getWidth(),
- height: api.getHeight()
- };
- var calendarRect = this._rect = layout.getLayoutRect(layoutParams, whGlobal);
- zrUtil.each([0, 1], function (idx) {
- if (!cellSizeSpecified(cellSize, idx)) {
- cellSize[idx] = calendarRect[whNames[idx]] / cellNumbers[idx];
- }
- });
-
- function cellSizeSpecified(cellSize, idx) {
- return cellSize[idx] != null && cellSize[idx] !== 'auto';
- }
-
- this._sw = cellSize[0];
- this._sh = cellSize[1];
- },
-
- /**
- * Convert a time data(time, value) item to (x, y) point.
- *
- * @override
- * @param {Array|number} data data
- * @param {boolean} [clamp=true] out of range
- * @return {Array} point
- */
- dataToPoint: function (data, clamp) {
- zrUtil.isArray(data) && (data = data[0]);
- clamp == null && (clamp = true);
- var dayInfo = this.getDateInfo(data);
- var range = this._rangeInfo;
- var date = dayInfo.formatedDate; // if not in range return [NaN, NaN]
-
- if (clamp && !(dayInfo.time >= range.start.time && dayInfo.time < range.end.time + PROXIMATE_ONE_DAY)) {
- return [NaN, NaN];
- }
-
- var week = dayInfo.day;
-
- var nthWeek = this._getRangeInfo([range.start.time, date]).nthWeek;
-
- if (this._orient === 'vertical') {
- return [this._rect.x + week * this._sw + this._sw / 2, this._rect.y + nthWeek * this._sh + this._sh / 2];
- }
-
- return [this._rect.x + nthWeek * this._sw + this._sw / 2, this._rect.y + week * this._sh + this._sh / 2];
- },
-
- /**
- * Convert a (x, y) point to time data
- *
- * @override
- * @param {string} point point
- * @return {string} data
- */
- pointToData: function (point) {
- var date = this.pointToDate(point);
- return date && date.time;
- },
-
- /**
- * Convert a time date item to (x, y) four point.
- *
- * @param {Array} data date[0] is date
- * @param {boolean} [clamp=true] out of range
- * @return {Object} point
- */
- dataToRect: function (data, clamp) {
- var point = this.dataToPoint(data, clamp);
- return {
- contentShape: {
- x: point[0] - (this._sw - this._lineWidth) / 2,
- y: point[1] - (this._sh - this._lineWidth) / 2,
- width: this._sw - this._lineWidth,
- height: this._sh - this._lineWidth
- },
- center: point,
- tl: [point[0] - this._sw / 2, point[1] - this._sh / 2],
- tr: [point[0] + this._sw / 2, point[1] - this._sh / 2],
- br: [point[0] + this._sw / 2, point[1] + this._sh / 2],
- bl: [point[0] - this._sw / 2, point[1] + this._sh / 2]
- };
- },
-
- /**
- * Convert a (x, y) point to time date
- *
- * @param {Array} point point
- * @return {Object} date
- */
- pointToDate: function (point) {
- var nthX = Math.floor((point[0] - this._rect.x) / this._sw) + 1;
- var nthY = Math.floor((point[1] - this._rect.y) / this._sh) + 1;
- var range = this._rangeInfo.range;
-
- if (this._orient === 'vertical') {
- return this._getDateByWeeksAndDay(nthY, nthX - 1, range);
- }
-
- return this._getDateByWeeksAndDay(nthX, nthY - 1, range);
- },
-
- /**
- * @inheritDoc
- */
- convertToPixel: zrUtil.curry(doConvert, 'dataToPoint'),
-
- /**
- * @inheritDoc
- */
- convertFromPixel: zrUtil.curry(doConvert, 'pointToData'),
-
- /**
- * initRange
- *
- * @private
- * @return {Array} [start, end]
- */
- _initRangeOption: function () {
- var range = this._model.get('range');
-
- var rg = range;
-
- if (zrUtil.isArray(rg) && rg.length === 1) {
- rg = rg[0];
- }
-
- if (/^\d{4}$/.test(rg)) {
- range = [rg + '-01-01', rg + '-12-31'];
- }
-
- if (/^\d{4}[\/|-]\d{1,2}$/.test(rg)) {
- var start = this.getDateInfo(rg);
- var firstDay = start.date;
- firstDay.setMonth(firstDay.getMonth() + 1);
- var end = this.getNextNDay(firstDay, -1);
- range = [start.formatedDate, end.formatedDate];
- }
-
- if (/^\d{4}[\/|-]\d{1,2}[\/|-]\d{1,2}$/.test(rg)) {
- range = [rg, rg];
- }
-
- var tmp = this._getRangeInfo(range);
-
- if (tmp.start.time > tmp.end.time) {
- range.reverse();
- }
-
- return range;
- },
-
- /**
- * range info
- *
- * @private
- * @param {Array} range range ['2017-01-01', '2017-07-08']
- * If range[0] > range[1], they will not be reversed.
- * @return {Object} obj
- */
- _getRangeInfo: function (range) {
- range = [this.getDateInfo(range[0]), this.getDateInfo(range[1])];
- var reversed;
-
- if (range[0].time > range[1].time) {
- reversed = true;
- range.reverse();
- }
-
- var allDay = Math.floor(range[1].time / PROXIMATE_ONE_DAY) - Math.floor(range[0].time / PROXIMATE_ONE_DAY) + 1; // Consider case:
- // Firstly set system timezone as "Time Zone: America/Toronto",
- // ```
- // var first = new Date(1478412000000 - 3600 * 1000 * 2.5);
- // var second = new Date(1478412000000);
- // var allDays = Math.floor(second / ONE_DAY) - Math.floor(first / ONE_DAY) + 1;
- // ```
- // will get wrong result because of DST. So we should fix it.
-
- var date = new Date(range[0].time);
- var startDateNum = date.getDate();
- var endDateNum = range[1].date.getDate();
- date.setDate(startDateNum + allDay - 1); // The bias can not over a month, so just compare date.
-
- if (date.getDate() !== endDateNum) {
- var sign = date.getTime() - range[1].time > 0 ? 1 : -1;
-
- while (date.getDate() !== endDateNum && (date.getTime() - range[1].time) * sign > 0) {
- allDay -= sign;
- date.setDate(startDateNum + allDay - 1);
- }
- }
-
- var weeks = Math.floor((allDay + range[0].day + 6) / 7);
- var nthWeek = reversed ? -weeks + 1 : weeks - 1;
- reversed && range.reverse();
- return {
- range: [range[0].formatedDate, range[1].formatedDate],
- start: range[0],
- end: range[1],
- allDay: allDay,
- weeks: weeks,
- // From 0.
- nthWeek: nthWeek,
- fweek: range[0].day,
- lweek: range[1].day
- };
- },
-
- /**
- * get date by nthWeeks and week day in range
- *
- * @private
- * @param {number} nthWeek the week
- * @param {number} day the week day
- * @param {Array} range [d1, d2]
- * @return {Object}
- */
- _getDateByWeeksAndDay: function (nthWeek, day, range) {
- var rangeInfo = this._getRangeInfo(range);
-
- if (nthWeek > rangeInfo.weeks || nthWeek === 0 && day < rangeInfo.fweek || nthWeek === rangeInfo.weeks && day > rangeInfo.lweek) {
- return false;
- }
-
- var nthDay = (nthWeek - 1) * 7 - rangeInfo.fweek + day;
- var date = new Date(rangeInfo.start.time);
- date.setDate(rangeInfo.start.d + nthDay);
- return this.getDateInfo(date);
- }
- };
- Calendar.dimensions = Calendar.prototype.dimensions;
- Calendar.getDimensionsInfo = Calendar.prototype.getDimensionsInfo;
-
- Calendar.create = function (ecModel, api) {
- var calendarList = [];
- ecModel.eachComponent('calendar', function (calendarModel) {
- var calendar = new Calendar(calendarModel, ecModel, api);
- calendarList.push(calendar);
- calendarModel.coordinateSystem = calendar;
- });
- ecModel.eachSeries(function (calendarSeries) {
- if (calendarSeries.get('coordinateSystem') === 'calendar') {
- // Inject coordinate system
- calendarSeries.coordinateSystem = calendarList[calendarSeries.get('calendarIndex') || 0];
- }
- });
- return calendarList;
- };
-
- function doConvert(methodName, ecModel, finder, value) {
- var calendarModel = finder.calendarModel;
- var seriesModel = finder.seriesModel;
- var coordSys = calendarModel ? calendarModel.coordinateSystem : seriesModel ? seriesModel.coordinateSystem : null;
- return coordSys === this ? coordSys[methodName](value) : null;
- }
-
- CoordinateSystem.register('calendar', Calendar);
- var _default = Calendar;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2730:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var ComponentModel = __webpack_require__(1321);
-
- var _layout = __webpack_require__(1171);
-
- var getLayoutParams = _layout.getLayoutParams;
- var sizeCalculable = _layout.sizeCalculable;
- var mergeLayoutParam = _layout.mergeLayoutParam;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var CalendarModel = ComponentModel.extend({
- type: 'calendar',
-
- /**
- * @type {module:echarts/coord/calendar/Calendar}
- */
- coordinateSystem: null,
- defaultOption: {
- zlevel: 0,
- z: 2,
- left: 80,
- top: 60,
- cellSize: 20,
- // horizontal vertical
- orient: 'horizontal',
- // month separate line style
- splitLine: {
- show: true,
- lineStyle: {
- color: '#000',
- width: 1,
- type: 'solid'
- }
- },
- // rect style temporarily unused emphasis
- itemStyle: {
- color: '#fff',
- borderWidth: 1,
- borderColor: '#ccc'
- },
- // week text style
- dayLabel: {
- show: true,
- // a week first day
- firstDay: 0,
- // start end
- position: 'start',
- margin: '50%',
- // 50% of cellSize
- nameMap: 'en',
- color: '#000'
- },
- // month text style
- monthLabel: {
- show: true,
- // start end
- position: 'start',
- margin: 5,
- // center or left
- align: 'center',
- // cn en []
- nameMap: 'en',
- formatter: null,
- color: '#000'
- },
- // year text style
- yearLabel: {
- show: true,
- // top bottom left right
- position: null,
- margin: 30,
- formatter: null,
- color: '#ccc',
- fontFamily: 'sans-serif',
- fontWeight: 'bolder',
- fontSize: 20
- }
- },
-
- /**
- * @override
- */
- init: function (option, parentModel, ecModel, extraOpt) {
- var inputPositionParams = getLayoutParams(option);
- CalendarModel.superApply(this, 'init', arguments);
- mergeAndNormalizeLayoutParams(option, inputPositionParams);
- },
-
- /**
- * @override
- */
- mergeOption: function (option, extraOpt) {
- CalendarModel.superApply(this, 'mergeOption', arguments);
- mergeAndNormalizeLayoutParams(this.option, option);
- }
- });
-
- function mergeAndNormalizeLayoutParams(target, raw) {
- // Normalize cellSize
- var cellSize = target.cellSize;
-
- if (!zrUtil.isArray(cellSize)) {
- cellSize = target.cellSize = [cellSize, cellSize];
- } else if (cellSize.length === 1) {
- cellSize[1] = cellSize[0];
- }
-
- var ignoreSize = zrUtil.map([0, 1], function (hvIdx) {
- // If user have set `width` or both `left` and `right`, cellSize
- // will be automatically set to 'auto', otherwise the default
- // setting of cellSize will make `width` setting not work.
- if (sizeCalculable(raw, hvIdx)) {
- cellSize[hvIdx] = 'auto';
- }
-
- return cellSize[hvIdx] != null && cellSize[hvIdx] !== 'auto';
- });
- mergeLayoutParam(target, raw, {
- type: 'box',
- ignoreSize: ignoreSize
- });
- }
-
- var _default = CalendarModel;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2731:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var graphic = __webpack_require__(906);
-
- var formatUtil = __webpack_require__(1186);
-
- var numberUtil = __webpack_require__(985);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var MONTH_TEXT = {
- EN: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
- CN: ['一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月']
- };
- var WEEK_TEXT = {
- EN: ['S', 'M', 'T', 'W', 'T', 'F', 'S'],
- CN: ['日', '一', '二', '三', '四', '五', '六']
- };
-
- var _default = echarts.extendComponentView({
- type: 'calendar',
-
- /**
- * top/left line points
- * @private
- */
- _tlpoints: null,
-
- /**
- * bottom/right line points
- * @private
- */
- _blpoints: null,
-
- /**
- * first day of month
- * @private
- */
- _firstDayOfMonth: null,
-
- /**
- * first day point of month
- * @private
- */
- _firstDayPoints: null,
- render: function (calendarModel, ecModel, api) {
- var group = this.group;
- group.removeAll();
- var coordSys = calendarModel.coordinateSystem; // range info
-
- var rangeData = coordSys.getRangeInfo();
- var orient = coordSys.getOrient();
-
- this._renderDayRect(calendarModel, rangeData, group); // _renderLines must be called prior to following function
-
-
- this._renderLines(calendarModel, rangeData, orient, group);
-
- this._renderYearText(calendarModel, rangeData, orient, group);
-
- this._renderMonthText(calendarModel, orient, group);
-
- this._renderWeekText(calendarModel, rangeData, orient, group);
- },
- // render day rect
- _renderDayRect: function (calendarModel, rangeData, group) {
- var coordSys = calendarModel.coordinateSystem;
- var itemRectStyleModel = calendarModel.getModel('itemStyle').getItemStyle();
- var sw = coordSys.getCellWidth();
- var sh = coordSys.getCellHeight();
-
- for (var i = rangeData.start.time; i <= rangeData.end.time; i = coordSys.getNextNDay(i, 1).time) {
- var point = coordSys.dataToRect([i], false).tl; // every rect
-
- var rect = new graphic.Rect({
- shape: {
- x: point[0],
- y: point[1],
- width: sw,
- height: sh
- },
- cursor: 'default',
- style: itemRectStyleModel
- });
- group.add(rect);
- }
- },
- // render separate line
- _renderLines: function (calendarModel, rangeData, orient, group) {
- var self = this;
- var coordSys = calendarModel.coordinateSystem;
- var lineStyleModel = calendarModel.getModel('splitLine.lineStyle').getLineStyle();
- var show = calendarModel.get('splitLine.show');
- var lineWidth = lineStyleModel.lineWidth;
- this._tlpoints = [];
- this._blpoints = [];
- this._firstDayOfMonth = [];
- this._firstDayPoints = [];
- var firstDay = rangeData.start;
-
- for (var i = 0; firstDay.time <= rangeData.end.time; i++) {
- addPoints(firstDay.formatedDate);
-
- if (i === 0) {
- firstDay = coordSys.getDateInfo(rangeData.start.y + '-' + rangeData.start.m);
- }
-
- var date = firstDay.date;
- date.setMonth(date.getMonth() + 1);
- firstDay = coordSys.getDateInfo(date);
- }
-
- addPoints(coordSys.getNextNDay(rangeData.end.time, 1).formatedDate);
-
- function addPoints(date) {
- self._firstDayOfMonth.push(coordSys.getDateInfo(date));
-
- self._firstDayPoints.push(coordSys.dataToRect([date], false).tl);
-
- var points = self._getLinePointsOfOneWeek(calendarModel, date, orient);
-
- self._tlpoints.push(points[0]);
-
- self._blpoints.push(points[points.length - 1]);
-
- show && self._drawSplitline(points, lineStyleModel, group);
- } // render top/left line
-
-
- show && this._drawSplitline(self._getEdgesPoints(self._tlpoints, lineWidth, orient), lineStyleModel, group); // render bottom/right line
-
- show && this._drawSplitline(self._getEdgesPoints(self._blpoints, lineWidth, orient), lineStyleModel, group);
- },
- // get points at both ends
- _getEdgesPoints: function (points, lineWidth, orient) {
- var rs = [points[0].slice(), points[points.length - 1].slice()];
- var idx = orient === 'horizontal' ? 0 : 1; // both ends of the line are extend half lineWidth
-
- rs[0][idx] = rs[0][idx] - lineWidth / 2;
- rs[1][idx] = rs[1][idx] + lineWidth / 2;
- return rs;
- },
- // render split line
- _drawSplitline: function (points, lineStyleModel, group) {
- var poyline = new graphic.Polyline({
- z2: 20,
- shape: {
- points: points
- },
- style: lineStyleModel
- });
- group.add(poyline);
- },
- // render month line of one week points
- _getLinePointsOfOneWeek: function (calendarModel, date, orient) {
- var coordSys = calendarModel.coordinateSystem;
- date = coordSys.getDateInfo(date);
- var points = [];
-
- for (var i = 0; i < 7; i++) {
- var tmpD = coordSys.getNextNDay(date.time, i);
- var point = coordSys.dataToRect([tmpD.time], false);
- points[2 * tmpD.day] = point.tl;
- points[2 * tmpD.day + 1] = point[orient === 'horizontal' ? 'bl' : 'tr'];
- }
-
- return points;
- },
- _formatterLabel: function (formatter, params) {
- if (typeof formatter === 'string' && formatter) {
- return formatUtil.formatTplSimple(formatter, params);
- }
-
- if (typeof formatter === 'function') {
- return formatter(params);
- }
-
- return params.nameMap;
- },
- _yearTextPositionControl: function (textEl, point, orient, position, margin) {
- point = point.slice();
- var aligns = ['center', 'bottom'];
-
- if (position === 'bottom') {
- point[1] += margin;
- aligns = ['center', 'top'];
- } else if (position === 'left') {
- point[0] -= margin;
- } else if (position === 'right') {
- point[0] += margin;
- aligns = ['center', 'top'];
- } else {
- // top
- point[1] -= margin;
- }
-
- var rotate = 0;
-
- if (position === 'left' || position === 'right') {
- rotate = Math.PI / 2;
- }
-
- return {
- rotation: rotate,
- position: point,
- style: {
- textAlign: aligns[0],
- textVerticalAlign: aligns[1]
- }
- };
- },
- // render year
- _renderYearText: function (calendarModel, rangeData, orient, group) {
- var yearLabel = calendarModel.getModel('yearLabel');
-
- if (!yearLabel.get('show')) {
- return;
- }
-
- var margin = yearLabel.get('margin');
- var pos = yearLabel.get('position');
-
- if (!pos) {
- pos = orient !== 'horizontal' ? 'top' : 'left';
- }
-
- var points = [this._tlpoints[this._tlpoints.length - 1], this._blpoints[0]];
- var xc = (points[0][0] + points[1][0]) / 2;
- var yc = (points[0][1] + points[1][1]) / 2;
- var idx = orient === 'horizontal' ? 0 : 1;
- var posPoints = {
- top: [xc, points[idx][1]],
- bottom: [xc, points[1 - idx][1]],
- left: [points[1 - idx][0], yc],
- right: [points[idx][0], yc]
- };
- var name = rangeData.start.y;
-
- if (+rangeData.end.y > +rangeData.start.y) {
- name = name + '-' + rangeData.end.y;
- }
-
- var formatter = yearLabel.get('formatter');
- var params = {
- start: rangeData.start.y,
- end: rangeData.end.y,
- nameMap: name
- };
-
- var content = this._formatterLabel(formatter, params);
-
- var yearText = new graphic.Text({
- z2: 30
- });
- graphic.setTextStyle(yearText.style, yearLabel, {
- text: content
- }), yearText.attr(this._yearTextPositionControl(yearText, posPoints[pos], orient, pos, margin));
- group.add(yearText);
- },
- _monthTextPositionControl: function (point, isCenter, orient, position, margin) {
- var align = 'left';
- var vAlign = 'top';
- var x = point[0];
- var y = point[1];
-
- if (orient === 'horizontal') {
- y = y + margin;
-
- if (isCenter) {
- align = 'center';
- }
-
- if (position === 'start') {
- vAlign = 'bottom';
- }
- } else {
- x = x + margin;
-
- if (isCenter) {
- vAlign = 'middle';
- }
-
- if (position === 'start') {
- align = 'right';
- }
- }
-
- return {
- x: x,
- y: y,
- textAlign: align,
- textVerticalAlign: vAlign
- };
- },
- // render month and year text
- _renderMonthText: function (calendarModel, orient, group) {
- var monthLabel = calendarModel.getModel('monthLabel');
-
- if (!monthLabel.get('show')) {
- return;
- }
-
- var nameMap = monthLabel.get('nameMap');
- var margin = monthLabel.get('margin');
- var pos = monthLabel.get('position');
- var align = monthLabel.get('align');
- var termPoints = [this._tlpoints, this._blpoints];
-
- if (zrUtil.isString(nameMap)) {
- nameMap = MONTH_TEXT[nameMap.toUpperCase()] || [];
- }
-
- var idx = pos === 'start' ? 0 : 1;
- var axis = orient === 'horizontal' ? 0 : 1;
- margin = pos === 'start' ? -margin : margin;
- var isCenter = align === 'center';
-
- for (var i = 0; i < termPoints[idx].length - 1; i++) {
- var tmp = termPoints[idx][i].slice();
- var firstDay = this._firstDayOfMonth[i];
-
- if (isCenter) {
- var firstDayPoints = this._firstDayPoints[i];
- tmp[axis] = (firstDayPoints[axis] + termPoints[0][i + 1][axis]) / 2;
- }
-
- var formatter = monthLabel.get('formatter');
- var name = nameMap[+firstDay.m - 1];
- var params = {
- yyyy: firstDay.y,
- yy: (firstDay.y + '').slice(2),
- MM: firstDay.m,
- M: +firstDay.m,
- nameMap: name
- };
-
- var content = this._formatterLabel(formatter, params);
-
- var monthText = new graphic.Text({
- z2: 30
- });
- zrUtil.extend(graphic.setTextStyle(monthText.style, monthLabel, {
- text: content
- }), this._monthTextPositionControl(tmp, isCenter, orient, pos, margin));
- group.add(monthText);
- }
- },
- _weekTextPositionControl: function (point, orient, position, margin, cellSize) {
- var align = 'center';
- var vAlign = 'middle';
- var x = point[0];
- var y = point[1];
- var isStart = position === 'start';
-
- if (orient === 'horizontal') {
- x = x + margin + (isStart ? 1 : -1) * cellSize[0] / 2;
- align = isStart ? 'right' : 'left';
- } else {
- y = y + margin + (isStart ? 1 : -1) * cellSize[1] / 2;
- vAlign = isStart ? 'bottom' : 'top';
- }
-
- return {
- x: x,
- y: y,
- textAlign: align,
- textVerticalAlign: vAlign
- };
- },
- // render weeks
- _renderWeekText: function (calendarModel, rangeData, orient, group) {
- var dayLabel = calendarModel.getModel('dayLabel');
-
- if (!dayLabel.get('show')) {
- return;
- }
-
- var coordSys = calendarModel.coordinateSystem;
- var pos = dayLabel.get('position');
- var nameMap = dayLabel.get('nameMap');
- var margin = dayLabel.get('margin');
- var firstDayOfWeek = coordSys.getFirstDayOfWeek();
-
- if (zrUtil.isString(nameMap)) {
- nameMap = WEEK_TEXT[nameMap.toUpperCase()] || [];
- }
-
- var start = coordSys.getNextNDay(rangeData.end.time, 7 - rangeData.lweek).time;
- var cellSize = [coordSys.getCellWidth(), coordSys.getCellHeight()];
- margin = numberUtil.parsePercent(margin, cellSize[orient === 'horizontal' ? 0 : 1]);
-
- if (pos === 'start') {
- start = coordSys.getNextNDay(rangeData.start.time, -(7 + rangeData.fweek)).time;
- margin = -margin;
- }
-
- for (var i = 0; i < 7; i++) {
- var tmpD = coordSys.getNextNDay(start, i);
- var point = coordSys.dataToRect([tmpD.time], false).center;
- var day = i;
- day = Math.abs((i + firstDayOfWeek) % 7);
- var weekText = new graphic.Text({
- z2: 30
- });
- zrUtil.extend(graphic.setTextStyle(weekText.style, dayLabel, {
- text: nameMap[day]
- }), this._weekTextPositionControl(point, orient, pos, margin, cellSize));
- group.add(weekText);
- }
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2732:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var modelUtil = __webpack_require__(1064);
-
- var graphicUtil = __webpack_require__(906);
-
- var layoutUtil = __webpack_require__(1171);
-
- var _number = __webpack_require__(985);
-
- var parsePercent = _number.parsePercent;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _nonShapeGraphicElements = {
- // Reserved but not supported in graphic component.
- path: null,
- compoundPath: null,
- // Supported in graphic component.
- group: graphicUtil.Group,
- image: graphicUtil.Image,
- text: graphicUtil.Text
- }; // -------------
- // Preprocessor
- // -------------
-
- echarts.registerPreprocessor(function (option) {
- var graphicOption = option.graphic; // Convert
- // {graphic: [{left: 10, type: 'circle'}, ...]}
- // or
- // {graphic: {left: 10, type: 'circle'}}
- // to
- // {graphic: [{elements: [{left: 10, type: 'circle'}, ...]}]}
-
- if (zrUtil.isArray(graphicOption)) {
- if (!graphicOption[0] || !graphicOption[0].elements) {
- option.graphic = [{
- elements: graphicOption
- }];
- } else {
- // Only one graphic instance can be instantiated. (We dont
- // want that too many views are created in echarts._viewMap)
- option.graphic = [option.graphic[0]];
- }
- } else if (graphicOption && !graphicOption.elements) {
- option.graphic = [{
- elements: [graphicOption]
- }];
- }
- }); // ------
- // Model
- // ------
-
- var GraphicModel = echarts.extendComponentModel({
- type: 'graphic',
- defaultOption: {
- // Extra properties for each elements:
- //
- // left/right/top/bottom: (like 12, '22%', 'center', default undefined)
- // If left/rigth is set, shape.x/shape.cx/position will not be used.
- // If top/bottom is set, shape.y/shape.cy/position will not be used.
- // This mechanism is useful when you want to position a group/element
- // against the right side or the center of this container.
- //
- // width/height: (can only be pixel value, default 0)
- // Only be used to specify contianer(group) size, if needed. And
- // can not be percentage value (like '33%'). See the reason in the
- // layout algorithm below.
- //
- // bounding: (enum: 'all' (default) | 'raw')
- // Specify how to calculate boundingRect when locating.
- // 'all': Get uioned and transformed boundingRect
- // from both itself and its descendants.
- // This mode simplies confining a group of elements in the bounding
- // of their ancester container (e.g., using 'right: 0').
- // 'raw': Only use the boundingRect of itself and before transformed.
- // This mode is similar to css behavior, which is useful when you
- // want an element to be able to overflow its container. (Consider
- // a rotated circle needs to be located in a corner.)
- // info: custom info. enables user to mount some info on elements and use them
- // in event handlers. Update them only when user specified, otherwise, remain.
- // Note: elements is always behind its ancestors in this elements array.
- elements: [],
- parentId: null
- },
-
- /**
- * Save el options for the sake of the performance (only update modified graphics).
- * The order is the same as those in option. (ancesters -> descendants)
- *
- * @private
- * @type {Array.<Object>}
- */
- _elOptionsToUpdate: null,
-
- /**
- * @override
- */
- mergeOption: function (option) {
- // Prevent default merge to elements
- var elements = this.option.elements;
- this.option.elements = null;
- GraphicModel.superApply(this, 'mergeOption', arguments);
- this.option.elements = elements;
- },
-
- /**
- * @override
- */
- optionUpdated: function (newOption, isInit) {
- var thisOption = this.option;
- var newList = (isInit ? thisOption : newOption).elements;
- var existList = thisOption.elements = isInit ? [] : thisOption.elements;
- var flattenedList = [];
-
- this._flatten(newList, flattenedList);
-
- var mappingResult = modelUtil.mappingToExists(existList, flattenedList);
- modelUtil.makeIdAndName(mappingResult); // Clear elOptionsToUpdate
-
- var elOptionsToUpdate = this._elOptionsToUpdate = [];
- zrUtil.each(mappingResult, function (resultItem, index) {
- var newElOption = resultItem.option;
-
- if (!newElOption) {
- return;
- }
-
- elOptionsToUpdate.push(newElOption);
- setKeyInfoToNewElOption(resultItem, newElOption);
- mergeNewElOptionToExist(existList, index, newElOption);
- setLayoutInfoToExist(existList[index], newElOption);
- }, this); // Clean
-
- for (var i = existList.length - 1; i >= 0; i--) {
- if (existList[i] == null) {
- existList.splice(i, 1);
- } else {
- // $action should be volatile, otherwise option gotten from
- // `getOption` will contain unexpected $action.
- delete existList[i].$action;
- }
- }
- },
-
- /**
- * Convert
- * [{
- * type: 'group',
- * id: 'xx',
- * children: [{type: 'circle'}, {type: 'polygon'}]
- * }]
- * to
- * [
- * {type: 'group', id: 'xx'},
- * {type: 'circle', parentId: 'xx'},
- * {type: 'polygon', parentId: 'xx'}
- * ]
- *
- * @private
- * @param {Array.<Object>} optionList option list
- * @param {Array.<Object>} result result of flatten
- * @param {Object} parentOption parent option
- */
- _flatten: function (optionList, result, parentOption) {
- zrUtil.each(optionList, function (option) {
- if (!option) {
- return;
- }
-
- if (parentOption) {
- option.parentOption = parentOption;
- }
-
- result.push(option);
- var children = option.children;
-
- if (option.type === 'group' && children) {
- this._flatten(children, result, option);
- } // Deleting for JSON output, and for not affecting group creation.
-
-
- delete option.children;
- }, this);
- },
- // FIXME
- // Pass to view using payload? setOption has a payload?
- useElOptionsToUpdate: function () {
- var els = this._elOptionsToUpdate; // Clear to avoid render duplicately when zooming.
-
- this._elOptionsToUpdate = null;
- return els;
- }
- }); // -----
- // View
- // -----
-
- echarts.extendComponentView({
- type: 'graphic',
-
- /**
- * @override
- */
- init: function (ecModel, api) {
- /**
- * @private
- * @type {module:zrender/core/util.HashMap}
- */
- this._elMap = zrUtil.createHashMap();
- /**
- * @private
- * @type {module:echarts/graphic/GraphicModel}
- */
-
- this._lastGraphicModel;
- },
-
- /**
- * @override
- */
- render: function (graphicModel, ecModel, api) {
- // Having leveraged between use cases and algorithm complexity, a very
- // simple layout mechanism is used:
- // The size(width/height) can be determined by itself or its parent (not
- // implemented yet), but can not by its children. (Top-down travel)
- // The location(x/y) can be determined by the bounding rect of itself
- // (can including its descendants or not) and the size of its parent.
- // (Bottom-up travel)
- // When `chart.clear()` or `chart.setOption({...}, true)` with the same id,
- // view will be reused.
- if (graphicModel !== this._lastGraphicModel) {
- this._clear();
- }
-
- this._lastGraphicModel = graphicModel;
-
- this._updateElements(graphicModel);
-
- this._relocate(graphicModel, api);
- },
-
- /**
- * Update graphic elements.
- *
- * @private
- * @param {Object} graphicModel graphic model
- */
- _updateElements: function (graphicModel) {
- var elOptionsToUpdate = graphicModel.useElOptionsToUpdate();
-
- if (!elOptionsToUpdate) {
- return;
- }
-
- var elMap = this._elMap;
- var rootGroup = this.group; // Top-down tranverse to assign graphic settings to each elements.
-
- zrUtil.each(elOptionsToUpdate, function (elOption) {
- var $action = elOption.$action;
- var id = elOption.id;
- var existEl = elMap.get(id);
- var parentId = elOption.parentId;
- var targetElParent = parentId != null ? elMap.get(parentId) : rootGroup;
- var elOptionStyle = elOption.style;
-
- if (elOption.type === 'text' && elOptionStyle) {
- // In top/bottom mode, textVerticalAlign should not be used, which cause
- // inaccurately locating.
- if (elOption.hv && elOption.hv[1]) {
- elOptionStyle.textVerticalAlign = elOptionStyle.textBaseline = null;
- } // Compatible with previous setting: both support fill and textFill,
- // stroke and textStroke.
-
-
- !elOptionStyle.hasOwnProperty('textFill') && elOptionStyle.fill && (elOptionStyle.textFill = elOptionStyle.fill);
- !elOptionStyle.hasOwnProperty('textStroke') && elOptionStyle.stroke && (elOptionStyle.textStroke = elOptionStyle.stroke);
- } // Remove unnecessary props to avoid potential problems.
-
-
- var elOptionCleaned = getCleanedElOption(elOption); // For simple, do not support parent change, otherwise reorder is needed.
-
- if (!$action || $action === 'merge') {
- existEl ? existEl.attr(elOptionCleaned) : createEl(id, targetElParent, elOptionCleaned, elMap);
- } else if ($action === 'replace') {
- removeEl(existEl, elMap);
- createEl(id, targetElParent, elOptionCleaned, elMap);
- } else if ($action === 'remove') {
- removeEl(existEl, elMap);
- }
-
- var el = elMap.get(id);
-
- if (el) {
- el.__ecGraphicWidthOption = elOption.width;
- el.__ecGraphicHeightOption = elOption.height;
- setEventData(el, graphicModel, elOption);
- }
- });
- },
-
- /**
- * Locate graphic elements.
- *
- * @private
- * @param {Object} graphicModel graphic model
- * @param {module:echarts/ExtensionAPI} api extension API
- */
- _relocate: function (graphicModel, api) {
- var elOptions = graphicModel.option.elements;
- var rootGroup = this.group;
- var elMap = this._elMap;
- var apiWidth = api.getWidth();
- var apiHeight = api.getHeight(); // Top-down to calculate percentage width/height of group
-
- for (var i = 0; i < elOptions.length; i++) {
- var elOption = elOptions[i];
- var el = elMap.get(elOption.id);
-
- if (!el || !el.isGroup) {
- continue;
- }
-
- var parentEl = el.parent;
- var isParentRoot = parentEl === rootGroup; // Like 'position:absolut' in css, default 0.
-
- el.__ecGraphicWidth = parsePercent(el.__ecGraphicWidthOption, isParentRoot ? apiWidth : parentEl.__ecGraphicWidth) || 0;
- el.__ecGraphicHeight = parsePercent(el.__ecGraphicHeightOption, isParentRoot ? apiHeight : parentEl.__ecGraphicHeight) || 0;
- } // Bottom-up tranvese all elements (consider ec resize) to locate elements.
-
-
- for (var i = elOptions.length - 1; i >= 0; i--) {
- var elOption = elOptions[i];
- var el = elMap.get(elOption.id);
-
- if (!el) {
- continue;
- }
-
- var parentEl = el.parent;
- var containerInfo = parentEl === rootGroup ? {
- width: apiWidth,
- height: apiHeight
- } : {
- width: parentEl.__ecGraphicWidth,
- height: parentEl.__ecGraphicHeight
- }; // PENDING
- // Currently, when `bounding: 'all'`, the union bounding rect of the group
- // does not include the rect of [0, 0, group.width, group.height], which
- // is probably weird for users. Should we make a break change for it?
-
- layoutUtil.positionElement(el, elOption, containerInfo, null, {
- hv: elOption.hv,
- boundingMode: elOption.bounding
- });
- }
- },
-
- /**
- * Clear all elements.
- *
- * @private
- */
- _clear: function () {
- var elMap = this._elMap;
- elMap.each(function (el) {
- removeEl(el, elMap);
- });
- this._elMap = zrUtil.createHashMap();
- },
-
- /**
- * @override
- */
- dispose: function () {
- this._clear();
- }
- });
-
- function createEl(id, targetElParent, elOption, elMap) {
- var graphicType = elOption.type;
- var Clz = _nonShapeGraphicElements.hasOwnProperty(graphicType) // Those graphic elements are not shapes. They should not be
- // overwritten by users, so do them first.
- ? _nonShapeGraphicElements[graphicType] : graphicUtil.getShapeClass(graphicType);
- var el = new Clz(elOption);
- targetElParent.add(el);
- elMap.set(id, el);
- el.__ecGraphicId = id;
- }
-
- function removeEl(existEl, elMap) {
- var existElParent = existEl && existEl.parent;
-
- if (existElParent) {
- existEl.type === 'group' && existEl.traverse(function (el) {
- removeEl(el, elMap);
- });
- elMap.removeKey(existEl.__ecGraphicId);
- existElParent.remove(existEl);
- }
- } // Remove unnecessary props to avoid potential problems.
-
-
- function getCleanedElOption(elOption) {
- elOption = zrUtil.extend({}, elOption);
- zrUtil.each(['id', 'parentId', '$action', 'hv', 'bounding'].concat(layoutUtil.LOCATION_PARAMS), function (name) {
- delete elOption[name];
- });
- return elOption;
- }
-
- function isSetLoc(obj, props) {
- var isSet;
- zrUtil.each(props, function (prop) {
- obj[prop] != null && obj[prop] !== 'auto' && (isSet = true);
- });
- return isSet;
- }
-
- function setKeyInfoToNewElOption(resultItem, newElOption) {
- var existElOption = resultItem.exist; // Set id and type after id assigned.
-
- newElOption.id = resultItem.keyInfo.id;
- !newElOption.type && existElOption && (newElOption.type = existElOption.type); // Set parent id if not specified
-
- if (newElOption.parentId == null) {
- var newElParentOption = newElOption.parentOption;
-
- if (newElParentOption) {
- newElOption.parentId = newElParentOption.id;
- } else if (existElOption) {
- newElOption.parentId = existElOption.parentId;
- }
- } // Clear
-
-
- newElOption.parentOption = null;
- }
-
- function mergeNewElOptionToExist(existList, index, newElOption) {
- // Update existing options, for `getOption` feature.
- var newElOptCopy = zrUtil.extend({}, newElOption);
- var existElOption = existList[index];
- var $action = newElOption.$action || 'merge';
-
- if ($action === 'merge') {
- if (existElOption) {
- // We can ensure that newElOptCopy and existElOption are not
- // the same object, so `merge` will not change newElOptCopy.
- zrUtil.merge(existElOption, newElOptCopy, true); // Rigid body, use ignoreSize.
-
- layoutUtil.mergeLayoutParam(existElOption, newElOptCopy, {
- ignoreSize: true
- }); // Will be used in render.
-
- layoutUtil.copyLayoutParams(newElOption, existElOption);
- } else {
- existList[index] = newElOptCopy;
- }
- } else if ($action === 'replace') {
- existList[index] = newElOptCopy;
- } else if ($action === 'remove') {
- // null will be cleaned later.
- existElOption && (existList[index] = null);
- }
- }
-
- function setLayoutInfoToExist(existItem, newElOption) {
- if (!existItem) {
- return;
- }
-
- existItem.hv = newElOption.hv = [// Rigid body, dont care `width`.
- isSetLoc(newElOption, ['left', 'right']), // Rigid body, dont care `height`.
- isSetLoc(newElOption, ['top', 'bottom'])]; // Give default group size. Otherwise layout error may occur.
-
- if (existItem.type === 'group') {
- existItem.width == null && (existItem.width = newElOption.width = 0);
- existItem.height == null && (existItem.height = newElOption.height = 0);
- }
- }
-
- function setEventData(el, graphicModel, elOption) {
- var eventData = el.eventData; // Simple optimize for large amount of elements that no need event.
-
- if (!el.silent && !el.ignore && !eventData) {
- eventData = el.eventData = {
- componentType: 'graphic',
- componentIndex: graphicModel.componentIndex,
- name: el.name
- };
- } // `elOption.info` enables user to mount some info on
- // elements and use them in event handlers.
-
-
- if (eventData) {
- eventData.info = el.info;
- }
- }
-
- /***/ }),
-
- /***/ 2733:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- __webpack_require__(2734);
-
- __webpack_require__(2735);
-
- __webpack_require__(2736);
-
- __webpack_require__(2737);
-
- __webpack_require__(2738);
-
- __webpack_require__(2739);
-
- __webpack_require__(2744);
-
- /***/ }),
-
- /***/ 2734:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var featureManager = __webpack_require__(1486);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var ToolboxModel = echarts.extendComponentModel({
- type: 'toolbox',
- layoutMode: {
- type: 'box',
- ignoreSize: true
- },
- optionUpdated: function () {
- ToolboxModel.superApply(this, 'optionUpdated', arguments);
- zrUtil.each(this.option.feature, function (featureOpt, featureName) {
- var Feature = featureManager.get(featureName);
- Feature && zrUtil.merge(featureOpt, Feature.defaultOption);
- });
- },
- defaultOption: {
- show: true,
- z: 6,
- zlevel: 0,
- orient: 'horizontal',
- left: 'right',
- top: 'top',
- // right
- // bottom
- backgroundColor: 'transparent',
- borderColor: '#ccc',
- borderRadius: 0,
- borderWidth: 0,
- padding: 5,
- itemSize: 15,
- itemGap: 8,
- showTitle: true,
- iconStyle: {
- borderColor: '#666',
- color: 'none'
- },
- emphasis: {
- iconStyle: {
- borderColor: '#3E98C5'
- }
- },
- // textStyle: {},
- // feature
- tooltip: {
- show: false
- }
- }
- });
- var _default = ToolboxModel;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2735:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var textContain = __webpack_require__(1402);
-
- var featureManager = __webpack_require__(1486);
-
- var graphic = __webpack_require__(906);
-
- var Model = __webpack_require__(1317);
-
- var DataDiffer = __webpack_require__(1519);
-
- var listComponentHelper = __webpack_require__(2321);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = echarts.extendComponentView({
- type: 'toolbox',
- render: function (toolboxModel, ecModel, api, payload) {
- var group = this.group;
- group.removeAll();
-
- if (!toolboxModel.get('show')) {
- return;
- }
-
- var itemSize = +toolboxModel.get('itemSize');
- var featureOpts = toolboxModel.get('feature') || {};
- var features = this._features || (this._features = {});
- var featureNames = [];
- zrUtil.each(featureOpts, function (opt, name) {
- featureNames.push(name);
- });
- new DataDiffer(this._featureNames || [], featureNames).add(processFeature).update(processFeature).remove(zrUtil.curry(processFeature, null)).execute(); // Keep for diff.
-
- this._featureNames = featureNames;
-
- function processFeature(newIndex, oldIndex) {
- var featureName = featureNames[newIndex];
- var oldName = featureNames[oldIndex];
- var featureOpt = featureOpts[featureName];
- var featureModel = new Model(featureOpt, toolboxModel, toolboxModel.ecModel);
- var feature; // FIX#11236, merge feature title from MagicType newOption. TODO: consider seriesIndex ?
-
- if (payload && payload.newTitle != null) {
- featureOpt.title = payload.newTitle;
- }
-
- if (featureName && !oldName) {
- // Create
- if (isUserFeatureName(featureName)) {
- feature = {
- model: featureModel,
- onclick: featureModel.option.onclick,
- featureName: featureName
- };
- } else {
- var Feature = featureManager.get(featureName);
-
- if (!Feature) {
- return;
- }
-
- feature = new Feature(featureModel, ecModel, api);
- }
-
- features[featureName] = feature;
- } else {
- feature = features[oldName]; // If feature does not exsit.
-
- if (!feature) {
- return;
- }
-
- feature.model = featureModel;
- feature.ecModel = ecModel;
- feature.api = api;
- }
-
- if (!featureName && oldName) {
- feature.dispose && feature.dispose(ecModel, api);
- return;
- }
-
- if (!featureModel.get('show') || feature.unusable) {
- feature.remove && feature.remove(ecModel, api);
- return;
- }
-
- createIconPaths(featureModel, feature, featureName);
-
- featureModel.setIconStatus = function (iconName, status) {
- var option = this.option;
- var iconPaths = this.iconPaths;
- option.iconStatus = option.iconStatus || {};
- option.iconStatus[iconName] = status; // FIXME
-
- iconPaths[iconName] && iconPaths[iconName].trigger(status);
- };
-
- if (feature.render) {
- feature.render(featureModel, ecModel, api, payload);
- }
- }
-
- function createIconPaths(featureModel, feature, featureName) {
- var iconStyleModel = featureModel.getModel('iconStyle');
- var iconStyleEmphasisModel = featureModel.getModel('emphasis.iconStyle'); // If one feature has mutiple icon. they are orginaized as
- // {
- // icon: {
- // foo: '',
- // bar: ''
- // },
- // title: {
- // foo: '',
- // bar: ''
- // }
- // }
-
- var icons = feature.getIcons ? feature.getIcons() : featureModel.get('icon');
- var titles = featureModel.get('title') || {};
-
- if (typeof icons === 'string') {
- var icon = icons;
- var title = titles;
- icons = {};
- titles = {};
- icons[featureName] = icon;
- titles[featureName] = title;
- }
-
- var iconPaths = featureModel.iconPaths = {};
- zrUtil.each(icons, function (iconStr, iconName) {
- var path = graphic.createIcon(iconStr, {}, {
- x: -itemSize / 2,
- y: -itemSize / 2,
- width: itemSize,
- height: itemSize
- });
- path.setStyle(iconStyleModel.getItemStyle());
- path.hoverStyle = iconStyleEmphasisModel.getItemStyle(); // Text position calculation
-
- path.setStyle({
- text: titles[iconName],
- textAlign: iconStyleEmphasisModel.get('textAlign'),
- textBorderRadius: iconStyleEmphasisModel.get('textBorderRadius'),
- textPadding: iconStyleEmphasisModel.get('textPadding'),
- textFill: null
- });
- var tooltipModel = toolboxModel.getModel('tooltip');
-
- if (tooltipModel && tooltipModel.get('show')) {
- path.attr('tooltip', zrUtil.extend({
- content: titles[iconName],
- formatter: tooltipModel.get('formatter', true) || function () {
- return titles[iconName];
- },
- formatterParams: {
- componentType: 'toolbox',
- name: iconName,
- title: titles[iconName],
- $vars: ['name', 'title']
- },
- position: tooltipModel.get('position', true) || 'bottom'
- }, tooltipModel.option));
- }
-
- graphic.setHoverStyle(path);
-
- if (toolboxModel.get('showTitle')) {
- path.__title = titles[iconName];
- path.on('mouseover', function () {
- // Should not reuse above hoverStyle, which might be modified.
- var hoverStyle = iconStyleEmphasisModel.getItemStyle();
- var defaultTextPosition = toolboxModel.get('orient') === 'vertical' ? toolboxModel.get('right') == null ? 'right' : 'left' : toolboxModel.get('bottom') == null ? 'bottom' : 'top';
- path.setStyle({
- textFill: iconStyleEmphasisModel.get('textFill') || hoverStyle.fill || hoverStyle.stroke || '#000',
- textBackgroundColor: iconStyleEmphasisModel.get('textBackgroundColor'),
- textPosition: iconStyleEmphasisModel.get('textPosition') || defaultTextPosition
- });
- }).on('mouseout', function () {
- path.setStyle({
- textFill: null,
- textBackgroundColor: null
- });
- });
- }
-
- path.trigger(featureModel.get('iconStatus.' + iconName) || 'normal');
- group.add(path);
- path.on('click', zrUtil.bind(feature.onclick, feature, ecModel, api, iconName));
- iconPaths[iconName] = path;
- });
- }
-
- listComponentHelper.layout(group, toolboxModel, api); // Render background after group is layout
- // FIXME
-
- group.add(listComponentHelper.makeBackground(group.getBoundingRect(), toolboxModel)); // Adjust icon title positions to avoid them out of screen
-
- group.eachChild(function (icon) {
- var titleText = icon.__title;
- var hoverStyle = icon.hoverStyle; // May be background element
-
- if (hoverStyle && titleText) {
- var rect = textContain.getBoundingRect(titleText, textContain.makeFont(hoverStyle));
- var offsetX = icon.position[0] + group.position[0];
- var offsetY = icon.position[1] + group.position[1] + itemSize;
- var needPutOnTop = false;
-
- if (offsetY + rect.height > api.getHeight()) {
- hoverStyle.textPosition = 'top';
- needPutOnTop = true;
- }
-
- var topOffset = needPutOnTop ? -5 - rect.height : itemSize + 8;
-
- if (offsetX + rect.width / 2 > api.getWidth()) {
- hoverStyle.textPosition = ['100%', topOffset];
- hoverStyle.textAlign = 'right';
- } else if (offsetX - rect.width / 2 < 0) {
- hoverStyle.textPosition = [0, topOffset];
- hoverStyle.textAlign = 'left';
- }
- }
- });
- },
- updateView: function (toolboxModel, ecModel, api, payload) {
- zrUtil.each(this._features, function (feature) {
- feature.updateView && feature.updateView(feature.model, ecModel, api, payload);
- });
- },
- // updateLayout: function (toolboxModel, ecModel, api, payload) {
- // zrUtil.each(this._features, function (feature) {
- // feature.updateLayout && feature.updateLayout(feature.model, ecModel, api, payload);
- // });
- // },
- remove: function (ecModel, api) {
- zrUtil.each(this._features, function (feature) {
- feature.remove && feature.remove(ecModel, api);
- });
- this.group.removeAll();
- },
- dispose: function (ecModel, api) {
- zrUtil.each(this._features, function (feature) {
- feature.dispose && feature.dispose(ecModel, api);
- });
- }
- });
-
- function isUserFeatureName(featureName) {
- return featureName.indexOf('my') === 0;
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2736:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var env = __webpack_require__(1316);
-
- var lang = __webpack_require__(1483);
-
- var featureManager = __webpack_require__(1486);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /* global Uint8Array */
- var saveAsImageLang = lang.toolbox.saveAsImage;
-
- function SaveAsImage(model) {
- this.model = model;
- }
-
- SaveAsImage.defaultOption = {
- show: true,
- icon: 'M4.7,22.9L29.3,45.5L54.7,23.4M4.6,43.6L4.6,58L53.8,58L53.8,43.6M29.2,45.1L29.2,0',
- title: saveAsImageLang.title,
- type: 'png',
- // Default use option.backgroundColor
- // backgroundColor: '#fff',
- connectedBackgroundColor: '#fff',
- name: '',
- excludeComponents: ['toolbox'],
- pixelRatio: 1,
- lang: saveAsImageLang.lang.slice()
- };
- SaveAsImage.prototype.unusable = !env.canvasSupported;
- var proto = SaveAsImage.prototype;
-
- proto.onclick = function (ecModel, api) {
- var model = this.model;
- var title = model.get('name') || ecModel.get('title.0.text') || 'echarts';
- var type = model.get('type', true) || 'png';
- var url = api.getConnectedDataURL({
- type: type,
- backgroundColor: model.get('backgroundColor', true) || ecModel.get('backgroundColor') || '#fff',
- connectedBackgroundColor: model.get('connectedBackgroundColor'),
- excludeComponents: model.get('excludeComponents'),
- pixelRatio: model.get('pixelRatio')
- }); // Chrome and Firefox
-
- if (typeof MouseEvent === 'function' && !env.browser.ie && !env.browser.edge) {
- var $a = document.createElement('a');
- $a.download = title + '.' + type;
- $a.target = '_blank';
- $a.href = url;
- var evt = new MouseEvent('click', {
- view: window,
- bubbles: true,
- cancelable: false
- });
- $a.dispatchEvent(evt);
- } // IE
- else {
- if (window.navigator.msSaveOrOpenBlob) {
- var bstr = atob(url.split(',')[1]);
- var n = bstr.length;
- var u8arr = new Uint8Array(n);
-
- while (n--) {
- u8arr[n] = bstr.charCodeAt(n);
- }
-
- var blob = new Blob([u8arr]);
- window.navigator.msSaveOrOpenBlob(blob, title + '.' + type);
- } else {
- var lang = model.get('lang');
- var html = '' + '<body style="margin:0;">' + '<img src="' + url + '" style="max-width:100%;" title="' + (lang && lang[0] || '') + '" />' + '</body>';
- var tab = window.open();
- tab.document.write(html);
- }
- }
- };
-
- featureManager.register('saveAsImage', SaveAsImage);
- var _default = SaveAsImage;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2737:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var lang = __webpack_require__(1483);
-
- var featureManager = __webpack_require__(1486);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var magicTypeLang = lang.toolbox.magicType;
- var INNER_STACK_KEYWORD = '__ec_magicType_stack__';
-
- function MagicType(model) {
- this.model = model;
- }
-
- MagicType.defaultOption = {
- show: true,
- type: [],
- // Icon group
- icon: {
- /* eslint-disable */
- line: 'M4.1,28.9h7.1l9.3-22l7.4,38l9.7-19.7l3,12.8h14.9M4.1,58h51.4',
- bar: 'M6.7,22.9h10V48h-10V22.9zM24.9,13h10v35h-10V13zM43.2,2h10v46h-10V2zM3.1,58h53.7',
- stack: 'M8.2,38.4l-8.4,4.1l30.6,15.3L60,42.5l-8.1-4.1l-21.5,11L8.2,38.4z M51.9,30l-8.1,4.2l-13.4,6.9l-13.9-6.9L8.2,30l-8.4,4.2l8.4,4.2l22.2,11l21.5-11l8.1-4.2L51.9,30z M51.9,21.7l-8.1,4.2L35.7,30l-5.3,2.8L24.9,30l-8.4-4.1l-8.3-4.2l-8.4,4.2L8.2,30l8.3,4.2l13.9,6.9l13.4-6.9l8.1-4.2l8.1-4.1L51.9,21.7zM30.4,2.2L-0.2,17.5l8.4,4.1l8.3,4.2l8.4,4.2l5.5,2.7l5.3-2.7l8.1-4.2l8.1-4.2l8.1-4.1L30.4,2.2z' // jshint ignore:line
-
- /* eslint-enable */
-
- },
- // `line`, `bar`, `stack`, `tiled`
- title: zrUtil.clone(magicTypeLang.title),
- option: {},
- seriesIndex: {}
- };
- var proto = MagicType.prototype;
-
- proto.getIcons = function () {
- var model = this.model;
- var availableIcons = model.get('icon');
- var icons = {};
- zrUtil.each(model.get('type'), function (type) {
- if (availableIcons[type]) {
- icons[type] = availableIcons[type];
- }
- });
- return icons;
- };
-
- var seriesOptGenreator = {
- 'line': function (seriesType, seriesId, seriesModel, model) {
- if (seriesType === 'bar') {
- return zrUtil.merge({
- id: seriesId,
- type: 'line',
- // Preserve data related option
- data: seriesModel.get('data'),
- stack: seriesModel.get('stack'),
- markPoint: seriesModel.get('markPoint'),
- markLine: seriesModel.get('markLine')
- }, model.get('option.line') || {}, true);
- }
- },
- 'bar': function (seriesType, seriesId, seriesModel, model) {
- if (seriesType === 'line') {
- return zrUtil.merge({
- id: seriesId,
- type: 'bar',
- // Preserve data related option
- data: seriesModel.get('data'),
- stack: seriesModel.get('stack'),
- markPoint: seriesModel.get('markPoint'),
- markLine: seriesModel.get('markLine')
- }, model.get('option.bar') || {}, true);
- }
- },
- 'stack': function (seriesType, seriesId, seriesModel, model) {
- var isStack = seriesModel.get('stack') === INNER_STACK_KEYWORD;
-
- if (seriesType === 'line' || seriesType === 'bar') {
- model.setIconStatus('stack', isStack ? 'normal' : 'emphasis');
- return zrUtil.merge({
- id: seriesId,
- stack: isStack ? '' : INNER_STACK_KEYWORD
- }, model.get('option.stack') || {}, true);
- }
- }
- };
- var radioTypes = [['line', 'bar'], ['stack']];
-
- proto.onclick = function (ecModel, api, type) {
- var model = this.model;
- var seriesIndex = model.get('seriesIndex.' + type); // Not supported magicType
-
- if (!seriesOptGenreator[type]) {
- return;
- }
-
- var newOption = {
- series: []
- };
-
- var generateNewSeriesTypes = function (seriesModel) {
- var seriesType = seriesModel.subType;
- var seriesId = seriesModel.id;
- var newSeriesOpt = seriesOptGenreator[type](seriesType, seriesId, seriesModel, model);
-
- if (newSeriesOpt) {
- // PENDING If merge original option?
- zrUtil.defaults(newSeriesOpt, seriesModel.option);
- newOption.series.push(newSeriesOpt);
- } // Modify boundaryGap
-
-
- var coordSys = seriesModel.coordinateSystem;
-
- if (coordSys && coordSys.type === 'cartesian2d' && (type === 'line' || type === 'bar')) {
- var categoryAxis = coordSys.getAxesByScale('ordinal')[0];
-
- if (categoryAxis) {
- var axisDim = categoryAxis.dim;
- var axisType = axisDim + 'Axis';
- var axisModel = ecModel.queryComponents({
- mainType: axisType,
- index: seriesModel.get(name + 'Index'),
- id: seriesModel.get(name + 'Id')
- })[0];
- var axisIndex = axisModel.componentIndex;
- newOption[axisType] = newOption[axisType] || [];
-
- for (var i = 0; i <= axisIndex; i++) {
- newOption[axisType][axisIndex] = newOption[axisType][axisIndex] || {};
- }
-
- newOption[axisType][axisIndex].boundaryGap = type === 'bar';
- }
- }
- };
-
- zrUtil.each(radioTypes, function (radio) {
- if (zrUtil.indexOf(radio, type) >= 0) {
- zrUtil.each(radio, function (item) {
- model.setIconStatus(item, 'normal');
- });
- }
- });
- model.setIconStatus(type, 'emphasis');
- ecModel.eachComponent({
- mainType: 'series',
- query: seriesIndex == null ? null : {
- seriesIndex: seriesIndex
- }
- }, generateNewSeriesTypes);
- var newTitle; // Change title of stack
-
- if (type === 'stack') {
- var isStack = newOption.series && newOption.series[0] && newOption.series[0].stack === INNER_STACK_KEYWORD;
- newTitle = isStack ? zrUtil.merge({
- stack: magicTypeLang.title.tiled
- }, magicTypeLang.title) : zrUtil.clone(magicTypeLang.title);
- }
-
- api.dispatchAction({
- type: 'changeMagicType',
- currentType: type,
- newOption: newOption,
- newTitle: newTitle
- });
- };
-
- echarts.registerAction({
- type: 'changeMagicType',
- event: 'magicTypeChanged',
- update: 'prepareAndUpdate'
- }, function (payload, ecModel) {
- ecModel.mergeOption(payload.newOption);
- });
- featureManager.register('magicType', MagicType);
- var _default = MagicType;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2738:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var eventTool = __webpack_require__(1437);
-
- var lang = __webpack_require__(1483);
-
- var featureManager = __webpack_require__(1486);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var dataViewLang = lang.toolbox.dataView;
- var BLOCK_SPLITER = new Array(60).join('-');
- var ITEM_SPLITER = '\t';
- /**
- * Group series into two types
- * 1. on category axis, like line, bar
- * 2. others, like scatter, pie
- * @param {module:echarts/model/Global} ecModel
- * @return {Object}
- * @inner
- */
-
- function groupSeries(ecModel) {
- var seriesGroupByCategoryAxis = {};
- var otherSeries = [];
- var meta = [];
- ecModel.eachRawSeries(function (seriesModel) {
- var coordSys = seriesModel.coordinateSystem;
-
- if (coordSys && (coordSys.type === 'cartesian2d' || coordSys.type === 'polar')) {
- var baseAxis = coordSys.getBaseAxis();
-
- if (baseAxis.type === 'category') {
- var key = baseAxis.dim + '_' + baseAxis.index;
-
- if (!seriesGroupByCategoryAxis[key]) {
- seriesGroupByCategoryAxis[key] = {
- categoryAxis: baseAxis,
- valueAxis: coordSys.getOtherAxis(baseAxis),
- series: []
- };
- meta.push({
- axisDim: baseAxis.dim,
- axisIndex: baseAxis.index
- });
- }
-
- seriesGroupByCategoryAxis[key].series.push(seriesModel);
- } else {
- otherSeries.push(seriesModel);
- }
- } else {
- otherSeries.push(seriesModel);
- }
- });
- return {
- seriesGroupByCategoryAxis: seriesGroupByCategoryAxis,
- other: otherSeries,
- meta: meta
- };
- }
- /**
- * Assemble content of series on cateogory axis
- * @param {Array.<module:echarts/model/Series>} series
- * @return {string}
- * @inner
- */
-
-
- function assembleSeriesWithCategoryAxis(series) {
- var tables = [];
- zrUtil.each(series, function (group, key) {
- var categoryAxis = group.categoryAxis;
- var valueAxis = group.valueAxis;
- var valueAxisDim = valueAxis.dim;
- var headers = [' '].concat(zrUtil.map(group.series, function (series) {
- return series.name;
- }));
- var columns = [categoryAxis.model.getCategories()];
- zrUtil.each(group.series, function (series) {
- columns.push(series.getRawData().mapArray(valueAxisDim, function (val) {
- return val;
- }));
- }); // Assemble table content
-
- var lines = [headers.join(ITEM_SPLITER)];
-
- for (var i = 0; i < columns[0].length; i++) {
- var items = [];
-
- for (var j = 0; j < columns.length; j++) {
- items.push(columns[j][i]);
- }
-
- lines.push(items.join(ITEM_SPLITER));
- }
-
- tables.push(lines.join('\n'));
- });
- return tables.join('\n\n' + BLOCK_SPLITER + '\n\n');
- }
- /**
- * Assemble content of other series
- * @param {Array.<module:echarts/model/Series>} series
- * @return {string}
- * @inner
- */
-
-
- function assembleOtherSeries(series) {
- return zrUtil.map(series, function (series) {
- var data = series.getRawData();
- var lines = [series.name];
- var vals = [];
- data.each(data.dimensions, function () {
- var argLen = arguments.length;
- var dataIndex = arguments[argLen - 1];
- var name = data.getName(dataIndex);
-
- for (var i = 0; i < argLen - 1; i++) {
- vals[i] = arguments[i];
- }
-
- lines.push((name ? name + ITEM_SPLITER : '') + vals.join(ITEM_SPLITER));
- });
- return lines.join('\n');
- }).join('\n\n' + BLOCK_SPLITER + '\n\n');
- }
- /**
- * @param {module:echarts/model/Global}
- * @return {Object}
- * @inner
- */
-
-
- function getContentFromModel(ecModel) {
- var result = groupSeries(ecModel);
- return {
- value: zrUtil.filter([assembleSeriesWithCategoryAxis(result.seriesGroupByCategoryAxis), assembleOtherSeries(result.other)], function (str) {
- return str.replace(/[\n\t\s]/g, '');
- }).join('\n\n' + BLOCK_SPLITER + '\n\n'),
- meta: result.meta
- };
- }
-
- function trim(str) {
- return str.replace(/^\s\s*/, '').replace(/\s\s*$/, '');
- }
- /**
- * If a block is tsv format
- */
-
-
- function isTSVFormat(block) {
- // Simple method to find out if a block is tsv format
- var firstLine = block.slice(0, block.indexOf('\n'));
-
- if (firstLine.indexOf(ITEM_SPLITER) >= 0) {
- return true;
- }
- }
-
- var itemSplitRegex = new RegExp('[' + ITEM_SPLITER + ']+', 'g');
- /**
- * @param {string} tsv
- * @return {Object}
- */
-
- function parseTSVContents(tsv) {
- var tsvLines = tsv.split(/\n+/g);
- var headers = trim(tsvLines.shift()).split(itemSplitRegex);
- var categories = [];
- var series = zrUtil.map(headers, function (header) {
- return {
- name: header,
- data: []
- };
- });
-
- for (var i = 0; i < tsvLines.length; i++) {
- var items = trim(tsvLines[i]).split(itemSplitRegex);
- categories.push(items.shift());
-
- for (var j = 0; j < items.length; j++) {
- series[j] && (series[j].data[i] = items[j]);
- }
- }
-
- return {
- series: series,
- categories: categories
- };
- }
- /**
- * @param {string} str
- * @return {Array.<Object>}
- * @inner
- */
-
-
- function parseListContents(str) {
- var lines = str.split(/\n+/g);
- var seriesName = trim(lines.shift());
- var data = [];
-
- for (var i = 0; i < lines.length; i++) {
- var items = trim(lines[i]).split(itemSplitRegex);
- var name = '';
- var value;
- var hasName = false;
-
- if (isNaN(items[0])) {
- // First item is name
- hasName = true;
- name = items[0];
- items = items.slice(1);
- data[i] = {
- name: name,
- value: []
- };
- value = data[i].value;
- } else {
- value = data[i] = [];
- }
-
- for (var j = 0; j < items.length; j++) {
- value.push(+items[j]);
- }
-
- if (value.length === 1) {
- hasName ? data[i].value = value[0] : data[i] = value[0];
- }
- }
-
- return {
- name: seriesName,
- data: data
- };
- }
- /**
- * @param {string} str
- * @param {Array.<Object>} blockMetaList
- * @return {Object}
- * @inner
- */
-
-
- function parseContents(str, blockMetaList) {
- var blocks = str.split(new RegExp('\n*' + BLOCK_SPLITER + '\n*', 'g'));
- var newOption = {
- series: []
- };
- zrUtil.each(blocks, function (block, idx) {
- if (isTSVFormat(block)) {
- var result = parseTSVContents(block);
- var blockMeta = blockMetaList[idx];
- var axisKey = blockMeta.axisDim + 'Axis';
-
- if (blockMeta) {
- newOption[axisKey] = newOption[axisKey] || [];
- newOption[axisKey][blockMeta.axisIndex] = {
- data: result.categories
- };
- newOption.series = newOption.series.concat(result.series);
- }
- } else {
- var result = parseListContents(block);
- newOption.series.push(result);
- }
- });
- return newOption;
- }
- /**
- * @alias {module:echarts/component/toolbox/feature/DataView}
- * @constructor
- * @param {module:echarts/model/Model} model
- */
-
-
- function DataView(model) {
- this._dom = null;
- this.model = model;
- }
-
- DataView.defaultOption = {
- show: true,
- readOnly: false,
- optionToContent: null,
- contentToOption: null,
- icon: 'M17.5,17.3H33 M17.5,17.3H33 M45.4,29.5h-28 M11.5,2v56H51V14.8L38.4,2H11.5z M38.4,2.2v12.7H51 M45.4,41.7h-28',
- title: zrUtil.clone(dataViewLang.title),
- lang: zrUtil.clone(dataViewLang.lang),
- backgroundColor: '#fff',
- textColor: '#000',
- textareaColor: '#fff',
- textareaBorderColor: '#333',
- buttonColor: '#c23531',
- buttonTextColor: '#fff'
- };
-
- DataView.prototype.onclick = function (ecModel, api) {
- var container = api.getDom();
- var model = this.model;
-
- if (this._dom) {
- container.removeChild(this._dom);
- }
-
- var root = document.createElement('div');
- root.style.cssText = 'position:absolute;left:5px;top:5px;bottom:5px;right:5px;';
- root.style.backgroundColor = model.get('backgroundColor') || '#fff'; // Create elements
-
- var header = document.createElement('h4');
- var lang = model.get('lang') || [];
- header.innerHTML = lang[0] || model.get('title');
- header.style.cssText = 'margin: 10px 20px;';
- header.style.color = model.get('textColor');
- var viewMain = document.createElement('div');
- var textarea = document.createElement('textarea');
- viewMain.style.cssText = 'display:block;width:100%;overflow:auto;';
- var optionToContent = model.get('optionToContent');
- var contentToOption = model.get('contentToOption');
- var result = getContentFromModel(ecModel);
-
- if (typeof optionToContent === 'function') {
- var htmlOrDom = optionToContent(api.getOption());
-
- if (typeof htmlOrDom === 'string') {
- viewMain.innerHTML = htmlOrDom;
- } else if (zrUtil.isDom(htmlOrDom)) {
- viewMain.appendChild(htmlOrDom);
- }
- } else {
- // Use default textarea
- viewMain.appendChild(textarea);
- textarea.readOnly = model.get('readOnly');
- textarea.style.cssText = 'width:100%;height:100%;font-family:monospace;font-size:14px;line-height:1.6rem;';
- textarea.style.color = model.get('textColor');
- textarea.style.borderColor = model.get('textareaBorderColor');
- textarea.style.backgroundColor = model.get('textareaColor');
- textarea.value = result.value;
- }
-
- var blockMetaList = result.meta;
- var buttonContainer = document.createElement('div');
- buttonContainer.style.cssText = 'position:absolute;bottom:0;left:0;right:0;';
- var buttonStyle = 'float:right;margin-right:20px;border:none;' + 'cursor:pointer;padding:2px 5px;font-size:12px;border-radius:3px';
- var closeButton = document.createElement('div');
- var refreshButton = document.createElement('div');
- buttonStyle += ';background-color:' + model.get('buttonColor');
- buttonStyle += ';color:' + model.get('buttonTextColor');
- var self = this;
-
- function close() {
- container.removeChild(root);
- self._dom = null;
- }
-
- eventTool.addEventListener(closeButton, 'click', close);
- eventTool.addEventListener(refreshButton, 'click', function () {
- var newOption;
-
- try {
- if (typeof contentToOption === 'function') {
- newOption = contentToOption(viewMain, api.getOption());
- } else {
- newOption = parseContents(textarea.value, blockMetaList);
- }
- } catch (e) {
- close();
- throw new Error('Data view format error ' + e);
- }
-
- if (newOption) {
- api.dispatchAction({
- type: 'changeDataView',
- newOption: newOption
- });
- }
-
- close();
- });
- closeButton.innerHTML = lang[1];
- refreshButton.innerHTML = lang[2];
- refreshButton.style.cssText = buttonStyle;
- closeButton.style.cssText = buttonStyle;
- !model.get('readOnly') && buttonContainer.appendChild(refreshButton);
- buttonContainer.appendChild(closeButton);
- root.appendChild(header);
- root.appendChild(viewMain);
- root.appendChild(buttonContainer);
- viewMain.style.height = container.clientHeight - 80 + 'px';
- container.appendChild(root);
- this._dom = root;
- };
-
- DataView.prototype.remove = function (ecModel, api) {
- this._dom && api.getDom().removeChild(this._dom);
- };
-
- DataView.prototype.dispose = function (ecModel, api) {
- this.remove(ecModel, api);
- };
- /**
- * @inner
- */
-
-
- function tryMergeDataOption(newData, originalData) {
- return zrUtil.map(newData, function (newVal, idx) {
- var original = originalData && originalData[idx];
-
- if (zrUtil.isObject(original) && !zrUtil.isArray(original)) {
- if (zrUtil.isObject(newVal) && !zrUtil.isArray(newVal)) {
- newVal = newVal.value;
- } // Original data has option
-
-
- return zrUtil.defaults({
- value: newVal
- }, original);
- } else {
- return newVal;
- }
- });
- }
-
- featureManager.register('dataView', DataView);
- echarts.registerAction({
- type: 'changeDataView',
- event: 'dataViewChanged',
- update: 'prepareAndUpdate'
- }, function (payload, ecModel) {
- var newSeriesOptList = [];
- zrUtil.each(payload.newOption.series, function (seriesOpt) {
- var seriesModel = ecModel.getSeriesByName(seriesOpt.name)[0];
-
- if (!seriesModel) {
- // New created series
- // Geuss the series type
- newSeriesOptList.push(zrUtil.extend({
- // Default is scatter
- type: 'scatter'
- }, seriesOpt));
- } else {
- var originalData = seriesModel.get('data');
- newSeriesOptList.push({
- name: seriesOpt.name,
- data: tryMergeDataOption(seriesOpt.data, originalData)
- });
- }
- });
- ecModel.mergeOption(zrUtil.defaults({
- series: newSeriesOptList
- }, payload.newOption));
- });
- var _default = DataView;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2739:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var BrushController = __webpack_require__(1915);
-
- var BrushTargetManager = __webpack_require__(2322);
-
- var history = __webpack_require__(2323);
-
- var sliderMove = __webpack_require__(1605);
-
- var lang = __webpack_require__(1483);
-
- var featureManager = __webpack_require__(1486);
-
- __webpack_require__(2740);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // Use dataZoomSelect
- var dataZoomLang = lang.toolbox.dataZoom;
- var each = zrUtil.each; // Spectial component id start with \0ec\0, see echarts/model/Global.js~hasInnerId
-
- var DATA_ZOOM_ID_BASE = '\0_ec_\0toolbox-dataZoom_';
-
- function DataZoom(model, ecModel, api) {
- /**
- * @private
- * @type {module:echarts/component/helper/BrushController}
- */
- (this._brushController = new BrushController(api.getZr())).on('brush', zrUtil.bind(this._onBrush, this)).mount();
- /**
- * @private
- * @type {boolean}
- */
-
- this._isZoomActive;
- }
-
- DataZoom.defaultOption = {
- show: true,
- filterMode: 'filter',
- // Icon group
- icon: {
- zoom: 'M0,13.5h26.9 M13.5,26.9V0 M32.1,13.5H58V58H13.5 V32.1',
- back: 'M22,1.4L9.9,13.5l12.3,12.3 M10.3,13.5H54.9v44.6 H10.3v-26'
- },
- // `zoom`, `back`
- title: zrUtil.clone(dataZoomLang.title)
- };
- var proto = DataZoom.prototype;
-
- proto.render = function (featureModel, ecModel, api, payload) {
- this.model = featureModel;
- this.ecModel = ecModel;
- this.api = api;
- updateZoomBtnStatus(featureModel, ecModel, this, payload, api);
- updateBackBtnStatus(featureModel, ecModel);
- };
-
- proto.onclick = function (ecModel, api, type) {
- handlers[type].call(this);
- };
-
- proto.remove = function (ecModel, api) {
- this._brushController.unmount();
- };
-
- proto.dispose = function (ecModel, api) {
- this._brushController.dispose();
- };
- /**
- * @private
- */
-
-
- var handlers = {
- zoom: function () {
- var nextActive = !this._isZoomActive;
- this.api.dispatchAction({
- type: 'takeGlobalCursor',
- key: 'dataZoomSelect',
- dataZoomSelectActive: nextActive
- });
- },
- back: function () {
- this._dispatchZoomAction(history.pop(this.ecModel));
- }
- };
- /**
- * @private
- */
-
- proto._onBrush = function (areas, opt) {
- if (!opt.isEnd || !areas.length) {
- return;
- }
-
- var snapshot = {};
- var ecModel = this.ecModel;
-
- this._brushController.updateCovers([]); // remove cover
-
-
- var brushTargetManager = new BrushTargetManager(retrieveAxisSetting(this.model.option), ecModel, {
- include: ['grid']
- });
- brushTargetManager.matchOutputRanges(areas, ecModel, function (area, coordRange, coordSys) {
- if (coordSys.type !== 'cartesian2d') {
- return;
- }
-
- var brushType = area.brushType;
-
- if (brushType === 'rect') {
- setBatch('x', coordSys, coordRange[0]);
- setBatch('y', coordSys, coordRange[1]);
- } else {
- setBatch({
- lineX: 'x',
- lineY: 'y'
- }[brushType], coordSys, coordRange);
- }
- });
- history.push(ecModel, snapshot);
-
- this._dispatchZoomAction(snapshot);
-
- function setBatch(dimName, coordSys, minMax) {
- var axis = coordSys.getAxis(dimName);
- var axisModel = axis.model;
- var dataZoomModel = findDataZoom(dimName, axisModel, ecModel); // Restrict range.
-
- var minMaxSpan = dataZoomModel.findRepresentativeAxisProxy(axisModel).getMinMaxSpan();
-
- if (minMaxSpan.minValueSpan != null || minMaxSpan.maxValueSpan != null) {
- minMax = sliderMove(0, minMax.slice(), axis.scale.getExtent(), 0, minMaxSpan.minValueSpan, minMaxSpan.maxValueSpan);
- }
-
- dataZoomModel && (snapshot[dataZoomModel.id] = {
- dataZoomId: dataZoomModel.id,
- startValue: minMax[0],
- endValue: minMax[1]
- });
- }
-
- function findDataZoom(dimName, axisModel, ecModel) {
- var found;
- ecModel.eachComponent({
- mainType: 'dataZoom',
- subType: 'select'
- }, function (dzModel) {
- var has = dzModel.getAxisModel(dimName, axisModel.componentIndex);
- has && (found = dzModel);
- });
- return found;
- }
- };
- /**
- * @private
- */
-
-
- proto._dispatchZoomAction = function (snapshot) {
- var batch = []; // Convert from hash map to array.
-
- each(snapshot, function (batchItem, dataZoomId) {
- batch.push(zrUtil.clone(batchItem));
- });
- batch.length && this.api.dispatchAction({
- type: 'dataZoom',
- from: this.uid,
- batch: batch
- });
- };
-
- function retrieveAxisSetting(option) {
- var setting = {}; // Compatible with previous setting: null => all axis, false => no axis.
-
- zrUtil.each(['xAxisIndex', 'yAxisIndex'], function (name) {
- setting[name] = option[name];
- setting[name] == null && (setting[name] = 'all');
- (setting[name] === false || setting[name] === 'none') && (setting[name] = []);
- });
- return setting;
- }
-
- function updateBackBtnStatus(featureModel, ecModel) {
- featureModel.setIconStatus('back', history.count(ecModel) > 1 ? 'emphasis' : 'normal');
- }
-
- function updateZoomBtnStatus(featureModel, ecModel, view, payload, api) {
- var zoomActive = view._isZoomActive;
-
- if (payload && payload.type === 'takeGlobalCursor') {
- zoomActive = payload.key === 'dataZoomSelect' ? payload.dataZoomSelectActive : false;
- }
-
- view._isZoomActive = zoomActive;
- featureModel.setIconStatus('zoom', zoomActive ? 'emphasis' : 'normal');
- var brushTargetManager = new BrushTargetManager(retrieveAxisSetting(featureModel.option), ecModel, {
- include: ['grid']
- });
-
- view._brushController.setPanels(brushTargetManager.makePanelOpts(api, function (targetInfo) {
- return targetInfo.xAxisDeclared && !targetInfo.yAxisDeclared ? 'lineX' : !targetInfo.xAxisDeclared && targetInfo.yAxisDeclared ? 'lineY' : 'rect';
- })).enableBrush(zoomActive ? {
- brushType: 'auto',
- brushStyle: {
- // FIXME user customized?
- lineWidth: 0,
- fill: 'rgba(0,0,0,0.2)'
- }
- } : false);
- }
-
- featureManager.register('dataZoom', DataZoom); // Create special dataZoom option for select
- // FIXME consider the case of merge option, where axes options are not exists.
-
- echarts.registerPreprocessor(function (option) {
- if (!option) {
- return;
- }
-
- var dataZoomOpts = option.dataZoom || (option.dataZoom = []);
-
- if (!zrUtil.isArray(dataZoomOpts)) {
- option.dataZoom = dataZoomOpts = [dataZoomOpts];
- }
-
- var toolboxOpt = option.toolbox;
-
- if (toolboxOpt) {
- // Assume there is only one toolbox
- if (zrUtil.isArray(toolboxOpt)) {
- toolboxOpt = toolboxOpt[0];
- }
-
- if (toolboxOpt && toolboxOpt.feature) {
- var dataZoomOpt = toolboxOpt.feature.dataZoom; // FIXME: If add dataZoom when setOption in merge mode,
- // no axis info to be added. See `test/dataZoom-extreme.html`
-
- addForAxis('xAxis', dataZoomOpt);
- addForAxis('yAxis', dataZoomOpt);
- }
- }
-
- function addForAxis(axisName, dataZoomOpt) {
- if (!dataZoomOpt) {
- return;
- } // Try not to modify model, because it is not merged yet.
-
-
- var axisIndicesName = axisName + 'Index';
- var givenAxisIndices = dataZoomOpt[axisIndicesName];
-
- if (givenAxisIndices != null && givenAxisIndices !== 'all' && !zrUtil.isArray(givenAxisIndices)) {
- givenAxisIndices = givenAxisIndices === false || givenAxisIndices === 'none' ? [] : [givenAxisIndices];
- }
-
- forEachComponent(axisName, function (axisOpt, axisIndex) {
- if (givenAxisIndices != null && givenAxisIndices !== 'all' && zrUtil.indexOf(givenAxisIndices, axisIndex) === -1) {
- return;
- }
-
- var newOpt = {
- type: 'select',
- $fromToolbox: true,
- // Default to be filter
- filterMode: dataZoomOpt.filterMode || 'filter',
- // Id for merge mapping.
- id: DATA_ZOOM_ID_BASE + axisName + axisIndex
- }; // FIXME
- // Only support one axis now.
-
- newOpt[axisIndicesName] = axisIndex;
- dataZoomOpts.push(newOpt);
- });
- }
-
- function forEachComponent(mainType, cb) {
- var opts = option[mainType];
-
- if (!zrUtil.isArray(opts)) {
- opts = opts ? [opts] : [];
- }
-
- each(opts, cb);
- }
- });
- var _default = DataZoom;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2740:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- __webpack_require__(1918);
-
- __webpack_require__(1606);
-
- __webpack_require__(1607);
-
- __webpack_require__(2742);
-
- __webpack_require__(2743);
-
- __webpack_require__(1920);
-
- __webpack_require__(1921);
-
- /***/ }),
-
- /***/ 2741:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var numberUtil = __webpack_require__(985);
-
- var helper = __webpack_require__(1919);
-
- var sliderMove = __webpack_require__(1605);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var each = zrUtil.each;
- var asc = numberUtil.asc;
- /**
- * Operate single axis.
- * One axis can only operated by one axis operator.
- * Different dataZoomModels may be defined to operate the same axis.
- * (i.e. 'inside' data zoom and 'slider' data zoom components)
- * So dataZoomModels share one axisProxy in that case.
- *
- * @class
- */
-
- var AxisProxy = function (dimName, axisIndex, dataZoomModel, ecModel) {
- /**
- * @private
- * @type {string}
- */
- this._dimName = dimName;
- /**
- * @private
- */
-
- this._axisIndex = axisIndex;
- /**
- * @private
- * @type {Array.<number>}
- */
-
- this._valueWindow;
- /**
- * @private
- * @type {Array.<number>}
- */
-
- this._percentWindow;
- /**
- * @private
- * @type {Array.<number>}
- */
-
- this._dataExtent;
- /**
- * {minSpan, maxSpan, minValueSpan, maxValueSpan}
- * @private
- * @type {Object}
- */
-
- this._minMaxSpan;
- /**
- * @readOnly
- * @type {module: echarts/model/Global}
- */
-
- this.ecModel = ecModel;
- /**
- * @private
- * @type {module: echarts/component/dataZoom/DataZoomModel}
- */
-
- this._dataZoomModel = dataZoomModel; // /**
- // * @readOnly
- // * @private
- // */
- // this.hasSeriesStacked;
- };
-
- AxisProxy.prototype = {
- constructor: AxisProxy,
-
- /**
- * Whether the axisProxy is hosted by dataZoomModel.
- *
- * @public
- * @param {module: echarts/component/dataZoom/DataZoomModel} dataZoomModel
- * @return {boolean}
- */
- hostedBy: function (dataZoomModel) {
- return this._dataZoomModel === dataZoomModel;
- },
-
- /**
- * @return {Array.<number>} Value can only be NaN or finite value.
- */
- getDataValueWindow: function () {
- return this._valueWindow.slice();
- },
-
- /**
- * @return {Array.<number>}
- */
- getDataPercentWindow: function () {
- return this._percentWindow.slice();
- },
-
- /**
- * @public
- * @param {number} axisIndex
- * @return {Array} seriesModels
- */
- getTargetSeriesModels: function () {
- var seriesModels = [];
- var ecModel = this.ecModel;
- ecModel.eachSeries(function (seriesModel) {
- if (helper.isCoordSupported(seriesModel.get('coordinateSystem'))) {
- var dimName = this._dimName;
- var axisModel = ecModel.queryComponents({
- mainType: dimName + 'Axis',
- index: seriesModel.get(dimName + 'AxisIndex'),
- id: seriesModel.get(dimName + 'AxisId')
- })[0];
-
- if (this._axisIndex === (axisModel && axisModel.componentIndex)) {
- seriesModels.push(seriesModel);
- }
- }
- }, this);
- return seriesModels;
- },
- getAxisModel: function () {
- return this.ecModel.getComponent(this._dimName + 'Axis', this._axisIndex);
- },
- getOtherAxisModel: function () {
- var axisDim = this._dimName;
- var ecModel = this.ecModel;
- var axisModel = this.getAxisModel();
- var isCartesian = axisDim === 'x' || axisDim === 'y';
- var otherAxisDim;
- var coordSysIndexName;
-
- if (isCartesian) {
- coordSysIndexName = 'gridIndex';
- otherAxisDim = axisDim === 'x' ? 'y' : 'x';
- } else {
- coordSysIndexName = 'polarIndex';
- otherAxisDim = axisDim === 'angle' ? 'radius' : 'angle';
- }
-
- var foundOtherAxisModel;
- ecModel.eachComponent(otherAxisDim + 'Axis', function (otherAxisModel) {
- if ((otherAxisModel.get(coordSysIndexName) || 0) === (axisModel.get(coordSysIndexName) || 0)) {
- foundOtherAxisModel = otherAxisModel;
- }
- });
- return foundOtherAxisModel;
- },
- getMinMaxSpan: function () {
- return zrUtil.clone(this._minMaxSpan);
- },
-
- /**
- * Only calculate by given range and this._dataExtent, do not change anything.
- *
- * @param {Object} opt
- * @param {number} [opt.start]
- * @param {number} [opt.end]
- * @param {number} [opt.startValue]
- * @param {number} [opt.endValue]
- */
- calculateDataWindow: function (opt) {
- var dataExtent = this._dataExtent;
- var axisModel = this.getAxisModel();
- var scale = axisModel.axis.scale;
-
- var rangePropMode = this._dataZoomModel.getRangePropMode();
-
- var percentExtent = [0, 100];
- var percentWindow = [];
- var valueWindow = [];
- var hasPropModeValue;
- each(['start', 'end'], function (prop, idx) {
- var boundPercent = opt[prop];
- var boundValue = opt[prop + 'Value']; // Notice: dataZoom is based either on `percentProp` ('start', 'end') or
- // on `valueProp` ('startValue', 'endValue'). (They are based on the data extent
- // but not min/max of axis, which will be calculated by data window then).
- // The former one is suitable for cases that a dataZoom component controls multiple
- // axes with different unit or extent, and the latter one is suitable for accurate
- // zoom by pixel (e.g., in dataZoomSelect).
- // we use `getRangePropMode()` to mark which prop is used. `rangePropMode` is updated
- // only when setOption or dispatchAction, otherwise it remains its original value.
- // (Why not only record `percentProp` and always map to `valueProp`? Because
- // the map `valueProp` -> `percentProp` -> `valueProp` probably not the original
- // `valueProp`. consider two axes constrolled by one dataZoom. They have different
- // data extent. All of values that are overflow the `dataExtent` will be calculated
- // to percent '100%').
-
- if (rangePropMode[idx] === 'percent') {
- boundPercent == null && (boundPercent = percentExtent[idx]); // Use scale.parse to math round for category or time axis.
-
- boundValue = scale.parse(numberUtil.linearMap(boundPercent, percentExtent, dataExtent));
- } else {
- hasPropModeValue = true;
- boundValue = boundValue == null ? dataExtent[idx] : scale.parse(boundValue); // Calculating `percent` from `value` may be not accurate, because
- // This calculation can not be inversed, because all of values that
- // are overflow the `dataExtent` will be calculated to percent '100%'
-
- boundPercent = numberUtil.linearMap(boundValue, dataExtent, percentExtent);
- } // valueWindow[idx] = round(boundValue);
- // percentWindow[idx] = round(boundPercent);
-
-
- valueWindow[idx] = boundValue;
- percentWindow[idx] = boundPercent;
- });
- asc(valueWindow);
- asc(percentWindow); // The windows from user calling of `dispatchAction` might be out of the extent,
- // or do not obey the `min/maxSpan`, `min/maxValueSpan`. But we dont restrict window
- // by `zoomLock` here, because we see `zoomLock` just as a interaction constraint,
- // where API is able to initialize/modify the window size even though `zoomLock`
- // specified.
-
- var spans = this._minMaxSpan;
- hasPropModeValue ? restrictSet(valueWindow, percentWindow, dataExtent, percentExtent, false) : restrictSet(percentWindow, valueWindow, percentExtent, dataExtent, true);
-
- function restrictSet(fromWindow, toWindow, fromExtent, toExtent, toValue) {
- var suffix = toValue ? 'Span' : 'ValueSpan';
- sliderMove(0, fromWindow, fromExtent, 'all', spans['min' + suffix], spans['max' + suffix]);
-
- for (var i = 0; i < 2; i++) {
- toWindow[i] = numberUtil.linearMap(fromWindow[i], fromExtent, toExtent, true);
- toValue && (toWindow[i] = scale.parse(toWindow[i]));
- }
- }
-
- return {
- valueWindow: valueWindow,
- percentWindow: percentWindow
- };
- },
-
- /**
- * Notice: reset should not be called before series.restoreData() called,
- * so it is recommanded to be called in "process stage" but not "model init
- * stage".
- *
- * @param {module: echarts/component/dataZoom/DataZoomModel} dataZoomModel
- */
- reset: function (dataZoomModel) {
- if (dataZoomModel !== this._dataZoomModel) {
- return;
- }
-
- var targetSeries = this.getTargetSeriesModels(); // Culculate data window and data extent, and record them.
-
- this._dataExtent = calculateDataExtent(this, this._dimName, targetSeries); // this.hasSeriesStacked = false;
- // each(targetSeries, function (series) {
- // var data = series.getData();
- // var dataDim = data.mapDimension(this._dimName);
- // var stackedDimension = data.getCalculationInfo('stackedDimension');
- // if (stackedDimension && stackedDimension === dataDim) {
- // this.hasSeriesStacked = true;
- // }
- // }, this);
- // `calculateDataWindow` uses min/maxSpan.
-
- setMinMaxSpan(this);
- var dataWindow = this.calculateDataWindow(dataZoomModel.settledOption);
- this._valueWindow = dataWindow.valueWindow;
- this._percentWindow = dataWindow.percentWindow; // Update axis setting then.
-
- setAxisModel(this);
- },
-
- /**
- * @param {module: echarts/component/dataZoom/DataZoomModel} dataZoomModel
- */
- restore: function (dataZoomModel) {
- if (dataZoomModel !== this._dataZoomModel) {
- return;
- }
-
- this._valueWindow = this._percentWindow = null;
- setAxisModel(this, true);
- },
-
- /**
- * @param {module: echarts/component/dataZoom/DataZoomModel} dataZoomModel
- */
- filterData: function (dataZoomModel, api) {
- if (dataZoomModel !== this._dataZoomModel) {
- return;
- }
-
- var axisDim = this._dimName;
- var seriesModels = this.getTargetSeriesModels();
- var filterMode = dataZoomModel.get('filterMode');
- var valueWindow = this._valueWindow;
-
- if (filterMode === 'none') {
- return;
- } // FIXME
- // Toolbox may has dataZoom injected. And if there are stacked bar chart
- // with NaN data, NaN will be filtered and stack will be wrong.
- // So we need to force the mode to be set empty.
- // In fect, it is not a big deal that do not support filterMode-'filter'
- // when using toolbox#dataZoom, utill tooltip#dataZoom support "single axis
- // selection" some day, which might need "adapt to data extent on the
- // otherAxis", which is disabled by filterMode-'empty'.
- // But currently, stack has been fixed to based on value but not index,
- // so this is not an issue any more.
- // var otherAxisModel = this.getOtherAxisModel();
- // if (dataZoomModel.get('$fromToolbox')
- // && otherAxisModel
- // && otherAxisModel.hasSeriesStacked
- // ) {
- // filterMode = 'empty';
- // }
- // TODO
- // filterMode 'weakFilter' and 'empty' is not optimized for huge data yet.
-
-
- each(seriesModels, function (seriesModel) {
- var seriesData = seriesModel.getData();
- var dataDims = seriesData.mapDimension(axisDim, true);
-
- if (!dataDims.length) {
- return;
- }
-
- if (filterMode === 'weakFilter') {
- seriesData.filterSelf(function (dataIndex) {
- var leftOut;
- var rightOut;
- var hasValue;
-
- for (var i = 0; i < dataDims.length; i++) {
- var value = seriesData.get(dataDims[i], dataIndex);
- var thisHasValue = !isNaN(value);
- var thisLeftOut = value < valueWindow[0];
- var thisRightOut = value > valueWindow[1];
-
- if (thisHasValue && !thisLeftOut && !thisRightOut) {
- return true;
- }
-
- thisHasValue && (hasValue = true);
- thisLeftOut && (leftOut = true);
- thisRightOut && (rightOut = true);
- } // If both left out and right out, do not filter.
-
-
- return hasValue && leftOut && rightOut;
- });
- } else {
- each(dataDims, function (dim) {
- if (filterMode === 'empty') {
- seriesModel.setData(seriesData = seriesData.map(dim, function (value) {
- return !isInWindow(value) ? NaN : value;
- }));
- } else {
- var range = {};
- range[dim] = valueWindow; // console.time('select');
-
- seriesData.selectRange(range); // console.timeEnd('select');
- }
- });
- }
-
- each(dataDims, function (dim) {
- seriesData.setApproximateExtent(valueWindow, dim);
- });
- });
-
- function isInWindow(value) {
- return value >= valueWindow[0] && value <= valueWindow[1];
- }
- }
- };
-
- function calculateDataExtent(axisProxy, axisDim, seriesModels) {
- var dataExtent = [Infinity, -Infinity];
- each(seriesModels, function (seriesModel) {
- var seriesData = seriesModel.getData();
-
- if (seriesData) {
- each(seriesData.mapDimension(axisDim, true), function (dim) {
- var seriesExtent = seriesData.getApproximateExtent(dim);
- seriesExtent[0] < dataExtent[0] && (dataExtent[0] = seriesExtent[0]);
- seriesExtent[1] > dataExtent[1] && (dataExtent[1] = seriesExtent[1]);
- });
- }
- });
-
- if (dataExtent[1] < dataExtent[0]) {
- dataExtent = [NaN, NaN];
- } // It is important to get "consistent" extent when more then one axes is
- // controlled by a `dataZoom`, otherwise those axes will not be synchronized
- // when zooming. But it is difficult to know what is "consistent", considering
- // axes have different type or even different meanings (For example, two
- // time axes are used to compare data of the same date in different years).
- // So basically dataZoom just obtains extent by series.data (in category axis
- // extent can be obtained from axis.data).
- // Nevertheless, user can set min/max/scale on axes to make extent of axes
- // consistent.
-
-
- fixExtentByAxis(axisProxy, dataExtent);
- return dataExtent;
- }
-
- function fixExtentByAxis(axisProxy, dataExtent) {
- var axisModel = axisProxy.getAxisModel();
- var min = axisModel.getMin(true); // For category axis, if min/max/scale are not set, extent is determined
- // by axis.data by default.
-
- var isCategoryAxis = axisModel.get('type') === 'category';
- var axisDataLen = isCategoryAxis && axisModel.getCategories().length;
-
- if (min != null && min !== 'dataMin' && typeof min !== 'function') {
- dataExtent[0] = min;
- } else if (isCategoryAxis) {
- dataExtent[0] = axisDataLen > 0 ? 0 : NaN;
- }
-
- var max = axisModel.getMax(true);
-
- if (max != null && max !== 'dataMax' && typeof max !== 'function') {
- dataExtent[1] = max;
- } else if (isCategoryAxis) {
- dataExtent[1] = axisDataLen > 0 ? axisDataLen - 1 : NaN;
- }
-
- if (!axisModel.get('scale', true)) {
- dataExtent[0] > 0 && (dataExtent[0] = 0);
- dataExtent[1] < 0 && (dataExtent[1] = 0);
- } // For value axis, if min/max/scale are not set, we just use the extent obtained
- // by series data, which may be a little different from the extent calculated by
- // `axisHelper.getScaleExtent`. But the different just affects the experience a
- // little when zooming. So it will not be fixed until some users require it strongly.
-
-
- return dataExtent;
- }
-
- function setAxisModel(axisProxy, isRestore) {
- var axisModel = axisProxy.getAxisModel();
- var percentWindow = axisProxy._percentWindow;
- var valueWindow = axisProxy._valueWindow;
-
- if (!percentWindow) {
- return;
- } // [0, 500]: arbitrary value, guess axis extent.
-
-
- var precision = numberUtil.getPixelPrecision(valueWindow, [0, 500]);
- precision = Math.min(precision, 20); // isRestore or isFull
-
- var useOrigin = isRestore || percentWindow[0] === 0 && percentWindow[1] === 100;
- axisModel.setRange(useOrigin ? null : +valueWindow[0].toFixed(precision), useOrigin ? null : +valueWindow[1].toFixed(precision));
- }
-
- function setMinMaxSpan(axisProxy) {
- var minMaxSpan = axisProxy._minMaxSpan = {};
- var dataZoomModel = axisProxy._dataZoomModel;
- var dataExtent = axisProxy._dataExtent;
- each(['min', 'max'], function (minMax) {
- var percentSpan = dataZoomModel.get(minMax + 'Span');
- var valueSpan = dataZoomModel.get(minMax + 'ValueSpan');
- valueSpan != null && (valueSpan = axisProxy.getAxisModel().axis.scale.parse(valueSpan)); // minValueSpan and maxValueSpan has higher priority than minSpan and maxSpan
-
- if (valueSpan != null) {
- percentSpan = numberUtil.linearMap(dataExtent[0] + valueSpan, dataExtent, [0, 100], true);
- } else if (percentSpan != null) {
- valueSpan = numberUtil.linearMap(percentSpan, [0, 100], dataExtent, true) - dataExtent[0];
- }
-
- minMaxSpan[minMax + 'Span'] = percentSpan;
- minMaxSpan[minMax + 'ValueSpan'] = valueSpan;
- });
- }
-
- var _default = AxisProxy;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2742:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var DataZoomModel = __webpack_require__(1606);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = DataZoomModel.extend({
- type: 'dataZoom.select'
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2743:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var DataZoomView = __webpack_require__(1607);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = DataZoomView.extend({
- type: 'dataZoom.select'
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2744:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var history = __webpack_require__(2323);
-
- var lang = __webpack_require__(1483);
-
- var featureManager = __webpack_require__(1486);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var restoreLang = lang.toolbox.restore;
-
- function Restore(model) {
- this.model = model;
- }
-
- Restore.defaultOption = {
- show: true,
-
- /* eslint-disable */
- icon: 'M3.8,33.4 M47,18.9h9.8V8.7 M56.3,20.1 C52.1,9,40.5,0.6,26.8,2.1C12.6,3.7,1.6,16.2,2.1,30.6 M13,41.1H3.1v10.2 M3.7,39.9c4.2,11.1,15.8,19.5,29.5,18 c14.2-1.6,25.2-14.1,24.7-28.5',
-
- /* eslint-enable */
- title: restoreLang.title
- };
- var proto = Restore.prototype;
-
- proto.onclick = function (ecModel, api, type) {
- history.clear(ecModel);
- api.dispatchAction({
- type: 'restore',
- from: this.uid
- });
- };
-
- featureManager.register('restore', Restore);
- echarts.registerAction({
- type: 'restore',
- event: 'restore',
- update: 'prepareAndUpdate'
- }, function (payload, ecModel) {
- ecModel.resetOption('recreate');
- });
- var _default = Restore;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2745:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- __webpack_require__(1668);
-
- __webpack_require__(2746);
-
- __webpack_require__(2747);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // FIXME Better way to pack data in graphic element
-
- /**
- * @action
- * @property {string} type
- * @property {number} seriesIndex
- * @property {number} dataIndex
- * @property {number} [x]
- * @property {number} [y]
- */
- echarts.registerAction({
- type: 'showTip',
- event: 'showTip',
- update: 'tooltip:manuallyShowTip'
- }, // noop
- function () {});
- echarts.registerAction({
- type: 'hideTip',
- event: 'hideTip',
- update: 'tooltip:manuallyHideTip'
- }, // noop
- function () {});
-
- /***/ }),
-
- /***/ 2746:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = echarts.extendComponentModel({
- type: 'tooltip',
- dependencies: ['axisPointer'],
- defaultOption: {
- zlevel: 0,
- z: 60,
- show: true,
- // tooltip主体内容
- showContent: true,
- // 'trigger' only works on coordinate system.
- // 'item' | 'axis' | 'none'
- trigger: 'item',
- // 'click' | 'mousemove' | 'none'
- triggerOn: 'mousemove|click',
- alwaysShowContent: false,
- displayMode: 'single',
- // 'single' | 'multipleByCoordSys'
- renderMode: 'auto',
- // 'auto' | 'html' | 'richText'
- // 'auto': use html by default, and use non-html if `document` is not defined
- // 'html': use html for tooltip
- // 'richText': use canvas, svg, and etc. for tooltip
- // 位置 {Array} | {Function}
- // position: null
- // Consider triggered from axisPointer handle, verticalAlign should be 'middle'
- // align: null,
- // verticalAlign: null,
- // 是否约束 content 在 viewRect 中。默认 false 是为了兼容以前版本。
- confine: false,
- // 内容格式器:{string}(Template) ¦ {Function}
- // formatter: null
- showDelay: 0,
- // 隐藏延迟,单位ms
- hideDelay: 100,
- // 动画变换时间,单位s
- transitionDuration: 0.4,
- enterable: false,
- // 提示背景颜色,默认为透明度为0.7的黑色
- backgroundColor: 'rgba(50,50,50,0.7)',
- // 提示边框颜色
- borderColor: '#333',
- // 提示边框圆角,单位px,默认为4
- borderRadius: 4,
- // 提示边框线宽,单位px,默认为0(无边框)
- borderWidth: 0,
- // 提示内边距,单位px,默认各方向内边距为5,
- // 接受数组分别设定上右下左边距,同css
- padding: 5,
- // Extra css text
- extraCssText: '',
- // 坐标轴指示器,坐标轴触发有效
- axisPointer: {
- // 默认为直线
- // 可选为:'line' | 'shadow' | 'cross'
- type: 'line',
- // type 为 line 的时候有效,指定 tooltip line 所在的轴,可选
- // 可选 'x' | 'y' | 'angle' | 'radius' | 'auto'
- // 默认 'auto',会选择类型为 category 的轴,对于双数值轴,笛卡尔坐标系会默认选择 x 轴
- // 极坐标系会默认选择 angle 轴
- axis: 'auto',
- animation: 'auto',
- animationDurationUpdate: 200,
- animationEasingUpdate: 'exponentialOut',
- crossStyle: {
- color: '#999',
- width: 1,
- type: 'dashed',
- // TODO formatter
- textStyle: {} // lineStyle and shadowStyle should not be specified here,
- // otherwise it will always override those styles on option.axisPointer.
-
- }
- },
- textStyle: {
- color: '#fff',
- fontSize: 14
- }
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2747:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var env = __webpack_require__(1316);
-
- var TooltipContent = __webpack_require__(2748);
-
- var TooltipRichContent = __webpack_require__(2749);
-
- var formatUtil = __webpack_require__(1186);
-
- var numberUtil = __webpack_require__(985);
-
- var graphic = __webpack_require__(906);
-
- var findPointFromSeries = __webpack_require__(2318);
-
- var layoutUtil = __webpack_require__(1171);
-
- var Model = __webpack_require__(1317);
-
- var globalListener = __webpack_require__(2319);
-
- var axisHelper = __webpack_require__(1415);
-
- var axisPointerViewHelper = __webpack_require__(1796);
-
- var _model = __webpack_require__(1064);
-
- var getTooltipRenderMode = _model.getTooltipRenderMode;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var bind = zrUtil.bind;
- var each = zrUtil.each;
- var parsePercent = numberUtil.parsePercent;
- var proxyRect = new graphic.Rect({
- shape: {
- x: -1,
- y: -1,
- width: 2,
- height: 2
- }
- });
-
- var _default = echarts.extendComponentView({
- type: 'tooltip',
- init: function (ecModel, api) {
- if (env.node) {
- return;
- }
-
- var tooltipModel = ecModel.getComponent('tooltip');
- var renderMode = tooltipModel.get('renderMode');
- this._renderMode = getTooltipRenderMode(renderMode);
- var tooltipContent;
-
- if (this._renderMode === 'html') {
- tooltipContent = new TooltipContent(api.getDom(), api);
- this._newLine = '<br/>';
- } else {
- tooltipContent = new TooltipRichContent(api);
- this._newLine = '\n';
- }
-
- this._tooltipContent = tooltipContent;
- },
- render: function (tooltipModel, ecModel, api) {
- if (env.node) {
- return;
- } // Reset
-
-
- this.group.removeAll();
- /**
- * @private
- * @type {module:echarts/component/tooltip/TooltipModel}
- */
-
- this._tooltipModel = tooltipModel;
- /**
- * @private
- * @type {module:echarts/model/Global}
- */
-
- this._ecModel = ecModel;
- /**
- * @private
- * @type {module:echarts/ExtensionAPI}
- */
-
- this._api = api;
- /**
- * Should be cleaned when render.
- * @private
- * @type {Array.<Array.<Object>>}
- */
-
- this._lastDataByCoordSys = null;
- /**
- * @private
- * @type {boolean}
- */
-
- this._alwaysShowContent = tooltipModel.get('alwaysShowContent');
- var tooltipContent = this._tooltipContent;
- tooltipContent.update();
- tooltipContent.setEnterable(tooltipModel.get('enterable'));
-
- this._initGlobalListener();
-
- this._keepShow();
- },
- _initGlobalListener: function () {
- var tooltipModel = this._tooltipModel;
- var triggerOn = tooltipModel.get('triggerOn');
- globalListener.register('itemTooltip', this._api, bind(function (currTrigger, e, dispatchAction) {
- // If 'none', it is not controlled by mouse totally.
- if (triggerOn !== 'none') {
- if (triggerOn.indexOf(currTrigger) >= 0) {
- this._tryShow(e, dispatchAction);
- } else if (currTrigger === 'leave') {
- this._hide(dispatchAction);
- }
- }
- }, this));
- },
- _keepShow: function () {
- var tooltipModel = this._tooltipModel;
- var ecModel = this._ecModel;
- var api = this._api; // Try to keep the tooltip show when refreshing
-
- if (this._lastX != null && this._lastY != null // When user is willing to control tooltip totally using API,
- // self.manuallyShowTip({x, y}) might cause tooltip hide,
- // which is not expected.
- && tooltipModel.get('triggerOn') !== 'none') {
- var self = this;
- clearTimeout(this._refreshUpdateTimeout);
- this._refreshUpdateTimeout = setTimeout(function () {
- // Show tip next tick after other charts are rendered
- // In case highlight action has wrong result
- // FIXME
- !api.isDisposed() && self.manuallyShowTip(tooltipModel, ecModel, api, {
- x: self._lastX,
- y: self._lastY
- });
- });
- }
- },
-
- /**
- * Show tip manually by
- * dispatchAction({
- * type: 'showTip',
- * x: 10,
- * y: 10
- * });
- * Or
- * dispatchAction({
- * type: 'showTip',
- * seriesIndex: 0,
- * dataIndex or dataIndexInside or name
- * });
- *
- * TODO Batch
- */
- manuallyShowTip: function (tooltipModel, ecModel, api, payload) {
- if (payload.from === this.uid || env.node) {
- return;
- }
-
- var dispatchAction = makeDispatchAction(payload, api); // Reset ticket
-
- this._ticket = ''; // When triggered from axisPointer.
-
- var dataByCoordSys = payload.dataByCoordSys;
-
- if (payload.tooltip && payload.x != null && payload.y != null) {
- var el = proxyRect;
- el.position = [payload.x, payload.y];
- el.update();
- el.tooltip = payload.tooltip; // Manually show tooltip while view is not using zrender elements.
-
- this._tryShow({
- offsetX: payload.x,
- offsetY: payload.y,
- target: el
- }, dispatchAction);
- } else if (dataByCoordSys) {
- this._tryShow({
- offsetX: payload.x,
- offsetY: payload.y,
- position: payload.position,
- event: {},
- dataByCoordSys: payload.dataByCoordSys,
- tooltipOption: payload.tooltipOption
- }, dispatchAction);
- } else if (payload.seriesIndex != null) {
- if (this._manuallyAxisShowTip(tooltipModel, ecModel, api, payload)) {
- return;
- }
-
- var pointInfo = findPointFromSeries(payload, ecModel);
- var cx = pointInfo.point[0];
- var cy = pointInfo.point[1];
-
- if (cx != null && cy != null) {
- this._tryShow({
- offsetX: cx,
- offsetY: cy,
- position: payload.position,
- target: pointInfo.el,
- event: {}
- }, dispatchAction);
- }
- } else if (payload.x != null && payload.y != null) {
- // FIXME
- // should wrap dispatchAction like `axisPointer/globalListener` ?
- api.dispatchAction({
- type: 'updateAxisPointer',
- x: payload.x,
- y: payload.y
- });
-
- this._tryShow({
- offsetX: payload.x,
- offsetY: payload.y,
- position: payload.position,
- target: api.getZr().findHover(payload.x, payload.y).target,
- event: {}
- }, dispatchAction);
- }
- },
- manuallyHideTip: function (tooltipModel, ecModel, api, payload) {
- var tooltipContent = this._tooltipContent;
-
- if (!this._alwaysShowContent && this._tooltipModel) {
- tooltipContent.hideLater(this._tooltipModel.get('hideDelay'));
- }
-
- this._lastX = this._lastY = null;
-
- if (payload.from !== this.uid) {
- this._hide(makeDispatchAction(payload, api));
- }
- },
- // Be compatible with previous design, that is, when tooltip.type is 'axis' and
- // dispatchAction 'showTip' with seriesIndex and dataIndex will trigger axis pointer
- // and tooltip.
- _manuallyAxisShowTip: function (tooltipModel, ecModel, api, payload) {
- var seriesIndex = payload.seriesIndex;
- var dataIndex = payload.dataIndex;
- var coordSysAxesInfo = ecModel.getComponent('axisPointer').coordSysAxesInfo;
-
- if (seriesIndex == null || dataIndex == null || coordSysAxesInfo == null) {
- return;
- }
-
- var seriesModel = ecModel.getSeriesByIndex(seriesIndex);
-
- if (!seriesModel) {
- return;
- }
-
- var data = seriesModel.getData();
- var tooltipModel = buildTooltipModel([data.getItemModel(dataIndex), seriesModel, (seriesModel.coordinateSystem || {}).model, tooltipModel]);
-
- if (tooltipModel.get('trigger') !== 'axis') {
- return;
- }
-
- api.dispatchAction({
- type: 'updateAxisPointer',
- seriesIndex: seriesIndex,
- dataIndex: dataIndex,
- position: payload.position
- });
- return true;
- },
- _tryShow: function (e, dispatchAction) {
- var el = e.target;
- var tooltipModel = this._tooltipModel;
-
- if (!tooltipModel) {
- return;
- } // Save mouse x, mouse y. So we can try to keep showing the tip if chart is refreshed
-
-
- this._lastX = e.offsetX;
- this._lastY = e.offsetY;
- var dataByCoordSys = e.dataByCoordSys;
-
- if (dataByCoordSys && dataByCoordSys.length) {
- this._showAxisTooltip(dataByCoordSys, e);
- } // Always show item tooltip if mouse is on the element with dataIndex
- else if (el && el.dataIndex != null) {
- this._lastDataByCoordSys = null;
-
- this._showSeriesItemTooltip(e, el, dispatchAction);
- } // Tooltip provided directly. Like legend.
- else if (el && el.tooltip) {
- this._lastDataByCoordSys = null;
-
- this._showComponentItemTooltip(e, el, dispatchAction);
- } else {
- this._lastDataByCoordSys = null;
-
- this._hide(dispatchAction);
- }
- },
- _showOrMove: function (tooltipModel, cb) {
- // showDelay is used in this case: tooltip.enterable is set
- // as true. User intent to move mouse into tooltip and click
- // something. `showDelay` makes it easyer to enter the content
- // but tooltip do not move immediately.
- var delay = tooltipModel.get('showDelay');
- cb = zrUtil.bind(cb, this);
- clearTimeout(this._showTimout);
- delay > 0 ? this._showTimout = setTimeout(cb, delay) : cb();
- },
- _showAxisTooltip: function (dataByCoordSys, e) {
- var ecModel = this._ecModel;
- var globalTooltipModel = this._tooltipModel;
- var point = [e.offsetX, e.offsetY];
- var singleDefaultHTML = [];
- var singleParamsList = [];
- var singleTooltipModel = buildTooltipModel([e.tooltipOption, globalTooltipModel]);
- var renderMode = this._renderMode;
- var newLine = this._newLine;
- var markers = {};
- each(dataByCoordSys, function (itemCoordSys) {
- // var coordParamList = [];
- // var coordDefaultHTML = [];
- // var coordTooltipModel = buildTooltipModel([
- // e.tooltipOption,
- // itemCoordSys.tooltipOption,
- // ecModel.getComponent(itemCoordSys.coordSysMainType, itemCoordSys.coordSysIndex),
- // globalTooltipModel
- // ]);
- // var displayMode = coordTooltipModel.get('displayMode');
- // var paramsList = displayMode === 'single' ? singleParamsList : [];
- each(itemCoordSys.dataByAxis, function (item) {
- var axisModel = ecModel.getComponent(item.axisDim + 'Axis', item.axisIndex);
- var axisValue = item.value;
- var seriesDefaultHTML = [];
-
- if (!axisModel || axisValue == null) {
- return;
- }
-
- var valueLabel = axisPointerViewHelper.getValueLabel(axisValue, axisModel.axis, ecModel, item.seriesDataIndices, item.valueLabelOpt);
- zrUtil.each(item.seriesDataIndices, function (idxItem) {
- var series = ecModel.getSeriesByIndex(idxItem.seriesIndex);
- var dataIndex = idxItem.dataIndexInside;
- var dataParams = series && series.getDataParams(dataIndex);
- dataParams.axisDim = item.axisDim;
- dataParams.axisIndex = item.axisIndex;
- dataParams.axisType = item.axisType;
- dataParams.axisId = item.axisId;
- dataParams.axisValue = axisHelper.getAxisRawValue(axisModel.axis, axisValue);
- dataParams.axisValueLabel = valueLabel;
-
- if (dataParams) {
- singleParamsList.push(dataParams);
- var seriesTooltip = series.formatTooltip(dataIndex, true, null, renderMode);
- var html;
-
- if (zrUtil.isObject(seriesTooltip)) {
- html = seriesTooltip.html;
- var newMarkers = seriesTooltip.markers;
- zrUtil.merge(markers, newMarkers);
- } else {
- html = seriesTooltip;
- }
-
- seriesDefaultHTML.push(html);
- }
- }); // Default tooltip content
- // FIXME
- // (1) shold be the first data which has name?
- // (2) themeRiver, firstDataIndex is array, and first line is unnecessary.
-
- var firstLine = valueLabel;
-
- if (renderMode !== 'html') {
- singleDefaultHTML.push(seriesDefaultHTML.join(newLine));
- } else {
- singleDefaultHTML.push((firstLine ? formatUtil.encodeHTML(firstLine) + newLine : '') + seriesDefaultHTML.join(newLine));
- }
- });
- }, this); // In most case, the second axis is shown upper than the first one.
-
- singleDefaultHTML.reverse();
- singleDefaultHTML = singleDefaultHTML.join(this._newLine + this._newLine);
- var positionExpr = e.position;
-
- this._showOrMove(singleTooltipModel, function () {
- if (this._updateContentNotChangedOnAxis(dataByCoordSys)) {
- this._updatePosition(singleTooltipModel, positionExpr, point[0], point[1], this._tooltipContent, singleParamsList);
- } else {
- this._showTooltipContent(singleTooltipModel, singleDefaultHTML, singleParamsList, Math.random(), point[0], point[1], positionExpr, undefined, markers);
- }
- }); // Do not trigger events here, because this branch only be entered
- // from dispatchAction.
-
- },
- _showSeriesItemTooltip: function (e, el, dispatchAction) {
- var ecModel = this._ecModel; // Use dataModel in element if possible
- // Used when mouseover on a element like markPoint or edge
- // In which case, the data is not main data in series.
-
- var seriesIndex = el.seriesIndex;
- var seriesModel = ecModel.getSeriesByIndex(seriesIndex); // For example, graph link.
-
- var dataModel = el.dataModel || seriesModel;
- var dataIndex = el.dataIndex;
- var dataType = el.dataType;
- var data = dataModel.getData();
- var tooltipModel = buildTooltipModel([data.getItemModel(dataIndex), dataModel, seriesModel && (seriesModel.coordinateSystem || {}).model, this._tooltipModel]);
- var tooltipTrigger = tooltipModel.get('trigger');
-
- if (tooltipTrigger != null && tooltipTrigger !== 'item') {
- return;
- }
-
- var params = dataModel.getDataParams(dataIndex, dataType);
- var seriesTooltip = dataModel.formatTooltip(dataIndex, false, dataType, this._renderMode);
- var defaultHtml;
- var markers;
-
- if (zrUtil.isObject(seriesTooltip)) {
- defaultHtml = seriesTooltip.html;
- markers = seriesTooltip.markers;
- } else {
- defaultHtml = seriesTooltip;
- markers = null;
- }
-
- var asyncTicket = 'item_' + dataModel.name + '_' + dataIndex;
-
- this._showOrMove(tooltipModel, function () {
- this._showTooltipContent(tooltipModel, defaultHtml, params, asyncTicket, e.offsetX, e.offsetY, e.position, e.target, markers);
- }); // FIXME
- // duplicated showtip if manuallyShowTip is called from dispatchAction.
-
-
- dispatchAction({
- type: 'showTip',
- dataIndexInside: dataIndex,
- dataIndex: data.getRawIndex(dataIndex),
- seriesIndex: seriesIndex,
- from: this.uid
- });
- },
- _showComponentItemTooltip: function (e, el, dispatchAction) {
- var tooltipOpt = el.tooltip;
-
- if (typeof tooltipOpt === 'string') {
- var content = tooltipOpt;
- tooltipOpt = {
- content: content,
- // Fixed formatter
- formatter: content
- };
- }
-
- var subTooltipModel = new Model(tooltipOpt, this._tooltipModel, this._ecModel);
- var defaultHtml = subTooltipModel.get('content');
- var asyncTicket = Math.random(); // Do not check whether `trigger` is 'none' here, because `trigger`
- // only works on cooridinate system. In fact, we have not found case
- // that requires setting `trigger` nothing on component yet.
-
- this._showOrMove(subTooltipModel, function () {
- this._showTooltipContent(subTooltipModel, defaultHtml, subTooltipModel.get('formatterParams') || {}, asyncTicket, e.offsetX, e.offsetY, e.position, el);
- }); // If not dispatch showTip, tip may be hide triggered by axis.
-
-
- dispatchAction({
- type: 'showTip',
- from: this.uid
- });
- },
- _showTooltipContent: function (tooltipModel, defaultHtml, params, asyncTicket, x, y, positionExpr, el, markers) {
- // Reset ticket
- this._ticket = '';
-
- if (!tooltipModel.get('showContent') || !tooltipModel.get('show')) {
- return;
- }
-
- var tooltipContent = this._tooltipContent;
- var formatter = tooltipModel.get('formatter');
- positionExpr = positionExpr || tooltipModel.get('position');
- var html = defaultHtml;
-
- if (formatter && typeof formatter === 'string') {
- html = formatUtil.formatTpl(formatter, params, true);
- } else if (typeof formatter === 'function') {
- var callback = bind(function (cbTicket, html) {
- if (cbTicket === this._ticket) {
- tooltipContent.setContent(html, markers, tooltipModel);
-
- this._updatePosition(tooltipModel, positionExpr, x, y, tooltipContent, params, el);
- }
- }, this);
- this._ticket = asyncTicket;
- html = formatter(params, asyncTicket, callback);
- }
-
- tooltipContent.setContent(html, markers, tooltipModel);
- tooltipContent.show(tooltipModel);
-
- this._updatePosition(tooltipModel, positionExpr, x, y, tooltipContent, params, el);
- },
-
- /**
- * @param {string|Function|Array.<number>|Object} positionExpr
- * @param {number} x Mouse x
- * @param {number} y Mouse y
- * @param {boolean} confine Whether confine tooltip content in view rect.
- * @param {Object|<Array.<Object>} params
- * @param {module:zrender/Element} el target element
- * @param {module:echarts/ExtensionAPI} api
- * @return {Array.<number>}
- */
- _updatePosition: function (tooltipModel, positionExpr, x, y, content, params, el) {
- var viewWidth = this._api.getWidth();
-
- var viewHeight = this._api.getHeight();
-
- positionExpr = positionExpr || tooltipModel.get('position');
- var contentSize = content.getSize();
- var align = tooltipModel.get('align');
- var vAlign = tooltipModel.get('verticalAlign');
- var rect = el && el.getBoundingRect().clone();
- el && rect.applyTransform(el.transform);
-
- if (typeof positionExpr === 'function') {
- // Callback of position can be an array or a string specify the position
- positionExpr = positionExpr([x, y], params, content.el, rect, {
- viewSize: [viewWidth, viewHeight],
- contentSize: contentSize.slice()
- });
- }
-
- if (zrUtil.isArray(positionExpr)) {
- x = parsePercent(positionExpr[0], viewWidth);
- y = parsePercent(positionExpr[1], viewHeight);
- } else if (zrUtil.isObject(positionExpr)) {
- positionExpr.width = contentSize[0];
- positionExpr.height = contentSize[1];
- var layoutRect = layoutUtil.getLayoutRect(positionExpr, {
- width: viewWidth,
- height: viewHeight
- });
- x = layoutRect.x;
- y = layoutRect.y;
- align = null; // When positionExpr is left/top/right/bottom,
- // align and verticalAlign will not work.
-
- vAlign = null;
- } // Specify tooltip position by string 'top' 'bottom' 'left' 'right' around graphic element
- else if (typeof positionExpr === 'string' && el) {
- var pos = calcTooltipPosition(positionExpr, rect, contentSize);
- x = pos[0];
- y = pos[1];
- } else {
- var pos = refixTooltipPosition(x, y, content, viewWidth, viewHeight, align ? null : 20, vAlign ? null : 20);
- x = pos[0];
- y = pos[1];
- }
-
- align && (x -= isCenterAlign(align) ? contentSize[0] / 2 : align === 'right' ? contentSize[0] : 0);
- vAlign && (y -= isCenterAlign(vAlign) ? contentSize[1] / 2 : vAlign === 'bottom' ? contentSize[1] : 0);
-
- if (tooltipModel.get('confine')) {
- var pos = confineTooltipPosition(x, y, content, viewWidth, viewHeight);
- x = pos[0];
- y = pos[1];
- }
-
- content.moveTo(x, y);
- },
- // FIXME
- // Should we remove this but leave this to user?
- _updateContentNotChangedOnAxis: function (dataByCoordSys) {
- var lastCoordSys = this._lastDataByCoordSys;
- var contentNotChanged = !!lastCoordSys && lastCoordSys.length === dataByCoordSys.length;
- contentNotChanged && each(lastCoordSys, function (lastItemCoordSys, indexCoordSys) {
- var lastDataByAxis = lastItemCoordSys.dataByAxis || {};
- var thisItemCoordSys = dataByCoordSys[indexCoordSys] || {};
- var thisDataByAxis = thisItemCoordSys.dataByAxis || [];
- contentNotChanged &= lastDataByAxis.length === thisDataByAxis.length;
- contentNotChanged && each(lastDataByAxis, function (lastItem, indexAxis) {
- var thisItem = thisDataByAxis[indexAxis] || {};
- var lastIndices = lastItem.seriesDataIndices || [];
- var newIndices = thisItem.seriesDataIndices || [];
- contentNotChanged &= lastItem.value === thisItem.value && lastItem.axisType === thisItem.axisType && lastItem.axisId === thisItem.axisId && lastIndices.length === newIndices.length;
- contentNotChanged && each(lastIndices, function (lastIdxItem, j) {
- var newIdxItem = newIndices[j];
- contentNotChanged &= lastIdxItem.seriesIndex === newIdxItem.seriesIndex && lastIdxItem.dataIndex === newIdxItem.dataIndex;
- });
- });
- });
- this._lastDataByCoordSys = dataByCoordSys;
- return !!contentNotChanged;
- },
- _hide: function (dispatchAction) {
- // Do not directly hideLater here, because this behavior may be prevented
- // in dispatchAction when showTip is dispatched.
- // FIXME
- // duplicated hideTip if manuallyHideTip is called from dispatchAction.
- this._lastDataByCoordSys = null;
- dispatchAction({
- type: 'hideTip',
- from: this.uid
- });
- },
- dispose: function (ecModel, api) {
- if (env.node) {
- return;
- }
-
- this._tooltipContent.hide();
-
- globalListener.unregister('itemTooltip', api);
- }
- });
- /**
- * @param {Array.<Object|module:echarts/model/Model>} modelCascade
- * From top to bottom. (the last one should be globalTooltipModel);
- */
-
-
- function buildTooltipModel(modelCascade) {
- var resultModel = modelCascade.pop();
-
- while (modelCascade.length) {
- var tooltipOpt = modelCascade.pop();
-
- if (tooltipOpt) {
- if (Model.isInstance(tooltipOpt)) {
- tooltipOpt = tooltipOpt.get('tooltip', true);
- } // In each data item tooltip can be simply write:
- // {
- // value: 10,
- // tooltip: 'Something you need to know'
- // }
-
-
- if (typeof tooltipOpt === 'string') {
- tooltipOpt = {
- formatter: tooltipOpt
- };
- }
-
- resultModel = new Model(tooltipOpt, resultModel, resultModel.ecModel);
- }
- }
-
- return resultModel;
- }
-
- function makeDispatchAction(payload, api) {
- return payload.dispatchAction || zrUtil.bind(api.dispatchAction, api);
- }
-
- function refixTooltipPosition(x, y, content, viewWidth, viewHeight, gapH, gapV) {
- var size = content.getOuterSize();
- var width = size.width;
- var height = size.height;
-
- if (gapH != null) {
- if (x + width + gapH > viewWidth) {
- x -= width + gapH;
- } else {
- x += gapH;
- }
- }
-
- if (gapV != null) {
- if (y + height + gapV > viewHeight) {
- y -= height + gapV;
- } else {
- y += gapV;
- }
- }
-
- return [x, y];
- }
-
- function confineTooltipPosition(x, y, content, viewWidth, viewHeight) {
- var size = content.getOuterSize();
- var width = size.width;
- var height = size.height;
- x = Math.min(x + width, viewWidth) - width;
- y = Math.min(y + height, viewHeight) - height;
- x = Math.max(x, 0);
- y = Math.max(y, 0);
- return [x, y];
- }
-
- function calcTooltipPosition(position, rect, contentSize) {
- var domWidth = contentSize[0];
- var domHeight = contentSize[1];
- var gap = 5;
- var x = 0;
- var y = 0;
- var rectWidth = rect.width;
- var rectHeight = rect.height;
-
- switch (position) {
- case 'inside':
- x = rect.x + rectWidth / 2 - domWidth / 2;
- y = rect.y + rectHeight / 2 - domHeight / 2;
- break;
-
- case 'top':
- x = rect.x + rectWidth / 2 - domWidth / 2;
- y = rect.y - domHeight - gap;
- break;
-
- case 'bottom':
- x = rect.x + rectWidth / 2 - domWidth / 2;
- y = rect.y + rectHeight + gap;
- break;
-
- case 'left':
- x = rect.x - domWidth - gap;
- y = rect.y + rectHeight / 2 - domHeight / 2;
- break;
-
- case 'right':
- x = rect.x + rectWidth + gap;
- y = rect.y + rectHeight / 2 - domHeight / 2;
- }
-
- return [x, y];
- }
-
- function isCenterAlign(align) {
- return align === 'center' || align === 'middle';
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2748:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var zrColor = __webpack_require__(1438);
-
- var eventUtil = __webpack_require__(1437);
-
- var env = __webpack_require__(1316);
-
- var formatUtil = __webpack_require__(1186);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var each = zrUtil.each;
- var toCamelCase = formatUtil.toCamelCase;
- var vendors = ['', '-webkit-', '-moz-', '-o-'];
- var gCssText = 'position:absolute;display:block;border-style:solid;white-space:nowrap;z-index:9999999;';
- /**
- * @param {number} duration
- * @return {string}
- * @inner
- */
-
- function assembleTransition(duration) {
- var transitionCurve = 'cubic-bezier(0.23, 1, 0.32, 1)';
- var transitionText = 'left ' + duration + 's ' + transitionCurve + ',' + 'top ' + duration + 's ' + transitionCurve;
- return zrUtil.map(vendors, function (vendorPrefix) {
- return vendorPrefix + 'transition:' + transitionText;
- }).join(';');
- }
- /**
- * @param {Object} textStyle
- * @return {string}
- * @inner
- */
-
-
- function assembleFont(textStyleModel) {
- var cssText = [];
- var fontSize = textStyleModel.get('fontSize');
- var color = textStyleModel.getTextColor();
- color && cssText.push('color:' + color);
- cssText.push('font:' + textStyleModel.getFont());
- fontSize && cssText.push('line-height:' + Math.round(fontSize * 3 / 2) + 'px');
- each(['decoration', 'align'], function (name) {
- var val = textStyleModel.get(name);
- val && cssText.push('text-' + name + ':' + val);
- });
- return cssText.join(';');
- }
- /**
- * @param {Object} tooltipModel
- * @return {string}
- * @inner
- */
-
-
- function assembleCssText(tooltipModel) {
- var cssText = [];
- var transitionDuration = tooltipModel.get('transitionDuration');
- var backgroundColor = tooltipModel.get('backgroundColor');
- var textStyleModel = tooltipModel.getModel('textStyle');
- var padding = tooltipModel.get('padding'); // Animation transition. Do not animate when transitionDuration is 0.
-
- transitionDuration && cssText.push(assembleTransition(transitionDuration));
-
- if (backgroundColor) {
- if (env.canvasSupported) {
- cssText.push('background-Color:' + backgroundColor);
- } else {
- // for ie
- cssText.push('background-Color:#' + zrColor.toHex(backgroundColor));
- cssText.push('filter:alpha(opacity=70)');
- }
- } // Border style
-
-
- each(['width', 'color', 'radius'], function (name) {
- var borderName = 'border-' + name;
- var camelCase = toCamelCase(borderName);
- var val = tooltipModel.get(camelCase);
- val != null && cssText.push(borderName + ':' + val + (name === 'color' ? '' : 'px'));
- }); // Text style
-
- cssText.push(assembleFont(textStyleModel)); // Padding
-
- if (padding != null) {
- cssText.push('padding:' + formatUtil.normalizeCssArray(padding).join('px ') + 'px');
- }
-
- return cssText.join(';') + ';';
- }
- /**
- * @alias module:echarts/component/tooltip/TooltipContent
- * @constructor
- */
-
-
- function TooltipContent(container, api) {
- if (env.wxa) {
- return null;
- }
-
- var el = document.createElement('div');
- var zr = this._zr = api.getZr();
- this.el = el;
- this._x = api.getWidth() / 2;
- this._y = api.getHeight() / 2;
- container.appendChild(el);
- this._container = container;
- this._show = false;
- /**
- * @private
- */
-
- this._hideTimeout; // FIXME
- // Is it needed to trigger zr event manually if
- // the browser do not support `pointer-events: none`.
-
- var self = this;
-
- el.onmouseenter = function () {
- // clear the timeout in hideLater and keep showing tooltip
- if (self._enterable) {
- clearTimeout(self._hideTimeout);
- self._show = true;
- }
-
- self._inContent = true;
- };
-
- el.onmousemove = function (e) {
- e = e || window.event;
-
- if (!self._enterable) {
- // `pointer-events: none` is set to tooltip content div
- // if `enterable` is set as `false`, and `el.onmousemove`
- // can not be triggered. But in browser that do not
- // support `pointer-events`, we need to do this:
- // Try trigger zrender event to avoid mouse
- // in and out shape too frequently
- var handler = zr.handler;
- eventUtil.normalizeEvent(container, e, true);
- handler.dispatch('mousemove', e);
- }
- };
-
- el.onmouseleave = function () {
- if (self._enterable) {
- if (self._show) {
- self.hideLater(self._hideDelay);
- }
- }
-
- self._inContent = false;
- };
- }
-
- TooltipContent.prototype = {
- constructor: TooltipContent,
-
- /**
- * @private
- * @type {boolean}
- */
- _enterable: true,
-
- /**
- * Update when tooltip is rendered
- */
- update: function () {
- // FIXME
- // Move this logic to ec main?
- var container = this._container;
- var stl = container.currentStyle || document.defaultView.getComputedStyle(container);
- var domStyle = container.style;
-
- if (domStyle.position !== 'absolute' && stl.position !== 'absolute') {
- domStyle.position = 'relative';
- } // Hide the tooltip
- // PENDING
- // this.hide();
-
- },
- show: function (tooltipModel) {
- clearTimeout(this._hideTimeout);
- var el = this.el;
- el.style.cssText = gCssText + assembleCssText(tooltipModel) // Because of the reason described in:
- // http://stackoverflow.com/questions/21125587/css3-transition-not-working-in-chrome-anymore
- // we should set initial value to `left` and `top`.
- + ';left:' + this._x + 'px;top:' + this._y + 'px;' + (tooltipModel.get('extraCssText') || '');
- el.style.display = el.innerHTML ? 'block' : 'none'; // If mouse occsionally move over the tooltip, a mouseout event will be
- // triggered by canvas, and cuase some unexpectable result like dragging
- // stop, "unfocusAdjacency". Here `pointer-events: none` is used to solve
- // it. Although it is not suppored by IE8~IE10, fortunately it is a rare
- // scenario.
-
- el.style.pointerEvents = this._enterable ? 'auto' : 'none';
- this._show = true;
- },
- setContent: function (content) {
- this.el.innerHTML = content == null ? '' : content;
- },
- setEnterable: function (enterable) {
- this._enterable = enterable;
- },
- getSize: function () {
- var el = this.el;
- return [el.clientWidth, el.clientHeight];
- },
- moveTo: function (x, y) {
- // xy should be based on canvas root. But tooltipContent is
- // the sibling of canvas root. So padding of ec container
- // should be considered here.
- var zr = this._zr;
- var viewportRootOffset;
-
- if (zr && zr.painter && (viewportRootOffset = zr.painter.getViewportRootOffset())) {
- x += viewportRootOffset.offsetLeft;
- y += viewportRootOffset.offsetTop;
- }
-
- var style = this.el.style;
- style.left = x + 'px';
- style.top = y + 'px';
- this._x = x;
- this._y = y;
- },
- hide: function () {
- this.el.style.display = 'none';
- this._show = false;
- },
- hideLater: function (time) {
- if (this._show && !(this._inContent && this._enterable)) {
- if (time) {
- this._hideDelay = time; // Set show false to avoid invoke hideLater mutiple times
-
- this._show = false;
- this._hideTimeout = setTimeout(zrUtil.bind(this.hide, this), time);
- } else {
- this.hide();
- }
- }
- },
- isShow: function () {
- return this._show;
- },
- getOuterSize: function () {
- var width = this.el.clientWidth;
- var height = this.el.clientHeight; // Consider browser compatibility.
- // IE8 does not support getComputedStyle.
-
- if (document.defaultView && document.defaultView.getComputedStyle) {
- var stl = document.defaultView.getComputedStyle(this.el);
-
- if (stl) {
- width += parseInt(stl.borderLeftWidth, 10) + parseInt(stl.borderRightWidth, 10);
- height += parseInt(stl.borderTopWidth, 10) + parseInt(stl.borderBottomWidth, 10);
- }
- }
-
- return {
- width: width,
- height: height
- };
- }
- };
- var _default = TooltipContent;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2749:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var Text = __webpack_require__(1517);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // import Group from 'zrender/src/container/Group';
-
- /**
- * @alias module:echarts/component/tooltip/TooltipRichContent
- * @constructor
- */
- function TooltipRichContent(api) {
- this._zr = api.getZr();
- this._show = false;
- /**
- * @private
- */
-
- this._hideTimeout;
- }
-
- TooltipRichContent.prototype = {
- constructor: TooltipRichContent,
-
- /**
- * @private
- * @type {boolean}
- */
- _enterable: true,
-
- /**
- * Update when tooltip is rendered
- */
- update: function () {// noop
- },
- show: function (tooltipModel) {
- if (this._hideTimeout) {
- clearTimeout(this._hideTimeout);
- }
-
- this.el.attr('show', true);
- this._show = true;
- },
-
- /**
- * Set tooltip content
- *
- * @param {string} content rich text string of content
- * @param {Object} markerRich rich text style
- * @param {Object} tooltipModel tooltip model
- */
- setContent: function (content, markerRich, tooltipModel) {
- if (this.el) {
- this._zr.remove(this.el);
- }
-
- var markers = {};
- var text = content;
- var prefix = '{marker';
- var suffix = '|}';
- var startId = text.indexOf(prefix);
-
- while (startId >= 0) {
- var endId = text.indexOf(suffix);
- var name = text.substr(startId + prefix.length, endId - startId - prefix.length);
-
- if (name.indexOf('sub') > -1) {
- markers['marker' + name] = {
- textWidth: 4,
- textHeight: 4,
- textBorderRadius: 2,
- textBackgroundColor: markerRich[name],
- // TODO: textOffset is not implemented for rich text
- textOffset: [3, 0]
- };
- } else {
- markers['marker' + name] = {
- textWidth: 10,
- textHeight: 10,
- textBorderRadius: 5,
- textBackgroundColor: markerRich[name]
- };
- }
-
- text = text.substr(endId + 1);
- startId = text.indexOf('{marker');
- }
-
- this.el = new Text({
- style: {
- rich: markers,
- text: content,
- textLineHeight: 20,
- textBackgroundColor: tooltipModel.get('backgroundColor'),
- textBorderRadius: tooltipModel.get('borderRadius'),
- textFill: tooltipModel.get('textStyle.color'),
- textPadding: tooltipModel.get('padding')
- },
- z: tooltipModel.get('z')
- });
-
- this._zr.add(this.el);
-
- var self = this;
- this.el.on('mouseover', function () {
- // clear the timeout in hideLater and keep showing tooltip
- if (self._enterable) {
- clearTimeout(self._hideTimeout);
- self._show = true;
- }
-
- self._inContent = true;
- });
- this.el.on('mouseout', function () {
- if (self._enterable) {
- if (self._show) {
- self.hideLater(self._hideDelay);
- }
- }
-
- self._inContent = false;
- });
- },
- setEnterable: function (enterable) {
- this._enterable = enterable;
- },
- getSize: function () {
- var bounding = this.el.getBoundingRect();
- return [bounding.width, bounding.height];
- },
- moveTo: function (x, y) {
- if (this.el) {
- this.el.attr('position', [x, y]);
- }
- },
- hide: function () {
- if (this.el) {
- this.el.hide();
- }
-
- this._show = false;
- },
- hideLater: function (time) {
- if (this._show && !(this._inContent && this._enterable)) {
- if (time) {
- this._hideDelay = time; // Set show false to avoid invoke hideLater mutiple times
-
- this._show = false;
- this._hideTimeout = setTimeout(zrUtil.bind(this.hide, this), time);
- } else {
- this.hide();
- }
- }
- },
- isShow: function () {
- return this._show;
- },
- getOuterSize: function () {
- var size = this.getSize();
- return {
- width: size[0],
- height: size[1]
- };
- }
- };
- var _default = TooltipRichContent;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2750:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var preprocessor = __webpack_require__(2751);
-
- __webpack_require__(2752);
-
- __webpack_require__(2754);
-
- __webpack_require__(2755);
-
- __webpack_require__(2756);
-
- __webpack_require__(2757);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Brush component entry
- */
- echarts.registerPreprocessor(preprocessor);
-
- /***/ }),
-
- /***/ 2751:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var DEFAULT_TOOLBOX_BTNS = ['rect', 'polygon', 'keep', 'clear'];
-
- function _default(option, isNew) {
- var brushComponents = option && option.brush;
-
- if (!zrUtil.isArray(brushComponents)) {
- brushComponents = brushComponents ? [brushComponents] : [];
- }
-
- if (!brushComponents.length) {
- return;
- }
-
- var brushComponentSpecifiedBtns = [];
- zrUtil.each(brushComponents, function (brushOpt) {
- var tbs = brushOpt.hasOwnProperty('toolbox') ? brushOpt.toolbox : [];
-
- if (tbs instanceof Array) {
- brushComponentSpecifiedBtns = brushComponentSpecifiedBtns.concat(tbs);
- }
- });
- var toolbox = option && option.toolbox;
-
- if (zrUtil.isArray(toolbox)) {
- toolbox = toolbox[0];
- }
-
- if (!toolbox) {
- toolbox = {
- feature: {}
- };
- option.toolbox = [toolbox];
- }
-
- var toolboxFeature = toolbox.feature || (toolbox.feature = {});
- var toolboxBrush = toolboxFeature.brush || (toolboxFeature.brush = {});
- var brushTypes = toolboxBrush.type || (toolboxBrush.type = []);
- brushTypes.push.apply(brushTypes, brushComponentSpecifiedBtns);
- removeDuplicate(brushTypes);
-
- if (isNew && !brushTypes.length) {
- brushTypes.push.apply(brushTypes, DEFAULT_TOOLBOX_BTNS);
- }
- }
-
- function removeDuplicate(arr) {
- var map = {};
- zrUtil.each(arr, function (val) {
- map[val] = 1;
- });
- arr.length = 0;
- zrUtil.each(map, function (flag, val) {
- arr.push(val);
- });
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2752:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var BoundingRect = __webpack_require__(1185);
-
- var visualSolution = __webpack_require__(1797);
-
- var selector = __webpack_require__(2753);
-
- var throttleUtil = __webpack_require__(1482);
-
- var BrushTargetManager = __webpack_require__(2322);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var STATE_LIST = ['inBrush', 'outOfBrush'];
- var DISPATCH_METHOD = '__ecBrushSelect';
- var DISPATCH_FLAG = '__ecInBrushSelectEvent';
- var PRIORITY_BRUSH = echarts.PRIORITY.VISUAL.BRUSH;
- /**
- * Layout for visual, the priority higher than other layout, and before brush visual.
- */
-
- echarts.registerLayout(PRIORITY_BRUSH, function (ecModel, api, payload) {
- ecModel.eachComponent({
- mainType: 'brush'
- }, function (brushModel) {
- payload && payload.type === 'takeGlobalCursor' && brushModel.setBrushOption(payload.key === 'brush' ? payload.brushOption : {
- brushType: false
- });
- var brushTargetManager = brushModel.brushTargetManager = new BrushTargetManager(brushModel.option, ecModel);
- brushTargetManager.setInputRanges(brushModel.areas, ecModel);
- });
- });
- /**
- * Register the visual encoding if this modules required.
- */
-
- echarts.registerVisual(PRIORITY_BRUSH, function (ecModel, api, payload) {
- var brushSelected = [];
- var throttleType;
- var throttleDelay;
- ecModel.eachComponent({
- mainType: 'brush'
- }, function (brushModel, brushIndex) {
- var thisBrushSelected = {
- brushId: brushModel.id,
- brushIndex: brushIndex,
- brushName: brushModel.name,
- areas: zrUtil.clone(brushModel.areas),
- selected: []
- }; // Every brush component exists in event params, convenient
- // for user to find by index.
-
- brushSelected.push(thisBrushSelected);
- var brushOption = brushModel.option;
- var brushLink = brushOption.brushLink;
- var linkedSeriesMap = [];
- var selectedDataIndexForLink = [];
- var rangeInfoBySeries = [];
- var hasBrushExists = 0;
-
- if (!brushIndex) {
- // Only the first throttle setting works.
- throttleType = brushOption.throttleType;
- throttleDelay = brushOption.throttleDelay;
- } // Add boundingRect and selectors to range.
-
-
- var areas = zrUtil.map(brushModel.areas, function (area) {
- return bindSelector(zrUtil.defaults({
- boundingRect: boundingRectBuilders[area.brushType](area)
- }, area));
- });
- var visualMappings = visualSolution.createVisualMappings(brushModel.option, STATE_LIST, function (mappingOption) {
- mappingOption.mappingMethod = 'fixed';
- });
- zrUtil.isArray(brushLink) && zrUtil.each(brushLink, function (seriesIndex) {
- linkedSeriesMap[seriesIndex] = 1;
- });
-
- function linkOthers(seriesIndex) {
- return brushLink === 'all' || linkedSeriesMap[seriesIndex];
- } // If no supported brush or no brush on the series,
- // all visuals should be in original state.
-
-
- function brushed(rangeInfoList) {
- return !!rangeInfoList.length;
- }
- /**
- * Logic for each series: (If the logic has to be modified one day, do it carefully!)
- *
- * ( brushed ┬ && ┬hasBrushExist ┬ && linkOthers ) => StepA: ┬record, ┬ StepB: ┬visualByRecord.
- * !brushed┘ ├hasBrushExist ┤ └nothing,┘ ├visualByRecord.
- * └!hasBrushExist┘ └nothing.
- * ( !brushed && ┬hasBrushExist ┬ && linkOthers ) => StepA: nothing, StepB: ┬visualByRecord.
- * └!hasBrushExist┘ └nothing.
- * ( brushed ┬ && !linkOthers ) => StepA: nothing, StepB: ┬visualByCheck.
- * !brushed┘ └nothing.
- * ( !brushed && !linkOthers ) => StepA: nothing, StepB: nothing.
- */
- // Step A
-
-
- ecModel.eachSeries(function (seriesModel, seriesIndex) {
- var rangeInfoList = rangeInfoBySeries[seriesIndex] = [];
- seriesModel.subType === 'parallel' ? stepAParallel(seriesModel, seriesIndex, rangeInfoList) : stepAOthers(seriesModel, seriesIndex, rangeInfoList);
- });
-
- function stepAParallel(seriesModel, seriesIndex) {
- var coordSys = seriesModel.coordinateSystem;
- hasBrushExists |= coordSys.hasAxisBrushed();
- linkOthers(seriesIndex) && coordSys.eachActiveState(seriesModel.getData(), function (activeState, dataIndex) {
- activeState === 'active' && (selectedDataIndexForLink[dataIndex] = 1);
- });
- }
-
- function stepAOthers(seriesModel, seriesIndex, rangeInfoList) {
- var selectorsByBrushType = getSelectorsByBrushType(seriesModel);
-
- if (!selectorsByBrushType || brushModelNotControll(brushModel, seriesIndex)) {
- return;
- }
-
- zrUtil.each(areas, function (area) {
- selectorsByBrushType[area.brushType] && brushModel.brushTargetManager.controlSeries(area, seriesModel, ecModel) && rangeInfoList.push(area);
- hasBrushExists |= brushed(rangeInfoList);
- });
-
- if (linkOthers(seriesIndex) && brushed(rangeInfoList)) {
- var data = seriesModel.getData();
- data.each(function (dataIndex) {
- if (checkInRange(selectorsByBrushType, rangeInfoList, data, dataIndex)) {
- selectedDataIndexForLink[dataIndex] = 1;
- }
- });
- }
- } // Step B
-
-
- ecModel.eachSeries(function (seriesModel, seriesIndex) {
- var seriesBrushSelected = {
- seriesId: seriesModel.id,
- seriesIndex: seriesIndex,
- seriesName: seriesModel.name,
- dataIndex: []
- }; // Every series exists in event params, convenient
- // for user to find series by seriesIndex.
-
- thisBrushSelected.selected.push(seriesBrushSelected);
- var selectorsByBrushType = getSelectorsByBrushType(seriesModel);
- var rangeInfoList = rangeInfoBySeries[seriesIndex];
- var data = seriesModel.getData();
- var getValueState = linkOthers(seriesIndex) ? function (dataIndex) {
- return selectedDataIndexForLink[dataIndex] ? (seriesBrushSelected.dataIndex.push(data.getRawIndex(dataIndex)), 'inBrush') : 'outOfBrush';
- } : function (dataIndex) {
- return checkInRange(selectorsByBrushType, rangeInfoList, data, dataIndex) ? (seriesBrushSelected.dataIndex.push(data.getRawIndex(dataIndex)), 'inBrush') : 'outOfBrush';
- }; // If no supported brush or no brush, all visuals are in original state.
-
- (linkOthers(seriesIndex) ? hasBrushExists : brushed(rangeInfoList)) && visualSolution.applyVisual(STATE_LIST, visualMappings, data, getValueState);
- });
- });
- dispatchAction(api, throttleType, throttleDelay, brushSelected, payload);
- });
-
- function dispatchAction(api, throttleType, throttleDelay, brushSelected, payload) {
- // This event will not be triggered when `setOpion`, otherwise dead lock may
- // triggered when do `setOption` in event listener, which we do not find
- // satisfactory way to solve yet. Some considered resolutions:
- // (a) Diff with prevoius selected data ant only trigger event when changed.
- // But store previous data and diff precisely (i.e., not only by dataIndex, but
- // also detect value changes in selected data) might bring complexity or fragility.
- // (b) Use spectial param like `silent` to suppress event triggering.
- // But such kind of volatile param may be weird in `setOption`.
- if (!payload) {
- return;
- }
-
- var zr = api.getZr();
-
- if (zr[DISPATCH_FLAG]) {
- return;
- }
-
- if (!zr[DISPATCH_METHOD]) {
- zr[DISPATCH_METHOD] = doDispatch;
- }
-
- var fn = throttleUtil.createOrUpdate(zr, DISPATCH_METHOD, throttleDelay, throttleType);
- fn(api, brushSelected);
- }
-
- function doDispatch(api, brushSelected) {
- if (!api.isDisposed()) {
- var zr = api.getZr();
- zr[DISPATCH_FLAG] = true;
- api.dispatchAction({
- type: 'brushSelect',
- batch: brushSelected
- });
- zr[DISPATCH_FLAG] = false;
- }
- }
-
- function checkInRange(selectorsByBrushType, rangeInfoList, data, dataIndex) {
- for (var i = 0, len = rangeInfoList.length; i < len; i++) {
- var area = rangeInfoList[i];
-
- if (selectorsByBrushType[area.brushType](dataIndex, data, area.selectors, area)) {
- return true;
- }
- }
- }
-
- function getSelectorsByBrushType(seriesModel) {
- var brushSelector = seriesModel.brushSelector;
-
- if (zrUtil.isString(brushSelector)) {
- var sels = [];
- zrUtil.each(selector, function (selectorsByElementType, brushType) {
- sels[brushType] = function (dataIndex, data, selectors, area) {
- var itemLayout = data.getItemLayout(dataIndex);
- return selectorsByElementType[brushSelector](itemLayout, selectors, area);
- };
- });
- return sels;
- } else if (zrUtil.isFunction(brushSelector)) {
- var bSelector = {};
- zrUtil.each(selector, function (sel, brushType) {
- bSelector[brushType] = brushSelector;
- });
- return bSelector;
- }
-
- return brushSelector;
- }
-
- function brushModelNotControll(brushModel, seriesIndex) {
- var seriesIndices = brushModel.option.seriesIndex;
- return seriesIndices != null && seriesIndices !== 'all' && (zrUtil.isArray(seriesIndices) ? zrUtil.indexOf(seriesIndices, seriesIndex) < 0 : seriesIndex !== seriesIndices);
- }
-
- function bindSelector(area) {
- var selectors = area.selectors = {};
- zrUtil.each(selector[area.brushType], function (selFn, elType) {
- // Do not use function binding or curry for performance.
- selectors[elType] = function (itemLayout) {
- return selFn(itemLayout, selectors, area);
- };
- });
- return area;
- }
-
- var boundingRectBuilders = {
- lineX: zrUtil.noop,
- lineY: zrUtil.noop,
- rect: function (area) {
- return getBoundingRectFromMinMax(area.range);
- },
- polygon: function (area) {
- var minMax;
- var range = area.range;
-
- for (var i = 0, len = range.length; i < len; i++) {
- minMax = minMax || [[Infinity, -Infinity], [Infinity, -Infinity]];
- var rg = range[i];
- rg[0] < minMax[0][0] && (minMax[0][0] = rg[0]);
- rg[0] > minMax[0][1] && (minMax[0][1] = rg[0]);
- rg[1] < minMax[1][0] && (minMax[1][0] = rg[1]);
- rg[1] > minMax[1][1] && (minMax[1][1] = rg[1]);
- }
-
- return minMax && getBoundingRectFromMinMax(minMax);
- }
- };
-
- function getBoundingRectFromMinMax(minMax) {
- return new BoundingRect(minMax[0][0], minMax[1][0], minMax[0][1] - minMax[0][0], minMax[1][1] - minMax[1][0]);
- }
-
- /***/ }),
-
- /***/ 2753:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var polygonContain = __webpack_require__(2291);
-
- var BoundingRect = __webpack_require__(1185);
-
- var _graphic = __webpack_require__(906);
-
- var linePolygonIntersect = _graphic.linePolygonIntersect;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // Key of the first level is brushType: `line`, `rect`, `polygon`.
- // Key of the second level is chart element type: `point`, `rect`.
- // See moudule:echarts/component/helper/BrushController
- // function param:
- // {Object} itemLayout fetch from data.getItemLayout(dataIndex)
- // {Object} selectors {point: selector, rect: selector, ...}
- // {Object} area {range: [[], [], ..], boudingRect}
- // function return:
- // {boolean} Whether in the given brush.
- var selector = {
- lineX: getLineSelectors(0),
- lineY: getLineSelectors(1),
- rect: {
- point: function (itemLayout, selectors, area) {
- return itemLayout && area.boundingRect.contain(itemLayout[0], itemLayout[1]);
- },
- rect: function (itemLayout, selectors, area) {
- return itemLayout && area.boundingRect.intersect(itemLayout);
- }
- },
- polygon: {
- point: function (itemLayout, selectors, area) {
- return itemLayout && area.boundingRect.contain(itemLayout[0], itemLayout[1]) && polygonContain.contain(area.range, itemLayout[0], itemLayout[1]);
- },
- rect: function (itemLayout, selectors, area) {
- var points = area.range;
-
- if (!itemLayout || points.length <= 1) {
- return false;
- }
-
- var x = itemLayout.x;
- var y = itemLayout.y;
- var width = itemLayout.width;
- var height = itemLayout.height;
- var p = points[0];
-
- if (polygonContain.contain(points, x, y) || polygonContain.contain(points, x + width, y) || polygonContain.contain(points, x, y + height) || polygonContain.contain(points, x + width, y + height) || BoundingRect.create(itemLayout).contain(p[0], p[1]) || linePolygonIntersect(x, y, x + width, y, points) || linePolygonIntersect(x, y, x, y + height, points) || linePolygonIntersect(x + width, y, x + width, y + height, points) || linePolygonIntersect(x, y + height, x + width, y + height, points)) {
- return true;
- }
- }
- }
- };
-
- function getLineSelectors(xyIndex) {
- var xy = ['x', 'y'];
- var wh = ['width', 'height'];
- return {
- point: function (itemLayout, selectors, area) {
- if (itemLayout) {
- var range = area.range;
- var p = itemLayout[xyIndex];
- return inLineRange(p, range);
- }
- },
- rect: function (itemLayout, selectors, area) {
- if (itemLayout) {
- var range = area.range;
- var layoutRange = [itemLayout[xy[xyIndex]], itemLayout[xy[xyIndex]] + itemLayout[wh[xyIndex]]];
- layoutRange[1] < layoutRange[0] && layoutRange.reverse();
- return inLineRange(layoutRange[0], range) || inLineRange(layoutRange[1], range) || inLineRange(range[0], layoutRange) || inLineRange(range[1], layoutRange);
- }
- }
- };
- }
-
- function inLineRange(p, range) {
- return range[0] <= p && p <= range[1];
- }
-
- var _default = selector;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2754:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var visualSolution = __webpack_require__(1797);
-
- var Model = __webpack_require__(1317);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var DEFAULT_OUT_OF_BRUSH_COLOR = ['#ddd'];
- var BrushModel = echarts.extendComponentModel({
- type: 'brush',
- dependencies: ['geo', 'grid', 'xAxis', 'yAxis', 'parallel', 'series'],
-
- /**
- * @protected
- */
- defaultOption: {
- // inBrush: null,
- // outOfBrush: null,
- toolbox: null,
- // Default value see preprocessor.
- brushLink: null,
- // Series indices array, broadcast using dataIndex.
- // or 'all', which means all series. 'none' or null means no series.
- seriesIndex: 'all',
- // seriesIndex array, specify series controlled by this brush component.
- geoIndex: null,
- //
- xAxisIndex: null,
- yAxisIndex: null,
- brushType: 'rect',
- // Default brushType, see BrushController.
- brushMode: 'single',
- // Default brushMode, 'single' or 'multiple'
- transformable: true,
- // Default transformable.
- brushStyle: {
- // Default brushStyle
- borderWidth: 1,
- color: 'rgba(120,140,180,0.3)',
- borderColor: 'rgba(120,140,180,0.8)'
- },
- throttleType: 'fixRate',
- // Throttle in brushSelected event. 'fixRate' or 'debounce'.
- // If null, no throttle. Valid only in the first brush component
- throttleDelay: 0,
- // Unit: ms, 0 means every event will be triggered.
- // FIXME
- // 试验效果
- removeOnClick: true,
- z: 10000
- },
-
- /**
- * @readOnly
- * @type {Array.<Object>}
- */
- areas: [],
-
- /**
- * Current activated brush type.
- * If null, brush is inactived.
- * see module:echarts/component/helper/BrushController
- * @readOnly
- * @type {string}
- */
- brushType: null,
-
- /**
- * Current brush opt.
- * see module:echarts/component/helper/BrushController
- * @readOnly
- * @type {Object}
- */
- brushOption: {},
-
- /**
- * @readOnly
- * @type {Array.<Object>}
- */
- coordInfoList: [],
- optionUpdated: function (newOption, isInit) {
- var thisOption = this.option;
- !isInit && visualSolution.replaceVisualOption(thisOption, newOption, ['inBrush', 'outOfBrush']);
- var inBrush = thisOption.inBrush = thisOption.inBrush || {}; // Always give default visual, consider setOption at the second time.
-
- thisOption.outOfBrush = thisOption.outOfBrush || {
- color: DEFAULT_OUT_OF_BRUSH_COLOR
- };
-
- if (!inBrush.hasOwnProperty('liftZ')) {
- // Bigger than the highlight z lift, otherwise it will
- // be effected by the highlight z when brush.
- inBrush.liftZ = 5;
- }
- },
-
- /**
- * If ranges is null/undefined, range state remain.
- *
- * @param {Array.<Object>} [ranges]
- */
- setAreas: function (areas) {
- // If ranges is null/undefined, range state remain.
- // This helps user to dispatchAction({type: 'brush'}) with no areas
- // set but just want to get the current brush select info from a `brush` event.
- if (!areas) {
- return;
- }
-
- this.areas = zrUtil.map(areas, function (area) {
- return generateBrushOption(this.option, area);
- }, this);
- },
-
- /**
- * see module:echarts/component/helper/BrushController
- * @param {Object} brushOption
- */
- setBrushOption: function (brushOption) {
- this.brushOption = generateBrushOption(this.option, brushOption);
- this.brushType = this.brushOption.brushType;
- }
- });
-
- function generateBrushOption(option, brushOption) {
- return zrUtil.merge({
- brushType: option.brushType,
- brushMode: option.brushMode,
- transformable: option.transformable,
- brushStyle: new Model(option.brushStyle).getItemStyle(),
- removeOnClick: option.removeOnClick,
- z: option.z
- }, brushOption, true);
- }
-
- var _default = BrushModel;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2755:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- var BrushController = __webpack_require__(1915);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = echarts.extendComponentView({
- type: 'brush',
- init: function (ecModel, api) {
- /**
- * @readOnly
- * @type {module:echarts/model/Global}
- */
- this.ecModel = ecModel;
- /**
- * @readOnly
- * @type {module:echarts/ExtensionAPI}
- */
-
- this.api = api;
- /**
- * @readOnly
- * @type {module:echarts/component/brush/BrushModel}
- */
-
- this.model;
- /**
- * @private
- * @type {module:echarts/component/helper/BrushController}
- */
-
- (this._brushController = new BrushController(api.getZr())).on('brush', zrUtil.bind(this._onBrush, this)).mount();
- },
-
- /**
- * @override
- */
- render: function (brushModel) {
- this.model = brushModel;
- return updateController.apply(this, arguments);
- },
-
- /**
- * @override
- */
- updateTransform: updateController,
-
- /**
- * @override
- */
- updateView: updateController,
- // /**
- // * @override
- // */
- // updateLayout: updateController,
- // /**
- // * @override
- // */
- // updateVisual: updateController,
-
- /**
- * @override
- */
- dispose: function () {
- this._brushController.dispose();
- },
-
- /**
- * @private
- */
- _onBrush: function (areas, opt) {
- var modelId = this.model.id;
- this.model.brushTargetManager.setOutputRanges(areas, this.ecModel); // Action is not dispatched on drag end, because the drag end
- // emits the same params with the last drag move event, and
- // may have some delay when using touch pad, which makes
- // animation not smooth (when using debounce).
-
- (!opt.isEnd || opt.removeOnClick) && this.api.dispatchAction({
- type: 'brush',
- brushId: modelId,
- areas: zrUtil.clone(areas),
- $from: modelId
- });
- opt.isEnd && this.api.dispatchAction({
- type: 'brushEnd',
- brushId: modelId,
- areas: zrUtil.clone(areas),
- $from: modelId
- });
- }
- });
-
- function updateController(brushModel, ecModel, api, payload) {
- // Do not update controller when drawing.
- (!payload || payload.$from !== brushModel.id) && this._brushController.setPanels(brushModel.brushTargetManager.makePanelOpts(api)).enableBrush(brushModel.brushOption).updateCovers(brushModel.areas.slice());
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2756:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * payload: {
- * brushIndex: number, or,
- * brushId: string, or,
- * brushName: string,
- * globalRanges: Array
- * }
- */
- echarts.registerAction({
- type: 'brush',
- event: 'brush'
- /*, update: 'updateView' */
-
- }, function (payload, ecModel) {
- ecModel.eachComponent({
- mainType: 'brush',
- query: payload
- }, function (brushModel) {
- brushModel.setAreas(payload.areas);
- });
- });
- /**
- * payload: {
- * brushComponents: [
- * {
- * brushId,
- * brushIndex,
- * brushName,
- * series: [
- * {
- * seriesId,
- * seriesIndex,
- * seriesName,
- * rawIndices: [21, 34, ...]
- * },
- * ...
- * ]
- * },
- * ...
- * ]
- * }
- */
-
- echarts.registerAction({
- type: 'brushSelect',
- event: 'brushSelected',
- update: 'none'
- }, function () {});
- echarts.registerAction({
- type: 'brushEnd',
- event: 'brushEnd',
- update: 'none'
- }, function () {});
-
- /***/ }),
-
- /***/ 2757:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var featureManager = __webpack_require__(1486);
-
- var lang = __webpack_require__(1483);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var brushLang = lang.toolbox.brush;
-
- function Brush(model, ecModel, api) {
- this.model = model;
- this.ecModel = ecModel;
- this.api = api;
- /**
- * @private
- * @type {string}
- */
-
- this._brushType;
- /**
- * @private
- * @type {string}
- */
-
- this._brushMode;
- }
-
- Brush.defaultOption = {
- show: true,
- type: ['rect', 'polygon', 'lineX', 'lineY', 'keep', 'clear'],
- icon: {
- /* eslint-disable */
- rect: 'M7.3,34.7 M0.4,10V-0.2h9.8 M89.6,10V-0.2h-9.8 M0.4,60v10.2h9.8 M89.6,60v10.2h-9.8 M12.3,22.4V10.5h13.1 M33.6,10.5h7.8 M49.1,10.5h7.8 M77.5,22.4V10.5h-13 M12.3,31.1v8.2 M77.7,31.1v8.2 M12.3,47.6v11.9h13.1 M33.6,59.5h7.6 M49.1,59.5 h7.7 M77.5,47.6v11.9h-13',
- // jshint ignore:line
- polygon: 'M55.2,34.9c1.7,0,3.1,1.4,3.1,3.1s-1.4,3.1-3.1,3.1 s-3.1-1.4-3.1-3.1S53.5,34.9,55.2,34.9z M50.4,51c1.7,0,3.1,1.4,3.1,3.1c0,1.7-1.4,3.1-3.1,3.1c-1.7,0-3.1-1.4-3.1-3.1 C47.3,52.4,48.7,51,50.4,51z M55.6,37.1l1.5-7.8 M60.1,13.5l1.6-8.7l-7.8,4 M59,19l-1,5.3 M24,16.1l6.4,4.9l6.4-3.3 M48.5,11.6 l-5.9,3.1 M19.1,12.8L9.7,5.1l1.1,7.7 M13.4,29.8l1,7.3l6.6,1.6 M11.6,18.4l1,6.1 M32.8,41.9 M26.6,40.4 M27.3,40.2l6.1,1.6 M49.9,52.1l-5.6-7.6l-4.9-1.2',
- // jshint ignore:line
- lineX: 'M15.2,30 M19.7,15.6V1.9H29 M34.8,1.9H40.4 M55.3,15.6V1.9H45.9 M19.7,44.4V58.1H29 M34.8,58.1H40.4 M55.3,44.4 V58.1H45.9 M12.5,20.3l-9.4,9.6l9.6,9.8 M3.1,29.9h16.5 M62.5,20.3l9.4,9.6L62.3,39.7 M71.9,29.9H55.4',
- // jshint ignore:line
- lineY: 'M38.8,7.7 M52.7,12h13.2v9 M65.9,26.6V32 M52.7,46.3h13.2v-9 M24.9,12H11.8v9 M11.8,26.6V32 M24.9,46.3H11.8v-9 M48.2,5.1l-9.3-9l-9.4,9.2 M38.9-3.9V12 M48.2,53.3l-9.3,9l-9.4-9.2 M38.9,62.3V46.4',
- // jshint ignore:line
- keep: 'M4,10.5V1h10.3 M20.7,1h6.1 M33,1h6.1 M55.4,10.5V1H45.2 M4,17.3v6.6 M55.6,17.3v6.6 M4,30.5V40h10.3 M20.7,40 h6.1 M33,40h6.1 M55.4,30.5V40H45.2 M21,18.9h62.9v48.6H21V18.9z',
- // jshint ignore:line
- clear: 'M22,14.7l30.9,31 M52.9,14.7L22,45.7 M4.7,16.8V4.2h13.1 M26,4.2h7.8 M41.6,4.2h7.8 M70.3,16.8V4.2H57.2 M4.7,25.9v8.6 M70.3,25.9v8.6 M4.7,43.2v12.6h13.1 M26,55.8h7.8 M41.6,55.8h7.8 M70.3,43.2v12.6H57.2' // jshint ignore:line
-
- /* eslint-enable */
-
- },
- // `rect`, `polygon`, `lineX`, `lineY`, `keep`, `clear`
- title: zrUtil.clone(brushLang.title)
- };
- var proto = Brush.prototype; // proto.updateLayout = function (featureModel, ecModel, api) {
-
- /* eslint-disable */
-
- proto.render =
- /* eslint-enable */
- proto.updateView = function (featureModel, ecModel, api) {
- var brushType;
- var brushMode;
- var isBrushed;
- ecModel.eachComponent({
- mainType: 'brush'
- }, function (brushModel) {
- brushType = brushModel.brushType;
- brushMode = brushModel.brushOption.brushMode || 'single';
- isBrushed |= brushModel.areas.length;
- });
- this._brushType = brushType;
- this._brushMode = brushMode;
- zrUtil.each(featureModel.get('type', true), function (type) {
- featureModel.setIconStatus(type, (type === 'keep' ? brushMode === 'multiple' : type === 'clear' ? isBrushed : type === brushType) ? 'emphasis' : 'normal');
- });
- };
-
- proto.getIcons = function () {
- var model = this.model;
- var availableIcons = model.get('icon', true);
- var icons = {};
- zrUtil.each(model.get('type', true), function (type) {
- if (availableIcons[type]) {
- icons[type] = availableIcons[type];
- }
- });
- return icons;
- };
-
- proto.onclick = function (ecModel, api, type) {
- var brushType = this._brushType;
- var brushMode = this._brushMode;
-
- if (type === 'clear') {
- // Trigger parallel action firstly
- api.dispatchAction({
- type: 'axisAreaSelect',
- intervals: []
- });
- api.dispatchAction({
- type: 'brush',
- command: 'clear',
- // Clear all areas of all brush components.
- areas: []
- });
- } else {
- api.dispatchAction({
- type: 'takeGlobalCursor',
- key: 'brush',
- brushOption: {
- brushType: type === 'keep' ? brushType : brushType === type ? false : type,
- brushMode: type === 'keep' ? brushMode === 'multiple' ? 'single' : 'multiple' : brushMode
- }
- });
- }
- };
-
- featureManager.register('brush', Brush);
- var _default = Brush;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2758:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var echarts = __webpack_require__(881);
-
- var graphic = __webpack_require__(906);
-
- var _layout = __webpack_require__(1171);
-
- var getLayoutRect = _layout.getLayoutRect;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // Model
- echarts.extendComponentModel({
- type: 'title',
- layoutMode: {
- type: 'box',
- ignoreSize: true
- },
- defaultOption: {
- // 一级层叠
- zlevel: 0,
- // 二级层叠
- z: 6,
- show: true,
- text: '',
- // 超链接跳转
- // link: null,
- // 仅支持self | blank
- target: 'blank',
- subtext: '',
- // 超链接跳转
- // sublink: null,
- // 仅支持self | blank
- subtarget: 'blank',
- // 'center' ¦ 'left' ¦ 'right'
- // ¦ {number}(x坐标,单位px)
- left: 0,
- // 'top' ¦ 'bottom' ¦ 'center'
- // ¦ {number}(y坐标,单位px)
- top: 0,
- // 水平对齐
- // 'auto' | 'left' | 'right' | 'center'
- // 默认根据 left 的位置判断是左对齐还是右对齐
- // textAlign: null
- //
- // 垂直对齐
- // 'auto' | 'top' | 'bottom' | 'middle'
- // 默认根据 top 位置判断是上对齐还是下对齐
- // textVerticalAlign: null
- // textBaseline: null // The same as textVerticalAlign.
- backgroundColor: 'rgba(0,0,0,0)',
- // 标题边框颜色
- borderColor: '#ccc',
- // 标题边框线宽,单位px,默认为0(无边框)
- borderWidth: 0,
- // 标题内边距,单位px,默认各方向内边距为5,
- // 接受数组分别设定上右下左边距,同css
- padding: 5,
- // 主副标题纵向间隔,单位px,默认为10,
- itemGap: 10,
- textStyle: {
- fontSize: 18,
- fontWeight: 'bolder',
- color: '#333'
- },
- subtextStyle: {
- color: '#aaa'
- }
- }
- }); // View
-
- echarts.extendComponentView({
- type: 'title',
- render: function (titleModel, ecModel, api) {
- this.group.removeAll();
-
- if (!titleModel.get('show')) {
- return;
- }
-
- var group = this.group;
- var textStyleModel = titleModel.getModel('textStyle');
- var subtextStyleModel = titleModel.getModel('subtextStyle');
- var textAlign = titleModel.get('textAlign');
- var textVerticalAlign = zrUtil.retrieve2(titleModel.get('textBaseline'), titleModel.get('textVerticalAlign'));
- var textEl = new graphic.Text({
- style: graphic.setTextStyle({}, textStyleModel, {
- text: titleModel.get('text'),
- textFill: textStyleModel.getTextColor()
- }, {
- disableBox: true
- }),
- z2: 10
- });
- var textRect = textEl.getBoundingRect();
- var subText = titleModel.get('subtext');
- var subTextEl = new graphic.Text({
- style: graphic.setTextStyle({}, subtextStyleModel, {
- text: subText,
- textFill: subtextStyleModel.getTextColor(),
- y: textRect.height + titleModel.get('itemGap'),
- textVerticalAlign: 'top'
- }, {
- disableBox: true
- }),
- z2: 10
- });
- var link = titleModel.get('link');
- var sublink = titleModel.get('sublink');
- var triggerEvent = titleModel.get('triggerEvent', true);
- textEl.silent = !link && !triggerEvent;
- subTextEl.silent = !sublink && !triggerEvent;
-
- if (link) {
- textEl.on('click', function () {
- window.open(link, '_' + titleModel.get('target'));
- });
- }
-
- if (sublink) {
- subTextEl.on('click', function () {
- window.open(sublink, '_' + titleModel.get('subtarget'));
- });
- }
-
- textEl.eventData = subTextEl.eventData = triggerEvent ? {
- componentType: 'title',
- componentIndex: titleModel.componentIndex
- } : null;
- group.add(textEl);
- subText && group.add(subTextEl); // If no subText, but add subTextEl, there will be an empty line.
-
- var groupRect = group.getBoundingRect();
- var layoutOption = titleModel.getBoxLayoutParams();
- layoutOption.width = groupRect.width;
- layoutOption.height = groupRect.height;
- var layoutRect = getLayoutRect(layoutOption, {
- width: api.getWidth(),
- height: api.getHeight()
- }, titleModel.get('padding')); // Adjust text align based on position
-
- if (!textAlign) {
- // Align left if title is on the left. center and right is same
- textAlign = titleModel.get('left') || titleModel.get('right');
-
- if (textAlign === 'middle') {
- textAlign = 'center';
- } // Adjust layout by text align
-
-
- if (textAlign === 'right') {
- layoutRect.x += layoutRect.width;
- } else if (textAlign === 'center') {
- layoutRect.x += layoutRect.width / 2;
- }
- }
-
- if (!textVerticalAlign) {
- textVerticalAlign = titleModel.get('top') || titleModel.get('bottom');
-
- if (textVerticalAlign === 'center') {
- textVerticalAlign = 'middle';
- }
-
- if (textVerticalAlign === 'bottom') {
- layoutRect.y += layoutRect.height;
- } else if (textVerticalAlign === 'middle') {
- layoutRect.y += layoutRect.height / 2;
- }
-
- textVerticalAlign = textVerticalAlign || 'top';
- }
-
- group.attr('position', [layoutRect.x, layoutRect.y]);
- var alignStyle = {
- textAlign: textAlign,
- textVerticalAlign: textVerticalAlign
- };
- textEl.setStyle(alignStyle);
- subTextEl.setStyle(alignStyle); // Render background
- // Get groupRect again because textAlign has been changed
-
- groupRect = group.getBoundingRect();
- var padding = layoutRect.margin;
- var style = titleModel.getItemStyle(['color', 'opacity']);
- style.fill = titleModel.get('backgroundColor');
- var rect = new graphic.Rect({
- shape: {
- x: groupRect.x - padding[3],
- y: groupRect.y - padding[0],
- width: groupRect.width + padding[1] + padding[3],
- height: groupRect.height + padding[0] + padding[2],
- r: titleModel.get('borderRadius')
- },
- style: style,
- subPixelOptimize: true,
- silent: true
- });
- group.add(rect);
- }
- });
-
- /***/ }),
-
- /***/ 2759:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var preprocessor = __webpack_require__(2760);
-
- __webpack_require__(2761);
-
- __webpack_require__(2762);
-
- __webpack_require__(2763);
-
- __webpack_require__(2765);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * DataZoom component entry
- */
- echarts.registerPreprocessor(preprocessor);
-
- /***/ }),
-
- /***/ 2760:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function _default(option) {
- var timelineOpt = option && option.timeline;
-
- if (!zrUtil.isArray(timelineOpt)) {
- timelineOpt = timelineOpt ? [timelineOpt] : [];
- }
-
- zrUtil.each(timelineOpt, function (opt) {
- if (!opt) {
- return;
- }
-
- compatibleEC2(opt);
- });
- }
-
- function compatibleEC2(opt) {
- var type = opt.type;
- var ec2Types = {
- 'number': 'value',
- 'time': 'time'
- }; // Compatible with ec2
-
- if (ec2Types[type]) {
- opt.axisType = ec2Types[type];
- delete opt.type;
- }
-
- transferItem(opt);
-
- if (has(opt, 'controlPosition')) {
- var controlStyle = opt.controlStyle || (opt.controlStyle = {});
-
- if (!has(controlStyle, 'position')) {
- controlStyle.position = opt.controlPosition;
- }
-
- if (controlStyle.position === 'none' && !has(controlStyle, 'show')) {
- controlStyle.show = false;
- delete controlStyle.position;
- }
-
- delete opt.controlPosition;
- }
-
- zrUtil.each(opt.data || [], function (dataItem) {
- if (zrUtil.isObject(dataItem) && !zrUtil.isArray(dataItem)) {
- if (!has(dataItem, 'value') && has(dataItem, 'name')) {
- // In ec2, using name as value.
- dataItem.value = dataItem.name;
- }
-
- transferItem(dataItem);
- }
- });
- }
-
- function transferItem(opt) {
- var itemStyle = opt.itemStyle || (opt.itemStyle = {});
- var itemStyleEmphasis = itemStyle.emphasis || (itemStyle.emphasis = {}); // Transfer label out
-
- var label = opt.label || opt.label || {};
- var labelNormal = label.normal || (label.normal = {});
- var excludeLabelAttr = {
- normal: 1,
- emphasis: 1
- };
- zrUtil.each(label, function (value, name) {
- if (!excludeLabelAttr[name] && !has(labelNormal, name)) {
- labelNormal[name] = value;
- }
- });
-
- if (itemStyleEmphasis.label && !has(label, 'emphasis')) {
- label.emphasis = itemStyleEmphasis.label;
- delete itemStyleEmphasis.label;
- }
- }
-
- function has(obj, attr) {
- return obj.hasOwnProperty(attr);
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2761:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var Component = __webpack_require__(1321);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- Component.registerSubTypeDefaulter('timeline', function () {
- // Only slider now.
- return 'slider';
- });
-
- /***/ }),
-
- /***/ 2762:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- echarts.registerAction({
- type: 'timelineChange',
- event: 'timelineChanged',
- update: 'prepareAndUpdate'
- }, function (payload, ecModel) {
- var timelineModel = ecModel.getComponent('timeline');
-
- if (timelineModel && payload.currentIndex != null) {
- timelineModel.setCurrentIndex(payload.currentIndex);
-
- if (!timelineModel.get('loop', true) && timelineModel.isIndexMax()) {
- timelineModel.setPlayState(false);
- }
- } // Set normalized currentIndex to payload.
-
-
- ecModel.resetOption('timeline');
- return zrUtil.defaults({
- currentIndex: timelineModel.option.currentIndex
- }, payload);
- });
- echarts.registerAction({
- type: 'timelinePlayChange',
- event: 'timelinePlayChanged',
- update: 'update'
- }, function (payload, ecModel) {
- var timelineModel = ecModel.getComponent('timeline');
-
- if (timelineModel && payload.playState != null) {
- timelineModel.setPlayState(payload.playState);
- }
- });
-
- /***/ }),
-
- /***/ 2763:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var TimelineModel = __webpack_require__(2764);
-
- var dataFormatMixin = __webpack_require__(1901);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var SliderTimelineModel = TimelineModel.extend({
- type: 'timeline.slider',
-
- /**
- * @protected
- */
- defaultOption: {
- backgroundColor: 'rgba(0,0,0,0)',
- // 时间轴背景颜色
- borderColor: '#ccc',
- // 时间轴边框颜色
- borderWidth: 0,
- // 时间轴边框线宽,单位px,默认为0(无边框)
- orient: 'horizontal',
- // 'vertical'
- inverse: false,
- tooltip: {
- // boolean or Object
- trigger: 'item' // data item may also have tootip attr.
-
- },
- symbol: 'emptyCircle',
- symbolSize: 10,
- lineStyle: {
- show: true,
- width: 2,
- color: '#304654'
- },
- label: {
- // 文本标签
- position: 'auto',
- // auto left right top bottom
- // When using number, label position is not
- // restricted by viewRect.
- // positive: right/bottom, negative: left/top
- show: true,
- interval: 'auto',
- rotate: 0,
- // formatter: null,
- // 其余属性默认使用全局文本样式,详见TEXTSTYLE
- color: '#304654'
- },
- itemStyle: {
- color: '#304654',
- borderWidth: 1
- },
- checkpointStyle: {
- symbol: 'circle',
- symbolSize: 13,
- color: '#c23531',
- borderWidth: 5,
- borderColor: 'rgba(194,53,49, 0.5)',
- animation: true,
- animationDuration: 300,
- animationEasing: 'quinticInOut'
- },
- controlStyle: {
- show: true,
- showPlayBtn: true,
- showPrevBtn: true,
- showNextBtn: true,
- itemSize: 22,
- itemGap: 12,
- position: 'left',
- // 'left' 'right' 'top' 'bottom'
- playIcon: 'path://M31.6,53C17.5,53,6,41.5,6,27.4S17.5,1.8,31.6,1.8C45.7,1.8,57.2,13.3,57.2,27.4S45.7,53,31.6,53z M31.6,3.3 C18.4,3.3,7.5,14.1,7.5,27.4c0,13.3,10.8,24.1,24.1,24.1C44.9,51.5,55.7,40.7,55.7,27.4C55.7,14.1,44.9,3.3,31.6,3.3z M24.9,21.3 c0-2.2,1.6-3.1,3.5-2l10.5,6.1c1.899,1.1,1.899,2.9,0,4l-10.5,6.1c-1.9,1.1-3.5,0.2-3.5-2V21.3z',
- // jshint ignore:line
- stopIcon: 'path://M30.9,53.2C16.8,53.2,5.3,41.7,5.3,27.6S16.8,2,30.9,2C45,2,56.4,13.5,56.4,27.6S45,53.2,30.9,53.2z M30.9,3.5C17.6,3.5,6.8,14.4,6.8,27.6c0,13.3,10.8,24.1,24.101,24.1C44.2,51.7,55,40.9,55,27.6C54.9,14.4,44.1,3.5,30.9,3.5z M36.9,35.8c0,0.601-0.4,1-0.9,1h-1.3c-0.5,0-0.9-0.399-0.9-1V19.5c0-0.6,0.4-1,0.9-1H36c0.5,0,0.9,0.4,0.9,1V35.8z M27.8,35.8 c0,0.601-0.4,1-0.9,1h-1.3c-0.5,0-0.9-0.399-0.9-1V19.5c0-0.6,0.4-1,0.9-1H27c0.5,0,0.9,0.4,0.9,1L27.8,35.8L27.8,35.8z',
- // jshint ignore:line
- nextIcon: 'path://M18.6,50.8l22.5-22.5c0.2-0.2,0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.7L18.7,4.4c-0.1-0.1-0.2-0.3-0.2-0.5 c0-0.4,0.3-0.8,0.8-0.8c0.2,0,0.5,0.1,0.6,0.3l23.5,23.5l0,0c0.2,0.2,0.3,0.4,0.3,0.7c0,0.3-0.1,0.5-0.3,0.7l-0.1,0.1L19.7,52 c-0.1,0.1-0.3,0.2-0.5,0.2c-0.4,0-0.8-0.3-0.8-0.8C18.4,51.2,18.5,51,18.6,50.8z',
- // jshint ignore:line
- prevIcon: 'path://M43,52.8L20.4,30.3c-0.2-0.2-0.3-0.4-0.3-0.7c0-0.3,0.1-0.5,0.3-0.7L42.9,6.4c0.1-0.1,0.2-0.3,0.2-0.5 c0-0.4-0.3-0.8-0.8-0.8c-0.2,0-0.5,0.1-0.6,0.3L18.3,28.8l0,0c-0.2,0.2-0.3,0.4-0.3,0.7c0,0.3,0.1,0.5,0.3,0.7l0.1,0.1L41.9,54 c0.1,0.1,0.3,0.2,0.5,0.2c0.4,0,0.8-0.3,0.8-0.8C43.2,53.2,43.1,53,43,52.8z',
- // jshint ignore:line
- color: '#304654',
- borderColor: '#304654',
- borderWidth: 1
- },
- emphasis: {
- label: {
- show: true,
- // 其余属性默认使用全局文本样式,详见TEXTSTYLE
- color: '#c23531'
- },
- itemStyle: {
- color: '#c23531'
- },
- controlStyle: {
- color: '#c23531',
- borderColor: '#c23531',
- borderWidth: 2
- }
- },
- data: []
- }
- });
- zrUtil.mixin(SliderTimelineModel, dataFormatMixin);
- var _default = SliderTimelineModel;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2764:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var ComponentModel = __webpack_require__(1321);
-
- var List = __webpack_require__(1403);
-
- var modelUtil = __webpack_require__(1064);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var TimelineModel = ComponentModel.extend({
- type: 'timeline',
- layoutMode: 'box',
-
- /**
- * @protected
- */
- defaultOption: {
- zlevel: 0,
- // 一级层叠
- z: 4,
- // 二级层叠
- show: true,
- axisType: 'time',
- // 模式是时间类型,支持 value, category
- realtime: true,
- left: '20%',
- top: null,
- right: '20%',
- bottom: 0,
- width: null,
- height: 40,
- padding: 5,
- controlPosition: 'left',
- // 'left' 'right' 'top' 'bottom' 'none'
- autoPlay: false,
- rewind: false,
- // 反向播放
- loop: true,
- playInterval: 2000,
- // 播放时间间隔,单位ms
- currentIndex: 0,
- itemStyle: {},
- label: {
- color: '#000'
- },
- data: []
- },
-
- /**
- * @override
- */
- init: function (option, parentModel, ecModel) {
- /**
- * @private
- * @type {module:echarts/data/List}
- */
- this._data;
- /**
- * @private
- * @type {Array.<string>}
- */
-
- this._names;
- this.mergeDefaultAndTheme(option, ecModel);
-
- this._initData();
- },
-
- /**
- * @override
- */
- mergeOption: function (option) {
- TimelineModel.superApply(this, 'mergeOption', arguments);
-
- this._initData();
- },
-
- /**
- * @param {number} [currentIndex]
- */
- 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;
- },
-
- /**
- * @return {number} currentIndex
- */
- getCurrentIndex: function () {
- return this.option.currentIndex;
- },
-
- /**
- * @return {boolean}
- */
- isIndexMax: function () {
- return this.getCurrentIndex() >= this._data.count() - 1;
- },
-
- /**
- * @param {boolean} state true: play, false: stop
- */
- setPlayState: function (state) {
- this.option.autoPlay = !!state;
- },
-
- /**
- * @return {boolean} true: play, false: stop
- */
- getPlayState: function () {
- return !!this.option.autoPlay;
- },
-
- /**
- * @private
- */
- _initData: function () {
- var thisOption = this.option;
- var dataArr = thisOption.data || [];
- var axisType = thisOption.axisType;
- var names = this._names = [];
-
- if (axisType === 'category') {
- var idxArr = [];
- zrUtil.each(dataArr, function (item, index) {
- var value = modelUtil.getDataItemValue(item);
- var newItem;
-
- if (zrUtil.isObject(item)) {
- newItem = zrUtil.clone(item);
- newItem.value = index;
- } else {
- newItem = index;
- }
-
- idxArr.push(newItem);
-
- if (!zrUtil.isString(value) && (value == null || isNaN(value))) {
- value = '';
- }
-
- names.push(value + '');
- });
- dataArr = idxArr;
- }
-
- var dimType = {
- category: 'ordinal',
- time: 'time'
- }[axisType] || 'number';
- var data = this._data = new List([{
- name: 'value',
- type: dimType
- }], this);
- data.initData(dataArr, names);
- },
- getData: function () {
- return this._data;
- },
-
- /**
- * @public
- * @return {Array.<string>} categoreis
- */
- getCategories: function () {
- if (this.get('axisType') === 'category') {
- return this._names.slice();
- }
- }
- });
- var _default = TimelineModel;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2765:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var BoundingRect = __webpack_require__(1185);
-
- var matrix = __webpack_require__(1350);
-
- var graphic = __webpack_require__(906);
-
- var layout = __webpack_require__(1171);
-
- var TimelineView = __webpack_require__(2766);
-
- var TimelineAxis = __webpack_require__(2767);
-
- var _symbol = __webpack_require__(1404);
-
- var createSymbol = _symbol.createSymbol;
-
- var axisHelper = __webpack_require__(1415);
-
- var numberUtil = __webpack_require__(985);
-
- var _format = __webpack_require__(1186);
-
- var encodeHTML = _format.encodeHTML;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var bind = zrUtil.bind;
- var each = zrUtil.each;
- var PI = Math.PI;
-
- var _default = TimelineView.extend({
- type: 'timeline.slider',
- init: function (ecModel, api) {
- this.api = api;
- /**
- * @private
- * @type {module:echarts/component/timeline/TimelineAxis}
- */
-
- this._axis;
- /**
- * @private
- * @type {module:zrender/core/BoundingRect}
- */
-
- this._viewRect;
- /**
- * @type {number}
- */
-
- this._timer;
- /**
- * @type {module:zrender/Element}
- */
-
- this._currentPointer;
- /**
- * @type {module:zrender/container/Group}
- */
-
- this._mainGroup;
- /**
- * @type {module:zrender/container/Group}
- */
-
- this._labelGroup;
- },
-
- /**
- * @override
- */
- render: function (timelineModel, ecModel, api, payload) {
- this.model = timelineModel;
- this.api = api;
- this.ecModel = ecModel;
- this.group.removeAll();
-
- if (timelineModel.get('show', true)) {
- var layoutInfo = this._layout(timelineModel, api);
-
- var mainGroup = this._createGroup('mainGroup');
-
- var labelGroup = this._createGroup('labelGroup');
- /**
- * @private
- * @type {module:echarts/component/timeline/TimelineAxis}
- */
-
-
- var axis = this._axis = this._createAxis(layoutInfo, timelineModel);
-
- timelineModel.formatTooltip = function (dataIndex) {
- return encodeHTML(axis.scale.getLabel(dataIndex));
- };
-
- each(['AxisLine', 'AxisTick', 'Control', 'CurrentPointer'], function (name) {
- this['_render' + name](layoutInfo, mainGroup, axis, timelineModel);
- }, this);
-
- this._renderAxisLabel(layoutInfo, labelGroup, axis, timelineModel);
-
- this._position(layoutInfo, timelineModel);
- }
-
- this._doPlayStop();
- },
-
- /**
- * @override
- */
- remove: function () {
- this._clearTimer();
-
- this.group.removeAll();
- },
-
- /**
- * @override
- */
- dispose: function () {
- this._clearTimer();
- },
- _layout: function (timelineModel, api) {
- var labelPosOpt = timelineModel.get('label.position');
- var orient = timelineModel.get('orient');
- var viewRect = getViewRect(timelineModel, api); // Auto label offset.
-
- if (labelPosOpt == null || labelPosOpt === 'auto') {
- labelPosOpt = orient === 'horizontal' ? viewRect.y + viewRect.height / 2 < api.getHeight() / 2 ? '-' : '+' : viewRect.x + viewRect.width / 2 < api.getWidth() / 2 ? '+' : '-';
- } else if (isNaN(labelPosOpt)) {
- labelPosOpt = {
- horizontal: {
- top: '-',
- bottom: '+'
- },
- vertical: {
- left: '-',
- right: '+'
- }
- }[orient][labelPosOpt];
- }
-
- var labelAlignMap = {
- horizontal: 'center',
- vertical: labelPosOpt >= 0 || labelPosOpt === '+' ? 'left' : 'right'
- };
- var labelBaselineMap = {
- horizontal: labelPosOpt >= 0 || labelPosOpt === '+' ? 'top' : 'bottom',
- vertical: 'middle'
- };
- var rotationMap = {
- horizontal: 0,
- vertical: PI / 2
- }; // Position
-
- var mainLength = orient === 'vertical' ? viewRect.height : viewRect.width;
- var controlModel = timelineModel.getModel('controlStyle');
- var showControl = controlModel.get('show', true);
- var controlSize = showControl ? controlModel.get('itemSize') : 0;
- var controlGap = showControl ? controlModel.get('itemGap') : 0;
- var sizePlusGap = controlSize + controlGap; // Special label rotate.
-
- var labelRotation = timelineModel.get('label.rotate') || 0;
- labelRotation = labelRotation * PI / 180; // To radian.
-
- var playPosition;
- var prevBtnPosition;
- var nextBtnPosition;
- var axisExtent;
- var controlPosition = controlModel.get('position', true);
- var showPlayBtn = showControl && controlModel.get('showPlayBtn', true);
- var showPrevBtn = showControl && controlModel.get('showPrevBtn', true);
- var showNextBtn = showControl && controlModel.get('showNextBtn', true);
- var xLeft = 0;
- var xRight = mainLength; // position[0] means left, position[1] means middle.
-
- if (controlPosition === 'left' || controlPosition === 'bottom') {
- showPlayBtn && (playPosition = [0, 0], xLeft += sizePlusGap);
- showPrevBtn && (prevBtnPosition = [xLeft, 0], xLeft += sizePlusGap);
- showNextBtn && (nextBtnPosition = [xRight - controlSize, 0], xRight -= sizePlusGap);
- } else {
- // 'top' 'right'
- showPlayBtn && (playPosition = [xRight - controlSize, 0], xRight -= sizePlusGap);
- showPrevBtn && (prevBtnPosition = [0, 0], xLeft += sizePlusGap);
- showNextBtn && (nextBtnPosition = [xRight - controlSize, 0], xRight -= sizePlusGap);
- }
-
- axisExtent = [xLeft, xRight];
-
- if (timelineModel.get('inverse')) {
- axisExtent.reverse();
- }
-
- return {
- viewRect: viewRect,
- mainLength: mainLength,
- orient: orient,
- rotation: rotationMap[orient],
- labelRotation: labelRotation,
- labelPosOpt: labelPosOpt,
- labelAlign: timelineModel.get('label.align') || labelAlignMap[orient],
- labelBaseline: timelineModel.get('label.verticalAlign') || timelineModel.get('label.baseline') || labelBaselineMap[orient],
- // Based on mainGroup.
- playPosition: playPosition,
- prevBtnPosition: prevBtnPosition,
- nextBtnPosition: nextBtnPosition,
- axisExtent: axisExtent,
- controlSize: controlSize,
- controlGap: controlGap
- };
- },
- _position: function (layoutInfo, timelineModel) {
- // Position is be called finally, because bounding rect is needed for
- // adapt content to fill viewRect (auto adapt offset).
- // Timeline may be not all in the viewRect when 'offset' is specified
- // as a number, because it is more appropriate that label aligns at
- // 'offset' but not the other edge defined by viewRect.
- var mainGroup = this._mainGroup;
- var labelGroup = this._labelGroup;
- var viewRect = layoutInfo.viewRect;
-
- if (layoutInfo.orient === 'vertical') {
- // transform to horizontal, inverse rotate by left-top point.
- var m = matrix.create();
- var rotateOriginX = viewRect.x;
- var rotateOriginY = viewRect.y + viewRect.height;
- matrix.translate(m, m, [-rotateOriginX, -rotateOriginY]);
- matrix.rotate(m, m, -PI / 2);
- matrix.translate(m, m, [rotateOriginX, rotateOriginY]);
- viewRect = viewRect.clone();
- viewRect.applyTransform(m);
- }
-
- var viewBound = getBound(viewRect);
- var mainBound = getBound(mainGroup.getBoundingRect());
- var labelBound = getBound(labelGroup.getBoundingRect());
- var mainPosition = mainGroup.position;
- var labelsPosition = labelGroup.position;
- labelsPosition[0] = mainPosition[0] = viewBound[0][0];
- var labelPosOpt = layoutInfo.labelPosOpt;
-
- if (isNaN(labelPosOpt)) {
- // '+' or '-'
- var mainBoundIdx = labelPosOpt === '+' ? 0 : 1;
- toBound(mainPosition, mainBound, viewBound, 1, mainBoundIdx);
- toBound(labelsPosition, labelBound, viewBound, 1, 1 - mainBoundIdx);
- } else {
- var mainBoundIdx = labelPosOpt >= 0 ? 0 : 1;
- toBound(mainPosition, mainBound, viewBound, 1, mainBoundIdx);
- labelsPosition[1] = mainPosition[1] + labelPosOpt;
- }
-
- mainGroup.attr('position', mainPosition);
- labelGroup.attr('position', labelsPosition);
- mainGroup.rotation = labelGroup.rotation = layoutInfo.rotation;
- setOrigin(mainGroup);
- setOrigin(labelGroup);
-
- function setOrigin(targetGroup) {
- var pos = targetGroup.position;
- targetGroup.origin = [viewBound[0][0] - pos[0], viewBound[1][0] - pos[1]];
- }
-
- function getBound(rect) {
- // [[xmin, xmax], [ymin, ymax]]
- return [[rect.x, rect.x + rect.width], [rect.y, rect.y + rect.height]];
- }
-
- function toBound(fromPos, from, to, dimIdx, boundIdx) {
- fromPos[dimIdx] += to[dimIdx][boundIdx] - from[dimIdx][boundIdx];
- }
- },
- _createAxis: function (layoutInfo, timelineModel) {
- var data = timelineModel.getData();
- var axisType = timelineModel.get('axisType');
- var scale = axisHelper.createScaleByModel(timelineModel, axisType); // Customize scale. The `tickValue` is `dataIndex`.
-
- scale.getTicks = function () {
- return data.mapArray(['value'], function (value) {
- return value;
- });
- };
-
- var dataExtent = data.getDataExtent('value');
- scale.setExtent(dataExtent[0], dataExtent[1]);
- scale.niceTicks();
- var axis = new TimelineAxis('value', scale, layoutInfo.axisExtent, axisType);
- axis.model = timelineModel;
- return axis;
- },
- _createGroup: function (name) {
- var newGroup = this['_' + name] = new graphic.Group();
- this.group.add(newGroup);
- return newGroup;
- },
- _renderAxisLine: function (layoutInfo, group, axis, timelineModel) {
- var axisExtent = axis.getExtent();
-
- if (!timelineModel.get('lineStyle.show')) {
- return;
- }
-
- group.add(new graphic.Line({
- shape: {
- x1: axisExtent[0],
- y1: 0,
- x2: axisExtent[1],
- y2: 0
- },
- style: zrUtil.extend({
- lineCap: 'round'
- }, timelineModel.getModel('lineStyle').getLineStyle()),
- silent: true,
- z2: 1
- }));
- },
-
- /**
- * @private
- */
- _renderAxisTick: function (layoutInfo, group, axis, timelineModel) {
- var data = timelineModel.getData(); // Show all ticks, despite ignoring strategy.
-
- var ticks = axis.scale.getTicks(); // The value is dataIndex, see the costomized scale.
-
- each(ticks, function (value) {
- var tickCoord = axis.dataToCoord(value);
- var itemModel = data.getItemModel(value);
- var itemStyleModel = itemModel.getModel('itemStyle');
- var hoverStyleModel = itemModel.getModel('emphasis.itemStyle');
- var symbolOpt = {
- position: [tickCoord, 0],
- onclick: bind(this._changeTimeline, this, value)
- };
- var el = giveSymbol(itemModel, itemStyleModel, group, symbolOpt);
- graphic.setHoverStyle(el, hoverStyleModel.getItemStyle());
-
- if (itemModel.get('tooltip')) {
- el.dataIndex = value;
- el.dataModel = timelineModel;
- } else {
- el.dataIndex = el.dataModel = null;
- }
- }, this);
- },
-
- /**
- * @private
- */
- _renderAxisLabel: function (layoutInfo, group, axis, timelineModel) {
- var labelModel = axis.getLabelModel();
-
- if (!labelModel.get('show')) {
- return;
- }
-
- var data = timelineModel.getData();
- var labels = axis.getViewLabels();
- each(labels, function (labelItem) {
- // The tickValue is dataIndex, see the costomized scale.
- var dataIndex = labelItem.tickValue;
- var itemModel = data.getItemModel(dataIndex);
- var normalLabelModel = itemModel.getModel('label');
- var hoverLabelModel = itemModel.getModel('emphasis.label');
- var tickCoord = axis.dataToCoord(labelItem.tickValue);
- var textEl = new graphic.Text({
- position: [tickCoord, 0],
- rotation: layoutInfo.labelRotation - layoutInfo.rotation,
- onclick: bind(this._changeTimeline, this, dataIndex),
- silent: false
- });
- graphic.setTextStyle(textEl.style, normalLabelModel, {
- text: labelItem.formattedLabel,
- textAlign: layoutInfo.labelAlign,
- textVerticalAlign: layoutInfo.labelBaseline
- });
- group.add(textEl);
- graphic.setHoverStyle(textEl, graphic.setTextStyle({}, hoverLabelModel));
- }, this);
- },
-
- /**
- * @private
- */
- _renderControl: function (layoutInfo, group, axis, timelineModel) {
- var controlSize = layoutInfo.controlSize;
- var rotation = layoutInfo.rotation;
- var itemStyle = timelineModel.getModel('controlStyle').getItemStyle();
- var hoverStyle = timelineModel.getModel('emphasis.controlStyle').getItemStyle();
- var rect = [0, -controlSize / 2, controlSize, controlSize];
- var playState = timelineModel.getPlayState();
- var inverse = timelineModel.get('inverse', true);
- makeBtn(layoutInfo.nextBtnPosition, 'controlStyle.nextIcon', bind(this._changeTimeline, this, inverse ? '-' : '+'));
- makeBtn(layoutInfo.prevBtnPosition, 'controlStyle.prevIcon', bind(this._changeTimeline, this, inverse ? '+' : '-'));
- makeBtn(layoutInfo.playPosition, 'controlStyle.' + (playState ? 'stopIcon' : 'playIcon'), bind(this._handlePlayClick, this, !playState), true);
-
- function makeBtn(position, iconPath, onclick, willRotate) {
- if (!position) {
- return;
- }
-
- var opt = {
- position: position,
- origin: [controlSize / 2, 0],
- rotation: willRotate ? -rotation : 0,
- rectHover: true,
- style: itemStyle,
- onclick: onclick
- };
- var btn = makeIcon(timelineModel, iconPath, rect, opt);
- group.add(btn);
- graphic.setHoverStyle(btn, hoverStyle);
- }
- },
- _renderCurrentPointer: function (layoutInfo, group, axis, timelineModel) {
- var data = timelineModel.getData();
- var currentIndex = timelineModel.getCurrentIndex();
- var pointerModel = data.getItemModel(currentIndex).getModel('checkpointStyle');
- var me = this;
- var callback = {
- onCreate: function (pointer) {
- pointer.draggable = true;
- pointer.drift = bind(me._handlePointerDrag, me);
- pointer.ondragend = bind(me._handlePointerDragend, me);
- pointerMoveTo(pointer, currentIndex, axis, timelineModel, true);
- },
- onUpdate: function (pointer) {
- pointerMoveTo(pointer, currentIndex, axis, timelineModel);
- }
- }; // Reuse when exists, for animation and drag.
-
- this._currentPointer = giveSymbol(pointerModel, pointerModel, this._mainGroup, {}, this._currentPointer, callback);
- },
- _handlePlayClick: function (nextState) {
- this._clearTimer();
-
- this.api.dispatchAction({
- type: 'timelinePlayChange',
- playState: nextState,
- from: this.uid
- });
- },
- _handlePointerDrag: function (dx, dy, e) {
- this._clearTimer();
-
- this._pointerChangeTimeline([e.offsetX, e.offsetY]);
- },
- _handlePointerDragend: function (e) {
- this._pointerChangeTimeline([e.offsetX, e.offsetY], true);
- },
- _pointerChangeTimeline: function (mousePos, trigger) {
- var toCoord = this._toAxisCoord(mousePos)[0];
-
- var axis = this._axis;
- var axisExtent = numberUtil.asc(axis.getExtent().slice());
- toCoord > axisExtent[1] && (toCoord = axisExtent[1]);
- toCoord < axisExtent[0] && (toCoord = axisExtent[0]);
- this._currentPointer.position[0] = toCoord;
-
- this._currentPointer.dirty();
-
- var targetDataIndex = this._findNearestTick(toCoord);
-
- var timelineModel = this.model;
-
- if (trigger || targetDataIndex !== timelineModel.getCurrentIndex() && timelineModel.get('realtime')) {
- this._changeTimeline(targetDataIndex);
- }
- },
- _doPlayStop: function () {
- this._clearTimer();
-
- if (this.model.getPlayState()) {
- this._timer = setTimeout(bind(handleFrame, this), this.model.get('playInterval'));
- }
-
- function handleFrame() {
- // Do not cache
- var timelineModel = this.model;
-
- this._changeTimeline(timelineModel.getCurrentIndex() + (timelineModel.get('rewind', true) ? -1 : 1));
- }
- },
- _toAxisCoord: function (vertex) {
- var trans = this._mainGroup.getLocalTransform();
-
- return graphic.applyTransform(vertex, trans, true);
- },
- _findNearestTick: function (axisCoord) {
- var data = this.model.getData();
- var dist = Infinity;
- var targetDataIndex;
- var axis = this._axis;
- data.each(['value'], function (value, dataIndex) {
- var coord = axis.dataToCoord(value);
- var d = Math.abs(coord - axisCoord);
-
- if (d < dist) {
- dist = d;
- targetDataIndex = dataIndex;
- }
- });
- return targetDataIndex;
- },
- _clearTimer: function () {
- if (this._timer) {
- clearTimeout(this._timer);
- this._timer = null;
- }
- },
- _changeTimeline: function (nextIndex) {
- var currentIndex = this.model.getCurrentIndex();
-
- if (nextIndex === '+') {
- nextIndex = currentIndex + 1;
- } else if (nextIndex === '-') {
- nextIndex = currentIndex - 1;
- }
-
- this.api.dispatchAction({
- type: 'timelineChange',
- currentIndex: nextIndex,
- from: this.uid
- });
- }
- });
-
- function getViewRect(model, api) {
- return layout.getLayoutRect(model.getBoxLayoutParams(), {
- width: api.getWidth(),
- height: api.getHeight()
- }, model.get('padding'));
- }
-
- function makeIcon(timelineModel, objPath, rect, opts) {
- var icon = graphic.makePath(timelineModel.get(objPath).replace(/^path:\/\//, ''), zrUtil.clone(opts || {}), new BoundingRect(rect[0], rect[1], rect[2], rect[3]), 'center');
- return icon;
- }
- /**
- * Create symbol or update symbol
- * opt: basic position and event handlers
- */
-
-
- function giveSymbol(hostModel, itemStyleModel, group, opt, symbol, callback) {
- var color = itemStyleModel.get('color');
-
- if (!symbol) {
- var symbolType = hostModel.get('symbol');
- symbol = createSymbol(symbolType, -1, -1, 2, 2, color);
- symbol.setStyle('strokeNoScale', true);
- group.add(symbol);
- callback && callback.onCreate(symbol);
- } else {
- symbol.setColor(color);
- group.add(symbol); // Group may be new, also need to add.
-
- callback && callback.onUpdate(symbol);
- } // Style
-
-
- var itemStyle = itemStyleModel.getItemStyle(['color', 'symbol', 'symbolSize']);
- symbol.setStyle(itemStyle); // Transform and events.
-
- opt = zrUtil.merge({
- rectHover: true,
- z2: 100
- }, opt, true);
- var symbolSize = hostModel.get('symbolSize');
- symbolSize = symbolSize instanceof Array ? symbolSize.slice() : [+symbolSize, +symbolSize];
- symbolSize[0] /= 2;
- symbolSize[1] /= 2;
- opt.scale = symbolSize;
- var symbolOffset = hostModel.get('symbolOffset');
-
- if (symbolOffset) {
- var pos = opt.position = opt.position || [0, 0];
- pos[0] += numberUtil.parsePercent(symbolOffset[0], symbolSize[0]);
- pos[1] += numberUtil.parsePercent(symbolOffset[1], symbolSize[1]);
- }
-
- var symbolRotate = hostModel.get('symbolRotate');
- opt.rotation = (symbolRotate || 0) * Math.PI / 180 || 0;
- symbol.attr(opt); // FIXME
- // (1) When symbol.style.strokeNoScale is true and updateTransform is not performed,
- // getBoundingRect will return wrong result.
- // (This is supposed to be resolved in zrender, but it is a little difficult to
- // leverage performance and auto updateTransform)
- // (2) All of ancesters of symbol do not scale, so we can just updateTransform symbol.
-
- symbol.updateTransform();
- return symbol;
- }
-
- function pointerMoveTo(pointer, dataIndex, axis, timelineModel, noAnimation) {
- if (pointer.dragging) {
- return;
- }
-
- var pointerModel = timelineModel.getModel('checkpointStyle');
- var toCoord = axis.dataToCoord(timelineModel.getData().get(['value'], dataIndex));
-
- if (noAnimation || !pointerModel.get('animation', true)) {
- pointer.attr({
- position: [toCoord, 0]
- });
- } else {
- pointer.stopAnimation(true);
- pointer.animateTo({
- position: [toCoord, 0]
- }, pointerModel.get('animationDuration', true), pointerModel.get('animationEasing', true));
- }
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2766:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var ComponentView = __webpack_require__(1786);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = ComponentView.extend({
- type: 'timeline'
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2767:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var Axis = __webpack_require__(1484);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Extend axis 2d
- * @constructor module:echarts/coord/cartesian/Axis2D
- * @extends {module:echarts/coord/cartesian/Axis}
- * @param {string} dim
- * @param {*} scale
- * @param {Array.<number>} coordExtent
- * @param {string} axisType
- * @param {string} position
- */
- var TimelineAxis = function (dim, scale, coordExtent, axisType) {
- Axis.call(this, dim, scale, coordExtent);
- /**
- * Axis type
- * - 'category'
- * - 'value'
- * - 'time'
- * - 'log'
- * @type {string}
- */
-
- this.type = axisType || 'value';
- /**
- * Axis model
- * @param {module:echarts/component/TimelineModel}
- */
-
- this.model = null;
- };
-
- TimelineAxis.prototype = {
- constructor: TimelineAxis,
-
- /**
- * @override
- */
- getLabelModel: function () {
- return this.model.getModel('label');
- },
-
- /**
- * @override
- */
- isHorizontal: function () {
- return this.model.get('orient') === 'horizontal';
- }
- };
- zrUtil.inherits(TimelineAxis, Axis);
- var _default = TimelineAxis;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2768:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- __webpack_require__(2769);
-
- __webpack_require__(2770);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // HINT Markpoint can't be used too much
- echarts.registerPreprocessor(function (opt) {
- // Make sure markPoint component is enabled
- opt.markPoint = opt.markPoint || {};
- });
-
- /***/ }),
-
- /***/ 2769:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var MarkerModel = __webpack_require__(1922);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = MarkerModel.extend({
- type: 'markPoint',
- defaultOption: {
- zlevel: 0,
- z: 5,
- symbol: 'pin',
- symbolSize: 50,
- //symbolRotate: 0,
- //symbolOffset: [0, 0]
- tooltip: {
- trigger: 'item'
- },
- label: {
- show: true,
- position: 'inside'
- },
- itemStyle: {
- borderWidth: 2
- },
- emphasis: {
- label: {
- show: true
- }
- }
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2770:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var SymbolDraw = __webpack_require__(1661);
-
- var numberUtil = __webpack_require__(985);
-
- var List = __webpack_require__(1403);
-
- var markerHelper = __webpack_require__(1923);
-
- var MarkerView = __webpack_require__(1924);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function updateMarkerLayout(mpData, seriesModel, api) {
- var coordSys = seriesModel.coordinateSystem;
- mpData.each(function (idx) {
- var itemModel = mpData.getItemModel(idx);
- var point;
- var xPx = numberUtil.parsePercent(itemModel.get('x'), api.getWidth());
- var yPx = numberUtil.parsePercent(itemModel.get('y'), api.getHeight());
-
- if (!isNaN(xPx) && !isNaN(yPx)) {
- point = [xPx, yPx];
- } // Chart like bar may have there own marker positioning logic
- else if (seriesModel.getMarkerPosition) {
- // Use the getMarkerPoisition
- point = seriesModel.getMarkerPosition(mpData.getValues(mpData.dimensions, idx));
- } else if (coordSys) {
- var x = mpData.get(coordSys.dimensions[0], idx);
- var y = mpData.get(coordSys.dimensions[1], idx);
- point = coordSys.dataToPoint([x, y]);
- } // Use x, y if has any
-
-
- if (!isNaN(xPx)) {
- point[0] = xPx;
- }
-
- if (!isNaN(yPx)) {
- point[1] = yPx;
- }
-
- mpData.setItemLayout(idx, point);
- });
- }
-
- var _default = MarkerView.extend({
- type: 'markPoint',
- // updateLayout: function (markPointModel, ecModel, api) {
- // ecModel.eachSeries(function (seriesModel) {
- // var mpModel = seriesModel.markPointModel;
- // if (mpModel) {
- // updateMarkerLayout(mpModel.getData(), seriesModel, api);
- // this.markerGroupMap.get(seriesModel.id).updateLayout(mpModel);
- // }
- // }, this);
- // },
- updateTransform: function (markPointModel, ecModel, api) {
- ecModel.eachSeries(function (seriesModel) {
- var mpModel = seriesModel.markPointModel;
-
- if (mpModel) {
- updateMarkerLayout(mpModel.getData(), seriesModel, api);
- this.markerGroupMap.get(seriesModel.id).updateLayout(mpModel);
- }
- }, this);
- },
- renderSeries: function (seriesModel, mpModel, ecModel, api) {
- var coordSys = seriesModel.coordinateSystem;
- var seriesId = seriesModel.id;
- var seriesData = seriesModel.getData();
- var symbolDrawMap = this.markerGroupMap;
- var symbolDraw = symbolDrawMap.get(seriesId) || symbolDrawMap.set(seriesId, new SymbolDraw());
- var mpData = createList(coordSys, seriesModel, mpModel); // FIXME
-
- mpModel.setData(mpData);
- updateMarkerLayout(mpModel.getData(), seriesModel, api);
- mpData.each(function (idx) {
- var itemModel = mpData.getItemModel(idx);
- var symbol = itemModel.getShallow('symbol');
- var symbolSize = itemModel.getShallow('symbolSize');
- var isFnSymbol = zrUtil.isFunction(symbol);
- var isFnSymbolSize = zrUtil.isFunction(symbolSize);
-
- if (isFnSymbol || isFnSymbolSize) {
- var rawIdx = mpModel.getRawValue(idx);
- var dataParams = mpModel.getDataParams(idx);
-
- if (isFnSymbol) {
- symbol = symbol(rawIdx, dataParams);
- }
-
- if (isFnSymbolSize) {
- // FIXME 这里不兼容 ECharts 2.x,2.x 貌似参数是整个数据?
- symbolSize = symbolSize(rawIdx, dataParams);
- }
- }
-
- mpData.setItemVisual(idx, {
- symbol: symbol,
- symbolSize: symbolSize,
- color: itemModel.get('itemStyle.color') || seriesData.getVisual('color')
- });
- }); // TODO Text are wrong
-
- symbolDraw.updateData(mpData);
- this.group.add(symbolDraw.group); // Set host model for tooltip
- // FIXME
-
- mpData.eachItemGraphicEl(function (el) {
- el.traverse(function (child) {
- child.dataModel = mpModel;
- });
- });
- symbolDraw.__keep = true;
- symbolDraw.group.silent = mpModel.get('silent') || seriesModel.get('silent');
- }
- });
- /**
- * @inner
- * @param {module:echarts/coord/*} [coordSys]
- * @param {module:echarts/model/Series} seriesModel
- * @param {module:echarts/model/Model} mpModel
- */
-
-
- function createList(coordSys, seriesModel, mpModel) {
- var coordDimsInfos;
-
- if (coordSys) {
- coordDimsInfos = zrUtil.map(coordSys && coordSys.dimensions, function (coordDim) {
- var info = seriesModel.getData().getDimensionInfo(seriesModel.getData().mapDimension(coordDim)) || {}; // In map series data don't have lng and lat dimension. Fallback to same with coordSys
-
- return zrUtil.defaults({
- name: coordDim
- }, info);
- });
- } else {
- coordDimsInfos = [{
- name: 'value',
- type: 'float'
- }];
- }
-
- var mpData = new List(coordDimsInfos, mpModel);
- var dataOpt = zrUtil.map(mpModel.get('data'), zrUtil.curry(markerHelper.dataTransform, seriesModel));
-
- if (coordSys) {
- dataOpt = zrUtil.filter(dataOpt, zrUtil.curry(markerHelper.dataFilter, coordSys));
- }
-
- mpData.initData(dataOpt, null, coordSys ? markerHelper.dimValueGetter : function (item) {
- return item.value;
- });
- return mpData;
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2771:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- __webpack_require__(2772);
-
- __webpack_require__(2773);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- echarts.registerPreprocessor(function (opt) {
- // Make sure markLine component is enabled
- opt.markLine = opt.markLine || {};
- });
-
- /***/ }),
-
- /***/ 2772:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var MarkerModel = __webpack_require__(1922);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = MarkerModel.extend({
- type: 'markLine',
- defaultOption: {
- zlevel: 0,
- z: 5,
- symbol: ['circle', 'arrow'],
- symbolSize: [8, 16],
- //symbolRotate: 0,
- precision: 2,
- tooltip: {
- trigger: 'item'
- },
- label: {
- show: true,
- position: 'end'
- },
- lineStyle: {
- type: 'dashed'
- },
- emphasis: {
- label: {
- show: true
- },
- lineStyle: {
- width: 3
- }
- },
- animationEasing: 'linear'
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2773:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var List = __webpack_require__(1403);
-
- var numberUtil = __webpack_require__(985);
-
- var markerHelper = __webpack_require__(1923);
-
- var LineDraw = __webpack_require__(1912);
-
- var MarkerView = __webpack_require__(1924);
-
- var _dataStackHelper = __webpack_require__(1440);
-
- var getStackedDimension = _dataStackHelper.getStackedDimension;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var markLineTransform = function (seriesModel, coordSys, mlModel, item) {
- var data = seriesModel.getData(); // Special type markLine like 'min', 'max', 'average', 'median'
-
- var mlType = item.type;
-
- if (!zrUtil.isArray(item) && (mlType === 'min' || mlType === 'max' || mlType === 'average' || mlType === 'median' // In case
- // data: [{
- // yAxis: 10
- // }]
- || item.xAxis != null || item.yAxis != null)) {
- var valueAxis;
- var value;
-
- if (item.yAxis != null || item.xAxis != null) {
- valueAxis = coordSys.getAxis(item.yAxis != null ? 'y' : 'x');
- value = zrUtil.retrieve(item.yAxis, item.xAxis);
- } else {
- var axisInfo = markerHelper.getAxisInfo(item, data, coordSys, seriesModel);
- valueAxis = axisInfo.valueAxis;
- var valueDataDim = getStackedDimension(data, axisInfo.valueDataDim);
- value = markerHelper.numCalculate(data, valueDataDim, mlType);
- }
-
- var valueIndex = valueAxis.dim === 'x' ? 0 : 1;
- var baseIndex = 1 - valueIndex;
- var mlFrom = zrUtil.clone(item);
- var mlTo = {};
- mlFrom.type = null;
- mlFrom.coord = [];
- mlTo.coord = [];
- mlFrom.coord[baseIndex] = -Infinity;
- mlTo.coord[baseIndex] = Infinity;
- var precision = mlModel.get('precision');
-
- if (precision >= 0 && typeof value === 'number') {
- value = +value.toFixed(Math.min(precision, 20));
- }
-
- mlFrom.coord[valueIndex] = mlTo.coord[valueIndex] = value;
- item = [mlFrom, mlTo, {
- // Extra option for tooltip and label
- type: mlType,
- valueIndex: item.valueIndex,
- // Force to use the value of calculated value.
- value: value
- }];
- }
-
- item = [markerHelper.dataTransform(seriesModel, item[0]), markerHelper.dataTransform(seriesModel, item[1]), zrUtil.extend({}, item[2])]; // Avoid line data type is extended by from(to) data type
-
- item[2].type = item[2].type || ''; // Merge from option and to option into line option
-
- zrUtil.merge(item[2], item[0]);
- zrUtil.merge(item[2], item[1]);
- return item;
- };
-
- function isInifinity(val) {
- return !isNaN(val) && !isFinite(val);
- } // If a markLine has one dim
-
-
- function ifMarkLineHasOnlyDim(dimIndex, fromCoord, toCoord, coordSys) {
- var otherDimIndex = 1 - dimIndex;
- var dimName = coordSys.dimensions[dimIndex];
- return isInifinity(fromCoord[otherDimIndex]) && isInifinity(toCoord[otherDimIndex]) && fromCoord[dimIndex] === toCoord[dimIndex] && coordSys.getAxis(dimName).containData(fromCoord[dimIndex]);
- }
-
- function markLineFilter(coordSys, item) {
- if (coordSys.type === 'cartesian2d') {
- var fromCoord = item[0].coord;
- var toCoord = item[1].coord; // In case
- // {
- // markLine: {
- // data: [{ yAxis: 2 }]
- // }
- // }
-
- if (fromCoord && toCoord && (ifMarkLineHasOnlyDim(1, fromCoord, toCoord, coordSys) || ifMarkLineHasOnlyDim(0, fromCoord, toCoord, coordSys))) {
- return true;
- }
- }
-
- return markerHelper.dataFilter(coordSys, item[0]) && markerHelper.dataFilter(coordSys, item[1]);
- }
-
- function updateSingleMarkerEndLayout(data, idx, isFrom, seriesModel, api) {
- var coordSys = seriesModel.coordinateSystem;
- var itemModel = data.getItemModel(idx);
- var point;
- var xPx = numberUtil.parsePercent(itemModel.get('x'), api.getWidth());
- var yPx = numberUtil.parsePercent(itemModel.get('y'), api.getHeight());
-
- if (!isNaN(xPx) && !isNaN(yPx)) {
- point = [xPx, yPx];
- } else {
- // Chart like bar may have there own marker positioning logic
- if (seriesModel.getMarkerPosition) {
- // Use the getMarkerPoisition
- point = seriesModel.getMarkerPosition(data.getValues(data.dimensions, idx));
- } else {
- var dims = coordSys.dimensions;
- var x = data.get(dims[0], idx);
- var y = data.get(dims[1], idx);
- point = coordSys.dataToPoint([x, y]);
- } // Expand line to the edge of grid if value on one axis is Inifnity
- // In case
- // markLine: {
- // data: [{
- // yAxis: 2
- // // or
- // type: 'average'
- // }]
- // }
-
-
- if (coordSys.type === 'cartesian2d') {
- var xAxis = coordSys.getAxis('x');
- var yAxis = coordSys.getAxis('y');
- var dims = coordSys.dimensions;
-
- if (isInifinity(data.get(dims[0], idx))) {
- point[0] = xAxis.toGlobalCoord(xAxis.getExtent()[isFrom ? 0 : 1]);
- } else if (isInifinity(data.get(dims[1], idx))) {
- point[1] = yAxis.toGlobalCoord(yAxis.getExtent()[isFrom ? 0 : 1]);
- }
- } // Use x, y if has any
-
-
- if (!isNaN(xPx)) {
- point[0] = xPx;
- }
-
- if (!isNaN(yPx)) {
- point[1] = yPx;
- }
- }
-
- data.setItemLayout(idx, point);
- }
-
- var _default = MarkerView.extend({
- type: 'markLine',
- // updateLayout: function (markLineModel, ecModel, api) {
- // ecModel.eachSeries(function (seriesModel) {
- // var mlModel = seriesModel.markLineModel;
- // if (mlModel) {
- // var mlData = mlModel.getData();
- // var fromData = mlModel.__from;
- // var toData = mlModel.__to;
- // // Update visual and layout of from symbol and to symbol
- // fromData.each(function (idx) {
- // updateSingleMarkerEndLayout(fromData, idx, true, seriesModel, api);
- // updateSingleMarkerEndLayout(toData, idx, false, seriesModel, api);
- // });
- // // Update layout of line
- // mlData.each(function (idx) {
- // mlData.setItemLayout(idx, [
- // fromData.getItemLayout(idx),
- // toData.getItemLayout(idx)
- // ]);
- // });
- // this.markerGroupMap.get(seriesModel.id).updateLayout();
- // }
- // }, this);
- // },
- updateTransform: function (markLineModel, ecModel, api) {
- ecModel.eachSeries(function (seriesModel) {
- var mlModel = seriesModel.markLineModel;
-
- if (mlModel) {
- var mlData = mlModel.getData();
- var fromData = mlModel.__from;
- var toData = mlModel.__to; // Update visual and layout of from symbol and to symbol
-
- fromData.each(function (idx) {
- updateSingleMarkerEndLayout(fromData, idx, true, seriesModel, api);
- updateSingleMarkerEndLayout(toData, idx, false, seriesModel, api);
- }); // Update layout of line
-
- mlData.each(function (idx) {
- mlData.setItemLayout(idx, [fromData.getItemLayout(idx), toData.getItemLayout(idx)]);
- });
- this.markerGroupMap.get(seriesModel.id).updateLayout();
- }
- }, this);
- },
- renderSeries: function (seriesModel, mlModel, ecModel, api) {
- var coordSys = seriesModel.coordinateSystem;
- var seriesId = seriesModel.id;
- var seriesData = seriesModel.getData();
- var lineDrawMap = this.markerGroupMap;
- var lineDraw = lineDrawMap.get(seriesId) || lineDrawMap.set(seriesId, new LineDraw());
- this.group.add(lineDraw.group);
- var mlData = createList(coordSys, seriesModel, mlModel);
- var fromData = mlData.from;
- var toData = mlData.to;
- var lineData = mlData.line;
- mlModel.__from = fromData;
- mlModel.__to = toData; // Line data for tooltip and formatter
-
- mlModel.setData(lineData);
- var symbolType = mlModel.get('symbol');
- var symbolSize = mlModel.get('symbolSize');
-
- if (!zrUtil.isArray(symbolType)) {
- symbolType = [symbolType, symbolType];
- }
-
- if (typeof symbolSize === 'number') {
- symbolSize = [symbolSize, symbolSize];
- } // Update visual and layout of from symbol and to symbol
-
-
- mlData.from.each(function (idx) {
- updateDataVisualAndLayout(fromData, idx, true);
- updateDataVisualAndLayout(toData, idx, false);
- }); // Update visual and layout of line
-
- lineData.each(function (idx) {
- var lineColor = lineData.getItemModel(idx).get('lineStyle.color');
- lineData.setItemVisual(idx, {
- color: lineColor || fromData.getItemVisual(idx, 'color')
- });
- lineData.setItemLayout(idx, [fromData.getItemLayout(idx), toData.getItemLayout(idx)]);
- lineData.setItemVisual(idx, {
- 'fromSymbolSize': fromData.getItemVisual(idx, 'symbolSize'),
- 'fromSymbol': fromData.getItemVisual(idx, 'symbol'),
- 'toSymbolSize': toData.getItemVisual(idx, 'symbolSize'),
- 'toSymbol': toData.getItemVisual(idx, 'symbol')
- });
- });
- lineDraw.updateData(lineData); // Set host model for tooltip
- // FIXME
-
- mlData.line.eachItemGraphicEl(function (el, idx) {
- el.traverse(function (child) {
- child.dataModel = mlModel;
- });
- });
-
- function updateDataVisualAndLayout(data, idx, isFrom) {
- var itemModel = data.getItemModel(idx);
- updateSingleMarkerEndLayout(data, idx, isFrom, seriesModel, api);
- data.setItemVisual(idx, {
- symbolSize: itemModel.get('symbolSize') || symbolSize[isFrom ? 0 : 1],
- symbol: itemModel.get('symbol', true) || symbolType[isFrom ? 0 : 1],
- color: itemModel.get('itemStyle.color') || seriesData.getVisual('color')
- });
- }
-
- lineDraw.__keep = true;
- lineDraw.group.silent = mlModel.get('silent') || seriesModel.get('silent');
- }
- });
- /**
- * @inner
- * @param {module:echarts/coord/*} coordSys
- * @param {module:echarts/model/Series} seriesModel
- * @param {module:echarts/model/Model} mpModel
- */
-
-
- function createList(coordSys, seriesModel, mlModel) {
- var coordDimsInfos;
-
- if (coordSys) {
- coordDimsInfos = zrUtil.map(coordSys && coordSys.dimensions, function (coordDim) {
- var info = seriesModel.getData().getDimensionInfo(seriesModel.getData().mapDimension(coordDim)) || {}; // In map series data don't have lng and lat dimension. Fallback to same with coordSys
-
- return zrUtil.defaults({
- name: coordDim
- }, info);
- });
- } else {
- coordDimsInfos = [{
- name: 'value',
- type: 'float'
- }];
- }
-
- var fromData = new List(coordDimsInfos, mlModel);
- var toData = new List(coordDimsInfos, mlModel); // No dimensions
-
- var lineData = new List([], mlModel);
- var optData = zrUtil.map(mlModel.get('data'), zrUtil.curry(markLineTransform, seriesModel, coordSys, mlModel));
-
- if (coordSys) {
- optData = zrUtil.filter(optData, zrUtil.curry(markLineFilter, coordSys));
- }
-
- var dimValueGetter = coordSys ? markerHelper.dimValueGetter : function (item) {
- return item.value;
- };
- fromData.initData(zrUtil.map(optData, function (item) {
- return item[0];
- }), null, dimValueGetter);
- toData.initData(zrUtil.map(optData, function (item) {
- return item[1];
- }), null, dimValueGetter);
- lineData.initData(zrUtil.map(optData, function (item) {
- return item[2];
- }));
- lineData.hasItemOption = true;
- return {
- from: fromData,
- to: toData,
- line: lineData
- };
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2774:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- __webpack_require__(2775);
-
- __webpack_require__(2776);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- echarts.registerPreprocessor(function (opt) {
- // Make sure markArea component is enabled
- opt.markArea = opt.markArea || {};
- });
-
- /***/ }),
-
- /***/ 2775:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var MarkerModel = __webpack_require__(1922);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = MarkerModel.extend({
- type: 'markArea',
- defaultOption: {
- zlevel: 0,
- // PENDING
- z: 1,
- tooltip: {
- trigger: 'item'
- },
- // markArea should fixed on the coordinate system
- animation: false,
- label: {
- show: true,
- position: 'top'
- },
- itemStyle: {
- // color and borderColor default to use color from series
- // color: 'auto'
- // borderColor: 'auto'
- borderWidth: 0
- },
- emphasis: {
- label: {
- show: true,
- position: 'top'
- }
- }
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2776:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var colorUtil = __webpack_require__(1438);
-
- var List = __webpack_require__(1403);
-
- var numberUtil = __webpack_require__(985);
-
- var graphic = __webpack_require__(906);
-
- var markerHelper = __webpack_require__(1923);
-
- var MarkerView = __webpack_require__(1924);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // TODO Better on polar
- var markAreaTransform = function (seriesModel, coordSys, maModel, item) {
- var lt = markerHelper.dataTransform(seriesModel, item[0]);
- var rb = markerHelper.dataTransform(seriesModel, item[1]);
- var retrieve = zrUtil.retrieve; // FIXME make sure lt is less than rb
-
- var ltCoord = lt.coord;
- var rbCoord = rb.coord;
- ltCoord[0] = retrieve(ltCoord[0], -Infinity);
- ltCoord[1] = retrieve(ltCoord[1], -Infinity);
- rbCoord[0] = retrieve(rbCoord[0], Infinity);
- rbCoord[1] = retrieve(rbCoord[1], Infinity); // Merge option into one
-
- var result = zrUtil.mergeAll([{}, lt, rb]);
- result.coord = [lt.coord, rb.coord];
- result.x0 = lt.x;
- result.y0 = lt.y;
- result.x1 = rb.x;
- result.y1 = rb.y;
- return result;
- };
-
- function isInifinity(val) {
- return !isNaN(val) && !isFinite(val);
- } // If a markArea has one dim
-
-
- function ifMarkLineHasOnlyDim(dimIndex, fromCoord, toCoord, coordSys) {
- var otherDimIndex = 1 - dimIndex;
- return isInifinity(fromCoord[otherDimIndex]) && isInifinity(toCoord[otherDimIndex]);
- }
-
- function markAreaFilter(coordSys, item) {
- var fromCoord = item.coord[0];
- var toCoord = item.coord[1];
-
- if (coordSys.type === 'cartesian2d') {
- // In case
- // {
- // markArea: {
- // data: [{ yAxis: 2 }]
- // }
- // }
- if (fromCoord && toCoord && (ifMarkLineHasOnlyDim(1, fromCoord, toCoord, coordSys) || ifMarkLineHasOnlyDim(0, fromCoord, toCoord, coordSys))) {
- return true;
- }
- }
-
- return markerHelper.dataFilter(coordSys, {
- coord: fromCoord,
- x: item.x0,
- y: item.y0
- }) || markerHelper.dataFilter(coordSys, {
- coord: toCoord,
- x: item.x1,
- y: item.y1
- });
- } // dims can be ['x0', 'y0'], ['x1', 'y1'], ['x0', 'y1'], ['x1', 'y0']
-
-
- function getSingleMarkerEndPoint(data, idx, dims, seriesModel, api) {
- var coordSys = seriesModel.coordinateSystem;
- var itemModel = data.getItemModel(idx);
- var point;
- var xPx = numberUtil.parsePercent(itemModel.get(dims[0]), api.getWidth());
- var yPx = numberUtil.parsePercent(itemModel.get(dims[1]), api.getHeight());
-
- if (!isNaN(xPx) && !isNaN(yPx)) {
- point = [xPx, yPx];
- } else {
- // Chart like bar may have there own marker positioning logic
- if (seriesModel.getMarkerPosition) {
- // Use the getMarkerPoisition
- point = seriesModel.getMarkerPosition(data.getValues(dims, idx));
- } else {
- var x = data.get(dims[0], idx);
- var y = data.get(dims[1], idx);
- var pt = [x, y];
- coordSys.clampData && coordSys.clampData(pt, pt);
- point = coordSys.dataToPoint(pt, true);
- }
-
- if (coordSys.type === 'cartesian2d') {
- var xAxis = coordSys.getAxis('x');
- var yAxis = coordSys.getAxis('y');
- var x = data.get(dims[0], idx);
- var y = data.get(dims[1], idx);
-
- if (isInifinity(x)) {
- point[0] = xAxis.toGlobalCoord(xAxis.getExtent()[dims[0] === 'x0' ? 0 : 1]);
- } else if (isInifinity(y)) {
- point[1] = yAxis.toGlobalCoord(yAxis.getExtent()[dims[1] === 'y0' ? 0 : 1]);
- }
- } // Use x, y if has any
-
-
- if (!isNaN(xPx)) {
- point[0] = xPx;
- }
-
- if (!isNaN(yPx)) {
- point[1] = yPx;
- }
- }
-
- return point;
- }
-
- var dimPermutations = [['x0', 'y0'], ['x1', 'y0'], ['x1', 'y1'], ['x0', 'y1']];
- MarkerView.extend({
- type: 'markArea',
- // updateLayout: function (markAreaModel, ecModel, api) {
- // ecModel.eachSeries(function (seriesModel) {
- // var maModel = seriesModel.markAreaModel;
- // if (maModel) {
- // var areaData = maModel.getData();
- // areaData.each(function (idx) {
- // var points = zrUtil.map(dimPermutations, function (dim) {
- // return getSingleMarkerEndPoint(areaData, idx, dim, seriesModel, api);
- // });
- // // Layout
- // areaData.setItemLayout(idx, points);
- // var el = areaData.getItemGraphicEl(idx);
- // el.setShape('points', points);
- // });
- // }
- // }, this);
- // },
- updateTransform: function (markAreaModel, ecModel, api) {
- ecModel.eachSeries(function (seriesModel) {
- var maModel = seriesModel.markAreaModel;
-
- if (maModel) {
- var areaData = maModel.getData();
- areaData.each(function (idx) {
- var points = zrUtil.map(dimPermutations, function (dim) {
- return getSingleMarkerEndPoint(areaData, idx, dim, seriesModel, api);
- }); // Layout
-
- areaData.setItemLayout(idx, points);
- var el = areaData.getItemGraphicEl(idx);
- el.setShape('points', points);
- });
- }
- }, this);
- },
- renderSeries: function (seriesModel, maModel, ecModel, api) {
- var coordSys = seriesModel.coordinateSystem;
- var seriesId = seriesModel.id;
- var seriesData = seriesModel.getData();
- var areaGroupMap = this.markerGroupMap;
- var polygonGroup = areaGroupMap.get(seriesId) || areaGroupMap.set(seriesId, {
- group: new graphic.Group()
- });
- this.group.add(polygonGroup.group);
- polygonGroup.__keep = true;
- var areaData = createList(coordSys, seriesModel, maModel); // Line data for tooltip and formatter
-
- maModel.setData(areaData); // Update visual and layout of line
-
- areaData.each(function (idx) {
- // Layout
- areaData.setItemLayout(idx, zrUtil.map(dimPermutations, function (dim) {
- return getSingleMarkerEndPoint(areaData, idx, dim, seriesModel, api);
- })); // Visual
-
- areaData.setItemVisual(idx, {
- color: seriesData.getVisual('color')
- });
- });
- areaData.diff(polygonGroup.__data).add(function (idx) {
- var polygon = new graphic.Polygon({
- shape: {
- points: areaData.getItemLayout(idx)
- }
- });
- areaData.setItemGraphicEl(idx, polygon);
- polygonGroup.group.add(polygon);
- }).update(function (newIdx, oldIdx) {
- var polygon = polygonGroup.__data.getItemGraphicEl(oldIdx);
-
- graphic.updateProps(polygon, {
- shape: {
- points: areaData.getItemLayout(newIdx)
- }
- }, maModel, newIdx);
- polygonGroup.group.add(polygon);
- areaData.setItemGraphicEl(newIdx, polygon);
- }).remove(function (idx) {
- var polygon = polygonGroup.__data.getItemGraphicEl(idx);
-
- polygonGroup.group.remove(polygon);
- }).execute();
- areaData.eachItemGraphicEl(function (polygon, idx) {
- var itemModel = areaData.getItemModel(idx);
- var labelModel = itemModel.getModel('label');
- var labelHoverModel = itemModel.getModel('emphasis.label');
- var color = areaData.getItemVisual(idx, 'color');
- polygon.useStyle(zrUtil.defaults(itemModel.getModel('itemStyle').getItemStyle(), {
- fill: colorUtil.modifyAlpha(color, 0.4),
- stroke: color
- }));
- polygon.hoverStyle = itemModel.getModel('emphasis.itemStyle').getItemStyle();
- graphic.setLabelStyle(polygon.style, polygon.hoverStyle, labelModel, labelHoverModel, {
- labelFetcher: maModel,
- labelDataIndex: idx,
- defaultText: areaData.getName(idx) || '',
- isRectText: true,
- autoColor: color
- });
- graphic.setHoverStyle(polygon, {});
- polygon.dataModel = maModel;
- });
- polygonGroup.__data = areaData;
- polygonGroup.group.silent = maModel.get('silent') || seriesModel.get('silent');
- }
- });
- /**
- * @inner
- * @param {module:echarts/coord/*} coordSys
- * @param {module:echarts/model/Series} seriesModel
- * @param {module:echarts/model/Model} mpModel
- */
-
- function createList(coordSys, seriesModel, maModel) {
- var coordDimsInfos;
- var areaData;
- var dims = ['x0', 'y0', 'x1', 'y1'];
-
- if (coordSys) {
- coordDimsInfos = zrUtil.map(coordSys && coordSys.dimensions, function (coordDim) {
- var data = seriesModel.getData();
- var info = data.getDimensionInfo(data.mapDimension(coordDim)) || {}; // In map series data don't have lng and lat dimension. Fallback to same with coordSys
-
- return zrUtil.defaults({
- name: coordDim
- }, info);
- });
- areaData = new List(zrUtil.map(dims, function (dim, idx) {
- return {
- name: dim,
- type: coordDimsInfos[idx % 2].type
- };
- }), maModel);
- } else {
- coordDimsInfos = [{
- name: 'value',
- type: 'float'
- }];
- areaData = new List(coordDimsInfos, maModel);
- }
-
- var optData = zrUtil.map(maModel.get('data'), zrUtil.curry(markAreaTransform, seriesModel, coordSys, maModel));
-
- if (coordSys) {
- optData = zrUtil.filter(optData, zrUtil.curry(markAreaFilter, coordSys));
- }
-
- var dimValueGetter = coordSys ? function (item, dimName, dataIndex, dimIndex) {
- return item.coord[Math.floor(dimIndex / 2)][dimIndex % 2];
- } : function (item) {
- return item.value;
- };
- areaData.initData(optData, null, dimValueGetter);
- areaData.hasItemOption = true;
- return areaData;
- }
-
- /***/ }),
-
- /***/ 2777:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- __webpack_require__(2324);
-
- __webpack_require__(2780);
-
- __webpack_require__(2781);
-
- __webpack_require__(2782);
-
- /***/ }),
-
- /***/ 2778:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function legendSelectActionHandler(methodName, payload, ecModel) {
- var selectedMap = {};
- var isToggleSelect = methodName === 'toggleSelected';
- var isSelected; // Update all legend components
-
- ecModel.eachComponent('legend', function (legendModel) {
- if (isToggleSelect && isSelected != null) {
- // Force other legend has same selected status
- // Or the first is toggled to true and other are toggled to false
- // In the case one legend has some item unSelected in option. And if other legend
- // doesn't has the item, they will assume it is selected.
- legendModel[isSelected ? 'select' : 'unSelect'](payload.name);
- } else if (methodName === 'allSelect' || methodName === 'inverseSelect') {
- legendModel[methodName]();
- } else {
- legendModel[methodName](payload.name);
- isSelected = legendModel.isSelected(payload.name);
- }
-
- var legendData = legendModel.getData();
- zrUtil.each(legendData, function (model) {
- var name = model.get('name'); // Wrap element
-
- if (name === '\n' || name === '') {
- return;
- }
-
- var isItemSelected = legendModel.isSelected(name);
-
- if (selectedMap.hasOwnProperty(name)) {
- // Unselected if any legend is unselected
- selectedMap[name] = selectedMap[name] && isItemSelected;
- } else {
- selectedMap[name] = isItemSelected;
- }
- });
- }); // Return the event explicitly
-
- return methodName === 'allSelect' || methodName === 'inverseSelect' ? {
- selected: selectedMap
- } : {
- name: payload.name,
- selected: selectedMap
- };
- }
- /**
- * @event legendToggleSelect
- * @type {Object}
- * @property {string} type 'legendToggleSelect'
- * @property {string} [from]
- * @property {string} name Series name or data item name
- */
-
-
- echarts.registerAction('legendToggleSelect', 'legendselectchanged', zrUtil.curry(legendSelectActionHandler, 'toggleSelected'));
- echarts.registerAction('legendAllSelect', 'legendselectall', zrUtil.curry(legendSelectActionHandler, 'allSelect'));
- echarts.registerAction('legendInverseSelect', 'legendinverseselect', zrUtil.curry(legendSelectActionHandler, 'inverseSelect'));
- /**
- * @event legendSelect
- * @type {Object}
- * @property {string} type 'legendSelect'
- * @property {string} name Series name or data item name
- */
-
- echarts.registerAction('legendSelect', 'legendselected', zrUtil.curry(legendSelectActionHandler, 'select'));
- /**
- * @event legendUnSelect
- * @type {Object}
- * @property {string} type 'legendUnSelect'
- * @property {string} name Series name or data item name
- */
-
- echarts.registerAction('legendUnSelect', 'legendunselected', zrUtil.curry(legendSelectActionHandler, 'unSelect'));
-
- /***/ }),
-
- /***/ 2779:
- /***/ (function(module, exports) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- function _default(ecModel) {
- var legendModels = ecModel.findComponents({
- mainType: 'legend'
- });
-
- if (legendModels && legendModels.length) {
- ecModel.filterSeries(function (series) {
- // If in any legend component the status is not selected.
- // Because in legend series is assumed selected when it is not in the legend data.
- for (var i = 0; i < legendModels.length; i++) {
- if (!legendModels[i].isSelected(series.name)) {
- return false;
- }
- }
-
- return true;
- });
- }
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2780:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var LegendModel = __webpack_require__(2325);
-
- var _layout = __webpack_require__(1171);
-
- var mergeLayoutParam = _layout.mergeLayoutParam;
- var getLayoutParams = _layout.getLayoutParams;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var ScrollableLegendModel = LegendModel.extend({
- type: 'legend.scroll',
-
- /**
- * @param {number} scrollDataIndex
- */
- setScrollDataIndex: function (scrollDataIndex) {
- this.option.scrollDataIndex = scrollDataIndex;
- },
- defaultOption: {
- scrollDataIndex: 0,
- pageButtonItemGap: 5,
- pageButtonGap: null,
- pageButtonPosition: 'end',
- // 'start' or 'end'
- pageFormatter: '{current}/{total}',
- // If null/undefined, do not show page.
- 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,
- // Can be [10, 3], which represents [width, height]
- pageTextStyle: {
- color: '#333'
- },
- animationDurationUpdate: 800
- },
-
- /**
- * @override
- */
- init: function (option, parentModel, ecModel, extraOpt) {
- var inputPositionParams = getLayoutParams(option);
- ScrollableLegendModel.superCall(this, 'init', option, parentModel, ecModel, extraOpt);
- mergeAndNormalizeLayoutParams(this, option, inputPositionParams);
- },
-
- /**
- * @override
- */
- mergeOption: function (option, extraOpt) {
- ScrollableLegendModel.superCall(this, 'mergeOption', option, extraOpt);
- mergeAndNormalizeLayoutParams(this, this.option, option);
- }
- }); // Do not `ignoreSize` to enable setting {left: 10, right: 10}.
-
- 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 _default = ScrollableLegendModel;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2781:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var graphic = __webpack_require__(906);
-
- var layoutUtil = __webpack_require__(1171);
-
- var LegendView = __webpack_require__(2326);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * Separate legend and scrollable legend to reduce package size.
- */
- var Group = graphic.Group;
- var WH = ['width', 'height'];
- var XY = ['x', 'y'];
- var ScrollableLegendView = LegendView.extend({
- type: 'legend.scroll',
- newlineDisabled: true,
- init: function () {
- ScrollableLegendView.superCall(this, 'init');
- /**
- * @private
- * @type {number} For `scroll`.
- */
-
- this._currentIndex = 0;
- /**
- * @private
- * @type {module:zrender/container/Group}
- */
-
- this.group.add(this._containerGroup = new Group());
-
- this._containerGroup.add(this.getContentGroup());
- /**
- * @private
- * @type {module:zrender/container/Group}
- */
-
-
- this.group.add(this._controllerGroup = new Group());
- /**
- *
- * @private
- */
-
- this._showController;
- },
-
- /**
- * @override
- */
- resetInner: function () {
- ScrollableLegendView.superCall(this, 'resetInner');
-
- this._controllerGroup.removeAll();
-
- this._containerGroup.removeClipPath();
-
- this._containerGroup.__rectSize = null;
- },
-
- /**
- * @override
- */
- renderInner: function (itemAlign, legendModel, ecModel, api, selector, orient, selectorPosition) {
- var me = this; // Render content items.
-
- ScrollableLegendView.superCall(this, 'renderInner', itemAlign, legendModel, ecModel, api, selector, orient, selectorPosition);
- var controllerGroup = this._controllerGroup; // FIXME: support be 'auto' adapt to size number text length,
- // e.g., '3/12345' should not overlap with the control arrow button.
-
- var pageIconSize = legendModel.get('pageIconSize', true);
-
- if (!zrUtil.isArray(pageIconSize)) {
- pageIconSize = [pageIconSize, pageIconSize];
- }
-
- createPageButton('pagePrev', 0);
- var pageTextStyleModel = legendModel.getModel('pageTextStyle');
- controllerGroup.add(new graphic.Text({
- name: 'pageText',
- style: {
- textFill: pageTextStyleModel.getTextColor(),
- font: pageTextStyleModel.getFont(),
- textVerticalAlign: 'middle',
- textAlign: 'center'
- },
- silent: true
- }));
- createPageButton('pageNext', 1);
-
- function createPageButton(name, iconIdx) {
- var pageDataIndexName = name + 'DataIndex';
- var icon = graphic.createIcon(legendModel.get('pageIcons', true)[legendModel.getOrient().name][iconIdx], {
- // Buttons will be created in each render, so we do not need
- // to worry about avoiding using legendModel kept in scope.
- onclick: zrUtil.bind(me._pageGo, me, pageDataIndexName, legendModel, api)
- }, {
- x: -pageIconSize[0] / 2,
- y: -pageIconSize[1] / 2,
- width: pageIconSize[0],
- height: pageIconSize[1]
- });
- icon.name = name;
- controllerGroup.add(icon);
- }
- },
-
- /**
- * @override
- */
- layoutInner: function (legendModel, itemAlign, maxSize, isFirstRender, selector, selectorPosition) {
- var selectorGroup = this.getSelectorGroup();
- var orientIdx = legendModel.getOrient().index;
- var wh = WH[orientIdx];
- var xy = XY[orientIdx];
- var hw = WH[1 - orientIdx];
- var yx = XY[1 - orientIdx];
- selector && layoutUtil.box( // Buttons in selectorGroup always layout horizontally
- 'horizontal', selectorGroup, legendModel.get('selectorItemGap', true));
- var selectorButtonGap = legendModel.get('selectorButtonGap', true);
- var selectorRect = selectorGroup.getBoundingRect();
- var selectorPos = [-selectorRect.x, -selectorRect.y];
- var processMaxSize = zrUtil.clone(maxSize);
- selector && (processMaxSize[wh] = maxSize[wh] - selectorRect[wh] - selectorButtonGap);
-
- var mainRect = this._layoutContentAndController(legendModel, isFirstRender, processMaxSize, orientIdx, wh, hw, yx);
-
- if (selector) {
- if (selectorPosition === 'end') {
- selectorPos[orientIdx] += mainRect[wh] + selectorButtonGap;
- } else {
- var offset = selectorRect[wh] + selectorButtonGap;
- selectorPos[orientIdx] -= offset;
- mainRect[xy] -= offset;
- }
-
- mainRect[wh] += selectorRect[wh] + selectorButtonGap;
- selectorPos[1 - orientIdx] += mainRect[yx] + mainRect[hw] / 2 - selectorRect[hw] / 2;
- mainRect[hw] = Math.max(mainRect[hw], selectorRect[hw]);
- mainRect[yx] = Math.min(mainRect[yx], selectorRect[yx] + selectorPos[1 - orientIdx]);
- selectorGroup.attr('position', selectorPos);
- }
-
- return mainRect;
- },
- _layoutContentAndController: function (legendModel, isFirstRender, maxSize, orientIdx, wh, hw, yx) {
- var contentGroup = this.getContentGroup();
- var containerGroup = this._containerGroup;
- var controllerGroup = this._controllerGroup; // Place items in contentGroup.
-
- layoutUtil.box(legendModel.get('orient'), contentGroup, legendModel.get('itemGap'), !orientIdx ? null : maxSize.width, orientIdx ? null : maxSize.height);
- layoutUtil.box( // Buttons in controller are layout always horizontally.
- 'horizontal', controllerGroup, legendModel.get('pageButtonItemGap', true));
- var contentRect = contentGroup.getBoundingRect();
- var controllerRect = controllerGroup.getBoundingRect();
- var showController = this._showController = contentRect[wh] > maxSize[wh];
- var contentPos = [-contentRect.x, -contentRect.y]; // Remain contentPos when scroll animation perfroming.
- // If first rendering, `contentGroup.position` is [0, 0], which
- // does not make sense and may cause unexepcted animation if adopted.
-
- if (!isFirstRender) {
- contentPos[orientIdx] = contentGroup.position[orientIdx];
- } // Layout container group based on 0.
-
-
- var containerPos = [0, 0];
- var controllerPos = [-controllerRect.x, -controllerRect.y];
- var pageButtonGap = zrUtil.retrieve2(legendModel.get('pageButtonGap', true), legendModel.get('itemGap', true)); // Place containerGroup and controllerGroup and contentGroup.
-
- if (showController) {
- var pageButtonPosition = legendModel.get('pageButtonPosition', true); // controller is on the right / bottom.
-
- if (pageButtonPosition === 'end') {
- controllerPos[orientIdx] += maxSize[wh] - controllerRect[wh];
- } // controller is on the left / top.
- else {
- containerPos[orientIdx] += controllerRect[wh] + pageButtonGap;
- }
- } // Always align controller to content as 'middle'.
-
-
- controllerPos[1 - orientIdx] += contentRect[hw] / 2 - controllerRect[hw] / 2;
- contentGroup.attr('position', contentPos);
- containerGroup.attr('position', containerPos);
- controllerGroup.attr('position', controllerPos); // Calculate `mainRect` and set `clipPath`.
- // mainRect should not be calculated by `this.group.getBoundingRect()`
- // for sake of the overflow.
-
- var mainRect = {
- x: 0,
- y: 0
- }; // Consider content may be overflow (should be clipped).
-
- mainRect[wh] = showController ? maxSize[wh] : contentRect[wh];
- mainRect[hw] = Math.max(contentRect[hw], controllerRect[hw]); // `containerRect[yx] + containerPos[1 - orientIdx]` is 0.
-
- mainRect[yx] = Math.min(0, controllerRect[yx] + controllerPos[1 - orientIdx]);
- containerGroup.__rectSize = maxSize[wh];
-
- if (showController) {
- var clipShape = {
- x: 0,
- y: 0
- };
- clipShape[wh] = Math.max(maxSize[wh] - controllerRect[wh] - pageButtonGap, 0);
- clipShape[hw] = mainRect[hw];
- containerGroup.setClipPath(new graphic.Rect({
- shape: clipShape
- })); // Consider content may be larger than container, container rect
- // can not be obtained from `containerGroup.getBoundingRect()`.
-
- containerGroup.__rectSize = clipShape[wh];
- } else {
- // Do not remove or ignore controller. Keep them set as placeholders.
- controllerGroup.eachChild(function (child) {
- child.attr({
- invisible: true,
- silent: true
- });
- });
- } // Content translate animation.
-
-
- var pageInfo = this._getPageInfo(legendModel);
-
- pageInfo.pageIndex != null && graphic.updateProps(contentGroup, {
- position: pageInfo.contentPosition
- }, // When switch from "show controller" to "not show controller", view should be
- // updated immediately without animation, otherwise causes weird effect.
- showController ? legendModel : false);
-
- this._updatePageInfoView(legendModel, pageInfo);
-
- return mainRect;
- },
- _pageGo: function (to, legendModel, api) {
- var scrollDataIndex = this._getPageInfo(legendModel)[to];
-
- scrollDataIndex != null && api.dispatchAction({
- type: 'legendScroll',
- scrollDataIndex: scrollDataIndex,
- legendId: legendModel.id
- });
- },
- _updatePageInfoView: function (legendModel, pageInfo) {
- var controllerGroup = this._controllerGroup;
- zrUtil.each(['pagePrev', 'pageNext'], function (name) {
- var canJump = pageInfo[name + 'DataIndex'] != null;
- var icon = controllerGroup.childOfName(name);
-
- if (icon) {
- icon.setStyle('fill', canJump ? legendModel.get('pageIconColor', true) : legendModel.get('pageIconInactiveColor', true));
- icon.cursor = canJump ? 'pointer' : 'default';
- }
- });
- var pageText = controllerGroup.childOfName('pageText');
- var pageFormatter = legendModel.get('pageFormatter');
- var pageIndex = pageInfo.pageIndex;
- var current = pageIndex != null ? pageIndex + 1 : 0;
- var total = pageInfo.pageCount;
- pageText && pageFormatter && pageText.setStyle('text', zrUtil.isString(pageFormatter) ? pageFormatter.replace('{current}', current).replace('{total}', total) : pageFormatter({
- current: current,
- total: total
- }));
- },
-
- /**
- * @param {module:echarts/model/Model} legendModel
- * @return {Object} {
- * contentPosition: Array.<number>, null when data item not found.
- * pageIndex: number, null when data item not found.
- * pageCount: number, always be a number, can be 0.
- * pagePrevDataIndex: number, null when no previous page.
- * pageNextDataIndex: number, null when no next page.
- * }
- */
- _getPageInfo: function (legendModel) {
- var scrollDataIndex = legendModel.get('scrollDataIndex', true);
- var contentGroup = this.getContentGroup();
- var containerRectSize = this._containerGroup.__rectSize;
- var orientIdx = legendModel.getOrient().index;
- var wh = WH[orientIdx];
- var xy = XY[orientIdx];
-
- var targetItemIndex = this._findTargetItemIndex(scrollDataIndex);
-
- var children = contentGroup.children();
- var targetItem = children[targetItemIndex];
- var itemCount = children.length;
- var pCount = !itemCount ? 0 : 1;
- var result = {
- contentPosition: contentGroup.position.slice(),
- pageCount: pCount,
- pageIndex: pCount - 1,
- pagePrevDataIndex: null,
- pageNextDataIndex: null
- };
-
- if (!targetItem) {
- return result;
- }
-
- var targetItemInfo = getItemInfo(targetItem);
- result.contentPosition[orientIdx] = -targetItemInfo.s; // Strategy:
- // (1) Always align based on the left/top most item.
- // (2) It is user-friendly that the last item shown in the
- // current window is shown at the begining of next window.
- // Otherwise if half of the last item is cut by the window,
- // it will have no chance to display entirely.
- // (3) Consider that item size probably be different, we
- // have calculate pageIndex by size rather than item index,
- // and we can not get page index directly by division.
- // (4) The window is to narrow to contain more than
- // one item, we should make sure that the page can be fliped.
-
- for (var i = targetItemIndex + 1, winStartItemInfo = targetItemInfo, winEndItemInfo = targetItemInfo, currItemInfo = null; i <= itemCount; ++i) {
- currItemInfo = getItemInfo(children[i]);
-
- if ( // Half of the last item is out of the window.
- !currItemInfo && winEndItemInfo.e > winStartItemInfo.s + containerRectSize || // If the current item does not intersect with the window, the new page
- // can be started at the current item or the last item.
- currItemInfo && !intersect(currItemInfo, winStartItemInfo.s)) {
- if (winEndItemInfo.i > winStartItemInfo.i) {
- winStartItemInfo = winEndItemInfo;
- } else {
- // e.g., when page size is smaller than item size.
- winStartItemInfo = currItemInfo;
- }
-
- if (winStartItemInfo) {
- if (result.pageNextDataIndex == null) {
- result.pageNextDataIndex = winStartItemInfo.i;
- }
-
- ++result.pageCount;
- }
- }
-
- winEndItemInfo = currItemInfo;
- }
-
- for (var i = targetItemIndex - 1, winStartItemInfo = targetItemInfo, winEndItemInfo = targetItemInfo, currItemInfo = null; i >= -1; --i) {
- currItemInfo = getItemInfo(children[i]);
-
- if ( // If the the end item does not intersect with the window started
- // from the current item, a page can be settled.
- (!currItemInfo || !intersect(winEndItemInfo, currItemInfo.s)) && // e.g., when page size is smaller than item size.
- winStartItemInfo.i < winEndItemInfo.i) {
- winEndItemInfo = winStartItemInfo;
-
- if (result.pagePrevDataIndex == null) {
- result.pagePrevDataIndex = winStartItemInfo.i;
- }
-
- ++result.pageCount;
- ++result.pageIndex;
- }
-
- winStartItemInfo = currItemInfo;
- }
-
- return result;
-
- function getItemInfo(el) {
- if (el) {
- var itemRect = el.getBoundingRect();
- var start = itemRect[xy] + el.position[orientIdx];
- return {
- s: start,
- e: start + itemRect[wh],
- i: el.__legendDataIndex
- };
- }
- }
-
- function intersect(itemInfo, winStart) {
- return itemInfo.e >= winStart && itemInfo.s <= winStart + containerRectSize;
- }
- },
- _findTargetItemIndex: function (targetDataIndex) {
- var index;
- var contentGroup = this.getContentGroup();
- var defaultIndex;
-
- if (this._showController) {
- contentGroup.eachChild(function (child, idx) {
- var legendDataIdx = child.__legendDataIndex; // FIXME
- // If the given targetDataIndex (from model) is illegal,
- // we use defualtIndex. But the index on the legend model and
- // action payload is still illegal. That case will not be
- // changed until some scenario requires.
-
- if (defaultIndex == null && legendDataIdx != null) {
- defaultIndex = idx;
- }
-
- if (legendDataIdx === targetDataIndex) {
- index = idx;
- }
- });
- }
-
- return index != null ? index : defaultIndex;
- }
- });
- var _default = ScrollableLegendView;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2782:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var echarts = __webpack_require__(881);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /**
- * @event legendScroll
- * @type {Object}
- * @property {string} type 'legendScroll'
- * @property {string} scrollDataIndex
- */
- echarts.registerAction('legendScroll', 'legendscroll', function (payload, ecModel) {
- var scrollDataIndex = payload.scrollDataIndex;
- scrollDataIndex != null && ecModel.eachComponent({
- mainType: 'legend',
- subType: 'scroll',
- query: payload
- }, function (legendModel) {
- legendModel.setScrollDataIndex(scrollDataIndex);
- });
- });
-
- /***/ }),
-
- /***/ 2783:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- __webpack_require__(2327);
-
- __webpack_require__(2328);
-
- /***/ }),
-
- /***/ 2784:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var DataZoomModel = __webpack_require__(1606);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var SliderZoomModel = DataZoomModel.extend({
- type: 'dataZoom.slider',
- layoutMode: 'box',
-
- /**
- * @protected
- */
- defaultOption: {
- show: true,
- // ph => placeholder. Using placehoder here because
- // deault value can only be drived in view stage.
- right: 'ph',
- // Default align to grid rect.
- top: 'ph',
- // Default align to grid rect.
- width: 'ph',
- // Default align to grid rect.
- height: 'ph',
- // Default align to grid rect.
- left: null,
- // Default align to grid rect.
- bottom: null,
- // Default align to grid rect.
- backgroundColor: 'rgba(47,69,84,0)',
- // Background of slider zoom component.
- // dataBackgroundColor: '#ddd', // Background coor of data shadow and border of box,
- // highest priority, remain for compatibility of
- // previous version, but not recommended any more.
- dataBackground: {
- lineStyle: {
- color: '#2f4554',
- width: 0.5,
- opacity: 0.3
- },
- areaStyle: {
- color: 'rgba(47,69,84,0.3)',
- opacity: 0.3
- }
- },
- borderColor: '#ddd',
- // border color of the box. For compatibility,
- // if dataBackgroundColor is set, borderColor
- // is ignored.
- fillerColor: 'rgba(167,183,204,0.4)',
- // Color of selected area.
- // handleColor: 'rgba(89,170,216,0.95)', // Color of handle.
- // handleIcon: 'path://M4.9,17.8c0-1.4,4.5-10.5,5.5-12.4c0-0.1,0.6-1.1,0.9-1.1c0.4,0,0.9,1,0.9,1.1c1.1,2.2,5.4,11,5.4,12.4v17.8c0,1.5-0.6,2.1-1.3,2.1H6.1c-0.7,0-1.3-0.6-1.3-2.1V17.8z',
-
- /* eslint-disable */
- handleIcon: 'M8.2,13.6V3.9H6.3v9.7H3.1v14.9h3.3v9.7h1.8v-9.7h3.3V13.6H8.2z M9.7,24.4H4.8v-1.4h4.9V24.4z M9.7,19.1H4.8v-1.4h4.9V19.1z',
-
- /* eslint-enable */
- // Percent of the slider height
- handleSize: '100%',
- handleStyle: {
- color: '#a7b7cc'
- },
- labelPrecision: null,
- labelFormatter: null,
- showDetail: true,
- showDataShadow: 'auto',
- // Default auto decision.
- realtime: true,
- zoomLock: false,
- // Whether disable zoom.
- textStyle: {
- color: '#333'
- }
- }
- });
- var _default = SliderZoomModel;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2785:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var eventTool = __webpack_require__(1437);
-
- var graphic = __webpack_require__(906);
-
- var throttle = __webpack_require__(1482);
-
- var DataZoomView = __webpack_require__(1607);
-
- var numberUtil = __webpack_require__(985);
-
- var layout = __webpack_require__(1171);
-
- var sliderMove = __webpack_require__(1605);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var Rect = graphic.Rect;
- var linearMap = numberUtil.linearMap;
- var asc = numberUtil.asc;
- var bind = zrUtil.bind;
- var each = zrUtil.each; // Constants
-
- var DEFAULT_LOCATION_EDGE_GAP = 7;
- var DEFAULT_FRAME_BORDER_WIDTH = 1;
- var DEFAULT_FILLER_SIZE = 30;
- var HORIZONTAL = 'horizontal';
- var VERTICAL = 'vertical';
- var LABEL_GAP = 5;
- var SHOW_DATA_SHADOW_SERIES_TYPE = ['line', 'bar', 'candlestick', 'scatter'];
- var SliderZoomView = DataZoomView.extend({
- type: 'dataZoom.slider',
- init: function (ecModel, api) {
- /**
- * @private
- * @type {Object}
- */
- this._displayables = {};
- /**
- * @private
- * @type {string}
- */
-
- this._orient;
- /**
- * [0, 100]
- * @private
- */
-
- this._range;
- /**
- * [coord of the first handle, coord of the second handle]
- * @private
- */
-
- this._handleEnds;
- /**
- * [length, thick]
- * @private
- * @type {Array.<number>}
- */
-
- this._size;
- /**
- * @private
- * @type {number}
- */
-
- this._handleWidth;
- /**
- * @private
- * @type {number}
- */
-
- this._handleHeight;
- /**
- * @private
- */
-
- this._location;
- /**
- * @private
- */
-
- this._dragging;
- /**
- * @private
- */
-
- this._dataShadowInfo;
- this.api = api;
- },
-
- /**
- * @override
- */
- render: function (dataZoomModel, ecModel, api, payload) {
- SliderZoomView.superApply(this, 'render', arguments);
- throttle.createOrUpdate(this, '_dispatchZoomAction', this.dataZoomModel.get('throttle'), 'fixRate');
- this._orient = dataZoomModel.get('orient');
-
- if (this.dataZoomModel.get('show') === false) {
- this.group.removeAll();
- return;
- } // Notice: this._resetInterval() should not be executed when payload.type
- // is 'dataZoom', origin this._range should be maintained, otherwise 'pan'
- // or 'zoom' info will be missed because of 'throttle' of this.dispatchAction,
-
-
- if (!payload || payload.type !== 'dataZoom' || payload.from !== this.uid) {
- this._buildView();
- }
-
- this._updateView();
- },
-
- /**
- * @override
- */
- remove: function () {
- SliderZoomView.superApply(this, 'remove', arguments);
- throttle.clear(this, '_dispatchZoomAction');
- },
-
- /**
- * @override
- */
- dispose: function () {
- SliderZoomView.superApply(this, 'dispose', arguments);
- throttle.clear(this, '_dispatchZoomAction');
- },
- _buildView: function () {
- var thisGroup = this.group;
- thisGroup.removeAll();
-
- this._resetLocation();
-
- this._resetInterval();
-
- var barGroup = this._displayables.barGroup = new graphic.Group();
-
- this._renderBackground();
-
- this._renderHandle();
-
- this._renderDataShadow();
-
- thisGroup.add(barGroup);
-
- this._positionGroup();
- },
-
- /**
- * @private
- */
- _resetLocation: function () {
- var dataZoomModel = this.dataZoomModel;
- var api = this.api; // If some of x/y/width/height are not specified,
- // auto-adapt according to target grid.
-
- var coordRect = this._findCoordRect();
-
- var ecSize = {
- width: api.getWidth(),
- height: api.getHeight()
- }; // Default align by coordinate system rect.
-
- var positionInfo = this._orient === HORIZONTAL ? {
- // Why using 'right', because right should be used in vertical,
- // and it is better to be consistent for dealing with position param merge.
- right: ecSize.width - coordRect.x - coordRect.width,
- top: ecSize.height - DEFAULT_FILLER_SIZE - DEFAULT_LOCATION_EDGE_GAP,
- width: coordRect.width,
- height: DEFAULT_FILLER_SIZE
- } : {
- // vertical
- right: DEFAULT_LOCATION_EDGE_GAP,
- top: coordRect.y,
- width: DEFAULT_FILLER_SIZE,
- height: coordRect.height
- }; // Do not write back to option and replace value 'ph', because
- // the 'ph' value should be recalculated when resize.
-
- var layoutParams = layout.getLayoutParams(dataZoomModel.option); // Replace the placeholder value.
-
- zrUtil.each(['right', 'top', 'width', 'height'], function (name) {
- if (layoutParams[name] === 'ph') {
- layoutParams[name] = positionInfo[name];
- }
- });
- var layoutRect = layout.getLayoutRect(layoutParams, ecSize, dataZoomModel.padding);
- this._location = {
- x: layoutRect.x,
- y: layoutRect.y
- };
- this._size = [layoutRect.width, layoutRect.height];
- this._orient === VERTICAL && this._size.reverse();
- },
-
- /**
- * @private
- */
- _positionGroup: function () {
- var thisGroup = this.group;
- var location = this._location;
- var orient = this._orient; // Just use the first axis to determine mapping.
-
- var targetAxisModel = this.dataZoomModel.getFirstTargetAxisModel();
- var inverse = targetAxisModel && targetAxisModel.get('inverse');
- var barGroup = this._displayables.barGroup;
- var otherAxisInverse = (this._dataShadowInfo || {}).otherAxisInverse; // Transform barGroup.
-
- barGroup.attr(orient === HORIZONTAL && !inverse ? {
- scale: otherAxisInverse ? [1, 1] : [1, -1]
- } : orient === HORIZONTAL && inverse ? {
- scale: otherAxisInverse ? [-1, 1] : [-1, -1]
- } : orient === VERTICAL && !inverse ? {
- scale: otherAxisInverse ? [1, -1] : [1, 1],
- rotation: Math.PI / 2 // Dont use Math.PI, considering shadow direction.
-
- } : {
- scale: otherAxisInverse ? [-1, -1] : [-1, 1],
- rotation: Math.PI / 2
- }); // Position barGroup
-
- var rect = thisGroup.getBoundingRect([barGroup]);
- thisGroup.attr('position', [location.x - rect.x, location.y - rect.y]);
- },
-
- /**
- * @private
- */
- _getViewExtent: function () {
- return [0, this._size[0]];
- },
- _renderBackground: function () {
- var dataZoomModel = this.dataZoomModel;
- var size = this._size;
- var barGroup = this._displayables.barGroup;
- barGroup.add(new Rect({
- silent: true,
- shape: {
- x: 0,
- y: 0,
- width: size[0],
- height: size[1]
- },
- style: {
- fill: dataZoomModel.get('backgroundColor')
- },
- z2: -40
- })); // Click panel, over shadow, below handles.
-
- barGroup.add(new Rect({
- shape: {
- x: 0,
- y: 0,
- width: size[0],
- height: size[1]
- },
- style: {
- fill: 'transparent'
- },
- z2: 0,
- onclick: zrUtil.bind(this._onClickPanelClick, this)
- }));
- },
- _renderDataShadow: function () {
- var info = this._dataShadowInfo = this._prepareDataShadowInfo();
-
- if (!info) {
- return;
- }
-
- var size = this._size;
- var seriesModel = info.series;
- var data = seriesModel.getRawData();
- var otherDim = seriesModel.getShadowDim ? seriesModel.getShadowDim() // @see candlestick
- : info.otherDim;
-
- if (otherDim == null) {
- return;
- }
-
- var otherDataExtent = data.getDataExtent(otherDim); // Nice extent.
-
- var otherOffset = (otherDataExtent[1] - otherDataExtent[0]) * 0.3;
- otherDataExtent = [otherDataExtent[0] - otherOffset, otherDataExtent[1] + otherOffset];
- var otherShadowExtent = [0, size[1]];
- var thisShadowExtent = [0, size[0]];
- var areaPoints = [[size[0], 0], [0, 0]];
- var linePoints = [];
- var step = thisShadowExtent[1] / (data.count() - 1);
- var thisCoord = 0; // Optimize for large data shadow
-
- var stride = Math.round(data.count() / size[0]);
- var lastIsEmpty;
- data.each([otherDim], function (value, index) {
- if (stride > 0 && index % stride) {
- thisCoord += step;
- return;
- } // FIXME
- // Should consider axis.min/axis.max when drawing dataShadow.
- // FIXME
- // 应该使用统一的空判断?还是在list里进行空判断?
-
-
- var isEmpty = value == null || isNaN(value) || value === ''; // See #4235.
-
- var otherCoord = isEmpty ? 0 : linearMap(value, otherDataExtent, otherShadowExtent, true); // Attempt to draw data shadow precisely when there are empty value.
-
- if (isEmpty && !lastIsEmpty && index) {
- areaPoints.push([areaPoints[areaPoints.length - 1][0], 0]);
- linePoints.push([linePoints[linePoints.length - 1][0], 0]);
- } else if (!isEmpty && lastIsEmpty) {
- areaPoints.push([thisCoord, 0]);
- linePoints.push([thisCoord, 0]);
- }
-
- areaPoints.push([thisCoord, otherCoord]);
- linePoints.push([thisCoord, otherCoord]);
- thisCoord += step;
- lastIsEmpty = isEmpty;
- });
- var dataZoomModel = this.dataZoomModel; // var dataBackgroundModel = dataZoomModel.getModel('dataBackground');
-
- this._displayables.barGroup.add(new graphic.Polygon({
- shape: {
- points: areaPoints
- },
- style: zrUtil.defaults({
- fill: dataZoomModel.get('dataBackgroundColor')
- }, dataZoomModel.getModel('dataBackground.areaStyle').getAreaStyle()),
- silent: true,
- z2: -20
- }));
-
- this._displayables.barGroup.add(new graphic.Polyline({
- shape: {
- points: linePoints
- },
- style: dataZoomModel.getModel('dataBackground.lineStyle').getLineStyle(),
- silent: true,
- z2: -19
- }));
- },
- _prepareDataShadowInfo: function () {
- var dataZoomModel = this.dataZoomModel;
- var showDataShadow = dataZoomModel.get('showDataShadow');
-
- if (showDataShadow === false) {
- return;
- } // Find a representative series.
-
-
- var result;
- var ecModel = this.ecModel;
- dataZoomModel.eachTargetAxis(function (dimNames, axisIndex) {
- var seriesModels = dataZoomModel.getAxisProxy(dimNames.name, axisIndex).getTargetSeriesModels();
- zrUtil.each(seriesModels, function (seriesModel) {
- if (result) {
- return;
- }
-
- if (showDataShadow !== true && zrUtil.indexOf(SHOW_DATA_SHADOW_SERIES_TYPE, seriesModel.get('type')) < 0) {
- return;
- }
-
- var thisAxis = ecModel.getComponent(dimNames.axis, axisIndex).axis;
- var otherDim = getOtherDim(dimNames.name);
- var otherAxisInverse;
- var coordSys = seriesModel.coordinateSystem;
-
- if (otherDim != null && coordSys.getOtherAxis) {
- otherAxisInverse = coordSys.getOtherAxis(thisAxis).inverse;
- }
-
- otherDim = seriesModel.getData().mapDimension(otherDim);
- result = {
- thisAxis: thisAxis,
- series: seriesModel,
- thisDim: dimNames.name,
- otherDim: otherDim,
- otherAxisInverse: otherAxisInverse
- };
- }, this);
- }, this);
- return result;
- },
- _renderHandle: function () {
- var displaybles = this._displayables;
- var handles = displaybles.handles = [];
- var handleLabels = displaybles.handleLabels = [];
- var barGroup = this._displayables.barGroup;
- var size = this._size;
- var dataZoomModel = this.dataZoomModel;
- barGroup.add(displaybles.filler = new Rect({
- draggable: true,
- cursor: getCursor(this._orient),
- drift: bind(this._onDragMove, this, 'all'),
- ondragstart: bind(this._showDataInfo, this, true),
- ondragend: bind(this._onDragEnd, this),
- onmouseover: bind(this._showDataInfo, this, true),
- onmouseout: bind(this._showDataInfo, this, false),
- style: {
- fill: dataZoomModel.get('fillerColor'),
- textPosition: 'inside'
- }
- })); // Frame border.
-
- barGroup.add(new Rect({
- silent: true,
- subPixelOptimize: true,
- shape: {
- x: 0,
- y: 0,
- width: size[0],
- height: size[1]
- },
- style: {
- stroke: dataZoomModel.get('dataBackgroundColor') || dataZoomModel.get('borderColor'),
- lineWidth: DEFAULT_FRAME_BORDER_WIDTH,
- fill: 'rgba(0,0,0,0)'
- }
- }));
- each([0, 1], function (handleIndex) {
- var path = graphic.createIcon(dataZoomModel.get('handleIcon'), {
- cursor: getCursor(this._orient),
- draggable: true,
- drift: bind(this._onDragMove, this, handleIndex),
- ondragend: bind(this._onDragEnd, this),
- onmouseover: bind(this._showDataInfo, this, true),
- onmouseout: bind(this._showDataInfo, this, false)
- }, {
- x: -1,
- y: 0,
- width: 2,
- height: 2
- });
- var bRect = path.getBoundingRect();
- this._handleHeight = numberUtil.parsePercent(dataZoomModel.get('handleSize'), this._size[1]);
- this._handleWidth = bRect.width / bRect.height * this._handleHeight;
- path.setStyle(dataZoomModel.getModel('handleStyle').getItemStyle());
- var handleColor = dataZoomModel.get('handleColor'); // Compatitable with previous version
-
- if (handleColor != null) {
- path.style.fill = handleColor;
- }
-
- barGroup.add(handles[handleIndex] = path);
- var textStyleModel = dataZoomModel.textStyleModel;
- this.group.add(handleLabels[handleIndex] = new graphic.Text({
- silent: true,
- invisible: true,
- style: {
- x: 0,
- y: 0,
- text: '',
- textVerticalAlign: 'middle',
- textAlign: 'center',
- textFill: textStyleModel.getTextColor(),
- textFont: textStyleModel.getFont()
- },
- z2: 10
- }));
- }, this);
- },
-
- /**
- * @private
- */
- _resetInterval: function () {
- var range = this._range = this.dataZoomModel.getPercentRange();
-
- var viewExtent = this._getViewExtent();
-
- this._handleEnds = [linearMap(range[0], [0, 100], viewExtent, true), linearMap(range[1], [0, 100], viewExtent, true)];
- },
-
- /**
- * @private
- * @param {(number|string)} handleIndex 0 or 1 or 'all'
- * @param {number} delta
- * @return {boolean} changed
- */
- _updateInterval: function (handleIndex, delta) {
- var dataZoomModel = this.dataZoomModel;
- var handleEnds = this._handleEnds;
-
- var viewExtend = this._getViewExtent();
-
- var minMaxSpan = dataZoomModel.findRepresentativeAxisProxy().getMinMaxSpan();
- var percentExtent = [0, 100];
- sliderMove(delta, handleEnds, viewExtend, dataZoomModel.get('zoomLock') ? 'all' : handleIndex, minMaxSpan.minSpan != null ? linearMap(minMaxSpan.minSpan, percentExtent, viewExtend, true) : null, minMaxSpan.maxSpan != null ? linearMap(minMaxSpan.maxSpan, percentExtent, viewExtend, true) : null);
- var lastRange = this._range;
- var range = this._range = asc([linearMap(handleEnds[0], viewExtend, percentExtent, true), linearMap(handleEnds[1], viewExtend, percentExtent, true)]);
- return !lastRange || lastRange[0] !== range[0] || lastRange[1] !== range[1];
- },
-
- /**
- * @private
- */
- _updateView: function (nonRealtime) {
- var displaybles = this._displayables;
- var handleEnds = this._handleEnds;
- var handleInterval = asc(handleEnds.slice());
- var size = this._size;
- each([0, 1], function (handleIndex) {
- // Handles
- var handle = displaybles.handles[handleIndex];
- var handleHeight = this._handleHeight;
- handle.attr({
- scale: [handleHeight / 2, handleHeight / 2],
- position: [handleEnds[handleIndex], size[1] / 2 - handleHeight / 2]
- });
- }, this); // Filler
-
- displaybles.filler.setShape({
- x: handleInterval[0],
- y: 0,
- width: handleInterval[1] - handleInterval[0],
- height: size[1]
- });
-
- this._updateDataInfo(nonRealtime);
- },
-
- /**
- * @private
- */
- _updateDataInfo: function (nonRealtime) {
- var dataZoomModel = this.dataZoomModel;
- var displaybles = this._displayables;
- var handleLabels = displaybles.handleLabels;
- var orient = this._orient;
- var labelTexts = ['', '']; // FIXME
- // date型,支持formatter,autoformatter(ec2 date.getAutoFormatter)
-
- if (dataZoomModel.get('showDetail')) {
- var axisProxy = dataZoomModel.findRepresentativeAxisProxy();
-
- if (axisProxy) {
- var axis = axisProxy.getAxisModel().axis;
- var range = this._range;
- var dataInterval = nonRealtime // See #4434, data and axis are not processed and reset yet in non-realtime mode.
- ? axisProxy.calculateDataWindow({
- start: range[0],
- end: range[1]
- }).valueWindow : axisProxy.getDataValueWindow();
- labelTexts = [this._formatLabel(dataInterval[0], axis), this._formatLabel(dataInterval[1], axis)];
- }
- }
-
- var orderedHandleEnds = asc(this._handleEnds.slice());
- setLabel.call(this, 0);
- setLabel.call(this, 1);
-
- function setLabel(handleIndex) {
- // Label
- // Text should not transform by barGroup.
- // Ignore handlers transform
- var barTransform = graphic.getTransform(displaybles.handles[handleIndex].parent, this.group);
- var direction = graphic.transformDirection(handleIndex === 0 ? 'right' : 'left', barTransform);
- var offset = this._handleWidth / 2 + LABEL_GAP;
- var textPoint = graphic.applyTransform([orderedHandleEnds[handleIndex] + (handleIndex === 0 ? -offset : offset), this._size[1] / 2], barTransform);
- handleLabels[handleIndex].setStyle({
- x: textPoint[0],
- y: textPoint[1],
- textVerticalAlign: orient === HORIZONTAL ? 'middle' : direction,
- textAlign: orient === HORIZONTAL ? direction : 'center',
- text: labelTexts[handleIndex]
- });
- }
- },
-
- /**
- * @private
- */
- _formatLabel: function (value, axis) {
- var dataZoomModel = this.dataZoomModel;
- var labelFormatter = dataZoomModel.get('labelFormatter');
- var labelPrecision = dataZoomModel.get('labelPrecision');
-
- if (labelPrecision == null || labelPrecision === 'auto') {
- labelPrecision = axis.getPixelPrecision();
- }
-
- var valueStr = value == null || isNaN(value) ? '' // FIXME Glue code
- : axis.type === 'category' || axis.type === 'time' ? axis.scale.getLabel(Math.round(value)) // param of toFixed should less then 20.
- : value.toFixed(Math.min(labelPrecision, 20));
- return zrUtil.isFunction(labelFormatter) ? labelFormatter(value, valueStr) : zrUtil.isString(labelFormatter) ? labelFormatter.replace('{value}', valueStr) : valueStr;
- },
-
- /**
- * @private
- * @param {boolean} showOrHide true: show, false: hide
- */
- _showDataInfo: function (showOrHide) {
- // Always show when drgging.
- showOrHide = this._dragging || showOrHide;
- var handleLabels = this._displayables.handleLabels;
- handleLabels[0].attr('invisible', !showOrHide);
- handleLabels[1].attr('invisible', !showOrHide);
- },
- _onDragMove: function (handleIndex, dx, dy, event) {
- this._dragging = true; // For mobile device, prevent screen slider on the button.
-
- eventTool.stop(event.event); // Transform dx, dy to bar coordination.
-
- var barTransform = this._displayables.barGroup.getLocalTransform();
-
- var vertex = graphic.applyTransform([dx, dy], barTransform, true);
-
- var changed = this._updateInterval(handleIndex, vertex[0]);
-
- var realtime = this.dataZoomModel.get('realtime');
-
- this._updateView(!realtime); // Avoid dispatch dataZoom repeatly but range not changed,
- // which cause bad visual effect when progressive enabled.
-
-
- changed && realtime && this._dispatchZoomAction();
- },
- _onDragEnd: function () {
- this._dragging = false;
-
- this._showDataInfo(false); // While in realtime mode and stream mode, dispatch action when
- // drag end will cause the whole view rerender, which is unnecessary.
-
-
- var realtime = this.dataZoomModel.get('realtime');
- !realtime && this._dispatchZoomAction();
- },
- _onClickPanelClick: function (e) {
- var size = this._size;
-
- var localPoint = this._displayables.barGroup.transformCoordToLocal(e.offsetX, e.offsetY);
-
- if (localPoint[0] < 0 || localPoint[0] > size[0] || localPoint[1] < 0 || localPoint[1] > size[1]) {
- return;
- }
-
- var handleEnds = this._handleEnds;
- var center = (handleEnds[0] + handleEnds[1]) / 2;
-
- var changed = this._updateInterval('all', localPoint[0] - center);
-
- this._updateView();
-
- changed && this._dispatchZoomAction();
- },
-
- /**
- * This action will be throttled.
- * @private
- */
- _dispatchZoomAction: function () {
- var range = this._range;
- this.api.dispatchAction({
- type: 'dataZoom',
- from: this.uid,
- dataZoomId: this.dataZoomModel.id,
- start: range[0],
- end: range[1]
- });
- },
-
- /**
- * @private
- */
- _findCoordRect: function () {
- // Find the grid coresponding to the first axis referred by dataZoom.
- var rect;
- each(this.getTargetCoordInfo(), function (coordInfoList) {
- if (!rect && coordInfoList.length) {
- var coordSys = coordInfoList[0].model.coordinateSystem;
- rect = coordSys.getRect && coordSys.getRect();
- }
- });
-
- if (!rect) {
- var width = this.api.getWidth();
- var height = this.api.getHeight();
- rect = {
- x: width * 0.2,
- y: height * 0.2,
- width: width * 0.6,
- height: height * 0.6
- };
- }
-
- return rect;
- }
- });
-
- function getOtherDim(thisDim) {
- // FIXME
- // 这个逻辑和getOtherAxis里一致,但是写在这里是否不好
- var map = {
- x: 'y',
- y: 'x',
- radius: 'angle',
- angle: 'radius'
- };
- return map[thisDim];
- }
-
- function getCursor(orient) {
- return orient === 'vertical' ? 'ns-resize' : 'ew-resize';
- }
-
- var _default = SliderZoomView;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2786:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var DataZoomModel = __webpack_require__(1606);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var _default = DataZoomModel.extend({
- type: 'dataZoom.inside',
-
- /**
- * @protected
- */
- defaultOption: {
- disabled: false,
- // Whether disable this inside zoom.
- zoomLock: false,
- // Whether disable zoom but only pan.
- zoomOnMouseWheel: true,
- // Can be: true / false / 'shift' / 'ctrl' / 'alt'.
- moveOnMouseMove: true,
- // Can be: true / false / 'shift' / 'ctrl' / 'alt'.
- moveOnMouseWheel: false,
- // Can be: true / false / 'shift' / 'ctrl' / 'alt'.
- preventDefaultMouseMove: true
- }
- });
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2787:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var DataZoomView = __webpack_require__(1607);
-
- var sliderMove = __webpack_require__(1605);
-
- var roams = __webpack_require__(2788);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var bind = zrUtil.bind;
- var InsideZoomView = DataZoomView.extend({
- type: 'dataZoom.inside',
-
- /**
- * @override
- */
- init: function (ecModel, api) {
- /**
- * 'throttle' is used in this.dispatchAction, so we save range
- * to avoid missing some 'pan' info.
- * @private
- * @type {Array.<number>}
- */
- this._range;
- },
-
- /**
- * @override
- */
- render: function (dataZoomModel, ecModel, api, payload) {
- InsideZoomView.superApply(this, 'render', arguments); // Hence the `throttle` util ensures to preserve command order,
- // here simply updating range all the time will not cause missing
- // any of the the roam change.
-
- this._range = dataZoomModel.getPercentRange(); // Reset controllers.
-
- zrUtil.each(this.getTargetCoordInfo(), function (coordInfoList, coordSysName) {
- var allCoordIds = zrUtil.map(coordInfoList, function (coordInfo) {
- return roams.generateCoordId(coordInfo.model);
- });
- zrUtil.each(coordInfoList, function (coordInfo) {
- var coordModel = coordInfo.model;
- var getRange = {};
- zrUtil.each(['pan', 'zoom', 'scrollMove'], function (eventName) {
- getRange[eventName] = bind(roamHandlers[eventName], this, coordInfo, coordSysName);
- }, this);
- roams.register(api, {
- coordId: roams.generateCoordId(coordModel),
- allCoordIds: allCoordIds,
- containsPoint: function (e, x, y) {
- return coordModel.coordinateSystem.containPoint([x, y]);
- },
- dataZoomId: dataZoomModel.id,
- dataZoomModel: dataZoomModel,
- getRange: getRange
- });
- }, this);
- }, this);
- },
-
- /**
- * @override
- */
- dispose: function () {
- roams.unregister(this.api, this.dataZoomModel.id);
- InsideZoomView.superApply(this, 'dispose', arguments);
- this._range = null;
- }
- });
- var roamHandlers = {
- /**
- * @this {module:echarts/component/dataZoom/InsideZoomView}
- */
- zoom: function (coordInfo, coordSysName, controller, e) {
- var lastRange = this._range;
- var range = lastRange.slice(); // Calculate transform by the first axis.
-
- var axisModel = coordInfo.axisModels[0];
-
- if (!axisModel) {
- return;
- }
-
- var directionInfo = getDirectionInfo[coordSysName](null, [e.originX, e.originY], axisModel, controller, coordInfo);
- var percentPoint = (directionInfo.signal > 0 ? directionInfo.pixelStart + directionInfo.pixelLength - directionInfo.pixel : directionInfo.pixel - directionInfo.pixelStart) / directionInfo.pixelLength * (range[1] - range[0]) + range[0];
- var scale = Math.max(1 / e.scale, 0);
- range[0] = (range[0] - percentPoint) * scale + percentPoint;
- range[1] = (range[1] - percentPoint) * scale + percentPoint; // Restrict range.
-
- var minMaxSpan = this.dataZoomModel.findRepresentativeAxisProxy().getMinMaxSpan();
- sliderMove(0, range, [0, 100], 0, minMaxSpan.minSpan, minMaxSpan.maxSpan);
- this._range = range;
-
- if (lastRange[0] !== range[0] || lastRange[1] !== range[1]) {
- return range;
- }
- },
-
- /**
- * @this {module:echarts/component/dataZoom/InsideZoomView}
- */
- pan: makeMover(function (range, axisModel, coordInfo, coordSysName, controller, e) {
- var directionInfo = getDirectionInfo[coordSysName]([e.oldX, e.oldY], [e.newX, e.newY], axisModel, controller, coordInfo);
- return directionInfo.signal * (range[1] - range[0]) * directionInfo.pixel / directionInfo.pixelLength;
- }),
-
- /**
- * @this {module:echarts/component/dataZoom/InsideZoomView}
- */
- scrollMove: makeMover(function (range, axisModel, coordInfo, coordSysName, controller, e) {
- var directionInfo = getDirectionInfo[coordSysName]([0, 0], [e.scrollDelta, e.scrollDelta], axisModel, controller, coordInfo);
- return directionInfo.signal * (range[1] - range[0]) * e.scrollDelta;
- })
- };
-
- function makeMover(getPercentDelta) {
- return function (coordInfo, coordSysName, controller, e) {
- var lastRange = this._range;
- var range = lastRange.slice(); // Calculate transform by the first axis.
-
- var axisModel = coordInfo.axisModels[0];
-
- if (!axisModel) {
- return;
- }
-
- var percentDelta = getPercentDelta(range, axisModel, coordInfo, coordSysName, controller, e);
- sliderMove(percentDelta, range, [0, 100], 'all');
- this._range = range;
-
- if (lastRange[0] !== range[0] || lastRange[1] !== range[1]) {
- return range;
- }
- };
- }
-
- var getDirectionInfo = {
- grid: function (oldPoint, newPoint, axisModel, controller, coordInfo) {
- var axis = axisModel.axis;
- var ret = {};
- var rect = coordInfo.model.coordinateSystem.getRect();
- oldPoint = oldPoint || [0, 0];
-
- if (axis.dim === 'x') {
- ret.pixel = newPoint[0] - oldPoint[0];
- ret.pixelLength = rect.width;
- ret.pixelStart = rect.x;
- ret.signal = axis.inverse ? 1 : -1;
- } else {
- // axis.dim === 'y'
- ret.pixel = newPoint[1] - oldPoint[1];
- ret.pixelLength = rect.height;
- ret.pixelStart = rect.y;
- ret.signal = axis.inverse ? -1 : 1;
- }
-
- return ret;
- },
- polar: function (oldPoint, newPoint, axisModel, controller, coordInfo) {
- var axis = axisModel.axis;
- var ret = {};
- var polar = coordInfo.model.coordinateSystem;
- var radiusExtent = polar.getRadiusAxis().getExtent();
- var angleExtent = polar.getAngleAxis().getExtent();
- oldPoint = oldPoint ? polar.pointToCoord(oldPoint) : [0, 0];
- newPoint = polar.pointToCoord(newPoint);
-
- if (axisModel.mainType === 'radiusAxis') {
- ret.pixel = newPoint[0] - oldPoint[0]; // ret.pixelLength = Math.abs(radiusExtent[1] - radiusExtent[0]);
- // ret.pixelStart = Math.min(radiusExtent[0], radiusExtent[1]);
-
- ret.pixelLength = radiusExtent[1] - radiusExtent[0];
- ret.pixelStart = radiusExtent[0];
- ret.signal = axis.inverse ? 1 : -1;
- } else {
- // 'angleAxis'
- ret.pixel = newPoint[1] - oldPoint[1]; // ret.pixelLength = Math.abs(angleExtent[1] - angleExtent[0]);
- // ret.pixelStart = Math.min(angleExtent[0], angleExtent[1]);
-
- ret.pixelLength = angleExtent[1] - angleExtent[0];
- ret.pixelStart = angleExtent[0];
- ret.signal = axis.inverse ? -1 : 1;
- }
-
- return ret;
- },
- singleAxis: function (oldPoint, newPoint, axisModel, controller, coordInfo) {
- var axis = axisModel.axis;
- var rect = coordInfo.model.coordinateSystem.getRect();
- var ret = {};
- oldPoint = oldPoint || [0, 0];
-
- if (axis.orient === 'horizontal') {
- ret.pixel = newPoint[0] - oldPoint[0];
- ret.pixelLength = rect.width;
- ret.pixelStart = rect.x;
- ret.signal = axis.inverse ? 1 : -1;
- } else {
- // 'vertical'
- ret.pixel = newPoint[1] - oldPoint[1];
- ret.pixelLength = rect.height;
- ret.pixelStart = rect.y;
- ret.signal = axis.inverse ? -1 : 1;
- }
-
- return ret;
- }
- };
- var _default = InsideZoomView;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2788:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var RoamController = __webpack_require__(1667);
-
- var throttleUtil = __webpack_require__(1482);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // Only create one roam controller for each coordinate system.
- // one roam controller might be refered by two inside data zoom
- // components (for example, one for x and one for y). When user
- // pan or zoom, only dispatch one action for those data zoom
- // components.
- var ATTR = '\0_ec_dataZoom_roams';
- /**
- * @public
- * @param {module:echarts/ExtensionAPI} api
- * @param {Object} dataZoomInfo
- * @param {string} dataZoomInfo.coordId
- * @param {Function} dataZoomInfo.containsPoint
- * @param {Array.<string>} dataZoomInfo.allCoordIds
- * @param {string} dataZoomInfo.dataZoomId
- * @param {Object} dataZoomInfo.getRange
- * @param {Function} dataZoomInfo.getRange.pan
- * @param {Function} dataZoomInfo.getRange.zoom
- * @param {Function} dataZoomInfo.getRange.scrollMove
- * @param {boolean} dataZoomInfo.dataZoomModel
- */
-
- function register(api, dataZoomInfo) {
- var store = giveStore(api);
- var theDataZoomId = dataZoomInfo.dataZoomId;
- var theCoordId = dataZoomInfo.coordId; // Do clean when a dataZoom changes its target coordnate system.
- // Avoid memory leak, dispose all not-used-registered.
-
- zrUtil.each(store, function (record, coordId) {
- var dataZoomInfos = record.dataZoomInfos;
-
- if (dataZoomInfos[theDataZoomId] && zrUtil.indexOf(dataZoomInfo.allCoordIds, theCoordId) < 0) {
- delete dataZoomInfos[theDataZoomId];
- record.count--;
- }
- });
- cleanStore(store);
- var record = store[theCoordId]; // Create if needed.
-
- if (!record) {
- record = store[theCoordId] = {
- coordId: theCoordId,
- dataZoomInfos: {},
- count: 0
- };
- record.controller = createController(api, record);
- record.dispatchAction = zrUtil.curry(dispatchAction, api);
- } // Update reference of dataZoom.
-
-
- !record.dataZoomInfos[theDataZoomId] && record.count++;
- record.dataZoomInfos[theDataZoomId] = dataZoomInfo;
- var controllerParams = mergeControllerParams(record.dataZoomInfos);
- record.controller.enable(controllerParams.controlType, controllerParams.opt); // Consider resize, area should be always updated.
-
- record.controller.setPointerChecker(dataZoomInfo.containsPoint); // Update throttle.
-
- throttleUtil.createOrUpdate(record, 'dispatchAction', dataZoomInfo.dataZoomModel.get('throttle', true), 'fixRate');
- }
- /**
- * @public
- * @param {module:echarts/ExtensionAPI} api
- * @param {string} dataZoomId
- */
-
-
- function unregister(api, dataZoomId) {
- var store = giveStore(api);
- zrUtil.each(store, function (record) {
- record.controller.dispose();
- var dataZoomInfos = record.dataZoomInfos;
-
- if (dataZoomInfos[dataZoomId]) {
- delete dataZoomInfos[dataZoomId];
- record.count--;
- }
- });
- cleanStore(store);
- }
- /**
- * @public
- */
-
-
- function generateCoordId(coordModel) {
- return coordModel.type + '\0_' + coordModel.id;
- }
- /**
- * Key: coordId, value: {dataZoomInfos: [], count, controller}
- * @type {Array.<Object>}
- */
-
-
- function giveStore(api) {
- // Mount store on zrender instance, so that we do not
- // need to worry about dispose.
- var zr = api.getZr();
- return zr[ATTR] || (zr[ATTR] = {});
- }
-
- function createController(api, newRecord) {
- var controller = new RoamController(api.getZr());
- zrUtil.each(['pan', 'zoom', 'scrollMove'], function (eventName) {
- controller.on(eventName, function (event) {
- var batch = [];
- zrUtil.each(newRecord.dataZoomInfos, function (info) {
- // Check whether the behaviors (zoomOnMouseWheel, moveOnMouseMove,
- // moveOnMouseWheel, ...) enabled.
- if (!event.isAvailableBehavior(info.dataZoomModel.option)) {
- return;
- }
-
- var method = (info.getRange || {})[eventName];
- var range = method && method(newRecord.controller, event);
- !info.dataZoomModel.get('disabled', true) && range && batch.push({
- dataZoomId: info.dataZoomId,
- start: range[0],
- end: range[1]
- });
- });
- batch.length && newRecord.dispatchAction(batch);
- });
- });
- return controller;
- }
-
- function cleanStore(store) {
- zrUtil.each(store, function (record, coordId) {
- if (!record.count) {
- record.controller.dispose();
- delete store[coordId];
- }
- });
- }
- /**
- * This action will be throttled.
- */
-
-
- function dispatchAction(api, batch) {
- api.dispatchAction({
- type: 'dataZoom',
- batch: batch
- });
- }
- /**
- * Merge roamController settings when multiple dataZooms share one roamController.
- */
-
-
- function mergeControllerParams(dataZoomInfos) {
- var controlType; // DO NOT use reserved word (true, false, undefined) as key literally. Even if encapsulated
- // as string, it is probably revert to reserved word by compress tool. See #7411.
-
- var prefix = 'type_';
- var typePriority = {
- 'type_true': 2,
- 'type_move': 1,
- 'type_false': 0,
- 'type_undefined': -1
- };
- var preventDefaultMouseMove = true;
- zrUtil.each(dataZoomInfos, function (dataZoomInfo) {
- var dataZoomModel = dataZoomInfo.dataZoomModel;
- var oneType = dataZoomModel.get('disabled', true) ? false : dataZoomModel.get('zoomLock', true) ? 'move' : true;
-
- if (typePriority[prefix + oneType] > typePriority[prefix + controlType]) {
- controlType = oneType;
- } // Prevent default move event by default. If one false, do not prevent. Otherwise
- // users may be confused why it does not work when multiple insideZooms exist.
-
-
- preventDefaultMouseMove &= dataZoomModel.get('preventDefaultMouseMove', true);
- });
- return {
- controlType: controlType,
- opt: {
- // RoamController will enable all of these functionalities,
- // and the final behavior is determined by its event listener
- // provided by each inside zoom.
- zoomOnMouseWheel: true,
- moveOnMouseMove: true,
- moveOnMouseWheel: true,
- preventDefaultMouseMove: !!preventDefaultMouseMove
- }
- };
- }
-
- exports.register = register;
- exports.unregister = unregister;
- exports.generateCoordId = generateCoordId;
-
- /***/ }),
-
- /***/ 2789:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- __webpack_require__(2329);
-
- __webpack_require__(2338);
-
- /***/ }),
-
- /***/ 2790:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var VisualMapModel = __webpack_require__(2333);
-
- var numberUtil = __webpack_require__(985);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- // Constant
- var DEFAULT_BAR_BOUND = [20, 140];
- var ContinuousModel = VisualMapModel.extend({
- type: 'visualMap.continuous',
-
- /**
- * @protected
- */
- defaultOption: {
- align: 'auto',
- // 'auto', 'left', 'right', 'top', 'bottom'
- calculable: false,
- // This prop effect default component type determine,
- // See echarts/component/visualMap/typeDefaulter.
- range: null,
- // selected range. In default case `range` is [min, max]
- // and can auto change along with modification of min max,
- // util use specifid a range.
- realtime: true,
- // Whether realtime update.
- itemHeight: null,
- // The length of the range control edge.
- itemWidth: null,
- // The length of the other side.
- hoverLink: true,
- // Enable hover highlight.
- hoverLinkDataSize: null,
- // The size of hovered data.
- hoverLinkOnHandle: null // Whether trigger hoverLink when hover handle.
- // If not specified, follow the value of `realtime`.
-
- },
-
- /**
- * @override
- */
- optionUpdated: function (newOption, isInit) {
- ContinuousModel.superApply(this, 'optionUpdated', arguments);
- this.resetExtent();
- this.resetVisual(function (mappingOption) {
- mappingOption.mappingMethod = 'linear';
- mappingOption.dataExtent = this.getExtent();
- });
-
- this._resetRange();
- },
-
- /**
- * @protected
- * @override
- */
- resetItemSize: function () {
- ContinuousModel.superApply(this, 'resetItemSize', arguments);
- var itemSize = this.itemSize;
- this._orient === 'horizontal' && itemSize.reverse();
- (itemSize[0] == null || isNaN(itemSize[0])) && (itemSize[0] = DEFAULT_BAR_BOUND[0]);
- (itemSize[1] == null || isNaN(itemSize[1])) && (itemSize[1] = DEFAULT_BAR_BOUND[1]);
- },
-
- /**
- * @private
- */
- _resetRange: function () {
- var dataExtent = this.getExtent();
- var range = this.option.range;
-
- if (!range || range.auto) {
- // `range` should always be array (so we dont use other
- // value like 'auto') for user-friend. (consider getOption).
- dataExtent.auto = 1;
- this.option.range = dataExtent;
- } else if (zrUtil.isArray(range)) {
- if (range[0] > range[1]) {
- range.reverse();
- }
-
- range[0] = Math.max(range[0], dataExtent[0]);
- range[1] = Math.min(range[1], dataExtent[1]);
- }
- },
-
- /**
- * @protected
- * @override
- */
- completeVisualOption: function () {
- VisualMapModel.prototype.completeVisualOption.apply(this, arguments);
- zrUtil.each(this.stateList, function (state) {
- var symbolSize = this.option.controller[state].symbolSize;
-
- if (symbolSize && symbolSize[0] !== symbolSize[1]) {
- symbolSize[0] = 0; // For good looking.
- }
- }, this);
- },
-
- /**
- * @override
- */
- setSelected: function (selected) {
- this.option.range = selected.slice();
-
- this._resetRange();
- },
-
- /**
- * @public
- */
- getSelected: function () {
- var dataExtent = this.getExtent();
- var dataInterval = numberUtil.asc((this.get('range') || []).slice()); // Clamp
-
- dataInterval[0] > dataExtent[1] && (dataInterval[0] = dataExtent[1]);
- dataInterval[1] > dataExtent[1] && (dataInterval[1] = dataExtent[1]);
- dataInterval[0] < dataExtent[0] && (dataInterval[0] = dataExtent[0]);
- dataInterval[1] < dataExtent[0] && (dataInterval[1] = dataExtent[0]);
- return dataInterval;
- },
-
- /**
- * @override
- */
- getValueState: function (value) {
- var range = this.option.range;
- var dataExtent = this.getExtent(); // When range[0] === dataExtent[0], any value larger than dataExtent[0] maps to 'inRange'.
- // range[1] is processed likewise.
-
- return (range[0] <= dataExtent[0] || range[0] <= value) && (range[1] >= dataExtent[1] || value <= range[1]) ? 'inRange' : 'outOfRange';
- },
-
- /**
- * @params {Array.<number>} range target value: range[0] <= value && value <= range[1]
- * @return {Array.<Object>} [{seriesId, dataIndices: <Array.<number>>}, ...]
- */
- findTargetDataIndices: function (range) {
- var result = [];
- this.eachTargetSeries(function (seriesModel) {
- var dataIndices = [];
- var data = seriesModel.getData();
- data.each(this.getDataDimension(data), function (value, dataIndex) {
- range[0] <= value && value <= range[1] && dataIndices.push(dataIndex);
- }, this);
- result.push({
- seriesId: seriesModel.id,
- dataIndex: dataIndices
- });
- }, this);
- return result;
- },
-
- /**
- * @implement
- */
- getVisualMeta: function (getColorVisual) {
- var oVals = getColorStopValues(this, 'outOfRange', this.getExtent());
- var iVals = getColorStopValues(this, 'inRange', this.option.range.slice());
- var stops = [];
-
- function setStop(value, valueState) {
- stops.push({
- value: value,
- color: getColorVisual(value, valueState)
- });
- } // Format to: outOfRange -- inRange -- outOfRange.
-
-
- var iIdx = 0;
- var oIdx = 0;
- var iLen = iVals.length;
- var oLen = oVals.length;
-
- for (; oIdx < oLen && (!iVals.length || oVals[oIdx] <= iVals[0]); oIdx++) {
- // If oVal[oIdx] === iVals[iIdx], oVal[oIdx] should be ignored.
- if (oVals[oIdx] < iVals[iIdx]) {
- setStop(oVals[oIdx], 'outOfRange');
- }
- }
-
- for (var first = 1; iIdx < iLen; iIdx++, first = 0) {
- // If range is full, value beyond min, max will be clamped.
- // make a singularity
- first && stops.length && setStop(iVals[iIdx], 'outOfRange');
- setStop(iVals[iIdx], 'inRange');
- }
-
- for (var first = 1; oIdx < oLen; oIdx++) {
- if (!iVals.length || iVals[iVals.length - 1] < oVals[oIdx]) {
- // make a singularity
- if (first) {
- stops.length && setStop(stops[stops.length - 1].value, 'outOfRange');
- first = 0;
- }
-
- setStop(oVals[oIdx], 'outOfRange');
- }
- }
-
- var stopsLen = stops.length;
- return {
- stops: stops,
- outerColors: [stopsLen ? stops[0].color : 'transparent', stopsLen ? stops[stopsLen - 1].color : 'transparent']
- };
- }
- });
-
- function getColorStopValues(visualMapModel, valueState, dataExtent) {
- if (dataExtent[0] === dataExtent[1]) {
- return dataExtent.slice();
- } // When using colorHue mapping, it is not linear color any more.
- // Moreover, canvas gradient seems not to be accurate linear.
- // FIXME
- // Should be arbitrary value 100? or based on pixel size?
-
-
- var count = 200;
- var step = (dataExtent[1] - dataExtent[0]) / count;
- var value = dataExtent[0];
- var stopValues = [];
-
- for (var i = 0; i <= count && value < dataExtent[1]; i++) {
- stopValues.push(value);
- value += step;
- }
-
- stopValues.push(dataExtent[1]);
- return stopValues;
- }
-
- var _default = ContinuousModel;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2791:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var LinearGradient = __webpack_require__(1899);
-
- var eventTool = __webpack_require__(1437);
-
- var VisualMapView = __webpack_require__(2335);
-
- var graphic = __webpack_require__(906);
-
- var numberUtil = __webpack_require__(985);
-
- var sliderMove = __webpack_require__(1605);
-
- var helper = __webpack_require__(2336);
-
- var modelUtil = __webpack_require__(1064);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var linearMap = numberUtil.linearMap;
- var each = zrUtil.each;
- var mathMin = Math.min;
- var mathMax = Math.max; // Arbitrary value
-
- var HOVER_LINK_SIZE = 12;
- var HOVER_LINK_OUT = 6; // Notice:
- // Any "interval" should be by the order of [low, high].
- // "handle0" (handleIndex === 0) maps to
- // low data value: this._dataInterval[0] and has low coord.
- // "handle1" (handleIndex === 1) maps to
- // high data value: this._dataInterval[1] and has high coord.
- // The logic of transform is implemented in this._createBarGroup.
-
- var ContinuousView = VisualMapView.extend({
- type: 'visualMap.continuous',
-
- /**
- * @override
- */
- init: function () {
- ContinuousView.superApply(this, 'init', arguments);
- /**
- * @private
- */
-
- this._shapes = {};
- /**
- * @private
- */
-
- this._dataInterval = [];
- /**
- * @private
- */
-
- this._handleEnds = [];
- /**
- * @private
- */
-
- this._orient;
- /**
- * @private
- */
-
- this._useHandle;
- /**
- * @private
- */
-
- this._hoverLinkDataIndices = [];
- /**
- * @private
- */
-
- this._dragging;
- /**
- * @private
- */
-
- this._hovering;
- },
-
- /**
- * @protected
- * @override
- */
- doRender: function (visualMapModel, ecModel, api, payload) {
- if (!payload || payload.type !== 'selectDataRange' || payload.from !== this.uid) {
- this._buildView();
- }
- },
-
- /**
- * @private
- */
- _buildView: function () {
- this.group.removeAll();
- var visualMapModel = this.visualMapModel;
- var thisGroup = this.group;
- this._orient = visualMapModel.get('orient');
- this._useHandle = visualMapModel.get('calculable');
-
- this._resetInterval();
-
- this._renderBar(thisGroup);
-
- var dataRangeText = visualMapModel.get('text');
-
- this._renderEndsText(thisGroup, dataRangeText, 0);
-
- this._renderEndsText(thisGroup, dataRangeText, 1); // Do this for background size calculation.
-
-
- this._updateView(true); // After updating view, inner shapes is built completely,
- // and then background can be rendered.
-
-
- this.renderBackground(thisGroup); // Real update view
-
- this._updateView();
-
- this._enableHoverLinkToSeries();
-
- this._enableHoverLinkFromSeries();
-
- this.positionGroup(thisGroup);
- },
-
- /**
- * @private
- */
- _renderEndsText: function (group, dataRangeText, endsIndex) {
- if (!dataRangeText) {
- return;
- } // Compatible with ec2, text[0] map to high value, text[1] map low value.
-
-
- var text = dataRangeText[1 - endsIndex];
- text = text != null ? text + '' : '';
- var visualMapModel = this.visualMapModel;
- var textGap = visualMapModel.get('textGap');
- var itemSize = visualMapModel.itemSize;
- var barGroup = this._shapes.barGroup;
-
- var position = this._applyTransform([itemSize[0] / 2, endsIndex === 0 ? -textGap : itemSize[1] + textGap], barGroup);
-
- var align = this._applyTransform(endsIndex === 0 ? 'bottom' : 'top', barGroup);
-
- var orient = this._orient;
- var textStyleModel = this.visualMapModel.textStyleModel;
- this.group.add(new graphic.Text({
- style: {
- x: position[0],
- y: position[1],
- textVerticalAlign: orient === 'horizontal' ? 'middle' : align,
- textAlign: orient === 'horizontal' ? align : 'center',
- text: text,
- textFont: textStyleModel.getFont(),
- textFill: textStyleModel.getTextColor()
- }
- }));
- },
-
- /**
- * @private
- */
- _renderBar: function (targetGroup) {
- var visualMapModel = this.visualMapModel;
- var shapes = this._shapes;
- var itemSize = visualMapModel.itemSize;
- var orient = this._orient;
- var useHandle = this._useHandle;
- var itemAlign = helper.getItemAlign(visualMapModel, this.api, itemSize);
-
- var barGroup = shapes.barGroup = this._createBarGroup(itemAlign); // Bar
-
-
- barGroup.add(shapes.outOfRange = createPolygon());
- barGroup.add(shapes.inRange = createPolygon(null, useHandle ? getCursor(this._orient) : null, zrUtil.bind(this._dragHandle, this, 'all', false), zrUtil.bind(this._dragHandle, this, 'all', true)));
- var textRect = visualMapModel.textStyleModel.getTextRect('国');
- var textSize = mathMax(textRect.width, textRect.height); // Handle
-
- if (useHandle) {
- shapes.handleThumbs = [];
- shapes.handleLabels = [];
- shapes.handleLabelPoints = [];
-
- this._createHandle(barGroup, 0, itemSize, textSize, orient, itemAlign);
-
- this._createHandle(barGroup, 1, itemSize, textSize, orient, itemAlign);
- }
-
- this._createIndicator(barGroup, itemSize, textSize, orient);
-
- targetGroup.add(barGroup);
- },
-
- /**
- * @private
- */
- _createHandle: function (barGroup, handleIndex, itemSize, textSize, orient) {
- var onDrift = zrUtil.bind(this._dragHandle, this, handleIndex, false);
- var onDragEnd = zrUtil.bind(this._dragHandle, this, handleIndex, true);
- var handleThumb = createPolygon(createHandlePoints(handleIndex, textSize), getCursor(this._orient), onDrift, onDragEnd);
- handleThumb.position[0] = itemSize[0];
- barGroup.add(handleThumb); // Text is always horizontal layout but should not be effected by
- // transform (orient/inverse). So label is built separately but not
- // use zrender/graphic/helper/RectText, and is located based on view
- // group (according to handleLabelPoint) but not barGroup.
-
- var textStyleModel = this.visualMapModel.textStyleModel;
- var handleLabel = new graphic.Text({
- draggable: true,
- drift: onDrift,
- onmousemove: function (e) {
- // Fot mobile devicem, prevent screen slider on the button.
- eventTool.stop(e.event);
- },
- ondragend: onDragEnd,
- style: {
- x: 0,
- y: 0,
- text: '',
- textFont: textStyleModel.getFont(),
- textFill: textStyleModel.getTextColor()
- }
- });
- this.group.add(handleLabel);
- var handleLabelPoint = [orient === 'horizontal' ? textSize / 2 : textSize * 1.5, orient === 'horizontal' ? handleIndex === 0 ? -(textSize * 1.5) : textSize * 1.5 : handleIndex === 0 ? -textSize / 2 : textSize / 2];
- var shapes = this._shapes;
- shapes.handleThumbs[handleIndex] = handleThumb;
- shapes.handleLabelPoints[handleIndex] = handleLabelPoint;
- shapes.handleLabels[handleIndex] = handleLabel;
- },
-
- /**
- * @private
- */
- _createIndicator: function (barGroup, itemSize, textSize, orient) {
- var indicator = createPolygon([[0, 0]], 'move');
- indicator.position[0] = itemSize[0];
- indicator.attr({
- invisible: true,
- silent: true
- });
- barGroup.add(indicator);
- var textStyleModel = this.visualMapModel.textStyleModel;
- var indicatorLabel = new graphic.Text({
- silent: true,
- invisible: true,
- style: {
- x: 0,
- y: 0,
- text: '',
- textFont: textStyleModel.getFont(),
- textFill: textStyleModel.getTextColor()
- }
- });
- this.group.add(indicatorLabel);
- var indicatorLabelPoint = [orient === 'horizontal' ? textSize / 2 : HOVER_LINK_OUT + 3, 0];
- var shapes = this._shapes;
- shapes.indicator = indicator;
- shapes.indicatorLabel = indicatorLabel;
- shapes.indicatorLabelPoint = indicatorLabelPoint;
- },
-
- /**
- * @private
- */
- _dragHandle: function (handleIndex, isEnd, dx, dy) {
- if (!this._useHandle) {
- return;
- }
-
- this._dragging = !isEnd;
-
- if (!isEnd) {
- // Transform dx, dy to bar coordination.
- var vertex = this._applyTransform([dx, dy], this._shapes.barGroup, true);
-
- this._updateInterval(handleIndex, vertex[1]); // Considering realtime, update view should be executed
- // before dispatch action.
-
-
- this._updateView();
- } // dragEnd do not dispatch action when realtime.
-
-
- if (isEnd === !this.visualMapModel.get('realtime')) {
- // jshint ignore:line
- this.api.dispatchAction({
- type: 'selectDataRange',
- from: this.uid,
- visualMapId: this.visualMapModel.id,
- selected: this._dataInterval.slice()
- });
- }
-
- if (isEnd) {
- !this._hovering && this._clearHoverLinkToSeries();
- } else if (useHoverLinkOnHandle(this.visualMapModel)) {
- this._doHoverLinkToSeries(this._handleEnds[handleIndex], false);
- }
- },
-
- /**
- * @private
- */
- _resetInterval: function () {
- var visualMapModel = this.visualMapModel;
- var dataInterval = this._dataInterval = visualMapModel.getSelected();
- var dataExtent = visualMapModel.getExtent();
- var sizeExtent = [0, visualMapModel.itemSize[1]];
- this._handleEnds = [linearMap(dataInterval[0], dataExtent, sizeExtent, true), linearMap(dataInterval[1], dataExtent, sizeExtent, true)];
- },
-
- /**
- * @private
- * @param {(number|string)} handleIndex 0 or 1 or 'all'
- * @param {number} dx
- * @param {number} dy
- */
- _updateInterval: function (handleIndex, delta) {
- delta = delta || 0;
- var visualMapModel = this.visualMapModel;
- var handleEnds = this._handleEnds;
- var sizeExtent = [0, visualMapModel.itemSize[1]];
- sliderMove(delta, handleEnds, sizeExtent, handleIndex, // cross is forbiden
- 0);
- var dataExtent = visualMapModel.getExtent(); // Update data interval.
-
- this._dataInterval = [linearMap(handleEnds[0], sizeExtent, dataExtent, true), linearMap(handleEnds[1], sizeExtent, dataExtent, true)];
- },
-
- /**
- * @private
- */
- _updateView: function (forSketch) {
- var visualMapModel = this.visualMapModel;
- var dataExtent = visualMapModel.getExtent();
- var shapes = this._shapes;
- var outOfRangeHandleEnds = [0, visualMapModel.itemSize[1]];
- var inRangeHandleEnds = forSketch ? outOfRangeHandleEnds : this._handleEnds;
-
- var visualInRange = this._createBarVisual(this._dataInterval, dataExtent, inRangeHandleEnds, 'inRange');
-
- var visualOutOfRange = this._createBarVisual(dataExtent, dataExtent, outOfRangeHandleEnds, 'outOfRange');
-
- shapes.inRange.setStyle({
- fill: visualInRange.barColor,
- opacity: visualInRange.opacity
- }).setShape('points', visualInRange.barPoints);
- shapes.outOfRange.setStyle({
- fill: visualOutOfRange.barColor,
- opacity: visualOutOfRange.opacity
- }).setShape('points', visualOutOfRange.barPoints);
-
- this._updateHandle(inRangeHandleEnds, visualInRange);
- },
-
- /**
- * @private
- */
- _createBarVisual: function (dataInterval, dataExtent, handleEnds, forceState) {
- var opts = {
- forceState: forceState,
- convertOpacityToAlpha: true
- };
-
- var colorStops = this._makeColorGradient(dataInterval, opts);
-
- var symbolSizes = [this.getControllerVisual(dataInterval[0], 'symbolSize', opts), this.getControllerVisual(dataInterval[1], 'symbolSize', opts)];
-
- var barPoints = this._createBarPoints(handleEnds, symbolSizes);
-
- return {
- barColor: new LinearGradient(0, 0, 0, 1, colorStops),
- barPoints: barPoints,
- handlesColor: [colorStops[0].color, colorStops[colorStops.length - 1].color]
- };
- },
-
- /**
- * @private
- */
- _makeColorGradient: function (dataInterval, opts) {
- // Considering colorHue, which is not linear, so we have to sample
- // to calculate gradient color stops, but not only caculate head
- // and tail.
- var sampleNumber = 100; // Arbitrary value.
-
- var colorStops = [];
- var step = (dataInterval[1] - dataInterval[0]) / sampleNumber;
- colorStops.push({
- color: this.getControllerVisual(dataInterval[0], 'color', opts),
- offset: 0
- });
-
- for (var i = 1; i < sampleNumber; i++) {
- var currValue = dataInterval[0] + step * i;
-
- if (currValue > dataInterval[1]) {
- break;
- }
-
- colorStops.push({
- color: this.getControllerVisual(currValue, 'color', opts),
- offset: i / sampleNumber
- });
- }
-
- colorStops.push({
- color: this.getControllerVisual(dataInterval[1], 'color', opts),
- offset: 1
- });
- return colorStops;
- },
-
- /**
- * @private
- */
- _createBarPoints: function (handleEnds, symbolSizes) {
- var itemSize = this.visualMapModel.itemSize;
- return [[itemSize[0] - symbolSizes[0], handleEnds[0]], [itemSize[0], handleEnds[0]], [itemSize[0], handleEnds[1]], [itemSize[0] - symbolSizes[1], handleEnds[1]]];
- },
-
- /**
- * @private
- */
- _createBarGroup: function (itemAlign) {
- var orient = this._orient;
- var inverse = this.visualMapModel.get('inverse');
- return new graphic.Group(orient === 'horizontal' && !inverse ? {
- scale: itemAlign === 'bottom' ? [1, 1] : [-1, 1],
- rotation: Math.PI / 2
- } : orient === 'horizontal' && inverse ? {
- scale: itemAlign === 'bottom' ? [-1, 1] : [1, 1],
- rotation: -Math.PI / 2
- } : orient === 'vertical' && !inverse ? {
- scale: itemAlign === 'left' ? [1, -1] : [-1, -1]
- } : {
- scale: itemAlign === 'left' ? [1, 1] : [-1, 1]
- });
- },
-
- /**
- * @private
- */
- _updateHandle: function (handleEnds, visualInRange) {
- if (!this._useHandle) {
- return;
- }
-
- var shapes = this._shapes;
- var visualMapModel = this.visualMapModel;
- var handleThumbs = shapes.handleThumbs;
- var handleLabels = shapes.handleLabels;
- each([0, 1], function (handleIndex) {
- var handleThumb = handleThumbs[handleIndex];
- handleThumb.setStyle('fill', visualInRange.handlesColor[handleIndex]);
- handleThumb.position[1] = handleEnds[handleIndex]; // Update handle label position.
-
- var textPoint = graphic.applyTransform(shapes.handleLabelPoints[handleIndex], graphic.getTransform(handleThumb, this.group));
- handleLabels[handleIndex].setStyle({
- x: textPoint[0],
- y: textPoint[1],
- text: visualMapModel.formatValueText(this._dataInterval[handleIndex]),
- textVerticalAlign: 'middle',
- textAlign: this._applyTransform(this._orient === 'horizontal' ? handleIndex === 0 ? 'bottom' : 'top' : 'left', shapes.barGroup)
- });
- }, this);
- },
-
- /**
- * @private
- * @param {number} cursorValue
- * @param {number} textValue
- * @param {string} [rangeSymbol]
- * @param {number} [halfHoverLinkSize]
- */
- _showIndicator: function (cursorValue, textValue, rangeSymbol, halfHoverLinkSize) {
- var visualMapModel = this.visualMapModel;
- var dataExtent = visualMapModel.getExtent();
- var itemSize = visualMapModel.itemSize;
- var sizeExtent = [0, itemSize[1]];
- var pos = linearMap(cursorValue, dataExtent, sizeExtent, true);
- var shapes = this._shapes;
- var indicator = shapes.indicator;
-
- if (!indicator) {
- return;
- }
-
- indicator.position[1] = pos;
- indicator.attr('invisible', false);
- indicator.setShape('points', createIndicatorPoints(!!rangeSymbol, halfHoverLinkSize, pos, itemSize[1]));
- var opts = {
- convertOpacityToAlpha: true
- };
- var color = this.getControllerVisual(cursorValue, 'color', opts);
- indicator.setStyle('fill', color); // Update handle label position.
-
- var textPoint = graphic.applyTransform(shapes.indicatorLabelPoint, graphic.getTransform(indicator, this.group));
- var indicatorLabel = shapes.indicatorLabel;
- indicatorLabel.attr('invisible', false);
-
- var align = this._applyTransform('left', shapes.barGroup);
-
- var orient = this._orient;
- indicatorLabel.setStyle({
- text: (rangeSymbol ? rangeSymbol : '') + visualMapModel.formatValueText(textValue),
- textVerticalAlign: orient === 'horizontal' ? align : 'middle',
- textAlign: orient === 'horizontal' ? 'center' : align,
- x: textPoint[0],
- y: textPoint[1]
- });
- },
-
- /**
- * @private
- */
- _enableHoverLinkToSeries: function () {
- var self = this;
-
- this._shapes.barGroup.on('mousemove', function (e) {
- self._hovering = true;
-
- if (!self._dragging) {
- var itemSize = self.visualMapModel.itemSize;
-
- var pos = self._applyTransform([e.offsetX, e.offsetY], self._shapes.barGroup, true, true); // For hover link show when hover handle, which might be
- // below or upper than sizeExtent.
-
-
- pos[1] = mathMin(mathMax(0, pos[1]), itemSize[1]);
-
- self._doHoverLinkToSeries(pos[1], 0 <= pos[0] && pos[0] <= itemSize[0]);
- }
- }).on('mouseout', function () {
- // When mouse is out of handle, hoverLink still need
- // to be displayed when realtime is set as false.
- self._hovering = false;
- !self._dragging && self._clearHoverLinkToSeries();
- });
- },
-
- /**
- * @private
- */
- _enableHoverLinkFromSeries: function () {
- var zr = this.api.getZr();
-
- if (this.visualMapModel.option.hoverLink) {
- zr.on('mouseover', this._hoverLinkFromSeriesMouseOver, this);
- zr.on('mouseout', this._hideIndicator, this);
- } else {
- this._clearHoverLinkFromSeries();
- }
- },
-
- /**
- * @private
- */
- _doHoverLinkToSeries: function (cursorPos, hoverOnBar) {
- var visualMapModel = this.visualMapModel;
- var itemSize = visualMapModel.itemSize;
-
- if (!visualMapModel.option.hoverLink) {
- return;
- }
-
- var sizeExtent = [0, itemSize[1]];
- var dataExtent = visualMapModel.getExtent(); // For hover link show when hover handle, which might be below or upper than sizeExtent.
-
- cursorPos = mathMin(mathMax(sizeExtent[0], cursorPos), sizeExtent[1]);
- var halfHoverLinkSize = getHalfHoverLinkSize(visualMapModel, dataExtent, sizeExtent);
- var hoverRange = [cursorPos - halfHoverLinkSize, cursorPos + halfHoverLinkSize];
- var cursorValue = linearMap(cursorPos, sizeExtent, dataExtent, true);
- var valueRange = [linearMap(hoverRange[0], sizeExtent, dataExtent, true), linearMap(hoverRange[1], sizeExtent, dataExtent, true)]; // Consider data range is out of visualMap range, see test/visualMap-continuous.html,
- // where china and india has very large population.
-
- hoverRange[0] < sizeExtent[0] && (valueRange[0] = -Infinity);
- hoverRange[1] > sizeExtent[1] && (valueRange[1] = Infinity); // Do not show indicator when mouse is over handle,
- // otherwise labels overlap, especially when dragging.
-
- if (hoverOnBar) {
- if (valueRange[0] === -Infinity) {
- this._showIndicator(cursorValue, valueRange[1], '< ', halfHoverLinkSize);
- } else if (valueRange[1] === Infinity) {
- this._showIndicator(cursorValue, valueRange[0], '> ', halfHoverLinkSize);
- } else {
- this._showIndicator(cursorValue, cursorValue, '≈ ', halfHoverLinkSize);
- }
- } // When realtime is set as false, handles, which are in barGroup,
- // also trigger hoverLink, which help user to realize where they
- // focus on when dragging. (see test/heatmap-large.html)
- // When realtime is set as true, highlight will not show when hover
- // handle, because the label on handle, which displays a exact value
- // but not range, might mislead users.
-
-
- var oldBatch = this._hoverLinkDataIndices;
- var newBatch = [];
-
- if (hoverOnBar || useHoverLinkOnHandle(visualMapModel)) {
- newBatch = this._hoverLinkDataIndices = visualMapModel.findTargetDataIndices(valueRange);
- }
-
- var resultBatches = modelUtil.compressBatches(oldBatch, newBatch);
-
- this._dispatchHighDown('downplay', helper.makeHighDownBatch(resultBatches[0], visualMapModel));
-
- this._dispatchHighDown('highlight', helper.makeHighDownBatch(resultBatches[1], visualMapModel));
- },
-
- /**
- * @private
- */
- _hoverLinkFromSeriesMouseOver: function (e) {
- var el = e.target;
- var visualMapModel = this.visualMapModel;
-
- if (!el || el.dataIndex == null) {
- return;
- }
-
- var dataModel = this.ecModel.getSeriesByIndex(el.seriesIndex);
-
- if (!visualMapModel.isTargetSeries(dataModel)) {
- return;
- }
-
- var data = dataModel.getData(el.dataType);
- var value = data.get(visualMapModel.getDataDimension(data), el.dataIndex, true);
-
- if (!isNaN(value)) {
- this._showIndicator(value, value);
- }
- },
-
- /**
- * @private
- */
- _hideIndicator: function () {
- var shapes = this._shapes;
- shapes.indicator && shapes.indicator.attr('invisible', true);
- shapes.indicatorLabel && shapes.indicatorLabel.attr('invisible', true);
- },
-
- /**
- * @private
- */
- _clearHoverLinkToSeries: function () {
- this._hideIndicator();
-
- var indices = this._hoverLinkDataIndices;
-
- this._dispatchHighDown('downplay', helper.makeHighDownBatch(indices, this.visualMapModel));
-
- indices.length = 0;
- },
-
- /**
- * @private
- */
- _clearHoverLinkFromSeries: function () {
- this._hideIndicator();
-
- var zr = this.api.getZr();
- zr.off('mouseover', this._hoverLinkFromSeriesMouseOver);
- zr.off('mouseout', this._hideIndicator);
- },
-
- /**
- * @private
- */
- _applyTransform: function (vertex, element, inverse, global) {
- var transform = graphic.getTransform(element, global ? null : this.group);
- return graphic[zrUtil.isArray(vertex) ? 'applyTransform' : 'transformDirection'](vertex, transform, inverse);
- },
-
- /**
- * @private
- */
- _dispatchHighDown: function (type, batch) {
- batch && batch.length && this.api.dispatchAction({
- type: type,
- batch: batch
- });
- },
-
- /**
- * @override
- */
- dispose: function () {
- this._clearHoverLinkFromSeries();
-
- this._clearHoverLinkToSeries();
- },
-
- /**
- * @override
- */
- remove: function () {
- this._clearHoverLinkFromSeries();
-
- this._clearHoverLinkToSeries();
- }
- });
-
- function createPolygon(points, cursor, onDrift, onDragEnd) {
- return new graphic.Polygon({
- shape: {
- points: points
- },
- draggable: !!onDrift,
- cursor: cursor,
- drift: onDrift,
- onmousemove: function (e) {
- // Fot mobile devicem, prevent screen slider on the button.
- eventTool.stop(e.event);
- },
- ondragend: onDragEnd
- });
- }
-
- function createHandlePoints(handleIndex, textSize) {
- return handleIndex === 0 ? [[0, 0], [textSize, 0], [textSize, -textSize]] : [[0, 0], [textSize, 0], [textSize, textSize]];
- }
-
- function createIndicatorPoints(isRange, halfHoverLinkSize, pos, extentMax) {
- return isRange ? [// indicate range
- [0, -mathMin(halfHoverLinkSize, mathMax(pos, 0))], [HOVER_LINK_OUT, 0], [0, mathMin(halfHoverLinkSize, mathMax(extentMax - pos, 0))]] : [// indicate single value
- [0, 0], [5, -5], [5, 5]];
- }
-
- function getHalfHoverLinkSize(visualMapModel, dataExtent, sizeExtent) {
- var halfHoverLinkSize = HOVER_LINK_SIZE / 2;
- var hoverLinkDataSize = visualMapModel.get('hoverLinkDataSize');
-
- if (hoverLinkDataSize) {
- halfHoverLinkSize = linearMap(hoverLinkDataSize, dataExtent, sizeExtent, true) / 2;
- }
-
- return halfHoverLinkSize;
- }
-
- function useHoverLinkOnHandle(visualMapModel) {
- var hoverLinkOnHandle = visualMapModel.get('hoverLinkOnHandle');
- return !!(hoverLinkOnHandle == null ? visualMapModel.get('realtime') : hoverLinkOnHandle);
- }
-
- function getCursor(orient) {
- return orient === 'vertical' ? 'ns-resize' : 'ew-resize';
- }
-
- var _default = ContinuousView;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2792:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var zrUtil = __webpack_require__(864);
-
- var VisualMapModel = __webpack_require__(2333);
-
- var VisualMapping = __webpack_require__(1523);
-
- var visualDefault = __webpack_require__(2334);
-
- var _number = __webpack_require__(985);
-
- var reformIntervals = _number.reformIntervals;
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var PiecewiseModel = VisualMapModel.extend({
- type: 'visualMap.piecewise',
-
- /**
- * Order Rule:
- *
- * option.categories / option.pieces / option.text / option.selected:
- * If !option.inverse,
- * Order when vertical: ['top', ..., 'bottom'].
- * Order when horizontal: ['left', ..., 'right'].
- * If option.inverse, the meaning of
- * the order should be reversed.
- *
- * this._pieceList:
- * The order is always [low, ..., high].
- *
- * Mapping from location to low-high:
- * If !option.inverse
- * When vertical, top is high.
- * When horizontal, right is high.
- * If option.inverse, reverse.
- */
-
- /**
- * @protected
- */
- defaultOption: {
- selected: null,
- // Object. If not specified, means selected.
- // When pieces and splitNumber: {'0': true, '5': true}
- // When categories: {'cate1': false, 'cate3': true}
- // When selected === false, means all unselected.
- minOpen: false,
- // Whether include values that smaller than `min`.
- maxOpen: false,
- // Whether include values that bigger than `max`.
- align: 'auto',
- // 'auto', 'left', 'right'
- itemWidth: 20,
- // When put the controller vertically, it is the length of
- // horizontal side of each item. Otherwise, vertical side.
- itemHeight: 14,
- // When put the controller vertically, it is the length of
- // vertical side of each item. Otherwise, horizontal side.
- itemSymbol: 'roundRect',
- pieceList: null,
- // Each item is Object, with some of those attrs:
- // {min, max, lt, gt, lte, gte, value,
- // color, colorSaturation, colorAlpha, opacity,
- // symbol, symbolSize}, which customize the range or visual
- // coding of the certain piece. Besides, see "Order Rule".
- categories: null,
- // category names, like: ['some1', 'some2', 'some3'].
- // Attr min/max are ignored when categories set. See "Order Rule"
- splitNumber: 5,
- // If set to 5, auto split five pieces equally.
- // If set to 0 and component type not set, component type will be
- // determined as "continuous". (It is less reasonable but for ec2
- // compatibility, see echarts/component/visualMap/typeDefaulter)
- selectedMode: 'multiple',
- // Can be 'multiple' or 'single'.
- itemGap: 10,
- // The gap between two items, in px.
- hoverLink: true,
- // Enable hover highlight.
- showLabel: null // By default, when text is used, label will hide (the logic
- // is remained for compatibility reason)
-
- },
-
- /**
- * @override
- */
- optionUpdated: function (newOption, isInit) {
- PiecewiseModel.superApply(this, 'optionUpdated', arguments);
- /**
- * The order is always [low, ..., high].
- * [{text: string, interval: Array.<number>}, ...]
- * @private
- * @type {Array.<Object>}
- */
-
- this._pieceList = [];
- this.resetExtent();
- /**
- * 'pieces', 'categories', 'splitNumber'
- * @type {string}
- */
-
- var mode = this._mode = this._determineMode();
-
- resetMethods[this._mode].call(this);
-
- this._resetSelected(newOption, isInit);
-
- var categories = this.option.categories;
- this.resetVisual(function (mappingOption, state) {
- if (mode === 'categories') {
- mappingOption.mappingMethod = 'category';
- mappingOption.categories = zrUtil.clone(categories);
- } else {
- mappingOption.dataExtent = this.getExtent();
- mappingOption.mappingMethod = 'piecewise';
- mappingOption.pieceList = zrUtil.map(this._pieceList, function (piece) {
- var piece = zrUtil.clone(piece);
-
- if (state !== 'inRange') {
- // FIXME
- // outOfRange do not support special visual in pieces.
- piece.visual = null;
- }
-
- return piece;
- });
- }
- });
- },
-
- /**
- * @protected
- * @override
- */
- completeVisualOption: function () {
- // Consider this case:
- // visualMap: {
- // pieces: [{symbol: 'circle', lt: 0}, {symbol: 'rect', gte: 0}]
- // }
- // where no inRange/outOfRange set but only pieces. So we should make
- // default inRange/outOfRange for this case, otherwise visuals that only
- // appear in `pieces` will not be taken into account in visual encoding.
- var option = this.option;
- var visualTypesInPieces = {};
- var visualTypes = VisualMapping.listVisualTypes();
- var isCategory = this.isCategory();
- zrUtil.each(option.pieces, function (piece) {
- zrUtil.each(visualTypes, function (visualType) {
- if (piece.hasOwnProperty(visualType)) {
- visualTypesInPieces[visualType] = 1;
- }
- });
- });
- zrUtil.each(visualTypesInPieces, function (v, visualType) {
- var exists = 0;
- zrUtil.each(this.stateList, function (state) {
- exists |= has(option, state, visualType) || has(option.target, state, visualType);
- }, this);
- !exists && zrUtil.each(this.stateList, function (state) {
- (option[state] || (option[state] = {}))[visualType] = visualDefault.get(visualType, state === 'inRange' ? 'active' : 'inactive', isCategory);
- });
- }, this);
-
- function has(obj, state, visualType) {
- return obj && obj[state] && (zrUtil.isObject(obj[state]) ? obj[state].hasOwnProperty(visualType) : obj[state] === visualType // e.g., inRange: 'symbol'
- );
- }
-
- VisualMapModel.prototype.completeVisualOption.apply(this, arguments);
- },
- _resetSelected: function (newOption, isInit) {
- var thisOption = this.option;
- var pieceList = this._pieceList; // Selected do not merge but all override.
-
- var selected = (isInit ? thisOption : newOption).selected || {};
- thisOption.selected = selected; // Consider 'not specified' means true.
-
- zrUtil.each(pieceList, function (piece, index) {
- var key = this.getSelectedMapKey(piece);
-
- if (!selected.hasOwnProperty(key)) {
- selected[key] = true;
- }
- }, this);
-
- if (thisOption.selectedMode === 'single') {
- // Ensure there is only one selected.
- var hasSel = false;
- zrUtil.each(pieceList, function (piece, index) {
- var key = this.getSelectedMapKey(piece);
-
- if (selected[key]) {
- hasSel ? selected[key] = false : hasSel = true;
- }
- }, this);
- } // thisOption.selectedMode === 'multiple', default: all selected.
-
- },
-
- /**
- * @public
- */
- getSelectedMapKey: function (piece) {
- return this._mode === 'categories' ? piece.value + '' : piece.index + '';
- },
-
- /**
- * @public
- */
- getPieceList: function () {
- return this._pieceList;
- },
-
- /**
- * @private
- * @return {string}
- */
- _determineMode: function () {
- var option = this.option;
- return option.pieces && option.pieces.length > 0 ? 'pieces' : this.option.categories ? 'categories' : 'splitNumber';
- },
-
- /**
- * @public
- * @override
- */
- setSelected: function (selected) {
- this.option.selected = zrUtil.clone(selected);
- },
-
- /**
- * @public
- * @override
- */
- getValueState: function (value) {
- var index = VisualMapping.findPieceIndex(value, this._pieceList);
- return index != null ? this.option.selected[this.getSelectedMapKey(this._pieceList[index])] ? 'inRange' : 'outOfRange' : 'outOfRange';
- },
-
- /**
- * @public
- * @params {number} pieceIndex piece index in visualMapModel.getPieceList()
- * @return {Array.<Object>} [{seriesId, dataIndex: <Array.<number>>}, ...]
- */
- findTargetDataIndices: function (pieceIndex) {
- var result = [];
- this.eachTargetSeries(function (seriesModel) {
- var dataIndices = [];
- var data = seriesModel.getData();
- data.each(this.getDataDimension(data), function (value, dataIndex) {
- // Should always base on model pieceList, because it is order sensitive.
- var pIdx = VisualMapping.findPieceIndex(value, this._pieceList);
- pIdx === pieceIndex && dataIndices.push(dataIndex);
- }, this);
- result.push({
- seriesId: seriesModel.id,
- dataIndex: dataIndices
- });
- }, this);
- return result;
- },
-
- /**
- * @private
- * @param {Object} piece piece.value or piece.interval is required.
- * @return {number} Can be Infinity or -Infinity
- */
- getRepresentValue: function (piece) {
- var representValue;
-
- if (this.isCategory()) {
- representValue = piece.value;
- } else {
- if (piece.value != null) {
- representValue = piece.value;
- } else {
- var pieceInterval = piece.interval || [];
- representValue = pieceInterval[0] === -Infinity && pieceInterval[1] === Infinity ? 0 : (pieceInterval[0] + pieceInterval[1]) / 2;
- }
- }
-
- return representValue;
- },
- getVisualMeta: function (getColorVisual) {
- // Do not support category. (category axis is ordinal, numerical)
- if (this.isCategory()) {
- return;
- }
-
- var stops = [];
- var outerColors = [];
- var visualMapModel = this;
-
- function setStop(interval, valueState) {
- var representValue = visualMapModel.getRepresentValue({
- interval: interval
- });
-
- if (!valueState) {
- valueState = visualMapModel.getValueState(representValue);
- }
-
- var color = getColorVisual(representValue, valueState);
-
- if (interval[0] === -Infinity) {
- outerColors[0] = color;
- } else if (interval[1] === Infinity) {
- outerColors[1] = color;
- } else {
- stops.push({
- value: interval[0],
- color: color
- }, {
- value: interval[1],
- color: color
- });
- }
- } // Suplement
-
-
- var pieceList = this._pieceList.slice();
-
- if (!pieceList.length) {
- pieceList.push({
- interval: [-Infinity, Infinity]
- });
- } else {
- var edge = pieceList[0].interval[0];
- edge !== -Infinity && pieceList.unshift({
- interval: [-Infinity, edge]
- });
- edge = pieceList[pieceList.length - 1].interval[1];
- edge !== Infinity && pieceList.push({
- interval: [edge, Infinity]
- });
- }
-
- var curr = -Infinity;
- zrUtil.each(pieceList, function (piece) {
- var interval = piece.interval;
-
- if (interval) {
- // Fulfill gap.
- interval[0] > curr && setStop([curr, interval[0]], 'outOfRange');
- setStop(interval.slice());
- curr = interval[1];
- }
- }, this);
- return {
- stops: stops,
- outerColors: outerColors
- };
- }
- });
- /**
- * Key is this._mode
- * @type {Object}
- * @this {module:echarts/component/viusalMap/PiecewiseMode}
- */
-
- var resetMethods = {
- splitNumber: function () {
- var thisOption = this.option;
- var pieceList = this._pieceList;
- var precision = Math.min(thisOption.precision, 20);
- var dataExtent = this.getExtent();
- var splitNumber = thisOption.splitNumber;
- splitNumber = Math.max(parseInt(splitNumber, 10), 1);
- thisOption.splitNumber = splitNumber;
- var splitStep = (dataExtent[1] - dataExtent[0]) / splitNumber; // Precision auto-adaption
-
- while (+splitStep.toFixed(precision) !== splitStep && precision < 5) {
- precision++;
- }
-
- thisOption.precision = precision;
- splitStep = +splitStep.toFixed(precision);
- var index = 0;
-
- if (thisOption.minOpen) {
- pieceList.push({
- index: index++,
- interval: [-Infinity, dataExtent[0]],
- close: [0, 0]
- });
- }
-
- for (var curr = dataExtent[0], len = index + splitNumber; index < len; curr += splitStep) {
- var max = index === splitNumber - 1 ? dataExtent[1] : curr + splitStep;
- pieceList.push({
- index: index++,
- interval: [curr, max],
- close: [1, 1]
- });
- }
-
- if (thisOption.maxOpen) {
- pieceList.push({
- index: index++,
- interval: [dataExtent[1], Infinity],
- close: [0, 0]
- });
- }
-
- reformIntervals(pieceList);
- zrUtil.each(pieceList, function (piece) {
- piece.text = this.formatValueText(piece.interval);
- }, this);
- },
- categories: function () {
- var thisOption = this.option;
- zrUtil.each(thisOption.categories, function (cate) {
- // FIXME category模式也使用pieceList,但在visualMapping中不是使用pieceList。
- // 是否改一致。
- this._pieceList.push({
- text: this.formatValueText(cate, true),
- value: cate
- });
- }, this); // See "Order Rule".
-
- normalizeReverse(thisOption, this._pieceList);
- },
- pieces: function () {
- var thisOption = this.option;
- var pieceList = this._pieceList;
- zrUtil.each(thisOption.pieces, function (pieceListItem, index) {
- if (!zrUtil.isObject(pieceListItem)) {
- pieceListItem = {
- value: pieceListItem
- };
- }
-
- var item = {
- text: '',
- index: index
- };
-
- if (pieceListItem.label != null) {
- item.text = pieceListItem.label;
- }
-
- if (pieceListItem.hasOwnProperty('value')) {
- var value = item.value = pieceListItem.value;
- item.interval = [value, value];
- item.close = [1, 1];
- } else {
- // `min` `max` is legacy option.
- // `lt` `gt` `lte` `gte` is recommanded.
- var interval = item.interval = [];
- var close = item.close = [0, 0];
- var closeList = [1, 0, 1];
- var infinityList = [-Infinity, Infinity];
- var useMinMax = [];
-
- for (var lg = 0; lg < 2; lg++) {
- var names = [['gte', 'gt', 'min'], ['lte', 'lt', 'max']][lg];
-
- for (var i = 0; i < 3 && interval[lg] == null; i++) {
- interval[lg] = pieceListItem[names[i]];
- close[lg] = closeList[i];
- useMinMax[lg] = i === 2;
- }
-
- interval[lg] == null && (interval[lg] = infinityList[lg]);
- }
-
- useMinMax[0] && interval[1] === Infinity && (close[0] = 0);
- useMinMax[1] && interval[0] === -Infinity && (close[1] = 0);
-
- if (interval[0] === interval[1] && close[0] && close[1]) {
- // Consider: [{min: 5, max: 5, visual: {...}}, {min: 0, max: 5}],
- // we use value to lift the priority when min === max
- item.value = interval[0];
- }
- }
-
- item.visual = VisualMapping.retrieveVisuals(pieceListItem);
- pieceList.push(item);
- }, this); // See "Order Rule".
-
- normalizeReverse(thisOption, pieceList); // Only pieces
-
- reformIntervals(pieceList);
- zrUtil.each(pieceList, function (piece) {
- var close = piece.close;
- var edgeSymbols = [['<', '≤'][close[1]], ['>', '≥'][close[0]]];
- piece.text = piece.text || this.formatValueText(piece.value != null ? piece.value : piece.interval, false, edgeSymbols);
- }, this);
- }
- };
-
- function normalizeReverse(thisOption, pieceList) {
- var inverse = thisOption.inverse;
-
- if (thisOption.orient === 'vertical' ? !inverse : inverse) {
- pieceList.reverse();
- }
- }
-
- var _default = PiecewiseModel;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2793:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var VisualMapView = __webpack_require__(2335);
-
- var graphic = __webpack_require__(906);
-
- var _symbol = __webpack_require__(1404);
-
- var createSymbol = _symbol.createSymbol;
-
- var layout = __webpack_require__(1171);
-
- var helper = __webpack_require__(2336);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var PiecewiseVisualMapView = VisualMapView.extend({
- type: 'visualMap.piecewise',
-
- /**
- * @protected
- * @override
- */
- doRender: function () {
- var thisGroup = this.group;
- thisGroup.removeAll();
- var visualMapModel = this.visualMapModel;
- var textGap = visualMapModel.get('textGap');
- var textStyleModel = visualMapModel.textStyleModel;
- var textFont = textStyleModel.getFont();
- var textFill = textStyleModel.getTextColor();
-
- var itemAlign = this._getItemAlign();
-
- var itemSize = visualMapModel.itemSize;
-
- var viewData = this._getViewData();
-
- var endsText = viewData.endsText;
- var showLabel = zrUtil.retrieve(visualMapModel.get('showLabel', true), !endsText);
- endsText && this._renderEndsText(thisGroup, endsText[0], itemSize, showLabel, itemAlign);
- zrUtil.each(viewData.viewPieceList, renderItem, this);
- endsText && this._renderEndsText(thisGroup, endsText[1], itemSize, showLabel, itemAlign);
- layout.box(visualMapModel.get('orient'), thisGroup, visualMapModel.get('itemGap'));
- this.renderBackground(thisGroup);
- this.positionGroup(thisGroup);
-
- function renderItem(item) {
- var piece = item.piece;
- var itemGroup = new graphic.Group();
- itemGroup.onclick = zrUtil.bind(this._onItemClick, this, piece);
-
- this._enableHoverLink(itemGroup, item.indexInModelPieceList);
-
- var representValue = visualMapModel.getRepresentValue(piece);
-
- this._createItemSymbol(itemGroup, representValue, [0, 0, itemSize[0], itemSize[1]]);
-
- if (showLabel) {
- var visualState = this.visualMapModel.getValueState(representValue);
- itemGroup.add(new graphic.Text({
- style: {
- x: itemAlign === 'right' ? -textGap : itemSize[0] + textGap,
- y: itemSize[1] / 2,
- text: piece.text,
- textVerticalAlign: 'middle',
- textAlign: itemAlign,
- textFont: textFont,
- textFill: textFill,
- opacity: visualState === 'outOfRange' ? 0.5 : 1
- }
- }));
- }
-
- thisGroup.add(itemGroup);
- }
- },
-
- /**
- * @private
- */
- _enableHoverLink: function (itemGroup, pieceIndex) {
- itemGroup.on('mouseover', zrUtil.bind(onHoverLink, this, 'highlight')).on('mouseout', zrUtil.bind(onHoverLink, this, 'downplay'));
-
- function onHoverLink(method) {
- var visualMapModel = this.visualMapModel;
- visualMapModel.option.hoverLink && this.api.dispatchAction({
- type: method,
- batch: helper.makeHighDownBatch(visualMapModel.findTargetDataIndices(pieceIndex), visualMapModel)
- });
- }
- },
-
- /**
- * @private
- */
- _getItemAlign: function () {
- var visualMapModel = this.visualMapModel;
- var modelOption = visualMapModel.option;
-
- if (modelOption.orient === 'vertical') {
- return helper.getItemAlign(visualMapModel, this.api, visualMapModel.itemSize);
- } else {
- // horizontal, most case left unless specifying right.
- var align = modelOption.align;
-
- if (!align || align === 'auto') {
- align = 'left';
- }
-
- return align;
- }
- },
-
- /**
- * @private
- */
- _renderEndsText: function (group, text, itemSize, showLabel, itemAlign) {
- if (!text) {
- return;
- }
-
- var itemGroup = new graphic.Group();
- var textStyleModel = this.visualMapModel.textStyleModel;
- itemGroup.add(new graphic.Text({
- style: {
- x: showLabel ? itemAlign === 'right' ? itemSize[0] : 0 : itemSize[0] / 2,
- y: itemSize[1] / 2,
- textVerticalAlign: 'middle',
- textAlign: showLabel ? itemAlign : 'center',
- text: text,
- textFont: textStyleModel.getFont(),
- textFill: textStyleModel.getTextColor()
- }
- }));
- group.add(itemGroup);
- },
-
- /**
- * @private
- * @return {Object} {peiceList, endsText} The order is the same as screen pixel order.
- */
- _getViewData: function () {
- var visualMapModel = this.visualMapModel;
- var viewPieceList = zrUtil.map(visualMapModel.getPieceList(), function (piece, index) {
- return {
- piece: piece,
- indexInModelPieceList: index
- };
- });
- var endsText = visualMapModel.get('text'); // Consider orient and inverse.
-
- var orient = visualMapModel.get('orient');
- var inverse = visualMapModel.get('inverse'); // Order of model pieceList is always [low, ..., high]
-
- if (orient === 'horizontal' ? inverse : !inverse) {
- viewPieceList.reverse();
- } // Origin order of endsText is [high, low]
- else if (endsText) {
- endsText = endsText.slice().reverse();
- }
-
- return {
- viewPieceList: viewPieceList,
- endsText: endsText
- };
- },
-
- /**
- * @private
- */
- _createItemSymbol: function (group, representValue, shapeParam) {
- group.add(createSymbol(this.getControllerVisual(representValue, 'symbol'), shapeParam[0], shapeParam[1], shapeParam[2], shapeParam[3], this.getControllerVisual(representValue, 'color')));
- },
-
- /**
- * @private
- */
- _onItemClick: function (piece) {
- var visualMapModel = this.visualMapModel;
- var option = visualMapModel.option;
- var selected = zrUtil.clone(option.selected);
- var newKey = visualMapModel.getSelectedMapKey(piece);
-
- if (option.selectedMode === 'single') {
- selected[newKey] = true;
- zrUtil.each(selected, function (o, key) {
- selected[key] = key === newKey;
- });
- } else {
- selected[newKey] = !selected[newKey];
- }
-
- this.api.dispatchAction({
- type: 'selectDataRange',
- from: this.uid,
- visualMapId: this.visualMapModel.id,
- selected: selected
- });
- }
- });
- var _default = PiecewiseVisualMapView;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2794:
- /***/ (function(module, exports, __webpack_require__) {
-
- __webpack_require__(2795);
-
- var _zrender = __webpack_require__(1780);
-
- var registerPainter = _zrender.registerPainter;
-
- var Painter = __webpack_require__(2796);
-
- registerPainter('vml', Painter);
-
- /***/ }),
-
- /***/ 2795:
- /***/ (function(module, exports, __webpack_require__) {
-
- var env = __webpack_require__(1316);
-
- var _vector = __webpack_require__(1180);
-
- var applyTransform = _vector.applyTransform;
-
- var BoundingRect = __webpack_require__(1185);
-
- var colorTool = __webpack_require__(1438);
-
- var textContain = __webpack_require__(1402);
-
- var textHelper = __webpack_require__(1783);
-
- var RectText = __webpack_require__(2265);
-
- var Displayable = __webpack_require__(1656);
-
- var ZImage = __webpack_require__(1598);
-
- var Text = __webpack_require__(1517);
-
- var Path = __webpack_require__(1280);
-
- var PathProxy = __webpack_require__(1600);
-
- var Gradient = __webpack_require__(1785);
-
- var vmlCore = __webpack_require__(2339);
-
- // http://www.w3.org/TR/NOTE-VML
- // TODO Use proxy like svg instead of overwrite brush methods
- var CMD = PathProxy.CMD;
- var round = Math.round;
- var sqrt = Math.sqrt;
- var abs = Math.abs;
- var cos = Math.cos;
- var sin = Math.sin;
- var mathMax = Math.max;
-
- if (!env.canvasSupported) {
- var comma = ',';
- var imageTransformPrefix = 'progid:DXImageTransform.Microsoft';
- var Z = 21600;
- var Z2 = Z / 2;
- var ZLEVEL_BASE = 100000;
- var Z_BASE = 1000;
-
- var initRootElStyle = function (el) {
- el.style.cssText = 'position:absolute;left:0;top:0;width:1px;height:1px;';
- el.coordsize = Z + ',' + Z;
- el.coordorigin = '0,0';
- };
-
- var encodeHtmlAttribute = function (s) {
- return String(s).replace(/&/g, '&').replace(/"/g, '"');
- };
-
- var rgb2Str = function (r, g, b) {
- return 'rgb(' + [r, g, b].join(',') + ')';
- };
-
- var append = function (parent, child) {
- if (child && parent && child.parentNode !== parent) {
- parent.appendChild(child);
- }
- };
-
- var remove = function (parent, child) {
- if (child && parent && child.parentNode === parent) {
- parent.removeChild(child);
- }
- };
-
- var getZIndex = function (zlevel, z, z2) {
- // z 的取值范围为 [0, 1000]
- return (parseFloat(zlevel) || 0) * ZLEVEL_BASE + (parseFloat(z) || 0) * Z_BASE + z2;
- };
-
- var parsePercent = textHelper.parsePercent;
- /***************************************************
- * PATH
- **************************************************/
-
- var setColorAndOpacity = function (el, color, opacity) {
- var colorArr = colorTool.parse(color);
- opacity = +opacity;
-
- if (isNaN(opacity)) {
- opacity = 1;
- }
-
- if (colorArr) {
- el.color = rgb2Str(colorArr[0], colorArr[1], colorArr[2]);
- el.opacity = opacity * colorArr[3];
- }
- };
-
- var getColorAndAlpha = function (color) {
- var colorArr = colorTool.parse(color);
- return [rgb2Str(colorArr[0], colorArr[1], colorArr[2]), colorArr[3]];
- };
-
- var updateFillNode = function (el, style, zrEl) {
- // TODO pattern
- var fill = style.fill;
-
- if (fill != null) {
- // Modified from excanvas
- if (fill instanceof Gradient) {
- var gradientType;
- var angle = 0;
- var focus = [0, 0]; // additional offset
-
- var shift = 0; // scale factor for offset
-
- var expansion = 1;
- var rect = zrEl.getBoundingRect();
- var rectWidth = rect.width;
- var rectHeight = rect.height;
-
- if (fill.type === 'linear') {
- gradientType = 'gradient';
- var transform = zrEl.transform;
- var p0 = [fill.x * rectWidth, fill.y * rectHeight];
- var p1 = [fill.x2 * rectWidth, fill.y2 * rectHeight];
-
- if (transform) {
- applyTransform(p0, p0, transform);
- applyTransform(p1, p1, transform);
- }
-
- var dx = p1[0] - p0[0];
- var dy = p1[1] - p0[1];
- angle = Math.atan2(dx, dy) * 180 / Math.PI; // The angle should be a non-negative number.
-
- if (angle < 0) {
- angle += 360;
- } // Very small angles produce an unexpected result because they are
- // converted to a scientific notation string.
-
-
- if (angle < 1e-6) {
- angle = 0;
- }
- } else {
- gradientType = 'gradientradial';
- var p0 = [fill.x * rectWidth, fill.y * rectHeight];
- var transform = zrEl.transform;
- var scale = zrEl.scale;
- var width = rectWidth;
- var height = rectHeight;
- focus = [// Percent in bounding rect
- (p0[0] - rect.x) / width, (p0[1] - rect.y) / height];
-
- if (transform) {
- applyTransform(p0, p0, transform);
- }
-
- width /= scale[0] * Z;
- height /= scale[1] * Z;
- var dimension = mathMax(width, height);
- shift = 2 * 0 / dimension;
- expansion = 2 * fill.r / dimension - shift;
- } // We need to sort the color stops in ascending order by offset,
- // otherwise IE won't interpret it correctly.
-
-
- var stops = fill.colorStops.slice();
- stops.sort(function (cs1, cs2) {
- return cs1.offset - cs2.offset;
- });
- var length = stops.length; // Color and alpha list of first and last stop
-
- var colorAndAlphaList = [];
- var colors = [];
-
- for (var i = 0; i < length; i++) {
- var stop = stops[i];
- var colorAndAlpha = getColorAndAlpha(stop.color);
- colors.push(stop.offset * expansion + shift + ' ' + colorAndAlpha[0]);
-
- if (i === 0 || i === length - 1) {
- colorAndAlphaList.push(colorAndAlpha);
- }
- }
-
- if (length >= 2) {
- var color1 = colorAndAlphaList[0][0];
- var color2 = colorAndAlphaList[1][0];
- var opacity1 = colorAndAlphaList[0][1] * style.opacity;
- var opacity2 = colorAndAlphaList[1][1] * style.opacity;
- el.type = gradientType;
- el.method = 'none';
- el.focus = '100%';
- el.angle = angle;
- el.color = color1;
- el.color2 = color2;
- el.colors = colors.join(','); // When colors attribute is used, the meanings of opacity and o:opacity2
- // are reversed.
-
- el.opacity = opacity2; // FIXME g_o_:opacity ?
-
- el.opacity2 = opacity1;
- }
-
- if (gradientType === 'radial') {
- el.focusposition = focus.join(',');
- }
- } else {
- // FIXME Change from Gradient fill to color fill
- setColorAndOpacity(el, fill, style.opacity);
- }
- }
- };
-
- var updateStrokeNode = function (el, style) {
- // if (style.lineJoin != null) {
- // el.joinstyle = style.lineJoin;
- // }
- // if (style.miterLimit != null) {
- // el.miterlimit = style.miterLimit * Z;
- // }
- // if (style.lineCap != null) {
- // el.endcap = style.lineCap;
- // }
- if (style.lineDash) {
- el.dashstyle = style.lineDash.join(' ');
- }
-
- if (style.stroke != null && !(style.stroke instanceof Gradient)) {
- setColorAndOpacity(el, style.stroke, style.opacity);
- }
- };
-
- var updateFillAndStroke = function (vmlEl, type, style, zrEl) {
- var isFill = type === 'fill';
- var el = vmlEl.getElementsByTagName(type)[0]; // Stroke must have lineWidth
-
- if (style[type] != null && style[type] !== 'none' && (isFill || !isFill && style.lineWidth)) {
- vmlEl[isFill ? 'filled' : 'stroked'] = 'true'; // FIXME Remove before updating, or set `colors` will throw error
-
- if (style[type] instanceof Gradient) {
- remove(vmlEl, el);
- }
-
- if (!el) {
- el = vmlCore.createNode(type);
- }
-
- isFill ? updateFillNode(el, style, zrEl) : updateStrokeNode(el, style);
- append(vmlEl, el);
- } else {
- vmlEl[isFill ? 'filled' : 'stroked'] = 'false';
- remove(vmlEl, el);
- }
- };
-
- var points = [[], [], []];
-
- var pathDataToString = function (path, m) {
- var M = CMD.M;
- var C = CMD.C;
- var L = CMD.L;
- var A = CMD.A;
- var Q = CMD.Q;
- var str = [];
- var nPoint;
- var cmdStr;
- var cmd;
- var i;
- var xi;
- var yi;
- var data = path.data;
- var dataLength = path.len();
-
- for (i = 0; i < dataLength;) {
- cmd = data[i++];
- cmdStr = '';
- nPoint = 0;
-
- switch (cmd) {
- case M:
- cmdStr = ' m ';
- nPoint = 1;
- xi = data[i++];
- yi = data[i++];
- points[0][0] = xi;
- points[0][1] = yi;
- break;
-
- case L:
- cmdStr = ' l ';
- nPoint = 1;
- xi = data[i++];
- yi = data[i++];
- points[0][0] = xi;
- points[0][1] = yi;
- break;
-
- case Q:
- case C:
- cmdStr = ' c ';
- nPoint = 3;
- var x1 = data[i++];
- var y1 = data[i++];
- var x2 = data[i++];
- var y2 = data[i++];
- var x3;
- var y3;
-
- if (cmd === Q) {
- // Convert quadratic to cubic using degree elevation
- x3 = x2;
- y3 = y2;
- x2 = (x2 + 2 * x1) / 3;
- y2 = (y2 + 2 * y1) / 3;
- x1 = (xi + 2 * x1) / 3;
- y1 = (yi + 2 * y1) / 3;
- } else {
- x3 = data[i++];
- y3 = data[i++];
- }
-
- points[0][0] = x1;
- points[0][1] = y1;
- points[1][0] = x2;
- points[1][1] = y2;
- points[2][0] = x3;
- points[2][1] = y3;
- xi = x3;
- yi = y3;
- break;
-
- case A:
- var x = 0;
- var y = 0;
- var sx = 1;
- var sy = 1;
- var angle = 0;
-
- if (m) {
- // Extract SRT from matrix
- x = m[4];
- y = m[5];
- sx = sqrt(m[0] * m[0] + m[1] * m[1]);
- sy = sqrt(m[2] * m[2] + m[3] * m[3]);
- angle = Math.atan2(-m[1] / sy, m[0] / sx);
- }
-
- var cx = data[i++];
- var cy = data[i++];
- var rx = data[i++];
- var ry = data[i++];
- var startAngle = data[i++] + angle;
- var endAngle = data[i++] + startAngle + angle; // FIXME
- // var psi = data[i++];
-
- i++;
- var clockwise = data[i++];
- var x0 = cx + cos(startAngle) * rx;
- var y0 = cy + sin(startAngle) * ry;
- var x1 = cx + cos(endAngle) * rx;
- var y1 = cy + sin(endAngle) * ry;
- var type = clockwise ? ' wa ' : ' at ';
-
- if (Math.abs(x0 - x1) < 1e-4) {
- // IE won't render arches drawn counter clockwise if x0 == x1.
- if (Math.abs(endAngle - startAngle) > 1e-2) {
- // Offset x0 by 1/80 of a pixel. Use something
- // that can be represented in binary
- if (clockwise) {
- x0 += 270 / Z;
- }
- } else {
- // Avoid case draw full circle
- if (Math.abs(y0 - cy) < 1e-4) {
- if (clockwise && x0 < cx || !clockwise && x0 > cx) {
- y1 -= 270 / Z;
- } else {
- y1 += 270 / Z;
- }
- } else if (clockwise && y0 < cy || !clockwise && y0 > cy) {
- x1 += 270 / Z;
- } else {
- x1 -= 270 / Z;
- }
- }
- }
-
- str.push(type, round(((cx - rx) * sx + x) * Z - Z2), comma, round(((cy - ry) * sy + y) * Z - Z2), comma, round(((cx + rx) * sx + x) * Z - Z2), comma, round(((cy + ry) * sy + y) * Z - Z2), comma, round((x0 * sx + x) * Z - Z2), comma, round((y0 * sy + y) * Z - Z2), comma, round((x1 * sx + x) * Z - Z2), comma, round((y1 * sy + y) * Z - Z2));
- xi = x1;
- yi = y1;
- break;
-
- case CMD.R:
- var p0 = points[0];
- var p1 = points[1]; // x0, y0
-
- p0[0] = data[i++];
- p0[1] = data[i++]; // x1, y1
-
- p1[0] = p0[0] + data[i++];
- p1[1] = p0[1] + data[i++];
-
- if (m) {
- applyTransform(p0, p0, m);
- applyTransform(p1, p1, m);
- }
-
- p0[0] = round(p0[0] * Z - Z2);
- p1[0] = round(p1[0] * Z - Z2);
- p0[1] = round(p0[1] * Z - Z2);
- p1[1] = round(p1[1] * Z - Z2);
- str.push( // x0, y0
- ' m ', p0[0], comma, p0[1], // x1, y0
- ' l ', p1[0], comma, p0[1], // x1, y1
- ' l ', p1[0], comma, p1[1], // x0, y1
- ' l ', p0[0], comma, p1[1]);
- break;
-
- case CMD.Z:
- // FIXME Update xi, yi
- str.push(' x ');
- }
-
- if (nPoint > 0) {
- str.push(cmdStr);
-
- for (var k = 0; k < nPoint; k++) {
- var p = points[k];
- m && applyTransform(p, p, m); // 不 round 会非常慢
-
- str.push(round(p[0] * Z - Z2), comma, round(p[1] * Z - Z2), k < nPoint - 1 ? comma : '');
- }
- }
- }
-
- return str.join('');
- }; // Rewrite the original path method
-
-
- Path.prototype.brushVML = function (vmlRoot) {
- var style = this.style;
- var vmlEl = this._vmlEl;
-
- if (!vmlEl) {
- vmlEl = vmlCore.createNode('shape');
- initRootElStyle(vmlEl);
- this._vmlEl = vmlEl;
- }
-
- updateFillAndStroke(vmlEl, 'fill', style, this);
- updateFillAndStroke(vmlEl, 'stroke', style, this);
- var m = this.transform;
- var needTransform = m != null;
- var strokeEl = vmlEl.getElementsByTagName('stroke')[0];
-
- if (strokeEl) {
- var lineWidth = style.lineWidth; // Get the line scale.
- // Determinant of this.m_ means how much the area is enlarged by the
- // transformation. So its square root can be used as a scale factor
- // for width.
-
- if (needTransform && !style.strokeNoScale) {
- var det = m[0] * m[3] - m[1] * m[2];
- lineWidth *= sqrt(abs(det));
- }
-
- strokeEl.weight = lineWidth + 'px';
- }
-
- var path = this.path || (this.path = new PathProxy());
-
- if (this.__dirtyPath) {
- path.beginPath();
- path.subPixelOptimize = false;
- this.buildPath(path, this.shape);
- path.toStatic();
- this.__dirtyPath = false;
- }
-
- vmlEl.path = pathDataToString(path, this.transform);
- vmlEl.style.zIndex = getZIndex(this.zlevel, this.z, this.z2); // Append to root
-
- append(vmlRoot, vmlEl); // Text
-
- if (style.text != null) {
- this.drawRectText(vmlRoot, this.getBoundingRect());
- } else {
- this.removeRectText(vmlRoot);
- }
- };
-
- Path.prototype.onRemove = function (vmlRoot) {
- remove(vmlRoot, this._vmlEl);
- this.removeRectText(vmlRoot);
- };
-
- Path.prototype.onAdd = function (vmlRoot) {
- append(vmlRoot, this._vmlEl);
- this.appendRectText(vmlRoot);
- };
- /***************************************************
- * IMAGE
- **************************************************/
-
-
- var isImage = function (img) {
- // FIXME img instanceof Image 如果 img 是一个字符串的时候,IE8 下会报错
- return typeof img === 'object' && img.tagName && img.tagName.toUpperCase() === 'IMG'; // return img instanceof Image;
- }; // Rewrite the original path method
-
-
- ZImage.prototype.brushVML = function (vmlRoot) {
- var style = this.style;
- var image = style.image; // Image original width, height
-
- var ow;
- var oh;
-
- if (isImage(image)) {
- var src = image.src;
-
- if (src === this._imageSrc) {
- ow = this._imageWidth;
- oh = this._imageHeight;
- } else {
- var imageRuntimeStyle = image.runtimeStyle;
- var oldRuntimeWidth = imageRuntimeStyle.width;
- var oldRuntimeHeight = imageRuntimeStyle.height;
- imageRuntimeStyle.width = 'auto';
- imageRuntimeStyle.height = 'auto'; // get the original size
-
- ow = image.width;
- oh = image.height; // and remove overides
-
- imageRuntimeStyle.width = oldRuntimeWidth;
- imageRuntimeStyle.height = oldRuntimeHeight; // Caching image original width, height and src
-
- this._imageSrc = src;
- this._imageWidth = ow;
- this._imageHeight = oh;
- }
-
- image = src;
- } else {
- if (image === this._imageSrc) {
- ow = this._imageWidth;
- oh = this._imageHeight;
- }
- }
-
- if (!image) {
- return;
- }
-
- var x = style.x || 0;
- var y = style.y || 0;
- var dw = style.width;
- var dh = style.height;
- var sw = style.sWidth;
- var sh = style.sHeight;
- var sx = style.sx || 0;
- var sy = style.sy || 0;
- var hasCrop = sw && sh;
- var vmlEl = this._vmlEl;
-
- if (!vmlEl) {
- // FIXME 使用 group 在 left, top 都不是 0 的时候就无法显示了。
- // vmlEl = vmlCore.createNode('group');
- vmlEl = vmlCore.doc.createElement('div');
- initRootElStyle(vmlEl);
- this._vmlEl = vmlEl;
- }
-
- var vmlElStyle = vmlEl.style;
- var hasRotation = false;
- var m;
- var scaleX = 1;
- var scaleY = 1;
-
- if (this.transform) {
- m = this.transform;
- scaleX = sqrt(m[0] * m[0] + m[1] * m[1]);
- scaleY = sqrt(m[2] * m[2] + m[3] * m[3]);
- hasRotation = m[1] || m[2];
- }
-
- if (hasRotation) {
- // If filters are necessary (rotation exists), create them
- // filters are bog-slow, so only create them if abbsolutely necessary
- // The following check doesn't account for skews (which don't exist
- // in the canvas spec (yet) anyway.
- // From excanvas
- var p0 = [x, y];
- var p1 = [x + dw, y];
- var p2 = [x, y + dh];
- var p3 = [x + dw, y + dh];
- applyTransform(p0, p0, m);
- applyTransform(p1, p1, m);
- applyTransform(p2, p2, m);
- applyTransform(p3, p3, m);
- var maxX = mathMax(p0[0], p1[0], p2[0], p3[0]);
- var maxY = mathMax(p0[1], p1[1], p2[1], p3[1]);
- var transformFilter = [];
- transformFilter.push('M11=', m[0] / scaleX, comma, 'M12=', m[2] / scaleY, comma, 'M21=', m[1] / scaleX, comma, 'M22=', m[3] / scaleY, comma, 'Dx=', round(x * scaleX + m[4]), comma, 'Dy=', round(y * scaleY + m[5]));
- vmlElStyle.padding = '0 ' + round(maxX) + 'px ' + round(maxY) + 'px 0'; // FIXME DXImageTransform 在 IE11 的兼容模式下不起作用
-
- vmlElStyle.filter = imageTransformPrefix + '.Matrix(' + transformFilter.join('') + ', SizingMethod=clip)';
- } else {
- if (m) {
- x = x * scaleX + m[4];
- y = y * scaleY + m[5];
- }
-
- vmlElStyle.filter = '';
- vmlElStyle.left = round(x) + 'px';
- vmlElStyle.top = round(y) + 'px';
- }
-
- var imageEl = this._imageEl;
- var cropEl = this._cropEl;
-
- if (!imageEl) {
- imageEl = vmlCore.doc.createElement('div');
- this._imageEl = imageEl;
- }
-
- var imageELStyle = imageEl.style;
-
- if (hasCrop) {
- // Needs know image original width and height
- if (!(ow && oh)) {
- var tmpImage = new Image();
- var self = this;
-
- tmpImage.onload = function () {
- tmpImage.onload = null;
- ow = tmpImage.width;
- oh = tmpImage.height; // Adjust image width and height to fit the ratio destinationSize / sourceSize
-
- imageELStyle.width = round(scaleX * ow * dw / sw) + 'px';
- imageELStyle.height = round(scaleY * oh * dh / sh) + 'px'; // Caching image original width, height and src
-
- self._imageWidth = ow;
- self._imageHeight = oh;
- self._imageSrc = image;
- };
-
- tmpImage.src = image;
- } else {
- imageELStyle.width = round(scaleX * ow * dw / sw) + 'px';
- imageELStyle.height = round(scaleY * oh * dh / sh) + 'px';
- }
-
- if (!cropEl) {
- cropEl = vmlCore.doc.createElement('div');
- cropEl.style.overflow = 'hidden';
- this._cropEl = cropEl;
- }
-
- var cropElStyle = cropEl.style;
- cropElStyle.width = round((dw + sx * dw / sw) * scaleX);
- cropElStyle.height = round((dh + sy * dh / sh) * scaleY);
- cropElStyle.filter = imageTransformPrefix + '.Matrix(Dx=' + -sx * dw / sw * scaleX + ',Dy=' + -sy * dh / sh * scaleY + ')';
-
- if (!cropEl.parentNode) {
- vmlEl.appendChild(cropEl);
- }
-
- if (imageEl.parentNode !== cropEl) {
- cropEl.appendChild(imageEl);
- }
- } else {
- imageELStyle.width = round(scaleX * dw) + 'px';
- imageELStyle.height = round(scaleY * dh) + 'px';
- vmlEl.appendChild(imageEl);
-
- if (cropEl && cropEl.parentNode) {
- vmlEl.removeChild(cropEl);
- this._cropEl = null;
- }
- }
-
- var filterStr = '';
- var alpha = style.opacity;
-
- if (alpha < 1) {
- filterStr += '.Alpha(opacity=' + round(alpha * 100) + ') ';
- }
-
- filterStr += imageTransformPrefix + '.AlphaImageLoader(src=' + image + ', SizingMethod=scale)';
- imageELStyle.filter = filterStr;
- vmlEl.style.zIndex = getZIndex(this.zlevel, this.z, this.z2); // Append to root
-
- append(vmlRoot, vmlEl); // Text
-
- if (style.text != null) {
- this.drawRectText(vmlRoot, this.getBoundingRect());
- }
- };
-
- ZImage.prototype.onRemove = function (vmlRoot) {
- remove(vmlRoot, this._vmlEl);
- this._vmlEl = null;
- this._cropEl = null;
- this._imageEl = null;
- this.removeRectText(vmlRoot);
- };
-
- ZImage.prototype.onAdd = function (vmlRoot) {
- append(vmlRoot, this._vmlEl);
- this.appendRectText(vmlRoot);
- };
- /***************************************************
- * TEXT
- **************************************************/
-
-
- var DEFAULT_STYLE_NORMAL = 'normal';
- var fontStyleCache = {};
- var fontStyleCacheCount = 0;
- var MAX_FONT_CACHE_SIZE = 100;
- var fontEl = document.createElement('div');
-
- var getFontStyle = function (fontString) {
- var fontStyle = fontStyleCache[fontString];
-
- if (!fontStyle) {
- // Clear cache
- if (fontStyleCacheCount > MAX_FONT_CACHE_SIZE) {
- fontStyleCacheCount = 0;
- fontStyleCache = {};
- }
-
- var style = fontEl.style;
- var fontFamily;
-
- try {
- style.font = fontString;
- fontFamily = style.fontFamily.split(',')[0];
- } catch (e) {}
-
- fontStyle = {
- style: style.fontStyle || DEFAULT_STYLE_NORMAL,
- variant: style.fontVariant || DEFAULT_STYLE_NORMAL,
- weight: style.fontWeight || DEFAULT_STYLE_NORMAL,
- size: parseFloat(style.fontSize || 12) | 0,
- family: fontFamily || 'Microsoft YaHei'
- };
- fontStyleCache[fontString] = fontStyle;
- fontStyleCacheCount++;
- }
-
- return fontStyle;
- };
-
- var textMeasureEl; // Overwrite measure text method
-
- textContain.$override('measureText', function (text, textFont) {
- var doc = vmlCore.doc;
-
- if (!textMeasureEl) {
- textMeasureEl = doc.createElement('div');
- textMeasureEl.style.cssText = 'position:absolute;top:-20000px;left:0;' + 'padding:0;margin:0;border:none;white-space:pre;';
- vmlCore.doc.body.appendChild(textMeasureEl);
- }
-
- try {
- textMeasureEl.style.font = textFont;
- } catch (ex) {// Ignore failures to set to invalid font.
- }
-
- textMeasureEl.innerHTML = ''; // Don't use innerHTML or innerText because they allow markup/whitespace.
-
- textMeasureEl.appendChild(doc.createTextNode(text));
- return {
- width: textMeasureEl.offsetWidth
- };
- });
- var tmpRect = new BoundingRect();
-
- var drawRectText = function (vmlRoot, rect, textRect, fromTextEl) {
- var style = this.style; // Optimize, avoid normalize every time.
-
- this.__dirty && textHelper.normalizeTextStyle(style, true);
- var text = style.text; // Convert to string
-
- text != null && (text += '');
-
- if (!text) {
- return;
- } // Convert rich text to plain text. Rich text is not supported in
- // IE8-, but tags in rich text template will be removed.
-
-
- if (style.rich) {
- var contentBlock = textContain.parseRichText(text, style);
- text = [];
-
- for (var i = 0; i < contentBlock.lines.length; i++) {
- var tokens = contentBlock.lines[i].tokens;
- var textLine = [];
-
- for (var j = 0; j < tokens.length; j++) {
- textLine.push(tokens[j].text);
- }
-
- text.push(textLine.join(''));
- }
-
- text = text.join('\n');
- }
-
- var x;
- var y;
- var align = style.textAlign;
- var verticalAlign = style.textVerticalAlign;
- var fontStyle = getFontStyle(style.font); // FIXME encodeHtmlAttribute ?
-
- var font = fontStyle.style + ' ' + fontStyle.variant + ' ' + fontStyle.weight + ' ' + fontStyle.size + 'px "' + fontStyle.family + '"';
- textRect = textRect || textContain.getBoundingRect(text, font, align, verticalAlign, style.textPadding, style.textLineHeight); // Transform rect to view space
-
- var m = this.transform; // Ignore transform for text in other element
-
- if (m && !fromTextEl) {
- tmpRect.copy(rect);
- tmpRect.applyTransform(m);
- rect = tmpRect;
- }
-
- if (!fromTextEl) {
- var textPosition = style.textPosition; // Text position represented by coord
-
- if (textPosition instanceof Array) {
- x = rect.x + parsePercent(textPosition[0], rect.width);
- y = rect.y + parsePercent(textPosition[1], rect.height);
- align = align || 'left';
- } else {
- var res = this.calculateTextPosition ? this.calculateTextPosition({}, style, rect) : textContain.calculateTextPosition({}, style, rect);
- x = res.x;
- y = res.y; // Default align and baseline when has textPosition
-
- align = align || res.textAlign;
- verticalAlign = verticalAlign || res.textVerticalAlign;
- }
- } else {
- x = rect.x;
- y = rect.y;
- }
-
- x = textContain.adjustTextX(x, textRect.width, align);
- y = textContain.adjustTextY(y, textRect.height, verticalAlign); // Force baseline 'middle'
-
- y += textRect.height / 2; // var fontSize = fontStyle.size;
- // 1.75 is an arbitrary number, as there is no info about the text baseline
- // switch (baseline) {
- // case 'hanging':
- // case 'top':
- // y += fontSize / 1.75;
- // break;
- // case 'middle':
- // break;
- // default:
- // // case null:
- // // case 'alphabetic':
- // // case 'ideographic':
- // // case 'bottom':
- // y -= fontSize / 2.25;
- // break;
- // }
- // switch (align) {
- // case 'left':
- // break;
- // case 'center':
- // x -= textRect.width / 2;
- // break;
- // case 'right':
- // x -= textRect.width;
- // break;
- // case 'end':
- // align = elementStyle.direction == 'ltr' ? 'right' : 'left';
- // break;
- // case 'start':
- // align = elementStyle.direction == 'rtl' ? 'right' : 'left';
- // break;
- // default:
- // align = 'left';
- // }
-
- var createNode = vmlCore.createNode;
- var textVmlEl = this._textVmlEl;
- var pathEl;
- var textPathEl;
- var skewEl;
-
- if (!textVmlEl) {
- textVmlEl = createNode('line');
- pathEl = createNode('path');
- textPathEl = createNode('textpath');
- skewEl = createNode('skew'); // FIXME Why here is not cammel case
- // Align 'center' seems wrong
-
- textPathEl.style['v-text-align'] = 'left';
- initRootElStyle(textVmlEl);
- pathEl.textpathok = true;
- textPathEl.on = true;
- textVmlEl.from = '0 0';
- textVmlEl.to = '1000 0.05';
- append(textVmlEl, skewEl);
- append(textVmlEl, pathEl);
- append(textVmlEl, textPathEl);
- this._textVmlEl = textVmlEl;
- } else {
- // 这里是在前面 appendChild 保证顺序的前提下
- skewEl = textVmlEl.firstChild;
- pathEl = skewEl.nextSibling;
- textPathEl = pathEl.nextSibling;
- }
-
- var coords = [x, y];
- var textVmlElStyle = textVmlEl.style; // Ignore transform for text in other element
-
- if (m && fromTextEl) {
- applyTransform(coords, coords, m);
- skewEl.on = true;
- skewEl.matrix = m[0].toFixed(3) + comma + m[2].toFixed(3) + comma + m[1].toFixed(3) + comma + m[3].toFixed(3) + ',0,0'; // Text position
-
- skewEl.offset = (round(coords[0]) || 0) + ',' + (round(coords[1]) || 0); // Left top point as origin
-
- skewEl.origin = '0 0';
- textVmlElStyle.left = '0px';
- textVmlElStyle.top = '0px';
- } else {
- skewEl.on = false;
- textVmlElStyle.left = round(x) + 'px';
- textVmlElStyle.top = round(y) + 'px';
- }
-
- textPathEl.string = encodeHtmlAttribute(text); // TODO
-
- try {
- textPathEl.style.font = font;
- } // Error font format
- catch (e) {}
-
- updateFillAndStroke(textVmlEl, 'fill', {
- fill: style.textFill,
- opacity: style.opacity
- }, this);
- updateFillAndStroke(textVmlEl, 'stroke', {
- stroke: style.textStroke,
- opacity: style.opacity,
- lineDash: style.lineDash || null // style.lineDash can be `false`.
-
- }, this);
- textVmlEl.style.zIndex = getZIndex(this.zlevel, this.z, this.z2); // Attached to root
-
- append(vmlRoot, textVmlEl);
- };
-
- var removeRectText = function (vmlRoot) {
- remove(vmlRoot, this._textVmlEl);
- this._textVmlEl = null;
- };
-
- var appendRectText = function (vmlRoot) {
- append(vmlRoot, this._textVmlEl);
- };
-
- var list = [RectText, Displayable, ZImage, Path, Text]; // In case Displayable has been mixed in RectText
-
- for (var i = 0; i < list.length; i++) {
- var proto = list[i].prototype;
- proto.drawRectText = drawRectText;
- proto.removeRectText = removeRectText;
- proto.appendRectText = appendRectText;
- }
-
- Text.prototype.brushVML = function (vmlRoot) {
- var style = this.style;
-
- if (style.text != null) {
- this.drawRectText(vmlRoot, {
- x: style.x || 0,
- y: style.y || 0,
- width: 0,
- height: 0
- }, this.getBoundingRect(), true);
- } else {
- this.removeRectText(vmlRoot);
- }
- };
-
- Text.prototype.onRemove = function (vmlRoot) {
- this.removeRectText(vmlRoot);
- };
-
- Text.prototype.onAdd = function (vmlRoot) {
- this.appendRectText(vmlRoot);
- };
- }
-
- /***/ }),
-
- /***/ 2796:
- /***/ (function(module, exports, __webpack_require__) {
-
- var logError = __webpack_require__(1655);
-
- var vmlCore = __webpack_require__(2339);
-
- var _util = __webpack_require__(864);
-
- var each = _util.each;
-
- /**
- * VML Painter.
- *
- * @module zrender/vml/Painter
- */
- function parseInt10(val) {
- return parseInt(val, 10);
- }
- /**
- * @alias module:zrender/vml/Painter
- */
-
-
- function VMLPainter(root, storage) {
- vmlCore.initVML();
- this.root = root;
- this.storage = storage;
- var vmlViewport = document.createElement('div');
- var vmlRoot = document.createElement('div');
- vmlViewport.style.cssText = 'display:inline-block;overflow:hidden;position:relative;width:300px;height:150px;';
- vmlRoot.style.cssText = 'position:absolute;left:0;top:0;';
- root.appendChild(vmlViewport);
- this._vmlRoot = vmlRoot;
- this._vmlViewport = vmlViewport;
- this.resize(); // Modify storage
-
- var oldDelFromStorage = storage.delFromStorage;
- var oldAddToStorage = storage.addToStorage;
-
- storage.delFromStorage = function (el) {
- oldDelFromStorage.call(storage, el);
-
- if (el) {
- el.onRemove && el.onRemove(vmlRoot);
- }
- };
-
- storage.addToStorage = function (el) {
- // Displayable already has a vml node
- el.onAdd && el.onAdd(vmlRoot);
- oldAddToStorage.call(storage, el);
- };
-
- this._firstPaint = true;
- }
-
- VMLPainter.prototype = {
- constructor: VMLPainter,
- getType: function () {
- return 'vml';
- },
-
- /**
- * @return {HTMLDivElement}
- */
- getViewportRoot: function () {
- return this._vmlViewport;
- },
- getViewportRootOffset: function () {
- var viewportRoot = this.getViewportRoot();
-
- if (viewportRoot) {
- return {
- offsetLeft: viewportRoot.offsetLeft || 0,
- offsetTop: viewportRoot.offsetTop || 0
- };
- }
- },
-
- /**
- * 刷新
- */
- refresh: function () {
- var list = this.storage.getDisplayList(true, true);
-
- this._paintList(list);
- },
- _paintList: function (list) {
- var vmlRoot = this._vmlRoot;
-
- for (var i = 0; i < list.length; i++) {
- var el = list[i];
-
- if (el.invisible || el.ignore) {
- if (!el.__alreadyNotVisible) {
- el.onRemove(vmlRoot);
- } // Set as already invisible
-
-
- el.__alreadyNotVisible = true;
- } else {
- if (el.__alreadyNotVisible) {
- el.onAdd(vmlRoot);
- }
-
- el.__alreadyNotVisible = false;
-
- if (el.__dirty) {
- el.beforeBrush && el.beforeBrush();
- (el.brushVML || el.brush).call(el, vmlRoot);
- el.afterBrush && el.afterBrush();
- }
- }
-
- el.__dirty = false;
- }
-
- if (this._firstPaint) {
- // Detached from document at first time
- // to avoid page refreshing too many times
- // FIXME 如果每次都先 removeChild 可能会导致一些填充和描边的效果改变
- this._vmlViewport.appendChild(vmlRoot);
-
- this._firstPaint = false;
- }
- },
- resize: function (width, height) {
- var width = width == null ? this._getWidth() : width;
- var height = height == null ? this._getHeight() : height;
-
- if (this._width !== width || this._height !== height) {
- this._width = width;
- this._height = height;
- var vmlViewportStyle = this._vmlViewport.style;
- vmlViewportStyle.width = width + 'px';
- vmlViewportStyle.height = height + 'px';
- }
- },
- dispose: function () {
- this.root.innerHTML = '';
- this._vmlRoot = this._vmlViewport = this.storage = null;
- },
- getWidth: function () {
- return this._width;
- },
- getHeight: function () {
- return this._height;
- },
- clear: function () {
- if (this._vmlViewport) {
- this.root.removeChild(this._vmlViewport);
- }
- },
- _getWidth: function () {
- var root = this.root;
- var stl = root.currentStyle;
- return (root.clientWidth || parseInt10(stl.width)) - parseInt10(stl.paddingLeft) - parseInt10(stl.paddingRight) | 0;
- },
- _getHeight: function () {
- var root = this.root;
- var stl = root.currentStyle;
- return (root.clientHeight || parseInt10(stl.height)) - parseInt10(stl.paddingTop) - parseInt10(stl.paddingBottom) | 0;
- }
- }; // Not supported methods
-
- function createMethodNotSupport(method) {
- return function () {
- logError('In IE8.0 VML mode painter not support method "' + method + '"');
- };
- } // Unsupported methods
-
-
- each(['getLayer', 'insertLayer', 'eachLayer', 'eachBuiltinLayer', 'eachOtherLayer', 'getLayers', 'modLayer', 'delLayer', 'clearLayer', 'toDataURL', 'pathToImage'], function (name) {
- VMLPainter.prototype[name] = createMethodNotSupport(name);
- });
- var _default = VMLPainter;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2797:
- /***/ (function(module, exports, __webpack_require__) {
-
- __webpack_require__(1925);
-
- var _zrender = __webpack_require__(1780);
-
- var registerPainter = _zrender.registerPainter;
-
- var Painter = __webpack_require__(2798);
-
- registerPainter('svg', Painter);
-
- /***/ }),
-
- /***/ 2798:
- /***/ (function(module, exports, __webpack_require__) {
-
- var _core = __webpack_require__(1926);
-
- var createElement = _core.createElement;
-
- var util = __webpack_require__(864);
-
- var logError = __webpack_require__(1655);
-
- var Path = __webpack_require__(1280);
-
- var ZImage = __webpack_require__(1598);
-
- var ZText = __webpack_require__(1517);
-
- var arrayDiff = __webpack_require__(2799);
-
- var GradientManager = __webpack_require__(2800);
-
- var ClippathManager = __webpack_require__(2801);
-
- var ShadowManager = __webpack_require__(2802);
-
- var _graphic = __webpack_require__(1925);
-
- var svgPath = _graphic.path;
- var svgImage = _graphic.image;
- var svgText = _graphic.text;
-
- /**
- * SVG Painter
- * @module zrender/svg/Painter
- */
- function parseInt10(val) {
- return parseInt(val, 10);
- }
-
- function getSvgProxy(el) {
- if (el instanceof Path) {
- return svgPath;
- } else if (el instanceof ZImage) {
- return svgImage;
- } else if (el instanceof ZText) {
- return svgText;
- } else {
- return svgPath;
- }
- }
-
- function checkParentAvailable(parent, child) {
- return child && parent && child.parentNode !== parent;
- }
-
- function insertAfter(parent, child, prevSibling) {
- if (checkParentAvailable(parent, child) && prevSibling) {
- var nextSibling = prevSibling.nextSibling;
- nextSibling ? parent.insertBefore(child, nextSibling) : parent.appendChild(child);
- }
- }
-
- function prepend(parent, child) {
- if (checkParentAvailable(parent, child)) {
- var firstChild = parent.firstChild;
- firstChild ? parent.insertBefore(child, firstChild) : parent.appendChild(child);
- }
- } // function append(parent, child) {
- // if (checkParentAvailable(parent, child)) {
- // parent.appendChild(child);
- // }
- // }
-
-
- function remove(parent, child) {
- if (child && parent && child.parentNode === parent) {
- parent.removeChild(child);
- }
- }
-
- function getTextSvgElement(displayable) {
- return displayable.__textSvgEl;
- }
-
- function getSvgElement(displayable) {
- return displayable.__svgEl;
- }
- /**
- * @alias module:zrender/svg/Painter
- * @constructor
- * @param {HTMLElement} root 绘图容器
- * @param {module:zrender/Storage} storage
- * @param {Object} opts
- */
-
-
- var SVGPainter = function (root, storage, opts, zrId) {
- this.root = root;
- this.storage = storage;
- this._opts = opts = util.extend({}, opts || {});
- var svgRoot = createElement('svg');
- svgRoot.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
- svgRoot.setAttribute('version', '1.1');
- svgRoot.setAttribute('baseProfile', 'full');
- svgRoot.style.cssText = 'user-select:none;position:absolute;left:0;top:0;';
- this.gradientManager = new GradientManager(zrId, svgRoot);
- this.clipPathManager = new ClippathManager(zrId, svgRoot);
- this.shadowManager = new ShadowManager(zrId, svgRoot);
- var viewport = document.createElement('div');
- viewport.style.cssText = 'overflow:hidden;position:relative';
- this._svgRoot = svgRoot;
- this._viewport = viewport;
- root.appendChild(viewport);
- viewport.appendChild(svgRoot);
- this.resize(opts.width, opts.height);
- this._visibleList = [];
- };
-
- SVGPainter.prototype = {
- constructor: SVGPainter,
- getType: function () {
- return 'svg';
- },
- getViewportRoot: function () {
- return this._viewport;
- },
- getViewportRootOffset: function () {
- var viewportRoot = this.getViewportRoot();
-
- if (viewportRoot) {
- return {
- offsetLeft: viewportRoot.offsetLeft || 0,
- offsetTop: viewportRoot.offsetTop || 0
- };
- }
- },
- refresh: function () {
- var list = this.storage.getDisplayList(true);
-
- this._paintList(list);
- },
- setBackgroundColor: function (backgroundColor) {
- // TODO gradient
- this._viewport.style.background = backgroundColor;
- },
- _paintList: function (list) {
- this.gradientManager.markAllUnused();
- this.clipPathManager.markAllUnused();
- this.shadowManager.markAllUnused();
- var svgRoot = this._svgRoot;
- var visibleList = this._visibleList;
- var listLen = list.length;
- var newVisibleList = [];
- var i;
-
- for (i = 0; i < listLen; i++) {
- var displayable = list[i];
- var svgProxy = getSvgProxy(displayable);
- var svgElement = getSvgElement(displayable) || getTextSvgElement(displayable);
-
- if (!displayable.invisible) {
- if (displayable.__dirty) {
- svgProxy && svgProxy.brush(displayable); // Update clipPath
-
- this.clipPathManager.update(displayable); // Update gradient and shadow
-
- if (displayable.style) {
- this.gradientManager.update(displayable.style.fill);
- this.gradientManager.update(displayable.style.stroke);
- this.shadowManager.update(svgElement, displayable);
- }
-
- displayable.__dirty = false;
- }
-
- newVisibleList.push(displayable);
- }
- }
-
- var diff = arrayDiff(visibleList, newVisibleList);
- var prevSvgElement; // First do remove, in case element moved to the head and do remove
- // after add
-
- for (i = 0; i < diff.length; i++) {
- var item = diff[i];
-
- if (item.removed) {
- for (var k = 0; k < item.count; k++) {
- var displayable = visibleList[item.indices[k]];
- var svgElement = getSvgElement(displayable);
- var textSvgElement = getTextSvgElement(displayable);
- remove(svgRoot, svgElement);
- remove(svgRoot, textSvgElement);
- }
- }
- }
-
- for (i = 0; i < diff.length; i++) {
- var item = diff[i];
-
- if (item.added) {
- for (var k = 0; k < item.count; k++) {
- var displayable = newVisibleList[item.indices[k]];
- var svgElement = getSvgElement(displayable);
- var textSvgElement = getTextSvgElement(displayable);
- prevSvgElement ? insertAfter(svgRoot, svgElement, prevSvgElement) : prepend(svgRoot, svgElement);
-
- if (svgElement) {
- insertAfter(svgRoot, textSvgElement, svgElement);
- } else if (prevSvgElement) {
- insertAfter(svgRoot, textSvgElement, prevSvgElement);
- } else {
- prepend(svgRoot, textSvgElement);
- } // Insert text
-
-
- insertAfter(svgRoot, textSvgElement, svgElement);
- prevSvgElement = textSvgElement || svgElement || prevSvgElement; // zrender.Text only create textSvgElement.
-
- this.gradientManager.addWithoutUpdate(svgElement || textSvgElement, displayable);
- this.shadowManager.addWithoutUpdate(svgElement || textSvgElement, displayable);
- this.clipPathManager.markUsed(displayable);
- }
- } else if (!item.removed) {
- for (var k = 0; k < item.count; k++) {
- var displayable = newVisibleList[item.indices[k]];
- var svgElement = getSvgElement(displayable);
- var textSvgElement = getTextSvgElement(displayable);
- var svgElement = getSvgElement(displayable);
- var textSvgElement = getTextSvgElement(displayable);
- this.gradientManager.markUsed(displayable);
- this.gradientManager.addWithoutUpdate(svgElement || textSvgElement, displayable);
- this.shadowManager.markUsed(displayable);
- this.shadowManager.addWithoutUpdate(svgElement || textSvgElement, displayable);
- this.clipPathManager.markUsed(displayable);
-
- if (textSvgElement) {
- // Insert text.
- insertAfter(svgRoot, textSvgElement, svgElement);
- }
-
- prevSvgElement = svgElement || textSvgElement || prevSvgElement;
- }
- }
- }
-
- this.gradientManager.removeUnused();
- this.clipPathManager.removeUnused();
- this.shadowManager.removeUnused();
- this._visibleList = newVisibleList;
- },
- _getDefs: function (isForceCreating) {
- var svgRoot = this._svgRoot;
-
- var defs = this._svgRoot.getElementsByTagName('defs');
-
- if (defs.length === 0) {
- // Not exist
- if (isForceCreating) {
- var defs = svgRoot.insertBefore(createElement('defs'), // Create new tag
- svgRoot.firstChild // Insert in the front of svg
- );
-
- if (!defs.contains) {
- // IE doesn't support contains method
- defs.contains = function (el) {
- var children = defs.children;
-
- if (!children) {
- return false;
- }
-
- for (var i = children.length - 1; i >= 0; --i) {
- if (children[i] === el) {
- return true;
- }
- }
-
- return false;
- };
- }
-
- return defs;
- } else {
- return null;
- }
- } else {
- return defs[0];
- }
- },
- resize: function (width, height) {
- var viewport = this._viewport; // FIXME Why ?
-
- viewport.style.display = 'none'; // Save input w/h
-
- var opts = this._opts;
- width != null && (opts.width = width);
- height != null && (opts.height = height);
- width = this._getSize(0);
- height = this._getSize(1);
- viewport.style.display = '';
-
- if (this._width !== width || this._height !== height) {
- this._width = width;
- this._height = height;
- var viewportStyle = viewport.style;
- viewportStyle.width = width + 'px';
- viewportStyle.height = height + 'px';
- var svgRoot = this._svgRoot; // Set width by 'svgRoot.width = width' is invalid
-
- svgRoot.setAttribute('width', width);
- svgRoot.setAttribute('height', height);
- }
- },
-
- /**
- * 获取绘图区域宽度
- */
- getWidth: function () {
- return this._width;
- },
-
- /**
- * 获取绘图区域高度
- */
- getHeight: function () {
- return this._height;
- },
- _getSize: function (whIdx) {
- var opts = this._opts;
- var wh = ['width', 'height'][whIdx];
- var cwh = ['clientWidth', 'clientHeight'][whIdx];
- var plt = ['paddingLeft', 'paddingTop'][whIdx];
- var prb = ['paddingRight', 'paddingBottom'][whIdx];
-
- if (opts[wh] != null && opts[wh] !== 'auto') {
- return parseFloat(opts[wh]);
- }
-
- var root = this.root; // IE8 does not support getComputedStyle, but it use VML.
-
- var stl = document.defaultView.getComputedStyle(root);
- return (root[cwh] || parseInt10(stl[wh]) || parseInt10(root.style[wh])) - (parseInt10(stl[plt]) || 0) - (parseInt10(stl[prb]) || 0) | 0;
- },
- dispose: function () {
- this.root.innerHTML = '';
- this._svgRoot = this._viewport = this.storage = null;
- },
- clear: function () {
- if (this._viewport) {
- this.root.removeChild(this._viewport);
- }
- },
- pathToDataUrl: function () {
- this.refresh();
- var html = this._svgRoot.outerHTML;
- return 'data:image/svg+xml;charset=UTF-8,' + html;
- }
- }; // Not supported methods
-
- function createMethodNotSupport(method) {
- return function () {
- logError('In SVG mode painter not support method "' + method + '"');
- };
- } // Unsuppoted methods
-
-
- util.each(['getLayer', 'insertLayer', 'eachLayer', 'eachBuiltinLayer', 'eachOtherLayer', 'getLayers', 'modLayer', 'delLayer', 'clearLayer', 'toDataURL', 'pathToImage'], function (name) {
- SVGPainter.prototype[name] = createMethodNotSupport(name);
- });
- var _default = SVGPainter;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2799:
- /***/ (function(module, exports) {
-
- // Myers' Diff Algorithm
- // Modified from https://github.com/kpdecker/jsdiff/blob/master/src/diff/base.js
- function Diff() {}
-
- Diff.prototype = {
- diff: function (oldArr, newArr, equals) {
- if (!equals) {
- equals = function (a, b) {
- return a === b;
- };
- }
-
- this.equals = equals;
- var self = this;
- oldArr = oldArr.slice();
- newArr = newArr.slice(); // Allow subclasses to massage the input prior to running
-
- var newLen = newArr.length;
- var oldLen = oldArr.length;
- var editLength = 1;
- var maxEditLength = newLen + oldLen;
- var bestPath = [{
- newPos: -1,
- components: []
- }]; // Seed editLength = 0, i.e. the content starts with the same values
-
- var oldPos = this.extractCommon(bestPath[0], newArr, oldArr, 0);
-
- if (bestPath[0].newPos + 1 >= newLen && oldPos + 1 >= oldLen) {
- var indices = [];
-
- for (var i = 0; i < newArr.length; i++) {
- indices.push(i);
- } // Identity per the equality and tokenizer
-
-
- return [{
- indices: indices,
- count: newArr.length
- }];
- } // Main worker method. checks all permutations of a given edit length for acceptance.
-
-
- function execEditLength() {
- for (var diagonalPath = -1 * editLength; diagonalPath <= editLength; diagonalPath += 2) {
- var basePath;
- var addPath = bestPath[diagonalPath - 1];
- var removePath = bestPath[diagonalPath + 1];
- var oldPos = (removePath ? removePath.newPos : 0) - diagonalPath;
-
- if (addPath) {
- // No one else is going to attempt to use this value, clear it
- bestPath[diagonalPath - 1] = undefined;
- }
-
- var canAdd = addPath && addPath.newPos + 1 < newLen;
- var canRemove = removePath && 0 <= oldPos && oldPos < oldLen;
-
- if (!canAdd && !canRemove) {
- // If this path is a terminal then prune
- bestPath[diagonalPath] = undefined;
- continue;
- } // Select the diagonal that we want to branch from. We select the prior
- // path whose position in the new string is the farthest from the origin
- // and does not pass the bounds of the diff graph
-
-
- if (!canAdd || canRemove && addPath.newPos < removePath.newPos) {
- basePath = clonePath(removePath);
- self.pushComponent(basePath.components, undefined, true);
- } else {
- basePath = addPath; // No need to clone, we've pulled it from the list
-
- basePath.newPos++;
- self.pushComponent(basePath.components, true, undefined);
- }
-
- oldPos = self.extractCommon(basePath, newArr, oldArr, diagonalPath); // If we have hit the end of both strings, then we are done
-
- if (basePath.newPos + 1 >= newLen && oldPos + 1 >= oldLen) {
- return buildValues(self, basePath.components, newArr, oldArr);
- } else {
- // Otherwise track this path as a potential candidate and continue.
- bestPath[diagonalPath] = basePath;
- }
- }
-
- editLength++;
- }
-
- while (editLength <= maxEditLength) {
- var ret = execEditLength();
-
- if (ret) {
- return ret;
- }
- }
- },
- pushComponent: function (components, added, removed) {
- var last = components[components.length - 1];
-
- if (last && last.added === added && last.removed === removed) {
- // We need to clone here as the component clone operation is just
- // as shallow array clone
- components[components.length - 1] = {
- count: last.count + 1,
- added: added,
- removed: removed
- };
- } else {
- components.push({
- count: 1,
- added: added,
- removed: removed
- });
- }
- },
- extractCommon: function (basePath, newArr, oldArr, diagonalPath) {
- var newLen = newArr.length;
- var oldLen = oldArr.length;
- var newPos = basePath.newPos;
- var oldPos = newPos - diagonalPath;
- var commonCount = 0;
-
- while (newPos + 1 < newLen && oldPos + 1 < oldLen && this.equals(newArr[newPos + 1], oldArr[oldPos + 1])) {
- newPos++;
- oldPos++;
- commonCount++;
- }
-
- if (commonCount) {
- basePath.components.push({
- count: commonCount
- });
- }
-
- basePath.newPos = newPos;
- return oldPos;
- },
- tokenize: function (value) {
- return value.slice();
- },
- join: function (value) {
- return value.slice();
- }
- };
-
- function buildValues(diff, components, newArr, oldArr) {
- var componentPos = 0;
- var componentLen = components.length;
- var newPos = 0;
- var oldPos = 0;
-
- for (; componentPos < componentLen; componentPos++) {
- var component = components[componentPos];
-
- if (!component.removed) {
- var indices = [];
-
- for (var i = newPos; i < newPos + component.count; i++) {
- indices.push(i);
- }
-
- component.indices = indices;
- newPos += component.count; // Common case
-
- if (!component.added) {
- oldPos += component.count;
- }
- } else {
- var indices = [];
-
- for (var i = oldPos; i < oldPos + component.count; i++) {
- indices.push(i);
- }
-
- component.indices = indices;
- oldPos += component.count;
- }
- }
-
- return components;
- }
-
- function clonePath(path) {
- return {
- newPos: path.newPos,
- components: path.components.slice(0)
- };
- }
-
- var arrayDiff = new Diff();
-
- function _default(oldArr, newArr, callback) {
- return arrayDiff.diff(oldArr, newArr, callback);
- }
-
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2800:
- /***/ (function(module, exports, __webpack_require__) {
-
- var Definable = __webpack_require__(1927);
-
- var zrUtil = __webpack_require__(864);
-
- var logError = __webpack_require__(1655);
-
- var colorTool = __webpack_require__(1438);
-
- /**
- * @file Manages SVG gradient elements.
- * @author Zhang Wenli
- */
-
- /**
- * Manages SVG gradient elements.
- *
- * @class
- * @extends Definable
- * @param {number} zrId zrender instance id
- * @param {SVGElement} svgRoot root of SVG document
- */
- function GradientManager(zrId, svgRoot) {
- Definable.call(this, zrId, svgRoot, ['linearGradient', 'radialGradient'], '__gradient_in_use__');
- }
-
- zrUtil.inherits(GradientManager, Definable);
- /**
- * Create new gradient DOM for fill or stroke if not exist,
- * but will not update gradient if exists.
- *
- * @param {SvgElement} svgElement SVG element to paint
- * @param {Displayable} displayable zrender displayable element
- */
-
- GradientManager.prototype.addWithoutUpdate = function (svgElement, displayable) {
- if (displayable && displayable.style) {
- var that = this;
- zrUtil.each(['fill', 'stroke'], function (fillOrStroke) {
- if (displayable.style[fillOrStroke] && (displayable.style[fillOrStroke].type === 'linear' || displayable.style[fillOrStroke].type === 'radial')) {
- var gradient = displayable.style[fillOrStroke];
- var defs = that.getDefs(true); // Create dom in <defs> if not exists
-
- var dom;
-
- if (gradient._dom) {
- // Gradient exists
- dom = gradient._dom;
-
- if (!defs.contains(gradient._dom)) {
- // _dom is no longer in defs, recreate
- that.addDom(dom);
- }
- } else {
- // New dom
- dom = that.add(gradient);
- }
-
- that.markUsed(displayable);
- var id = dom.getAttribute('id');
- svgElement.setAttribute(fillOrStroke, 'url(#' + id + ')');
- }
- });
- }
- };
- /**
- * Add a new gradient tag in <defs>
- *
- * @param {Gradient} gradient zr gradient instance
- * @return {SVGLinearGradientElement | SVGRadialGradientElement}
- * created DOM
- */
-
-
- GradientManager.prototype.add = function (gradient) {
- var dom;
-
- if (gradient.type === 'linear') {
- dom = this.createElement('linearGradient');
- } else if (gradient.type === 'radial') {
- dom = this.createElement('radialGradient');
- } else {
- logError('Illegal gradient type.');
- return null;
- } // Set dom id with gradient id, since each gradient instance
- // will have no more than one dom element.
- // id may exists before for those dirty elements, in which case
- // id should remain the same, and other attributes should be
- // updated.
-
-
- gradient.id = gradient.id || this.nextId++;
- dom.setAttribute('id', 'zr' + this._zrId + '-gradient-' + gradient.id);
- this.updateDom(gradient, dom);
- this.addDom(dom);
- return dom;
- };
- /**
- * Update gradient.
- *
- * @param {Gradient} gradient zr gradient instance
- */
-
-
- GradientManager.prototype.update = function (gradient) {
- var that = this;
- Definable.prototype.update.call(this, gradient, function () {
- var type = gradient.type;
- var tagName = gradient._dom.tagName;
-
- if (type === 'linear' && tagName === 'linearGradient' || type === 'radial' && tagName === 'radialGradient') {
- // Gradient type is not changed, update gradient
- that.updateDom(gradient, gradient._dom);
- } else {
- // Remove and re-create if type is changed
- that.removeDom(gradient);
- that.add(gradient);
- }
- });
- };
- /**
- * Update gradient dom
- *
- * @param {Gradient} gradient zr gradient instance
- * @param {SVGLinearGradientElement | SVGRadialGradientElement} dom
- * DOM to update
- */
-
-
- GradientManager.prototype.updateDom = function (gradient, dom) {
- if (gradient.type === 'linear') {
- dom.setAttribute('x1', gradient.x);
- dom.setAttribute('y1', gradient.y);
- dom.setAttribute('x2', gradient.x2);
- dom.setAttribute('y2', gradient.y2);
- } else if (gradient.type === 'radial') {
- dom.setAttribute('cx', gradient.x);
- dom.setAttribute('cy', gradient.y);
- dom.setAttribute('r', gradient.r);
- } else {
- logError('Illegal gradient type.');
- return;
- }
-
- if (gradient.global) {
- // x1, x2, y1, y2 in range of 0 to canvas width or height
- dom.setAttribute('gradientUnits', 'userSpaceOnUse');
- } else {
- // x1, x2, y1, y2 in range of 0 to 1
- dom.setAttribute('gradientUnits', 'objectBoundingBox');
- } // Remove color stops if exists
-
-
- dom.innerHTML = ''; // Add color stops
-
- var colors = gradient.colorStops;
-
- for (var i = 0, len = colors.length; i < len; ++i) {
- var stop = this.createElement('stop');
- stop.setAttribute('offset', colors[i].offset * 100 + '%');
- var color = colors[i].color;
-
- if (color.indexOf('rgba' > -1)) {
- // Fix Safari bug that stop-color not recognizing alpha #9014
- var opacity = colorTool.parse(color)[3];
- var hex = colorTool.toHex(color); // stop-color cannot be color, since:
- // The opacity value used for the gradient calculation is the
- // *product* of the value of stop-opacity and the opacity of the
- // value of stop-color.
- // See https://www.w3.org/TR/SVG2/pservers.html#StopOpacityProperty
-
- stop.setAttribute('stop-color', '#' + hex);
- stop.setAttribute('stop-opacity', opacity);
- } else {
- stop.setAttribute('stop-color', colors[i].color);
- }
-
- dom.appendChild(stop);
- } // Store dom element in gradient, to avoid creating multiple
- // dom instances for the same gradient element
-
-
- gradient._dom = dom;
- };
- /**
- * Mark a single gradient to be used
- *
- * @param {Displayable} displayable displayable element
- */
-
-
- GradientManager.prototype.markUsed = function (displayable) {
- if (displayable.style) {
- var gradient = displayable.style.fill;
-
- if (gradient && gradient._dom) {
- Definable.prototype.markUsed.call(this, gradient._dom);
- }
-
- gradient = displayable.style.stroke;
-
- if (gradient && gradient._dom) {
- Definable.prototype.markUsed.call(this, gradient._dom);
- }
- }
- };
-
- var _default = GradientManager;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2801:
- /***/ (function(module, exports, __webpack_require__) {
-
- var Definable = __webpack_require__(1927);
-
- var zrUtil = __webpack_require__(864);
-
- var matrix = __webpack_require__(1350);
-
- /**
- * @file Manages SVG clipPath elements.
- * @author Zhang Wenli
- */
-
- /**
- * Manages SVG clipPath elements.
- *
- * @class
- * @extends Definable
- * @param {number} zrId zrender instance id
- * @param {SVGElement} svgRoot root of SVG document
- */
- function ClippathManager(zrId, svgRoot) {
- Definable.call(this, zrId, svgRoot, 'clipPath', '__clippath_in_use__');
- }
-
- zrUtil.inherits(ClippathManager, Definable);
- /**
- * Update clipPath.
- *
- * @param {Displayable} displayable displayable element
- */
-
- ClippathManager.prototype.update = function (displayable) {
- var svgEl = this.getSvgElement(displayable);
-
- if (svgEl) {
- this.updateDom(svgEl, displayable.__clipPaths, false);
- }
-
- var textEl = this.getTextSvgElement(displayable);
-
- if (textEl) {
- // Make another clipPath for text, since it's transform
- // matrix is not the same with svgElement
- this.updateDom(textEl, displayable.__clipPaths, true);
- }
-
- this.markUsed(displayable);
- };
- /**
- * Create an SVGElement of displayable and create a <clipPath> of its
- * clipPath
- *
- * @param {Displayable} parentEl parent element
- * @param {ClipPath[]} clipPaths clipPaths of parent element
- * @param {boolean} isText if parent element is Text
- */
-
-
- ClippathManager.prototype.updateDom = function (parentEl, clipPaths, isText) {
- if (clipPaths && clipPaths.length > 0) {
- // Has clipPath, create <clipPath> with the first clipPath
- var defs = this.getDefs(true);
- var clipPath = clipPaths[0];
- var clipPathEl;
- var id;
- var dom = isText ? '_textDom' : '_dom';
-
- if (clipPath[dom]) {
- // Use a dom that is already in <defs>
- id = clipPath[dom].getAttribute('id');
- clipPathEl = clipPath[dom]; // Use a dom that is already in <defs>
-
- if (!defs.contains(clipPathEl)) {
- // This happens when set old clipPath that has
- // been previously removed
- defs.appendChild(clipPathEl);
- }
- } else {
- // New <clipPath>
- id = 'zr' + this._zrId + '-clip-' + this.nextId;
- ++this.nextId;
- clipPathEl = this.createElement('clipPath');
- clipPathEl.setAttribute('id', id);
- defs.appendChild(clipPathEl);
- clipPath[dom] = clipPathEl;
- } // Build path and add to <clipPath>
-
-
- var svgProxy = this.getSvgProxy(clipPath);
-
- if (clipPath.transform && clipPath.parent.invTransform && !isText) {
- /**
- * If a clipPath has a parent with transform, the transform
- * of parent should not be considered when setting transform
- * of clipPath. So we need to transform back from parent's
- * transform, which is done by multiplying parent's inverse
- * transform.
- */
- // Store old transform
- var transform = Array.prototype.slice.call(clipPath.transform); // Transform back from parent, and brush path
-
- matrix.mul(clipPath.transform, clipPath.parent.invTransform, clipPath.transform);
- svgProxy.brush(clipPath); // Set back transform of clipPath
-
- clipPath.transform = transform;
- } else {
- svgProxy.brush(clipPath);
- }
-
- var pathEl = this.getSvgElement(clipPath);
- clipPathEl.innerHTML = '';
- /**
- * Use `cloneNode()` here to appendChild to multiple parents,
- * which may happend when Text and other shapes are using the same
- * clipPath. Since Text will create an extra clipPath DOM due to
- * different transform rules.
- */
-
- clipPathEl.appendChild(pathEl.cloneNode());
- parentEl.setAttribute('clip-path', 'url(#' + id + ')');
-
- if (clipPaths.length > 1) {
- // Make the other clipPaths recursively
- this.updateDom(clipPathEl, clipPaths.slice(1), isText);
- }
- } else {
- // No clipPath
- if (parentEl) {
- parentEl.setAttribute('clip-path', 'none');
- }
- }
- };
- /**
- * Mark a single clipPath to be used
- *
- * @param {Displayable} displayable displayable element
- */
-
-
- ClippathManager.prototype.markUsed = function (displayable) {
- var that = this; // displayable.__clipPaths can only be `null`/`undefined` or an non-empty array.
-
- if (displayable.__clipPaths) {
- zrUtil.each(displayable.__clipPaths, function (clipPath) {
- if (clipPath._dom) {
- Definable.prototype.markUsed.call(that, clipPath._dom);
- }
-
- if (clipPath._textDom) {
- Definable.prototype.markUsed.call(that, clipPath._textDom);
- }
- });
- }
- };
-
- var _default = ClippathManager;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 2802:
- /***/ (function(module, exports, __webpack_require__) {
-
- var Definable = __webpack_require__(1927);
-
- var zrUtil = __webpack_require__(864);
-
- /**
- * @file Manages SVG shadow elements.
- * @author Zhang Wenli
- */
-
- /**
- * Manages SVG shadow elements.
- *
- * @class
- * @extends Definable
- * @param {number} zrId zrender instance id
- * @param {SVGElement} svgRoot root of SVG document
- */
- function ShadowManager(zrId, svgRoot) {
- Definable.call(this, zrId, svgRoot, ['filter'], '__filter_in_use__', '_shadowDom');
- }
-
- zrUtil.inherits(ShadowManager, Definable);
- /**
- * Create new shadow DOM for fill or stroke if not exist,
- * but will not update shadow if exists.
- *
- * @param {SvgElement} svgElement SVG element to paint
- * @param {Displayable} displayable zrender displayable element
- */
-
- ShadowManager.prototype.addWithoutUpdate = function (svgElement, displayable) {
- if (displayable && hasShadow(displayable.style)) {
- // Create dom in <defs> if not exists
- var dom;
-
- if (displayable._shadowDom) {
- // Gradient exists
- dom = displayable._shadowDom;
- var defs = this.getDefs(true);
-
- if (!defs.contains(displayable._shadowDom)) {
- // _shadowDom is no longer in defs, recreate
- this.addDom(dom);
- }
- } else {
- // New dom
- dom = this.add(displayable);
- }
-
- this.markUsed(displayable);
- var id = dom.getAttribute('id');
- svgElement.style.filter = 'url(#' + id + ')';
- }
- };
- /**
- * Add a new shadow tag in <defs>
- *
- * @param {Displayable} displayable zrender displayable element
- * @return {SVGFilterElement} created DOM
- */
-
-
- ShadowManager.prototype.add = function (displayable) {
- var dom = this.createElement('filter'); // Set dom id with shadow id, since each shadow instance
- // will have no more than one dom element.
- // id may exists before for those dirty elements, in which case
- // id should remain the same, and other attributes should be
- // updated.
-
- displayable._shadowDomId = displayable._shadowDomId || this.nextId++;
- dom.setAttribute('id', 'zr' + this._zrId + '-shadow-' + displayable._shadowDomId);
- this.updateDom(displayable, dom);
- this.addDom(dom);
- return dom;
- };
- /**
- * Update shadow.
- *
- * @param {Displayable} displayable zrender displayable element
- */
-
-
- ShadowManager.prototype.update = function (svgElement, displayable) {
- var style = displayable.style;
-
- if (hasShadow(style)) {
- var that = this;
- Definable.prototype.update.call(this, displayable, function () {
- that.updateDom(displayable, displayable._shadowDom);
- });
- } else {
- // Remove shadow
- this.remove(svgElement, displayable);
- }
- };
- /**
- * Remove DOM and clear parent filter
- */
-
-
- ShadowManager.prototype.remove = function (svgElement, displayable) {
- if (displayable._shadowDomId != null) {
- this.removeDom(svgElement);
- svgElement.style.filter = '';
- }
- };
- /**
- * Update shadow dom
- *
- * @param {Displayable} displayable zrender displayable element
- * @param {SVGFilterElement} dom DOM to update
- */
-
-
- ShadowManager.prototype.updateDom = function (displayable, dom) {
- var domChild = dom.getElementsByTagName('feDropShadow');
-
- if (domChild.length === 0) {
- domChild = this.createElement('feDropShadow');
- } else {
- domChild = domChild[0];
- }
-
- var style = displayable.style;
- var scaleX = displayable.scale ? displayable.scale[0] || 1 : 1;
- var scaleY = displayable.scale ? displayable.scale[1] || 1 : 1; // TODO: textBoxShadowBlur is not supported yet
-
- var offsetX;
- var offsetY;
- var blur;
- var color;
-
- if (style.shadowBlur || style.shadowOffsetX || style.shadowOffsetY) {
- offsetX = style.shadowOffsetX || 0;
- offsetY = style.shadowOffsetY || 0;
- blur = style.shadowBlur;
- color = style.shadowColor;
- } else if (style.textShadowBlur) {
- offsetX = style.textShadowOffsetX || 0;
- offsetY = style.textShadowOffsetY || 0;
- blur = style.textShadowBlur;
- color = style.textShadowColor;
- } else {
- // Remove shadow
- this.removeDom(dom, style);
- return;
- }
-
- domChild.setAttribute('dx', offsetX / scaleX);
- domChild.setAttribute('dy', offsetY / scaleY);
- domChild.setAttribute('flood-color', color); // Divide by two here so that it looks the same as in canvas
- // See: https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-shadowblur
-
- var stdDx = blur / 2 / scaleX;
- var stdDy = blur / 2 / scaleY;
- var stdDeviation = stdDx + ' ' + stdDy;
- domChild.setAttribute('stdDeviation', stdDeviation); // Fix filter clipping problem
-
- dom.setAttribute('x', '-100%');
- dom.setAttribute('y', '-100%');
- dom.setAttribute('width', Math.ceil(blur / 2 * 200) + '%');
- dom.setAttribute('height', Math.ceil(blur / 2 * 200) + '%');
- dom.appendChild(domChild); // Store dom element in shadow, to avoid creating multiple
- // dom instances for the same shadow element
-
- displayable._shadowDom = dom;
- };
- /**
- * Mark a single shadow to be used
- *
- * @param {Displayable} displayable displayable element
- */
-
-
- ShadowManager.prototype.markUsed = function (displayable) {
- if (displayable._shadowDom) {
- Definable.prototype.markUsed.call(this, displayable._shadowDom);
- }
- };
-
- function hasShadow(style) {
- // TODO: textBoxShadowBlur is not supported yet
- return style && (style.shadowBlur || style.shadowOffsetX || style.shadowOffsetY || style.textShadowBlur || style.textShadowOffsetX || style.textShadowOffsetY);
- }
-
- var _default = ShadowManager;
- module.exports = _default;
-
- /***/ }),
-
- /***/ 3303:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react__ = __webpack_require__(0);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_react__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_educoder__ = __webpack_require__(5);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_react_router_dom__ = __webpack_require__(48);
- var _createClass=function(){function defineProperties(target,props){for(var i=0;i<props.length;i++){var descriptor=props[i];descriptor.enumerable=descriptor.enumerable||false;descriptor.configurable=true;if("value"in descriptor)descriptor.writable=true;Object.defineProperty(target,descriptor.key,descriptor);}}return function(Constructor,protoProps,staticProps){if(protoProps)defineProperties(Constructor.prototype,protoProps);if(staticProps)defineProperties(Constructor,staticProps);return Constructor;};}();function _classCallCheck(instance,Constructor){if(!(instance instanceof Constructor)){throw new TypeError("Cannot call a class as a function");}}function _possibleConstructorReturn(self,call){if(!self){throw new ReferenceError("this hasn't been initialised - super() hasn't been called");}return call&&(typeof call==="object"||typeof call==="function")?call:self;}function _inherits(subClass,superClass){if(typeof superClass!=="function"&&superClass!==null){throw new TypeError("Super expression must either be null or a function, not "+typeof superClass);}subClass.prototype=Object.create(superClass&&superClass.prototype,{constructor:{value:subClass,enumerable:false,writable:true,configurable:true}});if(superClass)Object.setPrototypeOf?Object.setPrototypeOf(subClass,superClass):subClass.__proto__=superClass;}var echarts=__webpack_require__(2408);function startechart(data){var effChart=echarts.init(document.getElementById('shixun_skill_chart'));var option={title:{text:'工作效率',subtext:'工作效率=log(实训总得分/实训总耗时)'},grid:{left:'3%',right:'9%',bottom:'3%',containLabel:true},tooltip:{// trigger: 'axis',
- showDelay:0,formatter:function formatter(params){if(params.name===data.username){return"姓名:"+data.username+"<br/>"+'学号: '+data.user_id+"<br/>"+'效率:'+data.echart_data.myself_eff[1];}else if(params.value.length>1){/* return '学生ID: ' + params.value[2] + '<br/>'
- + '效率: ' + params.value[1];*/}else{return params.name+":"+params.value+" ";}},axisPointer:{show:true,type:'cross',lineStyle:{type:'dashed',width:1}}},xAxis:[{type:'value',name:'学生效率',nameTextStyle:{color:'#000',fontSize:12},scale:true,axisLabel:{formatter:' '},axisTick:{show:false},splitLine:{show:false}}],yAxis:[{type:"value",name:" ",nameGap:20,nameTextStyle:{color:'#000',fontSize:12},scale:true,axisLabel:{formatter:'{value}'},splitLine:{show:false}}],series:[{name:'',type:'scatter',data:data.echart_data===undefined||data.echart_data===null?"":data.echart_data.efficiency_list,itemStyle:{normal:{color:'#2e65ad'}},markArea:{silent:true,itemStyle:{normal:{color:'transparent',borderWidth:1,borderType:'dashed'}},data:[[{name:'工作效率分布区间',xAxis:'min',yAxis:'min'},{xAxis:'max',yAxis:'max'}]]},markPoint:{data:[{name:data===undefined?"":data.username,xAxis:data.echart_data===undefined||data.echart_data===null?"":data.echart_data.myself_eff[0],yAxis:data.echart_data===undefined||data.echart_data===null?"":data.echart_data.myself_eff[1],value:data.echart_data===undefined||data.echart_data===null?"":data.echart_data.myself_eff[1]}],itemStyle:{normal:{color:'#c23531'}}},markLine:{lineStyle:{normal:{type:'solid',color:'#c23531'}},data:[{type:'average',name:'中位值'}]}}]};effChart.setOption(option);var ablChart=echarts.init(document.getElementById('shixun_overall_ablility_chart'));var dataBJ=data.echart_data===undefined||data.echart_data===null?"":data.echart_data.consume_list;var itemStyle={normal:{opacity:0.8,shadowBlur:10,shadowOffsetX:0,shadowOffsetY:0,shadowColor:'rgba(0, 0, 0, 0)',color:'#2e65ad'}};var itemStyle1={normal:{opacity:0.8,shadowBlur:10,shadowOffsetX:0,shadowOffsetY:0,shadowColor:'rgba(0, 0, 0, 0)',color:'#c23531'}};var option1={title:{text:'能力值',subtext:'能力值(实训获得经验值/实训评测次数)'},backgroundColor:'#fff',color:['#dd4444','#fec42c','#80F1BE'],grid:{x:'10%',x2:150,y:'18%',y2:'10%'},tooltip:{padding:10,backgroundColor:'#222',borderColor:'#777',borderWidth:1,formatter:function formatter(obj){var value=obj.value;if(obj.name===data.username){return"姓名:"+data.username+"<br/>"+'学号: '+data.user_id+"<br/>"+'得分:'+data.echart_data===undefined||data.echart_data===null?"":data.echart_data.myself_object[1];}}},xAxis:{type:'value',name:'log(实训的总时间)',nameGap:16,nameTextStyle:{color:'#000',fontSize:14},splitLine:{show:false},axisLine:{lineStyle:{color:'#000'}}},yAxis:{type:'value',name:" ",nameLocation:'end',nameGap:20,nameTextStyle:{color:'#000',fontSize:12},axisLine:{lineStyle:{color:'#000'}},splitLine:{show:false}},series:[{name:'能力',type:'scatter',itemStyle:itemStyle,data:dataBJ,symbolSize:function symbolSize(value){return Math.round(value[2]);},markPoint:{data:[{name:data===undefined?"":data.username,xAxis:data.echart_data===undefined||data.echart_data===null?"":data.echart_data.myself_object[0],yAxis:data.echart_data===undefined||data.echart_data===null?"":data.echart_data.myself_object[1],value:data.echart_data===undefined||data.echart_data===null?"":data.echart_data.myself_object[1]}],itemStyle:{normal:{color:'#c23531'}}}}]};// 使用刚指定的配置项和数据显示图表。
- ablChart.setOption(option1);}var Shixunechart=function(_Component){_inherits(Shixunechart,_Component);function Shixunechart(props){_classCallCheck(this,Shixunechart);var _this=_possibleConstructorReturn(this,(Shixunechart.__proto__||Object.getPrototypeOf(Shixunechart)).call(this,props));_this.componentDidUpdate=function(prevProps){if(prevProps.data!=_this.props.data){startechart(_this.props.data);}};_this.state={};return _this;}_createClass(Shixunechart,[{key:"componentDidMount",value:function componentDidMount(){startechart(this.props.data);}},{key:"render",value:function render(){var data=this.props.data;return __WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",null,__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"fl with60 ml50"},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"fl",style:{width:'750px',height:'580px'},id:"shixun_skill_chart"}),__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"fl",style:{width:'750px',height:'580px'},id:"shixun_overall_ablility_chart"})),__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("style",null,"\n\t\t\t\t\t// .popup_tip_box {\n\t\t\t\t\t// \t position: absolute;\n\t\t\t\t\t// \t padding: 5px 15px;\n\t\t\t\t\t// \t display: inline-block;\n\t\t\t\t\t// \t white-space: nowrap;\n\t\t\t\t\t// \t background-color: #fdfbeb;\n\t\t\t\t\t// \t border: 1px solid #F3DDB3;\n\t\t\t\t\t// \t color: #888;\n\t\t\t\t\t// \t font-size: 12px;\n\t\t\t\t\t// \t}\n\t\t\t\t\t\t// .popup_tip_box span {\n // display: block;\n\t\t\t\t\t\t// border-width: 9px;\n\t\t\t\t\t\t// position: absolute;\n\t\t\t\t\t\t// top: 5px;\n\t\t\t\t\t\t// left: -17px;\n\t\t\t\t\t\t// border-style: dashed solid dashed dashed;\n\t\t\t\t\t\t// border-color: transparent #FFFEF4 transparent transparent;\n\t\t\t\t\t\t// font-size: 0;\n\t\t\t\t\t\t// line-height: 0;\n\t\t\t\t\t\t// }\n\t\t\t\t\t\t// .popup_tip_box em {\n\t\t\t\t\t\t// display: block;\n\t\t\t\t\t\t// border-width: 9px;\n\t\t\t\t\t\t// position: absolute;\n\t\t\t\t\t\t// top: 5px;\n\t\t\t\t\t\t// left: -18px;\n\t\t\t\t\t\t// border-style: dashed solid dashed dashed;\n\t\t\t\t\t\t// border-color: transparent #F3DDB3 transparent transparent;\n\t\t\t\t\t\t// font-size: 0;\n\t\t\t\t\t\t// line-height: 0;\n\t\t\t\t\t\t// }\n\t\t\t\t\t\t.colorE6F3FF{\n\t\t\t\t\t\t\t\tbackground:#E6F3FF;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t.with24{\n\t\t\t\t\t\t width: 25%;\n\t\t\t\t\t\t box-sizing: border-box;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t.pd10{\n\t\t\t\t\t\t padding-left:10px;\n\t\t\t\t\t\t}\n\t\t\t\t\t"),__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"fl ml50"},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"bor-grey-e bor-radius4 clearfix mt100 colorE6F3FF pd10"},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"fl with25 colorE6F3FF",style:{textAlign:"right",paddingRight:"5%"}},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("li",{className:"mt5 mb5 color-grey-9"},"\u59D3\u540D"),__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("li",{className:"mt5 mb5 color-grey-9"},"\u5B66\u53F7"),__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("li",{className:"mt5 mb5 color-grey-9"},"\u5DE5\u4F5C\u6548\u7387"),__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("li",{className:"mt5 mb5 color-grey-9"},"\u5F53\u524D\u6392\u540D")),__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"fl with65",style:{paddingLeft:"5%"}},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("li",{className:"mt5 mb5"},data&&data.username),__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("li",{className:"mt5 mb5"},data===undefined?"--":data.student_id===undefined?"--":data.student_id===null?"--":data.student_id),__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("li",{className:"mt5 mb5 color-orange03"},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("span",{className:"color-orange03"},data&&data.echart_data===undefined||data.echart_data===null?"":data&&data.echart_data.myself_eff[1])),__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("li",{className:"mt5 mb5 color-orange03"},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("span",{className:"color-orange03"},data&&data.echart_data===undefined||data.echart_data===null?"":data&&data.echart_data.myself_eff[0])))),__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"pr mt20 with100"},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"popup_tip_box fontGrey2 with100 disc",style:{position:"relative",right:"0px"}},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("em",null),__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("span",null),__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("ol",{className:"color-grey-9"},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("li",null,"1\u4E2A\u5C0F\u5706\u70B9\u4EE3\u88681\u4E2A\u5B66\u751F\u7684\u5DE5\u4F5C\u6548\u7387"),__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("li",null,"\u7EA2\u8272\u6C34\u6EF4\u8868\u793A\u5F53\u524D\u5B66\u751F\u7684\u5DE5\u4F5C\u6548\u7387\u503C"),__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("li",null,"\u5C0F\u5706\u70B9\u8D8A\u9AD8\uFF0C\u5DE5\u4F5C\u6548\u7387\u8D8A\u9AD8"),__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("li",null,"\u7EA2\u8272\u6A2A\u5411\u7BAD\u5934\uFF1A\u4E2D\u4F4D\u503C\uFF0C\u8868\u793A\u6574\u4E2A\u8BFE\u5802\u5B66\u751F\u8868\u73B0\u7684\u5E73\u5747\u503C"))),__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{style:{height:"350px"}}),__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"bor-grey-e bor-radius4 clearfix colorE6F3FF pd10"},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"fl with25 colorE6F3FF",style:{textAlign:"right",paddingRight:"5%"}},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("li",{className:"mt5 mb5 color-grey-9"},"\u59D3\u540D"),__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("li",{className:"mt5 mb5 color-grey-9"},"\u5B66\u53F7"),__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("li",{className:"mt5 mb5 color-grey-9"},"\u80FD\u529B")),__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"fl with65",style:{paddingLeft:"5%"}},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("li",{className:"mt5 mb5"},data&&data.username),__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("li",{className:"mt5 mb5"},data===undefined?"--":data.student_id===undefined?"--":data.student_id===null?"--":data.student_id),__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("li",{className:"mt5 mb5 color-orange03"},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("span",{className:"color-orange03"},data&&data.echart_data===undefined||data.echart_data===null?"":data&&data.echart_data.myself_object[1])))),__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"popup_tip_box fontGrey2 with100 disc mt20",style:{position:"relative",right:"0px"}},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("em",null),__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("span",null),__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("ol",{className:"color-grey-9"},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("li",null,"1\u4E2A\u5C0F\u5706\u70B9\u4EE3\u88681\u4E2A\u5B66\u751F\u7684\u80FD\u529B\u503C"),__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("li",null,"\u7EA2\u8272\u6C34\u6EF4\u8868\u793A\u5F53\u524D\u5B66\u751F\u7684\u80FD\u529B\u503C"),__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("li",null,"\u5C0F\u5706\u5708\u8D8A\u5927\uFF0C\u8BC4\u6D4B\u6B21\u6570\u8D8A\u5C11"))))),__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"both"}));}}]);return Shixunechart;}(__WEBPACK_IMPORTED_MODULE_0_react__["Component"]);/* harmony default export */ __webpack_exports__["a"] = (Shixunechart);
-
- /***/ }),
-
- /***/ 3304:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
- /* WEBPACK VAR INJECTION */(function(global) {
-
- function _extends() {
- _extends = Object.assign || function(target) {
- for (var i = 1; i < arguments.length; i++) {
- var source = arguments[i];
- for (var key in source) {
- if (Object.prototype.hasOwnProperty.call(source, key)) {
- target[key] = source[key];
- }
- }
- }
- return target;
- };
- return _extends.apply(this, arguments);
- }
-
- function _typeof(obj) {
- if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {
- _typeof = function _typeof(obj) {
- return typeof obj;
- };
- } else {
- _typeof = function _typeof(obj) {
- return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
- };
- }
- return _typeof(obj);
- }
-
- var __extends = void 0 && (void 0).__extends || function() {
- var _extendStatics = function extendStatics(d, b) {
- _extendStatics = Object.setPrototypeOf || {
- __proto__: []
- }
- instanceof Array && function(d, b) {
- d.__proto__ = b;
- } || function(d, b) {
- for (var p in b) {
- if (b.hasOwnProperty(p)) d[p] = b[p];
- }
- };
-
- return _extendStatics(d, b);
- };
-
- return function(d, b) {
- _extendStatics(d, b);
-
- function __() {
- this.constructor = d;
- }
-
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- };
- }();
-
- Object.defineProperty(exports, '__esModule', {
- value: true
- });
-
- var React = __webpack_require__(0);
-
- var SERVER_RENDERED = typeof navigator === 'undefined' || global['PREVENT_CODEMIRROR_RENDER'] === true;
- var cm;
-
- if (!SERVER_RENDERED) {
- cm = __webpack_require__(2432);
- }
-
- var Helper = function() {
- function Helper() {}
-
- Helper.equals = function(x, y) {
- var _this = this;
-
- var ok = Object.keys,
- tx = _typeof(x),
- ty = _typeof(y);
-
- return x && y && tx === 'object' && tx === ty ? ok(x).length === ok(y).length && ok(x).every(function(key) {
- return _this.equals(x[key], y[key]);
- }) : x === y;
- };
-
- return Helper;
- }();
-
- var Shared = function() {
- function Shared(editor, props) {
- this.editor = editor;
- this.props = props;
- }
-
- Shared.prototype.delegateCursor = function(position, scroll, focus) {
- var doc = this.editor.getDoc();
-
- if (focus) {
- this.editor.focus();
- }
-
- scroll ? doc.setCursor(position) : doc.setCursor(position, null, {
- scroll: false
- });
- };
-
- Shared.prototype.delegateScroll = function(coordinates) {
- this.editor.scrollTo(coordinates.x, coordinates.y);
- };
-
- Shared.prototype.delegateSelection = function(ranges, focus) {
- var doc = this.editor.getDoc();
- doc.setSelections(ranges);
-
- if (focus) {
- this.editor.focus();
- }
- };
-
- Shared.prototype.apply = function(props) {
- if (props && props.selection && props.selection.ranges) {
- this.delegateSelection(props.selection.ranges, props.selection.focus || false);
- }
-
- if (props && props.cursor) {
- this.delegateCursor(props.cursor, props.autoScroll || false, this.editor.getOption('autofocus') || false);
- }
-
- if (props && props.scroll) {
- this.delegateScroll(props.scroll);
- }
- };
-
- Shared.prototype.applyNext = function(props, next, preserved) {
- if (props && props.selection && props.selection.ranges) {
- if (next && next.selection && next.selection.ranges && !Helper.equals(props.selection.ranges, next.selection.ranges)) {
- this.delegateSelection(next.selection.ranges, next.selection.focus || false);
- }
- }
-
- if (props && props.cursor) {
- if (next && next.cursor && !Helper.equals(props.cursor, next.cursor)) {
- this.delegateCursor(preserved.cursor || next.cursor, next.autoScroll || false, next.autoCursor || false);
- }
- }
-
- if (props && props.scroll) {
- if (next && next.scroll && !Helper.equals(props.scroll, next.scroll)) {
- this.delegateScroll(next.scroll);
- }
- }
- };
-
- Shared.prototype.applyUserDefined = function(props, preserved) {
- if (preserved && preserved.cursor) {
- this.delegateCursor(preserved.cursor, props.autoScroll || false, this.editor.getOption('autofocus') || false);
- }
- };
-
- Shared.prototype.wire = function(props) {
- var _this = this;
-
- Object.keys(props || {}).filter(function(p) {
- return /^on/.test(p);
- }).forEach(function(prop) {
- switch (prop) {
- case 'onBlur':
- {
- _this.editor.on('blur', function(cm, event) {
- _this.props.onBlur(_this.editor, event);
- });
- }
- break;
-
- case 'onContextMenu':
- {
- _this.editor.on('contextmenu', function(cm, event) {
- _this.props.onContextMenu(_this.editor, event);
- });
-
- break;
- }
-
- case 'onCopy':
- {
- _this.editor.on('copy', function(cm, event) {
- _this.props.onCopy(_this.editor, event);
- });
-
- break;
- }
-
- case 'onCursor':
- {
- _this.editor.on('cursorActivity', function(cm) {
- _this.props.onCursor(_this.editor, _this.editor.getDoc().getCursor());
- });
- }
- break;
-
- case 'onCursorActivity':
- {
- _this.editor.on('cursorActivity', function(cm) {
- _this.props.onCursorActivity(_this.editor);
- });
- }
- break;
-
- case 'onCut':
- {
- _this.editor.on('cut', function(cm, event) {
- _this.props.onCut(_this.editor, event);
- });
-
- break;
- }
-
- case 'onDblClick':
- {
- _this.editor.on('dblclick', function(cm, event) {
- _this.props.onDblClick(_this.editor, event);
- });
-
- break;
- }
-
- case 'onDragEnter':
- {
- _this.editor.on('dragenter', function(cm, event) {
- _this.props.onDragEnter(_this.editor, event);
- });
- }
- break;
-
- case 'onDragLeave':
- {
- _this.editor.on('dragleave', function(cm, event) {
- _this.props.onDragLeave(_this.editor, event);
- });
-
- break;
- }
-
- case 'onDragOver':
- {
- _this.editor.on('dragover', function(cm, event) {
- _this.props.onDragOver(_this.editor, event);
- });
- }
- break;
-
- case 'onDragStart':
- {
- _this.editor.on('dragstart', function(cm, event) {
- _this.props.onDragStart(_this.editor, event);
- });
-
- break;
- }
-
- case 'onDrop':
- {
- _this.editor.on('drop', function(cm, event) {
- _this.props.onDrop(_this.editor, event);
- });
- }
- break;
-
- case 'onFocus':
- {
- _this.editor.on('focus', function(cm, event) {
- _this.props.onFocus(_this.editor, event);
- });
- }
- break;
-
- case 'onGutterClick':
- {
- _this.editor.on('gutterClick', function(cm, lineNumber, gutter, event) {
- _this.props.onGutterClick(_this.editor, lineNumber, gutter, event);
- });
- }
- break;
-
- case 'onKeyDown':
- {
- _this.editor.on('keydown', function(cm, event) {
- _this.props.onKeyDown(_this.editor, event);
- });
- }
- break;
-
- case 'onKeyPress':
- {
- _this.editor.on('keypress', function(cm, event) {
- _this.props.onKeyPress(_this.editor, event);
- });
- }
- break;
-
- case 'onKeyUp':
- {
- _this.editor.on('keyup', function(cm, event) {
- _this.props.onKeyUp(_this.editor, event);
- });
- }
- break;
-
- case 'onMouseDown':
- {
- _this.editor.on('mousedown', function(cm, event) {
- _this.props.onMouseDown(_this.editor, event);
- });
-
- break;
- }
-
- case 'onPaste':
- {
- _this.editor.on('paste', function(cm, event) {
- _this.props.onPaste(_this.editor, event);
- });
-
- break;
- }
-
- case 'onRenderLine':
- {
- _this.editor.on('renderLine', function(cm, line, element) {
- _this.props.onRenderLine(_this.editor, line, element);
- });
-
- break;
- }
-
- case 'onScroll':
- {
- _this.editor.on('scroll', function(cm) {
- _this.props.onScroll(_this.editor, _this.editor.getScrollInfo());
- });
- }
- break;
-
- case 'onSelection':
- {
- _this.editor.on('beforeSelectionChange', function(cm, data) {
- _this.props.onSelection(_this.editor, data);
- });
- }
- break;
-
- case 'onTouchStart':
- {
- _this.editor.on('touchstart', function(cm, event) {
- _this.props.onTouchStart(_this.editor, event);
- });
-
- break;
- }
-
- case 'onUpdate':
- {
- _this.editor.on('update', function(cm) {
- _this.props.onUpdate(_this.editor);
- });
- }
- break;
-
- case 'onViewportChange':
- {
- _this.editor.on('viewportChange', function(cm, from, to) {
- _this.props.onViewportChange(_this.editor, from, to);
- });
- }
- break;
- }
- });
- };
-
- return Shared;
- }();
-
- var Controlled = function(_super) {
- __extends(Controlled, _super);
-
- function Controlled(props) {
- var _this = _super.call(this, props) || this;
-
- if (SERVER_RENDERED) return _this;
- _this.applied = false;
- _this.appliedNext = false;
- _this.appliedUserDefined = false;
- _this.deferred = null;
- _this.emulating = false;
- _this.hydrated = false;
-
- _this.initCb = function() {
- if (_this.props.editorDidConfigure) {
- _this.props.editorDidConfigure(_this.editor);
- }
- };
-
- _this.mounted = false;
- return _this;
- }
-
- Controlled.prototype.hydrate = function(props) {
- var _this = this;
-
- var _options = props && props.options ? props.options : {};
-
- var userDefinedOptions = _extends({}, cm.defaults, this.editor.options, _options);
-
- var optionDelta = Object.keys(userDefinedOptions).some(function(key) {
- return _this.editor.getOption(key) !== userDefinedOptions[key];
- });
-
- if (optionDelta) {
- Object.keys(userDefinedOptions).forEach(function(key) {
- if (_options.hasOwnProperty(key)) {
- if (_this.editor.getOption(key) !== userDefinedOptions[key]) {
- _this.editor.setOption(key, userDefinedOptions[key]);
-
- _this.mirror.setOption(key, userDefinedOptions[key]);
- }
- }
- });
- }
-
- if (!this.hydrated) {
- this.deferred ? this.resolveChange() : this.initChange(props.value || '');
- }
-
- this.hydrated = true;
- };
-
- Controlled.prototype.initChange = function(value) {
- this.emulating = true;
- var doc = this.editor.getDoc();
- var lastLine = doc.lastLine();
- var lastChar = doc.getLine(doc.lastLine()).length;
- doc.replaceRange(value || '', {
- line: 0,
- ch: 0
- }, {
- line: lastLine,
- ch: lastChar
- });
- this.mirror.setValue(value);
- doc.clearHistory();
- this.mirror.clearHistory();
- this.emulating = false;
- };
-
- Controlled.prototype.resolveChange = function() {
- this.emulating = true;
- var doc = this.editor.getDoc();
-
- if (this.deferred.origin === 'undo') {
- doc.undo();
- } else if (this.deferred.origin === 'redo') {
- doc.redo();
- } else {
- doc.replaceRange(this.deferred.text, this.deferred.from, this.deferred.to, this.deferred.origin);
- }
-
- this.emulating = false;
- this.deferred = null;
- };
-
- Controlled.prototype.mirrorChange = function(deferred) {
- var doc = this.editor.getDoc();
-
- if (deferred.origin === 'undo') {
- doc.setHistory(this.mirror.getHistory());
- this.mirror.undo();
- } else if (deferred.origin === 'redo') {
- doc.setHistory(this.mirror.getHistory());
- this.mirror.redo();
- } else {
- this.mirror.replaceRange(deferred.text, deferred.from, deferred.to, deferred.origin);
- }
-
- return this.mirror.getValue();
- };
-
- Controlled.prototype.componentDidMount = function() {
- var _this = this;
-
- if (SERVER_RENDERED) return;
-
- if (this.props.defineMode) {
- if (this.props.defineMode.name && this.props.defineMode.fn) {
- cm.defineMode(this.props.defineMode.name, this.props.defineMode.fn);
- }
- }
-
- this.editor = cm(this.ref);
- this.shared = new Shared(this.editor, this.props);
- this.mirror = cm(function() {});
- this.editor.on('electricInput', function() {
- _this.mirror.setHistory(_this.editor.getDoc().getHistory());
- });
- this.editor.on('cursorActivity', function() {
- _this.mirror.setCursor(_this.editor.getDoc().getCursor());
- });
- this.editor.on('beforeChange', function(cm, data) {
- if (_this.emulating) {
- return;
- }
-
- data.cancel();
- _this.deferred = data;
-
- var phantomChange = _this.mirrorChange(_this.deferred);
-
- if (_this.props.onBeforeChange) _this.props.onBeforeChange(_this.editor, _this.deferred, phantomChange);
- });
- this.editor.on('change', function(cm, data) {
- if (!_this.mounted) {
- return;
- }
-
- if (_this.props.onChange) {
- _this.props.onChange(_this.editor, data, _this.editor.getValue());
- }
- });
- this.hydrate(this.props);
- this.shared.apply(this.props);
- this.applied = true;
- this.mounted = true;
- this.shared.wire(this.props);
-
- if (this.editor.getOption('autofocus')) {
- this.editor.focus();
- }
-
- if (this.props.editorDidMount) {
- this.props.editorDidMount(this.editor, this.editor.getValue(), this.initCb);
- }
- };
-
- Controlled.prototype.componentWillReceiveProps = function(nextProps) {
- if (SERVER_RENDERED) return;
- var preserved = {
- cursor: null
- };
-
- if (nextProps.value !== this.props.value) {
- this.hydrated = false;
- }
-
- if (!this.props.autoCursor && this.props.autoCursor !== undefined) {
- preserved.cursor = this.editor.getDoc().getCursor();
- }
-
- this.hydrate(nextProps);
-
- if (!this.appliedNext) {
- this.shared.applyNext(this.props, nextProps, preserved);
- this.appliedNext = true;
- }
-
- this.shared.applyUserDefined(this.props, preserved);
- this.appliedUserDefined = true;
- };
-
- Controlled.prototype.componentWillUnmount = function() {
- if (SERVER_RENDERED) return;
-
- if (this.props.editorWillUnmount) {
- this.props.editorWillUnmount(cm);
- }
- };
-
- Controlled.prototype.shouldComponentUpdate = function(nextProps, nextState) {
- return !SERVER_RENDERED;
- };
-
- Controlled.prototype.render = function() {
- var _this = this;
-
- if (SERVER_RENDERED) return null;
- var className = this.props.className ? 'react-codemirror2 ' + this.props.className : 'react-codemirror2';
- return React.createElement('div', {
- className: className,
- ref: function ref(self) {
- return _this.ref = self;
- }
- });
- };
-
- return Controlled;
- }(React.Component);
-
- exports.Controlled = Controlled;
-
- var UnControlled = function(_super) {
- __extends(UnControlled, _super);
-
- function UnControlled(props) {
- var _this = _super.call(this, props) || this;
-
- if (SERVER_RENDERED) return _this;
- _this.applied = false;
- _this.appliedUserDefined = false;
- _this.continueChange = false;
- _this.detached = false;
- _this.hydrated = false;
-
- _this.initCb = function() {
- if (_this.props.editorDidConfigure) {
- _this.props.editorDidConfigure(_this.editor);
- }
- };
-
- _this.mounted = false;
-
- _this.onBeforeChangeCb = function() {
- _this.continueChange = true;
- };
-
- return _this;
- }
-
- UnControlled.prototype.hydrate = function(props) {
- var _this = this;
-
- var _options = props && props.options ? props.options : {};
-
- var userDefinedOptions = _extends({}, cm.defaults, this.editor.options, _options);
-
- var optionDelta = Object.keys(userDefinedOptions).some(function(key) {
- return _this.editor.getOption(key) !== userDefinedOptions[key];
- });
-
- if (optionDelta) {
- Object.keys(userDefinedOptions).forEach(function(key) {
- if (_options.hasOwnProperty(key)) {
- if (_this.editor.getOption(key) !== userDefinedOptions[key]) {
- _this.editor.setOption(key, userDefinedOptions[key]);
- }
- }
- });
- }
-
- if (!this.hydrated) {
- var doc = this.editor.getDoc();
- var lastLine = doc.lastLine();
- var lastChar = doc.getLine(doc.lastLine()).length;
- doc.replaceRange(props.value || '', {
- line: 0,
- ch: 0
- }, {
- line: lastLine,
- ch: lastChar
- });
- }
-
- this.hydrated = true;
- };
-
- UnControlled.prototype.componentDidMount = function() {
- var _this = this;
-
- if (SERVER_RENDERED) return;
- this.detached = this.props.detach === true;
-
- if (this.props.defineMode) {
- if (this.props.defineMode.name && this.props.defineMode.fn) {
- cm.defineMode(this.props.defineMode.name, this.props.defineMode.fn);
- }
- }
-
- this.editor = cm(this.ref);
- this.shared = new Shared(this.editor, this.props);
- this.editor.on('beforeChange', function(cm, data) {
- if (_this.props.onBeforeChange) {
- _this.props.onBeforeChange(_this.editor, data, _this.editor.getValue(), _this.onBeforeChangeCb);
- }
- });
- this.editor.on('change', function(cm, data) {
- if (!_this.mounted || !_this.props.onChange) {
- return;
- }
-
- if (_this.props.onBeforeChange) {
- if (_this.continueChange) {
- _this.props.onChange(_this.editor, data, _this.editor.getValue());
- }
- } else {
- _this.props.onChange(_this.editor, data, _this.editor.getValue());
- }
- });
- this.hydrate(this.props);
- this.shared.apply(this.props);
- this.applied = true;
- this.mounted = true;
- this.shared.wire(this.props);
- this.editor.getDoc().clearHistory();
-
- if (this.props.editorDidMount) {
- this.props.editorDidMount(this.editor, this.editor.getValue(), this.initCb);
- }
- };
-
- UnControlled.prototype.componentWillReceiveProps = function(nextProps) {
- if (this.detached && nextProps.detach === false) {
- this.detached = false;
-
- if (this.props.editorDidAttach) {
- this.props.editorDidAttach(this.editor);
- }
- }
-
- if (!this.detached && nextProps.detach === true) {
- this.detached = true;
-
- if (this.props.editorDidDetach) {
- this.props.editorDidDetach(this.editor);
- }
- }
-
- if (SERVER_RENDERED || this.detached) return;
- var preserved = {
- cursor: null
- };
-
- if (nextProps.value !== this.props.value) {
- this.hydrated = false;
- this.applied = false;
- this.appliedUserDefined = false;
- }
-
- if (!this.props.autoCursor && this.props.autoCursor !== undefined) {
- preserved.cursor = this.editor.getDoc().getCursor();
- }
-
- this.hydrate(nextProps);
-
- if (!this.applied) {
- this.shared.apply(this.props);
- this.applied = true;
- }
-
- if (!this.appliedUserDefined) {
- this.shared.applyUserDefined(this.props, preserved);
- this.appliedUserDefined = true;
- }
- };
-
- UnControlled.prototype.componentWillUnmount = function() {
- if (SERVER_RENDERED) return;
-
- if (this.props.editorWillUnmount) {
- this.props.editorWillUnmount(cm);
- }
- };
-
- UnControlled.prototype.shouldComponentUpdate = function(nextProps, nextState) {
- var update = true;
- if (SERVER_RENDERED) update = false;
- if (this.detached) update = false;
- return update;
- };
-
- UnControlled.prototype.render = function() {
- var _this = this;
-
- if (SERVER_RENDERED) return null;
- var className = this.props.className ? 'react-codemirror2 ' + this.props.className : 'react-codemirror2';
- return React.createElement('div', {
- className: className,
- ref: function ref(self) {
- return _this.ref = self;
- }
- });
- };
-
- return UnControlled;
- }(React.Component);
-
- exports.UnControlled = UnControlled;
- /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(32)))
-
- /***/ }),
-
- /***/ 4616:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_antd_lib_spin_style_css__ = __webpack_require__(76);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_antd_lib_spin_style_css___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_antd_lib_spin_style_css__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_antd_lib_spin__ = __webpack_require__(77);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_antd_lib_spin___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_antd_lib_spin__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_antd_lib_icon_style_css__ = __webpack_require__(179);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_antd_lib_icon_style_css___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_antd_lib_icon_style_css__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_antd_lib_icon__ = __webpack_require__(26);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_antd_lib_icon___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_antd_lib_icon__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_react__ = __webpack_require__(0);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_react__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_educoder__ = __webpack_require__(5);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_react_router_dom__ = __webpack_require__(48);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_axios__ = __webpack_require__(8);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_axios___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7_axios__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8_moment__ = __webpack_require__(70);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8_moment___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_8_moment__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__modals_Modals__ = __webpack_require__(175);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__shixunreport_ConclusionEvaluation__ = __webpack_require__(4617);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__shixunreport_OfficialAcademicTranscript__ = __webpack_require__(4618);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__shixunreport_Coursesshixundetails__ = __webpack_require__(4619);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_13__shixunreport_Shixunechart__ = __webpack_require__(3303);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_14__modals_DownloadMessageysl__ = __webpack_require__(1346);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_15__coursesPublic_AppraiseModal__ = __webpack_require__(4620);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_16__ShowAppraiseList__ = __webpack_require__(4621);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_17_react_codemirror2__ = __webpack_require__(3304);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_17_react_codemirror2___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_17_react_codemirror2__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_18_codemirror_mode_cmake_cmake__ = __webpack_require__(4622);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_18_codemirror_mode_cmake_cmake___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_18_codemirror_mode_cmake_cmake__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_19_codemirror_mode_xml_xml__ = __webpack_require__(4623);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_19_codemirror_mode_xml_xml___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_19_codemirror_mode_xml_xml__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_20_codemirror_mode_javascript_javascript__ = __webpack_require__(4624);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_20_codemirror_mode_javascript_javascript___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_20_codemirror_mode_javascript_javascript__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_21_codemirror_mode_clike_clike__ = __webpack_require__(4625);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_21_codemirror_mode_clike_clike___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_21_codemirror_mode_clike_clike__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_22__css_members_css__ = __webpack_require__(314);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_22__css_members_css___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_22__css_members_css__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_23__common_formCommon_css__ = __webpack_require__(1327);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_23__common_formCommon_css___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_23__common_formCommon_css__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_24__css_Courses_css__ = __webpack_require__(312);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_24__css_Courses_css___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_24__css_Courses_css__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_25__style_css__ = __webpack_require__(1476);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_25__style_css___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_25__style_css__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_26_moment_locale_zh_cn__ = __webpack_require__(1615);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_26_moment_locale_zh_cn___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_26_moment_locale_zh_cn__);
- var _createClass=function(){function defineProperties(target,props){for(var i=0;i<props.length;i++){var descriptor=props[i];descriptor.enumerable=descriptor.enumerable||false;descriptor.configurable=true;if("value"in descriptor)descriptor.writable=true;Object.defineProperty(target,descriptor.key,descriptor);}}return function(Constructor,protoProps,staticProps){if(protoProps)defineProperties(Constructor.prototype,protoProps);if(staticProps)defineProperties(Constructor,staticProps);return Constructor;};}();function _classCallCheck(instance,Constructor){if(!(instance instanceof Constructor)){throw new TypeError("Cannot call a class as a function");}}function _possibleConstructorReturn(self,call){if(!self){throw new ReferenceError("this hasn't been initialised - super() hasn't been called");}return call&&(typeof call==="object"||typeof call==="function")?call:self;}function _inherits(subClass,superClass){if(typeof superClass!=="function"&&superClass!==null){throw new TypeError("Super expression must either be null or a function, not "+typeof superClass);}subClass.prototype=Object.create(superClass&&superClass.prototype,{constructor:{value:subClass,enumerable:false,writable:true,configurable:true}});if(superClass)Object.setPrototypeOf?Object.setPrototypeOf(subClass,superClass):subClass.__proto__=superClass;}var ShixunWorkReport=function(_Component){_inherits(ShixunWorkReport,_Component);function ShixunWorkReport(props){_classCallCheck(this,ShixunWorkReport);var _this=_possibleConstructorReturn(this,(ShixunWorkReport.__proto__||Object.getPrototypeOf(ShixunWorkReport)).call(this,props));_this.Downloadcal=function(){_this.setState({DownloadType:false,DownloadMessageval:undefined});};_this.getdatalist=function(){var homeworkid=_this.props.match.params.homeworkid;var url="/student_works/"+homeworkid+"/shixun_work_report.json";__WEBPACK_IMPORTED_MODULE_7_axios___default.a.get(url).then(function(result){if(result.data.status===403||result.data.status===401||result.data.status===407||result.data.status===408||result.data.status===409||result.data.status===500){}else{_this.setState({data:result.data,work_comment_hidden:result.data.work_comment_hidden,work_comment:result.data.work_comment,spinning:false,has_commit:result.data.has_commit});}}).catch(function(error){console.log(error);_this.setState({spinning:false});});};_this.jumptopic=function(anchorName){;if(anchorName){// 找到锚点
- var anchorElement=document.getElementById(anchorName);// 如果对应id的锚点存在,就跳转到锚点
- if(anchorElement){anchorElement.scrollIntoView();}}};_this.gotohome=function(){var courseId=_this.props.match.params.coursesId;if(courseId===undefined){_this.props.history.push("/courses");}else{_this.props.history.push(_this.props.current_user.first_category_url);}};_this.goback=function(){_this.props.history.replace("/courses/"+_this.props.match.params.coursesId+"/shixun_homeworks/"+_this.state.data.homework_common_id+"/list?tab=0");};_this.setupdalist=function(challenge_score,overall_appraisal,work_score){var data=_this.state.data;var newdata=data;newdata.challenge_score=challenge_score;newdata.overall_appraisal=overall_appraisal;newdata.work_score=work_score;_this.setState({data:newdata});};_this.showAppraiseModal=function(type,id,show,hidden){var data=_this.state.data;if(type==="child"){data.stage_list.forEach(function(item,key){if(item.challenge_id===id){item.challenge_comment=show;item.challenge_comment_hidden=hidden;}});_this.setState({showAppraiseModaltype:true,showAppraisetype:type,challenge_id:id,data:data});}else{_this.setState({showAppraiseModaltype:true,showAppraisetype:type,challenge_id:undefined,work_comment:show,work_comment_hidden:hidden});}};_this.hideAppraiseModal=function(){_this.setState({showAppraiseModaltype:false});};_this.showAppraiseModals=function(show,hidden,id,comment_id){var _this$state=_this.state,data=_this$state.data,showAppraisetype=_this$state.showAppraisetype;if(showAppraisetype==="child"){data.stage_list.forEach(function(item,key){if(item.challenge_id===id){item.challenge_comment=show;item.challenge_comment_hidden=hidden;item.comment_id=comment_id;}});_this.setState({showAppraiseModaltype:false,data:data});}else{data.comment_id=comment_id;_this.setState({showAppraiseModaltype:false,work_comment:show,work_comment_hidden:hidden,data:data});}};_this.isdeleteModal=function(comment_id,visible_comment,type){var newcomment_id=comment_id;var newvisible_comment=visible_comment;var newtype=type;_this.setState({modalsType:true,modalsTopval:"是否确认删除?",modalSave:function modalSave(){return _this.isdeleteModals(newcomment_id,newvisible_comment,newtype);},modalCancel:function modalCancel(){return _this.hideisdeleteModals();}});};_this.hideisdeleteModals=function(){_this.setState({modalsType:false,modalsTopval:"是否确认删除?",modalSave:"",modalCancel:""});};_this.hideisdeleteModal=function(comment_id,visible_comment,type){var _this$state2=_this.state,data=_this$state2.data,work_comment=_this$state2.work_comment,work_comment_hidden=_this$state2.work_comment_hidden;if(type==="child"){data.stage_list.map(function(item,key){console.log(item);if(item.comment_id!=null){if(item.comment_id===comment_id){item.challenge_comment=null;item.challenge_comment_hidden=null;}}});_this.setState({modalsType:false,modalsTopval:"是否确认删除?",modalSave:"",modalCancel:"",data:data});}else{_this.setState({modalsType:false,modalsTopval:"是否确认删除?",modalSave:"",modalCancel:"",work_comment:null,work_comment_hidden:null});}};_this.isdeleteModals=function(comment_id,visible_comment,type){var newcomment_id=comment_id;var newvisible_comment=visible_comment;var newtype=type;if(comment_id!=null){var url="/student_works/"+_this.props.match.params.homeworkid+"/destroy_work_comment.json";__WEBPACK_IMPORTED_MODULE_7_axios___default.a.delete(url,{data:{comment_id:comment_id}}).then(function(response){// const { status } = response.data;
- if(response.data.status===0){_this.props.showNotification(response.data.message);_this.hideisdeleteModal(newcomment_id,newvisible_comment,newtype);}else{_this.props.showNotification(response.data.message);}}).catch(function(error){console.log(error);});}};_this.state={data:undefined,spinning:true,DownloadType:false,DownloadMessageval:undefined,isspinning:false,showAppraiseModaltype:false,work_comment_hidden:undefined,work_comment:undefined,has_commit:false};return _this;}/// 确认是否下载
- _createClass(ShixunWorkReport,[{key:"confirmysl",value:function confirmysl(url,child){var _this2=this;this.setState({isspinning:true});var params={};if(child!=undefined){params=child._getRequestParams()!==undefined?child._getRequestParams():{};}var urll=url+("?"+__WEBPACK_IMPORTED_MODULE_5_educoder__["_4" /* queryString */].stringify(params));__WEBPACK_IMPORTED_MODULE_7_axios___default.a.get(urll+'&export=true').then(function(response){if(response===undefined){return;}if(response.data.status&&response.data.status===-1){}else if(response.data.status&&response.data.status===-2){if(response.data.message==="100"){// 已超出文件导出的上限数量(100 ),建议:
- _this2.setState({DownloadType:true,DownloadMessageval:100});}else{//因附件资料超过500M
- _this2.setState({DownloadType:true,DownloadMessageval:500});}}else{// this.props.slowDownload(url)
- //
- // this.props.showNotification(`正在下载中`);
- window.open(Object(__WEBPACK_IMPORTED_MODULE_5_educoder__["P" /* getRandomcode */])("/api"+url+"?disposition=inline"),'_blank');_this2.setState({isspinning:false});}}).catch(function(error){console.log(error);_this2.setState({isspinning:false});});}},{key:"componentDidMount",value:function componentDidMount(){var query=this.props.location.pathname;var type=query.split('/');this.setState({shixuntypes:type[3],spinning:true});this.getdatalist();}},{key:"render",value:function render(){var _this3=this;var _state=this.state,data=_state.data,showAppraiseModaltype=_state.showAppraiseModaltype,work_comment_hidden=_state.work_comment_hidden,work_comment=_state.work_comment,has_commit=_state.has_commit;var category_id=data===undefined?"":data.category===null?"":data.category.category_id;var homework_common_id=data===undefined?"":data.homework_common_id;var homeworkid=this.props.match.params.homeworkid;var antIcon=__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_3_antd_lib_icon___default.a,{type:"loading",style:{fontSize:24},spin:true});// let showAppraiseModals=this.props&&this.props.isAdminOrTeacher()===true?work_comment===null||work_comment===undefined?false:true:work_comment===null||work_comment===undefined?false:true;
- var showAppraiseModals=work_comment===null||work_comment===undefined?false:true;document.title=data&&data.course_name;return data===undefined?"":__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_1_antd_lib_spin___default.a,{indicator:antIcon,spinning:this.state.spinning},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_9__modals_Modals__["a" /* default */],{modalsType:this.state.modalsType,modalsTopval:this.state.modalsTopval,loadtype:this.state.loadtype,modalSave:this.state.modalSave,modalCancel:this.state.modalCancel}),showAppraiseModaltype===true?__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_15__coursesPublic_AppraiseModal__["a" /* default */],Object.assign({},this.props,this.state,{visible:showAppraiseModaltype,Cancel:function Cancel(){return _this3.hideAppraiseModal();},showCancel:function showCancel(show,hidden,id,comment_id){return _this3.showAppraiseModals(show,hidden,id,comment_id);},work_comment:this.state.work_comment,work_type:work_comment===null||work_comment===undefined?this.state.work_type:work_comment_hidden===true?1:0})):"",__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"newMain clearfix "},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"educontent mb20"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"educontent"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_14__modals_DownloadMessageysl__["a" /* default */],Object.assign({},this.props,{value:this.state.DownloadMessageval,modalCancel:this.Downloadcal,modalsType:this.state.DownloadType})),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("p",{className:"clearfix mt20"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("a",{className:"btn colorgrey fl hovercolorblue ",onClick:function onClick(){return _this3.gotohome();}},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{className:"color-grey-9"}," ",data&&data.course_name)),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{className:"color-grey-9 fl ml3 mr3"},">"),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("a",{className:"btn colorgrey fl hovercolorblue ",href:"/courses/"+this.props.match.params.coursesId+"/"+this.state.shixuntypes+"/"+category_id},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{className:"color-grey-9"},data===undefined?"":data.category===null?"":data.category.category_name)),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{className:"color-grey-9 fl ml3 mr3"},">"),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("a",{href:"/courses/"+this.props.match.params.coursesId+"/"+this.state.shixuntypes+"/"+homework_common_id+"/list?tab=0",className:"fl color-grey-9"},"\u4F5C\u4E1A\u8BE6\u60C5"),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{className:"color-grey-9 fl ml3 mr3"},">"),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_5_educoder__["A" /* WordsBtn */],{className:"fl"},data&&data.username))),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{style:{width:'100%',height:'75px'}},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("p",{className:" fl color-black mt25 summaryname"},data&&data.shixun_name),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("a",{onClick:this.goback,className:"color-grey-6 fr font-14 ml20 mt15"},"\u8FD4\u56DE"),this.props.isAdmin()?__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("a",{className:" color-blue font-14 fr ml20 mt15",onClick:function onClick(){return _this3.confirmysl("/student_works/"+homeworkid+"/export_shixun_work_report.pdf");}}," ",__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_1_antd_lib_spin___default.a,{size:"small",spinning:this.state.isspinning},"\u5BFC\u51FA\u5B9E\u8BAD\u62A5\u544A")):parseInt(this.props&&this.props.user.user_id)===parseInt(data&&data.user_id)?__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("a",{className:" color-blue font-14 fr ml20 mt15",onClick:function onClick(){return _this3.confirmysl("/student_works/"+homeworkid+"/export_shixun_work_report.pdf");}}," ",__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_1_antd_lib_spin___default.a,{size:"small",spinning:this.state.isspinning},"\u5BFC\u51FA\u5B9E\u8BAD\u62A5\u544A")):"",this.props.isAdmin()?__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("a",{className:" color-blue font-14 fr ml20 mt15",onClick:function onClick(){return _this3.showAppraiseModal("main",undefined,work_comment,work_comment_hidden);}},"\u8BC4\u9605"):""),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("style",null,"\n\t\t\t\t\t\t.shixunreporttitleboxtop {\n\t\t\t\t\t\t\t\tborder-bottom: 2px solid #fafafa;\n\t\t\t\t\t\t\t\ttext-align: justify;\n\t\t\t\t\t\t\t\theight: 62px;\n \t\t\t\t\t\tline-height: 24px;\n \t\t\t\t\t\tpadding-left: 28px;\n\t\t\t\t\t \t}\n\t\t\t\t .shixunreporttitleboxbom {\n\t\t\t\t\t\t\t\ttext-align: justify;\n \t\t\t\t\t\tline-height: 24px;\n\t\t\t\t\t \t}\n\t\t\t\t\t \t.ml39{\n \t\t\t\t\t\t\tmargin-left: 39px;\n\t\t\t\t\t \t}\n\n\t\t\t\t\t \t.back_font{\n\t\t\t\t\t \t height: 18px;\n\t\t\t\t\t\t\t\t\tfont-size: 18px;\n\t\t\t\t\t\t\t\t\tfont-weight: 400;\n\t\t\t\t\t\t\t\t\tcolor: rgba(51,51,51,1);\n\t\t\t\t\t\t\t\t\tline-height: 18px;\n\t\t\t\t\t\t\t\t\tmargin-bottom: 19px;\n\t\t\t\t\t \t}\n\t\t\t\t\t \t.passfont{\n\t\t\t\t\t \t // display: inline-block;\n \t\t\t\t\t\t\tmargin-right: 72px;\n\n\t\t\t\t\t \t}\n\t\t\t\t\t \t.passfontmid{\n\t\t\t\t\t \t // display: inline-block;\n \t\t\t\t\t\t\tmargin-right: 36px;\n\n\t\t\t\t\t \t}\n\t\t\t\t\t \t.passfontbom{\n \t \t\t\t\t\t// display: inline-block;\n \t\t\t\t\t\t\tmargin-right: 58px;\n\n\t\t\t\t\t \t}\n\t\t\t\t\t \t.passfontbommid{\n \t \t\t\t\t\t\t// display: inline-block;\n \t\t\t\t\t\t\tmargin-right: 93px;\n\n\t\t\t\t\t \t}\n\t\t\t\t\t \t.color999{\n\t\t\t\t\t \t color: #999999;\n\t\t\t\t\t \t}\n\t\t\t\t\t \t.colorCF3B3B{\n\t\t\t\t\t \t color:#CF3B3B;\n\t\t\t\t\t \t}\n\t\t\t\t\t \t.color333{\n\t\t\t\t\t \t color:#333333;\n\t\t\t\t\t \t}\n\t\t\t\t\t \t.mt19{\n\t\t\t\t\t \t margin-top:19px;\n\t\t\t\t\t \t}\n\t\t\t\t\t \t.passbox{\n\t\t\t\t\t\t display: inline-block;\n\t\t\t\t\t\t height: 50px;\n\t\t\t\t\t \t}\n\t\t\t\t\t\t"),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"stud-class-set"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"clearfix edu-back-white poll_list"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"font-16 color-dark-21 shixunreporttitleboxtop pd20"},"\u603B\u4F53\u8BC4\u4EF7"),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"font-16 color-dark-21 shixunreporttitleboxbom pd20"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{style:{clear:"both",height:'100px'}},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"fl edu-back-white ml10 "},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("img",{alt:"\u5934\u50CF",className:"radius",height:"91",id:"nh_user_logo",name:"avatar_image",src:Object(__WEBPACK_IMPORTED_MODULE_5_educoder__["M" /* getImageUrl */])("images/"+(data&&data.image_url)),width:"91"})),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"fl edu-back-white ml39 "},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("p",{className:"back_font mt10"},data&&data.username),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("p",{className:"mb16 mt10"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{className:"passbox "},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"passfont mb5"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{className:"color999"},"\u5F53\u524D\u5B8C\u6210\u5173\u5361\uFF1A")," ",__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{className:"colorCF3B3B"},data&&data.complete_count,"/",data&&data.challenges_count)),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"passfontbom"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{className:"color999"},"\u7ECF\u9A8C\u503C\uFF1A")," ",__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{className:"color333"},data&&data.myself_experience,"/",data&&data.total_experience))),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{className:"passbox"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"passfontbommid mb5"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{className:"color999"},"\u5B8C\u6210\u6548\u7387\uFF1A")," ",__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{className:data&&data.efficiency===null?"color999":"color333"},data&&data.efficiency===null?'--':data&&data.efficiency)),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"passfontmid "},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{className:"color999"},"\u8BFE\u5802\u6700\u9AD8\u5B8C\u6210\u6548\u7387\uFF1A")," ",__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{className:data&&data.max_efficiency===null?"color999":"color333"},data&&data.max_efficiency===null?'--':data&&data.max_efficiency))),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{className:"passbox"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",null,__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{className:"color999"},"\u901A\u5173\u65F6\u95F4\uFF1A")," ",__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{className:data&&data.passed_time===null?"color999":"color333"},data&&data.passed_time===null||data&&data.passed_time==="--"?'--':__WEBPACK_IMPORTED_MODULE_8_moment___default()(data&&data.passed_time).format('YYYY-MM-DD HH:mm')))))))),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_10__shixunreport_ConclusionEvaluation__["a" /* default */],{data:data}))),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"stud-class-set mt19"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"clearfix edu-back-white poll_list"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"font-16 color-dark-21 shixunreporttitle ml20 pd20"},"\u9636\u6BB5\u6210\u7EE9"),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_11__shixunreport_OfficialAcademicTranscript__["a" /* default */],Object.assign({},this.props,{data:data,jumptopic:this.jumptopic,getdatalist:function getdatalist(){return _this3.getdatalist();},setupdalist:function setupdalist(challenge_score,overall_appraisal,work_score){return _this3.setupdalist(challenge_score,overall_appraisal,work_score);},showAppraiseModal:function showAppraiseModal(type,id,show,hidden){return _this3.showAppraiseModal(type,id,show,hidden);}})))),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("style",null,"\n\t\t\t\t\t\t\t\t.personalsummary{\n\t\t\t\t\t\t\t\t\t\tborder-radius:2px;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t.pad040{\n\t\t\t\t\t\t\t\t padding: 0px 40px 40px;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t.pad40px{\n\t\t\t\t\t\t\t\t\t\tpadding-bottom: 40px;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t.codebox{\n\t\t\t\t\t\t\t\t\t\theight: 40px;\n\t\t\t\t\t\t\t\t\t\tline-height: 30px;\n\t\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t\t .codeboxright{\n\t\t\t\t\t\t\t\t color: #999999!important;\n\t\t\t\t\t\t\t\t font-size: 16px;\n\t\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t\t .pd30{\n\t\t\t\t\t\t\t\t padding: 30px;\n\t\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t\t"),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"stud-class-set mt17",style:{display:data&&data.work_description===null?"none":""}},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"clearfix edu-back-white poll_list"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"font-16 color-dark-21 shixunreporttitleboxtop pd20 color333"},"\u4E2A\u4EBA\u603B\u7ED3"),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"font-16 color-dark-21 shixunreporttitleboxbom pd30"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{style:{minHeight:'50px'}},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"personalsummary"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"markdown-body",dangerouslySetInnerHTML:{__html:Object(__WEBPACK_IMPORTED_MODULE_5_educoder__["_0" /* markdownToHTML */])(data===undefined?"":data.work_description).replace(/▁/g,"▁▁▁")}})))))),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_16__ShowAppraiseList__["a" /* default */],Object.assign({},this.props,this.state,{isdeleteModal:function isdeleteModal(comment_id,visible_comment,type){return _this3.isdeleteModal(comment_id,visible_comment,type);},showAppraiseModal:function showAppraiseModal(type,id,show,hidden){return _this3.showAppraiseModal(type,id,show,hidden);}})),has_commit===false?"":__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",null,__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"stud-class-set bor-bottom-greyE mt17"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"clearfix edu-back-white poll_list"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"font-16 color-dark-21 shixunreporttitle ml20 pd20"},"\u56FE\u5F62\u7EDF\u8BA1"),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_13__shixunreport_Shixunechart__["a" /* default */],{data:data}))),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"stud-class-set bor-bottom-greyE"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"clearfix edu-back-white poll_list pad40px"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"font-16 color-dark-21 shixunreporttitle ml20 pd20"},"\u5B9E\u8BAD\u8BE6\u60C5"),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("style",null,"\n\t .poll_list a{\n\t padding:0px !important;\n\t }\n\t .backgroud4CACFF{\n\t background: #4CACFF;\n\t }\n\t "),data&&data.shixun_detail===undefined?"":data.shixun_detail.map(function(item,key){return __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{id:"id"+item.position,key:key,className:"mb20"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"font-16 color-dark-21 ml20 mr20"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("p",{className:"clearfix mb20"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{className:"panel-inner-icon mr15 fl mt3 backgroud4CACFF"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("i",{className:"fa fa-code font-16 color_white"})),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{className:"fl mt3 font-14"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{className:"font-bd mr15"},"\u7B2C",item.position,"\u5173"),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_6_react_router_dom__["b" /* Link */],{to:/tasks/+item.game_identifier},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{className:"font-14"},item.subject)))),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_12__shixunreport_Coursesshixundetails__["a" /* default */],{data:item.outputs})),item.st===0?item.passed_code===null?"":__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"font-16 color-dark-21 ml20 mr20"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"bor-grey-e mt15"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("p",{className:"clearfix pt5 pb5 pl15 pr15 back-f6-grey codebox"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{className:"fl"},"\u6700\u8FD1\u901A\u8FC7\u7684\u4EE3\u7801"),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{className:"fr codeboxright"},item.path)),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",{className:"test-code bor-top-greyE"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("li",{className:"clearfix"},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_17_react_codemirror2__["UnControlled"],{value:item.passed_code,options:{// mode: 'xml',
- theme:'default',lineNumbers:true,// extraKeys: {"Ctrl-Q": "autocomplete"}, // 快捷键
- indentUnit:4,//代码缩进为一个tab的距离
- matchBrackets:true,autoRefresh:true,smartIndent:true,//智能换行
- styleActiveLine:true,lint:true,readOnly:"nocursor"}}))))):"");})))))));}}]);return ShixunWorkReport;}(__WEBPACK_IMPORTED_MODULE_4_react__["Component"]);/* harmony default export */ __webpack_exports__["default"] = (ShixunWorkReport);
-
- /***/ }),
-
- /***/ 4617:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_antd_lib_table_style_css__ = __webpack_require__(1183);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_antd_lib_table_style_css___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_antd_lib_table_style_css__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_antd_lib_table__ = __webpack_require__(1184);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_antd_lib_table___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_antd_lib_table__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_antd_lib_tooltip_style_css__ = __webpack_require__(173);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_antd_lib_tooltip_style_css___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_antd_lib_tooltip_style_css__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_antd_lib_tooltip__ = __webpack_require__(172);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_antd_lib_tooltip___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_antd_lib_tooltip__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_react__ = __webpack_require__(0);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_react__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_educoder__ = __webpack_require__(5);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_react_router_dom__ = __webpack_require__(48);
- var _createClass=function(){function defineProperties(target,props){for(var i=0;i<props.length;i++){var descriptor=props[i];descriptor.enumerable=descriptor.enumerable||false;descriptor.configurable=true;if("value"in descriptor)descriptor.writable=true;Object.defineProperty(target,descriptor.key,descriptor);}}return function(Constructor,protoProps,staticProps){if(protoProps)defineProperties(Constructor.prototype,protoProps);if(staticProps)defineProperties(Constructor,staticProps);return Constructor;};}();function _classCallCheck(instance,Constructor){if(!(instance instanceof Constructor)){throw new TypeError("Cannot call a class as a function");}}function _possibleConstructorReturn(self,call){if(!self){throw new ReferenceError("this hasn't been initialised - super() hasn't been called");}return call&&(typeof call==="object"||typeof call==="function")?call:self;}function _inherits(subClass,superClass){if(typeof superClass!=="function"&&superClass!==null){throw new TypeError("Super expression must either be null or a function, not "+typeof superClass);}subClass.prototype=Object.create(superClass&&superClass.prototype,{constructor:{value:subClass,enumerable:false,writable:true,configurable:true}});if(superClass)Object.setPrototypeOf?Object.setPrototypeOf(subClass,superClass):subClass.__proto__=superClass;}var ConclusionEvaluation=function(_Component){_inherits(ConclusionEvaluation,_Component);function ConclusionEvaluation(props){_classCallCheck(this,ConclusionEvaluation);var _this=_possibleConstructorReturn(this,(ConclusionEvaluation.__proto__||Object.getPrototypeOf(ConclusionEvaluation)).call(this,props));_this.state={};return _this;}_createClass(ConclusionEvaluation,[{key:"componentDidMount",value:function componentDidMount(){}},{key:"render",value:function render(){var data=this.props.data;var columns=[{title:'总评',dataIndex:'type',key:'type',render:function render(text,record){return __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{style:{color:'#FF6800'}},record.type);}},{title:'获得经验值',dataIndex:'empirical',key:'empirical',render:function render(text,record){return __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",null,__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{style:{color:'#FF6800'}},record.empirical.minute),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{className:"color-grey-9"},"/",record.empirical.total));}},{title:'关卡得分',dataIndex:'challenge_scores',key:'challenge_scores',render:function render(text,record){return __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",null,__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_3_antd_lib_tooltip___default.a,{placement:"bottom",title:__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("pre",null,"\u5206\u6570\uFF1A",record.challenge_scores.challenge_score,"/\u603B\u5206\uFF1A",record.challenge_scores.challenge_score_full)},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{style:{color:'#FF6800'}},record.challenge_scores.challenge_score),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{className:"color-grey-9"},"/",record.challenge_scores.challenge_score_full)));}},{title:'效率分',dataIndex:'eff_scores',key:'eff_scores',render:function render(text,record){return __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",null,__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_3_antd_lib_tooltip___default.a,{placement:"bottom",title:__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("pre",null,"\u5206\u6570\uFF1A",record.eff_scores.eff_score,"/\u603B\u5206\uFF1A",record.eff_scores.eff_score_full)},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{style:{color:'#FF6800'}},record.eff_scores.eff_score),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{className:"color-grey-9"},"/",record.eff_scores.eff_score_full)));}},{title:'当前成绩',dataIndex:'grade',key:'grade',render:function render(text,record){return __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",null,__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_3_antd_lib_tooltip___default.a,{placement:"bottom",title:__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("pre",null,"\u5206\u6570\uFF1A",record.grade.minute,"/\u603B\u5206\uFF1A",record.grade.total)},__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{style:{color:'#FF6800'}},record.grade.minute),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{className:"color-grey-9"},"/",record.grade.total)));}},{title:'实战总耗时',key:'elapsed',dataIndex:'elapsed',render:function render(text,record){return __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",{className:"color-grey-9"},record.elapsed);}},{title:'评测次数',key:'time',dataIndex:'time',render:function render(text,record){return __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("span",null,record.time);}}];var datas=[];if(data&&data.eff_score_full===undefined){columns.some(function(item,key){if(item.title==="关卡得分"){columns.splice(key,1);return true;}});columns.some(function(item,key){if(item.title==="效率分"){columns.splice(key,1);return true;}});}datas.push({type:data&&data.overall_appraisal,empirical:{minute:data&&data.myself_experience,total:data&&data.total_experience},grade:{minute:data&&data.work_score,total:data&&data.all_work_score},elapsed:data&&data.time_consuming,time:data&&data.evaluate_count,eff_scores:{eff_score:data&&data.eff_score,eff_score_full:data&&data.eff_score_full},challenge_scores:{challenge_score:data&&data.challenge_score,challenge_score_full:data&&data.challenge_score_full}});return __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("div",null,__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement("style",null,"\n\t\t\t\t.ant-table-thead > tr > th{\n\t\t\t\t text-align: center;\n\t\t\t\t font-weight: 300;\n\t\t\t\t\t}\n\t\t\t\t\t.ant-table-tbody > tr > td{\n text-align: center;\n padding: 0px;\n\t\t\t\t\t}\n\t\t\t\t\t.ant-table-tbody > tr{\n\t\t\t\t\t height:64px;\n\t\t\t\t\t}\n\t\t\t\t\t// .Tablebox .ant-table-body table .ant-table-tbody > tr > td{\n\t\t // border: none;\n\t\t\t\t\t// }\n\n\t\t\t .Tablebox .ant-table-body table .ant-table-thead > tr > th{\n\t background: #fff;\n\t border-bottom: 3px solid #fafafa !important;\n\t\t\t\t\t}\n\t\t\t\t"),__WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_1_antd_lib_table___default.a,{className:"Tablebox",dataSource:datas,columns:columns,pagination:false// onChange={this.TablePagination}
- }));}}]);return ConclusionEvaluation;}(__WEBPACK_IMPORTED_MODULE_4_react__["Component"]);/* harmony default export */ __webpack_exports__["a"] = (ConclusionEvaluation);
-
- /***/ }),
-
- /***/ 4618:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_antd_lib_table_style_css__ = __webpack_require__(1183);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_antd_lib_table_style_css___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_antd_lib_table_style_css__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_antd_lib_table__ = __webpack_require__(1184);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_antd_lib_table___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_antd_lib_table__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_antd_lib_input_number_style_css__ = __webpack_require__(1147);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_antd_lib_input_number_style_css___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_antd_lib_input_number_style_css__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_antd_lib_input_number__ = __webpack_require__(1148);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_antd_lib_input_number___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_antd_lib_input_number__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_antd_lib_tooltip_style_css__ = __webpack_require__(173);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_antd_lib_tooltip_style_css___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_antd_lib_tooltip_style_css__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_antd_lib_tooltip__ = __webpack_require__(172);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_antd_lib_tooltip___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_antd_lib_tooltip__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_react__ = __webpack_require__(0);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_react__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_educoder__ = __webpack_require__(5);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8_react_router_dom__ = __webpack_require__(48);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_9_axios__ = __webpack_require__(8);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_9_axios___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_9_axios__);
- var _createClass=function(){function defineProperties(target,props){for(var i=0;i<props.length;i++){var descriptor=props[i];descriptor.enumerable=descriptor.enumerable||false;descriptor.configurable=true;if("value"in descriptor)descriptor.writable=true;Object.defineProperty(target,descriptor.key,descriptor);}}return function(Constructor,protoProps,staticProps){if(protoProps)defineProperties(Constructor.prototype,protoProps);if(staticProps)defineProperties(Constructor,staticProps);return Constructor;};}();function _classCallCheck(instance,Constructor){if(!(instance instanceof Constructor)){throw new TypeError("Cannot call a class as a function");}}function _possibleConstructorReturn(self,call){if(!self){throw new ReferenceError("this hasn't been initialised - super() hasn't been called");}return call&&(typeof call==="object"||typeof call==="function")?call:self;}function _inherits(subClass,superClass){if(typeof superClass!=="function"&&superClass!==null){throw new TypeError("Super expression must either be null or a function, not "+typeof superClass);}subClass.prototype=Object.create(superClass&&superClass.prototype,{constructor:{value:subClass,enumerable:false,writable:true,configurable:true}});if(superClass)Object.setPrototypeOf?Object.setPrototypeOf(subClass,superClass):subClass.__proto__=superClass;}var OfficialAcademicTranscript=function(_Component){_inherits(OfficialAcademicTranscript,_Component);function OfficialAcademicTranscript(props){_classCallCheck(this,OfficialAcademicTranscript);var _this=_possibleConstructorReturn(this,(OfficialAcademicTranscript.__proto__||Object.getPrototypeOf(OfficialAcademicTranscript)).call(this,props));_this.myjumptopic=function(e){console.log("获取到值");console.log(e);_this.props.jumptopic(e);};_this.editgame_scores=function(e,id,maxsum){var datas=_this.state.datas;var newdatas=datas;var score=e.target.value;if(score!=null&&score!=undefined&&score!=""){if(score<0){_this.props.showNotification("不能小于0");_this.setState({customsids:id});}else if(score>maxsum){_this.props.showNotification("\u4E0D\u80FD\u5927\u4E8E\u5173\u5361\u5206\u503C"+maxsum);_this.setState({customsids:id});}else{var work_id=_this.props.data.work_id;var url="/student_works/"+work_id+"/adjust_review_score.json";__WEBPACK_IMPORTED_MODULE_9_axios___default.a.post(url,{type:"report",score:score,challenge_id:id}).then(function(result){if(result.data.status===0){// this.props.getdatalist()
- _this.props.showNotification(result.data.message);_this.props.setupdalist(result.data.challenge_score,result.data.overall_appraisal,result.data.work_score);newdatas.map(function(item,key){if(item.challenge_id.id===id){item.game_scores.game_score=score;}});_this.setState({datas:newdatas,customsids:undefined});}else{_this.props.showNotification(result.data.message);}}).catch(function(error){});}}else{_this.props.showNotification("调分为空将不会修改之前的分数");}};_this.state={loadingstate:true,datas:undefined,customsids:undefined};return _this;}_createClass(OfficialAcademicTranscript,[{key:"componentDidMount",value:function componentDidMount(){}},{key:"render",value:function render(){var _this2=this;var customsids=this.state.customsids;var data=this.props.data;var datas=[];if(data!=undefined){data.stage_list===undefined?"":data.stage_list.forEach(function(item,key){datas.push({customs:key+1,taskname:{name:item.name,complete_status:item.complete_status},openingtime:item.open_time,evaluating:item.evaluate_count,finishtime:item.finished_time,elapsedtime:item.time_consuming,empvalue:{myself:item.myself_experience,experience:item.experience},game_scores:{game_score:item.game_score,game_score_full:item.game_score_full},challenge_id:{id:item.challenge_id},challenge_comment:item.challenge_comment,challenge_comment_hidden:item.challenge_comment_hidden,view_answer:item.view_answer// adjustmentminute:asdasd
- });});}var columns=[{title:'关卡',dataIndex:'customs',key:'customs',render:function render(text,record){return __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement("span",{className:"color-grey-9"},record.customs);}},{title:'任务名称',dataIndex:'taskname',key:'taskname',className:"TaskForms",render:function render(text,record){return __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement("span",null,__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement("span",{className:"task-hide linhe15",style:{color:"#676767"}},__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement("a",{className:"tasknameName font-14",onClick:function onClick(){return _this2.myjumptopic("id"+record.customs);},title:record.taskname.name.length>15?record.taskname.name:""},record.taskname.name),record.taskname.complete_status===2?__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement("span",{className:"tasknamebox ml10"},"\u5EF6\u65F6"):record.taskname.complete_status===3?__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement("span",{className:"tasknameboxs ml10"},"\u5EF6\u65F6"):""));}},{title:'开启时间',dataIndex:'openingtime',key:'openingtime',render:function render(text,record){return __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement("span",{className:"color-grey-9"},record.openingtime);}},{title:'评测次数',key:'evaluating',dataIndex:'evaluating',render:function render(text,record){return __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement("span",{className:"color-grey-9"},record.evaluating);}},{title:'完成时间',key:'finishtime',dataIndex:'finishtime',render:function render(text,record){return __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement("span",{className:"color-grey-9"},record.finishtime);}},{title:'实战耗时',key:'elapsedtime',dataIndex:'elapsedtime',render:function render(text,record){return __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement("span",null,record.elapsedtime);}},{title:'查看答案',dataIndex:'view_answer',key:'view_answer',className:"edu-txt-center",render:function render(text,record){return __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement("span",{style:{cursor:"default"}},record.view_answer===true?__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_5_antd_lib_tooltip___default.a,{placement:"bottom",title:__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement("pre",null,"\u5B66\u751F\u5728\u5B8C\u6210\u4EFB\u52A1\u8BC4\u6D4B\u4E4B\u524D\u662F\u5426\u67E5\u770B\u4E86\u53C2\u8003\u7B54\u6848")},__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement("span",{style:{cursor:"default"}},"\u5DF2\u67E5\u770B")," "):__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_5_antd_lib_tooltip___default.a,{placement:"bottom",title:__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement("pre",null,"\u5B66\u751F\u5728\u5B8C\u6210\u4EFB\u52A1\u8BC4\u6D4B\u4E4B\u524D\u662F\u5426\u67E5\u770B\u4E86\u53C2\u8003\u7B54\u6848")},__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement("span",{style:{cursor:"default"}},"\u672A\u67E5\u770B")," "));}},{title:'经验值',key:'empvalue',dataIndex:'empvalue',render:function render(text,record){return __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement("span",null,__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement("span",{style:{color:'#29BD8B'}},record.empvalue.myself),__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement("span",{className:"color-grey-9"},"/",record.empvalue.experience));}},{title:'关卡得分',key:'game_scores',dataIndex:'game_scores',render:function render(text,record){return __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement("span",null,__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_5_antd_lib_tooltip___default.a,{placement:"bottom",title:__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement("pre",null,"\u5173\u5361\u5F97\u5206\uFF1A",record.game_scores.game_score,"/\u5173\u5361\u6EE1\u5206\uFF1A",record.game_scores.game_score_full)},__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement("span",{style:{color:'#29BD8B'}},record.game_scores.game_score),__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement("span",{className:"color-grey-9"},"/",record.game_scores.game_score_full)));}},{title:'调分',key:'adjustmentminute',dataIndex:'adjustmentminute',render:function render(text,record){return __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement("span",null,__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement("a",null,__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_3_antd_lib_input_number___default.a,{size:"small",className:customsids===record.challenge_id.id?"bor-red":"",defaultValue:record.game_scores.game_score,onBlur:function onBlur(e){return _this2.editgame_scores(e,record.challenge_id.id,record.game_scores.game_score_full);}// min={0} max={record.game_scores.game_score_full}
- })));}},{title:'操作',key:'operation',dataIndex:'operation',render:function render(text,record){return __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement("span",null,__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement("a",{className:" color-blue font-14 fr mr22",onClick:function onClick(){return _this2.props.showAppraiseModal("child",record.challenge_id.id,record.challenge_comment,record.challenge_comment_hidden);}},"\u8BC4\u9605"));}}];if(this.props.isAdmin()===false){columns.some(function(item,key){if(item.title==="调分"){columns.splice(key,1);return true;}});columns.some(function(item,key){if(item.title==="操作"){columns.splice(key,1);return true;}});}return __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement("div",null,__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement("style",null,"\n\t\t\t\t.ant-table-thead > tr > th{\n\t\t\t\t text-align: center;\n\t\t\t\t\t}\n\t\t\t\t.tasknamebox{\n\t\t\t width: 50px;\n\t\t\t height: 24px;\n\t\t\t border: 1px solid rgba(221,23,23,1);\n\t\t\t border-radius: 12px;\n\t\t\t color: rgba(221,23,23,1);\n\t\t\t display: inline-block;\n\t\t\t\t\tline-height: 24px;\n\t\t\t\t\ttext-align: center;\n\t\t\t\t\t}\n\n\t\t\t\t\t.tasknameboxs{\n\t\t\t\t width: 50px;\n\t\t\t\t\t\theight: 24px;\n\t\t\t\t\t\tborder: 1px solid rgba(221,23,23,1);\n\t\t\t\t\t\tcolor: rgba(221,23,23,1);\n\t\t\t\t\t\tborder-radius: 12px;\n\t\t\t\t\t}\n\n\t\t\t\t .ant-table-tbody > tr > td{\n font-size:14px;\n\t\t\t\t\t}\n\t\t\t\t\t.task-hide{\n\t\t\t\t\t\tmax-width: 345px;\n\t\t\t\t\t\toverflow: hidden;\n\t\t\t\t\t\twhite-space: nowrap;\n\t\t\t\t\t\ttext-overflow: ellipsis;\n\t\t\t\t\t}\n\t\t\t\t\t.ant-table-tbody > tr{\n\t\t\t\t\t height:64px;\n\t\t\t\t\t}\n\t\t\t\t\t.tasknameName:link{color:#676767}\n\t\t\t\t\t.tasknameName:hover{color:#4CACFF}\n\t\t\t\t\t.tasknameName{\n\t\t\t\t\t overflow: hidden;\n\t\t\t\t\t\t\t\ttext-overflow: ellipsis;\n\t\t\t\t\t\t\t\twhite-space: nowrap;\n\t\t\t\t max-width: 225px;\n\t\t\t\t\t\t text-align: left !important;\n\t\t\t\t\t}\n\t\t\t\t\t.TaskForms{\n\t\t\t\t\t max-width: 260px;\n\t\t\t\t\t text-align: left !important;\n\t\t\t\t\t padding: 16px !important;\n\t\t\t\t\t}\n\t\t\t\t .TaskForms.ant-table-header-column{\n\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t\ttext-align: center;\n\t\t\t\t }\n\t\t\t\t .ant-input-number{\n\t\t\t\t\t // margin-right: 20px;\n\t\t\t\t\t\tborder-radius: 0px;\n\t\t\t\t\t\twidth: 66px;\n\t\t\t\t\t}\n\t\t\t\t\t.linhe15{\n\t\t\t\t\t line-height: 15px;\n\t\t\t\t\t}\n\t\t\t\t\t.mr22{\n\t\t\t\t\t margin-right: 22px;\n\t\t\t\t\t}\n\t\t\t"),datas===undefined?"":__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_1_antd_lib_table___default.a,{dataSource:datas,columns:columns,pagination:false// loading={loadingstate}
- // onChange={this.TablePagination}
- }));}}]);return OfficialAcademicTranscript;}(__WEBPACK_IMPORTED_MODULE_6_react__["Component"]);/* harmony default export */ __webpack_exports__["a"] = (OfficialAcademicTranscript);
-
- /***/ }),
-
- /***/ 4619:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_antd_lib_table_style_css__ = __webpack_require__(1183);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_antd_lib_table_style_css___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_antd_lib_table_style_css__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_antd_lib_table__ = __webpack_require__(1184);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_antd_lib_table___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_antd_lib_table__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_react__ = __webpack_require__(0);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_react__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_educoder__ = __webpack_require__(5);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_react_router_dom__ = __webpack_require__(48);
- var _createClass=function(){function defineProperties(target,props){for(var i=0;i<props.length;i++){var descriptor=props[i];descriptor.enumerable=descriptor.enumerable||false;descriptor.configurable=true;if("value"in descriptor)descriptor.writable=true;Object.defineProperty(target,descriptor.key,descriptor);}}return function(Constructor,protoProps,staticProps){if(protoProps)defineProperties(Constructor.prototype,protoProps);if(staticProps)defineProperties(Constructor,staticProps);return Constructor;};}();function _classCallCheck(instance,Constructor){if(!(instance instanceof Constructor)){throw new TypeError("Cannot call a class as a function");}}function _possibleConstructorReturn(self,call){if(!self){throw new ReferenceError("this hasn't been initialised - super() hasn't been called");}return call&&(typeof call==="object"||typeof call==="function")?call:self;}function _inherits(subClass,superClass){if(typeof superClass!=="function"&&superClass!==null){throw new TypeError("Super expression must either be null or a function, not "+typeof superClass);}subClass.prototype=Object.create(superClass&&superClass.prototype,{constructor:{value:subClass,enumerable:false,writable:true,configurable:true}});if(superClass)Object.setPrototypeOf?Object.setPrototypeOf(subClass,superClass):subClass.__proto__=superClass;}var Coursesshixundetails=function(_Component){_inherits(Coursesshixundetails,_Component);function Coursesshixundetails(props){_classCallCheck(this,Coursesshixundetails);var _this=_possibleConstructorReturn(this,(Coursesshixundetails.__proto__||Object.getPrototypeOf(Coursesshixundetails)).call(this,props));_this.state={loadingstate:true};return _this;}_createClass(Coursesshixundetails,[{key:"componentDidMount",value:function componentDidMount(){}},{key:"render",value:function render(){var data=this.props.data;// console.log(data)
- var columns=[{title:'评测次数',dataIndex:'number',width:"127px",key:'number',render:function render(text,record){return __WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement("span",null,record.number);}},{title:'详细信息',dataIndex:'name',key:'name',render:function render(text,record){return __WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement("span",null,record.name);}}];var datas=[];data&&data.forEach(function(item,key){datas.push({number:item.position,name:item.output_detail===""||item.output_detail===null?"暂无数据":item.output_detail});});return __WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement("div",null,__WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement("style",null,"\n\t\t\t\t.ant-table-thead > tr > th{\n\t\t\t\t text-align: center;\n\t\t\t\t\t}\n\n\t\t\t\t"),data&&data?data.length===0?"":__WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_1_antd_lib_table___default.a,{bordered:true,dataSource:datas,columns:columns,pagination:false// loading={loadingstate}
- // onChange={this.TablePagination}
- }):"");}}]);return Coursesshixundetails;}(__WEBPACK_IMPORTED_MODULE_2_react__["Component"]);/* harmony default export */ __webpack_exports__["a"] = (Coursesshixundetails);
-
- /***/ }),
-
- /***/ 4620:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_antd_lib_modal_style_css__ = __webpack_require__(27);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_antd_lib_modal_style_css___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_antd_lib_modal_style_css__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_antd_lib_modal__ = __webpack_require__(28);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_antd_lib_modal___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_antd_lib_modal__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_react__ = __webpack_require__(0);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_react__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_educoder__ = __webpack_require__(5);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_axios__ = __webpack_require__(8);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_axios___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_axios__);
- var _createClass=function(){function defineProperties(target,props){for(var i=0;i<props.length;i++){var descriptor=props[i];descriptor.enumerable=descriptor.enumerable||false;descriptor.configurable=true;if("value"in descriptor)descriptor.writable=true;Object.defineProperty(target,descriptor.key,descriptor);}}return function(Constructor,protoProps,staticProps){if(protoProps)defineProperties(Constructor.prototype,protoProps);if(staticProps)defineProperties(Constructor,staticProps);return Constructor;};}();function _classCallCheck(instance,Constructor){if(!(instance instanceof Constructor)){throw new TypeError("Cannot call a class as a function");}}function _possibleConstructorReturn(self,call){if(!self){throw new ReferenceError("this hasn't been initialised - super() hasn't been called");}return call&&(typeof call==="object"||typeof call==="function")?call:self;}function _inherits(subClass,superClass){if(typeof superClass!=="function"&&superClass!==null){throw new TypeError("Super expression must either be null or a function, not "+typeof superClass);}subClass.prototype=Object.create(superClass&&superClass.prototype,{constructor:{value:subClass,enumerable:false,writable:true,configurable:true}});if(superClass)Object.setPrototypeOf?Object.setPrototypeOf(subClass,superClass):subClass.__proto__=superClass;}var AppraiseModal=function(_Component){_inherits(AppraiseModal,_Component);function AppraiseModal(props){_classCallCheck(this,AppraiseModal);var _this=_possibleConstructorReturn(this,(AppraiseModal.__proto__||Object.getPrototypeOf(AppraiseModal)).call(this,props));_this.comment=function(e){_this.setState({comment:e.target.value});};_this.hidden_comment=function(e){_this.setState({hidden_comment:e.target.value});};_this.Saves=function(){var _this$state=_this.state,comment=_this$state.comment,hidden_comment=_this$state.hidden_comment;var commenttype=comment===undefined||comment===null||comment==="";var hidden_commenttype=hidden_comment===undefined||hidden_comment===null||hidden_comment==="";if(commenttype===true&&hidden_commenttype===true){_this.setState({textareavaltype:true});return;}//comment 是 text 可见的评阅内容
- // hidden_comment 是 text 不可见的评阅内容
- // challenge_id 否 int 关卡id(关卡评阅才需传关卡id)
- var challenge_id=_this.props.showAppraisetype==="child"?_this.props.challenge_id:undefined;var url="/student_works/"+_this.props.match.params.homeworkid+"/shixun_work_comment.json";__WEBPACK_IMPORTED_MODULE_4_axios___default.a.post(url,{comment:comment,hidden_comment:hidden_comment,challenge_id:challenge_id}).then(function(response){if(response.data.status===0){_this.props.showCancel(comment,hidden_comment,challenge_id,response.data.comment_id);_this.props.showNotification(response.data.message);}else{_this.props.showNotification(response.data.message);}}).catch(function(error){console.log(error);});};_this.state={group_ids:[],fileList:[],Inputsval:undefined,textareavaltype:false,comment:undefined,hidden_comment:undefined};return _this;}_createClass(AppraiseModal,[{key:"componentDidMount",value:function componentDidMount(){var _this2=this;var _props=this.props,data=_props.data,work_comment=_props.work_comment,work_comment_hidden=_props.work_comment_hidden;if(this.props.showAppraisetype==="child"){data.stage_list.map(function(item,key){if(_this2.props.challenge_id===item.challenge_id){_this2.setState({comment:item.challenge_comment,hidden_comment:item.challenge_comment_hidden});}});}else{this.setState({comment:work_comment,hidden_comment:work_comment_hidden});}}},{key:"render",value:function render(){var _this3=this;var _state=this.state,textareavaltype=_state.textareavaltype,comment=_state.comment,hidden_comment=_state.hidden_comment;return __WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement("div",null,__WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement("style",null,"\n\t\t\t\t\t\t\t\t@media (max-width: 2000px) {\n\t\t\t\t\t\t\t\t\t\t\t.WordNumberTextarea{\n\t\t\t\t\t\t\t\t\t\t\t height: 130px !important;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t @media (max-width: 1350px) {\n\t\t\t\t\t\t\t\t\t\t.HomeworkModal{\n \t\t\t\t\t\t\t\t\t\t top:10px !important;\n \t\t\t\t\t\t\t\t\t\t}\n \t\t\t\t\t\t\t\t\t\t\t.WordNumberTextarea{\n\t\t\t\t\t\t\t\t\t\t\t height: 80px !important;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\n\t \t\t\t\t\t\t\t\t@media (max-width: 1250px) {\n \t\t\t\t\t\t\t\t\t\t.HomeworkModal{\n \t\t\t\t\t\t\t\t\t\t top:0px !important;\n \t\t\t\t\t\t\t\t\t\t}\n\n \t\t\t\t\t\t\t\t\t\t.WordNumberTextarea{\n\t\t\t\t\t\t\t\t\t\t\t height: 40px !important;\n\t\t\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t"),__WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_1_antd_lib_modal___default.a,{keyboard:false,className:"HomeworkModal",title:this.props.work_comment===null||this.props.work_comment===undefined?"评阅":"编辑评阅",visible:this.props.visible,closable:false,footer:null,destroyOnClose:true},__WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement("div",{className:"pd015"},__WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement("style",null,"\n\t\t\t\t\t\t\t\t.pd015{\n\t\t\t\t\t\t\t\t padding: 0px 15px 15px 15px;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t.font{\n\t\t\t\t\t\t\t\t\tfont-size: 14px;\n\t\t\t\t\t\t\t\t\tfont-weight: 400;\n\t\t\t\t\t\t\t\t\tcolor: rgba(5,16,26,1);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t.newfont{\n\t\t\t\t\t\t\t\t height: 16px;\n\t\t\t\t\t\t\t\t\t\tfont-size: 16px;\n\t\t\t\t\t\t\t\t\t\tfont-weight: 400;\n\t\t\t\t\t\t\t\t\t\tcolor: rgba(5,16,26,1);\n\t\t\t\t\t\t\t\t\t\tline-height: 16px;\n\t\t\t\t\t\t\t\t\t\tmargin-bottom: 5px;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t"),__WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement("div",{className:"clearfix"},__WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement("p",{className:"font mt10 mb10 ml10"},"\u53EF\u89C1(\u5B66\u751F\u53EF\u67E5\u770B\u8001\u5E08\u7684\u8BC4\u9605\u5185\u5BB9\uFF09"),__WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_3_educoder__["z" /* WordNumberTextarea */],{placeholder:"请填写评阅内容",onInput:function onInput(e){return _this3.comment(e);},value:comment,maxlength:500}),__WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement("p",{className:"font mt10 mb10 ml10"},"\u4E0D\u53EF\u89C1(\u4EC5\u5BF9\u8BFE\u5802\u8001\u5E08\u53EF\u89C1\uFF09"),__WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_3_educoder__["z" /* WordNumberTextarea */],{placeholder:"请填写评阅内容",onInput:function onInput(e){return _this3.hidden_comment(e);},value:hidden_comment,maxlength:500}),__WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement("li",{style:{height:"20px",lineHeight:"20px"},className:textareavaltype===true?"color-red mt20 mb10":"none"},__WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement("span",null,"\u8BC4\u9605\u5185\u5BB9\u81F3\u5C11\u6709\u4E00\u4E2A\u4E0D\u4E3A\u7A7A"))),__WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement("div",{className:textareavaltype===false?"mt20 clearfix edu-txt-center":"clearfix edu-txt-center"},__WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement("a",{className:"task-btn color-white mr30",onClick:function onClick(){return _this3.props.Cancel();}},this.props.Cancelname||'取消'),__WEBPACK_IMPORTED_MODULE_2_react___default.a.createElement("a",{className:"task-btn task-btn-orange",onClick:this.Saves},this.props.Savesname||'确定')))));}}]);return AppraiseModal;}(__WEBPACK_IMPORTED_MODULE_2_react__["Component"]);/* harmony default export */ __webpack_exports__["a"] = (AppraiseModal);
-
- /***/ }),
-
- /***/ 4621:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react__ = __webpack_require__(0);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_react__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_educoder__ = __webpack_require__(5);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_axios__ = __webpack_require__(8);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_axios___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_axios__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_css__ = __webpack_require__(1476);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_css___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__style_css__);
- var _createClass=function(){function defineProperties(target,props){for(var i=0;i<props.length;i++){var descriptor=props[i];descriptor.enumerable=descriptor.enumerable||false;descriptor.configurable=true;if("value"in descriptor)descriptor.writable=true;Object.defineProperty(target,descriptor.key,descriptor);}}return function(Constructor,protoProps,staticProps){if(protoProps)defineProperties(Constructor.prototype,protoProps);if(staticProps)defineProperties(Constructor,staticProps);return Constructor;};}();function _classCallCheck(instance,Constructor){if(!(instance instanceof Constructor)){throw new TypeError("Cannot call a class as a function");}}function _possibleConstructorReturn(self,call){if(!self){throw new ReferenceError("this hasn't been initialised - super() hasn't been called");}return call&&(typeof call==="object"||typeof call==="function")?call:self;}function _inherits(subClass,superClass){if(typeof superClass!=="function"&&superClass!==null){throw new TypeError("Super expression must either be null or a function, not "+typeof superClass);}subClass.prototype=Object.create(superClass&&superClass.prototype,{constructor:{value:subClass,enumerable:false,writable:true,configurable:true}});if(superClass)Object.setPrototypeOf?Object.setPrototypeOf(subClass,superClass):subClass.__proto__=superClass;}var ShowAppraiseList=function(_Component){_inherits(ShowAppraiseList,_Component);function ShowAppraiseList(props){_classCallCheck(this,ShowAppraiseList);var _this=_possibleConstructorReturn(this,(ShowAppraiseList.__proto__||Object.getPrototypeOf(ShowAppraiseList)).call(this,props));_this.state={};return _this;}_createClass(ShowAppraiseList,[{key:"render",value:function render(){var _this2=this;var _props=this.props,data=_props.data,work_comment=_props.work_comment,work_comment_hidden=_props.work_comment_hidden;var work_commenttype=work_comment===undefined||work_comment===null||work_comment==="";var work_comment_hiddentype=work_comment_hidden===undefined||work_comment_hidden===null||work_comment_hidden==="";return __WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",null,__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("style",null,"\n\t\t\t\t\t\t\t.appraisebox{\n\t\t\t\t\t\t\t\t\t\twidth: 65px;\n\t\t\t\t\t\t\t\t\theight: 22px;\n\t\t\t\t\t\t\t\t\tbackground: rgba(76,172,255,1);\n\t\t\t\t\t\t\t\t\tborder-radius: 2px;\n\t\t\t\t\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\t\t\t\t\tmargin-right: 20px;\n\t\t\t\t\t\t\t\t\tcolor: #fff;\n\t\t\t\t\t\t\t\t\tfont-size: 14px;\n\t\t\t\t\t\t\t\t\ttext-align: center;\n\t\t\t\t\t\t\t\t\tline-height: 22px;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t.markdown-body{\n \t\t\t\t\t\t\tpadding-bottom: 10px;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t.borderbom{\n\t\t\t\t\t\t\t margin-bottom: 15px;\n \t\t\t\t\t\tborder-bottom: 2px solid #fafafa;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t"),data===undefined?"":work_commenttype===true&&work_comment_hiddentype===true?"":__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"stud-class-set mt17"},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"clearfix edu-back-white poll_list"},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"font-16 color-dark-21 shixunreporttitleboxtop pd20 color333"},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("span",{className:"appraisebox"},"\u603B\u4F53\u8BC4\u9605"),"\u8BC4\u9605\u5185\u5BB9",this.props&&this.props.isAdmin()===true?__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("a",{className:"color-blue font-14 fr ml20",onClick:function onClick(){return _this2.props.isdeleteModal(data.comment_id,true,"main");}},"\u5220\u9664"):"",this.props&&this.props.isAdmin()===true?__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("a",{className:"color-blue font-14 fr",onClick:function onClick(){return _this2.props.showAppraiseModal("main",undefined,work_comment,work_comment_hidden);}},"\u7F16\u8F91"):""),this.props&&this.props.isAdmin()===true?__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"font-16 color-dark-21 shixunreporttitleboxbom pd30bt"},work_commenttype===true?"":__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",null,__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("span",{className:"z000"},"\u5B66\u751F\u53EF\u89C1",__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("span",{className:"z666"},"\uFF08\u5B66\u751F\u53EF\u67E5\u770B\u8001\u5E08\u7684\u8BC4\u9605\u5185\u5BB9\uFF09"))),work_commenttype===true?"":__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:work_comment_hiddentype===true?"":"borderbom",style:{minHeight:'40px'}},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"personalsummary"},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"markdown-body",dangerouslySetInnerHTML:{__html:Object(__WEBPACK_IMPORTED_MODULE_1_educoder__["_0" /* markdownToHTML */])(work_comment).replace(/▁/g,"▁▁▁")}}))),work_comment_hiddentype===true?"":__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",null,__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("span",{className:"z000"},"\u5B66\u751F\u4E0D\u53EF\u89C1",__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("span",{className:"z666"},"\uFF08\u4EC5\u5BF9\u8BFE\u5802\u8001\u5E08\u53EF\u89C1\uFF09"))),work_comment_hiddentype===true?"":__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{style:{minHeight:'40px'}},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"personalsummary"},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"markdown-body",dangerouslySetInnerHTML:{__html:Object(__WEBPACK_IMPORTED_MODULE_1_educoder__["_0" /* markdownToHTML */])(work_comment_hidden).replace(/▁/g,"▁▁▁")}})))):__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"font-16 color-dark-21 shixunreporttitleboxbom pd30"},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{style:{minHeight:'40px'}},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"personalsummary"},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"markdown-body",dangerouslySetInnerHTML:{__html:Object(__WEBPACK_IMPORTED_MODULE_1_educoder__["_0" /* markdownToHTML */])(work_comment).replace(/▁/g,"▁▁▁")}})))))),data===undefined?"":data.stage_list===undefined||data.stage_list===null?"":data.stage_list.map(function(item,key){var challenge_comment_hidden=item.challenge_comment_hidden===undefined||item.challenge_comment_hidden===null||item.challenge_comment_hidden==="";var challenge_comment=item.challenge_comment===undefined||item.challenge_comment===null||item.challenge_comment==="";return __WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{key:key},challenge_comment===false||challenge_comment_hidden==false?__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"stud-class-set mt17"},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"clearfix edu-back-white poll_list"},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"font-16 color-dark-21 shixunreporttitleboxtop pd20 color333"},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("span",{className:"appraisebox"},"\u7B2C",key+1,"\u5173"),item.name,_this2.props&&_this2.props.isAdmin()===true?__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("a",{className:"color-blue font-14 fr ml20",onClick:function onClick(){return _this2.props.isdeleteModal(item.comment_id,true,"child");}},"\u5220\u9664"):"",_this2.props&&_this2.props.isAdmin()===true?__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("a",{className:"color-blue font-14 fr",onClick:function onClick(){return _this2.props.showAppraiseModal("child",item.challenge_id,item.challenge_comment,item.challenge_comment_hidden);}},"\u7F16\u8F91"):""),_this2.props&&_this2.props.isAdmin()===true?__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"font-16 color-dark-21 shixunreporttitleboxbom pd30bt"},challenge_comment===true?"":__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",null,__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("span",{className:"z000"},"\u5B66\u751F\u53EF\u89C1",__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("span",{className:"z666"},"\uFF08\u5B66\u751F\u53EF\u67E5\u770B\u8001\u5E08\u7684\u8BC4\u9605\u5185\u5BB9\uFF09"))),challenge_comment===true?"":__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:challenge_comment_hidden===true?"":"borderbom",style:{minHeight:'40px'}},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"personalsummary"},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"markdown-body",dangerouslySetInnerHTML:{__html:Object(__WEBPACK_IMPORTED_MODULE_1_educoder__["_0" /* markdownToHTML */])(item.challenge_comment).replace(/▁/g,"▁▁▁")}}))),challenge_comment_hidden===true?"":__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",null,__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("span",{className:"z000"},"\u5B66\u751F\u4E0D\u53EF\u89C1",__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("span",{className:"z666"},"\uFF08\u4EC5\u5BF9\u8BFE\u5802\u8001\u5E08\u53EF\u89C1\uFF09"))),challenge_comment_hidden===true?"":__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{style:{minHeight:'40px'}},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"personalsummary"},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"markdown-body",dangerouslySetInnerHTML:{__html:Object(__WEBPACK_IMPORTED_MODULE_1_educoder__["_0" /* markdownToHTML */])(item.challenge_comment_hidden).replace(/▁/g,"▁▁▁")}})))):__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"font-16 color-dark-21 shixunreporttitleboxbom pd30"},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{style:{minHeight:'40px'}},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"personalsummary"},__WEBPACK_IMPORTED_MODULE_0_react___default.a.createElement("div",{className:"markdown-body",dangerouslySetInnerHTML:{__html:Object(__WEBPACK_IMPORTED_MODULE_1_educoder__["_0" /* markdownToHTML */])(item.challenge_comment).replace(/▁/g,"▁▁▁")}})))))):"");}));}}]);return ShowAppraiseList;}(__WEBPACK_IMPORTED_MODULE_0_react__["Component"]);/* harmony default export */ __webpack_exports__["a"] = (ShowAppraiseList);
-
- /***/ }),
-
- /***/ 4622:
- /***/ (function(module, exports, __webpack_require__) {
-
- // CodeMirror, copyright (c) by Marijn Haverbeke and others
- // Distributed under an MIT license: https://codemirror.net/LICENSE
-
- (function(mod) {
- if (true)
- mod(__webpack_require__(2432));
- else if (typeof define == "function" && define.amd)
- define(["../../lib/codemirror"], mod);
- else
- mod(CodeMirror);
- })(function(CodeMirror) {
- "use strict";
-
- CodeMirror.defineMode("cmake", function () {
- var variable_regex = /({)?[a-zA-Z0-9_]+(})?/;
-
- function tokenString(stream, state) {
- var current, prev, found_var = false;
- while (!stream.eol() && (current = stream.next()) != state.pending) {
- if (current === '$' && prev != '\\' && state.pending == '"') {
- found_var = true;
- break;
- }
- prev = current;
- }
- if (found_var) {
- stream.backUp(1);
- }
- if (current == state.pending) {
- state.continueString = false;
- } else {
- state.continueString = true;
- }
- return "string";
- }
-
- function tokenize(stream, state) {
- var ch = stream.next();
-
- // Have we found a variable?
- if (ch === '$') {
- if (stream.match(variable_regex)) {
- return 'variable-2';
- }
- return 'variable';
- }
- // Should we still be looking for the end of a string?
- if (state.continueString) {
- // If so, go through the loop again
- stream.backUp(1);
- return tokenString(stream, state);
- }
- // Do we just have a function on our hands?
- // In 'cmake_minimum_required (VERSION 2.8.8)', 'cmake_minimum_required' is matched
- if (stream.match(/(\s+)?\w+\(/) || stream.match(/(\s+)?\w+\ \(/)) {
- stream.backUp(1);
- return 'def';
- }
- if (ch == "#") {
- stream.skipToEnd();
- return "comment";
- }
- // Have we found a string?
- if (ch == "'" || ch == '"') {
- // Store the type (single or double)
- state.pending = ch;
- // Perform the looping function to find the end
- return tokenString(stream, state);
- }
- if (ch == '(' || ch == ')') {
- return 'bracket';
- }
- if (ch.match(/[0-9]/)) {
- return 'number';
- }
- stream.eatWhile(/[\w-]/);
- return null;
- }
- return {
- startState: function () {
- var state = {};
- state.inDefinition = false;
- state.inInclude = false;
- state.continueString = false;
- state.pending = false;
- return state;
- },
- token: function (stream, state) {
- if (stream.eatSpace()) return null;
- return tokenize(stream, state);
- }
- };
- });
-
- CodeMirror.defineMIME("text/x-cmake", "cmake");
-
- });
-
-
- /***/ }),
-
- /***/ 4623:
- /***/ (function(module, exports, __webpack_require__) {
-
- // CodeMirror, copyright (c) by Marijn Haverbeke and others
- // Distributed under an MIT license: https://codemirror.net/LICENSE
-
- (function(mod) {
- if (true) // CommonJS
- mod(__webpack_require__(2432));
- else if (typeof define == "function" && define.amd) // AMD
- define(["../../lib/codemirror"], mod);
- else // Plain browser env
- mod(CodeMirror);
- })(function(CodeMirror) {
- "use strict";
-
- var htmlConfig = {
- autoSelfClosers: {'area': true, 'base': true, 'br': true, 'col': true, 'command': true,
- 'embed': true, 'frame': true, 'hr': true, 'img': true, 'input': true,
- 'keygen': true, 'link': true, 'meta': true, 'param': true, 'source': true,
- 'track': true, 'wbr': true, 'menuitem': true},
- implicitlyClosed: {'dd': true, 'li': true, 'optgroup': true, 'option': true, 'p': true,
- 'rp': true, 'rt': true, 'tbody': true, 'td': true, 'tfoot': true,
- 'th': true, 'tr': true},
- contextGrabbers: {
- 'dd': {'dd': true, 'dt': true},
- 'dt': {'dd': true, 'dt': true},
- 'li': {'li': true},
- 'option': {'option': true, 'optgroup': true},
- 'optgroup': {'optgroup': true},
- 'p': {'address': true, 'article': true, 'aside': true, 'blockquote': true, 'dir': true,
- 'div': true, 'dl': true, 'fieldset': true, 'footer': true, 'form': true,
- 'h1': true, 'h2': true, 'h3': true, 'h4': true, 'h5': true, 'h6': true,
- 'header': true, 'hgroup': true, 'hr': true, 'menu': true, 'nav': true, 'ol': true,
- 'p': true, 'pre': true, 'section': true, 'table': true, 'ul': true},
- 'rp': {'rp': true, 'rt': true},
- 'rt': {'rp': true, 'rt': true},
- 'tbody': {'tbody': true, 'tfoot': true},
- 'td': {'td': true, 'th': true},
- 'tfoot': {'tbody': true},
- 'th': {'td': true, 'th': true},
- 'thead': {'tbody': true, 'tfoot': true},
- 'tr': {'tr': true}
- },
- doNotIndent: {"pre": true},
- allowUnquoted: true,
- allowMissing: true,
- caseFold: true
- }
-
- var xmlConfig = {
- autoSelfClosers: {},
- implicitlyClosed: {},
- contextGrabbers: {},
- doNotIndent: {},
- allowUnquoted: false,
- allowMissing: false,
- allowMissingTagName: false,
- caseFold: false
- }
-
- CodeMirror.defineMode("xml", function(editorConf, config_) {
- var indentUnit = editorConf.indentUnit
- var config = {}
- var defaults = config_.htmlMode ? htmlConfig : xmlConfig
- for (var prop in defaults) config[prop] = defaults[prop]
- for (var prop in config_) config[prop] = config_[prop]
-
- // Return variables for tokenizers
- var type, setStyle;
-
- function inText(stream, state) {
- function chain(parser) {
- state.tokenize = parser;
- return parser(stream, state);
- }
-
- var ch = stream.next();
- if (ch == "<") {
- if (stream.eat("!")) {
- if (stream.eat("[")) {
- if (stream.match("CDATA[")) return chain(inBlock("atom", "]]>"));
- else return null;
- } else if (stream.match("--")) {
- return chain(inBlock("comment", "-->"));
- } else if (stream.match("DOCTYPE", true, true)) {
- stream.eatWhile(/[\w\._\-]/);
- return chain(doctype(1));
- } else {
- return null;
- }
- } else if (stream.eat("?")) {
- stream.eatWhile(/[\w\._\-]/);
- state.tokenize = inBlock("meta", "?>");
- return "meta";
- } else {
- type = stream.eat("/") ? "closeTag" : "openTag";
- state.tokenize = inTag;
- return "tag bracket";
- }
- } else if (ch == "&") {
- var ok;
- if (stream.eat("#")) {
- if (stream.eat("x")) {
- ok = stream.eatWhile(/[a-fA-F\d]/) && stream.eat(";");
- } else {
- ok = stream.eatWhile(/[\d]/) && stream.eat(";");
- }
- } else {
- ok = stream.eatWhile(/[\w\.\-:]/) && stream.eat(";");
- }
- return ok ? "atom" : "error";
- } else {
- stream.eatWhile(/[^&<]/);
- return null;
- }
- }
- inText.isInText = true;
-
- function inTag(stream, state) {
- var ch = stream.next();
- if (ch == ">" || (ch == "/" && stream.eat(">"))) {
- state.tokenize = inText;
- type = ch == ">" ? "endTag" : "selfcloseTag";
- return "tag bracket";
- } else if (ch == "=") {
- type = "equals";
- return null;
- } else if (ch == "<") {
- state.tokenize = inText;
- state.state = baseState;
- state.tagName = state.tagStart = null;
- var next = state.tokenize(stream, state);
- return next ? next + " tag error" : "tag error";
- } else if (/[\'\"]/.test(ch)) {
- state.tokenize = inAttribute(ch);
- state.stringStartCol = stream.column();
- return state.tokenize(stream, state);
- } else {
- stream.match(/^[^\s\u00a0=<>\"\']*[^\s\u00a0=<>\"\'\/]/);
- return "word";
- }
- }
-
- function inAttribute(quote) {
- var closure = function(stream, state) {
- while (!stream.eol()) {
- if (stream.next() == quote) {
- state.tokenize = inTag;
- break;
- }
- }
- return "string";
- };
- closure.isInAttribute = true;
- return closure;
- }
-
- function inBlock(style, terminator) {
- return function(stream, state) {
- while (!stream.eol()) {
- if (stream.match(terminator)) {
- state.tokenize = inText;
- break;
- }
- stream.next();
- }
- return style;
- }
- }
-
- function doctype(depth) {
- return function(stream, state) {
- var ch;
- while ((ch = stream.next()) != null) {
- if (ch == "<") {
- state.tokenize = doctype(depth + 1);
- return state.tokenize(stream, state);
- } else if (ch == ">") {
- if (depth == 1) {
- state.tokenize = inText;
- break;
- } else {
- state.tokenize = doctype(depth - 1);
- return state.tokenize(stream, state);
- }
- }
- }
- return "meta";
- };
- }
-
- function Context(state, tagName, startOfLine) {
- this.prev = state.context;
- this.tagName = tagName;
- this.indent = state.indented;
- this.startOfLine = startOfLine;
- if (config.doNotIndent.hasOwnProperty(tagName) || (state.context && state.context.noIndent))
- this.noIndent = true;
- }
- function popContext(state) {
- if (state.context) state.context = state.context.prev;
- }
- function maybePopContext(state, nextTagName) {
- var parentTagName;
- while (true) {
- if (!state.context) {
- return;
- }
- parentTagName = state.context.tagName;
- if (!config.contextGrabbers.hasOwnProperty(parentTagName) ||
- !config.contextGrabbers[parentTagName].hasOwnProperty(nextTagName)) {
- return;
- }
- popContext(state);
- }
- }
-
- function baseState(type, stream, state) {
- if (type == "openTag") {
- state.tagStart = stream.column();
- return tagNameState;
- } else if (type == "closeTag") {
- return closeTagNameState;
- } else {
- return baseState;
- }
- }
- function tagNameState(type, stream, state) {
- if (type == "word") {
- state.tagName = stream.current();
- setStyle = "tag";
- return attrState;
- } else if (config.allowMissingTagName && type == "endTag") {
- setStyle = "tag bracket";
- return attrState(type, stream, state);
- } else {
- setStyle = "error";
- return tagNameState;
- }
- }
- function closeTagNameState(type, stream, state) {
- if (type == "word") {
- var tagName = stream.current();
- if (state.context && state.context.tagName != tagName &&
- config.implicitlyClosed.hasOwnProperty(state.context.tagName))
- popContext(state);
- if ((state.context && state.context.tagName == tagName) || config.matchClosing === false) {
- setStyle = "tag";
- return closeState;
- } else {
- setStyle = "tag error";
- return closeStateErr;
- }
- } else if (config.allowMissingTagName && type == "endTag") {
- setStyle = "tag bracket";
- return closeState(type, stream, state);
- } else {
- setStyle = "error";
- return closeStateErr;
- }
- }
-
- function closeState(type, _stream, state) {
- if (type != "endTag") {
- setStyle = "error";
- return closeState;
- }
- popContext(state);
- return baseState;
- }
- function closeStateErr(type, stream, state) {
- setStyle = "error";
- return closeState(type, stream, state);
- }
-
- function attrState(type, _stream, state) {
- if (type == "word") {
- setStyle = "attribute";
- return attrEqState;
- } else if (type == "endTag" || type == "selfcloseTag") {
- var tagName = state.tagName, tagStart = state.tagStart;
- state.tagName = state.tagStart = null;
- if (type == "selfcloseTag" ||
- config.autoSelfClosers.hasOwnProperty(tagName)) {
- maybePopContext(state, tagName);
- } else {
- maybePopContext(state, tagName);
- state.context = new Context(state, tagName, tagStart == state.indented);
- }
- return baseState;
- }
- setStyle = "error";
- return attrState;
- }
- function attrEqState(type, stream, state) {
- if (type == "equals") return attrValueState;
- if (!config.allowMissing) setStyle = "error";
- return attrState(type, stream, state);
- }
- function attrValueState(type, stream, state) {
- if (type == "string") return attrContinuedState;
- if (type == "word" && config.allowUnquoted) {setStyle = "string"; return attrState;}
- setStyle = "error";
- return attrState(type, stream, state);
- }
- function attrContinuedState(type, stream, state) {
- if (type == "string") return attrContinuedState;
- return attrState(type, stream, state);
- }
-
- return {
- startState: function(baseIndent) {
- var state = {tokenize: inText,
- state: baseState,
- indented: baseIndent || 0,
- tagName: null, tagStart: null,
- context: null}
- if (baseIndent != null) state.baseIndent = baseIndent
- return state
- },
-
- token: function(stream, state) {
- if (!state.tagName && stream.sol())
- state.indented = stream.indentation();
-
- if (stream.eatSpace()) return null;
- type = null;
- var style = state.tokenize(stream, state);
- if ((style || type) && style != "comment") {
- setStyle = null;
- state.state = state.state(type || style, stream, state);
- if (setStyle)
- style = setStyle == "error" ? style + " error" : setStyle;
- }
- return style;
- },
-
- indent: function(state, textAfter, fullLine) {
- var context = state.context;
- // Indent multi-line strings (e.g. css).
- if (state.tokenize.isInAttribute) {
- if (state.tagStart == state.indented)
- return state.stringStartCol + 1;
- else
- return state.indented + indentUnit;
- }
- if (context && context.noIndent) return CodeMirror.Pass;
- if (state.tokenize != inTag && state.tokenize != inText)
- return fullLine ? fullLine.match(/^(\s*)/)[0].length : 0;
- // Indent the starts of attribute names.
- if (state.tagName) {
- if (config.multilineTagIndentPastTag !== false)
- return state.tagStart + state.tagName.length + 2;
- else
- return state.tagStart + indentUnit * (config.multilineTagIndentFactor || 1);
- }
- if (config.alignCDATA && /<!\[CDATA\[/.test(textAfter)) return 0;
- var tagAfter = textAfter && /^<(\/)?([\w_:\.-]*)/.exec(textAfter);
- if (tagAfter && tagAfter[1]) { // Closing tag spotted
- while (context) {
- if (context.tagName == tagAfter[2]) {
- context = context.prev;
- break;
- } else if (config.implicitlyClosed.hasOwnProperty(context.tagName)) {
- context = context.prev;
- } else {
- break;
- }
- }
- } else if (tagAfter) { // Opening tag spotted
- while (context) {
- var grabbers = config.contextGrabbers[context.tagName];
- if (grabbers && grabbers.hasOwnProperty(tagAfter[2]))
- context = context.prev;
- else
- break;
- }
- }
- while (context && context.prev && !context.startOfLine)
- context = context.prev;
- if (context) return context.indent + indentUnit;
- else return state.baseIndent || 0;
- },
-
- electricInput: /<\/[\s\w:]+>$/,
- blockCommentStart: "<!--",
- blockCommentEnd: "-->",
-
- configuration: config.htmlMode ? "html" : "xml",
- helperType: config.htmlMode ? "html" : "xml",
-
- skipAttribute: function(state) {
- if (state.state == attrValueState)
- state.state = attrState
- },
-
- xmlCurrentTag: function(state) {
- return state.tagName ? {name: state.tagName, close: state.type == "closeTag"} : null
- },
-
- xmlCurrentContext: function(state) {
- var context = []
- for (var cx = state.context; cx; cx = cx.prev)
- if (cx.tagName) context.push(cx.tagName)
- return context.reverse()
- }
- };
- });
-
- CodeMirror.defineMIME("text/xml", "xml");
- CodeMirror.defineMIME("application/xml", "xml");
- if (!CodeMirror.mimeModes.hasOwnProperty("text/html"))
- CodeMirror.defineMIME("text/html", {name: "xml", htmlMode: true});
-
- });
-
-
- /***/ }),
-
- /***/ 4624:
- /***/ (function(module, exports, __webpack_require__) {
-
- // CodeMirror, copyright (c) by Marijn Haverbeke and others
- // Distributed under an MIT license: https://codemirror.net/LICENSE
-
- (function(mod) {
- if (true) // CommonJS
- mod(__webpack_require__(2432));
- else if (typeof define == "function" && define.amd) // AMD
- define(["../../lib/codemirror"], mod);
- else // Plain browser env
- mod(CodeMirror);
- })(function(CodeMirror) {
- "use strict";
-
- CodeMirror.defineMode("javascript", function(config, parserConfig) {
- var indentUnit = config.indentUnit;
- var statementIndent = parserConfig.statementIndent;
- var jsonldMode = parserConfig.jsonld;
- var jsonMode = parserConfig.json || jsonldMode;
- var isTS = parserConfig.typescript;
- var wordRE = parserConfig.wordCharacters || /[\w$\xa1-\uffff]/;
-
- // Tokenizer
-
- var keywords = function(){
- function kw(type) {return {type: type, style: "keyword"};}
- var A = kw("keyword a"), B = kw("keyword b"), C = kw("keyword c"), D = kw("keyword d");
- var operator = kw("operator"), atom = {type: "atom", style: "atom"};
-
- return {
- "if": kw("if"), "while": A, "with": A, "else": B, "do": B, "try": B, "finally": B,
- "return": D, "break": D, "continue": D, "new": kw("new"), "delete": C, "void": C, "throw": C,
- "debugger": kw("debugger"), "var": kw("var"), "const": kw("var"), "let": kw("var"),
- "function": kw("function"), "catch": kw("catch"),
- "for": kw("for"), "switch": kw("switch"), "case": kw("case"), "default": kw("default"),
- "in": operator, "typeof": operator, "instanceof": operator,
- "true": atom, "false": atom, "null": atom, "undefined": atom, "NaN": atom, "Infinity": atom,
- "this": kw("this"), "class": kw("class"), "super": kw("atom"),
- "yield": C, "export": kw("export"), "import": kw("import"), "extends": C,
- "await": C
- };
- }();
-
- var isOperatorChar = /[+\-*&%=<>!?|~^@]/;
- var isJsonldKeyword = /^@(context|id|value|language|type|container|list|set|reverse|index|base|vocab|graph)"/;
-
- function readRegexp(stream) {
- var escaped = false, next, inSet = false;
- while ((next = stream.next()) != null) {
- if (!escaped) {
- if (next == "/" && !inSet) return;
- if (next == "[") inSet = true;
- else if (inSet && next == "]") inSet = false;
- }
- escaped = !escaped && next == "\\";
- }
- }
-
- // Used as scratch variables to communicate multiple values without
- // consing up tons of objects.
- var type, content;
- function ret(tp, style, cont) {
- type = tp; content = cont;
- return style;
- }
- function tokenBase(stream, state) {
- var ch = stream.next();
- if (ch == '"' || ch == "'") {
- state.tokenize = tokenString(ch);
- return state.tokenize(stream, state);
- } else if (ch == "." && stream.match(/^\d[\d_]*(?:[eE][+\-]?[\d_]+)?/)) {
- return ret("number", "number");
- } else if (ch == "." && stream.match("..")) {
- return ret("spread", "meta");
- } else if (/[\[\]{}\(\),;\:\.]/.test(ch)) {
- return ret(ch);
- } else if (ch == "=" && stream.eat(">")) {
- return ret("=>", "operator");
- } else if (ch == "0" && stream.match(/^(?:x[\dA-Fa-f_]+|o[0-7_]+|b[01_]+)n?/)) {
- return ret("number", "number");
- } else if (/\d/.test(ch)) {
- stream.match(/^[\d_]*(?:n|(?:\.[\d_]*)?(?:[eE][+\-]?[\d_]+)?)?/);
- return ret("number", "number");
- } else if (ch == "/") {
- if (stream.eat("*")) {
- state.tokenize = tokenComment;
- return tokenComment(stream, state);
- } else if (stream.eat("/")) {
- stream.skipToEnd();
- return ret("comment", "comment");
- } else if (expressionAllowed(stream, state, 1)) {
- readRegexp(stream);
- stream.match(/^\b(([gimyus])(?![gimyus]*\2))+\b/);
- return ret("regexp", "string-2");
- } else {
- stream.eat("=");
- return ret("operator", "operator", stream.current());
- }
- } else if (ch == "`") {
- state.tokenize = tokenQuasi;
- return tokenQuasi(stream, state);
- } else if (ch == "#") {
- stream.skipToEnd();
- return ret("error", "error");
- } else if (ch == "<" && stream.match("!--") || ch == "-" && stream.match("->")) {
- stream.skipToEnd()
- return ret("comment", "comment")
- } else if (isOperatorChar.test(ch)) {
- if (ch != ">" || !state.lexical || state.lexical.type != ">") {
- if (stream.eat("=")) {
- if (ch == "!" || ch == "=") stream.eat("=")
- } else if (/[<>*+\-]/.test(ch)) {
- stream.eat(ch)
- if (ch == ">") stream.eat(ch)
- }
- }
- return ret("operator", "operator", stream.current());
- } else if (wordRE.test(ch)) {
- stream.eatWhile(wordRE);
- var word = stream.current()
- if (state.lastType != ".") {
- if (keywords.propertyIsEnumerable(word)) {
- var kw = keywords[word]
- return ret(kw.type, kw.style, word)
- }
- if (word == "async" && stream.match(/^(\s|\/\*.*?\*\/)*[\[\(\w]/, false))
- return ret("async", "keyword", word)
- }
- return ret("variable", "variable", word)
- }
- }
-
- function tokenString(quote) {
- return function(stream, state) {
- var escaped = false, next;
- if (jsonldMode && stream.peek() == "@" && stream.match(isJsonldKeyword)){
- state.tokenize = tokenBase;
- return ret("jsonld-keyword", "meta");
- }
- while ((next = stream.next()) != null) {
- if (next == quote && !escaped) break;
- escaped = !escaped && next == "\\";
- }
- if (!escaped) state.tokenize = tokenBase;
- return ret("string", "string");
- };
- }
-
- function tokenComment(stream, state) {
- var maybeEnd = false, ch;
- while (ch = stream.next()) {
- if (ch == "/" && maybeEnd) {
- state.tokenize = tokenBase;
- break;
- }
- maybeEnd = (ch == "*");
- }
- return ret("comment", "comment");
- }
-
- function tokenQuasi(stream, state) {
- var escaped = false, next;
- while ((next = stream.next()) != null) {
- if (!escaped && (next == "`" || next == "$" && stream.eat("{"))) {
- state.tokenize = tokenBase;
- break;
- }
- escaped = !escaped && next == "\\";
- }
- return ret("quasi", "string-2", stream.current());
- }
-
- var brackets = "([{}])";
- // This is a crude lookahead trick to try and notice that we're
- // parsing the argument patterns for a fat-arrow function before we
- // actually hit the arrow token. It only works if the arrow is on
- // the same line as the arguments and there's no strange noise
- // (comments) in between. Fallback is to only notice when we hit the
- // arrow, and not declare the arguments as locals for the arrow
- // body.
- function findFatArrow(stream, state) {
- if (state.fatArrowAt) state.fatArrowAt = null;
- var arrow = stream.string.indexOf("=>", stream.start);
- if (arrow < 0) return;
-
- if (isTS) { // Try to skip TypeScript return type declarations after the arguments
- var m = /:\s*(?:\w+(?:<[^>]*>|\[\])?|\{[^}]*\})\s*$/.exec(stream.string.slice(stream.start, arrow))
- if (m) arrow = m.index
- }
-
- var depth = 0, sawSomething = false;
- for (var pos = arrow - 1; pos >= 0; --pos) {
- var ch = stream.string.charAt(pos);
- var bracket = brackets.indexOf(ch);
- if (bracket >= 0 && bracket < 3) {
- if (!depth) { ++pos; break; }
- if (--depth == 0) { if (ch == "(") sawSomething = true; break; }
- } else if (bracket >= 3 && bracket < 6) {
- ++depth;
- } else if (wordRE.test(ch)) {
- sawSomething = true;
- } else if (/["'\/`]/.test(ch)) {
- for (;; --pos) {
- if (pos == 0) return
- var next = stream.string.charAt(pos - 1)
- if (next == ch && stream.string.charAt(pos - 2) != "\\") { pos--; break }
- }
- } else if (sawSomething && !depth) {
- ++pos;
- break;
- }
- }
- if (sawSomething && !depth) state.fatArrowAt = pos;
- }
-
- // Parser
-
- var atomicTypes = {"atom": true, "number": true, "variable": true, "string": true, "regexp": true, "this": true, "jsonld-keyword": true};
-
- function JSLexical(indented, column, type, align, prev, info) {
- this.indented = indented;
- this.column = column;
- this.type = type;
- this.prev = prev;
- this.info = info;
- if (align != null) this.align = align;
- }
-
- function inScope(state, varname) {
- for (var v = state.localVars; v; v = v.next)
- if (v.name == varname) return true;
- for (var cx = state.context; cx; cx = cx.prev) {
- for (var v = cx.vars; v; v = v.next)
- if (v.name == varname) return true;
- }
- }
-
- function parseJS(state, style, type, content, stream) {
- var cc = state.cc;
- // Communicate our context to the combinators.
- // (Less wasteful than consing up a hundred closures on every call.)
- cx.state = state; cx.stream = stream; cx.marked = null, cx.cc = cc; cx.style = style;
-
- if (!state.lexical.hasOwnProperty("align"))
- state.lexical.align = true;
-
- while(true) {
- var combinator = cc.length ? cc.pop() : jsonMode ? expression : statement;
- if (combinator(type, content)) {
- while(cc.length && cc[cc.length - 1].lex)
- cc.pop()();
- if (cx.marked) return cx.marked;
- if (type == "variable" && inScope(state, content)) return "variable-2";
- return style;
- }
- }
- }
-
- // Combinator utils
-
- var cx = {state: null, column: null, marked: null, cc: null};
- function pass() {
- for (var i = arguments.length - 1; i >= 0; i--) cx.cc.push(arguments[i]);
- }
- function cont() {
- pass.apply(null, arguments);
- return true;
- }
- function inList(name, list) {
- for (var v = list; v; v = v.next) if (v.name == name) return true
- return false;
- }
- function register(varname) {
- var state = cx.state;
- cx.marked = "def";
- if (state.context) {
- if (state.lexical.info == "var" && state.context && state.context.block) {
- // FIXME function decls are also not block scoped
- var newContext = registerVarScoped(varname, state.context)
- if (newContext != null) {
- state.context = newContext
- return
- }
- } else if (!inList(varname, state.localVars)) {
- state.localVars = new Var(varname, state.localVars)
- return
- }
- }
- // Fall through means this is global
- if (parserConfig.globalVars && !inList(varname, state.globalVars))
- state.globalVars = new Var(varname, state.globalVars)
- }
- function registerVarScoped(varname, context) {
- if (!context) {
- return null
- } else if (context.block) {
- var inner = registerVarScoped(varname, context.prev)
- if (!inner) return null
- if (inner == context.prev) return context
- return new Context(inner, context.vars, true)
- } else if (inList(varname, context.vars)) {
- return context
- } else {
- return new Context(context.prev, new Var(varname, context.vars), false)
- }
- }
-
- function isModifier(name) {
- return name == "public" || name == "private" || name == "protected" || name == "abstract" || name == "readonly"
- }
-
- // Combinators
-
- function Context(prev, vars, block) { this.prev = prev; this.vars = vars; this.block = block }
- function Var(name, next) { this.name = name; this.next = next }
-
- var defaultVars = new Var("this", new Var("arguments", null))
- function pushcontext() {
- cx.state.context = new Context(cx.state.context, cx.state.localVars, false)
- cx.state.localVars = defaultVars
- }
- function pushblockcontext() {
- cx.state.context = new Context(cx.state.context, cx.state.localVars, true)
- cx.state.localVars = null
- }
- function popcontext() {
- cx.state.localVars = cx.state.context.vars
- cx.state.context = cx.state.context.prev
- }
- popcontext.lex = true
- function pushlex(type, info) {
- var result = function() {
- var state = cx.state, indent = state.indented;
- if (state.lexical.type == "stat") indent = state.lexical.indented;
- else for (var outer = state.lexical; outer && outer.type == ")" && outer.align; outer = outer.prev)
- indent = outer.indented;
- state.lexical = new JSLexical(indent, cx.stream.column(), type, null, state.lexical, info);
- };
- result.lex = true;
- return result;
- }
- function poplex() {
- var state = cx.state;
- if (state.lexical.prev) {
- if (state.lexical.type == ")")
- state.indented = state.lexical.indented;
- state.lexical = state.lexical.prev;
- }
- }
- poplex.lex = true;
-
- function expect(wanted) {
- function exp(type) {
- if (type == wanted) return cont();
- else if (wanted == ";" || type == "}" || type == ")" || type == "]") return pass();
- else return cont(exp);
- };
- return exp;
- }
-
- function statement(type, value) {
- if (type == "var") return cont(pushlex("vardef", value), vardef, expect(";"), poplex);
- if (type == "keyword a") return cont(pushlex("form"), parenExpr, statement, poplex);
- if (type == "keyword b") return cont(pushlex("form"), statement, poplex);
- if (type == "keyword d") return cx.stream.match(/^\s*$/, false) ? cont() : cont(pushlex("stat"), maybeexpression, expect(";"), poplex);
- if (type == "debugger") return cont(expect(";"));
- if (type == "{") return cont(pushlex("}"), pushblockcontext, block, poplex, popcontext);
- if (type == ";") return cont();
- if (type == "if") {
- if (cx.state.lexical.info == "else" && cx.state.cc[cx.state.cc.length - 1] == poplex)
- cx.state.cc.pop()();
- return cont(pushlex("form"), parenExpr, statement, poplex, maybeelse);
- }
- if (type == "function") return cont(functiondef);
- if (type == "for") return cont(pushlex("form"), forspec, statement, poplex);
- if (type == "class" || (isTS && value == "interface")) {
- cx.marked = "keyword"
- return cont(pushlex("form", type == "class" ? type : value), className, poplex)
- }
- if (type == "variable") {
- if (isTS && value == "declare") {
- cx.marked = "keyword"
- return cont(statement)
- } else if (isTS && (value == "module" || value == "enum" || value == "type") && cx.stream.match(/^\s*\w/, false)) {
- cx.marked = "keyword"
- if (value == "enum") return cont(enumdef);
- else if (value == "type") return cont(typename, expect("operator"), typeexpr, expect(";"));
- else return cont(pushlex("form"), pattern, expect("{"), pushlex("}"), block, poplex, poplex)
- } else if (isTS && value == "namespace") {
- cx.marked = "keyword"
- return cont(pushlex("form"), expression, statement, poplex)
- } else if (isTS && value == "abstract") {
- cx.marked = "keyword"
- return cont(statement)
- } else {
- return cont(pushlex("stat"), maybelabel);
- }
- }
- if (type == "switch") return cont(pushlex("form"), parenExpr, expect("{"), pushlex("}", "switch"), pushblockcontext,
- block, poplex, poplex, popcontext);
- if (type == "case") return cont(expression, expect(":"));
- if (type == "default") return cont(expect(":"));
- if (type == "catch") return cont(pushlex("form"), pushcontext, maybeCatchBinding, statement, poplex, popcontext);
- if (type == "export") return cont(pushlex("stat"), afterExport, poplex);
- if (type == "import") return cont(pushlex("stat"), afterImport, poplex);
- if (type == "async") return cont(statement)
- if (value == "@") return cont(expression, statement)
- return pass(pushlex("stat"), expression, expect(";"), poplex);
- }
- function maybeCatchBinding(type) {
- if (type == "(") return cont(funarg, expect(")"))
- }
- function expression(type, value) {
- return expressionInner(type, value, false);
- }
- function expressionNoComma(type, value) {
- return expressionInner(type, value, true);
- }
- function parenExpr(type) {
- if (type != "(") return pass()
- return cont(pushlex(")"), expression, expect(")"), poplex)
- }
- function expressionInner(type, value, noComma) {
- if (cx.state.fatArrowAt == cx.stream.start) {
- var body = noComma ? arrowBodyNoComma : arrowBody;
- if (type == "(") return cont(pushcontext, pushlex(")"), commasep(funarg, ")"), poplex, expect("=>"), body, popcontext);
- else if (type == "variable") return pass(pushcontext, pattern, expect("=>"), body, popcontext);
- }
-
- var maybeop = noComma ? maybeoperatorNoComma : maybeoperatorComma;
- if (atomicTypes.hasOwnProperty(type)) return cont(maybeop);
- if (type == "function") return cont(functiondef, maybeop);
- if (type == "class" || (isTS && value == "interface")) { cx.marked = "keyword"; return cont(pushlex("form"), classExpression, poplex); }
- if (type == "keyword c" || type == "async") return cont(noComma ? expressionNoComma : expression);
- if (type == "(") return cont(pushlex(")"), maybeexpression, expect(")"), poplex, maybeop);
- if (type == "operator" || type == "spread") return cont(noComma ? expressionNoComma : expression);
- if (type == "[") return cont(pushlex("]"), arrayLiteral, poplex, maybeop);
- if (type == "{") return contCommasep(objprop, "}", null, maybeop);
- if (type == "quasi") return pass(quasi, maybeop);
- if (type == "new") return cont(maybeTarget(noComma));
- if (type == "import") return cont(expression);
- return cont();
- }
- function maybeexpression(type) {
- if (type.match(/[;\}\)\],]/)) return pass();
- return pass(expression);
- }
-
- function maybeoperatorComma(type, value) {
- if (type == ",") return cont(maybeexpression);
- return maybeoperatorNoComma(type, value, false);
- }
- function maybeoperatorNoComma(type, value, noComma) {
- var me = noComma == false ? maybeoperatorComma : maybeoperatorNoComma;
- var expr = noComma == false ? expression : expressionNoComma;
- if (type == "=>") return cont(pushcontext, noComma ? arrowBodyNoComma : arrowBody, popcontext);
- if (type == "operator") {
- if (/\+\+|--/.test(value) || isTS && value == "!") return cont(me);
- if (isTS && value == "<" && cx.stream.match(/^([^>]|<.*?>)*>\s*\(/, false))
- return cont(pushlex(">"), commasep(typeexpr, ">"), poplex, me);
- if (value == "?") return cont(expression, expect(":"), expr);
- return cont(expr);
- }
- if (type == "quasi") { return pass(quasi, me); }
- if (type == ";") return;
- if (type == "(") return contCommasep(expressionNoComma, ")", "call", me);
- if (type == ".") return cont(property, me);
- if (type == "[") return cont(pushlex("]"), maybeexpression, expect("]"), poplex, me);
- if (isTS && value == "as") { cx.marked = "keyword"; return cont(typeexpr, me) }
- if (type == "regexp") {
- cx.state.lastType = cx.marked = "operator"
- cx.stream.backUp(cx.stream.pos - cx.stream.start - 1)
- return cont(expr)
- }
- }
- function quasi(type, value) {
- if (type != "quasi") return pass();
- if (value.slice(value.length - 2) != "${") return cont(quasi);
- return cont(expression, continueQuasi);
- }
- function continueQuasi(type) {
- if (type == "}") {
- cx.marked = "string-2";
- cx.state.tokenize = tokenQuasi;
- return cont(quasi);
- }
- }
- function arrowBody(type) {
- findFatArrow(cx.stream, cx.state);
- return pass(type == "{" ? statement : expression);
- }
- function arrowBodyNoComma(type) {
- findFatArrow(cx.stream, cx.state);
- return pass(type == "{" ? statement : expressionNoComma);
- }
- function maybeTarget(noComma) {
- return function(type) {
- if (type == ".") return cont(noComma ? targetNoComma : target);
- else if (type == "variable" && isTS) return cont(maybeTypeArgs, noComma ? maybeoperatorNoComma : maybeoperatorComma)
- else return pass(noComma ? expressionNoComma : expression);
- };
- }
- function target(_, value) {
- if (value == "target") { cx.marked = "keyword"; return cont(maybeoperatorComma); }
- }
- function targetNoComma(_, value) {
- if (value == "target") { cx.marked = "keyword"; return cont(maybeoperatorNoComma); }
- }
- function maybelabel(type) {
- if (type == ":") return cont(poplex, statement);
- return pass(maybeoperatorComma, expect(";"), poplex);
- }
- function property(type) {
- if (type == "variable") {cx.marked = "property"; return cont();}
- }
- function objprop(type, value) {
- if (type == "async") {
- cx.marked = "property";
- return cont(objprop);
- } else if (type == "variable" || cx.style == "keyword") {
- cx.marked = "property";
- if (value == "get" || value == "set") return cont(getterSetter);
- var m // Work around fat-arrow-detection complication for detecting typescript typed arrow params
- if (isTS && cx.state.fatArrowAt == cx.stream.start && (m = cx.stream.match(/^\s*:\s*/, false)))
- cx.state.fatArrowAt = cx.stream.pos + m[0].length
- return cont(afterprop);
- } else if (type == "number" || type == "string") {
- cx.marked = jsonldMode ? "property" : (cx.style + " property");
- return cont(afterprop);
- } else if (type == "jsonld-keyword") {
- return cont(afterprop);
- } else if (isTS && isModifier(value)) {
- cx.marked = "keyword"
- return cont(objprop)
- } else if (type == "[") {
- return cont(expression, maybetype, expect("]"), afterprop);
- } else if (type == "spread") {
- return cont(expressionNoComma, afterprop);
- } else if (value == "*") {
- cx.marked = "keyword";
- return cont(objprop);
- } else if (type == ":") {
- return pass(afterprop)
- }
- }
- function getterSetter(type) {
- if (type != "variable") return pass(afterprop);
- cx.marked = "property";
- return cont(functiondef);
- }
- function afterprop(type) {
- if (type == ":") return cont(expressionNoComma);
- if (type == "(") return pass(functiondef);
- }
- function commasep(what, end, sep) {
- function proceed(type, value) {
- if (sep ? sep.indexOf(type) > -1 : type == ",") {
- var lex = cx.state.lexical;
- if (lex.info == "call") lex.pos = (lex.pos || 0) + 1;
- return cont(function(type, value) {
- if (type == end || value == end) return pass()
- return pass(what)
- }, proceed);
- }
- if (type == end || value == end) return cont();
- if (sep && sep.indexOf(";") > -1) return pass(what)
- return cont(expect(end));
- }
- return function(type, value) {
- if (type == end || value == end) return cont();
- return pass(what, proceed);
- };
- }
- function contCommasep(what, end, info) {
- for (var i = 3; i < arguments.length; i++)
- cx.cc.push(arguments[i]);
- return cont(pushlex(end, info), commasep(what, end), poplex);
- }
- function block(type) {
- if (type == "}") return cont();
- return pass(statement, block);
- }
- function maybetype(type, value) {
- if (isTS) {
- if (type == ":") return cont(typeexpr);
- if (value == "?") return cont(maybetype);
- }
- }
- function maybetypeOrIn(type, value) {
- if (isTS && (type == ":" || value == "in")) return cont(typeexpr)
- }
- function mayberettype(type) {
- if (isTS && type == ":") {
- if (cx.stream.match(/^\s*\w+\s+is\b/, false)) return cont(expression, isKW, typeexpr)
- else return cont(typeexpr)
- }
- }
- function isKW(_, value) {
- if (value == "is") {
- cx.marked = "keyword"
- return cont()
- }
- }
- function typeexpr(type, value) {
- if (value == "keyof" || value == "typeof" || value == "infer") {
- cx.marked = "keyword"
- return cont(value == "typeof" ? expressionNoComma : typeexpr)
- }
- if (type == "variable" || value == "void") {
- cx.marked = "type"
- return cont(afterType)
- }
- if (value == "|" || value == "&") return cont(typeexpr)
- if (type == "string" || type == "number" || type == "atom") return cont(afterType);
- if (type == "[") return cont(pushlex("]"), commasep(typeexpr, "]", ","), poplex, afterType)
- if (type == "{") return cont(pushlex("}"), commasep(typeprop, "}", ",;"), poplex, afterType)
- if (type == "(") return cont(commasep(typearg, ")"), maybeReturnType, afterType)
- if (type == "<") return cont(commasep(typeexpr, ">"), typeexpr)
- }
- function maybeReturnType(type) {
- if (type == "=>") return cont(typeexpr)
- }
- function typeprop(type, value) {
- if (type == "variable" || cx.style == "keyword") {
- cx.marked = "property"
- return cont(typeprop)
- } else if (value == "?" || type == "number" || type == "string") {
- return cont(typeprop)
- } else if (type == ":") {
- return cont(typeexpr)
- } else if (type == "[") {
- return cont(expect("variable"), maybetypeOrIn, expect("]"), typeprop)
- } else if (type == "(") {
- return pass(functiondecl, typeprop)
- }
- }
- function typearg(type, value) {
- if (type == "variable" && cx.stream.match(/^\s*[?:]/, false) || value == "?") return cont(typearg)
- if (type == ":") return cont(typeexpr)
- if (type == "spread") return cont(typearg)
- return pass(typeexpr)
- }
- function afterType(type, value) {
- if (value == "<") return cont(pushlex(">"), commasep(typeexpr, ">"), poplex, afterType)
- if (value == "|" || type == "." || value == "&") return cont(typeexpr)
- if (type == "[") return cont(typeexpr, expect("]"), afterType)
- if (value == "extends" || value == "implements") { cx.marked = "keyword"; return cont(typeexpr) }
- if (value == "?") return cont(typeexpr, expect(":"), typeexpr)
- }
- function maybeTypeArgs(_, value) {
- if (value == "<") return cont(pushlex(">"), commasep(typeexpr, ">"), poplex, afterType)
- }
- function typeparam() {
- return pass(typeexpr, maybeTypeDefault)
- }
- function maybeTypeDefault(_, value) {
- if (value == "=") return cont(typeexpr)
- }
- function vardef(_, value) {
- if (value == "enum") {cx.marked = "keyword"; return cont(enumdef)}
- return pass(pattern, maybetype, maybeAssign, vardefCont);
- }
- function pattern(type, value) {
- if (isTS && isModifier(value)) { cx.marked = "keyword"; return cont(pattern) }
- if (type == "variable") { register(value); return cont(); }
- if (type == "spread") return cont(pattern);
- if (type == "[") return contCommasep(eltpattern, "]");
- if (type == "{") return contCommasep(proppattern, "}");
- }
- function proppattern(type, value) {
- if (type == "variable" && !cx.stream.match(/^\s*:/, false)) {
- register(value);
- return cont(maybeAssign);
- }
- if (type == "variable") cx.marked = "property";
- if (type == "spread") return cont(pattern);
- if (type == "}") return pass();
- if (type == "[") return cont(expression, expect(']'), expect(':'), proppattern);
- return cont(expect(":"), pattern, maybeAssign);
- }
- function eltpattern() {
- return pass(pattern, maybeAssign)
- }
- function maybeAssign(_type, value) {
- if (value == "=") return cont(expressionNoComma);
- }
- function vardefCont(type) {
- if (type == ",") return cont(vardef);
- }
- function maybeelse(type, value) {
- if (type == "keyword b" && value == "else") return cont(pushlex("form", "else"), statement, poplex);
- }
- function forspec(type, value) {
- if (value == "await") return cont(forspec);
- if (type == "(") return cont(pushlex(")"), forspec1, poplex);
- }
- function forspec1(type) {
- if (type == "var") return cont(vardef, forspec2);
- if (type == "variable") return cont(forspec2);
- return pass(forspec2)
- }
- function forspec2(type, value) {
- if (type == ")") return cont()
- if (type == ";") return cont(forspec2)
- if (value == "in" || value == "of") { cx.marked = "keyword"; return cont(expression, forspec2) }
- return pass(expression, forspec2)
- }
- function functiondef(type, value) {
- if (value == "*") {cx.marked = "keyword"; return cont(functiondef);}
- if (type == "variable") {register(value); return cont(functiondef);}
- if (type == "(") return cont(pushcontext, pushlex(")"), commasep(funarg, ")"), poplex, mayberettype, statement, popcontext);
- if (isTS && value == "<") return cont(pushlex(">"), commasep(typeparam, ">"), poplex, functiondef)
- }
- function functiondecl(type, value) {
- if (value == "*") {cx.marked = "keyword"; return cont(functiondecl);}
- if (type == "variable") {register(value); return cont(functiondecl);}
- if (type == "(") return cont(pushcontext, pushlex(")"), commasep(funarg, ")"), poplex, mayberettype, popcontext);
- if (isTS && value == "<") return cont(pushlex(">"), commasep(typeparam, ">"), poplex, functiondecl)
- }
- function typename(type, value) {
- if (type == "keyword" || type == "variable") {
- cx.marked = "type"
- return cont(typename)
- } else if (value == "<") {
- return cont(pushlex(">"), commasep(typeparam, ">"), poplex)
- }
- }
- function funarg(type, value) {
- if (value == "@") cont(expression, funarg)
- if (type == "spread") return cont(funarg);
- if (isTS && isModifier(value)) { cx.marked = "keyword"; return cont(funarg); }
- if (isTS && type == "this") return cont(maybetype, maybeAssign)
- return pass(pattern, maybetype, maybeAssign);
- }
- function classExpression(type, value) {
- // Class expressions may have an optional name.
- if (type == "variable") return className(type, value);
- return classNameAfter(type, value);
- }
- function className(type, value) {
- if (type == "variable") {register(value); return cont(classNameAfter);}
- }
- function classNameAfter(type, value) {
- if (value == "<") return cont(pushlex(">"), commasep(typeparam, ">"), poplex, classNameAfter)
- if (value == "extends" || value == "implements" || (isTS && type == ",")) {
- if (value == "implements") cx.marked = "keyword";
- return cont(isTS ? typeexpr : expression, classNameAfter);
- }
- if (type == "{") return cont(pushlex("}"), classBody, poplex);
- }
- function classBody(type, value) {
- if (type == "async" ||
- (type == "variable" &&
- (value == "static" || value == "get" || value == "set" || (isTS && isModifier(value))) &&
- cx.stream.match(/^\s+[\w$\xa1-\uffff]/, false))) {
- cx.marked = "keyword";
- return cont(classBody);
- }
- if (type == "variable" || cx.style == "keyword") {
- cx.marked = "property";
- return cont(isTS ? classfield : functiondef, classBody);
- }
- if (type == "number" || type == "string") return cont(isTS ? classfield : functiondef, classBody);
- if (type == "[")
- return cont(expression, maybetype, expect("]"), isTS ? classfield : functiondef, classBody)
- if (value == "*") {
- cx.marked = "keyword";
- return cont(classBody);
- }
- if (isTS && type == "(") return pass(functiondecl, classBody)
- if (type == ";" || type == ",") return cont(classBody);
- if (type == "}") return cont();
- if (value == "@") return cont(expression, classBody)
- }
- function classfield(type, value) {
- if (value == "?") return cont(classfield)
- if (type == ":") return cont(typeexpr, maybeAssign)
- if (value == "=") return cont(expressionNoComma)
- var context = cx.state.lexical.prev, isInterface = context && context.info == "interface"
- return pass(isInterface ? functiondecl : functiondef)
- }
- function afterExport(type, value) {
- if (value == "*") { cx.marked = "keyword"; return cont(maybeFrom, expect(";")); }
- if (value == "default") { cx.marked = "keyword"; return cont(expression, expect(";")); }
- if (type == "{") return cont(commasep(exportField, "}"), maybeFrom, expect(";"));
- return pass(statement);
- }
- function exportField(type, value) {
- if (value == "as") { cx.marked = "keyword"; return cont(expect("variable")); }
- if (type == "variable") return pass(expressionNoComma, exportField);
- }
- function afterImport(type) {
- if (type == "string") return cont();
- if (type == "(") return pass(expression);
- return pass(importSpec, maybeMoreImports, maybeFrom);
- }
- function importSpec(type, value) {
- if (type == "{") return contCommasep(importSpec, "}");
- if (type == "variable") register(value);
- if (value == "*") cx.marked = "keyword";
- return cont(maybeAs);
- }
- function maybeMoreImports(type) {
- if (type == ",") return cont(importSpec, maybeMoreImports)
- }
- function maybeAs(_type, value) {
- if (value == "as") { cx.marked = "keyword"; return cont(importSpec); }
- }
- function maybeFrom(_type, value) {
- if (value == "from") { cx.marked = "keyword"; return cont(expression); }
- }
- function arrayLiteral(type) {
- if (type == "]") return cont();
- return pass(commasep(expressionNoComma, "]"));
- }
- function enumdef() {
- return pass(pushlex("form"), pattern, expect("{"), pushlex("}"), commasep(enummember, "}"), poplex, poplex)
- }
- function enummember() {
- return pass(pattern, maybeAssign);
- }
-
- function isContinuedStatement(state, textAfter) {
- return state.lastType == "operator" || state.lastType == "," ||
- isOperatorChar.test(textAfter.charAt(0)) ||
- /[,.]/.test(textAfter.charAt(0));
- }
-
- function expressionAllowed(stream, state, backUp) {
- return state.tokenize == tokenBase &&
- /^(?:operator|sof|keyword [bcd]|case|new|export|default|spread|[\[{}\(,;:]|=>)$/.test(state.lastType) ||
- (state.lastType == "quasi" && /\{\s*$/.test(stream.string.slice(0, stream.pos - (backUp || 0))))
- }
-
- // Interface
-
- return {
- startState: function(basecolumn) {
- var state = {
- tokenize: tokenBase,
- lastType: "sof",
- cc: [],
- lexical: new JSLexical((basecolumn || 0) - indentUnit, 0, "block", false),
- localVars: parserConfig.localVars,
- context: parserConfig.localVars && new Context(null, null, false),
- indented: basecolumn || 0
- };
- if (parserConfig.globalVars && typeof parserConfig.globalVars == "object")
- state.globalVars = parserConfig.globalVars;
- return state;
- },
-
- token: function(stream, state) {
- if (stream.sol()) {
- if (!state.lexical.hasOwnProperty("align"))
- state.lexical.align = false;
- state.indented = stream.indentation();
- findFatArrow(stream, state);
- }
- if (state.tokenize != tokenComment && stream.eatSpace()) return null;
- var style = state.tokenize(stream, state);
- if (type == "comment") return style;
- state.lastType = type == "operator" && (content == "++" || content == "--") ? "incdec" : type;
- return parseJS(state, style, type, content, stream);
- },
-
- indent: function(state, textAfter) {
- if (state.tokenize == tokenComment) return CodeMirror.Pass;
- if (state.tokenize != tokenBase) return 0;
- var firstChar = textAfter && textAfter.charAt(0), lexical = state.lexical, top
- // Kludge to prevent 'maybelse' from blocking lexical scope pops
- if (!/^\s*else\b/.test(textAfter)) for (var i = state.cc.length - 1; i >= 0; --i) {
- var c = state.cc[i];
- if (c == poplex) lexical = lexical.prev;
- else if (c != maybeelse) break;
- }
- while ((lexical.type == "stat" || lexical.type == "form") &&
- (firstChar == "}" || ((top = state.cc[state.cc.length - 1]) &&
- (top == maybeoperatorComma || top == maybeoperatorNoComma) &&
- !/^[,\.=+\-*:?[\(]/.test(textAfter))))
- lexical = lexical.prev;
- if (statementIndent && lexical.type == ")" && lexical.prev.type == "stat")
- lexical = lexical.prev;
- var type = lexical.type, closing = firstChar == type;
-
- if (type == "vardef") return lexical.indented + (state.lastType == "operator" || state.lastType == "," ? lexical.info.length + 1 : 0);
- else if (type == "form" && firstChar == "{") return lexical.indented;
- else if (type == "form") return lexical.indented + indentUnit;
- else if (type == "stat")
- return lexical.indented + (isContinuedStatement(state, textAfter) ? statementIndent || indentUnit : 0);
- else if (lexical.info == "switch" && !closing && parserConfig.doubleIndentSwitch != false)
- return lexical.indented + (/^(?:case|default)\b/.test(textAfter) ? indentUnit : 2 * indentUnit);
- else if (lexical.align) return lexical.column + (closing ? 0 : 1);
- else return lexical.indented + (closing ? 0 : indentUnit);
- },
-
- electricInput: /^\s*(?:case .*?:|default:|\{|\})$/,
- blockCommentStart: jsonMode ? null : "/*",
- blockCommentEnd: jsonMode ? null : "*/",
- blockCommentContinue: jsonMode ? null : " * ",
- lineComment: jsonMode ? null : "//",
- fold: "brace",
- closeBrackets: "()[]{}''\"\"``",
-
- helperType: jsonMode ? "json" : "javascript",
- jsonldMode: jsonldMode,
- jsonMode: jsonMode,
-
- expressionAllowed: expressionAllowed,
-
- skipExpression: function(state) {
- var top = state.cc[state.cc.length - 1]
- if (top == expression || top == expressionNoComma) state.cc.pop()
- }
- };
- });
-
- CodeMirror.registerHelper("wordChars", "javascript", /[\w$]/);
-
- CodeMirror.defineMIME("text/javascript", "javascript");
- CodeMirror.defineMIME("text/ecmascript", "javascript");
- CodeMirror.defineMIME("application/javascript", "javascript");
- CodeMirror.defineMIME("application/x-javascript", "javascript");
- CodeMirror.defineMIME("application/ecmascript", "javascript");
- CodeMirror.defineMIME("application/json", {name: "javascript", json: true});
- CodeMirror.defineMIME("application/x-json", {name: "javascript", json: true});
- CodeMirror.defineMIME("application/ld+json", {name: "javascript", jsonld: true});
- CodeMirror.defineMIME("text/typescript", { name: "javascript", typescript: true });
- CodeMirror.defineMIME("application/typescript", { name: "javascript", typescript: true });
-
- });
-
-
- /***/ }),
-
- /***/ 4625:
- /***/ (function(module, exports, __webpack_require__) {
-
- // CodeMirror, copyright (c) by Marijn Haverbeke and others
- // Distributed under an MIT license: https://codemirror.net/LICENSE
-
- (function(mod) {
- if (true) // CommonJS
- mod(__webpack_require__(2432));
- else if (typeof define == "function" && define.amd) // AMD
- define(["../../lib/codemirror"], mod);
- else // Plain browser env
- mod(CodeMirror);
- })(function(CodeMirror) {
- "use strict";
-
- function Context(indented, column, type, info, align, prev) {
- this.indented = indented;
- this.column = column;
- this.type = type;
- this.info = info;
- this.align = align;
- this.prev = prev;
- }
- function pushContext(state, col, type, info) {
- var indent = state.indented;
- if (state.context && state.context.type == "statement" && type != "statement")
- indent = state.context.indented;
- return state.context = new Context(indent, col, type, info, null, state.context);
- }
- function popContext(state) {
- var t = state.context.type;
- if (t == ")" || t == "]" || t == "}")
- state.indented = state.context.indented;
- return state.context = state.context.prev;
- }
-
- function typeBefore(stream, state, pos) {
- if (state.prevToken == "variable" || state.prevToken == "type") return true;
- if (/\S(?:[^- ]>|[*\]])\s*$|\*$/.test(stream.string.slice(0, pos))) return true;
- if (state.typeAtEndOfLine && stream.column() == stream.indentation()) return true;
- }
-
- function isTopScope(context) {
- for (;;) {
- if (!context || context.type == "top") return true;
- if (context.type == "}" && context.prev.info != "namespace") return false;
- context = context.prev;
- }
- }
-
- CodeMirror.defineMode("clike", function(config, parserConfig) {
- var indentUnit = config.indentUnit,
- statementIndentUnit = parserConfig.statementIndentUnit || indentUnit,
- dontAlignCalls = parserConfig.dontAlignCalls,
- keywords = parserConfig.keywords || {},
- types = parserConfig.types || {},
- builtin = parserConfig.builtin || {},
- blockKeywords = parserConfig.blockKeywords || {},
- defKeywords = parserConfig.defKeywords || {},
- atoms = parserConfig.atoms || {},
- hooks = parserConfig.hooks || {},
- multiLineStrings = parserConfig.multiLineStrings,
- indentStatements = parserConfig.indentStatements !== false,
- indentSwitch = parserConfig.indentSwitch !== false,
- namespaceSeparator = parserConfig.namespaceSeparator,
- isPunctuationChar = parserConfig.isPunctuationChar || /[\[\]{}\(\),;\:\.]/,
- numberStart = parserConfig.numberStart || /[\d\.]/,
- number = parserConfig.number || /^(?:0x[a-f\d]+|0b[01]+|(?:\d+\.?\d*|\.\d+)(?:e[-+]?\d+)?)(u|ll?|l|f)?/i,
- isOperatorChar = parserConfig.isOperatorChar || /[+\-*&%=<>!?|\/]/,
- isIdentifierChar = parserConfig.isIdentifierChar || /[\w\$_\xa1-\uffff]/,
- // An optional function that takes a {string} token and returns true if it
- // should be treated as a builtin.
- isReservedIdentifier = parserConfig.isReservedIdentifier || false;
-
- var curPunc, isDefKeyword;
-
- function tokenBase(stream, state) {
- var ch = stream.next();
- if (hooks[ch]) {
- var result = hooks[ch](stream, state);
- if (result !== false) return result;
- }
- if (ch == '"' || ch == "'") {
- state.tokenize = tokenString(ch);
- return state.tokenize(stream, state);
- }
- if (isPunctuationChar.test(ch)) {
- curPunc = ch;
- return null;
- }
- if (numberStart.test(ch)) {
- stream.backUp(1)
- if (stream.match(number)) return "number"
- stream.next()
- }
- if (ch == "/") {
- if (stream.eat("*")) {
- state.tokenize = tokenComment;
- return tokenComment(stream, state);
- }
- if (stream.eat("/")) {
- stream.skipToEnd();
- return "comment";
- }
- }
- if (isOperatorChar.test(ch)) {
- while (!stream.match(/^\/[\/*]/, false) && stream.eat(isOperatorChar)) {}
- return "operator";
- }
- stream.eatWhile(isIdentifierChar);
- if (namespaceSeparator) while (stream.match(namespaceSeparator))
- stream.eatWhile(isIdentifierChar);
-
- var cur = stream.current();
- if (contains(keywords, cur)) {
- if (contains(blockKeywords, cur)) curPunc = "newstatement";
- if (contains(defKeywords, cur)) isDefKeyword = true;
- return "keyword";
- }
- if (contains(types, cur)) return "type";
- if (contains(builtin, cur)
- || (isReservedIdentifier && isReservedIdentifier(cur))) {
- if (contains(blockKeywords, cur)) curPunc = "newstatement";
- return "builtin";
- }
- if (contains(atoms, cur)) return "atom";
- return "variable";
- }
-
- function tokenString(quote) {
- return function(stream, state) {
- var escaped = false, next, end = false;
- while ((next = stream.next()) != null) {
- if (next == quote && !escaped) {end = true; break;}
- escaped = !escaped && next == "\\";
- }
- if (end || !(escaped || multiLineStrings))
- state.tokenize = null;
- return "string";
- };
- }
-
- function tokenComment(stream, state) {
- var maybeEnd = false, ch;
- while (ch = stream.next()) {
- if (ch == "/" && maybeEnd) {
- state.tokenize = null;
- break;
- }
- maybeEnd = (ch == "*");
- }
- return "comment";
- }
-
- function maybeEOL(stream, state) {
- if (parserConfig.typeFirstDefinitions && stream.eol() && isTopScope(state.context))
- state.typeAtEndOfLine = typeBefore(stream, state, stream.pos)
- }
-
- // Interface
-
- return {
- startState: function(basecolumn) {
- return {
- tokenize: null,
- context: new Context((basecolumn || 0) - indentUnit, 0, "top", null, false),
- indented: 0,
- startOfLine: true,
- prevToken: null
- };
- },
-
- token: function(stream, state) {
- var ctx = state.context;
- if (stream.sol()) {
- if (ctx.align == null) ctx.align = false;
- state.indented = stream.indentation();
- state.startOfLine = true;
- }
- if (stream.eatSpace()) { maybeEOL(stream, state); return null; }
- curPunc = isDefKeyword = null;
- var style = (state.tokenize || tokenBase)(stream, state);
- if (style == "comment" || style == "meta") return style;
- if (ctx.align == null) ctx.align = true;
-
- if (curPunc == ";" || curPunc == ":" || (curPunc == "," && stream.match(/^\s*(?:\/\/.*)?$/, false)))
- while (state.context.type == "statement") popContext(state);
- else if (curPunc == "{") pushContext(state, stream.column(), "}");
- else if (curPunc == "[") pushContext(state, stream.column(), "]");
- else if (curPunc == "(") pushContext(state, stream.column(), ")");
- else if (curPunc == "}") {
- while (ctx.type == "statement") ctx = popContext(state);
- if (ctx.type == "}") ctx = popContext(state);
- while (ctx.type == "statement") ctx = popContext(state);
- }
- else if (curPunc == ctx.type) popContext(state);
- else if (indentStatements &&
- (((ctx.type == "}" || ctx.type == "top") && curPunc != ";") ||
- (ctx.type == "statement" && curPunc == "newstatement"))) {
- pushContext(state, stream.column(), "statement", stream.current());
- }
-
- if (style == "variable" &&
- ((state.prevToken == "def" ||
- (parserConfig.typeFirstDefinitions && typeBefore(stream, state, stream.start) &&
- isTopScope(state.context) && stream.match(/^\s*\(/, false)))))
- style = "def";
-
- if (hooks.token) {
- var result = hooks.token(stream, state, style);
- if (result !== undefined) style = result;
- }
-
- if (style == "def" && parserConfig.styleDefs === false) style = "variable";
-
- state.startOfLine = false;
- state.prevToken = isDefKeyword ? "def" : style || curPunc;
- maybeEOL(stream, state);
- return style;
- },
-
- indent: function(state, textAfter) {
- if (state.tokenize != tokenBase && state.tokenize != null || state.typeAtEndOfLine) return CodeMirror.Pass;
- var ctx = state.context, firstChar = textAfter && textAfter.charAt(0);
- var closing = firstChar == ctx.type;
- if (ctx.type == "statement" && firstChar == "}") ctx = ctx.prev;
- if (parserConfig.dontIndentStatements)
- while (ctx.type == "statement" && parserConfig.dontIndentStatements.test(ctx.info))
- ctx = ctx.prev
- if (hooks.indent) {
- var hook = hooks.indent(state, ctx, textAfter, indentUnit);
- if (typeof hook == "number") return hook
- }
- var switchBlock = ctx.prev && ctx.prev.info == "switch";
- if (parserConfig.allmanIndentation && /[{(]/.test(firstChar)) {
- while (ctx.type != "top" && ctx.type != "}") ctx = ctx.prev
- return ctx.indented
- }
- if (ctx.type == "statement")
- return ctx.indented + (firstChar == "{" ? 0 : statementIndentUnit);
- if (ctx.align && (!dontAlignCalls || ctx.type != ")"))
- return ctx.column + (closing ? 0 : 1);
- if (ctx.type == ")" && !closing)
- return ctx.indented + statementIndentUnit;
-
- return ctx.indented + (closing ? 0 : indentUnit) +
- (!closing && switchBlock && !/^(?:case|default)\b/.test(textAfter) ? indentUnit : 0);
- },
-
- electricInput: indentSwitch ? /^\s*(?:case .*?:|default:|\{\}?|\})$/ : /^\s*[{}]$/,
- blockCommentStart: "/*",
- blockCommentEnd: "*/",
- blockCommentContinue: " * ",
- lineComment: "//",
- fold: "brace"
- };
- });
-
- function words(str) {
- var obj = {}, words = str.split(" ");
- for (var i = 0; i < words.length; ++i) obj[words[i]] = true;
- return obj;
- }
- function contains(words, word) {
- if (typeof words === "function") {
- return words(word);
- } else {
- return words.propertyIsEnumerable(word);
- }
- }
- var cKeywords = "auto if break case register continue return default do sizeof " +
- "static else struct switch extern typedef union for goto while enum const " +
- "volatile inline restrict asm fortran";
-
- // Keywords from https://en.cppreference.com/w/cpp/keyword includes C++20.
- var cppKeywords = "alignas alignof and and_eq audit axiom bitand bitor catch " +
- "class compl concept constexpr const_cast decltype delete dynamic_cast " +
- "explicit export final friend import module mutable namespace new noexcept " +
- "not not_eq operator or or_eq override private protected public " +
- "reinterpret_cast requires static_assert static_cast template this " +
- "thread_local throw try typeid typename using virtual xor xor_eq";
-
- var objCKeywords = "bycopy byref in inout oneway out self super atomic nonatomic retain copy " +
- "readwrite readonly strong weak assign typeof nullable nonnull null_resettable _cmd " +
- "@interface @implementation @end @protocol @encode @property @synthesize @dynamic @class " +
- "@public @package @private @protected @required @optional @try @catch @finally @import " +
- "@selector @encode @defs @synchronized @autoreleasepool @compatibility_alias @available";
-
- var objCBuiltins = "FOUNDATION_EXPORT FOUNDATION_EXTERN NS_INLINE NS_FORMAT_FUNCTION " +
- " NS_RETURNS_RETAINEDNS_ERROR_ENUM NS_RETURNS_NOT_RETAINED NS_RETURNS_INNER_POINTER " +
- "NS_DESIGNATED_INITIALIZER NS_ENUM NS_OPTIONS NS_REQUIRES_NIL_TERMINATION " +
- "NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_END NS_SWIFT_NAME NS_REFINED_FOR_SWIFT"
-
- // Do not use this. Use the cTypes function below. This is global just to avoid
- // excessive calls when cTypes is being called multiple times during a parse.
- var basicCTypes = words("int long char short double float unsigned signed " +
- "void bool");
-
- // Do not use this. Use the objCTypes function below. This is global just to avoid
- // excessive calls when objCTypes is being called multiple times during a parse.
- var basicObjCTypes = words("SEL instancetype id Class Protocol BOOL");
-
- // Returns true if identifier is a "C" type.
- // C type is defined as those that are reserved by the compiler (basicTypes),
- // and those that end in _t (Reserved by POSIX for types)
- // http://www.gnu.org/software/libc/manual/html_node/Reserved-Names.html
- function cTypes(identifier) {
- return contains(basicCTypes, identifier) || /.+_t$/.test(identifier);
- }
-
- // Returns true if identifier is a "Objective C" type.
- function objCTypes(identifier) {
- return cTypes(identifier) || contains(basicObjCTypes, identifier);
- }
-
- var cBlockKeywords = "case do else for if switch while struct enum union";
- var cDefKeywords = "struct enum union";
-
- function cppHook(stream, state) {
- if (!state.startOfLine) return false
- for (var ch, next = null; ch = stream.peek();) {
- if (ch == "\\" && stream.match(/^.$/)) {
- next = cppHook
- break
- } else if (ch == "/" && stream.match(/^\/[\/\*]/, false)) {
- break
- }
- stream.next()
- }
- state.tokenize = next
- return "meta"
- }
-
- function pointerHook(_stream, state) {
- if (state.prevToken == "type") return "type";
- return false;
- }
-
- // For C and C++ (and ObjC): identifiers starting with __
- // or _ followed by a capital letter are reserved for the compiler.
- function cIsReservedIdentifier(token) {
- if (!token || token.length < 2) return false;
- if (token[0] != '_') return false;
- return (token[1] == '_') || (token[1] !== token[1].toLowerCase());
- }
-
- function cpp14Literal(stream) {
- stream.eatWhile(/[\w\.']/);
- return "number";
- }
-
- function cpp11StringHook(stream, state) {
- stream.backUp(1);
- // Raw strings.
- if (stream.match(/(R|u8R|uR|UR|LR)/)) {
- var match = stream.match(/"([^\s\\()]{0,16})\(/);
- if (!match) {
- return false;
- }
- state.cpp11RawStringDelim = match[1];
- state.tokenize = tokenRawString;
- return tokenRawString(stream, state);
- }
- // Unicode strings/chars.
- if (stream.match(/(u8|u|U|L)/)) {
- if (stream.match(/["']/, /* eat */ false)) {
- return "string";
- }
- return false;
- }
- // Ignore this hook.
- stream.next();
- return false;
- }
-
- function cppLooksLikeConstructor(word) {
- var lastTwo = /(\w+)::~?(\w+)$/.exec(word);
- return lastTwo && lastTwo[1] == lastTwo[2];
- }
-
- // C#-style strings where "" escapes a quote.
- function tokenAtString(stream, state) {
- var next;
- while ((next = stream.next()) != null) {
- if (next == '"' && !stream.eat('"')) {
- state.tokenize = null;
- break;
- }
- }
- return "string";
- }
-
- // C++11 raw string literal is <prefix>"<delim>( anything )<delim>", where
- // <delim> can be a string up to 16 characters long.
- function tokenRawString(stream, state) {
- // Escape characters that have special regex meanings.
- var delim = state.cpp11RawStringDelim.replace(/[^\w\s]/g, '\\$&');
- var match = stream.match(new RegExp(".*?\\)" + delim + '"'));
- if (match)
- state.tokenize = null;
- else
- stream.skipToEnd();
- return "string";
- }
-
- function def(mimes, mode) {
- if (typeof mimes == "string") mimes = [mimes];
- var words = [];
- function add(obj) {
- if (obj) for (var prop in obj) if (obj.hasOwnProperty(prop))
- words.push(prop);
- }
- add(mode.keywords);
- add(mode.types);
- add(mode.builtin);
- add(mode.atoms);
- if (words.length) {
- mode.helperType = mimes[0];
- CodeMirror.registerHelper("hintWords", mimes[0], words);
- }
-
- for (var i = 0; i < mimes.length; ++i)
- CodeMirror.defineMIME(mimes[i], mode);
- }
-
- def(["text/x-csrc", "text/x-c", "text/x-chdr"], {
- name: "clike",
- keywords: words(cKeywords),
- types: cTypes,
- blockKeywords: words(cBlockKeywords),
- defKeywords: words(cDefKeywords),
- typeFirstDefinitions: true,
- atoms: words("NULL true false"),
- isReservedIdentifier: cIsReservedIdentifier,
- hooks: {
- "#": cppHook,
- "*": pointerHook,
- },
- modeProps: {fold: ["brace", "include"]}
- });
-
- def(["text/x-c++src", "text/x-c++hdr"], {
- name: "clike",
- keywords: words(cKeywords + " " + cppKeywords),
- types: cTypes,
- blockKeywords: words(cBlockKeywords + " class try catch"),
- defKeywords: words(cDefKeywords + " class namespace"),
- typeFirstDefinitions: true,
- atoms: words("true false NULL nullptr"),
- dontIndentStatements: /^template$/,
- isIdentifierChar: /[\w\$_~\xa1-\uffff]/,
- isReservedIdentifier: cIsReservedIdentifier,
- hooks: {
- "#": cppHook,
- "*": pointerHook,
- "u": cpp11StringHook,
- "U": cpp11StringHook,
- "L": cpp11StringHook,
- "R": cpp11StringHook,
- "0": cpp14Literal,
- "1": cpp14Literal,
- "2": cpp14Literal,
- "3": cpp14Literal,
- "4": cpp14Literal,
- "5": cpp14Literal,
- "6": cpp14Literal,
- "7": cpp14Literal,
- "8": cpp14Literal,
- "9": cpp14Literal,
- token: function(stream, state, style) {
- if (style == "variable" && stream.peek() == "(" &&
- (state.prevToken == ";" || state.prevToken == null ||
- state.prevToken == "}") &&
- cppLooksLikeConstructor(stream.current()))
- return "def";
- }
- },
- namespaceSeparator: "::",
- modeProps: {fold: ["brace", "include"]}
- });
-
- def("text/x-java", {
- name: "clike",
- keywords: words("abstract assert break case catch class const continue default " +
- "do else enum extends final finally for goto if implements import " +
- "instanceof interface native new package private protected public " +
- "return static strictfp super switch synchronized this throw throws transient " +
- "try volatile while @interface"),
- types: words("byte short int long float double boolean char void Boolean Byte Character Double Float " +
- "Integer Long Number Object Short String StringBuffer StringBuilder Void"),
- blockKeywords: words("catch class do else finally for if switch try while"),
- defKeywords: words("class interface enum @interface"),
- typeFirstDefinitions: true,
- atoms: words("true false null"),
- number: /^(?:0x[a-f\d_]+|0b[01_]+|(?:[\d_]+\.?\d*|\.\d+)(?:e[-+]?[\d_]+)?)(u|ll?|l|f)?/i,
- hooks: {
- "@": function(stream) {
- // Don't match the @interface keyword.
- if (stream.match('interface', false)) return false;
-
- stream.eatWhile(/[\w\$_]/);
- return "meta";
- }
- },
- modeProps: {fold: ["brace", "import"]}
- });
-
- def("text/x-csharp", {
- name: "clike",
- keywords: words("abstract as async await base break case catch checked class const continue" +
- " default delegate do else enum event explicit extern finally fixed for" +
- " foreach goto if implicit in interface internal is lock namespace new" +
- " operator out override params private protected public readonly ref return sealed" +
- " sizeof stackalloc static struct switch this throw try typeof unchecked" +
- " unsafe using virtual void volatile while add alias ascending descending dynamic from get" +
- " global group into join let orderby partial remove select set value var yield"),
- types: words("Action Boolean Byte Char DateTime DateTimeOffset Decimal Double Func" +
- " Guid Int16 Int32 Int64 Object SByte Single String Task TimeSpan UInt16 UInt32" +
- " UInt64 bool byte char decimal double short int long object" +
- " sbyte float string ushort uint ulong"),
- blockKeywords: words("catch class do else finally for foreach if struct switch try while"),
- defKeywords: words("class interface namespace struct var"),
- typeFirstDefinitions: true,
- atoms: words("true false null"),
- hooks: {
- "@": function(stream, state) {
- if (stream.eat('"')) {
- state.tokenize = tokenAtString;
- return tokenAtString(stream, state);
- }
- stream.eatWhile(/[\w\$_]/);
- return "meta";
- }
- }
- });
-
- function tokenTripleString(stream, state) {
- var escaped = false;
- while (!stream.eol()) {
- if (!escaped && stream.match('"""')) {
- state.tokenize = null;
- break;
- }
- escaped = stream.next() == "\\" && !escaped;
- }
- return "string";
- }
-
- function tokenNestedComment(depth) {
- return function (stream, state) {
- var ch
- while (ch = stream.next()) {
- if (ch == "*" && stream.eat("/")) {
- if (depth == 1) {
- state.tokenize = null
- break
- } else {
- state.tokenize = tokenNestedComment(depth - 1)
- return state.tokenize(stream, state)
- }
- } else if (ch == "/" && stream.eat("*")) {
- state.tokenize = tokenNestedComment(depth + 1)
- return state.tokenize(stream, state)
- }
- }
- return "comment"
- }
- }
-
- def("text/x-scala", {
- name: "clike",
- keywords: words(
- /* scala */
- "abstract case catch class def do else extends final finally for forSome if " +
- "implicit import lazy match new null object override package private protected return " +
- "sealed super this throw trait try type val var while with yield _ " +
-
- /* package scala */
- "assert assume require print println printf readLine readBoolean readByte readShort " +
- "readChar readInt readLong readFloat readDouble"
- ),
- types: words(
- "AnyVal App Application Array BufferedIterator BigDecimal BigInt Char Console Either " +
- "Enumeration Equiv Error Exception Fractional Function IndexedSeq Int Integral Iterable " +
- "Iterator List Map Numeric Nil NotNull Option Ordered Ordering PartialFunction PartialOrdering " +
- "Product Proxy Range Responder Seq Serializable Set Specializable Stream StringBuilder " +
- "StringContext Symbol Throwable Traversable TraversableOnce Tuple Unit Vector " +
-
- /* package java.lang */
- "Boolean Byte Character CharSequence Class ClassLoader Cloneable Comparable " +
- "Compiler Double Exception Float Integer Long Math Number Object Package Pair Process " +
- "Runtime Runnable SecurityManager Short StackTraceElement StrictMath String " +
- "StringBuffer System Thread ThreadGroup ThreadLocal Throwable Triple Void"
- ),
- multiLineStrings: true,
- blockKeywords: words("catch class enum do else finally for forSome if match switch try while"),
- defKeywords: words("class enum def object package trait type val var"),
- atoms: words("true false null"),
- indentStatements: false,
- indentSwitch: false,
- isOperatorChar: /[+\-*&%=<>!?|\/#:@]/,
- hooks: {
- "@": function(stream) {
- stream.eatWhile(/[\w\$_]/);
- return "meta";
- },
- '"': function(stream, state) {
- if (!stream.match('""')) return false;
- state.tokenize = tokenTripleString;
- return state.tokenize(stream, state);
- },
- "'": function(stream) {
- stream.eatWhile(/[\w\$_\xa1-\uffff]/);
- return "atom";
- },
- "=": function(stream, state) {
- var cx = state.context
- if (cx.type == "}" && cx.align && stream.eat(">")) {
- state.context = new Context(cx.indented, cx.column, cx.type, cx.info, null, cx.prev)
- return "operator"
- } else {
- return false
- }
- },
-
- "/": function(stream, state) {
- if (!stream.eat("*")) return false
- state.tokenize = tokenNestedComment(1)
- return state.tokenize(stream, state)
- }
- },
- modeProps: {closeBrackets: {pairs: '()[]{}""', triples: '"'}}
- });
-
- function tokenKotlinString(tripleString){
- return function (stream, state) {
- var escaped = false, next, end = false;
- while (!stream.eol()) {
- if (!tripleString && !escaped && stream.match('"') ) {end = true; break;}
- if (tripleString && stream.match('"""')) {end = true; break;}
- next = stream.next();
- if(!escaped && next == "$" && stream.match('{'))
- stream.skipTo("}");
- escaped = !escaped && next == "\\" && !tripleString;
- }
- if (end || !tripleString)
- state.tokenize = null;
- return "string";
- }
- }
-
- def("text/x-kotlin", {
- name: "clike",
- keywords: words(
- /*keywords*/
- "package as typealias class interface this super val operator " +
- "var fun for is in This throw return annotation " +
- "break continue object if else while do try when !in !is as? " +
-
- /*soft keywords*/
- "file import where by get set abstract enum open inner override private public internal " +
- "protected catch finally out final vararg reified dynamic companion constructor init " +
- "sealed field property receiver param sparam lateinit data inline noinline tailrec " +
- "external annotation crossinline const operator infix suspend actual expect setparam"
- ),
- types: words(
- /* package java.lang */
- "Boolean Byte Character CharSequence Class ClassLoader Cloneable Comparable " +
- "Compiler Double Exception Float Integer Long Math Number Object Package Pair Process " +
- "Runtime Runnable SecurityManager Short StackTraceElement StrictMath String " +
- "StringBuffer System Thread ThreadGroup ThreadLocal Throwable Triple Void Annotation Any BooleanArray " +
- "ByteArray Char CharArray DeprecationLevel DoubleArray Enum FloatArray Function Int IntArray Lazy " +
- "LazyThreadSafetyMode LongArray Nothing ShortArray Unit"
- ),
- intendSwitch: false,
- indentStatements: false,
- multiLineStrings: true,
- number: /^(?:0x[a-f\d_]+|0b[01_]+|(?:[\d_]+(\.\d+)?|\.\d+)(?:e[-+]?[\d_]+)?)(u|ll?|l|f)?/i,
- blockKeywords: words("catch class do else finally for if where try while enum"),
- defKeywords: words("class val var object interface fun"),
- atoms: words("true false null this"),
- hooks: {
- "@": function(stream) {
- stream.eatWhile(/[\w\$_]/);
- return "meta";
- },
- '*': function(_stream, state) {
- return state.prevToken == '.' ? 'variable' : 'operator';
- },
- '"': function(stream, state) {
- state.tokenize = tokenKotlinString(stream.match('""'));
- return state.tokenize(stream, state);
- },
- "/": function(stream, state) {
- if (!stream.eat("*")) return false;
- state.tokenize = tokenNestedComment(1);
- return state.tokenize(stream, state)
- },
- indent: function(state, ctx, textAfter, indentUnit) {
- var firstChar = textAfter && textAfter.charAt(0);
- if ((state.prevToken == "}" || state.prevToken == ")") && textAfter == "")
- return state.indented;
- if ((state.prevToken == "operator" && textAfter != "}" && state.context.type != "}") ||
- state.prevToken == "variable" && firstChar == "." ||
- (state.prevToken == "}" || state.prevToken == ")") && firstChar == ".")
- return indentUnit * 2 + ctx.indented;
- if (ctx.align && ctx.type == "}")
- return ctx.indented + (state.context.type == (textAfter || "").charAt(0) ? 0 : indentUnit);
- }
- },
- modeProps: {closeBrackets: {triples: '"'}}
- });
-
- def(["x-shader/x-vertex", "x-shader/x-fragment"], {
- name: "clike",
- keywords: words("sampler1D sampler2D sampler3D samplerCube " +
- "sampler1DShadow sampler2DShadow " +
- "const attribute uniform varying " +
- "break continue discard return " +
- "for while do if else struct " +
- "in out inout"),
- types: words("float int bool void " +
- "vec2 vec3 vec4 ivec2 ivec3 ivec4 bvec2 bvec3 bvec4 " +
- "mat2 mat3 mat4"),
- blockKeywords: words("for while do if else struct"),
- builtin: words("radians degrees sin cos tan asin acos atan " +
- "pow exp log exp2 sqrt inversesqrt " +
- "abs sign floor ceil fract mod min max clamp mix step smoothstep " +
- "length distance dot cross normalize ftransform faceforward " +
- "reflect refract matrixCompMult " +
- "lessThan lessThanEqual greaterThan greaterThanEqual " +
- "equal notEqual any all not " +
- "texture1D texture1DProj texture1DLod texture1DProjLod " +
- "texture2D texture2DProj texture2DLod texture2DProjLod " +
- "texture3D texture3DProj texture3DLod texture3DProjLod " +
- "textureCube textureCubeLod " +
- "shadow1D shadow2D shadow1DProj shadow2DProj " +
- "shadow1DLod shadow2DLod shadow1DProjLod shadow2DProjLod " +
- "dFdx dFdy fwidth " +
- "noise1 noise2 noise3 noise4"),
- atoms: words("true false " +
- "gl_FragColor gl_SecondaryColor gl_Normal gl_Vertex " +
- "gl_MultiTexCoord0 gl_MultiTexCoord1 gl_MultiTexCoord2 gl_MultiTexCoord3 " +
- "gl_MultiTexCoord4 gl_MultiTexCoord5 gl_MultiTexCoord6 gl_MultiTexCoord7 " +
- "gl_FogCoord gl_PointCoord " +
- "gl_Position gl_PointSize gl_ClipVertex " +
- "gl_FrontColor gl_BackColor gl_FrontSecondaryColor gl_BackSecondaryColor " +
- "gl_TexCoord gl_FogFragCoord " +
- "gl_FragCoord gl_FrontFacing " +
- "gl_FragData gl_FragDepth " +
- "gl_ModelViewMatrix gl_ProjectionMatrix gl_ModelViewProjectionMatrix " +
- "gl_TextureMatrix gl_NormalMatrix gl_ModelViewMatrixInverse " +
- "gl_ProjectionMatrixInverse gl_ModelViewProjectionMatrixInverse " +
- "gl_TexureMatrixTranspose gl_ModelViewMatrixInverseTranspose " +
- "gl_ProjectionMatrixInverseTranspose " +
- "gl_ModelViewProjectionMatrixInverseTranspose " +
- "gl_TextureMatrixInverseTranspose " +
- "gl_NormalScale gl_DepthRange gl_ClipPlane " +
- "gl_Point gl_FrontMaterial gl_BackMaterial gl_LightSource gl_LightModel " +
- "gl_FrontLightModelProduct gl_BackLightModelProduct " +
- "gl_TextureColor gl_EyePlaneS gl_EyePlaneT gl_EyePlaneR gl_EyePlaneQ " +
- "gl_FogParameters " +
- "gl_MaxLights gl_MaxClipPlanes gl_MaxTextureUnits gl_MaxTextureCoords " +
- "gl_MaxVertexAttribs gl_MaxVertexUniformComponents gl_MaxVaryingFloats " +
- "gl_MaxVertexTextureImageUnits gl_MaxTextureImageUnits " +
- "gl_MaxFragmentUniformComponents gl_MaxCombineTextureImageUnits " +
- "gl_MaxDrawBuffers"),
- indentSwitch: false,
- hooks: {"#": cppHook},
- modeProps: {fold: ["brace", "include"]}
- });
-
- def("text/x-nesc", {
- name: "clike",
- keywords: words(cKeywords + " as atomic async call command component components configuration event generic " +
- "implementation includes interface module new norace nx_struct nx_union post provides " +
- "signal task uses abstract extends"),
- types: cTypes,
- blockKeywords: words(cBlockKeywords),
- atoms: words("null true false"),
- hooks: {"#": cppHook},
- modeProps: {fold: ["brace", "include"]}
- });
-
- def("text/x-objectivec", {
- name: "clike",
- keywords: words(cKeywords + " " + objCKeywords),
- types: objCTypes,
- builtin: words(objCBuiltins),
- blockKeywords: words(cBlockKeywords + " @synthesize @try @catch @finally @autoreleasepool @synchronized"),
- defKeywords: words(cDefKeywords + " @interface @implementation @protocol @class"),
- dontIndentStatements: /^@.*$/,
- typeFirstDefinitions: true,
- atoms: words("YES NO NULL Nil nil true false nullptr"),
- isReservedIdentifier: cIsReservedIdentifier,
- hooks: {
- "#": cppHook,
- "*": pointerHook,
- },
- modeProps: {fold: ["brace", "include"]}
- });
-
- def("text/x-objectivec++", {
- name: "clike",
- keywords: words(cKeywords + " " + objCKeywords + " " + cppKeywords),
- types: objCTypes,
- builtin: words(objCBuiltins),
- blockKeywords: words(cBlockKeywords + " @synthesize @try @catch @finally @autoreleasepool @synchronized class try catch"),
- defKeywords: words(cDefKeywords + " @interface @implementation @protocol @class class namespace"),
- dontIndentStatements: /^@.*$|^template$/,
- typeFirstDefinitions: true,
- atoms: words("YES NO NULL Nil nil true false nullptr"),
- isReservedIdentifier: cIsReservedIdentifier,
- hooks: {
- "#": cppHook,
- "*": pointerHook,
- "u": cpp11StringHook,
- "U": cpp11StringHook,
- "L": cpp11StringHook,
- "R": cpp11StringHook,
- "0": cpp14Literal,
- "1": cpp14Literal,
- "2": cpp14Literal,
- "3": cpp14Literal,
- "4": cpp14Literal,
- "5": cpp14Literal,
- "6": cpp14Literal,
- "7": cpp14Literal,
- "8": cpp14Literal,
- "9": cpp14Literal,
- token: function(stream, state, style) {
- if (style == "variable" && stream.peek() == "(" &&
- (state.prevToken == ";" || state.prevToken == null ||
- state.prevToken == "}") &&
- cppLooksLikeConstructor(stream.current()))
- return "def";
- }
- },
- namespaceSeparator: "::",
- modeProps: {fold: ["brace", "include"]}
- });
-
- def("text/x-squirrel", {
- name: "clike",
- keywords: words("base break clone continue const default delete enum extends function in class" +
- " foreach local resume return this throw typeof yield constructor instanceof static"),
- types: cTypes,
- blockKeywords: words("case catch class else for foreach if switch try while"),
- defKeywords: words("function local class"),
- typeFirstDefinitions: true,
- atoms: words("true false null"),
- hooks: {"#": cppHook},
- modeProps: {fold: ["brace", "include"]}
- });
-
- // Ceylon Strings need to deal with interpolation
- var stringTokenizer = null;
- function tokenCeylonString(type) {
- return function(stream, state) {
- var escaped = false, next, end = false;
- while (!stream.eol()) {
- if (!escaped && stream.match('"') &&
- (type == "single" || stream.match('""'))) {
- end = true;
- break;
- }
- if (!escaped && stream.match('``')) {
- stringTokenizer = tokenCeylonString(type);
- end = true;
- break;
- }
- next = stream.next();
- escaped = type == "single" && !escaped && next == "\\";
- }
- if (end)
- state.tokenize = null;
- return "string";
- }
- }
-
- def("text/x-ceylon", {
- name: "clike",
- keywords: words("abstracts alias assembly assert assign break case catch class continue dynamic else" +
- " exists extends finally for function given if import in interface is let module new" +
- " nonempty object of out outer package return satisfies super switch then this throw" +
- " try value void while"),
- types: function(word) {
- // In Ceylon all identifiers that start with an uppercase are types
- var first = word.charAt(0);
- return (first === first.toUpperCase() && first !== first.toLowerCase());
- },
- blockKeywords: words("case catch class dynamic else finally for function if interface module new object switch try while"),
- defKeywords: words("class dynamic function interface module object package value"),
- builtin: words("abstract actual aliased annotation by default deprecated doc final formal late license" +
- " native optional sealed see serializable shared suppressWarnings tagged throws variable"),
- isPunctuationChar: /[\[\]{}\(\),;\:\.`]/,
- isOperatorChar: /[+\-*&%=<>!?|^~:\/]/,
- numberStart: /[\d#$]/,
- number: /^(?:#[\da-fA-F_]+|\$[01_]+|[\d_]+[kMGTPmunpf]?|[\d_]+\.[\d_]+(?:[eE][-+]?\d+|[kMGTPmunpf]|)|)/i,
- multiLineStrings: true,
- typeFirstDefinitions: true,
- atoms: words("true false null larger smaller equal empty finished"),
- indentSwitch: false,
- styleDefs: false,
- hooks: {
- "@": function(stream) {
- stream.eatWhile(/[\w\$_]/);
- return "meta";
- },
- '"': function(stream, state) {
- state.tokenize = tokenCeylonString(stream.match('""') ? "triple" : "single");
- return state.tokenize(stream, state);
- },
- '`': function(stream, state) {
- if (!stringTokenizer || !stream.match('`')) return false;
- state.tokenize = stringTokenizer;
- stringTokenizer = null;
- return state.tokenize(stream, state);
- },
- "'": function(stream) {
- stream.eatWhile(/[\w\$_\xa1-\uffff]/);
- return "atom";
- },
- token: function(_stream, state, style) {
- if ((style == "variable" || style == "type") &&
- state.prevToken == ".") {
- return "variable-2";
- }
- }
- },
- modeProps: {
- fold: ["brace", "import"],
- closeBrackets: {triples: '"'}
- }
- });
-
- });
-
-
- /***/ }),
-
- /***/ 864:
- /***/ (function(module, exports) {
-
- /**
- * @module zrender/core/util
- */
- // 用于处理merge时无法遍历Date等对象的问题
- var BUILTIN_OBJECT = {
- '[object Function]': 1,
- '[object RegExp]': 1,
- '[object Date]': 1,
- '[object Error]': 1,
- '[object CanvasGradient]': 1,
- '[object CanvasPattern]': 1,
- // For node-canvas
- '[object Image]': 1,
- '[object Canvas]': 1
- };
- var TYPED_ARRAY = {
- '[object Int8Array]': 1,
- '[object Uint8Array]': 1,
- '[object Uint8ClampedArray]': 1,
- '[object Int16Array]': 1,
- '[object Uint16Array]': 1,
- '[object Int32Array]': 1,
- '[object Uint32Array]': 1,
- '[object Float32Array]': 1,
- '[object Float64Array]': 1
- };
- var objToString = Object.prototype.toString;
- var arrayProto = Array.prototype;
- var nativeForEach = arrayProto.forEach;
- var nativeFilter = arrayProto.filter;
- var nativeSlice = arrayProto.slice;
- var nativeMap = arrayProto.map;
- var nativeReduce = arrayProto.reduce; // Avoid assign to an exported variable, for transforming to cjs.
-
- var methods = {};
-
- function $override(name, fn) {
- // Clear ctx instance for different environment
- if (name === 'createCanvas') {
- _ctx = null;
- }
-
- methods[name] = fn;
- }
- /**
- * Those data types can be cloned:
- * Plain object, Array, TypedArray, number, string, null, undefined.
- * Those data types will be assgined using the orginal data:
- * BUILTIN_OBJECT
- * Instance of user defined class will be cloned to a plain object, without
- * properties in prototype.
- * Other data types is not supported (not sure what will happen).
- *
- * Caution: do not support clone Date, for performance consideration.
- * (There might be a large number of date in `series.data`).
- * So date should not be modified in and out of echarts.
- *
- * @param {*} source
- * @return {*} new
- */
-
-
- function clone(source) {
- if (source == null || typeof source !== 'object') {
- return source;
- }
-
- var result = source;
- var typeStr = objToString.call(source);
-
- if (typeStr === '[object Array]') {
- if (!isPrimitive(source)) {
- result = [];
-
- for (var i = 0, len = source.length; i < len; i++) {
- result[i] = clone(source[i]);
- }
- }
- } else if (TYPED_ARRAY[typeStr]) {
- if (!isPrimitive(source)) {
- var Ctor = source.constructor;
-
- if (source.constructor.from) {
- result = Ctor.from(source);
- } else {
- result = new Ctor(source.length);
-
- for (var i = 0, len = source.length; i < len; i++) {
- result[i] = clone(source[i]);
- }
- }
- }
- } else if (!BUILTIN_OBJECT[typeStr] && !isPrimitive(source) && !isDom(source)) {
- result = {};
-
- for (var key in source) {
- if (source.hasOwnProperty(key)) {
- result[key] = clone(source[key]);
- }
- }
- }
-
- return result;
- }
- /**
- * @memberOf module:zrender/core/util
- * @param {*} target
- * @param {*} source
- * @param {boolean} [overwrite=false]
- */
-
-
- function merge(target, source, overwrite) {
- // We should escapse that source is string
- // and enter for ... in ...
- if (!isObject(source) || !isObject(target)) {
- return overwrite ? clone(source) : target;
- }
-
- for (var key in source) {
- if (source.hasOwnProperty(key)) {
- var targetProp = target[key];
- var sourceProp = source[key];
-
- if (isObject(sourceProp) && isObject(targetProp) && !isArray(sourceProp) && !isArray(targetProp) && !isDom(sourceProp) && !isDom(targetProp) && !isBuiltInObject(sourceProp) && !isBuiltInObject(targetProp) && !isPrimitive(sourceProp) && !isPrimitive(targetProp)) {
- // 如果需要递归覆盖,就递归调用merge
- merge(targetProp, sourceProp, overwrite);
- } else if (overwrite || !(key in target)) {
- // 否则只处理overwrite为true,或者在目标对象中没有此属性的情况
- // NOTE,在 target[key] 不存在的时候也是直接覆盖
- target[key] = clone(source[key], true);
- }
- }
- }
-
- return target;
- }
- /**
- * @param {Array} targetAndSources The first item is target, and the rests are source.
- * @param {boolean} [overwrite=false]
- * @return {*} target
- */
-
-
- function mergeAll(targetAndSources, overwrite) {
- var result = targetAndSources[0];
-
- for (var i = 1, len = targetAndSources.length; i < len; i++) {
- result = merge(result, targetAndSources[i], overwrite);
- }
-
- return result;
- }
- /**
- * @param {*} target
- * @param {*} source
- * @memberOf module:zrender/core/util
- */
-
-
- function extend(target, source) {
- for (var key in source) {
- if (source.hasOwnProperty(key)) {
- target[key] = source[key];
- }
- }
-
- return target;
- }
- /**
- * @param {*} target
- * @param {*} source
- * @param {boolean} [overlay=false]
- * @memberOf module:zrender/core/util
- */
-
-
- function defaults(target, source, overlay) {
- for (var key in source) {
- if (source.hasOwnProperty(key) && (overlay ? source[key] != null : target[key] == null)) {
- target[key] = source[key];
- }
- }
-
- return target;
- }
-
- var createCanvas = function () {
- return methods.createCanvas();
- };
-
- methods.createCanvas = function () {
- return document.createElement('canvas');
- }; // FIXME
-
-
- var _ctx;
-
- function getContext() {
- if (!_ctx) {
- // Use util.createCanvas instead of createCanvas
- // because createCanvas may be overwritten in different environment
- _ctx = createCanvas().getContext('2d');
- }
-
- return _ctx;
- }
- /**
- * 查询数组中元素的index
- * @memberOf module:zrender/core/util
- */
-
-
- function indexOf(array, value) {
- if (array) {
- if (array.indexOf) {
- return array.indexOf(value);
- }
-
- for (var i = 0, len = array.length; i < len; i++) {
- if (array[i] === value) {
- return i;
- }
- }
- }
-
- return -1;
- }
- /**
- * 构造类继承关系
- *
- * @memberOf module:zrender/core/util
- * @param {Function} clazz 源类
- * @param {Function} baseClazz 基类
- */
-
-
- function inherits(clazz, baseClazz) {
- var clazzPrototype = clazz.prototype;
-
- function F() {}
-
- F.prototype = baseClazz.prototype;
- clazz.prototype = new F();
-
- for (var prop in clazzPrototype) {
- if (clazzPrototype.hasOwnProperty(prop)) {
- clazz.prototype[prop] = clazzPrototype[prop];
- }
- }
-
- clazz.prototype.constructor = clazz;
- clazz.superClass = baseClazz;
- }
- /**
- * @memberOf module:zrender/core/util
- * @param {Object|Function} target
- * @param {Object|Function} sorce
- * @param {boolean} overlay
- */
-
-
- function mixin(target, source, overlay) {
- target = 'prototype' in target ? target.prototype : target;
- source = 'prototype' in source ? source.prototype : source;
- defaults(target, source, overlay);
- }
- /**
- * Consider typed array.
- * @param {Array|TypedArray} data
- */
-
-
- function isArrayLike(data) {
- if (!data) {
- return;
- }
-
- if (typeof data === 'string') {
- return false;
- }
-
- return typeof data.length === 'number';
- }
- /**
- * 数组或对象遍历
- * @memberOf module:zrender/core/util
- * @param {Object|Array} obj
- * @param {Function} cb
- * @param {*} [context]
- */
-
-
- function each(obj, cb, context) {
- if (!(obj && cb)) {
- return;
- }
-
- if (obj.forEach && obj.forEach === nativeForEach) {
- obj.forEach(cb, context);
- } else if (obj.length === +obj.length) {
- for (var i = 0, len = obj.length; i < len; i++) {
- cb.call(context, obj[i], i, obj);
- }
- } else {
- for (var key in obj) {
- if (obj.hasOwnProperty(key)) {
- cb.call(context, obj[key], key, obj);
- }
- }
- }
- }
- /**
- * 数组映射
- * @memberOf module:zrender/core/util
- * @param {Array} obj
- * @param {Function} cb
- * @param {*} [context]
- * @return {Array}
- */
-
-
- function map(obj, cb, context) {
- if (!(obj && cb)) {
- return;
- }
-
- if (obj.map && obj.map === nativeMap) {
- return obj.map(cb, context);
- } else {
- var result = [];
-
- for (var i = 0, len = obj.length; i < len; i++) {
- result.push(cb.call(context, obj[i], i, obj));
- }
-
- return result;
- }
- }
- /**
- * @memberOf module:zrender/core/util
- * @param {Array} obj
- * @param {Function} cb
- * @param {Object} [memo]
- * @param {*} [context]
- * @return {Array}
- */
-
-
- function reduce(obj, cb, memo, context) {
- if (!(obj && cb)) {
- return;
- }
-
- if (obj.reduce && obj.reduce === nativeReduce) {
- return obj.reduce(cb, memo, context);
- } else {
- for (var i = 0, len = obj.length; i < len; i++) {
- memo = cb.call(context, memo, obj[i], i, obj);
- }
-
- return memo;
- }
- }
- /**
- * 数组过滤
- * @memberOf module:zrender/core/util
- * @param {Array} obj
- * @param {Function} cb
- * @param {*} [context]
- * @return {Array}
- */
-
-
- function filter(obj, cb, context) {
- if (!(obj && cb)) {
- return;
- }
-
- if (obj.filter && obj.filter === nativeFilter) {
- return obj.filter(cb, context);
- } else {
- var result = [];
-
- for (var i = 0, len = obj.length; i < len; i++) {
- if (cb.call(context, obj[i], i, obj)) {
- result.push(obj[i]);
- }
- }
-
- return result;
- }
- }
- /**
- * 数组项查找
- * @memberOf module:zrender/core/util
- * @param {Array} obj
- * @param {Function} cb
- * @param {*} [context]
- * @return {*}
- */
-
-
- function find(obj, cb, context) {
- if (!(obj && cb)) {
- return;
- }
-
- for (var i = 0, len = obj.length; i < len; i++) {
- if (cb.call(context, obj[i], i, obj)) {
- return obj[i];
- }
- }
- }
- /**
- * @memberOf module:zrender/core/util
- * @param {Function} func
- * @param {*} context
- * @return {Function}
- */
-
-
- function bind(func, context) {
- var args = nativeSlice.call(arguments, 2);
- return function () {
- return func.apply(context, args.concat(nativeSlice.call(arguments)));
- };
- }
- /**
- * @memberOf module:zrender/core/util
- * @param {Function} func
- * @return {Function}
- */
-
-
- function curry(func) {
- var args = nativeSlice.call(arguments, 1);
- return function () {
- return func.apply(this, args.concat(nativeSlice.call(arguments)));
- };
- }
- /**
- * @memberOf module:zrender/core/util
- * @param {*} value
- * @return {boolean}
- */
-
-
- function isArray(value) {
- return objToString.call(value) === '[object Array]';
- }
- /**
- * @memberOf module:zrender/core/util
- * @param {*} value
- * @return {boolean}
- */
-
-
- function isFunction(value) {
- return typeof value === 'function';
- }
- /**
- * @memberOf module:zrender/core/util
- * @param {*} value
- * @return {boolean}
- */
-
-
- function isString(value) {
- return objToString.call(value) === '[object String]';
- }
- /**
- * @memberOf module:zrender/core/util
- * @param {*} value
- * @return {boolean}
- */
-
-
- function isObject(value) {
- // Avoid a V8 JIT bug in Chrome 19-20.
- // See https://code.google.com/p/v8/issues/detail?id=2291 for more details.
- var type = typeof value;
- return type === 'function' || !!value && type === 'object';
- }
- /**
- * @memberOf module:zrender/core/util
- * @param {*} value
- * @return {boolean}
- */
-
-
- function isBuiltInObject(value) {
- return !!BUILTIN_OBJECT[objToString.call(value)];
- }
- /**
- * @memberOf module:zrender/core/util
- * @param {*} value
- * @return {boolean}
- */
-
-
- function isTypedArray(value) {
- return !!TYPED_ARRAY[objToString.call(value)];
- }
- /**
- * @memberOf module:zrender/core/util
- * @param {*} value
- * @return {boolean}
- */
-
-
- function isDom(value) {
- return typeof value === 'object' && typeof value.nodeType === 'number' && typeof value.ownerDocument === 'object';
- }
- /**
- * Whether is exactly NaN. Notice isNaN('a') returns true.
- * @param {*} value
- * @return {boolean}
- */
-
-
- function eqNaN(value) {
- /* eslint-disable-next-line no-self-compare */
- return value !== value;
- }
- /**
- * If value1 is not null, then return value1, otherwise judget rest of values.
- * Low performance.
- * @memberOf module:zrender/core/util
- * @return {*} Final value
- */
-
-
- function retrieve(values) {
- for (var i = 0, len = arguments.length; i < len; i++) {
- if (arguments[i] != null) {
- return arguments[i];
- }
- }
- }
-
- function retrieve2(value0, value1) {
- return value0 != null ? value0 : value1;
- }
-
- function retrieve3(value0, value1, value2) {
- return value0 != null ? value0 : value1 != null ? value1 : value2;
- }
- /**
- * @memberOf module:zrender/core/util
- * @param {Array} arr
- * @param {number} startIndex
- * @param {number} endIndex
- * @return {Array}
- */
-
-
- function slice() {
- return Function.call.apply(nativeSlice, arguments);
- }
- /**
- * Normalize css liked array configuration
- * e.g.
- * 3 => [3, 3, 3, 3]
- * [4, 2] => [4, 2, 4, 2]
- * [4, 3, 2] => [4, 3, 2, 3]
- * @param {number|Array.<number>} val
- * @return {Array.<number>}
- */
-
-
- function normalizeCssArray(val) {
- if (typeof val === 'number') {
- return [val, val, val, val];
- }
-
- var len = val.length;
-
- if (len === 2) {
- // vertical | horizontal
- return [val[0], val[1], val[0], val[1]];
- } else if (len === 3) {
- // top | horizontal | bottom
- return [val[0], val[1], val[2], val[1]];
- }
-
- return val;
- }
- /**
- * @memberOf module:zrender/core/util
- * @param {boolean} condition
- * @param {string} message
- */
-
-
- function assert(condition, message) {
- if (!condition) {
- throw new Error(message);
- }
- }
- /**
- * @memberOf module:zrender/core/util
- * @param {string} str string to be trimed
- * @return {string} trimed string
- */
-
-
- function trim(str) {
- if (str == null) {
- return null;
- } else if (typeof str.trim === 'function') {
- return str.trim();
- } else {
- return str.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, '');
- }
- }
-
- var primitiveKey = '__ec_primitive__';
- /**
- * Set an object as primitive to be ignored traversing children in clone or merge
- */
-
- function setAsPrimitive(obj) {
- obj[primitiveKey] = true;
- }
-
- function isPrimitive(obj) {
- return obj[primitiveKey];
- }
- /**
- * @constructor
- * @param {Object} obj Only apply `ownProperty`.
- */
-
-
- function HashMap(obj) {
- var isArr = isArray(obj); // Key should not be set on this, otherwise
- // methods get/set/... may be overrided.
-
- this.data = {};
- var thisMap = this;
- obj instanceof HashMap ? obj.each(visit) : obj && each(obj, visit);
-
- function visit(value, key) {
- isArr ? thisMap.set(value, key) : thisMap.set(key, value);
- }
- }
-
- HashMap.prototype = {
- constructor: HashMap,
- // Do not provide `has` method to avoid defining what is `has`.
- // (We usually treat `null` and `undefined` as the same, different
- // from ES6 Map).
- get: function (key) {
- return this.data.hasOwnProperty(key) ? this.data[key] : null;
- },
- set: function (key, value) {
- // Comparing with invocation chaining, `return value` is more commonly
- // used in this case: `var someVal = map.set('a', genVal());`
- return this.data[key] = value;
- },
- // Although util.each can be performed on this hashMap directly, user
- // should not use the exposed keys, who are prefixed.
- each: function (cb, context) {
- context !== void 0 && (cb = bind(cb, context));
- /* eslint-disable guard-for-in */
-
- for (var key in this.data) {
- this.data.hasOwnProperty(key) && cb(this.data[key], key);
- }
- /* eslint-enable guard-for-in */
-
- },
- // Do not use this method if performance sensitive.
- removeKey: function (key) {
- delete this.data[key];
- }
- };
-
- function createHashMap(obj) {
- return new HashMap(obj);
- }
-
- function concatArray(a, b) {
- var newArray = new a.constructor(a.length + b.length);
-
- for (var i = 0; i < a.length; i++) {
- newArray[i] = a[i];
- }
-
- var offset = a.length;
-
- for (i = 0; i < b.length; i++) {
- newArray[i + offset] = b[i];
- }
-
- return newArray;
- }
-
- function noop() {}
-
- exports.$override = $override;
- exports.clone = clone;
- exports.merge = merge;
- exports.mergeAll = mergeAll;
- exports.extend = extend;
- exports.defaults = defaults;
- exports.createCanvas = createCanvas;
- exports.getContext = getContext;
- exports.indexOf = indexOf;
- exports.inherits = inherits;
- exports.mixin = mixin;
- exports.isArrayLike = isArrayLike;
- exports.each = each;
- exports.map = map;
- exports.reduce = reduce;
- exports.filter = filter;
- exports.find = find;
- exports.bind = bind;
- exports.curry = curry;
- exports.isArray = isArray;
- exports.isFunction = isFunction;
- exports.isString = isString;
- exports.isObject = isObject;
- exports.isBuiltInObject = isBuiltInObject;
- exports.isTypedArray = isTypedArray;
- exports.isDom = isDom;
- exports.eqNaN = eqNaN;
- exports.retrieve = retrieve;
- exports.retrieve2 = retrieve2;
- exports.retrieve3 = retrieve3;
- exports.slice = slice;
- exports.normalizeCssArray = normalizeCssArray;
- exports.assert = assert;
- exports.trim = trim;
- exports.setAsPrimitive = setAsPrimitive;
- exports.isPrimitive = isPrimitive;
- exports.createHashMap = createHashMap;
- exports.concatArray = concatArray;
- exports.noop = noop;
-
- /***/ }),
-
- /***/ 865:
- /***/ (function(module, exports) {
-
- /**
- * Checks if `value` is classified as an `Array` object.
- *
- * @static
- * @memberOf _
- * @since 0.1.0
- * @category Lang
- * @param {*} value The value to check.
- * @returns {boolean} Returns `true` if `value` is an array, else `false`.
- * @example
- *
- * _.isArray([1, 2, 3]);
- * // => true
- *
- * _.isArray(document.body.children);
- * // => false
- *
- * _.isArray('abc');
- * // => false
- *
- * _.isArray(_.noop);
- * // => false
- */
- var isArray = Array.isArray;
-
- module.exports = isArray;
-
-
- /***/ }),
-
- /***/ 866:
- /***/ (function(module, exports, __webpack_require__) {
-
- var baseIsNative = __webpack_require__(923),
- getValue = __webpack_require__(926);
-
- /**
- * Gets the native function at `key` of `object`.
- *
- * @private
- * @param {Object} object The object to query.
- * @param {string} key The key of the method to get.
- * @returns {*} Returns the function if it's native, else `undefined`.
- */
- function getNative(object, key) {
- var value = getValue(object, key);
- return baseIsNative(value) ? value : undefined;
- }
-
- module.exports = getNative;
-
-
- /***/ }),
-
- /***/ 867:
- /***/ (function(module, exports, __webpack_require__) {
-
- var eq = __webpack_require__(870);
-
- /**
- * Gets the index at which the `key` is found in `array` of key-value pairs.
- *
- * @private
- * @param {Array} array The array to inspect.
- * @param {*} key The key to search for.
- * @returns {number} Returns the index of the matched value, else `-1`.
- */
- function assocIndexOf(array, key) {
- var length = array.length;
- while (length--) {
- if (eq(array[length][0], key)) {
- return length;
- }
- }
- return -1;
- }
-
- module.exports = assocIndexOf;
-
-
- /***/ }),
-
- /***/ 868:
- /***/ (function(module, exports, __webpack_require__) {
-
- var getNative = __webpack_require__(866);
-
- /* Built-in method references that are verified to be native. */
- var nativeCreate = getNative(Object, 'create');
-
- module.exports = nativeCreate;
-
-
- /***/ }),
-
- /***/ 869:
- /***/ (function(module, exports, __webpack_require__) {
-
- var isKeyable = __webpack_require__(935);
-
- /**
- * Gets the data for `map`.
- *
- * @private
- * @param {Object} map The map to query.
- * @param {string} key The reference key.
- * @returns {*} Returns the map data.
- */
- function getMapData(map, key) {
- var data = map.__data__;
- return isKeyable(key)
- ? data[typeof key == 'string' ? 'string' : 'hash']
- : data.map;
- }
-
- module.exports = getMapData;
-
-
- /***/ }),
-
- /***/ 870:
- /***/ (function(module, exports) {
-
- /**
- * Performs a
- * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)
- * comparison between two values to determine if they are equivalent.
- *
- * @static
- * @memberOf _
- * @since 4.0.0
- * @category Lang
- * @param {*} value The value to compare.
- * @param {*} other The other value to compare.
- * @returns {boolean} Returns `true` if the values are equivalent, else `false`.
- * @example
- *
- * var object = { 'a': 1 };
- * var other = { 'a': 1 };
- *
- * _.eq(object, object);
- * // => true
- *
- * _.eq(object, other);
- * // => false
- *
- * _.eq('a', 'a');
- * // => true
- *
- * _.eq('a', Object('a'));
- * // => false
- *
- * _.eq(NaN, NaN);
- * // => true
- */
- function eq(value, other) {
- return value === other || (value !== value && other !== other);
- }
-
- module.exports = eq;
-
-
- /***/ }),
-
- /***/ 871:
- /***/ (function(module, exports, __webpack_require__) {
-
- var isSymbol = __webpack_require__(306);
-
- /** Used as references for various `Number` constants. */
- var INFINITY = 1 / 0;
-
- /**
- * Converts `value` to a string key if it's not a string or symbol.
- *
- * @private
- * @param {*} value The value to inspect.
- * @returns {string|symbol} Returns the key.
- */
- function toKey(value) {
- if (typeof value == 'string' || isSymbol(value)) {
- return value;
- }
- var result = (value + '');
- return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result;
- }
-
- module.exports = toKey;
-
-
- /***/ }),
-
- /***/ 872:
- /***/ (function(module, exports, __webpack_require__) {
-
- var listCacheClear = __webpack_require__(918),
- listCacheDelete = __webpack_require__(919),
- listCacheGet = __webpack_require__(920),
- listCacheHas = __webpack_require__(921),
- listCacheSet = __webpack_require__(922);
-
- /**
- * Creates an list cache object.
- *
- * @private
- * @constructor
- * @param {Array} [entries] The key-value pairs to cache.
- */
- function ListCache(entries) {
- var index = -1,
- length = entries == null ? 0 : entries.length;
-
- this.clear();
- while (++index < length) {
- var entry = entries[index];
- this.set(entry[0], entry[1]);
- }
- }
-
- // Add methods to `ListCache`.
- ListCache.prototype.clear = listCacheClear;
- ListCache.prototype['delete'] = listCacheDelete;
- ListCache.prototype.get = listCacheGet;
- ListCache.prototype.has = listCacheHas;
- ListCache.prototype.set = listCacheSet;
-
- module.exports = ListCache;
-
-
- /***/ }),
-
- /***/ 873:
- /***/ (function(module, exports) {
-
- /** Used as references for various `Number` constants. */
- var MAX_SAFE_INTEGER = 9007199254740991;
-
- /** Used to detect unsigned integer values. */
- var reIsUint = /^(?:0|[1-9]\d*)$/;
-
- /**
- * Checks if `value` is a valid array-like index.
- *
- * @private
- * @param {*} value The value to check.
- * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index.
- * @returns {boolean} Returns `true` if `value` is a valid index, else `false`.
- */
- function isIndex(value, length) {
- var type = typeof value;
- length = length == null ? MAX_SAFE_INTEGER : length;
-
- return !!length &&
- (type == 'number' ||
- (type != 'symbol' && reIsUint.test(value))) &&
- (value > -1 && value % 1 == 0 && value < length);
- }
-
- module.exports = isIndex;
-
-
- /***/ }),
-
- /***/ 874:
- /***/ (function(module, exports, __webpack_require__) {
-
- var isArray = __webpack_require__(865),
- isKey = __webpack_require__(880),
- stringToPath = __webpack_require__(940),
- toString = __webpack_require__(912);
-
- /**
- * Casts `value` to a path array if it's not one.
- *
- * @private
- * @param {*} value The value to inspect.
- * @param {Object} [object] The object to query keys on.
- * @returns {Array} Returns the cast property path array.
- */
- function castPath(value, object) {
- if (isArray(value)) {
- return value;
- }
- return isKey(value, object) ? [value] : stringToPath(toString(value));
- }
-
- module.exports = castPath;
-
-
- /***/ }),
-
- /***/ 875:
- /***/ (function(module, exports) {
-
- /** Used as references for various `Number` constants. */
- var MAX_SAFE_INTEGER = 9007199254740991;
-
- /**
- * Checks if `value` is a valid array-like length.
- *
- * **Note:** This method is loosely based on
- * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).
- *
- * @static
- * @memberOf _
- * @since 4.0.0
- * @category Lang
- * @param {*} value The value to check.
- * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.
- * @example
- *
- * _.isLength(3);
- * // => true
- *
- * _.isLength(Number.MIN_VALUE);
- * // => false
- *
- * _.isLength(Infinity);
- * // => false
- *
- * _.isLength('3');
- * // => false
- */
- function isLength(value) {
- return typeof value == 'number' &&
- value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;
- }
-
- module.exports = isLength;
-
-
- /***/ }),
-
- /***/ 876:
- /***/ (function(module, exports, __webpack_require__) {
-
- var getNative = __webpack_require__(866),
- root = __webpack_require__(170);
-
- /* Built-in method references that are verified to be native. */
- var Map = getNative(root, 'Map');
-
- module.exports = Map;
-
-
- /***/ }),
-
- /***/ 877:
- /***/ (function(module, exports, __webpack_require__) {
-
- var mapCacheClear = __webpack_require__(927),
- mapCacheDelete = __webpack_require__(934),
- mapCacheGet = __webpack_require__(936),
- mapCacheHas = __webpack_require__(937),
- mapCacheSet = __webpack_require__(938);
-
- /**
- * Creates a map cache object to store key-value pairs.
- *
- * @private
- * @constructor
- * @param {Array} [entries] The key-value pairs to cache.
- */
- function MapCache(entries) {
- var index = -1,
- length = entries == null ? 0 : entries.length;
-
- this.clear();
- while (++index < length) {
- var entry = entries[index];
- this.set(entry[0], entry[1]);
- }
- }
-
- // Add methods to `MapCache`.
- MapCache.prototype.clear = mapCacheClear;
- MapCache.prototype['delete'] = mapCacheDelete;
- MapCache.prototype.get = mapCacheGet;
- MapCache.prototype.has = mapCacheHas;
- MapCache.prototype.set = mapCacheSet;
-
- module.exports = MapCache;
-
-
- /***/ }),
-
- /***/ 878:
- /***/ (function(module, exports, __webpack_require__) {
-
- var baseGetTag = __webpack_require__(304),
- isObject = __webpack_require__(171);
-
- /** `Object#toString` result references. */
- var asyncTag = '[object AsyncFunction]',
- funcTag = '[object Function]',
- genTag = '[object GeneratorFunction]',
- proxyTag = '[object Proxy]';
-
- /**
- * Checks if `value` is classified as a `Function` object.
- *
- * @static
- * @memberOf _
- * @since 0.1.0
- * @category Lang
- * @param {*} value The value to check.
- * @returns {boolean} Returns `true` if `value` is a function, else `false`.
- * @example
- *
- * _.isFunction(_);
- * // => true
- *
- * _.isFunction(/abc/);
- * // => false
- */
- function isFunction(value) {
- if (!isObject(value)) {
- return false;
- }
- // The use of `Object#toString` avoids issues with the `typeof` operator
- // in Safari 9 which returns 'object' for typed arrays and other constructors.
- var tag = baseGetTag(value);
- return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag;
- }
-
- module.exports = isFunction;
-
-
- /***/ }),
-
- /***/ 879:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports["default"] = void 0;
-
- var _createReactContext = _interopRequireDefault(__webpack_require__(301));
-
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
-
- var MenuContext = (0, _createReactContext["default"])({
- inlineCollapsed: false
- });
- var _default = MenuContext;
- exports["default"] = _default;
- //# sourceMappingURL=MenuContext.js.map
-
-
- /***/ }),
-
- /***/ 880:
- /***/ (function(module, exports, __webpack_require__) {
-
- var isArray = __webpack_require__(865),
- isSymbol = __webpack_require__(306);
-
- /** Used to match property names within property paths. */
- var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,
- reIsPlainProp = /^\w*$/;
-
- /**
- * Checks if `value` is a property name and not a property path.
- *
- * @private
- * @param {*} value The value to check.
- * @param {Object} [object] The object to query keys on.
- * @returns {boolean} Returns `true` if `value` is a property name, else `false`.
- */
- function isKey(value, object) {
- if (isArray(value)) {
- return false;
- }
- var type = typeof value;
- if (type == 'number' || type == 'symbol' || type == 'boolean' ||
- value == null || isSymbol(value)) {
- return true;
- }
- return reIsPlainProp.test(value) || !reIsDeepProp.test(value) ||
- (object != null && value in Object(object));
- }
-
- module.exports = isKey;
-
-
- /***/ }),
-
- /***/ 881:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var _config = __webpack_require__(1081);
-
- var __DEV__ = _config.__DEV__;
-
- var zrender = __webpack_require__(1780);
-
- var zrUtil = __webpack_require__(864);
-
- var colorTool = __webpack_require__(1438);
-
- var env = __webpack_require__(1316);
-
- var timsort = __webpack_require__(1894);
-
- var Eventful = __webpack_require__(1516);
-
- var GlobalModel = __webpack_require__(2267);
-
- var ExtensionAPI = __webpack_require__(2280);
-
- var CoordinateSystemManager = __webpack_require__(1414);
-
- var OptionManager = __webpack_require__(2538);
-
- var backwardCompat = __webpack_require__(2539);
-
- var dataStack = __webpack_require__(2541);
-
- var ComponentModel = __webpack_require__(1321);
-
- var SeriesModel = __webpack_require__(1322);
-
- var ComponentView = __webpack_require__(1786);
-
- var ChartView = __webpack_require__(1439);
-
- var graphic = __webpack_require__(906);
-
- var modelUtil = __webpack_require__(1064);
-
- var _throttle = __webpack_require__(1482);
-
- var throttle = _throttle.throttle;
-
- var seriesColor = __webpack_require__(2542);
-
- var aria = __webpack_require__(2543);
-
- var loadingDefault = __webpack_require__(2544);
-
- var Scheduler = __webpack_require__(2545);
-
- var lightTheme = __webpack_require__(2546);
-
- var darkTheme = __webpack_require__(2547);
-
- __webpack_require__(2281);
-
- var mapDataStorage = __webpack_require__(1903);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var assert = zrUtil.assert;
- var each = zrUtil.each;
- var isFunction = zrUtil.isFunction;
- var isObject = zrUtil.isObject;
- var parseClassType = ComponentModel.parseClassType;
- var version = '4.6.0';
- var dependencies = {
- zrender: '4.2.0'
- };
- var TEST_FRAME_REMAIN_TIME = 1;
- var PRIORITY_PROCESSOR_FILTER = 1000;
- var PRIORITY_PROCESSOR_SERIES_FILTER = 800;
- var PRIORITY_PROCESSOR_DATASTACK = 900;
- var PRIORITY_PROCESSOR_STATISTIC = 5000;
- var PRIORITY_VISUAL_LAYOUT = 1000;
- var PRIORITY_VISUAL_PROGRESSIVE_LAYOUT = 1100;
- var PRIORITY_VISUAL_GLOBAL = 2000;
- var PRIORITY_VISUAL_CHART = 3000;
- var PRIORITY_VISUAL_POST_CHART_LAYOUT = 3500;
- var PRIORITY_VISUAL_COMPONENT = 4000; // FIXME
- // necessary?
-
- var PRIORITY_VISUAL_BRUSH = 5000;
- var PRIORITY = {
- PROCESSOR: {
- FILTER: PRIORITY_PROCESSOR_FILTER,
- SERIES_FILTER: PRIORITY_PROCESSOR_SERIES_FILTER,
- STATISTIC: PRIORITY_PROCESSOR_STATISTIC
- },
- VISUAL: {
- LAYOUT: PRIORITY_VISUAL_LAYOUT,
- PROGRESSIVE_LAYOUT: PRIORITY_VISUAL_PROGRESSIVE_LAYOUT,
- GLOBAL: PRIORITY_VISUAL_GLOBAL,
- CHART: PRIORITY_VISUAL_CHART,
- POST_CHART_LAYOUT: PRIORITY_VISUAL_POST_CHART_LAYOUT,
- COMPONENT: PRIORITY_VISUAL_COMPONENT,
- BRUSH: PRIORITY_VISUAL_BRUSH
- }
- }; // Main process have three entries: `setOption`, `dispatchAction` and `resize`,
- // where they must not be invoked nestedly, except the only case: invoke
- // dispatchAction with updateMethod "none" in main process.
- // This flag is used to carry out this rule.
- // All events will be triggered out side main process (i.e. when !this[IN_MAIN_PROCESS]).
-
- var IN_MAIN_PROCESS = '__flagInMainProcess';
- var OPTION_UPDATED = '__optionUpdated';
- var ACTION_REG = /^[a-zA-Z0-9_]+$/;
-
- function createRegisterEventWithLowercaseName(method, ignoreDisposed) {
- return function (eventName, handler, context) {
- if (!ignoreDisposed && this._disposed) {
- disposedWarning(this.id);
- return;
- } // Event name is all lowercase
-
-
- eventName = eventName && eventName.toLowerCase();
- Eventful.prototype[method].call(this, eventName, handler, context);
- };
- }
- /**
- * @module echarts~MessageCenter
- */
-
-
- function MessageCenter() {
- Eventful.call(this);
- }
-
- MessageCenter.prototype.on = createRegisterEventWithLowercaseName('on', true);
- MessageCenter.prototype.off = createRegisterEventWithLowercaseName('off', true);
- MessageCenter.prototype.one = createRegisterEventWithLowercaseName('one', true);
- zrUtil.mixin(MessageCenter, Eventful);
- /**
- * @module echarts~ECharts
- */
-
- function ECharts(dom, theme, opts) {
- opts = opts || {}; // Get theme by name
-
- if (typeof theme === 'string') {
- theme = themeStorage[theme];
- }
- /**
- * @type {string}
- */
-
-
- this.id;
- /**
- * Group id
- * @type {string}
- */
-
- this.group;
- /**
- * @type {HTMLElement}
- * @private
- */
-
- this._dom = dom;
- var defaultRenderer = 'canvas';
-
- /**
- * @type {module:zrender/ZRender}
- * @private
- */
- var zr = this._zr = zrender.init(dom, {
- renderer: opts.renderer || defaultRenderer,
- devicePixelRatio: opts.devicePixelRatio,
- width: opts.width,
- height: opts.height
- });
- /**
- * Expect 60 fps.
- * @type {Function}
- * @private
- */
-
- this._throttledZrFlush = throttle(zrUtil.bind(zr.flush, zr), 17);
- var theme = zrUtil.clone(theme);
- theme && backwardCompat(theme, true);
- /**
- * @type {Object}
- * @private
- */
-
- this._theme = theme;
- /**
- * @type {Array.<module:echarts/view/Chart>}
- * @private
- */
-
- this._chartsViews = [];
- /**
- * @type {Object.<string, module:echarts/view/Chart>}
- * @private
- */
-
- this._chartsMap = {};
- /**
- * @type {Array.<module:echarts/view/Component>}
- * @private
- */
-
- this._componentsViews = [];
- /**
- * @type {Object.<string, module:echarts/view/Component>}
- * @private
- */
-
- this._componentsMap = {};
- /**
- * @type {module:echarts/CoordinateSystem}
- * @private
- */
-
- this._coordSysMgr = new CoordinateSystemManager();
- /**
- * @type {module:echarts/ExtensionAPI}
- * @private
- */
-
- var api = this._api = createExtensionAPI(this); // Sort on demand
-
- function prioritySortFunc(a, b) {
- return a.__prio - b.__prio;
- }
-
- timsort(visualFuncs, prioritySortFunc);
- timsort(dataProcessorFuncs, prioritySortFunc);
- /**
- * @type {module:echarts/stream/Scheduler}
- */
-
- this._scheduler = new Scheduler(this, api, dataProcessorFuncs, visualFuncs);
- Eventful.call(this, this._ecEventProcessor = new EventProcessor());
- /**
- * @type {module:echarts~MessageCenter}
- * @private
- */
-
- this._messageCenter = new MessageCenter(); // Init mouse events
-
- this._initEvents(); // In case some people write `window.onresize = chart.resize`
-
-
- this.resize = zrUtil.bind(this.resize, this); // Can't dispatch action during rendering procedure
-
- this._pendingActions = [];
- zr.animation.on('frame', this._onframe, this);
- bindRenderedEvent(zr, this); // ECharts instance can be used as value.
-
- zrUtil.setAsPrimitive(this);
- }
-
- var echartsProto = ECharts.prototype;
-
- echartsProto._onframe = function () {
- if (this._disposed) {
- return;
- }
-
- var scheduler = this._scheduler; // Lazy update
-
- if (this[OPTION_UPDATED]) {
- var silent = this[OPTION_UPDATED].silent;
- this[IN_MAIN_PROCESS] = true;
- prepare(this);
- updateMethods.update.call(this);
- this[IN_MAIN_PROCESS] = false;
- this[OPTION_UPDATED] = false;
- flushPendingActions.call(this, silent);
- triggerUpdatedEvent.call(this, silent);
- } // Avoid do both lazy update and progress in one frame.
- else if (scheduler.unfinished) {
- // Stream progress.
- var remainTime = TEST_FRAME_REMAIN_TIME;
- var ecModel = this._model;
- var api = this._api;
- scheduler.unfinished = false;
-
- do {
- var startTime = +new Date();
- scheduler.performSeriesTasks(ecModel); // Currently dataProcessorFuncs do not check threshold.
-
- scheduler.performDataProcessorTasks(ecModel);
- updateStreamModes(this, ecModel); // Do not update coordinate system here. Because that coord system update in
- // each frame is not a good user experience. So we follow the rule that
- // the extent of the coordinate system is determin in the first frame (the
- // frame is executed immedietely after task reset.
- // this._coordSysMgr.update(ecModel, api);
- // console.log('--- ec frame visual ---', remainTime);
-
- scheduler.performVisualTasks(ecModel);
- renderSeries(this, this._model, api, 'remain');
- remainTime -= +new Date() - startTime;
- } while (remainTime > 0 && scheduler.unfinished); // Call flush explicitly for trigger finished event.
-
-
- if (!scheduler.unfinished) {
- this._zr.flush();
- } // Else, zr flushing be ensue within the same frame,
- // because zr flushing is after onframe event.
-
- }
- };
- /**
- * @return {HTMLElement}
- */
-
-
- echartsProto.getDom = function () {
- return this._dom;
- };
- /**
- * @return {module:zrender~ZRender}
- */
-
-
- echartsProto.getZr = function () {
- return this._zr;
- };
- /**
- * Usage:
- * chart.setOption(option, notMerge, lazyUpdate);
- * chart.setOption(option, {
- * notMerge: ...,
- * lazyUpdate: ...,
- * silent: ...
- * });
- *
- * @param {Object} option
- * @param {Object|boolean} [opts] opts or notMerge.
- * @param {boolean} [opts.notMerge=false]
- * @param {boolean} [opts.lazyUpdate=false] Useful when setOption frequently.
- */
-
-
- echartsProto.setOption = function (option, notMerge, lazyUpdate) {
- if (this._disposed) {
- disposedWarning(this.id);
- return;
- }
-
- var silent;
-
- if (isObject(notMerge)) {
- lazyUpdate = notMerge.lazyUpdate;
- silent = notMerge.silent;
- notMerge = notMerge.notMerge;
- }
-
- this[IN_MAIN_PROCESS] = true;
-
- if (!this._model || notMerge) {
- var optionManager = new OptionManager(this._api);
- var theme = this._theme;
- var ecModel = this._model = new GlobalModel();
- ecModel.scheduler = this._scheduler;
- ecModel.init(null, null, theme, optionManager);
- }
-
- this._model.setOption(option, optionPreprocessorFuncs);
-
- if (lazyUpdate) {
- this[OPTION_UPDATED] = {
- silent: silent
- };
- this[IN_MAIN_PROCESS] = false;
- } else {
- prepare(this);
- updateMethods.update.call(this); // Ensure zr refresh sychronously, and then pixel in canvas can be
- // fetched after `setOption`.
-
- this._zr.flush();
-
- this[OPTION_UPDATED] = false;
- this[IN_MAIN_PROCESS] = false;
- flushPendingActions.call(this, silent);
- triggerUpdatedEvent.call(this, silent);
- }
- };
- /**
- * @DEPRECATED
- */
-
-
- echartsProto.setTheme = function () {
- console.error('ECharts#setTheme() is DEPRECATED in ECharts 3.0');
- };
- /**
- * @return {module:echarts/model/Global}
- */
-
-
- echartsProto.getModel = function () {
- return this._model;
- };
- /**
- * @return {Object}
- */
-
-
- echartsProto.getOption = function () {
- return this._model && this._model.getOption();
- };
- /**
- * @return {number}
- */
-
-
- echartsProto.getWidth = function () {
- return this._zr.getWidth();
- };
- /**
- * @return {number}
- */
-
-
- echartsProto.getHeight = function () {
- return this._zr.getHeight();
- };
- /**
- * @return {number}
- */
-
-
- echartsProto.getDevicePixelRatio = function () {
- return this._zr.painter.dpr || window.devicePixelRatio || 1;
- };
- /**
- * Get canvas which has all thing rendered
- * @param {Object} opts
- * @param {string} [opts.backgroundColor]
- * @return {string}
- */
-
-
- echartsProto.getRenderedCanvas = function (opts) {
- if (!env.canvasSupported) {
- return;
- }
-
- opts = opts || {};
- opts.pixelRatio = opts.pixelRatio || 1;
- opts.backgroundColor = opts.backgroundColor || this._model.get('backgroundColor');
- var zr = this._zr; // var list = zr.storage.getDisplayList();
- // Stop animations
- // Never works before in init animation, so remove it.
- // zrUtil.each(list, function (el) {
- // el.stopAnimation(true);
- // });
-
- return zr.painter.getRenderedCanvas(opts);
- };
- /**
- * Get svg data url
- * @return {string}
- */
-
-
- echartsProto.getSvgDataUrl = function () {
- if (!env.svgSupported) {
- return;
- }
-
- var zr = this._zr;
- var list = zr.storage.getDisplayList(); // Stop animations
-
- zrUtil.each(list, function (el) {
- el.stopAnimation(true);
- });
- return zr.painter.pathToDataUrl();
- };
- /**
- * @return {string}
- * @param {Object} opts
- * @param {string} [opts.type='png']
- * @param {string} [opts.pixelRatio=1]
- * @param {string} [opts.backgroundColor]
- * @param {string} [opts.excludeComponents]
- */
-
-
- echartsProto.getDataURL = function (opts) {
- if (this._disposed) {
- disposedWarning(this.id);
- return;
- }
-
- opts = opts || {};
- var excludeComponents = opts.excludeComponents;
- var ecModel = this._model;
- var excludesComponentViews = [];
- var self = this;
- each(excludeComponents, function (componentType) {
- ecModel.eachComponent({
- mainType: componentType
- }, function (component) {
- var view = self._componentsMap[component.__viewId];
-
- if (!view.group.ignore) {
- excludesComponentViews.push(view);
- view.group.ignore = true;
- }
- });
- });
- var url = this._zr.painter.getType() === 'svg' ? this.getSvgDataUrl() : this.getRenderedCanvas(opts).toDataURL('image/' + (opts && opts.type || 'png'));
- each(excludesComponentViews, function (view) {
- view.group.ignore = false;
- });
- return url;
- };
- /**
- * @return {string}
- * @param {Object} opts
- * @param {string} [opts.type='png']
- * @param {string} [opts.pixelRatio=1]
- * @param {string} [opts.backgroundColor]
- */
-
-
- echartsProto.getConnectedDataURL = function (opts) {
- if (this._disposed) {
- disposedWarning(this.id);
- return;
- }
-
- if (!env.canvasSupported) {
- return;
- }
-
- var groupId = this.group;
- var mathMin = Math.min;
- var mathMax = Math.max;
- var MAX_NUMBER = Infinity;
-
- if (connectedGroups[groupId]) {
- var left = MAX_NUMBER;
- var top = MAX_NUMBER;
- var right = -MAX_NUMBER;
- var bottom = -MAX_NUMBER;
- var canvasList = [];
- var dpr = opts && opts.pixelRatio || 1;
- zrUtil.each(instances, function (chart, id) {
- if (chart.group === groupId) {
- var canvas = chart.getRenderedCanvas(zrUtil.clone(opts));
- var boundingRect = chart.getDom().getBoundingClientRect();
- left = mathMin(boundingRect.left, left);
- top = mathMin(boundingRect.top, top);
- right = mathMax(boundingRect.right, right);
- bottom = mathMax(boundingRect.bottom, bottom);
- canvasList.push({
- dom: canvas,
- left: boundingRect.left,
- top: boundingRect.top
- });
- }
- });
- left *= dpr;
- top *= dpr;
- right *= dpr;
- bottom *= dpr;
- var width = right - left;
- var height = bottom - top;
- var targetCanvas = zrUtil.createCanvas();
- targetCanvas.width = width;
- targetCanvas.height = height;
- var zr = zrender.init(targetCanvas); // Background between the charts
-
- if (opts.connectedBackgroundColor) {
- zr.add(new graphic.Rect({
- shape: {
- x: 0,
- y: 0,
- width: width,
- height: height
- },
- style: {
- fill: opts.connectedBackgroundColor
- }
- }));
- }
-
- each(canvasList, function (item) {
- var img = new graphic.Image({
- style: {
- x: item.left * dpr - left,
- y: item.top * dpr - top,
- image: item.dom
- }
- });
- zr.add(img);
- });
- zr.refreshImmediately();
- return targetCanvas.toDataURL('image/' + (opts && opts.type || 'png'));
- } else {
- return this.getDataURL(opts);
- }
- };
- /**
- * Convert from logical coordinate system to pixel coordinate system.
- * See CoordinateSystem#convertToPixel.
- * @param {string|Object} finder
- * If string, e.g., 'geo', means {geoIndex: 0}.
- * If Object, could contain some of these properties below:
- * {
- * seriesIndex / seriesId / seriesName,
- * geoIndex / geoId, geoName,
- * bmapIndex / bmapId / bmapName,
- * xAxisIndex / xAxisId / xAxisName,
- * yAxisIndex / yAxisId / yAxisName,
- * gridIndex / gridId / gridName,
- * ... (can be extended)
- * }
- * @param {Array|number} value
- * @return {Array|number} result
- */
-
-
- echartsProto.convertToPixel = zrUtil.curry(doConvertPixel, 'convertToPixel');
- /**
- * Convert from pixel coordinate system to logical coordinate system.
- * See CoordinateSystem#convertFromPixel.
- * @param {string|Object} finder
- * If string, e.g., 'geo', means {geoIndex: 0}.
- * If Object, could contain some of these properties below:
- * {
- * seriesIndex / seriesId / seriesName,
- * geoIndex / geoId / geoName,
- * bmapIndex / bmapId / bmapName,
- * xAxisIndex / xAxisId / xAxisName,
- * yAxisIndex / yAxisId / yAxisName
- * gridIndex / gridId / gridName,
- * ... (can be extended)
- * }
- * @param {Array|number} value
- * @return {Array|number} result
- */
-
- echartsProto.convertFromPixel = zrUtil.curry(doConvertPixel, 'convertFromPixel');
-
- function doConvertPixel(methodName, finder, value) {
- if (this._disposed) {
- disposedWarning(this.id);
- return;
- }
-
- var ecModel = this._model;
-
- var coordSysList = this._coordSysMgr.getCoordinateSystems();
-
- var result;
- finder = modelUtil.parseFinder(ecModel, finder);
-
- for (var i = 0; i < coordSysList.length; i++) {
- var coordSys = coordSysList[i];
-
- if (coordSys[methodName] && (result = coordSys[methodName](ecModel, finder, value)) != null) {
- return result;
- }
- }
- }
- /**
- * Is the specified coordinate systems or components contain the given pixel point.
- * @param {string|Object} finder
- * If string, e.g., 'geo', means {geoIndex: 0}.
- * If Object, could contain some of these properties below:
- * {
- * seriesIndex / seriesId / seriesName,
- * geoIndex / geoId / geoName,
- * bmapIndex / bmapId / bmapName,
- * xAxisIndex / xAxisId / xAxisName,
- * yAxisIndex / yAxisId / yAxisName,
- * gridIndex / gridId / gridName,
- * ... (can be extended)
- * }
- * @param {Array|number} value
- * @return {boolean} result
- */
-
-
- echartsProto.containPixel = function (finder, value) {
- if (this._disposed) {
- disposedWarning(this.id);
- return;
- }
-
- var ecModel = this._model;
- var result;
- finder = modelUtil.parseFinder(ecModel, finder);
- zrUtil.each(finder, function (models, key) {
- key.indexOf('Models') >= 0 && zrUtil.each(models, function (model) {
- var coordSys = model.coordinateSystem;
-
- if (coordSys && coordSys.containPoint) {
- result |= !!coordSys.containPoint(value);
- } else if (key === 'seriesModels') {
- var view = this._chartsMap[model.__viewId];
-
- if (view && view.containPoint) {
- result |= view.containPoint(value, model);
- } else {}
- } else {}
- }, this);
- }, this);
- return !!result;
- };
- /**
- * Get visual from series or data.
- * @param {string|Object} finder
- * If string, e.g., 'series', means {seriesIndex: 0}.
- * If Object, could contain some of these properties below:
- * {
- * seriesIndex / seriesId / seriesName,
- * dataIndex / dataIndexInside
- * }
- * If dataIndex is not specified, series visual will be fetched,
- * but not data item visual.
- * If all of seriesIndex, seriesId, seriesName are not specified,
- * visual will be fetched from first series.
- * @param {string} visualType 'color', 'symbol', 'symbolSize'
- */
-
-
- echartsProto.getVisual = function (finder, visualType) {
- var ecModel = this._model;
- finder = modelUtil.parseFinder(ecModel, finder, {
- defaultMainType: 'series'
- });
- var seriesModel = finder.seriesModel;
- var data = seriesModel.getData();
- var dataIndexInside = finder.hasOwnProperty('dataIndexInside') ? finder.dataIndexInside : finder.hasOwnProperty('dataIndex') ? data.indexOfRawIndex(finder.dataIndex) : null;
- return dataIndexInside != null ? data.getItemVisual(dataIndexInside, visualType) : data.getVisual(visualType);
- };
- /**
- * Get view of corresponding component model
- * @param {module:echarts/model/Component} componentModel
- * @return {module:echarts/view/Component}
- */
-
-
- echartsProto.getViewOfComponentModel = function (componentModel) {
- return this._componentsMap[componentModel.__viewId];
- };
- /**
- * Get view of corresponding series model
- * @param {module:echarts/model/Series} seriesModel
- * @return {module:echarts/view/Chart}
- */
-
-
- echartsProto.getViewOfSeriesModel = function (seriesModel) {
- return this._chartsMap[seriesModel.__viewId];
- };
-
- var updateMethods = {
- prepareAndUpdate: function (payload) {
- prepare(this);
- updateMethods.update.call(this, payload);
- },
-
- /**
- * @param {Object} payload
- * @private
- */
- update: function (payload) {
- // console.profile && console.profile('update');
- var ecModel = this._model;
- var api = this._api;
- var zr = this._zr;
- var coordSysMgr = this._coordSysMgr;
- var scheduler = this._scheduler; // update before setOption
-
- if (!ecModel) {
- return;
- }
-
- scheduler.restoreData(ecModel, payload);
- scheduler.performSeriesTasks(ecModel); // TODO
- // Save total ecModel here for undo/redo (after restoring data and before processing data).
- // Undo (restoration of total ecModel) can be carried out in 'action' or outside API call.
- // Create new coordinate system each update
- // In LineView may save the old coordinate system and use it to get the orignal point
-
- coordSysMgr.create(ecModel, api);
- scheduler.performDataProcessorTasks(ecModel, payload); // Current stream render is not supported in data process. So we can update
- // stream modes after data processing, where the filtered data is used to
- // deteming whether use progressive rendering.
-
- updateStreamModes(this, ecModel); // We update stream modes before coordinate system updated, then the modes info
- // can be fetched when coord sys updating (consider the barGrid extent fix). But
- // the drawback is the full coord info can not be fetched. Fortunately this full
- // coord is not requied in stream mode updater currently.
-
- coordSysMgr.update(ecModel, api);
- clearColorPalette(ecModel);
- scheduler.performVisualTasks(ecModel, payload);
- render(this, ecModel, api, payload); // Set background
-
- var backgroundColor = ecModel.get('backgroundColor') || 'transparent'; // In IE8
-
- if (!env.canvasSupported) {
- var colorArr = colorTool.parse(backgroundColor);
- backgroundColor = colorTool.stringify(colorArr, 'rgb');
-
- if (colorArr[3] === 0) {
- backgroundColor = 'transparent';
- }
- } else {
- zr.setBackgroundColor(backgroundColor);
- }
-
- performPostUpdateFuncs(ecModel, api); // console.profile && console.profileEnd('update');
- },
-
- /**
- * @param {Object} payload
- * @private
- */
- updateTransform: function (payload) {
- var ecModel = this._model;
- var ecIns = this;
- var api = this._api; // update before setOption
-
- if (!ecModel) {
- return;
- } // ChartView.markUpdateMethod(payload, 'updateTransform');
-
-
- var componentDirtyList = [];
- ecModel.eachComponent(function (componentType, componentModel) {
- var componentView = ecIns.getViewOfComponentModel(componentModel);
-
- if (componentView && componentView.__alive) {
- if (componentView.updateTransform) {
- var result = componentView.updateTransform(componentModel, ecModel, api, payload);
- result && result.update && componentDirtyList.push(componentView);
- } else {
- componentDirtyList.push(componentView);
- }
- }
- });
- var seriesDirtyMap = zrUtil.createHashMap();
- ecModel.eachSeries(function (seriesModel) {
- var chartView = ecIns._chartsMap[seriesModel.__viewId];
-
- if (chartView.updateTransform) {
- var result = chartView.updateTransform(seriesModel, ecModel, api, payload);
- result && result.update && seriesDirtyMap.set(seriesModel.uid, 1);
- } else {
- seriesDirtyMap.set(seriesModel.uid, 1);
- }
- });
- clearColorPalette(ecModel); // Keep pipe to the exist pipeline because it depends on the render task of the full pipeline.
- // this._scheduler.performVisualTasks(ecModel, payload, 'layout', true);
-
- this._scheduler.performVisualTasks(ecModel, payload, {
- setDirty: true,
- dirtyMap: seriesDirtyMap
- }); // Currently, not call render of components. Geo render cost a lot.
- // renderComponents(ecIns, ecModel, api, payload, componentDirtyList);
-
-
- renderSeries(ecIns, ecModel, api, payload, seriesDirtyMap);
- performPostUpdateFuncs(ecModel, this._api);
- },
-
- /**
- * @param {Object} payload
- * @private
- */
- updateView: function (payload) {
- var ecModel = this._model; // update before setOption
-
- if (!ecModel) {
- return;
- }
-
- ChartView.markUpdateMethod(payload, 'updateView');
- clearColorPalette(ecModel); // Keep pipe to the exist pipeline because it depends on the render task of the full pipeline.
-
- this._scheduler.performVisualTasks(ecModel, payload, {
- setDirty: true
- });
-
- render(this, this._model, this._api, payload);
- performPostUpdateFuncs(ecModel, this._api);
- },
-
- /**
- * @param {Object} payload
- * @private
- */
- updateVisual: function (payload) {
- updateMethods.update.call(this, payload); // var ecModel = this._model;
- // // update before setOption
- // if (!ecModel) {
- // return;
- // }
- // ChartView.markUpdateMethod(payload, 'updateVisual');
- // clearColorPalette(ecModel);
- // // Keep pipe to the exist pipeline because it depends on the render task of the full pipeline.
- // this._scheduler.performVisualTasks(ecModel, payload, {visualType: 'visual', setDirty: true});
- // render(this, this._model, this._api, payload);
- // performPostUpdateFuncs(ecModel, this._api);
- },
-
- /**
- * @param {Object} payload
- * @private
- */
- updateLayout: function (payload) {
- updateMethods.update.call(this, payload); // var ecModel = this._model;
- // // update before setOption
- // if (!ecModel) {
- // return;
- // }
- // ChartView.markUpdateMethod(payload, 'updateLayout');
- // // Keep pipe to the exist pipeline because it depends on the render task of the full pipeline.
- // // this._scheduler.performVisualTasks(ecModel, payload, 'layout', true);
- // this._scheduler.performVisualTasks(ecModel, payload, {setDirty: true});
- // render(this, this._model, this._api, payload);
- // performPostUpdateFuncs(ecModel, this._api);
- }
- };
-
- function prepare(ecIns) {
- var ecModel = ecIns._model;
- var scheduler = ecIns._scheduler;
- scheduler.restorePipelines(ecModel);
- scheduler.prepareStageTasks();
- prepareView(ecIns, 'component', ecModel, scheduler);
- prepareView(ecIns, 'chart', ecModel, scheduler);
- scheduler.plan();
- }
- /**
- * @private
- */
-
-
- function updateDirectly(ecIns, method, payload, mainType, subType) {
- var ecModel = ecIns._model; // broadcast
-
- if (!mainType) {
- // FIXME
- // Chart will not be update directly here, except set dirty.
- // But there is no such scenario now.
- each(ecIns._componentsViews.concat(ecIns._chartsViews), callView);
- return;
- }
-
- var query = {};
- query[mainType + 'Id'] = payload[mainType + 'Id'];
- query[mainType + 'Index'] = payload[mainType + 'Index'];
- query[mainType + 'Name'] = payload[mainType + 'Name'];
- var condition = {
- mainType: mainType,
- query: query
- };
- subType && (condition.subType = subType); // subType may be '' by parseClassType;
-
- var excludeSeriesId = payload.excludeSeriesId;
-
- if (excludeSeriesId != null) {
- excludeSeriesId = zrUtil.createHashMap(modelUtil.normalizeToArray(excludeSeriesId));
- } // If dispatchAction before setOption, do nothing.
-
-
- ecModel && ecModel.eachComponent(condition, function (model) {
- if (!excludeSeriesId || excludeSeriesId.get(model.id) == null) {
- callView(ecIns[mainType === 'series' ? '_chartsMap' : '_componentsMap'][model.__viewId]);
- }
- }, ecIns);
-
- function callView(view) {
- view && view.__alive && view[method] && view[method](view.__model, ecModel, ecIns._api, payload);
- }
- }
- /**
- * Resize the chart
- * @param {Object} opts
- * @param {number} [opts.width] Can be 'auto' (the same as null/undefined)
- * @param {number} [opts.height] Can be 'auto' (the same as null/undefined)
- * @param {boolean} [opts.silent=false]
- */
-
-
- echartsProto.resize = function (opts) {
- if (this._disposed) {
- disposedWarning(this.id);
- return;
- }
-
- this._zr.resize(opts);
-
- var ecModel = this._model; // Resize loading effect
-
- this._loadingFX && this._loadingFX.resize();
-
- if (!ecModel) {
- return;
- }
-
- var optionChanged = ecModel.resetOption('media');
- var silent = opts && opts.silent;
- this[IN_MAIN_PROCESS] = true;
- optionChanged && prepare(this);
- updateMethods.update.call(this);
- this[IN_MAIN_PROCESS] = false;
- flushPendingActions.call(this, silent);
- triggerUpdatedEvent.call(this, silent);
- };
-
- function updateStreamModes(ecIns, ecModel) {
- var chartsMap = ecIns._chartsMap;
- var scheduler = ecIns._scheduler;
- ecModel.eachSeries(function (seriesModel) {
- scheduler.updateStreamModes(seriesModel, chartsMap[seriesModel.__viewId]);
- });
- }
- /**
- * Show loading effect
- * @param {string} [name='default']
- * @param {Object} [cfg]
- */
-
-
- echartsProto.showLoading = function (name, cfg) {
- if (this._disposed) {
- disposedWarning(this.id);
- return;
- }
-
- if (isObject(name)) {
- cfg = name;
- name = '';
- }
-
- name = name || 'default';
- this.hideLoading();
-
- if (!loadingEffects[name]) {
- return;
- }
-
- var el = loadingEffects[name](this._api, cfg);
- var zr = this._zr;
- this._loadingFX = el;
- zr.add(el);
- };
- /**
- * Hide loading effect
- */
-
-
- echartsProto.hideLoading = function () {
- if (this._disposed) {
- disposedWarning(this.id);
- return;
- }
-
- this._loadingFX && this._zr.remove(this._loadingFX);
- this._loadingFX = null;
- };
- /**
- * @param {Object} eventObj
- * @return {Object}
- */
-
-
- echartsProto.makeActionFromEvent = function (eventObj) {
- var payload = zrUtil.extend({}, eventObj);
- payload.type = eventActionMap[eventObj.type];
- return payload;
- };
- /**
- * @pubilc
- * @param {Object} payload
- * @param {string} [payload.type] Action type
- * @param {Object|boolean} [opt] If pass boolean, means opt.silent
- * @param {boolean} [opt.silent=false] Whether trigger events.
- * @param {boolean} [opt.flush=undefined]
- * true: Flush immediately, and then pixel in canvas can be fetched
- * immediately. Caution: it might affect performance.
- * false: Not flush.
- * undefined: Auto decide whether perform flush.
- */
-
-
- echartsProto.dispatchAction = function (payload, opt) {
- if (this._disposed) {
- disposedWarning(this.id);
- return;
- }
-
- if (!isObject(opt)) {
- opt = {
- silent: !!opt
- };
- }
-
- if (!actions[payload.type]) {
- return;
- } // Avoid dispatch action before setOption. Especially in `connect`.
-
-
- if (!this._model) {
- return;
- } // May dispatchAction in rendering procedure
-
-
- if (this[IN_MAIN_PROCESS]) {
- this._pendingActions.push(payload);
-
- return;
- }
-
- doDispatchAction.call(this, payload, opt.silent);
-
- if (opt.flush) {
- this._zr.flush(true);
- } else if (opt.flush !== false && env.browser.weChat) {
- // In WeChat embeded browser, `requestAnimationFrame` and `setInterval`
- // hang when sliding page (on touch event), which cause that zr does not
- // refresh util user interaction finished, which is not expected.
- // But `dispatchAction` may be called too frequently when pan on touch
- // screen, which impacts performance if do not throttle them.
- this._throttledZrFlush();
- }
-
- flushPendingActions.call(this, opt.silent);
- triggerUpdatedEvent.call(this, opt.silent);
- };
-
- function doDispatchAction(payload, silent) {
- var payloadType = payload.type;
- var escapeConnect = payload.escapeConnect;
- var actionWrap = actions[payloadType];
- var actionInfo = actionWrap.actionInfo;
- var cptType = (actionInfo.update || 'update').split(':');
- var updateMethod = cptType.pop();
- cptType = cptType[0] != null && parseClassType(cptType[0]);
- this[IN_MAIN_PROCESS] = true;
- var payloads = [payload];
- var batched = false; // Batch action
-
- if (payload.batch) {
- batched = true;
- payloads = zrUtil.map(payload.batch, function (item) {
- item = zrUtil.defaults(zrUtil.extend({}, item), payload);
- item.batch = null;
- return item;
- });
- }
-
- var eventObjBatch = [];
- var eventObj;
- var isHighDown = payloadType === 'highlight' || payloadType === 'downplay';
- each(payloads, function (batchItem) {
- // Action can specify the event by return it.
- eventObj = actionWrap.action(batchItem, this._model, this._api); // Emit event outside
-
- eventObj = eventObj || zrUtil.extend({}, batchItem); // Convert type to eventType
-
- eventObj.type = actionInfo.event || eventObj.type;
- eventObjBatch.push(eventObj); // light update does not perform data process, layout and visual.
-
- if (isHighDown) {
- // method, payload, mainType, subType
- updateDirectly(this, updateMethod, batchItem, 'series');
- } else if (cptType) {
- updateDirectly(this, updateMethod, batchItem, cptType.main, cptType.sub);
- }
- }, this);
-
- if (updateMethod !== 'none' && !isHighDown && !cptType) {
- // Still dirty
- if (this[OPTION_UPDATED]) {
- // FIXME Pass payload ?
- prepare(this);
- updateMethods.update.call(this, payload);
- this[OPTION_UPDATED] = false;
- } else {
- updateMethods[updateMethod].call(this, payload);
- }
- } // Follow the rule of action batch
-
-
- if (batched) {
- eventObj = {
- type: actionInfo.event || payloadType,
- escapeConnect: escapeConnect,
- batch: eventObjBatch
- };
- } else {
- eventObj = eventObjBatch[0];
- }
-
- this[IN_MAIN_PROCESS] = false;
- !silent && this._messageCenter.trigger(eventObj.type, eventObj);
- }
-
- function flushPendingActions(silent) {
- var pendingActions = this._pendingActions;
-
- while (pendingActions.length) {
- var payload = pendingActions.shift();
- doDispatchAction.call(this, payload, silent);
- }
- }
-
- function triggerUpdatedEvent(silent) {
- !silent && this.trigger('updated');
- }
- /**
- * Event `rendered` is triggered when zr
- * rendered. It is useful for realtime
- * snapshot (reflect animation).
- *
- * Event `finished` is triggered when:
- * (1) zrender rendering finished.
- * (2) initial animation finished.
- * (3) progressive rendering finished.
- * (4) no pending action.
- * (5) no delayed setOption needs to be processed.
- */
-
-
- function bindRenderedEvent(zr, ecIns) {
- zr.on('rendered', function () {
- ecIns.trigger('rendered'); // The `finished` event should not be triggered repeatly,
- // so it should only be triggered when rendering indeed happend
- // in zrender. (Consider the case that dipatchAction is keep
- // triggering when mouse move).
-
- if ( // Although zr is dirty if initial animation is not finished
- // and this checking is called on frame, we also check
- // animation finished for robustness.
- zr.animation.isFinished() && !ecIns[OPTION_UPDATED] && !ecIns._scheduler.unfinished && !ecIns._pendingActions.length) {
- ecIns.trigger('finished');
- }
- });
- }
- /**
- * @param {Object} params
- * @param {number} params.seriesIndex
- * @param {Array|TypedArray} params.data
- */
-
-
- echartsProto.appendData = function (params) {
- if (this._disposed) {
- disposedWarning(this.id);
- return;
- }
-
- var seriesIndex = params.seriesIndex;
- var ecModel = this.getModel();
- var seriesModel = ecModel.getSeriesByIndex(seriesIndex);
- seriesModel.appendData(params); // Note: `appendData` does not support that update extent of coordinate
- // system, util some scenario require that. In the expected usage of
- // `appendData`, the initial extent of coordinate system should better
- // be fixed by axis `min`/`max` setting or initial data, otherwise if
- // the extent changed while `appendData`, the location of the painted
- // graphic elements have to be changed, which make the usage of
- // `appendData` meaningless.
-
- this._scheduler.unfinished = true;
- };
- /**
- * Register event
- * @method
- */
-
-
- echartsProto.on = createRegisterEventWithLowercaseName('on', false);
- echartsProto.off = createRegisterEventWithLowercaseName('off', false);
- echartsProto.one = createRegisterEventWithLowercaseName('one', false);
- /**
- * Prepare view instances of charts and components
- * @param {module:echarts/model/Global} ecModel
- * @private
- */
-
- function prepareView(ecIns, type, ecModel, scheduler) {
- var isComponent = type === 'component';
- var viewList = isComponent ? ecIns._componentsViews : ecIns._chartsViews;
- var viewMap = isComponent ? ecIns._componentsMap : ecIns._chartsMap;
- var zr = ecIns._zr;
- var api = ecIns._api;
-
- for (var i = 0; i < viewList.length; i++) {
- viewList[i].__alive = false;
- }
-
- isComponent ? ecModel.eachComponent(function (componentType, model) {
- componentType !== 'series' && doPrepare(model);
- }) : ecModel.eachSeries(doPrepare);
-
- function doPrepare(model) {
- // Consider: id same and type changed.
- var viewId = '_ec_' + model.id + '_' + model.type;
- var view = viewMap[viewId];
-
- if (!view) {
- var classType = parseClassType(model.type);
- var Clazz = isComponent ? ComponentView.getClass(classType.main, classType.sub) : ChartView.getClass(classType.sub);
- view = new Clazz();
- view.init(ecModel, api);
- viewMap[viewId] = view;
- viewList.push(view);
- zr.add(view.group);
- }
-
- model.__viewId = view.__id = viewId;
- view.__alive = true;
- view.__model = model;
- view.group.__ecComponentInfo = {
- mainType: model.mainType,
- index: model.componentIndex
- };
- !isComponent && scheduler.prepareView(view, model, ecModel, api);
- }
-
- for (var i = 0; i < viewList.length;) {
- var view = viewList[i];
-
- if (!view.__alive) {
- !isComponent && view.renderTask.dispose();
- zr.remove(view.group);
- view.dispose(ecModel, api);
- viewList.splice(i, 1);
- delete viewMap[view.__id];
- view.__id = view.group.__ecComponentInfo = null;
- } else {
- i++;
- }
- }
- } // /**
- // * Encode visual infomation from data after data processing
- // *
- // * @param {module:echarts/model/Global} ecModel
- // * @param {object} layout
- // * @param {boolean} [layoutFilter] `true`: only layout,
- // * `false`: only not layout,
- // * `null`/`undefined`: all.
- // * @param {string} taskBaseTag
- // * @private
- // */
- // function startVisualEncoding(ecIns, ecModel, api, payload, layoutFilter) {
- // each(visualFuncs, function (visual, index) {
- // var isLayout = visual.isLayout;
- // if (layoutFilter == null
- // || (layoutFilter === false && !isLayout)
- // || (layoutFilter === true && isLayout)
- // ) {
- // visual.func(ecModel, api, payload);
- // }
- // });
- // }
-
-
- function clearColorPalette(ecModel) {
- ecModel.clearColorPalette();
- ecModel.eachSeries(function (seriesModel) {
- seriesModel.clearColorPalette();
- });
- }
-
- function render(ecIns, ecModel, api, payload) {
- renderComponents(ecIns, ecModel, api, payload);
- each(ecIns._chartsViews, function (chart) {
- chart.__alive = false;
- });
- renderSeries(ecIns, ecModel, api, payload); // Remove groups of unrendered charts
-
- each(ecIns._chartsViews, function (chart) {
- if (!chart.__alive) {
- chart.remove(ecModel, api);
- }
- });
- }
-
- function renderComponents(ecIns, ecModel, api, payload, dirtyList) {
- each(dirtyList || ecIns._componentsViews, function (componentView) {
- var componentModel = componentView.__model;
- componentView.render(componentModel, ecModel, api, payload);
- updateZ(componentModel, componentView);
- });
- }
- /**
- * Render each chart and component
- * @private
- */
-
-
- function renderSeries(ecIns, ecModel, api, payload, dirtyMap) {
- // Render all charts
- var scheduler = ecIns._scheduler;
- var unfinished;
- ecModel.eachSeries(function (seriesModel) {
- var chartView = ecIns._chartsMap[seriesModel.__viewId];
- chartView.__alive = true;
- var renderTask = chartView.renderTask;
- scheduler.updatePayload(renderTask, payload);
-
- if (dirtyMap && dirtyMap.get(seriesModel.uid)) {
- renderTask.dirty();
- }
-
- unfinished |= renderTask.perform(scheduler.getPerformArgs(renderTask));
- chartView.group.silent = !!seriesModel.get('silent');
- updateZ(seriesModel, chartView);
- updateBlend(seriesModel, chartView);
- });
- scheduler.unfinished |= unfinished; // If use hover layer
-
- updateHoverLayerStatus(ecIns, ecModel); // Add aria
-
- aria(ecIns._zr.dom, ecModel);
- }
-
- function performPostUpdateFuncs(ecModel, api) {
- each(postUpdateFuncs, function (func) {
- func(ecModel, api);
- });
- }
-
- var MOUSE_EVENT_NAMES = ['click', 'dblclick', 'mouseover', 'mouseout', 'mousemove', 'mousedown', 'mouseup', 'globalout', 'contextmenu'];
- /**
- * @private
- */
-
- echartsProto._initEvents = function () {
- each(MOUSE_EVENT_NAMES, function (eveName) {
- var handler = function (e) {
- var ecModel = this.getModel();
- var el = e.target;
- var params;
- var isGlobalOut = eveName === 'globalout'; // no e.target when 'globalout'.
-
- if (isGlobalOut) {
- params = {};
- } else if (el && el.dataIndex != null) {
- var dataModel = el.dataModel || ecModel.getSeriesByIndex(el.seriesIndex);
- params = dataModel && dataModel.getDataParams(el.dataIndex, el.dataType, el) || {};
- } // If element has custom eventData of components
- else if (el && el.eventData) {
- params = zrUtil.extend({}, el.eventData);
- } // Contract: if params prepared in mouse event,
- // these properties must be specified:
- // {
- // componentType: string (component main type)
- // componentIndex: number
- // }
- // Otherwise event query can not work.
-
-
- if (params) {
- var componentType = params.componentType;
- var componentIndex = params.componentIndex; // Special handling for historic reason: when trigger by
- // markLine/markPoint/markArea, the componentType is
- // 'markLine'/'markPoint'/'markArea', but we should better
- // enable them to be queried by seriesIndex, since their
- // option is set in each series.
-
- if (componentType === 'markLine' || componentType === 'markPoint' || componentType === 'markArea') {
- componentType = 'series';
- componentIndex = params.seriesIndex;
- }
-
- var model = componentType && componentIndex != null && ecModel.getComponent(componentType, componentIndex);
- var view = model && this[model.mainType === 'series' ? '_chartsMap' : '_componentsMap'][model.__viewId];
- params.event = e;
- params.type = eveName;
- this._ecEventProcessor.eventInfo = {
- targetEl: el,
- packedEvent: params,
- model: model,
- view: view
- };
- this.trigger(eveName, params);
- }
- }; // Consider that some component (like tooltip, brush, ...)
- // register zr event handler, but user event handler might
- // do anything, such as call `setOption` or `dispatchAction`,
- // which probably update any of the content and probably
- // cause problem if it is called previous other inner handlers.
-
-
- handler.zrEventfulCallAtLast = true;
-
- this._zr.on(eveName, handler, this);
- }, this);
- each(eventActionMap, function (actionType, eventType) {
- this._messageCenter.on(eventType, function (event) {
- this.trigger(eventType, event);
- }, this);
- }, this);
- };
- /**
- * @return {boolean}
- */
-
-
- echartsProto.isDisposed = function () {
- return this._disposed;
- };
- /**
- * Clear
- */
-
-
- echartsProto.clear = function () {
- if (this._disposed) {
- disposedWarning(this.id);
- return;
- }
-
- this.setOption({
- series: []
- }, true);
- };
- /**
- * Dispose instance
- */
-
-
- echartsProto.dispose = function () {
- if (this._disposed) {
- disposedWarning(this.id);
- return;
- }
-
- this._disposed = true;
- modelUtil.setAttribute(this.getDom(), DOM_ATTRIBUTE_KEY, '');
- var api = this._api;
- var ecModel = this._model;
- each(this._componentsViews, function (component) {
- component.dispose(ecModel, api);
- });
- each(this._chartsViews, function (chart) {
- chart.dispose(ecModel, api);
- }); // Dispose after all views disposed
-
- this._zr.dispose();
-
- delete instances[this.id];
- };
-
- zrUtil.mixin(ECharts, Eventful);
-
- function disposedWarning(id) {}
-
- function updateHoverLayerStatus(ecIns, ecModel) {
- var zr = ecIns._zr;
- var storage = zr.storage;
- var elCount = 0;
- storage.traverse(function (el) {
- elCount++;
- });
-
- if (elCount > ecModel.get('hoverLayerThreshold') && !env.node) {
- ecModel.eachSeries(function (seriesModel) {
- if (seriesModel.preventUsingHoverLayer) {
- return;
- }
-
- var chartView = ecIns._chartsMap[seriesModel.__viewId];
-
- if (chartView.__alive) {
- chartView.group.traverse(function (el) {
- // Don't switch back.
- el.useHoverLayer = true;
- });
- }
- });
- }
- }
- /**
- * Update chart progressive and blend.
- * @param {module:echarts/model/Series|module:echarts/model/Component} model
- * @param {module:echarts/view/Component|module:echarts/view/Chart} view
- */
-
-
- function updateBlend(seriesModel, chartView) {
- var blendMode = seriesModel.get('blendMode') || null;
- chartView.group.traverse(function (el) {
- // FIXME marker and other components
- if (!el.isGroup) {
- // Only set if blendMode is changed. In case element is incremental and don't wan't to rerender.
- if (el.style.blend !== blendMode) {
- el.setStyle('blend', blendMode);
- }
- }
-
- if (el.eachPendingDisplayable) {
- el.eachPendingDisplayable(function (displayable) {
- displayable.setStyle('blend', blendMode);
- });
- }
- });
- }
- /**
- * @param {module:echarts/model/Series|module:echarts/model/Component} model
- * @param {module:echarts/view/Component|module:echarts/view/Chart} view
- */
-
-
- function updateZ(model, view) {
- var z = model.get('z');
- var zlevel = model.get('zlevel'); // Set z and zlevel
-
- view.group.traverse(function (el) {
- if (el.type !== 'group') {
- z != null && (el.z = z);
- zlevel != null && (el.zlevel = zlevel);
- }
- });
- }
-
- function createExtensionAPI(ecInstance) {
- var coordSysMgr = ecInstance._coordSysMgr;
- return zrUtil.extend(new ExtensionAPI(ecInstance), {
- // Inject methods
- getCoordinateSystems: zrUtil.bind(coordSysMgr.getCoordinateSystems, coordSysMgr),
- getComponentByElement: function (el) {
- while (el) {
- var modelInfo = el.__ecComponentInfo;
-
- if (modelInfo != null) {
- return ecInstance._model.getComponent(modelInfo.mainType, modelInfo.index);
- }
-
- el = el.parent;
- }
- }
- });
- }
- /**
- * @class
- * Usage of query:
- * `chart.on('click', query, handler);`
- * The `query` can be:
- * + The component type query string, only `mainType` or `mainType.subType`,
- * like: 'xAxis', 'series', 'xAxis.category' or 'series.line'.
- * + The component query object, like:
- * `{seriesIndex: 2}`, `{seriesName: 'xx'}`, `{seriesId: 'some'}`,
- * `{xAxisIndex: 2}`, `{xAxisName: 'xx'}`, `{xAxisId: 'some'}`.
- * + The data query object, like:
- * `{dataIndex: 123}`, `{dataType: 'link'}`, `{name: 'some'}`.
- * + The other query object (cmponent customized query), like:
- * `{element: 'some'}` (only available in custom series).
- *
- * Caveat: If a prop in the `query` object is `null/undefined`, it is the
- * same as there is no such prop in the `query` object.
- */
-
-
- function EventProcessor() {
- // These info required: targetEl, packedEvent, model, view
- this.eventInfo;
- }
-
- EventProcessor.prototype = {
- constructor: EventProcessor,
- normalizeQuery: function (query) {
- var cptQuery = {};
- var dataQuery = {};
- var otherQuery = {}; // `query` is `mainType` or `mainType.subType` of component.
-
- if (zrUtil.isString(query)) {
- var condCptType = parseClassType(query); // `.main` and `.sub` may be ''.
-
- cptQuery.mainType = condCptType.main || null;
- cptQuery.subType = condCptType.sub || null;
- } // `query` is an object, convert to {mainType, index, name, id}.
- else {
- // `xxxIndex`, `xxxName`, `xxxId`, `name`, `dataIndex`, `dataType` is reserved,
- // can not be used in `compomentModel.filterForExposedEvent`.
- var suffixes = ['Index', 'Name', 'Id'];
- var dataKeys = {
- name: 1,
- dataIndex: 1,
- dataType: 1
- };
- zrUtil.each(query, function (val, key) {
- var reserved = false;
-
- for (var i = 0; i < suffixes.length; i++) {
- var propSuffix = suffixes[i];
- var suffixPos = key.lastIndexOf(propSuffix);
-
- if (suffixPos > 0 && suffixPos === key.length - propSuffix.length) {
- var mainType = key.slice(0, suffixPos); // Consider `dataIndex`.
-
- if (mainType !== 'data') {
- cptQuery.mainType = mainType;
- cptQuery[propSuffix.toLowerCase()] = val;
- reserved = true;
- }
- }
- }
-
- if (dataKeys.hasOwnProperty(key)) {
- dataQuery[key] = val;
- reserved = true;
- }
-
- if (!reserved) {
- otherQuery[key] = val;
- }
- });
- }
-
- return {
- cptQuery: cptQuery,
- dataQuery: dataQuery,
- otherQuery: otherQuery
- };
- },
- filter: function (eventType, query, args) {
- // They should be assigned before each trigger call.
- var eventInfo = this.eventInfo;
-
- if (!eventInfo) {
- return true;
- }
-
- var targetEl = eventInfo.targetEl;
- var packedEvent = eventInfo.packedEvent;
- var model = eventInfo.model;
- var view = eventInfo.view; // For event like 'globalout'.
-
- if (!model || !view) {
- return true;
- }
-
- var cptQuery = query.cptQuery;
- var dataQuery = query.dataQuery;
- return check(cptQuery, model, 'mainType') && check(cptQuery, model, 'subType') && check(cptQuery, model, 'index', 'componentIndex') && check(cptQuery, model, 'name') && check(cptQuery, model, 'id') && check(dataQuery, packedEvent, 'name') && check(dataQuery, packedEvent, 'dataIndex') && check(dataQuery, packedEvent, 'dataType') && (!view.filterForExposedEvent || view.filterForExposedEvent(eventType, query.otherQuery, targetEl, packedEvent));
-
- function check(query, host, prop, propOnHost) {
- return query[prop] == null || host[propOnHost || prop] === query[prop];
- }
- },
- afterTrigger: function () {
- // Make sure the eventInfo wont be used in next trigger.
- this.eventInfo = null;
- }
- };
- /**
- * @type {Object} key: actionType.
- * @inner
- */
-
- var actions = {};
- /**
- * Map eventType to actionType
- * @type {Object}
- */
-
- var eventActionMap = {};
- /**
- * Data processor functions of each stage
- * @type {Array.<Object.<string, Function>>}
- * @inner
- */
-
- var dataProcessorFuncs = [];
- /**
- * @type {Array.<Function>}
- * @inner
- */
-
- var optionPreprocessorFuncs = [];
- /**
- * @type {Array.<Function>}
- * @inner
- */
-
- var postUpdateFuncs = [];
- /**
- * Visual encoding functions of each stage
- * @type {Array.<Object.<string, Function>>}
- */
-
- var visualFuncs = [];
- /**
- * Theme storage
- * @type {Object.<key, Object>}
- */
-
- var themeStorage = {};
- /**
- * Loading effects
- */
-
- var loadingEffects = {};
- var instances = {};
- var connectedGroups = {};
- var idBase = new Date() - 0;
- var groupIdBase = new Date() - 0;
- var DOM_ATTRIBUTE_KEY = '_echarts_instance_';
-
- function enableConnect(chart) {
- var STATUS_PENDING = 0;
- var STATUS_UPDATING = 1;
- var STATUS_UPDATED = 2;
- var STATUS_KEY = '__connectUpdateStatus';
-
- function updateConnectedChartsStatus(charts, status) {
- for (var i = 0; i < charts.length; i++) {
- var otherChart = charts[i];
- otherChart[STATUS_KEY] = status;
- }
- }
-
- each(eventActionMap, function (actionType, eventType) {
- chart._messageCenter.on(eventType, function (event) {
- if (connectedGroups[chart.group] && chart[STATUS_KEY] !== STATUS_PENDING) {
- if (event && event.escapeConnect) {
- return;
- }
-
- var action = chart.makeActionFromEvent(event);
- var otherCharts = [];
- each(instances, function (otherChart) {
- if (otherChart !== chart && otherChart.group === chart.group) {
- otherCharts.push(otherChart);
- }
- });
- updateConnectedChartsStatus(otherCharts, STATUS_PENDING);
- each(otherCharts, function (otherChart) {
- if (otherChart[STATUS_KEY] !== STATUS_UPDATING) {
- otherChart.dispatchAction(action);
- }
- });
- updateConnectedChartsStatus(otherCharts, STATUS_UPDATED);
- }
- });
- });
- }
- /**
- * @param {HTMLElement} dom
- * @param {Object} [theme]
- * @param {Object} opts
- * @param {number} [opts.devicePixelRatio] Use window.devicePixelRatio by default
- * @param {string} [opts.renderer] Can choose 'canvas' or 'svg' to render the chart.
- * @param {number} [opts.width] Use clientWidth of the input `dom` by default.
- * Can be 'auto' (the same as null/undefined)
- * @param {number} [opts.height] Use clientHeight of the input `dom` by default.
- * Can be 'auto' (the same as null/undefined)
- */
-
-
- function init(dom, theme, opts) {
- var existInstance = getInstanceByDom(dom);
-
- if (existInstance) {
- return existInstance;
- }
-
- var chart = new ECharts(dom, theme, opts);
- chart.id = 'ec_' + idBase++;
- instances[chart.id] = chart;
- modelUtil.setAttribute(dom, DOM_ATTRIBUTE_KEY, chart.id);
- enableConnect(chart);
- return chart;
- }
- /**
- * @return {string|Array.<module:echarts~ECharts>} groupId
- */
-
-
- function connect(groupId) {
- // Is array of charts
- if (zrUtil.isArray(groupId)) {
- var charts = groupId;
- groupId = null; // If any chart has group
-
- each(charts, function (chart) {
- if (chart.group != null) {
- groupId = chart.group;
- }
- });
- groupId = groupId || 'g_' + groupIdBase++;
- each(charts, function (chart) {
- chart.group = groupId;
- });
- }
-
- connectedGroups[groupId] = true;
- return groupId;
- }
- /**
- * @DEPRECATED
- * @return {string} groupId
- */
-
-
- function disConnect(groupId) {
- connectedGroups[groupId] = false;
- }
- /**
- * @return {string} groupId
- */
-
-
- var disconnect = disConnect;
- /**
- * Dispose a chart instance
- * @param {module:echarts~ECharts|HTMLDomElement|string} chart
- */
-
- function dispose(chart) {
- if (typeof chart === 'string') {
- chart = instances[chart];
- } else if (!(chart instanceof ECharts)) {
- // Try to treat as dom
- chart = getInstanceByDom(chart);
- }
-
- if (chart instanceof ECharts && !chart.isDisposed()) {
- chart.dispose();
- }
- }
- /**
- * @param {HTMLElement} dom
- * @return {echarts~ECharts}
- */
-
-
- function getInstanceByDom(dom) {
- return instances[modelUtil.getAttribute(dom, DOM_ATTRIBUTE_KEY)];
- }
- /**
- * @param {string} key
- * @return {echarts~ECharts}
- */
-
-
- function getInstanceById(key) {
- return instances[key];
- }
- /**
- * Register theme
- */
-
-
- function registerTheme(name, theme) {
- themeStorage[name] = theme;
- }
- /**
- * Register option preprocessor
- * @param {Function} preprocessorFunc
- */
-
-
- function registerPreprocessor(preprocessorFunc) {
- optionPreprocessorFuncs.push(preprocessorFunc);
- }
- /**
- * @param {number} [priority=1000]
- * @param {Object|Function} processor
- */
-
-
- function registerProcessor(priority, processor) {
- normalizeRegister(dataProcessorFuncs, priority, processor, PRIORITY_PROCESSOR_FILTER);
- }
- /**
- * Register postUpdater
- * @param {Function} postUpdateFunc
- */
-
-
- function registerPostUpdate(postUpdateFunc) {
- postUpdateFuncs.push(postUpdateFunc);
- }
- /**
- * Usage:
- * registerAction('someAction', 'someEvent', function () { ... });
- * registerAction('someAction', function () { ... });
- * registerAction(
- * {type: 'someAction', event: 'someEvent', update: 'updateView'},
- * function () { ... }
- * );
- *
- * @param {(string|Object)} actionInfo
- * @param {string} actionInfo.type
- * @param {string} [actionInfo.event]
- * @param {string} [actionInfo.update]
- * @param {string} [eventName]
- * @param {Function} action
- */
-
-
- function registerAction(actionInfo, eventName, action) {
- if (typeof eventName === 'function') {
- action = eventName;
- eventName = '';
- }
-
- var actionType = isObject(actionInfo) ? actionInfo.type : [actionInfo, actionInfo = {
- event: eventName
- }][0]; // Event name is all lowercase
-
- actionInfo.event = (actionInfo.event || actionType).toLowerCase();
- eventName = actionInfo.event; // Validate action type and event name.
-
- assert(ACTION_REG.test(actionType) && ACTION_REG.test(eventName));
-
- if (!actions[actionType]) {
- actions[actionType] = {
- action: action,
- actionInfo: actionInfo
- };
- }
-
- eventActionMap[eventName] = actionType;
- }
- /**
- * @param {string} type
- * @param {*} CoordinateSystem
- */
-
-
- function registerCoordinateSystem(type, CoordinateSystem) {
- CoordinateSystemManager.register(type, CoordinateSystem);
- }
- /**
- * Get dimensions of specified coordinate system.
- * @param {string} type
- * @return {Array.<string|Object>}
- */
-
-
- function getCoordinateSystemDimensions(type) {
- var coordSysCreator = CoordinateSystemManager.get(type);
-
- if (coordSysCreator) {
- return coordSysCreator.getDimensionsInfo ? coordSysCreator.getDimensionsInfo() : coordSysCreator.dimensions.slice();
- }
- }
- /**
- * Layout is a special stage of visual encoding
- * Most visual encoding like color are common for different chart
- * But each chart has it's own layout algorithm
- *
- * @param {number} [priority=1000]
- * @param {Function} layoutTask
- */
-
-
- function registerLayout(priority, layoutTask) {
- normalizeRegister(visualFuncs, priority, layoutTask, PRIORITY_VISUAL_LAYOUT, 'layout');
- }
- /**
- * @param {number} [priority=3000]
- * @param {module:echarts/stream/Task} visualTask
- */
-
-
- function registerVisual(priority, visualTask) {
- normalizeRegister(visualFuncs, priority, visualTask, PRIORITY_VISUAL_CHART, 'visual');
- }
- /**
- * @param {Object|Function} fn: {seriesType, createOnAllSeries, performRawSeries, reset}
- */
-
-
- function normalizeRegister(targetList, priority, fn, defaultPriority, visualType) {
- if (isFunction(priority) || isObject(priority)) {
- fn = priority;
- priority = defaultPriority;
- }
-
- var stageHandler = Scheduler.wrapStageHandler(fn, visualType);
- stageHandler.__prio = priority;
- stageHandler.__raw = fn;
- targetList.push(stageHandler);
- return stageHandler;
- }
- /**
- * @param {string} name
- */
-
-
- function registerLoading(name, loadingFx) {
- loadingEffects[name] = loadingFx;
- }
- /**
- * @param {Object} opts
- * @param {string} [superClass]
- */
-
-
- function extendComponentModel(opts
- /*, superClass*/
- ) {
- // var Clazz = ComponentModel;
- // if (superClass) {
- // var classType = parseClassType(superClass);
- // Clazz = ComponentModel.getClass(classType.main, classType.sub, true);
- // }
- return ComponentModel.extend(opts);
- }
- /**
- * @param {Object} opts
- * @param {string} [superClass]
- */
-
-
- function extendComponentView(opts
- /*, superClass*/
- ) {
- // var Clazz = ComponentView;
- // if (superClass) {
- // var classType = parseClassType(superClass);
- // Clazz = ComponentView.getClass(classType.main, classType.sub, true);
- // }
- return ComponentView.extend(opts);
- }
- /**
- * @param {Object} opts
- * @param {string} [superClass]
- */
-
-
- function extendSeriesModel(opts
- /*, superClass*/
- ) {
- // var Clazz = SeriesModel;
- // if (superClass) {
- // superClass = 'series.' + superClass.replace('series.', '');
- // var classType = parseClassType(superClass);
- // Clazz = ComponentModel.getClass(classType.main, classType.sub, true);
- // }
- return SeriesModel.extend(opts);
- }
- /**
- * @param {Object} opts
- * @param {string} [superClass]
- */
-
-
- function extendChartView(opts
- /*, superClass*/
- ) {
- // var Clazz = ChartView;
- // if (superClass) {
- // superClass = superClass.replace('series.', '');
- // var classType = parseClassType(superClass);
- // Clazz = ChartView.getClass(classType.main, true);
- // }
- return ChartView.extend(opts);
- }
- /**
- * ZRender need a canvas context to do measureText.
- * But in node environment canvas may be created by node-canvas.
- * So we need to specify how to create a canvas instead of using document.createElement('canvas')
- *
- * Be careful of using it in the browser.
- *
- * @param {Function} creator
- * @example
- * var Canvas = require('canvas');
- * var echarts = require('echarts');
- * echarts.setCanvasCreator(function () {
- * // Small size is enough.
- * return new Canvas(32, 32);
- * });
- */
-
-
- function setCanvasCreator(creator) {
- zrUtil.$override('createCanvas', creator);
- }
- /**
- * @param {string} mapName
- * @param {Array.<Object>|Object|string} geoJson
- * @param {Object} [specialAreas]
- *
- * @example GeoJSON
- * $.get('USA.json', function (geoJson) {
- * echarts.registerMap('USA', geoJson);
- * // Or
- * echarts.registerMap('USA', {
- * geoJson: geoJson,
- * specialAreas: {}
- * })
- * });
- *
- * $.get('airport.svg', function (svg) {
- * echarts.registerMap('airport', {
- * svg: svg
- * }
- * });
- *
- * echarts.registerMap('eu', [
- * {svg: eu-topographic.svg},
- * {geoJSON: eu.json}
- * ])
- */
-
-
- function registerMap(mapName, geoJson, specialAreas) {
- mapDataStorage.registerMap(mapName, geoJson, specialAreas);
- }
- /**
- * @param {string} mapName
- * @return {Object}
- */
-
-
- function getMap(mapName) {
- // For backward compatibility, only return the first one.
- var records = mapDataStorage.retrieveMap(mapName);
- return records && records[0] && {
- geoJson: records[0].geoJSON,
- specialAreas: records[0].specialAreas
- };
- }
-
- registerVisual(PRIORITY_VISUAL_GLOBAL, seriesColor);
- registerPreprocessor(backwardCompat);
- registerProcessor(PRIORITY_PROCESSOR_DATASTACK, dataStack);
- registerLoading('default', loadingDefault); // Default actions
-
- registerAction({
- type: 'highlight',
- event: 'highlight',
- update: 'highlight'
- }, zrUtil.noop);
- registerAction({
- type: 'downplay',
- event: 'downplay',
- update: 'downplay'
- }, zrUtil.noop); // Default theme
-
- registerTheme('light', lightTheme);
- registerTheme('dark', darkTheme); // For backward compatibility, where the namespace `dataTool` will
- // be mounted on `echarts` is the extension `dataTool` is imported.
-
- var dataTool = {};
- exports.version = version;
- exports.dependencies = dependencies;
- exports.PRIORITY = PRIORITY;
- exports.init = init;
- exports.connect = connect;
- exports.disConnect = disConnect;
- exports.disconnect = disconnect;
- exports.dispose = dispose;
- exports.getInstanceByDom = getInstanceByDom;
- exports.getInstanceById = getInstanceById;
- exports.registerTheme = registerTheme;
- exports.registerPreprocessor = registerPreprocessor;
- exports.registerProcessor = registerProcessor;
- exports.registerPostUpdate = registerPostUpdate;
- exports.registerAction = registerAction;
- exports.registerCoordinateSystem = registerCoordinateSystem;
- exports.getCoordinateSystemDimensions = getCoordinateSystemDimensions;
- exports.registerLayout = registerLayout;
- exports.registerVisual = registerVisual;
- exports.registerLoading = registerLoading;
- exports.extendComponentModel = extendComponentModel;
- exports.extendComponentView = extendComponentView;
- exports.extendSeriesModel = extendSeriesModel;
- exports.extendChartView = extendChartView;
- exports.setCanvasCreator = setCanvasCreator;
- exports.registerMap = registerMap;
- exports.getMap = getMap;
- exports.dataTool = dataTool;
- var ___ec_export = __webpack_require__(2283);
- (function () {
- for (var key in ___ec_export) {
- if (___ec_export.hasOwnProperty(key)) {
- exports[key] = ___ec_export[key];
- }
- }
- })();
-
- /***/ }),
-
- /***/ 882:
- /***/ (function(module, exports, __webpack_require__) {
-
- var baseIsArguments = __webpack_require__(939),
- isObjectLike = __webpack_require__(302);
-
- /** Used for built-in method references. */
- var objectProto = Object.prototype;
-
- /** Used to check objects for own properties. */
- var hasOwnProperty = objectProto.hasOwnProperty;
-
- /** Built-in value references. */
- var propertyIsEnumerable = objectProto.propertyIsEnumerable;
-
- /**
- * Checks if `value` is likely an `arguments` object.
- *
- * @static
- * @memberOf _
- * @since 0.1.0
- * @category Lang
- * @param {*} value The value to check.
- * @returns {boolean} Returns `true` if `value` is an `arguments` object,
- * else `false`.
- * @example
- *
- * _.isArguments(function() { return arguments; }());
- * // => true
- *
- * _.isArguments([1, 2, 3]);
- * // => false
- */
- var isArguments = baseIsArguments(function() { return arguments; }()) ? baseIsArguments : function(value) {
- return isObjectLike(value) && hasOwnProperty.call(value, 'callee') &&
- !propertyIsEnumerable.call(value, 'callee');
- };
-
- module.exports = isArguments;
-
-
- /***/ }),
-
- /***/ 886:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- /* harmony default export */ __webpack_exports__["a"] = ({
- ZERO: 48,
- NINE: 57,
-
- NUMPAD_ZERO: 96,
- NUMPAD_NINE: 105,
-
- BACKSPACE: 8,
- DELETE: 46,
- ENTER: 13,
-
- ARROW_UP: 38,
- ARROW_DOWN: 40
- });
-
- /***/ }),
-
- /***/ 887:
- /***/ (function(module, exports, __webpack_require__) {
-
- var defineProperty = __webpack_require__(902);
-
- /**
- * The base implementation of `assignValue` and `assignMergeValue` without
- * value checks.
- *
- * @private
- * @param {Object} object The object to modify.
- * @param {string} key The key of the property to assign.
- * @param {*} value The value to assign.
- */
- function baseAssignValue(object, key, value) {
- if (key == '__proto__' && defineProperty) {
- defineProperty(object, key, {
- 'configurable': true,
- 'enumerable': true,
- 'value': value,
- 'writable': true
- });
- } else {
- object[key] = value;
- }
- }
-
- module.exports = baseAssignValue;
-
-
- /***/ }),
-
- /***/ 888:
- /***/ (function(module, exports, __webpack_require__) {
-
- var baseGet = __webpack_require__(890);
-
- /**
- * Gets the value at `path` of `object`. If the resolved value is
- * `undefined`, the `defaultValue` is returned in its place.
- *
- * @static
- * @memberOf _
- * @since 3.7.0
- * @category Object
- * @param {Object} object The object to query.
- * @param {Array|string} path The path of the property to get.
- * @param {*} [defaultValue] The value returned for `undefined` resolved values.
- * @returns {*} Returns the resolved value.
- * @example
- *
- * var object = { 'a': [{ 'b': { 'c': 3 } }] };
- *
- * _.get(object, 'a[0].b.c');
- * // => 3
- *
- * _.get(object, ['a', '0', 'b', 'c']);
- * // => 3
- *
- * _.get(object, 'a.b.c', 'default');
- * // => 'default'
- */
- function get(object, path, defaultValue) {
- var result = object == null ? undefined : baseGet(object, path);
- return result === undefined ? defaultValue : result;
- }
-
- module.exports = get;
-
-
- /***/ }),
-
- /***/ 889:
- /***/ (function(module, exports) {
-
- /** Used for built-in method references. */
- var funcProto = Function.prototype;
-
- /** Used to resolve the decompiled source of functions. */
- var funcToString = funcProto.toString;
-
- /**
- * Converts `func` to its source code.
- *
- * @private
- * @param {Function} func The function to convert.
- * @returns {string} Returns the source code.
- */
- function toSource(func) {
- if (func != null) {
- try {
- return funcToString.call(func);
- } catch (e) {}
- try {
- return (func + '');
- } catch (e) {}
- }
- return '';
- }
-
- module.exports = toSource;
-
-
- /***/ }),
-
- /***/ 890:
- /***/ (function(module, exports, __webpack_require__) {
-
- var castPath = __webpack_require__(874),
- toKey = __webpack_require__(871);
-
- /**
- * The base implementation of `_.get` without support for default values.
- *
- * @private
- * @param {Object} object The object to query.
- * @param {Array|string} path The path of the property to get.
- * @returns {*} Returns the resolved value.
- */
- function baseGet(object, path) {
- path = castPath(path, object);
-
- var index = 0,
- length = path.length;
-
- while (object != null && index < length) {
- object = object[toKey(path[index++])];
- }
- return (index && index == length) ? object : undefined;
- }
-
- module.exports = baseGet;
-
-
- /***/ }),
-
- /***/ 894:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports["default"] = exports.SiderContext = void 0;
-
- var _createReactContext = _interopRequireDefault(__webpack_require__(301));
-
- var React = _interopRequireWildcard(__webpack_require__(0));
-
- var _reactLifecyclesCompat = __webpack_require__(7);
-
- var _classnames = _interopRequireDefault(__webpack_require__(3));
-
- var _omit = _interopRequireDefault(__webpack_require__(47));
-
- var _layout = __webpack_require__(968);
-
- var _configProvider = __webpack_require__(11);
-
- var _icon = _interopRequireDefault(__webpack_require__(26));
-
- var _isNumeric = _interopRequireDefault(__webpack_require__(973));
-
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
-
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
-
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
-
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
-
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
-
- function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
-
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
-
- 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 _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
-
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
-
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
-
- var __rest = void 0 && (void 0).__rest || function (s, e) {
- var t = {};
-
- for (var p in s) {
- if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
- }
-
- if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
- }
- return t;
- };
-
- // matchMedia polyfill for
- // https://github.com/WickyNilliams/enquire.js/issues/82
- // TODO: Will be removed in antd 4.0 because we will no longer support ie9
- if (typeof window !== 'undefined') {
- var matchMediaPolyfill = function matchMediaPolyfill(mediaQuery) {
- return {
- media: mediaQuery,
- matches: false,
- addListener: function addListener() {},
- removeListener: function removeListener() {}
- };
- }; // ref: https://github.com/ant-design/ant-design/issues/18774
-
-
- if (!window.matchMedia) window.matchMedia = matchMediaPolyfill;
- }
-
- var dimensionMaxMap = {
- xs: '479.98px',
- sm: '575.98px',
- md: '767.98px',
- lg: '991.98px',
- xl: '1199.98px',
- xxl: '1599.98px'
- };
- var SiderContext = (0, _createReactContext["default"])({});
- exports.SiderContext = SiderContext;
-
- var generateId = function () {
- var i = 0;
- return function () {
- var prefix = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
- i += 1;
- return "".concat(prefix).concat(i);
- };
- }();
-
- var InternalSider =
- /*#__PURE__*/
- function (_React$Component) {
- _inherits(InternalSider, _React$Component);
-
- function InternalSider(props) {
- var _this;
-
- _classCallCheck(this, InternalSider);
-
- _this = _possibleConstructorReturn(this, _getPrototypeOf(InternalSider).call(this, props));
-
- _this.responsiveHandler = function (mql) {
- _this.setState({
- below: mql.matches
- });
-
- var onBreakpoint = _this.props.onBreakpoint;
-
- if (onBreakpoint) {
- onBreakpoint(mql.matches);
- }
-
- if (_this.state.collapsed !== mql.matches) {
- _this.setCollapsed(mql.matches, 'responsive');
- }
- };
-
- _this.setCollapsed = function (collapsed, type) {
- if (!('collapsed' in _this.props)) {
- _this.setState({
- collapsed: collapsed
- });
- }
-
- var onCollapse = _this.props.onCollapse;
-
- if (onCollapse) {
- onCollapse(collapsed, type);
- }
- };
-
- _this.toggle = function () {
- var collapsed = !_this.state.collapsed;
-
- _this.setCollapsed(collapsed, 'clickTrigger');
- };
-
- _this.belowShowChange = function () {
- _this.setState(function (_ref) {
- var belowShow = _ref.belowShow;
- return {
- belowShow: !belowShow
- };
- });
- };
-
- _this.renderSider = function (_ref2) {
- var _classNames;
-
- var getPrefixCls = _ref2.getPrefixCls;
-
- var _a = _this.props,
- customizePrefixCls = _a.prefixCls,
- className = _a.className,
- theme = _a.theme,
- collapsible = _a.collapsible,
- reverseArrow = _a.reverseArrow,
- trigger = _a.trigger,
- style = _a.style,
- width = _a.width,
- collapsedWidth = _a.collapsedWidth,
- zeroWidthTriggerStyle = _a.zeroWidthTriggerStyle,
- others = __rest(_a, ["prefixCls", "className", "theme", "collapsible", "reverseArrow", "trigger", "style", "width", "collapsedWidth", "zeroWidthTriggerStyle"]);
-
- var prefixCls = getPrefixCls('layout-sider', customizePrefixCls);
- var divProps = (0, _omit["default"])(others, ['collapsed', 'defaultCollapsed', 'onCollapse', 'breakpoint', 'onBreakpoint', 'siderHook', 'zeroWidthTriggerStyle']);
- var rawWidth = _this.state.collapsed ? collapsedWidth : width; // use "px" as fallback unit for width
-
- var siderWidth = (0, _isNumeric["default"])(rawWidth) ? "".concat(rawWidth, "px") : String(rawWidth); // special trigger when collapsedWidth == 0
-
- var zeroWidthTrigger = parseFloat(String(collapsedWidth || 0)) === 0 ? React.createElement("span", {
- onClick: _this.toggle,
- className: "".concat(prefixCls, "-zero-width-trigger ").concat(prefixCls, "-zero-width-trigger-").concat(reverseArrow ? 'right' : 'left'),
- style: zeroWidthTriggerStyle
- }, React.createElement(_icon["default"], {
- type: "bars"
- })) : null;
- var iconObj = {
- expanded: reverseArrow ? React.createElement(_icon["default"], {
- type: "right"
- }) : React.createElement(_icon["default"], {
- type: "left"
- }),
- collapsed: reverseArrow ? React.createElement(_icon["default"], {
- type: "left"
- }) : React.createElement(_icon["default"], {
- type: "right"
- })
- };
- var status = _this.state.collapsed ? 'collapsed' : 'expanded';
- var defaultTrigger = iconObj[status];
- var triggerDom = trigger !== null ? zeroWidthTrigger || React.createElement("div", {
- className: "".concat(prefixCls, "-trigger"),
- onClick: _this.toggle,
- style: {
- width: siderWidth
- }
- }, trigger || defaultTrigger) : null;
-
- var divStyle = _extends(_extends({}, style), {
- flex: "0 0 ".concat(siderWidth),
- maxWidth: siderWidth,
- minWidth: siderWidth,
- width: siderWidth
- });
-
- var siderCls = (0, _classnames["default"])(className, prefixCls, "".concat(prefixCls, "-").concat(theme), (_classNames = {}, _defineProperty(_classNames, "".concat(prefixCls, "-collapsed"), !!_this.state.collapsed), _defineProperty(_classNames, "".concat(prefixCls, "-has-trigger"), collapsible && trigger !== null && !zeroWidthTrigger), _defineProperty(_classNames, "".concat(prefixCls, "-below"), !!_this.state.below), _defineProperty(_classNames, "".concat(prefixCls, "-zero-width"), parseFloat(siderWidth) === 0), _classNames));
- return React.createElement("aside", _extends({
- className: siderCls
- }, divProps, {
- style: divStyle
- }), React.createElement("div", {
- className: "".concat(prefixCls, "-children")
- }, _this.props.children), collapsible || _this.state.below && zeroWidthTrigger ? triggerDom : null);
- };
-
- _this.uniqueId = generateId('ant-sider-');
- var matchMedia;
-
- if (typeof window !== 'undefined') {
- matchMedia = window.matchMedia;
- }
-
- if (matchMedia && props.breakpoint && props.breakpoint in dimensionMaxMap) {
- _this.mql = matchMedia("(max-width: ".concat(dimensionMaxMap[props.breakpoint], ")"));
- }
-
- var collapsed;
-
- if ('collapsed' in props) {
- collapsed = props.collapsed;
- } else {
- collapsed = props.defaultCollapsed;
- }
-
- _this.state = {
- collapsed: collapsed,
- below: false
- };
- return _this;
- }
-
- _createClass(InternalSider, [{
- key: "componentDidMount",
- value: function componentDidMount() {
- if (this.mql) {
- this.mql.addListener(this.responsiveHandler);
- this.responsiveHandler(this.mql);
- }
-
- if (this.props.siderHook) {
- this.props.siderHook.addSider(this.uniqueId);
- }
- }
- }, {
- key: "componentWillUnmount",
- value: function componentWillUnmount() {
- if (this.mql) {
- this.mql.removeListener(this.responsiveHandler);
- }
-
- if (this.props.siderHook) {
- this.props.siderHook.removeSider(this.uniqueId);
- }
- }
- }, {
- key: "render",
- value: function render() {
- var collapsed = this.state.collapsed;
- var collapsedWidth = this.props.collapsedWidth;
- return React.createElement(SiderContext.Provider, {
- value: {
- siderCollapsed: collapsed,
- collapsedWidth: collapsedWidth
- }
- }, React.createElement(_configProvider.ConfigConsumer, null, this.renderSider));
- }
- }], [{
- key: "getDerivedStateFromProps",
- value: function getDerivedStateFromProps(nextProps) {
- if ('collapsed' in nextProps) {
- return {
- collapsed: nextProps.collapsed
- };
- }
-
- return null;
- }
- }]);
-
- return InternalSider;
- }(React.Component);
-
- InternalSider.defaultProps = {
- collapsible: false,
- defaultCollapsed: false,
- reverseArrow: false,
- width: 200,
- collapsedWidth: 80,
- style: {},
- theme: 'dark'
- };
- (0, _reactLifecyclesCompat.polyfill)(InternalSider); // eslint-disable-next-line react/prefer-stateless-function
-
- var Sider =
- /*#__PURE__*/
- function (_React$Component2) {
- _inherits(Sider, _React$Component2);
-
- function Sider() {
- _classCallCheck(this, Sider);
-
- return _possibleConstructorReturn(this, _getPrototypeOf(Sider).apply(this, arguments));
- }
-
- _createClass(Sider, [{
- key: "render",
- value: function render() {
- var _this2 = this;
-
- return React.createElement(_layout.LayoutContext.Consumer, null, function (context) {
- return React.createElement(InternalSider, _extends({}, context, _this2.props));
- });
- }
- }]);
-
- return Sider;
- }(React.Component);
-
- exports["default"] = Sider;
- //# sourceMappingURL=Sider.js.map
-
-
- /***/ }),
-
- /***/ 895:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- var scrollbarVerticalSize;
- var scrollbarHorizontalSize; // Measure scrollbar width for padding body during modal show/hide
-
- var scrollbarMeasure = {
- position: 'absolute',
- top: '-9999px',
- width: '50px',
- height: '50px'
- }; // This const is used for colgroup.col internal props. And should not provides to user.
-
- exports.INTERNAL_COL_DEFINE = 'RC_TABLE_INTERNAL_COL_DEFINE';
-
- function measureScrollbar(_ref) {
- var _ref$direction = _ref.direction,
- direction = _ref$direction === void 0 ? 'vertical' : _ref$direction,
- prefixCls = _ref.prefixCls;
-
- if (typeof document === 'undefined' || typeof window === 'undefined') {
- return 0;
- }
-
- var isVertical = direction === 'vertical';
-
- if (isVertical && scrollbarVerticalSize) {
- return scrollbarVerticalSize;
- }
-
- if (!isVertical && scrollbarHorizontalSize) {
- return scrollbarHorizontalSize;
- }
-
- var scrollDiv = document.createElement('div');
- Object.keys(scrollbarMeasure).forEach(function (scrollProp) {
- scrollDiv.style[scrollProp] = scrollbarMeasure[scrollProp];
- }); // apply hide scrollbar className ahead
-
- scrollDiv.className = "".concat(prefixCls, "-hide-scrollbar scroll-div-append-to-body"); // Append related overflow style
-
- if (isVertical) {
- scrollDiv.style.overflowY = 'scroll';
- } else {
- scrollDiv.style.overflowX = 'scroll';
- }
-
- document.body.appendChild(scrollDiv);
- var size = 0;
-
- if (isVertical) {
- size = scrollDiv.offsetWidth - scrollDiv.clientWidth;
- scrollbarVerticalSize = size;
- } else {
- size = scrollDiv.offsetHeight - scrollDiv.clientHeight;
- scrollbarHorizontalSize = size;
- }
-
- document.body.removeChild(scrollDiv);
- return size;
- }
-
- exports.measureScrollbar = measureScrollbar;
-
- function debounce(func, wait, immediate) {
- var timeout;
-
- function debounceFunc() {
- for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
- args[_key] = arguments[_key];
- }
-
- var context = this; // https://fb.me/react-event-pooling
-
- if (args[0] && args[0].persist) {
- args[0].persist();
- }
-
- var later = function later() {
- timeout = null;
-
- if (!immediate) {
- func.apply(context, args);
- }
- };
-
- var callNow = immediate && !timeout;
- clearTimeout(timeout);
- timeout = setTimeout(later, wait);
-
- if (callNow) {
- func.apply(context, args);
- }
- }
-
- debounceFunc.cancel = function cancel() {
- if (timeout) {
- clearTimeout(timeout);
- timeout = null;
- }
- };
-
- return debounceFunc;
- }
-
- exports.debounce = debounce;
-
- function remove(array, item) {
- var index = array.indexOf(item);
- var front = array.slice(0, index);
- var last = array.slice(index + 1, array.length);
- return front.concat(last);
- }
-
- exports.remove = remove;
- /**
- * Returns only data- and aria- key/value pairs
- * @param {object} props
- */
-
- function getDataAndAriaProps(props) {
- return Object.keys(props).reduce(function (memo, key) {
- if (key.substr(0, 5) === 'data-' || key.substr(0, 5) === 'aria-') {
- memo[key] = props[key];
- }
-
- return memo;
- }, {});
- }
-
- exports.getDataAndAriaProps = getDataAndAriaProps;
-
- /***/ }),
-
- /***/ 896:
- /***/ (function(module, exports, __webpack_require__) {
-
- var isFunction = __webpack_require__(878),
- isLength = __webpack_require__(875);
-
- /**
- * Checks if `value` is array-like. A value is considered array-like if it's
- * not a function and has a `value.length` that's an integer greater than or
- * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`.
- *
- * @static
- * @memberOf _
- * @since 4.0.0
- * @category Lang
- * @param {*} value The value to check.
- * @returns {boolean} Returns `true` if `value` is array-like, else `false`.
- * @example
- *
- * _.isArrayLike([1, 2, 3]);
- * // => true
- *
- * _.isArrayLike(document.body.children);
- * // => true
- *
- * _.isArrayLike('abc');
- * // => true
- *
- * _.isArrayLike(_.noop);
- * // => false
- */
- function isArrayLike(value) {
- return value != null && isLength(value.length) && !isFunction(value);
- }
-
- module.exports = isArrayLike;
-
-
- /***/ }),
-
- /***/ 897:
- /***/ (function(module, exports, __webpack_require__) {
-
- /* WEBPACK VAR INJECTION */(function(module) {var root = __webpack_require__(170),
- stubFalse = __webpack_require__(1037);
-
- /** Detect free variable `exports`. */
- var freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports;
-
- /** Detect free variable `module`. */
- var freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module;
-
- /** Detect the popular CommonJS extension `module.exports`. */
- var moduleExports = freeModule && freeModule.exports === freeExports;
-
- /** Built-in value references. */
- var Buffer = moduleExports ? root.Buffer : undefined;
-
- /* Built-in method references for those with the same name as other `lodash` methods. */
- var nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined;
-
- /**
- * Checks if `value` is a buffer.
- *
- * @static
- * @memberOf _
- * @since 4.3.0
- * @category Lang
- * @param {*} value The value to check.
- * @returns {boolean} Returns `true` if `value` is a buffer, else `false`.
- * @example
- *
- * _.isBuffer(new Buffer(2));
- * // => true
- *
- * _.isBuffer(new Uint8Array(2));
- * // => false
- */
- var isBuffer = nativeIsBuffer || stubFalse;
-
- module.exports = isBuffer;
-
- /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(309)(module)))
-
- /***/ }),
-
- /***/ 899:
- /***/ (function(module, exports, __webpack_require__) {
-
- var baseIsTypedArray = __webpack_require__(1038),
- baseUnary = __webpack_require__(988),
- nodeUtil = __webpack_require__(989);
-
- /* Node.js helper references. */
- var nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray;
-
- /**
- * Checks if `value` is classified as a typed array.
- *
- * @static
- * @memberOf _
- * @since 3.0.0
- * @category Lang
- * @param {*} value The value to check.
- * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.
- * @example
- *
- * _.isTypedArray(new Uint8Array);
- * // => true
- *
- * _.isTypedArray([]);
- * // => false
- */
- var isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray;
-
- module.exports = isTypedArray;
-
-
- /***/ }),
-
- /***/ 901:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- __webpack_require__(29);
-
- __webpack_require__(949);
-
- __webpack_require__(307);
- //# sourceMappingURL=css.js.map
-
-
- /***/ }),
-
- /***/ 902:
- /***/ (function(module, exports, __webpack_require__) {
-
- var getNative = __webpack_require__(866);
-
- var defineProperty = (function() {
- try {
- var func = getNative(Object, 'defineProperty');
- func({}, '', {});
- return func;
- } catch (e) {}
- }());
-
- module.exports = defineProperty;
-
-
- /***/ }),
-
- /***/ 903:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports["default"] = void 0;
-
- var _Pagination = _interopRequireDefault(__webpack_require__(952));
-
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
-
- var _default = _Pagination["default"];
- exports["default"] = _default;
- //# sourceMappingURL=index.js.map
-
-
- /***/ }),
-
- /***/ 906:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- var pathTool = __webpack_require__(2268);
-
- var colorTool = __webpack_require__(1438);
-
- var matrix = __webpack_require__(1350);
-
- var vector = __webpack_require__(1180);
-
- var Path = __webpack_require__(1280);
-
- var Transformable = __webpack_require__(1893);
-
- var ZImage = __webpack_require__(1598);
-
- exports.Image = ZImage;
-
- var Group = __webpack_require__(1597);
-
- exports.Group = Group;
-
- var Text = __webpack_require__(1517);
-
- exports.Text = Text;
-
- var Circle = __webpack_require__(2273);
-
- exports.Circle = Circle;
-
- var Sector = __webpack_require__(2527);
-
- exports.Sector = Sector;
-
- var Ring = __webpack_require__(2528);
-
- exports.Ring = Ring;
-
- var Polygon = __webpack_require__(2275);
-
- exports.Polygon = Polygon;
-
- var Polyline = __webpack_require__(2277);
-
- exports.Polyline = Polyline;
-
- var Rect = __webpack_require__(1897);
-
- exports.Rect = Rect;
-
- var Line = __webpack_require__(2278);
-
- exports.Line = Line;
-
- var BezierCurve = __webpack_require__(2531);
-
- exports.BezierCurve = BezierCurve;
-
- var Arc = __webpack_require__(2532);
-
- exports.Arc = Arc;
-
- var CompoundPath = __webpack_require__(2533);
-
- exports.CompoundPath = CompoundPath;
-
- var LinearGradient = __webpack_require__(1899);
-
- exports.LinearGradient = LinearGradient;
-
- var RadialGradient = __webpack_require__(2534);
-
- exports.RadialGradient = RadialGradient;
-
- var BoundingRect = __webpack_require__(1185);
-
- exports.BoundingRect = BoundingRect;
-
- var IncrementalDisplayable = __webpack_require__(1900);
-
- exports.IncrementalDisplayable = IncrementalDisplayable;
-
- var subPixelOptimizeUtil = __webpack_require__(1898);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- var mathMax = Math.max;
- var mathMin = Math.min;
- var EMPTY_OBJ = {};
- var Z2_EMPHASIS_LIFT = 1; // key: label model property nane, value: style property name.
-
- var CACHED_LABEL_STYLE_PROPERTIES = {
- color: 'textFill',
- textBorderColor: 'textStroke',
- textBorderWidth: 'textStrokeWidth'
- };
- var EMPHASIS = 'emphasis';
- var NORMAL = 'normal'; // Reserve 0 as default.
-
- var _highlightNextDigit = 1;
- var _highlightKeyMap = {};
- var _customShapeMap = {};
- /**
- * Extend shape with parameters
- */
-
- function extendShape(opts) {
- return Path.extend(opts);
- }
- /**
- * Extend path
- */
-
-
- function extendPath(pathData, opts) {
- return pathTool.extendFromString(pathData, opts);
- }
- /**
- * Register a user defined shape.
- * The shape class can be fetched by `getShapeClass`
- * This method will overwrite the registered shapes, including
- * the registered built-in shapes, if using the same `name`.
- * The shape can be used in `custom series` and
- * `graphic component` by declaring `{type: name}`.
- *
- * @param {string} name
- * @param {Object} ShapeClass Can be generated by `extendShape`.
- */
-
-
- function registerShape(name, ShapeClass) {
- _customShapeMap[name] = ShapeClass;
- }
- /**
- * Find shape class registered by `registerShape`. Usually used in
- * fetching user defined shape.
- *
- * [Caution]:
- * (1) This method **MUST NOT be used inside echarts !!!**, unless it is prepared
- * to use user registered shapes.
- * Because the built-in shape (see `getBuiltInShape`) will be registered by
- * `registerShape` by default. That enables users to get both built-in
- * shapes as well as the shapes belonging to themsleves. But users can overwrite
- * the built-in shapes by using names like 'circle', 'rect' via calling
- * `registerShape`. So the echarts inner featrues should not fetch shapes from here
- * in case that it is overwritten by users, except that some features, like
- * `custom series`, `graphic component`, do it deliberately.
- *
- * (2) In the features like `custom series`, `graphic component`, the user input
- * `{tpye: 'xxx'}` does not only specify shapes but also specify other graphic
- * elements like `'group'`, `'text'`, `'image'` or event `'path'`. Those names
- * are reserved names, that is, if some user register a shape named `'image'`,
- * the shape will not be used. If we intending to add some more reserved names
- * in feature, that might bring break changes (disable some existing user shape
- * names). But that case probably rearly happen. So we dont make more mechanism
- * to resolve this issue here.
- *
- * @param {string} name
- * @return {Object} The shape class. If not found, return nothing.
- */
-
-
- function getShapeClass(name) {
- if (_customShapeMap.hasOwnProperty(name)) {
- return _customShapeMap[name];
- }
- }
- /**
- * Create a path element from path data string
- * @param {string} pathData
- * @param {Object} opts
- * @param {module:zrender/core/BoundingRect} rect
- * @param {string} [layout=cover] 'center' or 'cover'
- */
-
-
- function makePath(pathData, opts, rect, layout) {
- var path = pathTool.createFromString(pathData, opts);
-
- if (rect) {
- if (layout === 'center') {
- rect = centerGraphic(rect, path.getBoundingRect());
- }
-
- resizePath(path, rect);
- }
-
- return path;
- }
- /**
- * Create a image element from image url
- * @param {string} imageUrl image url
- * @param {Object} opts options
- * @param {module:zrender/core/BoundingRect} rect constrain rect
- * @param {string} [layout=cover] 'center' or 'cover'
- */
-
-
- function makeImage(imageUrl, rect, layout) {
- var path = new ZImage({
- style: {
- image: imageUrl,
- x: rect.x,
- y: rect.y,
- width: rect.width,
- height: rect.height
- },
- onload: function (img) {
- if (layout === 'center') {
- var boundingRect = {
- width: img.width,
- height: img.height
- };
- path.setStyle(centerGraphic(rect, boundingRect));
- }
- }
- });
- return path;
- }
- /**
- * Get position of centered element in bounding box.
- *
- * @param {Object} rect element local bounding box
- * @param {Object} boundingRect constraint bounding box
- * @return {Object} element position containing x, y, width, and height
- */
-
-
- function centerGraphic(rect, boundingRect) {
- // Set rect to center, keep width / height ratio.
- var aspect = boundingRect.width / boundingRect.height;
- var width = rect.height * aspect;
- var height;
-
- if (width <= rect.width) {
- height = rect.height;
- } else {
- width = rect.width;
- height = width / aspect;
- }
-
- var cx = rect.x + rect.width / 2;
- var cy = rect.y + rect.height / 2;
- return {
- x: cx - width / 2,
- y: cy - height / 2,
- width: width,
- height: height
- };
- }
-
- var mergePath = pathTool.mergePath;
- /**
- * Resize a path to fit the rect
- * @param {module:zrender/graphic/Path} path
- * @param {Object} rect
- */
-
- function resizePath(path, rect) {
- if (!path.applyTransform) {
- return;
- }
-
- var pathRect = path.getBoundingRect();
- var m = pathRect.calculateTransform(rect);
- path.applyTransform(m);
- }
- /**
- * Sub pixel optimize line for canvas
- *
- * @param {Object} param
- * @param {Object} [param.shape]
- * @param {number} [param.shape.x1]
- * @param {number} [param.shape.y1]
- * @param {number} [param.shape.x2]
- * @param {number} [param.shape.y2]
- * @param {Object} [param.style]
- * @param {number} [param.style.lineWidth]
- * @return {Object} Modified param
- */
-
-
- function subPixelOptimizeLine(param) {
- subPixelOptimizeUtil.subPixelOptimizeLine(param.shape, param.shape, param.style);
- return param;
- }
- /**
- * Sub pixel optimize rect for canvas
- *
- * @param {Object} param
- * @param {Object} [param.shape]
- * @param {number} [param.shape.x]
- * @param {number} [param.shape.y]
- * @param {number} [param.shape.width]
- * @param {number} [param.shape.height]
- * @param {Object} [param.style]
- * @param {number} [param.style.lineWidth]
- * @return {Object} Modified param
- */
-
-
- function subPixelOptimizeRect(param) {
- subPixelOptimizeUtil.subPixelOptimizeRect(param.shape, param.shape, param.style);
- return param;
- }
- /**
- * Sub pixel optimize for canvas
- *
- * @param {number} position Coordinate, such as x, y
- * @param {number} lineWidth Should be nonnegative integer.
- * @param {boolean=} positiveOrNegative Default false (negative).
- * @return {number} Optimized position.
- */
-
-
- var subPixelOptimize = subPixelOptimizeUtil.subPixelOptimize;
-
- function hasFillOrStroke(fillOrStroke) {
- return fillOrStroke != null && fillOrStroke !== 'none';
- } // Most lifted color are duplicated.
-
-
- var liftedColorMap = zrUtil.createHashMap();
- var liftedColorCount = 0;
-
- function liftColor(color) {
- if (typeof color !== 'string') {
- return color;
- }
-
- var liftedColor = liftedColorMap.get(color);
-
- if (!liftedColor) {
- liftedColor = colorTool.lift(color, -0.1);
-
- if (liftedColorCount < 10000) {
- liftedColorMap.set(color, liftedColor);
- liftedColorCount++;
- }
- }
-
- return liftedColor;
- }
-
- function cacheElementStl(el) {
- if (!el.__hoverStlDirty) {
- return;
- }
-
- el.__hoverStlDirty = false;
- var hoverStyle = el.__hoverStl;
-
- if (!hoverStyle) {
- el.__cachedNormalStl = el.__cachedNormalZ2 = null;
- return;
- }
-
- var normalStyle = el.__cachedNormalStl = {};
- el.__cachedNormalZ2 = el.z2;
- var elStyle = el.style;
-
- for (var name in hoverStyle) {
- // See comment in `singleEnterEmphasis`.
- if (hoverStyle[name] != null) {
- normalStyle[name] = elStyle[name];
- }
- } // Always cache fill and stroke to normalStyle for lifting color.
-
-
- normalStyle.fill = elStyle.fill;
- normalStyle.stroke = elStyle.stroke;
- }
-
- function singleEnterEmphasis(el) {
- var hoverStl = el.__hoverStl;
-
- if (!hoverStl || el.__highlighted) {
- return;
- }
-
- var zr = el.__zr;
- var useHoverLayer = el.useHoverLayer && zr && zr.painter.type === 'canvas';
- el.__highlighted = useHoverLayer ? 'layer' : 'plain';
-
- if (el.isGroup || !zr && el.useHoverLayer) {
- return;
- }
-
- var elTarget = el;
- var targetStyle = el.style;
-
- if (useHoverLayer) {
- elTarget = zr.addHover(el);
- targetStyle = elTarget.style;
- }
-
- rollbackDefaultTextStyle(targetStyle);
-
- if (!useHoverLayer) {
- cacheElementStl(elTarget);
- } // styles can be:
- // {
- // label: {
- // show: false,
- // position: 'outside',
- // fontSize: 18
- // },
- // emphasis: {
- // label: {
- // show: true
- // }
- // }
- // },
- // where properties of `emphasis` may not appear in `normal`. We previously use
- // module:echarts/util/model#defaultEmphasis to merge `normal` to `emphasis`.
- // But consider rich text and setOption in merge mode, it is impossible to cover
- // all properties in merge. So we use merge mode when setting style here.
- // But we choose the merge strategy that only properties that is not `null/undefined`.
- // Because when making a textStyle (espacially rich text), it is not easy to distinguish
- // `hasOwnProperty` and `null/undefined` in code, so we trade them as the same for simplicity.
- // But this strategy brings a trouble that `null/undefined` can not be used to remove
- // style any more in `emphasis`. Users can both set properties directly on normal and
- // emphasis to avoid this issue, or we might support `'none'` for this case if required.
-
-
- targetStyle.extendFrom(hoverStl);
- setDefaultHoverFillStroke(targetStyle, hoverStl, 'fill');
- setDefaultHoverFillStroke(targetStyle, hoverStl, 'stroke');
- applyDefaultTextStyle(targetStyle);
-
- if (!useHoverLayer) {
- el.dirty(false);
- el.z2 += Z2_EMPHASIS_LIFT;
- }
- }
-
- function setDefaultHoverFillStroke(targetStyle, hoverStyle, prop) {
- if (!hasFillOrStroke(hoverStyle[prop]) && hasFillOrStroke(targetStyle[prop])) {
- targetStyle[prop] = liftColor(targetStyle[prop]);
- }
- }
-
- function singleEnterNormal(el) {
- var highlighted = el.__highlighted;
-
- if (!highlighted) {
- return;
- }
-
- el.__highlighted = false;
-
- if (el.isGroup) {
- return;
- }
-
- if (highlighted === 'layer') {
- el.__zr && el.__zr.removeHover(el);
- } else {
- var style = el.style;
- var normalStl = el.__cachedNormalStl;
-
- if (normalStl) {
- rollbackDefaultTextStyle(style);
- el.setStyle(normalStl);
- applyDefaultTextStyle(style);
- } // `__cachedNormalZ2` will not be reset if calling `setElementHoverStyle`
- // when `el` is on emphasis state. So here by comparing with 1, we try
- // hard to make the bug case rare.
-
-
- var normalZ2 = el.__cachedNormalZ2;
-
- if (normalZ2 != null && el.z2 - normalZ2 === Z2_EMPHASIS_LIFT) {
- el.z2 = normalZ2;
- }
- }
- }
-
- function traverseUpdate(el, updater, commonParam) {
- // If root is group, also enter updater for `highDownOnUpdate`.
- var fromState = NORMAL;
- var toState = NORMAL;
- var trigger; // See the rule of `highDownOnUpdate` on `graphic.setAsHighDownDispatcher`.
-
- el.__highlighted && (fromState = EMPHASIS, trigger = true);
- updater(el, commonParam);
- el.__highlighted && (toState = EMPHASIS, trigger = true);
- el.isGroup && el.traverse(function (child) {
- !child.isGroup && updater(child, commonParam);
- });
- trigger && el.__highDownOnUpdate && el.__highDownOnUpdate(fromState, toState);
- }
- /**
- * Set hover style (namely "emphasis style") of element, based on the current
- * style of the given `el`.
- * This method should be called after all of the normal styles have been adopted
- * to the `el`. See the reason on `setHoverStyle`.
- *
- * @param {module:zrender/Element} el Should not be `zrender/container/Group`.
- * @param {Object} [el.hoverStyle] Can be set on el or its descendants,
- * e.g., `el.hoverStyle = ...; graphic.setHoverStyle(el); `.
- * Often used when item group has a label element and it's hoverStyle is different.
- * @param {Object|boolean} [hoverStl] The specified hover style.
- * If set as `false`, disable the hover style.
- * Similarly, The `el.hoverStyle` can alse be set
- * as `false` to disable the hover style.
- * Otherwise, use the default hover style if not provided.
- */
-
-
- function setElementHoverStyle(el, hoverStl) {
- // For performance consideration, it might be better to make the "hover style" only the
- // difference properties from the "normal style", but not a entire copy of all styles.
- hoverStl = el.__hoverStl = hoverStl !== false && (el.hoverStyle || hoverStl || {});
- el.__hoverStlDirty = true; // FIXME
- // It is not completely right to save "normal"/"emphasis" flag on elements.
- // It probably should be saved on `data` of series. Consider the cases:
- // (1) A highlighted elements are moved out of the view port and re-enter
- // again by dataZoom.
- // (2) call `setOption` and replace elements totally when they are highlighted.
-
- if (el.__highlighted) {
- // Consider the case:
- // The styles of a highlighted `el` is being updated. The new "emphasis style"
- // should be adapted to the `el`. Notice here new "normal styles" should have
- // been set outside and the cached "normal style" is out of date.
- el.__cachedNormalStl = null; // Do not clear `__cachedNormalZ2` here, because setting `z2` is not a constraint
- // of this method. In most cases, `z2` is not set and hover style should be able
- // to rollback. Of course, that would bring bug, but only in a rare case, see
- // `doSingleLeaveHover` for details.
-
- singleEnterNormal(el);
- singleEnterEmphasis(el);
- }
- }
-
- function onElementMouseOver(e) {
- !shouldSilent(this, e) // "emphasis" event highlight has higher priority than mouse highlight.
- && !this.__highByOuter && traverseUpdate(this, singleEnterEmphasis);
- }
-
- function onElementMouseOut(e) {
- !shouldSilent(this, e) // "emphasis" event highlight has higher priority than mouse highlight.
- && !this.__highByOuter && traverseUpdate(this, singleEnterNormal);
- }
-
- function onElementEmphasisEvent(highlightDigit) {
- this.__highByOuter |= 1 << (highlightDigit || 0);
- traverseUpdate(this, singleEnterEmphasis);
- }
-
- function onElementNormalEvent(highlightDigit) {
- !(this.__highByOuter &= ~(1 << (highlightDigit || 0))) && traverseUpdate(this, singleEnterNormal);
- }
-
- function shouldSilent(el, e) {
- return el.__highDownSilentOnTouch && e.zrByTouch;
- }
- /**
- * Set hover style (namely "emphasis style") of element,
- * based on the current style of the given `el`.
- *
- * (1)
- * **CONSTRAINTS** for this method:
- * <A> This method MUST be called after all of the normal styles having been adopted
- * to the `el`.
- * <B> The input `hoverStyle` (that is, "emphasis style") MUST be the subset of the
- * "normal style" having been set to the el.
- * <C> `color` MUST be one of the "normal styles" (because color might be lifted as
- * a default hover style).
- *
- * The reason: this method treat the current style of the `el` as the "normal style"
- * and cache them when enter/update the "emphasis style". Consider the case: the `el`
- * is in "emphasis" state and `setOption`/`dispatchAction` trigger the style updating
- * logic, where the el should shift from the original emphasis style to the new
- * "emphasis style" and should be able to "downplay" back to the new "normal style".
- *
- * Indeed, it is error-prone to make a interface has so many constraints, but I have
- * not found a better solution yet to fit the backward compatibility, performance and
- * the current programming style.
- *
- * (2)
- * Call the method for a "root" element once. Do not call it for each descendants.
- * If the descendants elemenets of a group has itself hover style different from the
- * root group, we can simply mount the style on `el.hoverStyle` for them, but should
- * not call this method for them.
- *
- * (3) These input parameters can be set directly on `el`:
- *
- * @param {module:zrender/Element} el
- * @param {Object} [el.hoverStyle] See `graphic.setElementHoverStyle`.
- * @param {boolean} [el.highDownSilentOnTouch=false] See `graphic.setAsHighDownDispatcher`.
- * @param {Function} [el.highDownOnUpdate] See `graphic.setAsHighDownDispatcher`.
- * @param {Object|boolean} [hoverStyle] See `graphic.setElementHoverStyle`.
- */
-
-
- function setHoverStyle(el, hoverStyle) {
- setAsHighDownDispatcher(el, true);
- traverseUpdate(el, setElementHoverStyle, hoverStyle);
- }
- /**
- * @param {module:zrender/Element} el
- * @param {Function} [el.highDownOnUpdate] Called when state updated.
- * Since `setHoverStyle` has the constraint that it must be called after
- * all of the normal style updated, `highDownOnUpdate` is not needed to
- * trigger if both `fromState` and `toState` is 'normal', and needed to
- * trigger if both `fromState` and `toState` is 'emphasis', which enables
- * to sync outside style settings to "emphasis" state.
- * @this {string} This dispatcher `el`.
- * @param {string} fromState Can be "normal" or "emphasis".
- * `fromState` might equal to `toState`,
- * for example, when this method is called when `el` is
- * on "emphasis" state.
- * @param {string} toState Can be "normal" or "emphasis".
- *
- * FIXME
- * CAUTION: Do not expose `highDownOnUpdate` outside echarts.
- * Because it is not a complete solution. The update
- * listener should not have been mount in element,
- * and the normal/emphasis state should not have
- * mantained on elements.
- *
- * @param {boolean} [el.highDownSilentOnTouch=false]
- * In touch device, mouseover event will be trigger on touchstart event
- * (see module:zrender/dom/HandlerProxy). By this mechanism, we can
- * conveniently use hoverStyle when tap on touch screen without additional
- * code for compatibility.
- * But if the chart/component has select feature, which usually also use
- * hoverStyle, there might be conflict between 'select-highlight' and
- * 'hover-highlight' especially when roam is enabled (see geo for example).
- * In this case, `highDownSilentOnTouch` should be used to disable
- * hover-highlight on touch device.
- * @param {boolean} [asDispatcher=true] If `false`, do not set as "highDownDispatcher".
- */
-
-
- function setAsHighDownDispatcher(el, asDispatcher) {
- var disable = asDispatcher === false; // Make `highDownSilentOnTouch` and `highDownOnUpdate` only work after
- // `setAsHighDownDispatcher` called. Avoid it is modified by user unexpectedly.
-
- el.__highDownSilentOnTouch = el.highDownSilentOnTouch;
- el.__highDownOnUpdate = el.highDownOnUpdate; // Simple optimize, since this method might be
- // called for each elements of a group in some cases.
-
- if (!disable || el.__highDownDispatcher) {
- var method = disable ? 'off' : 'on'; // Duplicated function will be auto-ignored, see Eventful.js.
-
- el[method]('mouseover', onElementMouseOver)[method]('mouseout', onElementMouseOut); // Emphasis, normal can be triggered manually by API or other components like hover link.
-
- el[method]('emphasis', onElementEmphasisEvent)[method]('normal', onElementNormalEvent); // Also keep previous record.
-
- el.__highByOuter = el.__highByOuter || 0;
- el.__highDownDispatcher = !disable;
- }
- }
- /**
- * @param {module:zrender/src/Element} el
- * @return {boolean}
- */
-
-
- function isHighDownDispatcher(el) {
- return !!(el && el.__highDownDispatcher);
- }
- /**
- * Support hightlight/downplay record on each elements.
- * For the case: hover highlight/downplay (legend, visualMap, ...) and
- * user triggerred hightlight/downplay should not conflict.
- * Only all of the highlightDigit cleared, return to normal.
- * @param {string} highlightKey
- * @return {number} highlightDigit
- */
-
-
- function getHighlightDigit(highlightKey) {
- var highlightDigit = _highlightKeyMap[highlightKey];
-
- if (highlightDigit == null && _highlightNextDigit <= 32) {
- highlightDigit = _highlightKeyMap[highlightKey] = _highlightNextDigit++;
- }
-
- return highlightDigit;
- }
- /**
- * See more info in `setTextStyleCommon`.
- * @param {Object|module:zrender/graphic/Style} normalStyle
- * @param {Object} emphasisStyle
- * @param {module:echarts/model/Model} normalModel
- * @param {module:echarts/model/Model} emphasisModel
- * @param {Object} opt Check `opt` of `setTextStyleCommon` to find other props.
- * @param {string|Function} [opt.defaultText]
- * @param {module:echarts/model/Model} [opt.labelFetcher] Fetch text by
- * `opt.labelFetcher.getFormattedLabel(opt.labelDataIndex, 'normal'/'emphasis', null, opt.labelDimIndex)`
- * @param {module:echarts/model/Model} [opt.labelDataIndex] Fetch text by
- * `opt.textFetcher.getFormattedLabel(opt.labelDataIndex, 'normal'/'emphasis', null, opt.labelDimIndex)`
- * @param {module:echarts/model/Model} [opt.labelDimIndex] Fetch text by
- * `opt.textFetcher.getFormattedLabel(opt.labelDataIndex, 'normal'/'emphasis', null, opt.labelDimIndex)`
- * @param {Object} [normalSpecified]
- * @param {Object} [emphasisSpecified]
- */
-
-
- function setLabelStyle(normalStyle, emphasisStyle, normalModel, emphasisModel, opt, normalSpecified, emphasisSpecified) {
- opt = opt || EMPTY_OBJ;
- var labelFetcher = opt.labelFetcher;
- var labelDataIndex = opt.labelDataIndex;
- var labelDimIndex = opt.labelDimIndex; // This scenario, `label.normal.show = true; label.emphasis.show = false`,
- // is not supported util someone requests.
-
- var showNormal = normalModel.getShallow('show');
- var showEmphasis = emphasisModel.getShallow('show'); // Consider performance, only fetch label when necessary.
- // If `normal.show` is `false` and `emphasis.show` is `true` and `emphasis.formatter` is not set,
- // label should be displayed, where text is fetched by `normal.formatter` or `opt.defaultText`.
-
- var baseText;
-
- if (showNormal || showEmphasis) {
- if (labelFetcher) {
- baseText = labelFetcher.getFormattedLabel(labelDataIndex, 'normal', null, labelDimIndex);
- }
-
- if (baseText == null) {
- baseText = zrUtil.isFunction(opt.defaultText) ? opt.defaultText(labelDataIndex, opt) : opt.defaultText;
- }
- }
-
- var normalStyleText = showNormal ? baseText : null;
- var emphasisStyleText = showEmphasis ? zrUtil.retrieve2(labelFetcher ? labelFetcher.getFormattedLabel(labelDataIndex, 'emphasis', null, labelDimIndex) : null, baseText) : null; // Optimize: If style.text is null, text will not be drawn.
-
- if (normalStyleText != null || emphasisStyleText != null) {
- // Always set `textStyle` even if `normalStyle.text` is null, because default
- // values have to be set on `normalStyle`.
- // If we set default values on `emphasisStyle`, consider case:
- // Firstly, `setOption(... label: {normal: {text: null}, emphasis: {show: true}} ...);`
- // Secondly, `setOption(... label: {noraml: {show: true, text: 'abc', color: 'red'} ...);`
- // Then the 'red' will not work on emphasis.
- setTextStyle(normalStyle, normalModel, normalSpecified, opt);
- setTextStyle(emphasisStyle, emphasisModel, emphasisSpecified, opt, true);
- }
-
- normalStyle.text = normalStyleText;
- emphasisStyle.text = emphasisStyleText;
- }
- /**
- * Modify label style manually.
- * Only works after `setLabelStyle` and `setElementHoverStyle` called.
- *
- * @param {module:zrender/src/Element} el
- * @param {Object} [normalStyleProps] optional
- * @param {Object} [emphasisStyleProps] optional
- */
-
-
- function modifyLabelStyle(el, normalStyleProps, emphasisStyleProps) {
- var elStyle = el.style;
-
- if (normalStyleProps) {
- rollbackDefaultTextStyle(elStyle);
- el.setStyle(normalStyleProps);
- applyDefaultTextStyle(elStyle);
- }
-
- elStyle = el.__hoverStl;
-
- if (emphasisStyleProps && elStyle) {
- rollbackDefaultTextStyle(elStyle);
- zrUtil.extend(elStyle, emphasisStyleProps);
- applyDefaultTextStyle(elStyle);
- }
- }
- /**
- * Set basic textStyle properties.
- * See more info in `setTextStyleCommon`.
- * @param {Object|module:zrender/graphic/Style} textStyle
- * @param {module:echarts/model/Model} model
- * @param {Object} [specifiedTextStyle] Can be overrided by settings in model.
- * @param {Object} [opt] See `opt` of `setTextStyleCommon`.
- * @param {boolean} [isEmphasis]
- */
-
-
- function setTextStyle(textStyle, textStyleModel, specifiedTextStyle, opt, isEmphasis) {
- setTextStyleCommon(textStyle, textStyleModel, opt, isEmphasis);
- specifiedTextStyle && zrUtil.extend(textStyle, specifiedTextStyle); // textStyle.host && textStyle.host.dirty && textStyle.host.dirty(false);
-
- return textStyle;
- }
- /**
- * Set text option in the style.
- * See more info in `setTextStyleCommon`.
- * @deprecated
- * @param {Object} textStyle
- * @param {module:echarts/model/Model} labelModel
- * @param {string|boolean} defaultColor Default text color.
- * If set as false, it will be processed as a emphasis style.
- */
-
-
- function setText(textStyle, labelModel, defaultColor) {
- var opt = {
- isRectText: true
- };
- var isEmphasis;
-
- if (defaultColor === false) {
- isEmphasis = true;
- } else {
- // Support setting color as 'auto' to get visual color.
- opt.autoColor = defaultColor;
- }
-
- setTextStyleCommon(textStyle, labelModel, opt, isEmphasis); // textStyle.host && textStyle.host.dirty && textStyle.host.dirty(false);
- }
- /**
- * The uniform entry of set text style, that is, retrieve style definitions
- * from `model` and set to `textStyle` object.
- *
- * Never in merge mode, but in overwrite mode, that is, all of the text style
- * properties will be set. (Consider the states of normal and emphasis and
- * default value can be adopted, merge would make the logic too complicated
- * to manage.)
- *
- * The `textStyle` object can either be a plain object or an instance of
- * `zrender/src/graphic/Style`, and either be the style of normal or emphasis.
- * After this mothod called, the `textStyle` object can then be used in
- * `el.setStyle(textStyle)` or `el.hoverStyle = textStyle`.
- *
- * Default value will be adopted and `insideRollbackOpt` will be created.
- * See `applyDefaultTextStyle` `rollbackDefaultTextStyle` for more details.
- *
- * opt: {
- * disableBox: boolean, Whether diable drawing box of block (outer most).
- * isRectText: boolean,
- * autoColor: string, specify a color when color is 'auto',
- * for textFill, textStroke, textBackgroundColor, and textBorderColor.
- * If autoColor specified, it is used as default textFill.
- * useInsideStyle:
- * `true`: Use inside style (textFill, textStroke, textStrokeWidth)
- * if `textFill` is not specified.
- * `false`: Do not use inside style.
- * `null/undefined`: use inside style if `isRectText` is true and
- * `textFill` is not specified and textPosition contains `'inside'`.
- * forceRich: boolean
- * }
- */
-
-
- function setTextStyleCommon(textStyle, textStyleModel, opt, isEmphasis) {
- // Consider there will be abnormal when merge hover style to normal style if given default value.
- opt = opt || EMPTY_OBJ;
-
- if (opt.isRectText) {
- var textPosition;
-
- if (opt.getTextPosition) {
- textPosition = opt.getTextPosition(textStyleModel, isEmphasis);
- } else {
- textPosition = textStyleModel.getShallow('position') || (isEmphasis ? null : 'inside'); // 'outside' is not a valid zr textPostion value, but used
- // in bar series, and magric type should be considered.
-
- textPosition === 'outside' && (textPosition = 'top');
- }
-
- textStyle.textPosition = textPosition;
- textStyle.textOffset = textStyleModel.getShallow('offset');
- var labelRotate = textStyleModel.getShallow('rotate');
- labelRotate != null && (labelRotate *= Math.PI / 180);
- textStyle.textRotation = labelRotate;
- textStyle.textDistance = zrUtil.retrieve2(textStyleModel.getShallow('distance'), isEmphasis ? null : 5);
- }
-
- var ecModel = textStyleModel.ecModel;
- var globalTextStyle = ecModel && ecModel.option.textStyle; // Consider case:
- // {
- // data: [{
- // value: 12,
- // label: {
- // rich: {
- // // no 'a' here but using parent 'a'.
- // }
- // }
- // }],
- // rich: {
- // a: { ... }
- // }
- // }
-
- var richItemNames = getRichItemNames(textStyleModel);
- var richResult;
-
- if (richItemNames) {
- richResult = {};
-
- for (var name in richItemNames) {
- if (richItemNames.hasOwnProperty(name)) {
- // Cascade is supported in rich.
- var richTextStyle = textStyleModel.getModel(['rich', name]); // In rich, never `disableBox`.
- // FIXME: consider `label: {formatter: '{a|xx}', color: 'blue', rich: {a: {}}}`,
- // the default color `'blue'` will not be adopted if no color declared in `rich`.
- // That might confuses users. So probably we should put `textStyleModel` as the
- // root ancestor of the `richTextStyle`. But that would be a break change.
-
- setTokenTextStyle(richResult[name] = {}, richTextStyle, globalTextStyle, opt, isEmphasis);
- }
- }
- }
-
- textStyle.rich = richResult;
- setTokenTextStyle(textStyle, textStyleModel, globalTextStyle, opt, isEmphasis, true);
-
- if (opt.forceRich && !opt.textStyle) {
- opt.textStyle = {};
- }
-
- return textStyle;
- } // Consider case:
- // {
- // data: [{
- // value: 12,
- // label: {
- // rich: {
- // // no 'a' here but using parent 'a'.
- // }
- // }
- // }],
- // rich: {
- // a: { ... }
- // }
- // }
-
-
- function getRichItemNames(textStyleModel) {
- // Use object to remove duplicated names.
- var richItemNameMap;
-
- while (textStyleModel && textStyleModel !== textStyleModel.ecModel) {
- var rich = (textStyleModel.option || EMPTY_OBJ).rich;
-
- if (rich) {
- richItemNameMap = richItemNameMap || {};
-
- for (var name in rich) {
- if (rich.hasOwnProperty(name)) {
- richItemNameMap[name] = 1;
- }
- }
- }
-
- textStyleModel = textStyleModel.parentModel;
- }
-
- return richItemNameMap;
- }
-
- function setTokenTextStyle(textStyle, textStyleModel, globalTextStyle, opt, isEmphasis, isBlock) {
- // In merge mode, default value should not be given.
- globalTextStyle = !isEmphasis && globalTextStyle || EMPTY_OBJ;
- textStyle.textFill = getAutoColor(textStyleModel.getShallow('color'), opt) || globalTextStyle.color;
- textStyle.textStroke = getAutoColor(textStyleModel.getShallow('textBorderColor'), opt) || globalTextStyle.textBorderColor;
- textStyle.textStrokeWidth = zrUtil.retrieve2(textStyleModel.getShallow('textBorderWidth'), globalTextStyle.textBorderWidth);
-
- if (!isEmphasis) {
- if (isBlock) {
- textStyle.insideRollbackOpt = opt;
- applyDefaultTextStyle(textStyle);
- } // Set default finally.
-
-
- if (textStyle.textFill == null) {
- textStyle.textFill = opt.autoColor;
- }
- } // Do not use `getFont` here, because merge should be supported, where
- // part of these properties may be changed in emphasis style, and the
- // others should remain their original value got from normal style.
-
-
- textStyle.fontStyle = textStyleModel.getShallow('fontStyle') || globalTextStyle.fontStyle;
- textStyle.fontWeight = textStyleModel.getShallow('fontWeight') || globalTextStyle.fontWeight;
- textStyle.fontSize = textStyleModel.getShallow('fontSize') || globalTextStyle.fontSize;
- textStyle.fontFamily = textStyleModel.getShallow('fontFamily') || globalTextStyle.fontFamily;
- textStyle.textAlign = textStyleModel.getShallow('align');
- textStyle.textVerticalAlign = textStyleModel.getShallow('verticalAlign') || textStyleModel.getShallow('baseline');
- textStyle.textLineHeight = textStyleModel.getShallow('lineHeight');
- textStyle.textWidth = textStyleModel.getShallow('width');
- textStyle.textHeight = textStyleModel.getShallow('height');
- textStyle.textTag = textStyleModel.getShallow('tag');
-
- if (!isBlock || !opt.disableBox) {
- textStyle.textBackgroundColor = getAutoColor(textStyleModel.getShallow('backgroundColor'), opt);
- textStyle.textPadding = textStyleModel.getShallow('padding');
- textStyle.textBorderColor = getAutoColor(textStyleModel.getShallow('borderColor'), opt);
- textStyle.textBorderWidth = textStyleModel.getShallow('borderWidth');
- textStyle.textBorderRadius = textStyleModel.getShallow('borderRadius');
- textStyle.textBoxShadowColor = textStyleModel.getShallow('shadowColor');
- textStyle.textBoxShadowBlur = textStyleModel.getShallow('shadowBlur');
- textStyle.textBoxShadowOffsetX = textStyleModel.getShallow('shadowOffsetX');
- textStyle.textBoxShadowOffsetY = textStyleModel.getShallow('shadowOffsetY');
- }
-
- textStyle.textShadowColor = textStyleModel.getShallow('textShadowColor') || globalTextStyle.textShadowColor;
- textStyle.textShadowBlur = textStyleModel.getShallow('textShadowBlur') || globalTextStyle.textShadowBlur;
- textStyle.textShadowOffsetX = textStyleModel.getShallow('textShadowOffsetX') || globalTextStyle.textShadowOffsetX;
- textStyle.textShadowOffsetY = textStyleModel.getShallow('textShadowOffsetY') || globalTextStyle.textShadowOffsetY;
- }
-
- function getAutoColor(color, opt) {
- return color !== 'auto' ? color : opt && opt.autoColor ? opt.autoColor : null;
- }
- /**
- * Give some default value to the input `textStyle` object, based on the current settings
- * in this `textStyle` object.
- *
- * The Scenario:
- * when text position is `inside` and `textFill` is not specified, we show
- * text border by default for better view. But it should be considered that text position
- * might be changed when hovering or being emphasis, where the `insideRollback` is used to
- * restore the style.
- *
- * Usage (& NOTICE):
- * When a style object (eithor plain object or instance of `zrender/src/graphic/Style`) is
- * about to be modified on its text related properties, `rollbackDefaultTextStyle` should
- * be called before the modification and `applyDefaultTextStyle` should be called after that.
- * (For the case that all of the text related properties is reset, like `setTextStyleCommon`
- * does, `rollbackDefaultTextStyle` is not needed to be called).
- */
-
-
- function applyDefaultTextStyle(textStyle) {
- var textPosition = textStyle.textPosition;
- var opt = textStyle.insideRollbackOpt;
- var insideRollback;
-
- if (opt && textStyle.textFill == null) {
- var autoColor = opt.autoColor;
- var isRectText = opt.isRectText;
- var useInsideStyle = opt.useInsideStyle;
- var useInsideStyleCache = useInsideStyle !== false && (useInsideStyle === true || isRectText && textPosition // textPosition can be [10, 30]
- && typeof textPosition === 'string' && textPosition.indexOf('inside') >= 0);
- var useAutoColorCache = !useInsideStyleCache && autoColor != null; // All of the props declared in `CACHED_LABEL_STYLE_PROPERTIES` are to be cached.
-
- if (useInsideStyleCache || useAutoColorCache) {
- insideRollback = {
- textFill: textStyle.textFill,
- textStroke: textStyle.textStroke,
- textStrokeWidth: textStyle.textStrokeWidth
- };
- }
-
- if (useInsideStyleCache) {
- textStyle.textFill = '#fff'; // Consider text with #fff overflow its container.
-
- if (textStyle.textStroke == null) {
- textStyle.textStroke = autoColor;
- textStyle.textStrokeWidth == null && (textStyle.textStrokeWidth = 2);
- }
- }
-
- if (useAutoColorCache) {
- textStyle.textFill = autoColor;
- }
- } // Always set `insideRollback`, so that the previous one can be cleared.
-
-
- textStyle.insideRollback = insideRollback;
- }
- /**
- * Consider the case: in a scatter,
- * label: {
- * normal: {position: 'inside'},
- * emphasis: {position: 'top'}
- * }
- * In the normal state, the `textFill` will be set as '#fff' for pretty view (see
- * `applyDefaultTextStyle`), but when switching to emphasis state, the `textFill`
- * should be retured to 'autoColor', but not keep '#fff'.
- */
-
-
- function rollbackDefaultTextStyle(style) {
- var insideRollback = style.insideRollback;
-
- if (insideRollback) {
- // Reset all of the props in `CACHED_LABEL_STYLE_PROPERTIES`.
- style.textFill = insideRollback.textFill;
- style.textStroke = insideRollback.textStroke;
- style.textStrokeWidth = insideRollback.textStrokeWidth;
- style.insideRollback = null;
- }
- }
-
- function getFont(opt, ecModel) {
- var gTextStyleModel = ecModel && ecModel.getModel('textStyle');
- return zrUtil.trim([// FIXME in node-canvas fontWeight is before fontStyle
- opt.fontStyle || gTextStyleModel && gTextStyleModel.getShallow('fontStyle') || '', opt.fontWeight || gTextStyleModel && gTextStyleModel.getShallow('fontWeight') || '', (opt.fontSize || gTextStyleModel && gTextStyleModel.getShallow('fontSize') || 12) + 'px', opt.fontFamily || gTextStyleModel && gTextStyleModel.getShallow('fontFamily') || 'sans-serif'].join(' '));
- }
-
- function animateOrSetProps(isUpdate, el, props, animatableModel, dataIndex, cb) {
- if (typeof dataIndex === 'function') {
- cb = dataIndex;
- dataIndex = null;
- } // Do not check 'animation' property directly here. Consider this case:
- // animation model is an `itemModel`, whose does not have `isAnimationEnabled`
- // but its parent model (`seriesModel`) does.
-
-
- var animationEnabled = animatableModel && animatableModel.isAnimationEnabled();
-
- if (animationEnabled) {
- var postfix = isUpdate ? 'Update' : '';
- var duration = animatableModel.getShallow('animationDuration' + postfix);
- var animationEasing = animatableModel.getShallow('animationEasing' + postfix);
- var animationDelay = animatableModel.getShallow('animationDelay' + postfix);
-
- if (typeof animationDelay === 'function') {
- animationDelay = animationDelay(dataIndex, animatableModel.getAnimationDelayParams ? animatableModel.getAnimationDelayParams(el, dataIndex) : null);
- }
-
- if (typeof duration === 'function') {
- duration = duration(dataIndex);
- }
-
- duration > 0 ? el.animateTo(props, duration, animationDelay || 0, animationEasing, cb, !!cb) : (el.stopAnimation(), el.attr(props), cb && cb());
- } else {
- el.stopAnimation();
- el.attr(props);
- cb && cb();
- }
- }
- /**
- * Update graphic element properties with or without animation according to the
- * configuration in series.
- *
- * Caution: this method will stop previous animation.
- * So if do not use this method to one element twice before
- * animation starts, unless you know what you are doing.
- *
- * @param {module:zrender/Element} el
- * @param {Object} props
- * @param {module:echarts/model/Model} [animatableModel]
- * @param {number} [dataIndex]
- * @param {Function} [cb]
- * @example
- * graphic.updateProps(el, {
- * position: [100, 100]
- * }, seriesModel, dataIndex, function () { console.log('Animation done!'); });
- * // Or
- * graphic.updateProps(el, {
- * position: [100, 100]
- * }, seriesModel, function () { console.log('Animation done!'); });
- */
-
-
- function updateProps(el, props, animatableModel, dataIndex, cb) {
- animateOrSetProps(true, el, props, animatableModel, dataIndex, cb);
- }
- /**
- * Init graphic element properties with or without animation according to the
- * configuration in series.
- *
- * Caution: this method will stop previous animation.
- * So if do not use this method to one element twice before
- * animation starts, unless you know what you are doing.
- *
- * @param {module:zrender/Element} el
- * @param {Object} props
- * @param {module:echarts/model/Model} [animatableModel]
- * @param {number} [dataIndex]
- * @param {Function} cb
- */
-
-
- function initProps(el, props, animatableModel, dataIndex, cb) {
- animateOrSetProps(false, el, props, animatableModel, dataIndex, cb);
- }
- /**
- * Get transform matrix of target (param target),
- * in coordinate of its ancestor (param ancestor)
- *
- * @param {module:zrender/mixin/Transformable} target
- * @param {module:zrender/mixin/Transformable} [ancestor]
- */
-
-
- function getTransform(target, ancestor) {
- var mat = matrix.identity([]);
-
- while (target && target !== ancestor) {
- matrix.mul(mat, target.getLocalTransform(), mat);
- target = target.parent;
- }
-
- return mat;
- }
- /**
- * Apply transform to an vertex.
- * @param {Array.<number>} target [x, y]
- * @param {Array.<number>|TypedArray.<number>|Object} transform Can be:
- * + Transform matrix: like [1, 0, 0, 1, 0, 0]
- * + {position, rotation, scale}, the same as `zrender/Transformable`.
- * @param {boolean=} invert Whether use invert matrix.
- * @return {Array.<number>} [x, y]
- */
-
-
- function applyTransform(target, transform, invert) {
- if (transform && !zrUtil.isArrayLike(transform)) {
- transform = Transformable.getLocalTransform(transform);
- }
-
- if (invert) {
- transform = matrix.invert([], transform);
- }
-
- return vector.applyTransform([], target, transform);
- }
- /**
- * @param {string} direction 'left' 'right' 'top' 'bottom'
- * @param {Array.<number>} transform Transform matrix: like [1, 0, 0, 1, 0, 0]
- * @param {boolean=} invert Whether use invert matrix.
- * @return {string} Transformed direction. 'left' 'right' 'top' 'bottom'
- */
-
-
- function transformDirection(direction, transform, invert) {
- // Pick a base, ensure that transform result will not be (0, 0).
- var hBase = transform[4] === 0 || transform[5] === 0 || transform[0] === 0 ? 1 : Math.abs(2 * transform[4] / transform[0]);
- var vBase = transform[4] === 0 || transform[5] === 0 || transform[2] === 0 ? 1 : Math.abs(2 * transform[4] / transform[2]);
- var vertex = [direction === 'left' ? -hBase : direction === 'right' ? hBase : 0, direction === 'top' ? -vBase : direction === 'bottom' ? vBase : 0];
- vertex = applyTransform(vertex, transform, invert);
- return Math.abs(vertex[0]) > Math.abs(vertex[1]) ? vertex[0] > 0 ? 'right' : 'left' : vertex[1] > 0 ? 'bottom' : 'top';
- }
- /**
- * Apply group transition animation from g1 to g2.
- * If no animatableModel, no animation.
- */
-
-
- function groupTransition(g1, g2, animatableModel, cb) {
- if (!g1 || !g2) {
- return;
- }
-
- function getElMap(g) {
- var elMap = {};
- g.traverse(function (el) {
- if (!el.isGroup && el.anid) {
- elMap[el.anid] = el;
- }
- });
- return elMap;
- }
-
- function getAnimatableProps(el) {
- var obj = {
- position: vector.clone(el.position),
- rotation: el.rotation
- };
-
- if (el.shape) {
- obj.shape = zrUtil.extend({}, el.shape);
- }
-
- return obj;
- }
-
- var elMap1 = getElMap(g1);
- g2.traverse(function (el) {
- if (!el.isGroup && el.anid) {
- var oldEl = elMap1[el.anid];
-
- if (oldEl) {
- var newProp = getAnimatableProps(el);
- el.attr(getAnimatableProps(oldEl));
- updateProps(el, newProp, animatableModel, el.dataIndex);
- } // else {
- // if (el.previousProps) {
- // graphic.updateProps
- // }
- // }
-
- }
- });
- }
- /**
- * @param {Array.<Array.<number>>} points Like: [[23, 44], [53, 66], ...]
- * @param {Object} rect {x, y, width, height}
- * @return {Array.<Array.<number>>} A new clipped points.
- */
-
-
- function clipPointsByRect(points, rect) {
- // FIXME: this way migth be incorrect when grpahic clipped by a corner.
- // and when element have border.
- return zrUtil.map(points, function (point) {
- var x = point[0];
- x = mathMax(x, rect.x);
- x = mathMin(x, rect.x + rect.width);
- var y = point[1];
- y = mathMax(y, rect.y);
- y = mathMin(y, rect.y + rect.height);
- return [x, y];
- });
- }
- /**
- * @param {Object} targetRect {x, y, width, height}
- * @param {Object} rect {x, y, width, height}
- * @return {Object} A new clipped rect. If rect size are negative, return undefined.
- */
-
-
- function clipRectByRect(targetRect, rect) {
- var x = mathMax(targetRect.x, rect.x);
- var x2 = mathMin(targetRect.x + targetRect.width, rect.x + rect.width);
- var y = mathMax(targetRect.y, rect.y);
- var y2 = mathMin(targetRect.y + targetRect.height, rect.y + rect.height); // If the total rect is cliped, nothing, including the border,
- // should be painted. So return undefined.
-
- if (x2 >= x && y2 >= y) {
- return {
- x: x,
- y: y,
- width: x2 - x,
- height: y2 - y
- };
- }
- }
- /**
- * @param {string} iconStr Support 'image://' or 'path://' or direct svg path.
- * @param {Object} [opt] Properties of `module:zrender/Element`, except `style`.
- * @param {Object} [rect] {x, y, width, height}
- * @return {module:zrender/Element} Icon path or image element.
- */
-
-
- function createIcon(iconStr, opt, rect) {
- opt = zrUtil.extend({
- rectHover: true
- }, opt);
- var style = opt.style = {
- strokeNoScale: true
- };
- rect = rect || {
- x: -1,
- y: -1,
- width: 2,
- height: 2
- };
-
- if (iconStr) {
- return iconStr.indexOf('image://') === 0 ? (style.image = iconStr.slice(8), zrUtil.defaults(style, rect), new ZImage(opt)) : makePath(iconStr.replace('path://', ''), opt, rect, 'center');
- }
- }
- /**
- * Return `true` if the given line (line `a`) and the given polygon
- * are intersect.
- * Note that we do not count colinear as intersect here because no
- * requirement for that. We could do that if required in future.
- *
- * @param {number} a1x
- * @param {number} a1y
- * @param {number} a2x
- * @param {number} a2y
- * @param {Array.<Array.<number>>} points Points of the polygon.
- * @return {boolean}
- */
-
-
- function linePolygonIntersect(a1x, a1y, a2x, a2y, points) {
- for (var i = 0, p2 = points[points.length - 1]; i < points.length; i++) {
- var p = points[i];
-
- if (lineLineIntersect(a1x, a1y, a2x, a2y, p[0], p[1], p2[0], p2[1])) {
- return true;
- }
-
- p2 = p;
- }
- }
- /**
- * Return `true` if the given two lines (line `a` and line `b`)
- * are intersect.
- * Note that we do not count colinear as intersect here because no
- * requirement for that. We could do that if required in future.
- *
- * @param {number} a1x
- * @param {number} a1y
- * @param {number} a2x
- * @param {number} a2y
- * @param {number} b1x
- * @param {number} b1y
- * @param {number} b2x
- * @param {number} b2y
- * @return {boolean}
- */
-
-
- function lineLineIntersect(a1x, a1y, a2x, a2y, b1x, b1y, b2x, b2y) {
- // let `vec_m` to be `vec_a2 - vec_a1` and `vec_n` to be `vec_b2 - vec_b1`.
- var mx = a2x - a1x;
- var my = a2y - a1y;
- var nx = b2x - b1x;
- var ny = b2y - b1y; // `vec_m` and `vec_n` are parallel iff
- // exising `k` such that `vec_m = k · vec_n`, equivalent to `vec_m X vec_n = 0`.
-
- var nmCrossProduct = crossProduct2d(nx, ny, mx, my);
-
- if (nearZero(nmCrossProduct)) {
- return false;
- } // `vec_m` and `vec_n` are intersect iff
- // existing `p` and `q` in [0, 1] such that `vec_a1 + p * vec_m = vec_b1 + q * vec_n`,
- // such that `q = ((vec_a1 - vec_b1) X vec_m) / (vec_n X vec_m)`
- // and `p = ((vec_a1 - vec_b1) X vec_n) / (vec_n X vec_m)`.
-
-
- var b1a1x = a1x - b1x;
- var b1a1y = a1y - b1y;
- var q = crossProduct2d(b1a1x, b1a1y, mx, my) / nmCrossProduct;
-
- if (q < 0 || q > 1) {
- return false;
- }
-
- var p = crossProduct2d(b1a1x, b1a1y, nx, ny) / nmCrossProduct;
-
- if (p < 0 || p > 1) {
- return false;
- }
-
- return true;
- }
- /**
- * Cross product of 2-dimension vector.
- */
-
-
- function crossProduct2d(x1, y1, x2, y2) {
- return x1 * y2 - x2 * y1;
- }
-
- function nearZero(val) {
- return val <= 1e-6 && val >= -1e-6;
- } // Register built-in shapes. These shapes might be overwirtten
- // by users, although we do not recommend that.
-
-
- registerShape('circle', Circle);
- registerShape('sector', Sector);
- registerShape('ring', Ring);
- registerShape('polygon', Polygon);
- registerShape('polyline', Polyline);
- registerShape('rect', Rect);
- registerShape('line', Line);
- registerShape('bezierCurve', BezierCurve);
- registerShape('arc', Arc);
- exports.Z2_EMPHASIS_LIFT = Z2_EMPHASIS_LIFT;
- exports.CACHED_LABEL_STYLE_PROPERTIES = CACHED_LABEL_STYLE_PROPERTIES;
- exports.extendShape = extendShape;
- exports.extendPath = extendPath;
- exports.registerShape = registerShape;
- exports.getShapeClass = getShapeClass;
- exports.makePath = makePath;
- exports.makeImage = makeImage;
- exports.mergePath = mergePath;
- exports.resizePath = resizePath;
- exports.subPixelOptimizeLine = subPixelOptimizeLine;
- exports.subPixelOptimizeRect = subPixelOptimizeRect;
- exports.subPixelOptimize = subPixelOptimize;
- exports.setElementHoverStyle = setElementHoverStyle;
- exports.setHoverStyle = setHoverStyle;
- exports.setAsHighDownDispatcher = setAsHighDownDispatcher;
- exports.isHighDownDispatcher = isHighDownDispatcher;
- exports.getHighlightDigit = getHighlightDigit;
- exports.setLabelStyle = setLabelStyle;
- exports.modifyLabelStyle = modifyLabelStyle;
- exports.setTextStyle = setTextStyle;
- exports.setText = setText;
- exports.getFont = getFont;
- exports.updateProps = updateProps;
- exports.initProps = initProps;
- exports.getTransform = getTransform;
- exports.applyTransform = applyTransform;
- exports.transformDirection = transformDirection;
- exports.groupTransition = groupTransition;
- exports.clipPointsByRect = clipPointsByRect;
- exports.clipRectByRect = clipRectByRect;
- exports.createIcon = createIcon;
- exports.linePolygonIntersect = linePolygonIntersect;
- exports.lineLineIntersect = lineLineIntersect;
-
- /***/ }),
-
- /***/ 911:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports["default"] = void 0;
-
- var React = _interopRequireWildcard(__webpack_require__(0));
-
- var _rcDropdown = _interopRequireDefault(__webpack_require__(1061));
-
- var _classnames = _interopRequireDefault(__webpack_require__(3));
-
- var _configProvider = __webpack_require__(11);
-
- var _warning = _interopRequireDefault(__webpack_require__(43));
-
- var _icon = _interopRequireDefault(__webpack_require__(26));
-
- var _type = __webpack_require__(72);
-
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
-
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
-
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
-
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
-
- function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
-
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
-
- 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 _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
-
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
-
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
-
- var Placements = (0, _type.tuple)('topLeft', 'topCenter', 'topRight', 'bottomLeft', 'bottomCenter', 'bottomRight');
-
- var Dropdown =
- /*#__PURE__*/
- function (_React$Component) {
- _inherits(Dropdown, _React$Component);
-
- function Dropdown() {
- var _this;
-
- _classCallCheck(this, Dropdown);
-
- _this = _possibleConstructorReturn(this, _getPrototypeOf(Dropdown).apply(this, arguments));
-
- _this.renderOverlay = function (prefixCls) {
- // rc-dropdown already can process the function of overlay, but we have check logic here.
- // So we need render the element to check and pass back to rc-dropdown.
- var overlay = _this.props.overlay;
- var overlayNode;
-
- if (typeof overlay === 'function') {
- overlayNode = overlay();
- } else {
- overlayNode = overlay;
- }
-
- overlayNode = React.Children.only(overlayNode);
- var overlayProps = overlayNode.props; // Warning if use other mode
-
- (0, _warning["default"])(!overlayProps.mode || overlayProps.mode === 'vertical', 'Dropdown', "mode=\"".concat(overlayProps.mode, "\" is not supported for Dropdown's Menu.")); // menu cannot be selectable in dropdown defaultly
- // menu should be focusable in dropdown defaultly
-
- var _overlayProps$selecta = overlayProps.selectable,
- selectable = _overlayProps$selecta === void 0 ? false : _overlayProps$selecta,
- _overlayProps$focusab = overlayProps.focusable,
- focusable = _overlayProps$focusab === void 0 ? true : _overlayProps$focusab;
- var expandIcon = React.createElement("span", {
- className: "".concat(prefixCls, "-menu-submenu-arrow")
- }, React.createElement(_icon["default"], {
- type: "right",
- className: "".concat(prefixCls, "-menu-submenu-arrow-icon")
- }));
- var fixedModeOverlay = typeof overlayNode.type === 'string' ? overlay : React.cloneElement(overlayNode, {
- mode: 'vertical',
- selectable: selectable,
- focusable: focusable,
- expandIcon: expandIcon
- });
- return fixedModeOverlay;
- };
-
- _this.renderDropDown = function (_ref) {
- var getContextPopupContainer = _ref.getPopupContainer,
- getPrefixCls = _ref.getPrefixCls;
- var _this$props = _this.props,
- customizePrefixCls = _this$props.prefixCls,
- children = _this$props.children,
- trigger = _this$props.trigger,
- disabled = _this$props.disabled,
- getPopupContainer = _this$props.getPopupContainer;
- var prefixCls = getPrefixCls('dropdown', customizePrefixCls);
- var child = React.Children.only(children);
- var dropdownTrigger = React.cloneElement(child, {
- className: (0, _classnames["default"])(child.props.className, "".concat(prefixCls, "-trigger")),
- disabled: disabled
- });
- var triggerActions = disabled ? [] : trigger;
- var alignPoint;
-
- if (triggerActions && triggerActions.indexOf('contextMenu') !== -1) {
- alignPoint = true;
- }
-
- return React.createElement(_rcDropdown["default"], _extends({
- alignPoint: alignPoint
- }, _this.props, {
- prefixCls: prefixCls,
- getPopupContainer: getPopupContainer || getContextPopupContainer,
- transitionName: _this.getTransitionName(),
- trigger: triggerActions,
- overlay: function overlay() {
- return _this.renderOverlay(prefixCls);
- }
- }), dropdownTrigger);
- };
-
- return _this;
- }
-
- _createClass(Dropdown, [{
- key: "getTransitionName",
- value: function getTransitionName() {
- var _this$props2 = this.props,
- _this$props2$placemen = _this$props2.placement,
- placement = _this$props2$placemen === void 0 ? '' : _this$props2$placemen,
- transitionName = _this$props2.transitionName;
-
- if (transitionName !== undefined) {
- return transitionName;
- }
-
- if (placement.indexOf('top') >= 0) {
- return 'slide-down';
- }
-
- return 'slide-up';
- }
- }, {
- key: "render",
- value: function render() {
- return React.createElement(_configProvider.ConfigConsumer, null, this.renderDropDown);
- }
- }]);
-
- return Dropdown;
- }(React.Component);
-
- exports["default"] = Dropdown;
- Dropdown.defaultProps = {
- mouseEnterDelay: 0.15,
- mouseLeaveDelay: 0.1,
- placement: 'bottomLeft'
- };
- //# sourceMappingURL=dropdown.js.map
-
-
- /***/ }),
-
- /***/ 912:
- /***/ (function(module, exports, __webpack_require__) {
-
- var baseToString = __webpack_require__(914);
-
- /**
- * Converts `value` to a string. An empty string is returned for `null`
- * and `undefined` values. The sign of `-0` is preserved.
- *
- * @static
- * @memberOf _
- * @since 4.0.0
- * @category Lang
- * @param {*} value The value to convert.
- * @returns {string} Returns the converted string.
- * @example
- *
- * _.toString(null);
- * // => ''
- *
- * _.toString(-0);
- * // => '-0'
- *
- * _.toString([1, 2, 3]);
- * // => '1,2,3'
- */
- function toString(value) {
- return value == null ? '' : baseToString(value);
- }
-
- module.exports = toString;
-
-
- /***/ }),
-
- /***/ 913:
- /***/ (function(module, exports) {
-
- /**
- * A specialized version of `_.map` for arrays without support for iteratee
- * shorthands.
- *
- * @private
- * @param {Array} [array] The array to iterate over.
- * @param {Function} iteratee The function invoked per iteration.
- * @returns {Array} Returns the new mapped array.
- */
- function arrayMap(array, iteratee) {
- var index = -1,
- length = array == null ? 0 : array.length,
- result = Array(length);
-
- while (++index < length) {
- result[index] = iteratee(array[index], index, array);
- }
- return result;
- }
-
- module.exports = arrayMap;
-
-
- /***/ }),
-
- /***/ 914:
- /***/ (function(module, exports, __webpack_require__) {
-
- var Symbol = __webpack_require__(177),
- arrayMap = __webpack_require__(913),
- isArray = __webpack_require__(865),
- isSymbol = __webpack_require__(306);
-
- /** Used as references for various `Number` constants. */
- var INFINITY = 1 / 0;
-
- /** Used to convert symbols to primitives and strings. */
- var symbolProto = Symbol ? Symbol.prototype : undefined,
- symbolToString = symbolProto ? symbolProto.toString : undefined;
-
- /**
- * The base implementation of `_.toString` which doesn't convert nullish
- * values to empty strings.
- *
- * @private
- * @param {*} value The value to process.
- * @returns {string} Returns the string.
- */
- function baseToString(value) {
- // Exit early for strings to avoid a performance hit in some environments.
- if (typeof value == 'string') {
- return value;
- }
- if (isArray(value)) {
- // Recursively convert values (susceptible to call stack limits).
- return arrayMap(value, baseToString) + '';
- }
- if (isSymbol(value)) {
- return symbolToString ? symbolToString.call(value) : '';
- }
- var result = (value + '');
- return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result;
- }
-
- module.exports = baseToString;
-
-
- /***/ }),
-
- /***/ 915:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports["default"] = void 0;
-
- var React = _interopRequireWildcard(__webpack_require__(0));
-
- var _rcMenu = _interopRequireWildcard(__webpack_require__(174));
-
- var _classnames = _interopRequireDefault(__webpack_require__(3));
-
- var _omit = _interopRequireDefault(__webpack_require__(47));
-
- var _reactLifecyclesCompat = __webpack_require__(7);
-
- var _SubMenu = _interopRequireDefault(__webpack_require__(979));
-
- var _MenuItem = _interopRequireDefault(__webpack_require__(980));
-
- var _configProvider = __webpack_require__(11);
-
- var _warning = _interopRequireDefault(__webpack_require__(43));
-
- var _Sider = __webpack_require__(894);
-
- var _raf = _interopRequireDefault(__webpack_require__(183));
-
- var _motion = _interopRequireDefault(__webpack_require__(969));
-
- var _MenuContext = _interopRequireDefault(__webpack_require__(879));
-
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
-
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
-
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
-
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
-
- function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
-
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
-
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
-
- 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 _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
-
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
-
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
-
- var InternalMenu =
- /*#__PURE__*/
- function (_React$Component) {
- _inherits(InternalMenu, _React$Component);
-
- function InternalMenu(props) {
- var _this;
-
- _classCallCheck(this, InternalMenu);
-
- _this = _possibleConstructorReturn(this, _getPrototypeOf(InternalMenu).call(this, props)); // Restore vertical mode when menu is collapsed responsively when mounted
- // https://github.com/ant-design/ant-design/issues/13104
- // TODO: not a perfect solution, looking a new way to avoid setting switchingModeFromInline in this situation
-
- _this.handleMouseEnter = function (e) {
- _this.restoreModeVerticalFromInline();
-
- var onMouseEnter = _this.props.onMouseEnter;
-
- if (onMouseEnter) {
- onMouseEnter(e);
- }
- };
-
- _this.handleTransitionEnd = function (e) {
- // when inlineCollapsed menu width animation finished
- // https://github.com/ant-design/ant-design/issues/12864
- var widthCollapsed = e.propertyName === 'width' && e.target === e.currentTarget; // Fix SVGElement e.target.className.indexOf is not a function
- // https://github.com/ant-design/ant-design/issues/15699
-
- var className = e.target.className; // SVGAnimatedString.animVal should be identical to SVGAnimatedString.baseVal, unless during an animation.
-
- var classNameValue = Object.prototype.toString.call(className) === '[object SVGAnimatedString]' ? className.animVal : className; // Fix for <Menu style={{ width: '100%' }} />, the width transition won't trigger when menu is collapsed
- // https://github.com/ant-design/ant-design-pro/issues/2783
-
- var iconScaled = e.propertyName === 'font-size' && classNameValue.indexOf('anticon') >= 0;
-
- if (widthCollapsed || iconScaled) {
- _this.restoreModeVerticalFromInline();
- }
- };
-
- _this.handleClick = function (e) {
- _this.handleOpenChange([]);
-
- var onClick = _this.props.onClick;
-
- if (onClick) {
- onClick(e);
- }
- };
-
- _this.handleOpenChange = function (openKeys) {
- _this.setOpenKeys(openKeys);
-
- var onOpenChange = _this.props.onOpenChange;
-
- if (onOpenChange) {
- onOpenChange(openKeys);
- }
- };
-
- _this.renderMenu = function (_ref) {
- var getPopupContainer = _ref.getPopupContainer,
- getPrefixCls = _ref.getPrefixCls;
- var _this$props = _this.props,
- customizePrefixCls = _this$props.prefixCls,
- className = _this$props.className,
- theme = _this$props.theme,
- collapsedWidth = _this$props.collapsedWidth;
- var passProps = (0, _omit["default"])(_this.props, ['collapsedWidth', 'siderCollapsed']);
-
- var menuMode = _this.getRealMenuMode();
-
- var menuOpenMotion = _this.getOpenMotionProps(menuMode);
-
- var prefixCls = getPrefixCls('menu', customizePrefixCls);
- var menuClassName = (0, _classnames["default"])(className, "".concat(prefixCls, "-").concat(theme), _defineProperty({}, "".concat(prefixCls, "-inline-collapsed"), _this.getInlineCollapsed()));
-
- var menuProps = _extends({
- openKeys: _this.state.openKeys,
- onOpenChange: _this.handleOpenChange,
- className: menuClassName,
- mode: menuMode
- }, menuOpenMotion);
-
- if (menuMode !== 'inline') {
- // closing vertical popup submenu after click it
- menuProps.onClick = _this.handleClick;
- } // https://github.com/ant-design/ant-design/issues/8587
-
-
- var hideMenu = _this.getInlineCollapsed() && (collapsedWidth === 0 || collapsedWidth === '0' || collapsedWidth === '0px');
-
- if (hideMenu) {
- menuProps.openKeys = [];
- }
-
- return React.createElement(_rcMenu["default"], _extends({
- getPopupContainer: getPopupContainer
- }, passProps, menuProps, {
- prefixCls: prefixCls,
- onTransitionEnd: _this.handleTransitionEnd,
- onMouseEnter: _this.handleMouseEnter
- }));
- };
-
- (0, _warning["default"])(!('onOpen' in props || 'onClose' in props), 'Menu', '`onOpen` and `onClose` are removed, please use `onOpenChange` instead, ' + 'see: https://u.ant.design/menu-on-open-change.');
- (0, _warning["default"])(!('inlineCollapsed' in props && props.mode !== 'inline'), 'Menu', '`inlineCollapsed` should only be used when `mode` is inline.');
- (0, _warning["default"])(!(props.siderCollapsed !== undefined && 'inlineCollapsed' in props), 'Menu', '`inlineCollapsed` not control Menu under Sider. Should set `collapsed` on Sider instead.');
- var openKeys;
-
- if ('openKeys' in props) {
- openKeys = props.openKeys;
- } else if ('defaultOpenKeys' in props) {
- openKeys = props.defaultOpenKeys;
- }
-
- _this.state = {
- openKeys: openKeys || [],
- switchingModeFromInline: false,
- inlineOpenKeys: [],
- prevProps: props
- };
- return _this;
- }
-
- _createClass(InternalMenu, [{
- key: "componentWillUnmount",
- value: function componentWillUnmount() {
- _raf["default"].cancel(this.mountRafId);
- }
- }, {
- key: "setOpenKeys",
- value: function setOpenKeys(openKeys) {
- if (!('openKeys' in this.props)) {
- this.setState({
- openKeys: openKeys
- });
- }
- }
- }, {
- key: "getRealMenuMode",
- value: function getRealMenuMode() {
- var inlineCollapsed = this.getInlineCollapsed();
-
- if (this.state.switchingModeFromInline && inlineCollapsed) {
- return 'inline';
- }
-
- var mode = this.props.mode;
- return inlineCollapsed ? 'vertical' : mode;
- }
- }, {
- key: "getInlineCollapsed",
- value: function getInlineCollapsed() {
- var inlineCollapsed = this.props.inlineCollapsed;
-
- if (this.props.siderCollapsed !== undefined) {
- return this.props.siderCollapsed;
- }
-
- return inlineCollapsed;
- }
- }, {
- key: "getOpenMotionProps",
- value: function getOpenMotionProps(menuMode) {
- var _this$props2 = this.props,
- openTransitionName = _this$props2.openTransitionName,
- openAnimation = _this$props2.openAnimation,
- motion = _this$props2.motion; // Provides by user
-
- if (motion) {
- return {
- motion: motion
- };
- }
-
- if (openAnimation) {
- (0, _warning["default"])(typeof openAnimation === 'string', 'Menu', '`openAnimation` do not support object. Please use `motion` instead.');
- return {
- openAnimation: openAnimation
- };
- }
-
- if (openTransitionName) {
- return {
- openTransitionName: openTransitionName
- };
- } // Default logic
-
-
- if (menuMode === 'horizontal') {
- return {
- motion: {
- motionName: 'slide-up'
- }
- };
- }
-
- if (menuMode === 'inline') {
- return {
- motion: _motion["default"]
- };
- } // When mode switch from inline
- // submenu should hide without animation
-
-
- return {
- motion: {
- motionName: this.state.switchingModeFromInline ? '' : 'zoom-big'
- }
- };
- }
- }, {
- key: "restoreModeVerticalFromInline",
- value: function restoreModeVerticalFromInline() {
- var switchingModeFromInline = this.state.switchingModeFromInline;
-
- if (switchingModeFromInline) {
- this.setState({
- switchingModeFromInline: false
- });
- }
- }
- }, {
- key: "render",
- value: function render() {
- return React.createElement(_MenuContext["default"].Provider, {
- value: {
- inlineCollapsed: this.getInlineCollapsed() || false,
- antdMenuTheme: this.props.theme
- }
- }, React.createElement(_configProvider.ConfigConsumer, null, this.renderMenu));
- }
- }], [{
- key: "getDerivedStateFromProps",
- value: function getDerivedStateFromProps(nextProps, prevState) {
- var prevProps = prevState.prevProps;
- var newState = {
- prevProps: nextProps
- };
-
- if (prevProps.mode === 'inline' && nextProps.mode !== 'inline') {
- newState.switchingModeFromInline = true;
- }
-
- if ('openKeys' in nextProps) {
- newState.openKeys = nextProps.openKeys;
- } else {
- // [Legacy] Old code will return after `openKeys` changed.
- // Not sure the reason, we should keep this logic still.
- if (nextProps.inlineCollapsed && !prevProps.inlineCollapsed || nextProps.siderCollapsed && !prevProps.siderCollapsed) {
- newState.switchingModeFromInline = true;
- newState.inlineOpenKeys = prevState.openKeys;
- newState.openKeys = [];
- }
-
- if (!nextProps.inlineCollapsed && prevProps.inlineCollapsed || !nextProps.siderCollapsed && prevProps.siderCollapsed) {
- newState.openKeys = prevState.inlineOpenKeys;
- newState.inlineOpenKeys = [];
- }
- }
-
- return newState;
- }
- }]);
-
- return InternalMenu;
- }(React.Component);
-
- InternalMenu.defaultProps = {
- className: '',
- theme: 'light',
- focusable: false
- };
- (0, _reactLifecyclesCompat.polyfill)(InternalMenu); // We should keep this as ref-able
-
- var Menu =
- /*#__PURE__*/
- function (_React$Component2) {
- _inherits(Menu, _React$Component2);
-
- function Menu() {
- _classCallCheck(this, Menu);
-
- return _possibleConstructorReturn(this, _getPrototypeOf(Menu).apply(this, arguments));
- }
-
- _createClass(Menu, [{
- key: "render",
- value: function render() {
- var _this2 = this;
-
- return React.createElement(_Sider.SiderContext.Consumer, null, function (context) {
- return React.createElement(InternalMenu, _extends({}, _this2.props, context));
- });
- }
- }]);
-
- return Menu;
- }(React.Component);
-
- exports["default"] = Menu;
- Menu.Divider = _rcMenu.Divider;
- Menu.Item = _MenuItem["default"];
- Menu.SubMenu = _SubMenu["default"];
- Menu.ItemGroup = _rcMenu.ItemGroup;
- //# sourceMappingURL=index.js.map
-
-
- /***/ }),
-
- /***/ 916:
- /***/ (function(module, exports, __webpack_require__) {
-
- var ListCache = __webpack_require__(872),
- stackClear = __webpack_require__(1032),
- stackDelete = __webpack_require__(1033),
- stackGet = __webpack_require__(1034),
- stackHas = __webpack_require__(1035),
- stackSet = __webpack_require__(1036);
-
- /**
- * Creates a stack cache object to store key-value pairs.
- *
- * @private
- * @constructor
- * @param {Array} [entries] The key-value pairs to cache.
- */
- function Stack(entries) {
- var data = this.__data__ = new ListCache(entries);
- this.size = data.size;
- }
-
- // Add methods to `Stack`.
- Stack.prototype.clear = stackClear;
- Stack.prototype['delete'] = stackDelete;
- Stack.prototype.get = stackGet;
- Stack.prototype.has = stackHas;
- Stack.prototype.set = stackSet;
-
- module.exports = Stack;
-
-
- /***/ }),
-
- /***/ 917:
- /***/ (function(module, exports, __webpack_require__) {
-
- var baseAssignValue = __webpack_require__(887),
- eq = __webpack_require__(870);
-
- /** Used for built-in method references. */
- var objectProto = Object.prototype;
-
- /** Used to check objects for own properties. */
- var hasOwnProperty = objectProto.hasOwnProperty;
-
- /**
- * Assigns `value` to `key` of `object` if the existing value is not equivalent
- * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)
- * for equality comparisons.
- *
- * @private
- * @param {Object} object The object to modify.
- * @param {string} key The key of the property to assign.
- * @param {*} value The value to assign.
- */
- function assignValue(object, key, value) {
- var objValue = object[key];
- if (!(hasOwnProperty.call(object, key) && eq(objValue, value)) ||
- (value === undefined && !(key in object))) {
- baseAssignValue(object, key, value);
- }
- }
-
- module.exports = assignValue;
-
-
- /***/ }),
-
- /***/ 918:
- /***/ (function(module, exports) {
-
- /**
- * Removes all key-value entries from the list cache.
- *
- * @private
- * @name clear
- * @memberOf ListCache
- */
- function listCacheClear() {
- this.__data__ = [];
- this.size = 0;
- }
-
- module.exports = listCacheClear;
-
-
- /***/ }),
-
- /***/ 919:
- /***/ (function(module, exports, __webpack_require__) {
-
- var assocIndexOf = __webpack_require__(867);
-
- /** Used for built-in method references. */
- var arrayProto = Array.prototype;
-
- /** Built-in value references. */
- var splice = arrayProto.splice;
-
- /**
- * Removes `key` and its value from the list cache.
- *
- * @private
- * @name delete
- * @memberOf ListCache
- * @param {string} key The key of the value to remove.
- * @returns {boolean} Returns `true` if the entry was removed, else `false`.
- */
- function listCacheDelete(key) {
- var data = this.__data__,
- index = assocIndexOf(data, key);
-
- if (index < 0) {
- return false;
- }
- var lastIndex = data.length - 1;
- if (index == lastIndex) {
- data.pop();
- } else {
- splice.call(data, index, 1);
- }
- --this.size;
- return true;
- }
-
- module.exports = listCacheDelete;
-
-
- /***/ }),
-
- /***/ 920:
- /***/ (function(module, exports, __webpack_require__) {
-
- var assocIndexOf = __webpack_require__(867);
-
- /**
- * Gets the list cache value for `key`.
- *
- * @private
- * @name get
- * @memberOf ListCache
- * @param {string} key The key of the value to get.
- * @returns {*} Returns the entry value.
- */
- function listCacheGet(key) {
- var data = this.__data__,
- index = assocIndexOf(data, key);
-
- return index < 0 ? undefined : data[index][1];
- }
-
- module.exports = listCacheGet;
-
-
- /***/ }),
-
- /***/ 921:
- /***/ (function(module, exports, __webpack_require__) {
-
- var assocIndexOf = __webpack_require__(867);
-
- /**
- * Checks if a list cache value for `key` exists.
- *
- * @private
- * @name has
- * @memberOf ListCache
- * @param {string} key The key of the entry to check.
- * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
- */
- function listCacheHas(key) {
- return assocIndexOf(this.__data__, key) > -1;
- }
-
- module.exports = listCacheHas;
-
-
- /***/ }),
-
- /***/ 922:
- /***/ (function(module, exports, __webpack_require__) {
-
- var assocIndexOf = __webpack_require__(867);
-
- /**
- * Sets the list cache `key` to `value`.
- *
- * @private
- * @name set
- * @memberOf ListCache
- * @param {string} key The key of the value to set.
- * @param {*} value The value to set.
- * @returns {Object} Returns the list cache instance.
- */
- function listCacheSet(key, value) {
- var data = this.__data__,
- index = assocIndexOf(data, key);
-
- if (index < 0) {
- ++this.size;
- data.push([key, value]);
- } else {
- data[index][1] = value;
- }
- return this;
- }
-
- module.exports = listCacheSet;
-
-
- /***/ }),
-
- /***/ 923:
- /***/ (function(module, exports, __webpack_require__) {
-
- var isFunction = __webpack_require__(878),
- isMasked = __webpack_require__(924),
- isObject = __webpack_require__(171),
- toSource = __webpack_require__(889);
-
- /**
- * Used to match `RegExp`
- * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns).
- */
- var reRegExpChar = /[\\^$.*+?()[\]{}|]/g;
-
- /** Used to detect host constructors (Safari). */
- var reIsHostCtor = /^\[object .+?Constructor\]$/;
-
- /** Used for built-in method references. */
- var funcProto = Function.prototype,
- objectProto = Object.prototype;
-
- /** Used to resolve the decompiled source of functions. */
- var funcToString = funcProto.toString;
-
- /** Used to check objects for own properties. */
- var hasOwnProperty = objectProto.hasOwnProperty;
-
- /** Used to detect if a method is native. */
- var reIsNative = RegExp('^' +
- funcToString.call(hasOwnProperty).replace(reRegExpChar, '\\$&')
- .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$'
- );
-
- /**
- * The base implementation of `_.isNative` without bad shim checks.
- *
- * @private
- * @param {*} value The value to check.
- * @returns {boolean} Returns `true` if `value` is a native function,
- * else `false`.
- */
- function baseIsNative(value) {
- if (!isObject(value) || isMasked(value)) {
- return false;
- }
- var pattern = isFunction(value) ? reIsNative : reIsHostCtor;
- return pattern.test(toSource(value));
- }
-
- module.exports = baseIsNative;
-
-
- /***/ }),
-
- /***/ 924:
- /***/ (function(module, exports, __webpack_require__) {
-
- var coreJsData = __webpack_require__(925);
-
- /** Used to detect methods masquerading as native. */
- var maskSrcKey = (function() {
- var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || '');
- return uid ? ('Symbol(src)_1.' + uid) : '';
- }());
-
- /**
- * Checks if `func` has its source masked.
- *
- * @private
- * @param {Function} func The function to check.
- * @returns {boolean} Returns `true` if `func` is masked, else `false`.
- */
- function isMasked(func) {
- return !!maskSrcKey && (maskSrcKey in func);
- }
-
- module.exports = isMasked;
-
-
- /***/ }),
-
- /***/ 925:
- /***/ (function(module, exports, __webpack_require__) {
-
- var root = __webpack_require__(170);
-
- /** Used to detect overreaching core-js shims. */
- var coreJsData = root['__core-js_shared__'];
-
- module.exports = coreJsData;
-
-
- /***/ }),
-
- /***/ 926:
- /***/ (function(module, exports) {
-
- /**
- * Gets the value at `key` of `object`.
- *
- * @private
- * @param {Object} [object] The object to query.
- * @param {string} key The key of the property to get.
- * @returns {*} Returns the property value.
- */
- function getValue(object, key) {
- return object == null ? undefined : object[key];
- }
-
- module.exports = getValue;
-
-
- /***/ }),
-
- /***/ 927:
- /***/ (function(module, exports, __webpack_require__) {
-
- var Hash = __webpack_require__(928),
- ListCache = __webpack_require__(872),
- Map = __webpack_require__(876);
-
- /**
- * Removes all key-value entries from the map.
- *
- * @private
- * @name clear
- * @memberOf MapCache
- */
- function mapCacheClear() {
- this.size = 0;
- this.__data__ = {
- 'hash': new Hash,
- 'map': new (Map || ListCache),
- 'string': new Hash
- };
- }
-
- module.exports = mapCacheClear;
-
-
- /***/ }),
-
- /***/ 928:
- /***/ (function(module, exports, __webpack_require__) {
-
- var hashClear = __webpack_require__(929),
- hashDelete = __webpack_require__(930),
- hashGet = __webpack_require__(931),
- hashHas = __webpack_require__(932),
- hashSet = __webpack_require__(933);
-
- /**
- * Creates a hash object.
- *
- * @private
- * @constructor
- * @param {Array} [entries] The key-value pairs to cache.
- */
- function Hash(entries) {
- var index = -1,
- length = entries == null ? 0 : entries.length;
-
- this.clear();
- while (++index < length) {
- var entry = entries[index];
- this.set(entry[0], entry[1]);
- }
- }
-
- // Add methods to `Hash`.
- Hash.prototype.clear = hashClear;
- Hash.prototype['delete'] = hashDelete;
- Hash.prototype.get = hashGet;
- Hash.prototype.has = hashHas;
- Hash.prototype.set = hashSet;
-
- module.exports = Hash;
-
-
- /***/ }),
-
- /***/ 929:
- /***/ (function(module, exports, __webpack_require__) {
-
- var nativeCreate = __webpack_require__(868);
-
- /**
- * Removes all key-value entries from the hash.
- *
- * @private
- * @name clear
- * @memberOf Hash
- */
- function hashClear() {
- this.__data__ = nativeCreate ? nativeCreate(null) : {};
- this.size = 0;
- }
-
- module.exports = hashClear;
-
-
- /***/ }),
-
- /***/ 930:
- /***/ (function(module, exports) {
-
- /**
- * Removes `key` and its value from the hash.
- *
- * @private
- * @name delete
- * @memberOf Hash
- * @param {Object} hash The hash to modify.
- * @param {string} key The key of the value to remove.
- * @returns {boolean} Returns `true` if the entry was removed, else `false`.
- */
- function hashDelete(key) {
- var result = this.has(key) && delete this.__data__[key];
- this.size -= result ? 1 : 0;
- return result;
- }
-
- module.exports = hashDelete;
-
-
- /***/ }),
-
- /***/ 931:
- /***/ (function(module, exports, __webpack_require__) {
-
- var nativeCreate = __webpack_require__(868);
-
- /** Used to stand-in for `undefined` hash values. */
- var HASH_UNDEFINED = '__lodash_hash_undefined__';
-
- /** Used for built-in method references. */
- var objectProto = Object.prototype;
-
- /** Used to check objects for own properties. */
- var hasOwnProperty = objectProto.hasOwnProperty;
-
- /**
- * Gets the hash value for `key`.
- *
- * @private
- * @name get
- * @memberOf Hash
- * @param {string} key The key of the value to get.
- * @returns {*} Returns the entry value.
- */
- function hashGet(key) {
- var data = this.__data__;
- if (nativeCreate) {
- var result = data[key];
- return result === HASH_UNDEFINED ? undefined : result;
- }
- return hasOwnProperty.call(data, key) ? data[key] : undefined;
- }
-
- module.exports = hashGet;
-
-
- /***/ }),
-
- /***/ 932:
- /***/ (function(module, exports, __webpack_require__) {
-
- var nativeCreate = __webpack_require__(868);
-
- /** Used for built-in method references. */
- var objectProto = Object.prototype;
-
- /** Used to check objects for own properties. */
- var hasOwnProperty = objectProto.hasOwnProperty;
-
- /**
- * Checks if a hash value for `key` exists.
- *
- * @private
- * @name has
- * @memberOf Hash
- * @param {string} key The key of the entry to check.
- * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
- */
- function hashHas(key) {
- var data = this.__data__;
- return nativeCreate ? (data[key] !== undefined) : hasOwnProperty.call(data, key);
- }
-
- module.exports = hashHas;
-
-
- /***/ }),
-
- /***/ 933:
- /***/ (function(module, exports, __webpack_require__) {
-
- var nativeCreate = __webpack_require__(868);
-
- /** Used to stand-in for `undefined` hash values. */
- var HASH_UNDEFINED = '__lodash_hash_undefined__';
-
- /**
- * Sets the hash `key` to `value`.
- *
- * @private
- * @name set
- * @memberOf Hash
- * @param {string} key The key of the value to set.
- * @param {*} value The value to set.
- * @returns {Object} Returns the hash instance.
- */
- function hashSet(key, value) {
- var data = this.__data__;
- this.size += this.has(key) ? 0 : 1;
- data[key] = (nativeCreate && value === undefined) ? HASH_UNDEFINED : value;
- return this;
- }
-
- module.exports = hashSet;
-
-
- /***/ }),
-
- /***/ 934:
- /***/ (function(module, exports, __webpack_require__) {
-
- var getMapData = __webpack_require__(869);
-
- /**
- * Removes `key` and its value from the map.
- *
- * @private
- * @name delete
- * @memberOf MapCache
- * @param {string} key The key of the value to remove.
- * @returns {boolean} Returns `true` if the entry was removed, else `false`.
- */
- function mapCacheDelete(key) {
- var result = getMapData(this, key)['delete'](key);
- this.size -= result ? 1 : 0;
- return result;
- }
-
- module.exports = mapCacheDelete;
-
-
- /***/ }),
-
- /***/ 935:
- /***/ (function(module, exports) {
-
- /**
- * Checks if `value` is suitable for use as unique object key.
- *
- * @private
- * @param {*} value The value to check.
- * @returns {boolean} Returns `true` if `value` is suitable, else `false`.
- */
- function isKeyable(value) {
- var type = typeof value;
- return (type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean')
- ? (value !== '__proto__')
- : (value === null);
- }
-
- module.exports = isKeyable;
-
-
- /***/ }),
-
- /***/ 936:
- /***/ (function(module, exports, __webpack_require__) {
-
- var getMapData = __webpack_require__(869);
-
- /**
- * Gets the map value for `key`.
- *
- * @private
- * @name get
- * @memberOf MapCache
- * @param {string} key The key of the value to get.
- * @returns {*} Returns the entry value.
- */
- function mapCacheGet(key) {
- return getMapData(this, key).get(key);
- }
-
- module.exports = mapCacheGet;
-
-
- /***/ }),
-
- /***/ 937:
- /***/ (function(module, exports, __webpack_require__) {
-
- var getMapData = __webpack_require__(869);
-
- /**
- * Checks if a map value for `key` exists.
- *
- * @private
- * @name has
- * @memberOf MapCache
- * @param {string} key The key of the entry to check.
- * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
- */
- function mapCacheHas(key) {
- return getMapData(this, key).has(key);
- }
-
- module.exports = mapCacheHas;
-
-
- /***/ }),
-
- /***/ 938:
- /***/ (function(module, exports, __webpack_require__) {
-
- var getMapData = __webpack_require__(869);
-
- /**
- * Sets the map `key` to `value`.
- *
- * @private
- * @name set
- * @memberOf MapCache
- * @param {string} key The key of the value to set.
- * @param {*} value The value to set.
- * @returns {Object} Returns the map cache instance.
- */
- function mapCacheSet(key, value) {
- var data = getMapData(this, key),
- size = data.size;
-
- data.set(key, value);
- this.size += data.size == size ? 0 : 1;
- return this;
- }
-
- module.exports = mapCacheSet;
-
-
- /***/ }),
-
- /***/ 939:
- /***/ (function(module, exports, __webpack_require__) {
-
- var baseGetTag = __webpack_require__(304),
- isObjectLike = __webpack_require__(302);
-
- /** `Object#toString` result references. */
- var argsTag = '[object Arguments]';
-
- /**
- * The base implementation of `_.isArguments`.
- *
- * @private
- * @param {*} value The value to check.
- * @returns {boolean} Returns `true` if `value` is an `arguments` object,
- */
- function baseIsArguments(value) {
- return isObjectLike(value) && baseGetTag(value) == argsTag;
- }
-
- module.exports = baseIsArguments;
-
-
- /***/ }),
-
- /***/ 940:
- /***/ (function(module, exports, __webpack_require__) {
-
- var memoizeCapped = __webpack_require__(941);
-
- /** Used to match property names within property paths. */
- var rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g;
-
- /** Used to match backslashes in property paths. */
- var reEscapeChar = /\\(\\)?/g;
-
- /**
- * Converts `string` to a property path array.
- *
- * @private
- * @param {string} string The string to convert.
- * @returns {Array} Returns the property path array.
- */
- var stringToPath = memoizeCapped(function(string) {
- var result = [];
- if (string.charCodeAt(0) === 46 /* . */) {
- result.push('');
- }
- string.replace(rePropName, function(match, number, quote, subString) {
- result.push(quote ? subString.replace(reEscapeChar, '$1') : (number || match));
- });
- return result;
- });
-
- module.exports = stringToPath;
-
-
- /***/ }),
-
- /***/ 941:
- /***/ (function(module, exports, __webpack_require__) {
-
- var memoize = __webpack_require__(942);
-
- /** Used as the maximum memoize cache size. */
- var MAX_MEMOIZE_SIZE = 500;
-
- /**
- * A specialized version of `_.memoize` which clears the memoized function's
- * cache when it exceeds `MAX_MEMOIZE_SIZE`.
- *
- * @private
- * @param {Function} func The function to have its output memoized.
- * @returns {Function} Returns the new memoized function.
- */
- function memoizeCapped(func) {
- var result = memoize(func, function(key) {
- if (cache.size === MAX_MEMOIZE_SIZE) {
- cache.clear();
- }
- return key;
- });
-
- var cache = result.cache;
- return result;
- }
-
- module.exports = memoizeCapped;
-
-
- /***/ }),
-
- /***/ 942:
- /***/ (function(module, exports, __webpack_require__) {
-
- var MapCache = __webpack_require__(877);
-
- /** Error message constants. */
- var FUNC_ERROR_TEXT = 'Expected a function';
-
- /**
- * Creates a function that memoizes the result of `func`. If `resolver` is
- * provided, it determines the cache key for storing the result based on the
- * arguments provided to the memoized function. By default, the first argument
- * provided to the memoized function is used as the map cache key. The `func`
- * is invoked with the `this` binding of the memoized function.
- *
- * **Note:** The cache is exposed as the `cache` property on the memoized
- * function. Its creation may be customized by replacing the `_.memoize.Cache`
- * constructor with one whose instances implement the
- * [`Map`](http://ecma-international.org/ecma-262/7.0/#sec-properties-of-the-map-prototype-object)
- * method interface of `clear`, `delete`, `get`, `has`, and `set`.
- *
- * @static
- * @memberOf _
- * @since 0.1.0
- * @category Function
- * @param {Function} func The function to have its output memoized.
- * @param {Function} [resolver] The function to resolve the cache key.
- * @returns {Function} Returns the new memoized function.
- * @example
- *
- * var object = { 'a': 1, 'b': 2 };
- * var other = { 'c': 3, 'd': 4 };
- *
- * var values = _.memoize(_.values);
- * values(object);
- * // => [1, 2]
- *
- * values(other);
- * // => [3, 4]
- *
- * object.a = 2;
- * values(object);
- * // => [1, 2]
- *
- * // Modify the result cache.
- * values.cache.set(object, ['a', 'b']);
- * values(object);
- * // => ['a', 'b']
- *
- * // Replace `_.memoize.Cache`.
- * _.memoize.Cache = WeakMap;
- */
- function memoize(func, resolver) {
- if (typeof func != 'function' || (resolver != null && typeof resolver != 'function')) {
- throw new TypeError(FUNC_ERROR_TEXT);
- }
- var memoized = function() {
- var args = arguments,
- key = resolver ? resolver.apply(this, args) : args[0],
- cache = memoized.cache;
-
- if (cache.has(key)) {
- return cache.get(key);
- }
- var result = func.apply(this, args);
- memoized.cache = cache.set(key, result) || cache;
- return result;
- };
- memoized.cache = new (memoize.Cache || MapCache);
- return memoized;
- }
-
- // Expose `MapCache`.
- memoize.Cache = MapCache;
-
- module.exports = memoize;
-
-
- /***/ }),
-
- /***/ 947:
- /***/ (function(module, exports) {
-
- /** Used for built-in method references. */
- var objectProto = Object.prototype;
-
- /**
- * Checks if `value` is likely a prototype object.
- *
- * @private
- * @param {*} value The value to check.
- * @returns {boolean} Returns `true` if `value` is a prototype, else `false`.
- */
- function isPrototype(value) {
- var Ctor = value && value.constructor,
- proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto;
-
- return value === proto;
- }
-
- module.exports = isPrototype;
-
-
- /***/ }),
-
- /***/ 948:
- /***/ (function(module, exports) {
-
- /**
- * This method returns the first argument it receives.
- *
- * @static
- * @since 0.1.0
- * @memberOf _
- * @category Util
- * @param {*} value Any value.
- * @returns {*} Returns `value`.
- * @example
- *
- * var object = { 'a': 1 };
- *
- * console.log(_.identity(object) === object);
- * // => true
- */
- function identity(value) {
- return value;
- }
-
- module.exports = identity;
-
-
- /***/ }),
-
- /***/ 949:
- /***/ (function(module, exports, __webpack_require__) {
-
- // style-loader: Adds some css to the DOM by adding a <style> tag
-
- // load the styles
- var content = __webpack_require__(951);
- if(typeof content === 'string') content = [[module.i, content, '']];
- // Prepare cssTransformation
- var transform;
-
- var options = {"hmr":false}
- options.transform = transform
- // add the styles to the DOM
- var update = __webpack_require__(300)(content, options);
- if(content.locals) module.exports = content.locals;
-
-
- /***/ }),
-
- /***/ 951:
- /***/ (function(module, exports, __webpack_require__) {
-
- exports = module.exports = __webpack_require__(299)(true);
- // imports
-
-
- // module
- exports.push([module.i, ".ant-pagination{-webkit-box-sizing:border-box;box-sizing:border-box;color:rgba(0,0,0,.65);font-size:14px;font-variant:tabular-nums;line-height:1.5;-webkit-font-feature-settings:\"tnum\";font-feature-settings:\"tnum\"}.ant-pagination,.ant-pagination ol,.ant-pagination ul{margin:0;padding:0;list-style:none}.ant-pagination:after{display:block;clear:both;height:0;overflow:hidden;visibility:hidden;content:\" \"}.ant-pagination-item,.ant-pagination-total-text{display:inline-block;height:32px;margin-right:8px;line-height:30px;vertical-align:middle}.ant-pagination-item{min-width:32px;font-family:Arial;text-align:center;list-style:none;background-color:#fff;border:1px solid #d9d9d9;border-radius:4px;outline:0;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ant-pagination-item a{display:block;padding:0 6px;color:rgba(0,0,0,.65);-webkit-transition:none;-o-transition:none;transition:none}.ant-pagination-item a:hover{text-decoration:none}.ant-pagination-item:focus,.ant-pagination-item:hover{border-color:#1890ff;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.ant-pagination-item:focus a,.ant-pagination-item:hover a{color:#1890ff}.ant-pagination-item-active{font-weight:500;background:#fff;border-color:#1890ff}.ant-pagination-item-active a{color:#1890ff}.ant-pagination-item-active:focus,.ant-pagination-item-active:hover{border-color:#40a9ff}.ant-pagination-item-active:focus a,.ant-pagination-item-active:hover a{color:#40a9ff}.ant-pagination-jump-next,.ant-pagination-jump-prev{outline:0}.ant-pagination-jump-next .ant-pagination-item-container,.ant-pagination-jump-prev .ant-pagination-item-container{position:relative}.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon,.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon{display:inline-block;font-size:12px;font-size:12px\\9;-webkit-transform:scale(1) rotate(0deg);-ms-transform:scale(1) rotate(0deg);transform:scale(1) rotate(0deg);color:#1890ff;letter-spacing:-1px;opacity:0;-webkit-transition:all .2s;-o-transition:all .2s;transition:all .2s}:root .ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon,:root .ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon{font-size:12px}.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon-svg,.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon-svg{top:0;right:0;bottom:0;left:0;margin:auto}.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-ellipsis,.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-ellipsis{position:absolute;top:0;right:0;bottom:0;left:0;display:block;margin:auto;color:rgba(0,0,0,.25);letter-spacing:2px;text-align:center;text-indent:.13em;opacity:1;-webkit-transition:all .2s;-o-transition:all .2s;transition:all .2s}.ant-pagination-jump-next:focus .ant-pagination-item-link-icon,.ant-pagination-jump-next:hover .ant-pagination-item-link-icon,.ant-pagination-jump-prev:focus .ant-pagination-item-link-icon,.ant-pagination-jump-prev:hover .ant-pagination-item-link-icon{opacity:1}.ant-pagination-jump-next:focus .ant-pagination-item-ellipsis,.ant-pagination-jump-next:hover .ant-pagination-item-ellipsis,.ant-pagination-jump-prev:focus .ant-pagination-item-ellipsis,.ant-pagination-jump-prev:hover .ant-pagination-item-ellipsis{opacity:0}.ant-pagination-jump-next,.ant-pagination-jump-prev,.ant-pagination-prev{margin-right:8px}.ant-pagination-jump-next,.ant-pagination-jump-prev,.ant-pagination-next,.ant-pagination-prev{display:inline-block;min-width:32px;height:32px;color:rgba(0,0,0,.65);font-family:Arial;line-height:32px;text-align:center;vertical-align:middle;list-style:none;border-radius:4px;cursor:pointer;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.ant-pagination-next,.ant-pagination-prev{outline:0}.ant-pagination-next a,.ant-pagination-prev a{color:rgba(0,0,0,.65);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ant-pagination-next:hover a,.ant-pagination-prev:hover a{border-color:#40a9ff}.ant-pagination-next .ant-pagination-item-link,.ant-pagination-prev .ant-pagination-item-link{display:block;height:100%;font-size:12px;text-align:center;background-color:#fff;border:1px solid #d9d9d9;border-radius:4px;outline:none;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.ant-pagination-next:focus .ant-pagination-item-link,.ant-pagination-next:hover .ant-pagination-item-link,.ant-pagination-prev:focus .ant-pagination-item-link,.ant-pagination-prev:hover .ant-pagination-item-link{color:#1890ff;border-color:#1890ff}.ant-pagination-disabled,.ant-pagination-disabled:focus,.ant-pagination-disabled:hover{cursor:not-allowed}.ant-pagination-disabled .ant-pagination-item-link,.ant-pagination-disabled:focus .ant-pagination-item-link,.ant-pagination-disabled:focus a,.ant-pagination-disabled:hover .ant-pagination-item-link,.ant-pagination-disabled:hover a,.ant-pagination-disabled a{color:rgba(0,0,0,.25);border-color:#d9d9d9;cursor:not-allowed}.ant-pagination-slash{margin:0 10px 0 5px}.ant-pagination-options{display:inline-block;margin-left:16px;vertical-align:middle}.ant-pagination-options-size-changer.ant-select{display:inline-block;width:auto;margin-right:8px}.ant-pagination-options-quick-jumper{display:inline-block;height:32px;line-height:32px;vertical-align:top}.ant-pagination-options-quick-jumper input{position:relative;display:inline-block;width:100%;height:32px;padding:4px 11px;color:rgba(0,0,0,.65);font-size:14px;line-height:1.5;background-color:#fff;background-image:none;border:1px solid #d9d9d9;border-radius:4px;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s;width:50px;margin:0 8px}.ant-pagination-options-quick-jumper input::-moz-placeholder{color:#bfbfbf;opacity:1}.ant-pagination-options-quick-jumper input:-ms-input-placeholder{color:#bfbfbf}.ant-pagination-options-quick-jumper input::-webkit-input-placeholder{color:#bfbfbf}.ant-pagination-options-quick-jumper input:placeholder-shown{-o-text-overflow:ellipsis;text-overflow:ellipsis}.ant-pagination-options-quick-jumper input:focus,.ant-pagination-options-quick-jumper input:hover{border-color:#40a9ff;border-right-width:1px!important}.ant-pagination-options-quick-jumper input:focus{outline:0;-webkit-box-shadow:0 0 0 2px rgba(24,144,255,.2);box-shadow:0 0 0 2px rgba(24,144,255,.2)}.ant-pagination-options-quick-jumper input-disabled{color:rgba(0,0,0,.25);background-color:#f5f5f5;cursor:not-allowed;opacity:1}.ant-pagination-options-quick-jumper input-disabled:hover{border-color:#d9d9d9;border-right-width:1px!important}.ant-pagination-options-quick-jumper input[disabled]{color:rgba(0,0,0,.25);background-color:#f5f5f5;cursor:not-allowed;opacity:1}.ant-pagination-options-quick-jumper input[disabled]:hover{border-color:#d9d9d9;border-right-width:1px!important}textarea.ant-pagination-options-quick-jumper input{max-width:100%;height:auto;min-height:32px;line-height:1.5;vertical-align:bottom;-webkit-transition:all .3s,height 0s;-o-transition:all .3s,height 0s;transition:all .3s,height 0s}.ant-pagination-options-quick-jumper input-lg{height:40px;padding:6px 11px;font-size:16px}.ant-pagination-options-quick-jumper input-sm{height:24px;padding:1px 7px}.ant-pagination-simple .ant-pagination-next,.ant-pagination-simple .ant-pagination-prev{height:24px;line-height:24px;vertical-align:top}.ant-pagination-simple .ant-pagination-next .ant-pagination-item-link,.ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link{height:24px;border:0}.ant-pagination-simple .ant-pagination-next .ant-pagination-item-link:after,.ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link:after{height:24px;line-height:24px}.ant-pagination-simple .ant-pagination-simple-pager{display:inline-block;height:24px;margin-right:8px}.ant-pagination-simple .ant-pagination-simple-pager input{-webkit-box-sizing:border-box;box-sizing:border-box;height:100%;margin-right:8px;padding:0 6px;text-align:center;background-color:#fff;border:1px solid #d9d9d9;border-radius:4px;outline:none;-webkit-transition:border-color .3s;-o-transition:border-color .3s;transition:border-color .3s}.ant-pagination-simple .ant-pagination-simple-pager input:hover{border-color:#1890ff}.ant-pagination.mini .ant-pagination-simple-pager,.ant-pagination.mini .ant-pagination-total-text{height:24px;line-height:24px}.ant-pagination.mini .ant-pagination-item{min-width:24px;height:24px;margin:0;line-height:22px}.ant-pagination.mini .ant-pagination-item:not(.ant-pagination-item-active){background:transparent;border-color:transparent}.ant-pagination.mini .ant-pagination-next,.ant-pagination.mini .ant-pagination-prev{min-width:24px;height:24px;margin:0;line-height:24px}.ant-pagination.mini .ant-pagination-next .ant-pagination-item-link,.ant-pagination.mini .ant-pagination-prev .ant-pagination-item-link{background:transparent;border-color:transparent}.ant-pagination.mini .ant-pagination-next .ant-pagination-item-link:after,.ant-pagination.mini .ant-pagination-prev .ant-pagination-item-link:after{height:24px;line-height:24px}.ant-pagination.mini .ant-pagination-jump-next,.ant-pagination.mini .ant-pagination-jump-prev{height:24px;margin-right:0;line-height:24px}.ant-pagination.mini .ant-pagination-options{margin-left:2px}.ant-pagination.mini .ant-pagination-options-quick-jumper{height:24px;line-height:24px}.ant-pagination.mini .ant-pagination-options-quick-jumper input{height:24px;padding:1px 7px;width:44px}.ant-pagination.ant-pagination-disabled{cursor:not-allowed}.ant-pagination.ant-pagination-disabled .ant-pagination-item{background:#f5f5f5;border-color:#d9d9d9;cursor:not-allowed}.ant-pagination.ant-pagination-disabled .ant-pagination-item a{color:rgba(0,0,0,.25);background:transparent;border:none;cursor:not-allowed}.ant-pagination.ant-pagination-disabled .ant-pagination-item-active{background:#dbdbdb;border-color:transparent}.ant-pagination.ant-pagination-disabled .ant-pagination-item-active a{color:#fff}.ant-pagination.ant-pagination-disabled .ant-pagination-item-link,.ant-pagination.ant-pagination-disabled .ant-pagination-item-link:focus,.ant-pagination.ant-pagination-disabled .ant-pagination-item-link:hover{color:rgba(0,0,0,.45);background:#f5f5f5;border-color:#d9d9d9;cursor:not-allowed}.ant-pagination.ant-pagination-disabled .ant-pagination-jump-next:focus .ant-pagination-item-link-icon,.ant-pagination.ant-pagination-disabled .ant-pagination-jump-next:hover .ant-pagination-item-link-icon,.ant-pagination.ant-pagination-disabled .ant-pagination-jump-prev:focus .ant-pagination-item-link-icon,.ant-pagination.ant-pagination-disabled .ant-pagination-jump-prev:hover .ant-pagination-item-link-icon{opacity:0}.ant-pagination.ant-pagination-disabled .ant-pagination-jump-next:focus .ant-pagination-item-ellipsis,.ant-pagination.ant-pagination-disabled .ant-pagination-jump-next:hover .ant-pagination-item-ellipsis,.ant-pagination.ant-pagination-disabled .ant-pagination-jump-prev:focus .ant-pagination-item-ellipsis,.ant-pagination.ant-pagination-disabled .ant-pagination-jump-prev:hover .ant-pagination-item-ellipsis{opacity:1}@media only screen and (max-width:992px){.ant-pagination-item-after-jump-prev,.ant-pagination-item-before-jump-next{display:none}}@media only screen and (max-width:576px){.ant-pagination-options{display:none}}", "", {"version":3,"sources":["/Users/jasder/work/trustie3.0/educoder/public/react/node_modules/antd/lib/pagination/style/index.css"],"names":[],"mappings":"AAIA,gBACE,8BAA+B,AACvB,sBAAuB,AAG/B,sBAA2B,AAC3B,eAAgB,AAChB,0BAA2B,AAC3B,gBAAiB,AAEjB,qCAAsC,AAC9B,4BAA8B,CACvC,AACD,sDAVE,SAAU,AACV,UAAW,AAKX,eAAiB,CASlB,AACD,sBACE,cAAe,AACf,WAAY,AACZ,SAAU,AACV,gBAAiB,AACjB,kBAAmB,AACnB,WAAa,CACd,AAQD,gDANE,qBAAsB,AACtB,YAAa,AACb,iBAAkB,AAClB,iBAAkB,AAClB,qBAAuB,CAqBxB,AAnBD,qBAEE,eAAgB,AAGhB,kBAAmB,AAEnB,kBAAmB,AAEnB,gBAAiB,AACjB,sBAAuB,AACvB,yBAA0B,AAC1B,kBAAmB,AACnB,UAAW,AACX,eAAgB,AAChB,yBAA0B,AACvB,sBAAuB,AACtB,qBAAsB,AAClB,gBAAkB,CAC3B,AACD,uBACE,cAAe,AACf,cAAe,AACf,sBAA2B,AAC3B,wBAAyB,AACzB,mBAAoB,AACpB,eAAiB,CAClB,AACD,6BACE,oBAAsB,CACvB,AACD,sDAEE,qBAAsB,AACtB,2BAA6B,AAC7B,sBAAwB,AACxB,kBAAqB,CACtB,AACD,0DAEE,aAAe,CAChB,AACD,4BACE,gBAAiB,AACjB,gBAAiB,AACjB,oBAAsB,CACvB,AACD,8BACE,aAAe,CAChB,AACD,oEAEE,oBAAsB,CACvB,AACD,wEAEE,aAAe,CAChB,AACD,oDAEE,SAAW,CACZ,AACD,kHAEE,iBAAmB,CACpB,AACD,gLAEE,qBAAsB,AACtB,eAAgB,AAChB,iBAAmB,AACnB,wCAAyC,AACrC,oCAAqC,AACjC,gCAAiC,AACzC,cAAe,AACf,oBAAqB,AACrB,UAAW,AACX,2BAA6B,AAC7B,sBAAwB,AACxB,kBAAqB,CACtB,AACD,4LAEE,cAAgB,CACjB,AACD,wLAEE,MAAO,AACP,QAAS,AACT,SAAU,AACV,OAAQ,AACR,WAAa,CACd,AACD,8KAEE,kBAAmB,AACnB,MAAO,AACP,QAAS,AACT,SAAU,AACV,OAAQ,AACR,cAAe,AACf,YAAa,AACb,sBAA2B,AAC3B,mBAAoB,AACpB,kBAAmB,AACnB,kBAAoB,AACpB,UAAW,AACX,2BAA6B,AAC7B,sBAAwB,AACxB,kBAAqB,CACtB,AACD,4PAIE,SAAW,CACZ,AACD,wPAIE,SAAW,CACZ,AACD,yEAGE,gBAAkB,CACnB,AACD,8FAIE,qBAAsB,AACtB,eAAgB,AAChB,YAAa,AACb,sBAA2B,AAC3B,kBAAmB,AACnB,iBAAkB,AAClB,kBAAmB,AACnB,sBAAuB,AACvB,gBAAiB,AACjB,kBAAmB,AACnB,eAAgB,AAChB,2BAA6B,AAC7B,sBAAwB,AACxB,kBAAqB,CACtB,AACD,0CAEE,SAAW,CACZ,AACD,8CAEE,sBAA2B,AAC3B,yBAA0B,AACvB,sBAAuB,AACtB,qBAAsB,AAClB,gBAAkB,CAC3B,AACD,0DAEE,oBAAsB,CACvB,AACD,8FAEE,cAAe,AACf,YAAa,AACb,eAAgB,AAChB,kBAAmB,AACnB,sBAAuB,AACvB,yBAA0B,AAC1B,kBAAmB,AACnB,aAAc,AACd,2BAA6B,AAC7B,sBAAwB,AACxB,kBAAqB,CACtB,AACD,oNAIE,cAAe,AACf,oBAAsB,CACvB,AACD,uFAGE,kBAAoB,CACrB,AACD,kQAME,sBAA2B,AAC3B,qBAAsB,AACtB,kBAAoB,CACrB,AACD,sBACE,mBAAqB,CACtB,AACD,wBACE,qBAAsB,AACtB,iBAAkB,AAClB,qBAAuB,CACxB,AACD,gDACE,qBAAsB,AACtB,WAAY,AACZ,gBAAkB,CACnB,AACD,qCACE,qBAAsB,AACtB,YAAa,AACb,iBAAkB,AAClB,kBAAoB,CACrB,AACD,2CACE,kBAAmB,AACnB,qBAAsB,AACtB,WAAY,AACZ,YAAa,AACb,iBAAkB,AAClB,sBAA2B,AAC3B,eAAgB,AAChB,gBAAiB,AACjB,sBAAuB,AACvB,sBAAuB,AACvB,yBAA0B,AAC1B,kBAAmB,AACnB,2BAA6B,AAC7B,sBAAwB,AACxB,mBAAqB,AACrB,WAAY,AACZ,YAAc,CACf,AACD,6DACE,cAAe,AACf,SAAW,CACZ,AACD,iEACE,aAAe,CAChB,AACD,sEACE,aAAe,CAChB,AACD,6DACE,0BAA2B,AACxB,sBAAwB,CAC5B,AAKD,kGAHE,qBAAsB,AACtB,gCAAmC,CAQpC,AAND,iDAGE,UAAW,AACX,iDAAsD,AAC9C,wCAA8C,CACvD,AACD,oDACE,sBAA2B,AAC3B,yBAA0B,AAC1B,mBAAoB,AACpB,SAAW,CACZ,AACD,0DACE,qBAAsB,AACtB,gCAAmC,CACpC,AACD,qDACE,sBAA2B,AAC3B,yBAA0B,AAC1B,mBAAoB,AACpB,SAAW,CACZ,AACD,2DACE,qBAAsB,AACtB,gCAAmC,CACpC,AACD,mDACE,eAAgB,AAChB,YAAa,AACb,gBAAiB,AACjB,gBAAiB,AACjB,sBAAuB,AACvB,qCAAwC,AACxC,gCAAmC,AACnC,4BAAgC,CACjC,AACD,8CACE,YAAa,AACb,iBAAkB,AAClB,cAAgB,CACjB,AACD,8CACE,YAAa,AACb,eAAiB,CAClB,AACD,wFAEE,YAAa,AACb,iBAAkB,AAClB,kBAAoB,CACrB,AACD,4IAEE,YAAa,AACb,QAAU,CACX,AACD,wJAEE,YAAa,AACb,gBAAkB,CACnB,AACD,oDACE,qBAAsB,AACtB,YAAa,AACb,gBAAkB,CACnB,AACD,0DACE,8BAA+B,AACvB,sBAAuB,AAC/B,YAAa,AACb,iBAAkB,AAClB,cAAe,AACf,kBAAmB,AACnB,sBAAuB,AACvB,yBAA0B,AAC1B,kBAAmB,AACnB,aAAc,AACd,oCAAsC,AACtC,+BAAiC,AACjC,2BAA8B,CAC/B,AACD,gEACE,oBAAsB,CACvB,AACD,kGAEE,YAAa,AACb,gBAAkB,CACnB,AACD,0CACE,eAAgB,AAChB,YAAa,AACb,SAAU,AACV,gBAAkB,CACnB,AACD,2EACE,uBAAwB,AACxB,wBAA0B,CAC3B,AACD,oFAEE,eAAgB,AAChB,YAAa,AACb,SAAU,AACV,gBAAkB,CACnB,AACD,wIAEE,uBAAwB,AACxB,wBAA0B,CAC3B,AACD,oJAEE,YAAa,AACb,gBAAkB,CACnB,AACD,8FAEE,YAAa,AACb,eAAgB,AAChB,gBAAkB,CACnB,AACD,6CACE,eAAiB,CAClB,AACD,0DACE,YAAa,AACb,gBAAkB,CACnB,AACD,gEACE,YAAa,AACb,gBAAiB,AACjB,UAAY,CACb,AACD,wCACE,kBAAoB,CACrB,AACD,6DACE,mBAAoB,AACpB,qBAAsB,AACtB,kBAAoB,CACrB,AACD,+DACE,sBAA2B,AAC3B,uBAAwB,AACxB,YAAa,AACb,kBAAoB,CACrB,AACD,oEACE,mBAAoB,AACpB,wBAA0B,CAC3B,AACD,sEACE,UAAY,CACb,AACD,kNAGE,sBAA2B,AAC3B,mBAAoB,AACpB,qBAAsB,AACtB,kBAAoB,CACrB,AACD,4ZAIE,SAAW,CACZ,AACD,wZAIE,SAAW,CACZ,AACD,yCACE,2EAEE,YAAc,CACf,CACF,AACD,yCACE,wBACE,YAAc,CACf,CACF","file":"index.css","sourcesContent":["/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */\n/* stylelint-disable no-duplicate-selectors */\n/* stylelint-disable */\n/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */\n.ant-pagination {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n margin: 0;\n padding: 0;\n color: rgba(0, 0, 0, 0.65);\n font-size: 14px;\n font-variant: tabular-nums;\n line-height: 1.5;\n list-style: none;\n -webkit-font-feature-settings: 'tnum';\n font-feature-settings: 'tnum';\n}\n.ant-pagination ul,\n.ant-pagination ol {\n margin: 0;\n padding: 0;\n list-style: none;\n}\n.ant-pagination::after {\n display: block;\n clear: both;\n height: 0;\n overflow: hidden;\n visibility: hidden;\n content: ' ';\n}\n.ant-pagination-total-text {\n display: inline-block;\n height: 32px;\n margin-right: 8px;\n line-height: 30px;\n vertical-align: middle;\n}\n.ant-pagination-item {\n display: inline-block;\n min-width: 32px;\n height: 32px;\n margin-right: 8px;\n font-family: Arial;\n line-height: 30px;\n text-align: center;\n vertical-align: middle;\n list-style: none;\n background-color: #fff;\n border: 1px solid #d9d9d9;\n border-radius: 4px;\n outline: 0;\n cursor: pointer;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.ant-pagination-item a {\n display: block;\n padding: 0 6px;\n color: rgba(0, 0, 0, 0.65);\n -webkit-transition: none;\n -o-transition: none;\n transition: none;\n}\n.ant-pagination-item a:hover {\n text-decoration: none;\n}\n.ant-pagination-item:focus,\n.ant-pagination-item:hover {\n border-color: #1890ff;\n -webkit-transition: all 0.3s;\n -o-transition: all 0.3s;\n transition: all 0.3s;\n}\n.ant-pagination-item:focus a,\n.ant-pagination-item:hover a {\n color: #1890ff;\n}\n.ant-pagination-item-active {\n font-weight: 500;\n background: #fff;\n border-color: #1890ff;\n}\n.ant-pagination-item-active a {\n color: #1890ff;\n}\n.ant-pagination-item-active:focus,\n.ant-pagination-item-active:hover {\n border-color: #40a9ff;\n}\n.ant-pagination-item-active:focus a,\n.ant-pagination-item-active:hover a {\n color: #40a9ff;\n}\n.ant-pagination-jump-prev,\n.ant-pagination-jump-next {\n outline: 0;\n}\n.ant-pagination-jump-prev .ant-pagination-item-container,\n.ant-pagination-jump-next .ant-pagination-item-container {\n position: relative;\n}\n.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon,\n.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon {\n display: inline-block;\n font-size: 12px;\n font-size: 12px \\9;\n -webkit-transform: scale(1) rotate(0deg);\n -ms-transform: scale(1) rotate(0deg);\n transform: scale(1) rotate(0deg);\n color: #1890ff;\n letter-spacing: -1px;\n opacity: 0;\n -webkit-transition: all 0.2s;\n -o-transition: all 0.2s;\n transition: all 0.2s;\n}\n:root .ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon,\n:root .ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon {\n font-size: 12px;\n}\n.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon-svg,\n.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon-svg {\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n margin: auto;\n}\n.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-ellipsis,\n.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-ellipsis {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n display: block;\n margin: auto;\n color: rgba(0, 0, 0, 0.25);\n letter-spacing: 2px;\n text-align: center;\n text-indent: 0.13em;\n opacity: 1;\n -webkit-transition: all 0.2s;\n -o-transition: all 0.2s;\n transition: all 0.2s;\n}\n.ant-pagination-jump-prev:focus .ant-pagination-item-link-icon,\n.ant-pagination-jump-next:focus .ant-pagination-item-link-icon,\n.ant-pagination-jump-prev:hover .ant-pagination-item-link-icon,\n.ant-pagination-jump-next:hover .ant-pagination-item-link-icon {\n opacity: 1;\n}\n.ant-pagination-jump-prev:focus .ant-pagination-item-ellipsis,\n.ant-pagination-jump-next:focus .ant-pagination-item-ellipsis,\n.ant-pagination-jump-prev:hover .ant-pagination-item-ellipsis,\n.ant-pagination-jump-next:hover .ant-pagination-item-ellipsis {\n opacity: 0;\n}\n.ant-pagination-prev,\n.ant-pagination-jump-prev,\n.ant-pagination-jump-next {\n margin-right: 8px;\n}\n.ant-pagination-prev,\n.ant-pagination-next,\n.ant-pagination-jump-prev,\n.ant-pagination-jump-next {\n display: inline-block;\n min-width: 32px;\n height: 32px;\n color: rgba(0, 0, 0, 0.65);\n font-family: Arial;\n line-height: 32px;\n text-align: center;\n vertical-align: middle;\n list-style: none;\n border-radius: 4px;\n cursor: pointer;\n -webkit-transition: all 0.3s;\n -o-transition: all 0.3s;\n transition: all 0.3s;\n}\n.ant-pagination-prev,\n.ant-pagination-next {\n outline: 0;\n}\n.ant-pagination-prev a,\n.ant-pagination-next a {\n color: rgba(0, 0, 0, 0.65);\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.ant-pagination-prev:hover a,\n.ant-pagination-next:hover a {\n border-color: #40a9ff;\n}\n.ant-pagination-prev .ant-pagination-item-link,\n.ant-pagination-next .ant-pagination-item-link {\n display: block;\n height: 100%;\n font-size: 12px;\n text-align: center;\n background-color: #fff;\n border: 1px solid #d9d9d9;\n border-radius: 4px;\n outline: none;\n -webkit-transition: all 0.3s;\n -o-transition: all 0.3s;\n transition: all 0.3s;\n}\n.ant-pagination-prev:focus .ant-pagination-item-link,\n.ant-pagination-next:focus .ant-pagination-item-link,\n.ant-pagination-prev:hover .ant-pagination-item-link,\n.ant-pagination-next:hover .ant-pagination-item-link {\n color: #1890ff;\n border-color: #1890ff;\n}\n.ant-pagination-disabled,\n.ant-pagination-disabled:hover,\n.ant-pagination-disabled:focus {\n cursor: not-allowed;\n}\n.ant-pagination-disabled a,\n.ant-pagination-disabled:hover a,\n.ant-pagination-disabled:focus a,\n.ant-pagination-disabled .ant-pagination-item-link,\n.ant-pagination-disabled:hover .ant-pagination-item-link,\n.ant-pagination-disabled:focus .ant-pagination-item-link {\n color: rgba(0, 0, 0, 0.25);\n border-color: #d9d9d9;\n cursor: not-allowed;\n}\n.ant-pagination-slash {\n margin: 0 10px 0 5px;\n}\n.ant-pagination-options {\n display: inline-block;\n margin-left: 16px;\n vertical-align: middle;\n}\n.ant-pagination-options-size-changer.ant-select {\n display: inline-block;\n width: auto;\n margin-right: 8px;\n}\n.ant-pagination-options-quick-jumper {\n display: inline-block;\n height: 32px;\n line-height: 32px;\n vertical-align: top;\n}\n.ant-pagination-options-quick-jumper input {\n position: relative;\n display: inline-block;\n width: 100%;\n height: 32px;\n padding: 4px 11px;\n color: rgba(0, 0, 0, 0.65);\n font-size: 14px;\n line-height: 1.5;\n background-color: #fff;\n background-image: none;\n border: 1px solid #d9d9d9;\n border-radius: 4px;\n -webkit-transition: all 0.3s;\n -o-transition: all 0.3s;\n transition: all 0.3s;\n width: 50px;\n margin: 0 8px;\n}\n.ant-pagination-options-quick-jumper input::-moz-placeholder {\n color: #bfbfbf;\n opacity: 1;\n}\n.ant-pagination-options-quick-jumper input:-ms-input-placeholder {\n color: #bfbfbf;\n}\n.ant-pagination-options-quick-jumper input::-webkit-input-placeholder {\n color: #bfbfbf;\n}\n.ant-pagination-options-quick-jumper input:placeholder-shown {\n -o-text-overflow: ellipsis;\n text-overflow: ellipsis;\n}\n.ant-pagination-options-quick-jumper input:hover {\n border-color: #40a9ff;\n border-right-width: 1px !important;\n}\n.ant-pagination-options-quick-jumper input:focus {\n border-color: #40a9ff;\n border-right-width: 1px !important;\n outline: 0;\n -webkit-box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);\n box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);\n}\n.ant-pagination-options-quick-jumper input-disabled {\n color: rgba(0, 0, 0, 0.25);\n background-color: #f5f5f5;\n cursor: not-allowed;\n opacity: 1;\n}\n.ant-pagination-options-quick-jumper input-disabled:hover {\n border-color: #d9d9d9;\n border-right-width: 1px !important;\n}\n.ant-pagination-options-quick-jumper input[disabled] {\n color: rgba(0, 0, 0, 0.25);\n background-color: #f5f5f5;\n cursor: not-allowed;\n opacity: 1;\n}\n.ant-pagination-options-quick-jumper input[disabled]:hover {\n border-color: #d9d9d9;\n border-right-width: 1px !important;\n}\ntextarea.ant-pagination-options-quick-jumper input {\n max-width: 100%;\n height: auto;\n min-height: 32px;\n line-height: 1.5;\n vertical-align: bottom;\n -webkit-transition: all 0.3s, height 0s;\n -o-transition: all 0.3s, height 0s;\n transition: all 0.3s, height 0s;\n}\n.ant-pagination-options-quick-jumper input-lg {\n height: 40px;\n padding: 6px 11px;\n font-size: 16px;\n}\n.ant-pagination-options-quick-jumper input-sm {\n height: 24px;\n padding: 1px 7px;\n}\n.ant-pagination-simple .ant-pagination-prev,\n.ant-pagination-simple .ant-pagination-next {\n height: 24px;\n line-height: 24px;\n vertical-align: top;\n}\n.ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link,\n.ant-pagination-simple .ant-pagination-next .ant-pagination-item-link {\n height: 24px;\n border: 0;\n}\n.ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link::after,\n.ant-pagination-simple .ant-pagination-next .ant-pagination-item-link::after {\n height: 24px;\n line-height: 24px;\n}\n.ant-pagination-simple .ant-pagination-simple-pager {\n display: inline-block;\n height: 24px;\n margin-right: 8px;\n}\n.ant-pagination-simple .ant-pagination-simple-pager input {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n height: 100%;\n margin-right: 8px;\n padding: 0 6px;\n text-align: center;\n background-color: #fff;\n border: 1px solid #d9d9d9;\n border-radius: 4px;\n outline: none;\n -webkit-transition: border-color 0.3s;\n -o-transition: border-color 0.3s;\n transition: border-color 0.3s;\n}\n.ant-pagination-simple .ant-pagination-simple-pager input:hover {\n border-color: #1890ff;\n}\n.ant-pagination.mini .ant-pagination-total-text,\n.ant-pagination.mini .ant-pagination-simple-pager {\n height: 24px;\n line-height: 24px;\n}\n.ant-pagination.mini .ant-pagination-item {\n min-width: 24px;\n height: 24px;\n margin: 0;\n line-height: 22px;\n}\n.ant-pagination.mini .ant-pagination-item:not(.ant-pagination-item-active) {\n background: transparent;\n border-color: transparent;\n}\n.ant-pagination.mini .ant-pagination-prev,\n.ant-pagination.mini .ant-pagination-next {\n min-width: 24px;\n height: 24px;\n margin: 0;\n line-height: 24px;\n}\n.ant-pagination.mini .ant-pagination-prev .ant-pagination-item-link,\n.ant-pagination.mini .ant-pagination-next .ant-pagination-item-link {\n background: transparent;\n border-color: transparent;\n}\n.ant-pagination.mini .ant-pagination-prev .ant-pagination-item-link::after,\n.ant-pagination.mini .ant-pagination-next .ant-pagination-item-link::after {\n height: 24px;\n line-height: 24px;\n}\n.ant-pagination.mini .ant-pagination-jump-prev,\n.ant-pagination.mini .ant-pagination-jump-next {\n height: 24px;\n margin-right: 0;\n line-height: 24px;\n}\n.ant-pagination.mini .ant-pagination-options {\n margin-left: 2px;\n}\n.ant-pagination.mini .ant-pagination-options-quick-jumper {\n height: 24px;\n line-height: 24px;\n}\n.ant-pagination.mini .ant-pagination-options-quick-jumper input {\n height: 24px;\n padding: 1px 7px;\n width: 44px;\n}\n.ant-pagination.ant-pagination-disabled {\n cursor: not-allowed;\n}\n.ant-pagination.ant-pagination-disabled .ant-pagination-item {\n background: #f5f5f5;\n border-color: #d9d9d9;\n cursor: not-allowed;\n}\n.ant-pagination.ant-pagination-disabled .ant-pagination-item a {\n color: rgba(0, 0, 0, 0.25);\n background: transparent;\n border: none;\n cursor: not-allowed;\n}\n.ant-pagination.ant-pagination-disabled .ant-pagination-item-active {\n background: #dbdbdb;\n border-color: transparent;\n}\n.ant-pagination.ant-pagination-disabled .ant-pagination-item-active a {\n color: #fff;\n}\n.ant-pagination.ant-pagination-disabled .ant-pagination-item-link,\n.ant-pagination.ant-pagination-disabled .ant-pagination-item-link:hover,\n.ant-pagination.ant-pagination-disabled .ant-pagination-item-link:focus {\n color: rgba(0, 0, 0, 0.45);\n background: #f5f5f5;\n border-color: #d9d9d9;\n cursor: not-allowed;\n}\n.ant-pagination.ant-pagination-disabled .ant-pagination-jump-prev:focus .ant-pagination-item-link-icon,\n.ant-pagination.ant-pagination-disabled .ant-pagination-jump-next:focus .ant-pagination-item-link-icon,\n.ant-pagination.ant-pagination-disabled .ant-pagination-jump-prev:hover .ant-pagination-item-link-icon,\n.ant-pagination.ant-pagination-disabled .ant-pagination-jump-next:hover .ant-pagination-item-link-icon {\n opacity: 0;\n}\n.ant-pagination.ant-pagination-disabled .ant-pagination-jump-prev:focus .ant-pagination-item-ellipsis,\n.ant-pagination.ant-pagination-disabled .ant-pagination-jump-next:focus .ant-pagination-item-ellipsis,\n.ant-pagination.ant-pagination-disabled .ant-pagination-jump-prev:hover .ant-pagination-item-ellipsis,\n.ant-pagination.ant-pagination-disabled .ant-pagination-jump-next:hover .ant-pagination-item-ellipsis {\n opacity: 1;\n}\n@media only screen and (max-width: 992px) {\n .ant-pagination-item-after-jump-prev,\n .ant-pagination-item-before-jump-next {\n display: none;\n }\n}\n@media only screen and (max-width: 576px) {\n .ant-pagination-options {\n display: none;\n }\n}\n"],"sourceRoot":""}]);
-
- // exports
-
-
- /***/ }),
-
- /***/ 952:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports["default"] = void 0;
-
- var React = _interopRequireWildcard(__webpack_require__(0));
-
- var _rcPagination = _interopRequireDefault(__webpack_require__(953));
-
- var _en_US = _interopRequireDefault(__webpack_require__(315));
-
- var _classnames = _interopRequireDefault(__webpack_require__(3));
-
- var _MiniSelect = _interopRequireDefault(__webpack_require__(958));
-
- var _icon = _interopRequireDefault(__webpack_require__(26));
-
- var _select = _interopRequireDefault(__webpack_require__(303));
-
- var _LocaleReceiver = _interopRequireDefault(__webpack_require__(73));
-
- var _configProvider = __webpack_require__(11);
-
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
-
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
-
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
-
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
-
- function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
-
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
-
- 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 _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
-
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
-
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
-
- var __rest = void 0 && (void 0).__rest || function (s, e) {
- var t = {};
-
- for (var p in s) {
- if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
- }
-
- if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
- }
- return t;
- };
-
- var Pagination =
- /*#__PURE__*/
- function (_React$Component) {
- _inherits(Pagination, _React$Component);
-
- function Pagination() {
- var _this;
-
- _classCallCheck(this, Pagination);
-
- _this = _possibleConstructorReturn(this, _getPrototypeOf(Pagination).apply(this, arguments));
-
- _this.getIconsProps = function (prefixCls) {
- var prevIcon = React.createElement("a", {
- className: "".concat(prefixCls, "-item-link")
- }, React.createElement(_icon["default"], {
- type: "left"
- }));
- var nextIcon = React.createElement("a", {
- className: "".concat(prefixCls, "-item-link")
- }, React.createElement(_icon["default"], {
- type: "right"
- }));
- var jumpPrevIcon = React.createElement("a", {
- className: "".concat(prefixCls, "-item-link")
- }, React.createElement("div", {
- className: "".concat(prefixCls, "-item-container")
- }, React.createElement(_icon["default"], {
- className: "".concat(prefixCls, "-item-link-icon"),
- type: "double-left"
- }), React.createElement("span", {
- className: "".concat(prefixCls, "-item-ellipsis")
- }, "\u2022\u2022\u2022")));
- var jumpNextIcon = React.createElement("a", {
- className: "".concat(prefixCls, "-item-link")
- }, React.createElement("div", {
- className: "".concat(prefixCls, "-item-container")
- }, React.createElement(_icon["default"], {
- className: "".concat(prefixCls, "-item-link-icon"),
- type: "double-right"
- }), React.createElement("span", {
- className: "".concat(prefixCls, "-item-ellipsis")
- }, "\u2022\u2022\u2022")));
- return {
- prevIcon: prevIcon,
- nextIcon: nextIcon,
- jumpPrevIcon: jumpPrevIcon,
- jumpNextIcon: jumpNextIcon
- };
- };
-
- _this.renderPagination = function (contextLocale) {
- var _a = _this.props,
- customizePrefixCls = _a.prefixCls,
- customizeSelectPrefixCls = _a.selectPrefixCls,
- className = _a.className,
- size = _a.size,
- customLocale = _a.locale,
- restProps = __rest(_a, ["prefixCls", "selectPrefixCls", "className", "size", "locale"]);
-
- var locale = _extends(_extends({}, contextLocale), customLocale);
-
- var isSmall = size === 'small';
- return React.createElement(_configProvider.ConfigConsumer, null, function (_ref) {
- var getPrefixCls = _ref.getPrefixCls;
- var prefixCls = getPrefixCls('pagination', customizePrefixCls);
- var selectPrefixCls = getPrefixCls('select', customizeSelectPrefixCls);
- return React.createElement(_rcPagination["default"], _extends({}, restProps, {
- prefixCls: prefixCls,
- selectPrefixCls: selectPrefixCls
- }, _this.getIconsProps(prefixCls), {
- className: (0, _classnames["default"])(className, {
- mini: isSmall
- }),
- selectComponentClass: isSmall ? _MiniSelect["default"] : _select["default"],
- locale: locale
- }));
- });
- };
-
- return _this;
- }
-
- _createClass(Pagination, [{
- key: "render",
- value: function render() {
- return React.createElement(_LocaleReceiver["default"], {
- componentName: "Pagination",
- defaultLocale: _en_US["default"]
- }, this.renderPagination);
- }
- }]);
-
- return Pagination;
- }(React.Component);
-
- exports["default"] = Pagination;
- //# sourceMappingURL=Pagination.js.map
-
-
- /***/ }),
-
- /***/ 953:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__Pagination__ = __webpack_require__(954);
- /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return __WEBPACK_IMPORTED_MODULE_0__Pagination__["a"]; });
-
-
- /***/ }),
-
- /***/ 954:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_defineProperty__ = __webpack_require__(71);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_defineProperty___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_defineProperty__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_extends__ = __webpack_require__(25);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_extends___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_extends__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_babel_runtime_helpers_classCallCheck__ = __webpack_require__(12);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_babel_runtime_helpers_classCallCheck___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_babel_runtime_helpers_classCallCheck__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_babel_runtime_helpers_createClass__ = __webpack_require__(46);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_babel_runtime_helpers_createClass___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_babel_runtime_helpers_createClass__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_babel_runtime_helpers_possibleConstructorReturn__ = __webpack_require__(13);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_babel_runtime_helpers_possibleConstructorReturn___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_babel_runtime_helpers_possibleConstructorReturn__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_babel_runtime_helpers_inherits__ = __webpack_require__(14);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_babel_runtime_helpers_inherits___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_babel_runtime_helpers_inherits__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_react__ = __webpack_require__(0);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_react__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_classnames__ = __webpack_require__(3);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7_classnames__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8_prop_types__ = __webpack_require__(1);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_8_prop_types__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__Pager__ = __webpack_require__(955);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__Options__ = __webpack_require__(956);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__KeyCode__ = __webpack_require__(886);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__locale_zh_CN__ = __webpack_require__(957);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_13_react_lifecycles_compat__ = __webpack_require__(7);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- function noop() {}
-
- function isInteger(value) {
- return typeof value === 'number' && isFinite(value) && Math.floor(value) === value;
- }
-
- function defaultItemRender(page, type, element) {
- return element;
- }
-
- function calculatePage(p, state, props) {
- var pageSize = p;
- if (typeof pageSize === 'undefined') {
- pageSize = state.pageSize;
- }
- return Math.floor((props.total - 1) / pageSize) + 1;
- }
-
- var Pagination = function (_React$Component) {
- __WEBPACK_IMPORTED_MODULE_5_babel_runtime_helpers_inherits___default()(Pagination, _React$Component);
-
- function Pagination(props) {
- __WEBPACK_IMPORTED_MODULE_2_babel_runtime_helpers_classCallCheck___default()(this, Pagination);
-
- var _this = __WEBPACK_IMPORTED_MODULE_4_babel_runtime_helpers_possibleConstructorReturn___default()(this, (Pagination.__proto__ || Object.getPrototypeOf(Pagination)).call(this, props));
-
- _initialiseProps.call(_this);
-
- var hasOnChange = props.onChange !== noop;
- var hasCurrent = 'current' in props;
- if (hasCurrent && !hasOnChange) {
- console.warn('Warning: You provided a `current` prop to a Pagination component without an `onChange` handler. This will render a read-only component.'); // eslint-disable-line
- }
-
- var current = props.defaultCurrent;
- if ('current' in props) {
- current = props.current;
- }
-
- var pageSize = props.defaultPageSize;
- if ('pageSize' in props) {
- pageSize = props.pageSize;
- }
-
- current = Math.min(current, calculatePage(pageSize, undefined, props));
-
- _this.state = {
- current: current,
- currentInputValue: current,
- pageSize: pageSize
- };
- return _this;
- }
-
- __WEBPACK_IMPORTED_MODULE_3_babel_runtime_helpers_createClass___default()(Pagination, [{
- key: 'componentDidUpdate',
- value: function componentDidUpdate(prevProps, prevState) {
- // When current page change, fix focused style of prev item
- // A hacky solution of https://github.com/ant-design/ant-design/issues/8948
- var prefixCls = this.props.prefixCls;
-
- if (prevState.current !== this.state.current && this.paginationNode) {
- var lastCurrentNode = this.paginationNode.querySelector('.' + prefixCls + '-item-' + prevState.current);
- if (lastCurrentNode && document.activeElement === lastCurrentNode) {
- lastCurrentNode.blur();
- }
- }
- }
- }, {
- key: 'getValidValue',
- value: function getValidValue(e) {
- var inputValue = e.target.value;
- var allPages = calculatePage(undefined, this.state, this.props);
- var currentInputValue = this.state.currentInputValue;
-
- var value = void 0;
- if (inputValue === '') {
- value = inputValue;
- } else if (isNaN(Number(inputValue))) {
- value = currentInputValue;
- } else if (inputValue >= allPages) {
- value = allPages;
- } else {
- value = Number(inputValue);
- }
- return value;
- }
- }, {
- key: 'render',
- value: function render() {
- var _props = this.props,
- prefixCls = _props.prefixCls,
- className = _props.className,
- disabled = _props.disabled;
-
- // When hideOnSinglePage is true and there is only 1 page, hide the pager
-
- if (this.props.hideOnSinglePage === true && this.props.total <= this.state.pageSize) {
- return null;
- }
-
- var props = this.props;
- var locale = props.locale;
-
- var allPages = calculatePage(undefined, this.state, this.props);
- var pagerList = [];
- var jumpPrev = null;
- var jumpNext = null;
- var firstPager = null;
- var lastPager = null;
- var gotoButton = null;
-
- var goButton = props.showQuickJumper && props.showQuickJumper.goButton;
- var pageBufferSize = props.showLessItems ? 1 : 2;
- var _state = this.state,
- current = _state.current,
- pageSize = _state.pageSize;
-
-
- var prevPage = current - 1 > 0 ? current - 1 : 0;
- var nextPage = current + 1 < allPages ? current + 1 : allPages;
-
- var dataOrAriaAttributeProps = Object.keys(props).reduce(function (prev, key) {
- if (key.substr(0, 5) === 'data-' || key.substr(0, 5) === 'aria-' || key === 'role') {
- prev[key] = props[key];
- }
- return prev;
- }, {});
-
- if (props.simple) {
- if (goButton) {
- if (typeof goButton === 'boolean') {
- gotoButton = __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(
- 'button',
- {
- type: 'button',
- onClick: this.handleGoTO,
- onKeyUp: this.handleGoTO
- },
- locale.jump_to_confirm
- );
- } else {
- gotoButton = __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(
- 'span',
- {
- onClick: this.handleGoTO,
- onKeyUp: this.handleGoTO
- },
- goButton
- );
- }
- gotoButton = __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(
- 'li',
- {
- title: props.showTitle ? '' + locale.jump_to + this.state.current + '/' + allPages : null,
- className: prefixCls + '-simple-pager'
- },
- gotoButton
- );
- }
-
- return __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(
- 'ul',
- __WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_extends___default()({
- className: prefixCls + ' ' + prefixCls + '-simple ' + props.className,
- style: props.style,
- ref: this.savePaginationNode
- }, dataOrAriaAttributeProps),
- __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(
- 'li',
- {
- title: props.showTitle ? locale.prev_page : null,
- onClick: this.prev,
- tabIndex: this.hasPrev() ? 0 : null,
- onKeyPress: this.runIfEnterPrev,
- className: (this.hasPrev() ? '' : prefixCls + '-disabled') + ' ' + prefixCls + '-prev',
- 'aria-disabled': !this.hasPrev()
- },
- props.itemRender(prevPage, 'prev', this.getItemIcon(props.prevIcon))
- ),
- __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(
- 'li',
- {
- title: props.showTitle ? this.state.current + '/' + allPages : null,
- className: prefixCls + '-simple-pager'
- },
- __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement('input', {
- type: 'text',
- value: this.state.currentInputValue,
- onKeyDown: this.handleKeyDown,
- onKeyUp: this.handleKeyUp,
- onChange: this.handleKeyUp,
- size: '3'
- }),
- __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(
- 'span',
- { className: prefixCls + '-slash' },
- '/'
- ),
- allPages
- ),
- __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(
- 'li',
- {
- title: props.showTitle ? locale.next_page : null,
- onClick: this.next,
- tabIndex: this.hasPrev() ? 0 : null,
- onKeyPress: this.runIfEnterNext,
- className: (this.hasNext() ? '' : prefixCls + '-disabled') + ' ' + prefixCls + '-next',
- 'aria-disabled': !this.hasNext()
- },
- props.itemRender(nextPage, 'next', this.getItemIcon(props.nextIcon))
- ),
- gotoButton
- );
- }
-
- if (allPages <= 5 + pageBufferSize * 2) {
- var pagerProps = {
- locale: locale,
- rootPrefixCls: prefixCls,
- onClick: this.handleChange,
- onKeyPress: this.runIfEnter,
- showTitle: props.showTitle,
- itemRender: props.itemRender
- };
- if (!allPages) {
- pagerList.push(__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_9__Pager__["a" /* default */], __WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_extends___default()({}, pagerProps, {
- key: 'noPager',
- page: allPages,
- className: prefixCls + '-disabled'
- })));
- }
- for (var i = 1; i <= allPages; i++) {
- var active = this.state.current === i;
- pagerList.push(__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_9__Pager__["a" /* default */], __WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_extends___default()({}, pagerProps, {
- key: i,
- page: i,
- active: active
- })));
- }
- } else {
- var prevItemTitle = props.showLessItems ? locale.prev_3 : locale.prev_5;
- var nextItemTitle = props.showLessItems ? locale.next_3 : locale.next_5;
- if (props.showPrevNextJumpers) {
- var jumpPrevClassString = prefixCls + '-jump-prev';
- if (props.jumpPrevIcon) {
- jumpPrevClassString += ' ' + prefixCls + '-jump-prev-custom-icon';
- }
- jumpPrev = __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(
- 'li',
- {
- title: props.showTitle ? prevItemTitle : null,
- key: 'prev',
- onClick: this.jumpPrev,
- tabIndex: '0',
- onKeyPress: this.runIfEnterJumpPrev,
- className: jumpPrevClassString
- },
- props.itemRender(this.getJumpPrevPage(), 'jump-prev', this.getItemIcon(props.jumpPrevIcon))
- );
- var jumpNextClassString = prefixCls + '-jump-next';
- if (props.jumpNextIcon) {
- jumpNextClassString += ' ' + prefixCls + '-jump-next-custom-icon';
- }
- jumpNext = __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(
- 'li',
- {
- title: props.showTitle ? nextItemTitle : null,
- key: 'next',
- tabIndex: '0',
- onClick: this.jumpNext,
- onKeyPress: this.runIfEnterJumpNext,
- className: jumpNextClassString
- },
- props.itemRender(this.getJumpNextPage(), 'jump-next', this.getItemIcon(props.jumpNextIcon))
- );
- }
- lastPager = __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_9__Pager__["a" /* default */], {
- locale: props.locale,
- last: true,
- rootPrefixCls: prefixCls,
- onClick: this.handleChange,
- onKeyPress: this.runIfEnter,
- key: allPages,
- page: allPages,
- active: false,
- showTitle: props.showTitle,
- itemRender: props.itemRender
- });
- firstPager = __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_9__Pager__["a" /* default */], {
- locale: props.locale,
- rootPrefixCls: prefixCls,
- onClick: this.handleChange,
- onKeyPress: this.runIfEnter,
- key: 1,
- page: 1,
- active: false,
- showTitle: props.showTitle,
- itemRender: props.itemRender
- });
-
- var left = Math.max(1, current - pageBufferSize);
- var right = Math.min(current + pageBufferSize, allPages);
-
- if (current - 1 <= pageBufferSize) {
- right = 1 + pageBufferSize * 2;
- }
-
- if (allPages - current <= pageBufferSize) {
- left = allPages - pageBufferSize * 2;
- }
-
- for (var _i = left; _i <= right; _i++) {
- var _active = current === _i;
- pagerList.push(__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_9__Pager__["a" /* default */], {
- locale: props.locale,
- rootPrefixCls: prefixCls,
- onClick: this.handleChange,
- onKeyPress: this.runIfEnter,
- key: _i,
- page: _i,
- active: _active,
- showTitle: props.showTitle,
- itemRender: props.itemRender
- }));
- }
-
- if (current - 1 >= pageBufferSize * 2 && current !== 1 + 2) {
- pagerList[0] = __WEBPACK_IMPORTED_MODULE_6_react___default.a.cloneElement(pagerList[0], {
- className: prefixCls + '-item-after-jump-prev'
- });
- pagerList.unshift(jumpPrev);
- }
- if (allPages - current >= pageBufferSize * 2 && current !== allPages - 2) {
- pagerList[pagerList.length - 1] = __WEBPACK_IMPORTED_MODULE_6_react___default.a.cloneElement(pagerList[pagerList.length - 1], {
- className: prefixCls + '-item-before-jump-next'
- });
- pagerList.push(jumpNext);
- }
-
- if (left !== 1) {
- pagerList.unshift(firstPager);
- }
- if (right !== allPages) {
- pagerList.push(lastPager);
- }
- }
-
- var totalText = null;
-
- if (props.showTotal) {
- totalText = __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(
- 'li',
- { className: prefixCls + '-total-text' },
- props.showTotal(props.total, [props.total === 0 ? 0 : (current - 1) * pageSize + 1, current * pageSize > props.total ? props.total : current * pageSize])
- );
- }
- var prevDisabled = !this.hasPrev() || !allPages;
- var nextDisabled = !this.hasNext() || !allPages;
- return __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(
- 'ul',
- __WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_extends___default()({
- className: __WEBPACK_IMPORTED_MODULE_7_classnames___default()(prefixCls, className, __WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_defineProperty___default()({}, prefixCls + '-disabled', disabled)),
- style: props.style,
- unselectable: 'unselectable',
- ref: this.savePaginationNode
- }, dataOrAriaAttributeProps),
- totalText,
- __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(
- 'li',
- {
- title: props.showTitle ? locale.prev_page : null,
- onClick: this.prev,
- tabIndex: prevDisabled ? null : 0,
- onKeyPress: this.runIfEnterPrev,
- className: (!prevDisabled ? '' : prefixCls + '-disabled') + ' ' + prefixCls + '-prev',
- 'aria-disabled': prevDisabled
- },
- props.itemRender(prevPage, 'prev', this.getItemIcon(props.prevIcon))
- ),
- pagerList,
- __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(
- 'li',
- {
- title: props.showTitle ? locale.next_page : null,
- onClick: this.next,
- tabIndex: nextDisabled ? null : 0,
- onKeyPress: this.runIfEnterNext,
- className: (!nextDisabled ? '' : prefixCls + '-disabled') + ' ' + prefixCls + '-next',
- 'aria-disabled': nextDisabled
- },
- props.itemRender(nextPage, 'next', this.getItemIcon(props.nextIcon))
- ),
- __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_10__Options__["a" /* default */], {
- disabled: disabled,
- locale: props.locale,
- rootPrefixCls: prefixCls,
- selectComponentClass: props.selectComponentClass,
- selectPrefixCls: props.selectPrefixCls,
- changeSize: this.props.showSizeChanger ? this.changePageSize : null,
- current: this.state.current,
- pageSize: this.state.pageSize,
- pageSizeOptions: this.props.pageSizeOptions,
- quickGo: this.shouldDisplayQuickJumper() ? this.handleChange : null,
- goButton: goButton
- })
- );
- }
- }], [{
- key: 'getDerivedStateFromProps',
- value: function getDerivedStateFromProps(props, prevState) {
- var newState = {};
-
- if ('current' in props) {
- newState.current = props.current;
-
- if (props.current !== prevState.current) {
- newState.currentInputValue = newState.current;
- }
- }
-
- if ('pageSize' in props && props.pageSize !== prevState.pageSize) {
- var current = prevState.current;
- var newCurrent = calculatePage(props.pageSize, prevState, props);
- current = current > newCurrent ? newCurrent : current;
-
- if (!('current' in props)) {
- newState.current = current;
- newState.currentInputValue = current;
- }
- newState.pageSize = props.pageSize;
- }
-
- return newState;
- }
-
- /**
- * computed icon node that need to be rendered.
- * @param {React.ReactNode | React.ComponentType<PaginationProps>} icon received icon.
- * @returns {React.ReactNode}
- */
-
- }]);
-
- return Pagination;
- }(__WEBPACK_IMPORTED_MODULE_6_react___default.a.Component);
-
- Pagination.propTypes = {
- disabled: __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.bool,
- prefixCls: __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.string,
- className: __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.string,
- current: __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.number,
- defaultCurrent: __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.number,
- total: __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.number,
- pageSize: __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.number,
- defaultPageSize: __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.number,
- onChange: __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.func,
- hideOnSinglePage: __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.bool,
- showSizeChanger: __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.bool,
- showLessItems: __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.bool,
- onShowSizeChange: __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.func,
- selectComponentClass: __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.func,
- showPrevNextJumpers: __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.bool,
- showQuickJumper: __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.oneOfType([__WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.bool, __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.object]),
- showTitle: __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.bool,
- pageSizeOptions: __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.arrayOf(__WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.string),
- showTotal: __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.func,
- locale: __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.object,
- style: __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.object,
- itemRender: __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.func,
- prevIcon: __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.oneOfType([__WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.func, __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.node]),
- nextIcon: __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.oneOfType([__WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.func, __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.node]),
- jumpPrevIcon: __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.oneOfType([__WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.func, __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.node]),
- jumpNextIcon: __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.oneOfType([__WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.func, __WEBPACK_IMPORTED_MODULE_8_prop_types___default.a.node])
- };
- Pagination.defaultProps = {
- defaultCurrent: 1,
- total: 0,
- defaultPageSize: 10,
- onChange: noop,
- className: '',
- selectPrefixCls: 'rc-select',
- prefixCls: 'rc-pagination',
- selectComponentClass: null,
- hideOnSinglePage: false,
- showPrevNextJumpers: true,
- showQuickJumper: false,
- showSizeChanger: false,
- showLessItems: false,
- showTitle: true,
- onShowSizeChange: noop,
- locale: __WEBPACK_IMPORTED_MODULE_12__locale_zh_CN__["a" /* default */],
- style: {},
- itemRender: defaultItemRender
- };
-
- var _initialiseProps = function _initialiseProps() {
- var _this2 = this;
-
- this.getJumpPrevPage = function () {
- return Math.max(1, _this2.state.current - (_this2.props.showLessItems ? 3 : 5));
- };
-
- this.getJumpNextPage = function () {
- return Math.min(calculatePage(undefined, _this2.state, _this2.props), _this2.state.current + (_this2.props.showLessItems ? 3 : 5));
- };
-
- this.getItemIcon = function (icon) {
- var prefixCls = _this2.props.prefixCls;
-
- var iconNode = icon || __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement('a', { className: prefixCls + '-item-link' });
- if (typeof icon === 'function') {
- iconNode = __WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(icon, __WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_extends___default()({}, _this2.props));
- }
- return iconNode;
- };
-
- this.savePaginationNode = function (node) {
- _this2.paginationNode = node;
- };
-
- this.isValid = function (page) {
- return isInteger(page) && page !== _this2.state.current;
- };
-
- this.shouldDisplayQuickJumper = function () {
- var _props2 = _this2.props,
- showQuickJumper = _props2.showQuickJumper,
- pageSize = _props2.pageSize,
- total = _props2.total;
-
- if (total <= pageSize) {
- return false;
- }
- return showQuickJumper;
- };
-
- this.handleKeyDown = function (e) {
- if (e.keyCode === __WEBPACK_IMPORTED_MODULE_11__KeyCode__["a" /* default */].ARROW_UP || e.keyCode === __WEBPACK_IMPORTED_MODULE_11__KeyCode__["a" /* default */].ARROW_DOWN) {
- e.preventDefault();
- }
- };
-
- this.handleKeyUp = function (e) {
- var value = _this2.getValidValue(e);
- var currentInputValue = _this2.state.currentInputValue;
-
- if (value !== currentInputValue) {
- _this2.setState({
- currentInputValue: value
- });
- }
- if (e.keyCode === __WEBPACK_IMPORTED_MODULE_11__KeyCode__["a" /* default */].ENTER) {
- _this2.handleChange(value);
- } else if (e.keyCode === __WEBPACK_IMPORTED_MODULE_11__KeyCode__["a" /* default */].ARROW_UP) {
- _this2.handleChange(value - 1);
- } else if (e.keyCode === __WEBPACK_IMPORTED_MODULE_11__KeyCode__["a" /* default */].ARROW_DOWN) {
- _this2.handleChange(value + 1);
- }
- };
-
- this.changePageSize = function (size) {
- var current = _this2.state.current;
- var newCurrent = calculatePage(size, _this2.state, _this2.props);
- current = current > newCurrent ? newCurrent : current;
- // fix the issue:
- // Once 'total' is 0, 'current' in 'onShowSizeChange' is 0, which is not correct.
- if (newCurrent === 0) {
- current = _this2.state.current;
- }
-
- if (typeof size === 'number') {
- if (!('pageSize' in _this2.props)) {
- _this2.setState({
- pageSize: size
- });
- }
- if (!('current' in _this2.props)) {
- _this2.setState({
- current: current,
- currentInputValue: current
- });
- }
- }
- _this2.props.onShowSizeChange(current, size);
- };
-
- this.handleChange = function (p) {
- var disabled = _this2.props.disabled;
-
-
- var page = p;
- if (_this2.isValid(page) && !disabled) {
- var currentPage = calculatePage(undefined, _this2.state, _this2.props);
- if (page > currentPage) {
- page = currentPage;
- } else if (page < 1) {
- page = 1;
- }
-
- if (!('current' in _this2.props)) {
- _this2.setState({
- current: page,
- currentInputValue: page
- });
- }
-
- var pageSize = _this2.state.pageSize;
- _this2.props.onChange(page, pageSize);
-
- return page;
- }
-
- return _this2.state.current;
- };
-
- this.prev = function () {
- if (_this2.hasPrev()) {
- _this2.handleChange(_this2.state.current - 1);
- }
- };
-
- this.next = function () {
- if (_this2.hasNext()) {
- _this2.handleChange(_this2.state.current + 1);
- }
- };
-
- this.jumpPrev = function () {
- _this2.handleChange(_this2.getJumpPrevPage());
- };
-
- this.jumpNext = function () {
- _this2.handleChange(_this2.getJumpNextPage());
- };
-
- this.hasPrev = function () {
- return _this2.state.current > 1;
- };
-
- this.hasNext = function () {
- return _this2.state.current < calculatePage(undefined, _this2.state, _this2.props);
- };
-
- this.runIfEnter = function (event, callback) {
- for (var _len = arguments.length, restParams = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
- restParams[_key - 2] = arguments[_key];
- }
-
- if (event.key === 'Enter' || event.charCode === 13) {
- callback.apply(undefined, restParams);
- }
- };
-
- this.runIfEnterPrev = function (e) {
- _this2.runIfEnter(e, _this2.prev);
- };
-
- this.runIfEnterNext = function (e) {
- _this2.runIfEnter(e, _this2.next);
- };
-
- this.runIfEnterJumpPrev = function (e) {
- _this2.runIfEnter(e, _this2.jumpPrev);
- };
-
- this.runIfEnterJumpNext = function (e) {
- _this2.runIfEnter(e, _this2.jumpNext);
- };
-
- this.handleGoTO = function (e) {
- if (e.keyCode === __WEBPACK_IMPORTED_MODULE_11__KeyCode__["a" /* default */].ENTER || e.type === 'click') {
- _this2.handleChange(_this2.state.currentInputValue);
- }
- };
- };
-
- Object(__WEBPACK_IMPORTED_MODULE_13_react_lifecycles_compat__["polyfill"])(Pagination);
-
- /* harmony default export */ __webpack_exports__["a"] = (Pagination);
-
- /***/ }),
-
- /***/ 955:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_defineProperty__ = __webpack_require__(71);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_defineProperty___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_defineProperty__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react__ = __webpack_require__(0);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_prop_types__ = __webpack_require__(1);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_prop_types__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_classnames__ = __webpack_require__(3);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_classnames__);
-
-
-
-
-
- var Pager = function Pager(props) {
- var _classNames;
-
- var prefixCls = props.rootPrefixCls + '-item';
- var cls = __WEBPACK_IMPORTED_MODULE_3_classnames___default()(prefixCls, prefixCls + '-' + props.page, (_classNames = {}, __WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_defineProperty___default()(_classNames, prefixCls + '-active', props.active), __WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_defineProperty___default()(_classNames, props.className, !!props.className), __WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_defineProperty___default()(_classNames, prefixCls + '-disabled', !props.page), _classNames));
-
- var handleClick = function handleClick() {
- props.onClick(props.page);
- };
-
- var handleKeyPress = function handleKeyPress(e) {
- props.onKeyPress(e, props.onClick, props.page);
- };
-
- return __WEBPACK_IMPORTED_MODULE_1_react___default.a.createElement(
- 'li',
- {
- title: props.showTitle ? props.page : null,
- className: cls,
- onClick: handleClick,
- onKeyPress: handleKeyPress,
- tabIndex: '0'
- },
- props.itemRender(props.page, 'page', __WEBPACK_IMPORTED_MODULE_1_react___default.a.createElement(
- 'a',
- null,
- props.page
- ))
- );
- };
-
- Pager.propTypes = {
- page: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.number,
- active: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.bool,
- last: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.bool,
- locale: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.object,
- className: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.string,
- showTitle: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.bool,
- rootPrefixCls: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.string,
- onClick: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.func,
- onKeyPress: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.func,
- itemRender: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.func
- };
-
- /* harmony default export */ __webpack_exports__["a"] = (Pager);
-
- /***/ }),
-
- /***/ 956:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_classCallCheck__ = __webpack_require__(12);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_classCallCheck___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_classCallCheck__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_createClass__ = __webpack_require__(46);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_createClass___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_createClass__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_babel_runtime_helpers_possibleConstructorReturn__ = __webpack_require__(13);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_babel_runtime_helpers_possibleConstructorReturn___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_babel_runtime_helpers_possibleConstructorReturn__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_babel_runtime_helpers_inherits__ = __webpack_require__(14);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_babel_runtime_helpers_inherits___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_babel_runtime_helpers_inherits__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_react__ = __webpack_require__(0);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_react__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_prop_types__ = __webpack_require__(1);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_prop_types__);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__KeyCode__ = __webpack_require__(886);
-
-
-
-
-
-
-
-
- var Options = function (_React$Component) {
- __WEBPACK_IMPORTED_MODULE_3_babel_runtime_helpers_inherits___default()(Options, _React$Component);
-
- function Options() {
- var _ref;
-
- var _temp, _this, _ret;
-
- __WEBPACK_IMPORTED_MODULE_0_babel_runtime_helpers_classCallCheck___default()(this, Options);
-
- for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {
- args[_key] = arguments[_key];
- }
-
- return _ret = (_temp = (_this = __WEBPACK_IMPORTED_MODULE_2_babel_runtime_helpers_possibleConstructorReturn___default()(this, (_ref = Options.__proto__ || Object.getPrototypeOf(Options)).call.apply(_ref, [this].concat(args))), _this), _this.state = {
- goInputText: ''
- }, _this.buildOptionText = function (value) {
- return value + ' ' + _this.props.locale.items_per_page;
- }, _this.changeSize = function (value) {
- _this.props.changeSize(Number(value));
- }, _this.handleChange = function (e) {
- _this.setState({
- goInputText: e.target.value
- });
- }, _this.handleBlur = function (e) {
- var _this$props = _this.props,
- goButton = _this$props.goButton,
- quickGo = _this$props.quickGo,
- rootPrefixCls = _this$props.rootPrefixCls;
-
- if (goButton) {
- return;
- }
- if (e.relatedTarget && (e.relatedTarget.className.indexOf(rootPrefixCls + '-prev') >= 0 || e.relatedTarget.className.indexOf(rootPrefixCls + '-next') >= 0)) {
- return;
- }
- quickGo(_this.getValidValue());
- }, _this.go = function (e) {
- var goInputText = _this.state.goInputText;
-
- if (goInputText === '') {
- return;
- }
- if (e.keyCode === __WEBPACK_IMPORTED_MODULE_6__KeyCode__["a" /* default */].ENTER || e.type === 'click') {
- _this.setState({
- goInputText: ''
- });
- _this.props.quickGo(_this.getValidValue());
- }
- }, _temp), __WEBPACK_IMPORTED_MODULE_2_babel_runtime_helpers_possibleConstructorReturn___default()(_this, _ret);
- }
-
- __WEBPACK_IMPORTED_MODULE_1_babel_runtime_helpers_createClass___default()(Options, [{
- key: 'getValidValue',
- value: function getValidValue() {
- var _state = this.state,
- goInputText = _state.goInputText,
- current = _state.current;
-
- return !goInputText || isNaN(goInputText) ? current : Number(goInputText);
- }
- }, {
- key: 'render',
- value: function render() {
- var _this2 = this;
-
- var _props = this.props,
- pageSize = _props.pageSize,
- pageSizeOptions = _props.pageSizeOptions,
- locale = _props.locale,
- rootPrefixCls = _props.rootPrefixCls,
- changeSize = _props.changeSize,
- quickGo = _props.quickGo,
- goButton = _props.goButton,
- selectComponentClass = _props.selectComponentClass,
- buildOptionText = _props.buildOptionText,
- selectPrefixCls = _props.selectPrefixCls,
- disabled = _props.disabled;
- var goInputText = this.state.goInputText;
-
- var prefixCls = rootPrefixCls + '-options';
- var Select = selectComponentClass;
- var changeSelect = null;
- var goInput = null;
- var gotoButton = null;
-
- if (!changeSize && !quickGo) {
- return null;
- }
-
- if (changeSize && Select) {
- var options = pageSizeOptions.map(function (opt, i) {
- return __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(
- Select.Option,
- { key: i, value: opt },
- (buildOptionText || _this2.buildOptionText)(opt)
- );
- });
-
- changeSelect = __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(
- Select,
- {
- disabled: disabled,
- prefixCls: selectPrefixCls,
- showSearch: false,
- className: prefixCls + '-size-changer',
- optionLabelProp: 'children',
- dropdownMatchSelectWidth: false,
- value: (pageSize || pageSizeOptions[0]).toString(),
- onChange: this.changeSize,
- getPopupContainer: function getPopupContainer(triggerNode) {
- return triggerNode.parentNode;
- }
- },
- options
- );
- }
-
- if (quickGo) {
- if (goButton) {
- gotoButton = typeof goButton === 'boolean' ? __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(
- 'button',
- {
- type: 'button',
- onClick: this.go,
- onKeyUp: this.go,
- disabled: disabled
- },
- locale.jump_to_confirm
- ) : __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(
- 'span',
- {
- onClick: this.go,
- onKeyUp: this.go
- },
- goButton
- );
- }
- goInput = __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(
- 'div',
- { className: prefixCls + '-quick-jumper' },
- locale.jump_to,
- __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement('input', {
- disabled: disabled,
- type: 'text',
- value: goInputText,
- onChange: this.handleChange,
- onKeyUp: this.go,
- onBlur: this.handleBlur
- }),
- locale.page,
- gotoButton
- );
- }
-
- return __WEBPACK_IMPORTED_MODULE_4_react___default.a.createElement(
- 'li',
- { className: '' + prefixCls },
- changeSelect,
- goInput
- );
- }
- }]);
-
- return Options;
- }(__WEBPACK_IMPORTED_MODULE_4_react___default.a.Component);
-
- Options.propTypes = {
- disabled: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.bool,
- changeSize: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.func,
- quickGo: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.func,
- selectComponentClass: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.func,
- current: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number,
- pageSizeOptions: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.arrayOf(__WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.string),
- pageSize: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.number,
- buildOptionText: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.func,
- locale: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.object,
- rootPrefixCls: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.string,
- selectPrefixCls: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.string,
- goButton: __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.oneOfType([__WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.bool, __WEBPACK_IMPORTED_MODULE_5_prop_types___default.a.node])
- };
- Options.defaultProps = {
- pageSizeOptions: ['10', '20', '30', '40']
- };
-
-
- /* harmony default export */ __webpack_exports__["a"] = (Options);
-
- /***/ }),
-
- /***/ 957:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- /* harmony default export */ __webpack_exports__["a"] = ({
- // Options.jsx
- items_per_page: '条/页',
- jump_to: '跳至',
- jump_to_confirm: '确定',
- page: '页',
-
- // Pagination.jsx
- prev_page: '上一页',
- next_page: '下一页',
- prev_5: '向前 5 页',
- next_5: '向后 5 页',
- prev_3: '向前 3 页',
- next_3: '向后 3 页'
- });
-
- /***/ }),
-
- /***/ 958:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports["default"] = void 0;
-
- var React = _interopRequireWildcard(__webpack_require__(0));
-
- var _select = _interopRequireDefault(__webpack_require__(303));
-
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
-
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
-
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
-
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
-
- function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
-
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
-
- 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 _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
-
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
-
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
-
- var MiniSelect =
- /*#__PURE__*/
- function (_React$Component) {
- _inherits(MiniSelect, _React$Component);
-
- function MiniSelect() {
- _classCallCheck(this, MiniSelect);
-
- return _possibleConstructorReturn(this, _getPrototypeOf(MiniSelect).apply(this, arguments));
- }
-
- _createClass(MiniSelect, [{
- key: "render",
- value: function render() {
- return React.createElement(_select["default"], _extends({
- size: "small"
- }, this.props));
- }
- }]);
-
- return MiniSelect;
- }(React.Component);
-
- exports["default"] = MiniSelect;
- MiniSelect.Option = _select["default"].Option;
- //# sourceMappingURL=MiniSelect.js.map
-
-
- /***/ }),
-
- /***/ 966:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports["default"] = void 0;
-
- var _dropdown = _interopRequireDefault(__webpack_require__(911));
-
- var _dropdownButton = _interopRequireDefault(__webpack_require__(1065));
-
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
-
- _dropdown["default"].Button = _dropdownButton["default"];
- var _default = _dropdown["default"];
- exports["default"] = _default;
- //# sourceMappingURL=index.js.map
-
-
- /***/ }),
-
- /***/ 968:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports["default"] = exports.LayoutContext = void 0;
-
- var React = _interopRequireWildcard(__webpack_require__(0));
-
- var _classnames = _interopRequireDefault(__webpack_require__(3));
-
- var _createReactContext = _interopRequireDefault(__webpack_require__(301));
-
- var _configProvider = __webpack_require__(11);
-
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
-
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function () { return cache; }; return cache; }
-
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
-
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
-
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
-
- function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _nonIterableSpread(); }
-
- function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance"); }
-
- function _iterableToArray(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); }
-
- function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } }
-
- function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
-
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
-
- 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 _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
-
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
-
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
-
- var __rest = void 0 && (void 0).__rest || function (s, e) {
- var t = {};
-
- for (var p in s) {
- if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
- }
-
- if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
- }
- return t;
- };
-
- var LayoutContext = (0, _createReactContext["default"])({
- siderHook: {
- addSider: function addSider() {
- return null;
- },
- removeSider: function removeSider() {
- return null;
- }
- }
- });
- exports.LayoutContext = LayoutContext;
-
- function generator(_ref) {
- var suffixCls = _ref.suffixCls,
- tagName = _ref.tagName,
- displayName = _ref.displayName;
- return function (BasicComponent) {
- var _a;
-
- return _a =
- /*#__PURE__*/
- function (_React$Component) {
- _inherits(Adapter, _React$Component);
-
- function Adapter() {
- var _this;
-
- _classCallCheck(this, Adapter);
-
- _this = _possibleConstructorReturn(this, _getPrototypeOf(Adapter).apply(this, arguments));
-
- _this.renderComponent = function (_ref2) {
- var getPrefixCls = _ref2.getPrefixCls;
- var customizePrefixCls = _this.props.prefixCls;
- var prefixCls = getPrefixCls(suffixCls, customizePrefixCls);
- return React.createElement(BasicComponent, _extends({
- prefixCls: prefixCls,
- tagName: tagName
- }, _this.props));
- };
-
- return _this;
- }
-
- _createClass(Adapter, [{
- key: "render",
- value: function render() {
- return React.createElement(_configProvider.ConfigConsumer, null, this.renderComponent);
- }
- }]);
-
- return Adapter;
- }(React.Component), _a.displayName = displayName, _a;
- };
- }
-
- var Basic = function Basic(props) {
- var prefixCls = props.prefixCls,
- className = props.className,
- children = props.children,
- tagName = props.tagName,
- others = __rest(props, ["prefixCls", "className", "children", "tagName"]);
-
- var classString = (0, _classnames["default"])(className, prefixCls);
- return React.createElement(tagName, _extends({
- className: classString
- }, others), children);
- };
-
- var BasicLayout =
- /*#__PURE__*/
- function (_React$Component2) {
- _inherits(BasicLayout, _React$Component2);
-
- function BasicLayout() {
- var _this2;
-
- _classCallCheck(this, BasicLayout);
-
- _this2 = _possibleConstructorReturn(this, _getPrototypeOf(BasicLayout).apply(this, arguments));
- _this2.state = {
- siders: []
- };
- return _this2;
- }
-
- _createClass(BasicLayout, [{
- key: "getSiderHook",
- value: function getSiderHook() {
- var _this3 = this;
-
- return {
- addSider: function addSider(id) {
- _this3.setState(function (state) {
- return {
- siders: [].concat(_toConsumableArray(state.siders), [id])
- };
- });
- },
- removeSider: function removeSider(id) {
- _this3.setState(function (state) {
- return {
- siders: state.siders.filter(function (currentId) {
- return currentId !== id;
- })
- };
- });
- }
- };
- }
- }, {
- key: "render",
- value: function render() {
- var _a = this.props,
- prefixCls = _a.prefixCls,
- className = _a.className,
- children = _a.children,
- hasSider = _a.hasSider,
- Tag = _a.tagName,
- others = __rest(_a, ["prefixCls", "className", "children", "hasSider", "tagName"]);
-
- var classString = (0, _classnames["default"])(className, prefixCls, _defineProperty({}, "".concat(prefixCls, "-has-sider"), typeof hasSider === 'boolean' ? hasSider : this.state.siders.length > 0));
- return React.createElement(LayoutContext.Provider, {
- value: {
- siderHook: this.getSiderHook()
- }
- }, React.createElement(Tag, _extends({
- className: classString
- }, others), children));
- }
- }]);
-
- return BasicLayout;
- }(React.Component);
-
- var Layout = generator({
- suffixCls: 'layout',
- tagName: 'section',
- displayName: 'Layout'
- })(BasicLayout);
- var Header = generator({
- suffixCls: 'layout-header',
- tagName: 'header',
- displayName: 'Header'
- })(Basic);
- var Footer = generator({
- suffixCls: 'layout-footer',
- tagName: 'footer',
- displayName: 'Footer'
- })(Basic);
- var Content = generator({
- suffixCls: 'layout-content',
- tagName: 'main',
- displayName: 'Content'
- })(Basic);
- Layout.Header = Header;
- Layout.Footer = Footer;
- Layout.Content = Content;
- var _default = Layout;
- exports["default"] = _default;
- //# sourceMappingURL=layout.js.map
-
-
- /***/ }),
-
- /***/ 969:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports["default"] = void 0;
-
- // ================== Collapse Motion ==================
- var getCollapsedHeight = function getCollapsedHeight() {
- return {
- height: 0,
- opacity: 0
- };
- };
-
- var getRealHeight = function getRealHeight(node) {
- return {
- height: node.scrollHeight,
- opacity: 1
- };
- };
-
- var getCurrentHeight = function getCurrentHeight(node) {
- return {
- height: node.offsetHeight
- };
- };
-
- var collapseMotion = {
- motionName: 'ant-motion-collapse',
- onAppearStart: getCollapsedHeight,
- onEnterStart: getCollapsedHeight,
- onAppearActive: getRealHeight,
- onEnterActive: getRealHeight,
- onLeaveStart: getCurrentHeight,
- onLeaveActive: getCollapsedHeight
- };
- var _default = collapseMotion;
- exports["default"] = _default;
- //# sourceMappingURL=motion.js.map
-
-
- /***/ }),
-
- /***/ 971:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- __webpack_require__(29);
-
- __webpack_require__(1059);
-
- __webpack_require__(89);
- //# sourceMappingURL=css.js.map
-
-
- /***/ }),
-
- /***/ 973:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports["default"] = void 0;
-
- var isNumeric = function isNumeric(value) {
- return !isNaN(parseFloat(value)) && isFinite(value);
- };
-
- var _default = isNumeric;
- exports["default"] = _default;
- //# sourceMappingURL=isNumeric.js.map
-
-
- /***/ }),
-
- /***/ 974:
- /***/ (function(module, exports, __webpack_require__) {
-
- var root = __webpack_require__(170);
-
- /** Built-in value references. */
- var Uint8Array = root.Uint8Array;
-
- module.exports = Uint8Array;
-
-
- /***/ }),
-
- /***/ 975:
- /***/ (function(module, exports) {
-
- /**
- * Creates a unary function that invokes `func` with its argument transformed.
- *
- * @private
- * @param {Function} func The function to wrap.
- * @param {Function} transform The argument transform.
- * @returns {Function} Returns the new function.
- */
- function overArg(func, transform) {
- return function(arg) {
- return func(transform(arg));
- };
- }
-
- module.exports = overArg;
-
-
- /***/ }),
-
- /***/ 976:
- /***/ (function(module, exports, __webpack_require__) {
-
- var baseTimes = __webpack_require__(1039),
- isArguments = __webpack_require__(882),
- isArray = __webpack_require__(865),
- isBuffer = __webpack_require__(897),
- isIndex = __webpack_require__(873),
- isTypedArray = __webpack_require__(899);
-
- /** Used for built-in method references. */
- var objectProto = Object.prototype;
-
- /** Used to check objects for own properties. */
- var hasOwnProperty = objectProto.hasOwnProperty;
-
- /**
- * Creates an array of the enumerable property names of the array-like `value`.
- *
- * @private
- * @param {*} value The value to query.
- * @param {boolean} inherited Specify returning inherited property names.
- * @returns {Array} Returns the array of property names.
- */
- function arrayLikeKeys(value, inherited) {
- var isArr = isArray(value),
- isArg = !isArr && isArguments(value),
- isBuff = !isArr && !isArg && isBuffer(value),
- isType = !isArr && !isArg && !isBuff && isTypedArray(value),
- skipIndexes = isArr || isArg || isBuff || isType,
- result = skipIndexes ? baseTimes(value.length, String) : [],
- length = result.length;
-
- for (var key in value) {
- if ((inherited || hasOwnProperty.call(value, key)) &&
- !(skipIndexes && (
- // Safari 9 has enumerable `arguments.length` in strict mode.
- key == 'length' ||
- // Node.js 0.10 has enumerable non-index properties on buffers.
- (isBuff && (key == 'offset' || key == 'parent')) ||
- // PhantomJS 2 has enumerable non-index properties on typed arrays.
- (isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset')) ||
- // Skip index properties.
- isIndex(key, length)
- ))) {
- result.push(key);
- }
- }
- return result;
- }
-
- module.exports = arrayLikeKeys;
-
-
- /***/ }),
-
- /***/ 979:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports["default"] = void 0;
-
- var React = _interopRequireWildcard(__webpack_require__(0));
-
- var PropTypes = _interopRequireWildcard(__webpack_require__(1));
-
- var _rcMenu = __webpack_require__(174);
-
- var _classnames = _interopRequireDefault(__webpack_require__(3));
-
- var _MenuContext = _interopRequireDefault(__webpack_require__(879));
-
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
-
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
-
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
-
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
-
- function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
-
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
-
- 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 _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
-
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
-
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
-
- var SubMenu =
- /*#__PURE__*/
- function (_React$Component) {
- _inherits(SubMenu, _React$Component);
-
- function SubMenu() {
- var _this;
-
- _classCallCheck(this, SubMenu);
-
- _this = _possibleConstructorReturn(this, _getPrototypeOf(SubMenu).apply(this, arguments));
-
- _this.onKeyDown = function (e) {
- _this.subMenu.onKeyDown(e);
- };
-
- _this.saveSubMenu = function (subMenu) {
- _this.subMenu = subMenu;
- };
-
- return _this;
- }
-
- _createClass(SubMenu, [{
- key: "render",
- value: function render() {
- var _this2 = this;
-
- var _this$props = this.props,
- rootPrefixCls = _this$props.rootPrefixCls,
- popupClassName = _this$props.popupClassName;
- return React.createElement(_MenuContext["default"].Consumer, null, function (_ref) {
- var antdMenuTheme = _ref.antdMenuTheme;
- return React.createElement(_rcMenu.SubMenu, _extends({}, _this2.props, {
- ref: _this2.saveSubMenu,
- popupClassName: (0, _classnames["default"])("".concat(rootPrefixCls, "-").concat(antdMenuTheme), popupClassName)
- }));
- });
- }
- }]);
-
- return SubMenu;
- }(React.Component);
-
- SubMenu.contextTypes = {
- antdMenuTheme: PropTypes.string
- }; // fix issue:https://github.com/ant-design/ant-design/issues/8666
-
- SubMenu.isSubMenu = 1;
- var _default = SubMenu;
- exports["default"] = _default;
- //# sourceMappingURL=SubMenu.js.map
-
-
- /***/ }),
-
- /***/ 980:
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports["default"] = void 0;
-
- var React = _interopRequireWildcard(__webpack_require__(0));
-
- var _rcMenu = __webpack_require__(174);
-
- var _MenuContext = _interopRequireDefault(__webpack_require__(879));
-
- var _tooltip = _interopRequireDefault(__webpack_require__(172));
-
- var _Sider = __webpack_require__(894);
-
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
-
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
-
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
-
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
-
- function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
-
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
-
- 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 _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
-
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
-
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
-
- var __rest = void 0 && (void 0).__rest || function (s, e) {
- var t = {};
-
- for (var p in s) {
- if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
- }
-
- if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
- }
- return t;
- };
-
- var MenuItem =
- /*#__PURE__*/
- function (_React$Component) {
- _inherits(MenuItem, _React$Component);
-
- function MenuItem() {
- var _this;
-
- _classCallCheck(this, MenuItem);
-
- _this = _possibleConstructorReturn(this, _getPrototypeOf(MenuItem).apply(this, arguments));
-
- _this.onKeyDown = function (e) {
- _this.menuItem.onKeyDown(e);
- };
-
- _this.saveMenuItem = function (menuItem) {
- _this.menuItem = menuItem;
- };
-
- _this.renderItem = function (_ref) {
- var siderCollapsed = _ref.siderCollapsed;
- var _this$props = _this.props,
- level = _this$props.level,
- children = _this$props.children,
- rootPrefixCls = _this$props.rootPrefixCls;
-
- var _a = _this.props,
- title = _a.title,
- rest = __rest(_a, ["title"]);
-
- return React.createElement(_MenuContext["default"].Consumer, null, function (_ref2) {
- var inlineCollapsed = _ref2.inlineCollapsed;
- var tooltipProps = {
- title: title || (level === 1 ? children : '')
- };
-
- if (!siderCollapsed && !inlineCollapsed) {
- tooltipProps.title = null; // Reset `visible` to fix control mode tooltip display not correct
- // ref: https://github.com/ant-design/ant-design/issues/16742
-
- tooltipProps.visible = false;
- }
-
- return React.createElement(_tooltip["default"], _extends({}, tooltipProps, {
- placement: "right",
- overlayClassName: "".concat(rootPrefixCls, "-inline-collapsed-tooltip")
- }), React.createElement(_rcMenu.Item, _extends({}, rest, {
- title: title,
- ref: _this.saveMenuItem
- })));
- });
- };
-
- return _this;
- }
-
- _createClass(MenuItem, [{
- key: "render",
- value: function render() {
- return React.createElement(_Sider.SiderContext.Consumer, null, this.renderItem);
- }
- }]);
-
- return MenuItem;
- }(React.Component);
-
- exports["default"] = MenuItem;
- MenuItem.isMenuItem = true;
- //# sourceMappingURL=MenuItem.js.map
-
-
- /***/ }),
-
- /***/ 985:
- /***/ (function(module, exports, __webpack_require__) {
-
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- var zrUtil = __webpack_require__(864);
-
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
- /*
- * A third-party license is embeded for some of the code in this file:
- * The method "quantile" was copied from "d3.js".
- * (See more details in the comment of the method below.)
- * The use of the source code of this file is also subject to the terms
- * and consitions of the license of "d3.js" (BSD-3Clause, see
- * </licenses/LICENSE-d3>).
- */
- var RADIAN_EPSILON = 1e-4;
-
- function _trim(str) {
- return str.replace(/^\s+|\s+$/g, '');
- }
- /**
- * Linear mapping a value from domain to range
- * @memberOf module:echarts/util/number
- * @param {(number|Array.<number>)} val
- * @param {Array.<number>} domain Domain extent domain[0] can be bigger than domain[1]
- * @param {Array.<number>} range Range extent range[0] can be bigger than range[1]
- * @param {boolean} clamp
- * @return {(number|Array.<number>}
- */
-
-
- function linearMap(val, domain, range, clamp) {
- var subDomain = domain[1] - domain[0];
- var subRange = range[1] - range[0];
-
- if (subDomain === 0) {
- return subRange === 0 ? range[0] : (range[0] + range[1]) / 2;
- } // Avoid accuracy problem in edge, such as
- // 146.39 - 62.83 === 83.55999999999999.
- // See echarts/test/ut/spec/util/number.js#linearMap#accuracyError
- // It is a little verbose for efficiency considering this method
- // is a hotspot.
-
-
- if (clamp) {
- if (subDomain > 0) {
- if (val <= domain[0]) {
- return range[0];
- } else if (val >= domain[1]) {
- return range[1];
- }
- } else {
- if (val >= domain[0]) {
- return range[0];
- } else if (val <= domain[1]) {
- return range[1];
- }
- }
- } else {
- if (val === domain[0]) {
- return range[0];
- }
-
- if (val === domain[1]) {
- return range[1];
- }
- }
-
- return (val - domain[0]) / subDomain * subRange + range[0];
- }
- /**
- * Convert a percent string to absolute number.
- * Returns NaN if percent is not a valid string or number
- * @memberOf module:echarts/util/number
- * @param {string|number} percent
- * @param {number} all
- * @return {number}
- */
-
-
- function parsePercent(percent, all) {
- switch (percent) {
- case 'center':
- case 'middle':
- percent = '50%';
- break;
-
- case 'left':
- case 'top':
- percent = '0%';
- break;
-
- case 'right':
- case 'bottom':
- percent = '100%';
- break;
- }
-
- if (typeof percent === 'string') {
- if (_trim(percent).match(/%$/)) {
- return parseFloat(percent) / 100 * all;
- }
-
- return parseFloat(percent);
- }
-
- return percent == null ? NaN : +percent;
- }
- /**
- * (1) Fix rounding error of float numbers.
- * (2) Support return string to avoid scientific notation like '3.5e-7'.
- *
- * @param {number} x
- * @param {number} [precision]
- * @param {boolean} [returnStr]
- * @return {number|string}
- */
-
-
- function round(x, precision, returnStr) {
- if (precision == null) {
- precision = 10;
- } // Avoid range error
-
-
- precision = Math.min(Math.max(0, precision), 20);
- x = (+x).toFixed(precision);
- return returnStr ? x : +x;
- }
- /**
- * asc sort arr.
- * The input arr will be modified.
- *
- * @param {Array} arr
- * @return {Array} The input arr.
- */
-
-
- function asc(arr) {
- arr.sort(function (a, b) {
- return a - b;
- });
- return arr;
- }
- /**
- * Get precision
- * @param {number} val
- */
-
-
- function getPrecision(val) {
- val = +val;
-
- if (isNaN(val)) {
- return 0;
- } // It is much faster than methods converting number to string as follows
- // var tmp = val.toString();
- // return tmp.length - 1 - tmp.indexOf('.');
- // especially when precision is low
-
-
- var e = 1;
- var count = 0;
-
- while (Math.round(val * e) / e !== val) {
- e *= 10;
- count++;
- }
-
- return count;
- }
- /**
- * @param {string|number} val
- * @return {number}
- */
-
-
- function getPrecisionSafe(val) {
- var str = val.toString(); // Consider scientific notation: '3.4e-12' '3.4e+12'
-
- var eIndex = str.indexOf('e');
-
- if (eIndex > 0) {
- var precision = +str.slice(eIndex + 1);
- return precision < 0 ? -precision : 0;
- } else {
- var dotIndex = str.indexOf('.');
- return dotIndex < 0 ? 0 : str.length - 1 - dotIndex;
- }
- }
- /**
- * Minimal dicernible data precisioin according to a single pixel.
- *
- * @param {Array.<number>} dataExtent
- * @param {Array.<number>} pixelExtent
- * @return {number} precision
- */
-
-
- function getPixelPrecision(dataExtent, pixelExtent) {
- var log = Math.log;
- var LN10 = Math.LN10;
- var dataQuantity = Math.floor(log(dataExtent[1] - dataExtent[0]) / LN10);
- var sizeQuantity = Math.round(log(Math.abs(pixelExtent[1] - pixelExtent[0])) / LN10); // toFixed() digits argument must be between 0 and 20.
-
- var precision = Math.min(Math.max(-dataQuantity + sizeQuantity, 0), 20);
- return !isFinite(precision) ? 20 : precision;
- }
- /**
- * Get a data of given precision, assuring the sum of percentages
- * in valueList is 1.
- * The largest remainer method is used.
- * https://en.wikipedia.org/wiki/Largest_remainder_method
- *
- * @param {Array.<number>} valueList a list of all data
- * @param {number} idx index of the data to be processed in valueList
- * @param {number} precision integer number showing digits of precision
- * @return {number} percent ranging from 0 to 100
- */
-
-
- function getPercentWithPrecision(valueList, idx, precision) {
- if (!valueList[idx]) {
- return 0;
- }
-
- var sum = zrUtil.reduce(valueList, function (acc, val) {
- return acc + (isNaN(val) ? 0 : val);
- }, 0);
-
- if (sum === 0) {
- return 0;
- }
-
- var digits = Math.pow(10, precision);
- var votesPerQuota = zrUtil.map(valueList, function (val) {
- return (isNaN(val) ? 0 : val) / sum * digits * 100;
- });
- var targetSeats = digits * 100;
- var seats = zrUtil.map(votesPerQuota, function (votes) {
- // Assign automatic seats.
- return Math.floor(votes);
- });
- var currentSum = zrUtil.reduce(seats, function (acc, val) {
- return acc + val;
- }, 0);
- var remainder = zrUtil.map(votesPerQuota, function (votes, idx) {
- return votes - seats[idx];
- }); // Has remainding votes.
-
- while (currentSum < targetSeats) {
- // Find next largest remainder.
- var max = Number.NEGATIVE_INFINITY;
- var maxId = null;
-
- for (var i = 0, len = remainder.length; i < len; ++i) {
- if (remainder[i] > max) {
- max = remainder[i];
- maxId = i;
- }
- } // Add a vote to max remainder.
-
-
- ++seats[maxId];
- remainder[maxId] = 0;
- ++currentSum;
- }
-
- return seats[idx] / digits;
- } // Number.MAX_SAFE_INTEGER, ie do not support.
-
-
- var MAX_SAFE_INTEGER = 9007199254740991;
- /**
- * To 0 - 2 * PI, considering negative radian.
- * @param {number} radian
- * @return {number}
- */
-
- function remRadian(radian) {
- var pi2 = Math.PI * 2;
- return (radian % pi2 + pi2) % pi2;
- }
- /**
- * @param {type} radian
- * @return {boolean}
- */
-
-
- function isRadianAroundZero(val) {
- return val > -RADIAN_EPSILON && val < RADIAN_EPSILON;
- }
- /* eslint-disable */
-
-
- var TIME_REG = /^(?:(\d{4})(?:[-\/](\d{1,2})(?:[-\/](\d{1,2})(?:[T ](\d{1,2})(?::(\d\d)(?::(\d\d)(?:[.,](\d+))?)?)?(Z|[\+\-]\d\d:?\d\d)?)?)?)?)?$/; // jshint ignore:line
-
- /* eslint-enable */
-
- /**
- * @param {string|Date|number} value These values can be accepted:
- * + An instance of Date, represent a time in its own time zone.
- * + Or string in a subset of ISO 8601, only including:
- * + only year, month, date: '2012-03', '2012-03-01', '2012-03-01 05', '2012-03-01 05:06',
- * + separated with T or space: '2012-03-01T12:22:33.123', '2012-03-01 12:22:33.123',
- * + time zone: '2012-03-01T12:22:33Z', '2012-03-01T12:22:33+8000', '2012-03-01T12:22:33-05:00',
- * all of which will be treated as local time if time zone is not specified
- * (see <https://momentjs.com/>).
- * + Or other string format, including (all of which will be treated as loacal time):
- * '2012', '2012-3-1', '2012/3/1', '2012/03/01',
- * '2009/6/12 2:00', '2009/6/12 2:05:08', '2009/6/12 2:05:08.123'
- * + a timestamp, which represent a time in UTC.
- * @return {Date} date
- */
-
- function parseDate(value) {
- if (value instanceof Date) {
- return value;
- } else if (typeof value === 'string') {
- // Different browsers parse date in different way, so we parse it manually.
- // Some other issues:
- // new Date('1970-01-01') is UTC,
- // new Date('1970/01/01') and new Date('1970-1-01') is local.
- // See issue #3623
- var match = TIME_REG.exec(value);
-
- if (!match) {
- // return Invalid Date.
- return new Date(NaN);
- } // Use local time when no timezone offset specifed.
-
-
- if (!match[8]) {
- // match[n] can only be string or undefined.
- // But take care of '12' + 1 => '121'.
- return new Date(+match[1], +(match[2] || 1) - 1, +match[3] || 1, +match[4] || 0, +(match[5] || 0), +match[6] || 0, +match[7] || 0);
- } // Timezoneoffset of Javascript Date has considered DST (Daylight Saving Time,
- // https://tc39.github.io/ecma262/#sec-daylight-saving-time-adjustment).
- // For example, system timezone is set as "Time Zone: America/Toronto",
- // then these code will get different result:
- // `new Date(1478411999999).getTimezoneOffset(); // get 240`
- // `new Date(1478412000000).getTimezoneOffset(); // get 300`
- // So we should not use `new Date`, but use `Date.UTC`.
- else {
- var hour = +match[4] || 0;
-
- if (match[8].toUpperCase() !== 'Z') {
- hour -= match[8].slice(0, 3);
- }
-
- return new Date(Date.UTC(+match[1], +(match[2] || 1) - 1, +match[3] || 1, hour, +(match[5] || 0), +match[6] || 0, +match[7] || 0));
- }
- } else if (value == null) {
- return new Date(NaN);
- }
-
- return new Date(Math.round(value));
- }
- /**
- * Quantity of a number. e.g. 0.1, 1, 10, 100
- *
- * @param {number} val
- * @return {number}
- */
-
-
- function quantity(val) {
- return Math.pow(10, quantityExponent(val));
- }
- /**
- * Exponent of the quantity of a number
- * e.g., 1234 equals to 1.234*10^3, so quantityExponent(1234) is 3
- *
- * @param {number} val non-negative value
- * @return {number}
- */
-
-
- function quantityExponent(val) {
- if (val === 0) {
- return 0;
- }
-
- var exp = Math.floor(Math.log(val) / Math.LN10);
- /**
- * exp is expected to be the rounded-down result of the base-10 log of val.
- * But due to the precision loss with Math.log(val), we need to restore it
- * using 10^exp to make sure we can get val back from exp. #11249
- */
-
- if (val / Math.pow(10, exp) >= 10) {
- exp++;
- }
-
- return exp;
- }
- /**
- * find a “nice” number approximately equal to x. Round the number if round = true,
- * take ceiling if round = false. The primary observation is that the “nicest”
- * numbers in decimal are 1, 2, and 5, and all power-of-ten multiples of these numbers.
- *
- * See "Nice Numbers for Graph Labels" of Graphic Gems.
- *
- * @param {number} val Non-negative value.
- * @param {boolean} round
- * @return {number}
- */
-
-
- function nice(val, round) {
- var exponent = quantityExponent(val);
- var exp10 = Math.pow(10, exponent);
- var f = val / exp10; // 1 <= f < 10
-
- var nf;
-
- if (round) {
- if (f < 1.5) {
- nf = 1;
- } else if (f < 2.5) {
- nf = 2;
- } else if (f < 4) {
- nf = 3;
- } else if (f < 7) {
- nf = 5;
- } else {
- nf = 10;
- }
- } else {
- if (f < 1) {
- nf = 1;
- } else if (f < 2) {
- nf = 2;
- } else if (f < 3) {
- nf = 3;
- } else if (f < 5) {
- nf = 5;
- } else {
- nf = 10;
- }
- }
-
- val = nf * exp10; // Fix 3 * 0.1 === 0.30000000000000004 issue (see IEEE 754).
- // 20 is the uppper bound of toFixed.
-
- return exponent >= -20 ? +val.toFixed(exponent < 0 ? -exponent : 0) : val;
- }
- /**
- * This code was copied from "d3.js"
- * <https://github.com/d3/d3/blob/9cc9a875e636a1dcf36cc1e07bdf77e1ad6e2c74/src/arrays/quantile.js>.
- * See the license statement at the head of this file.
- * @param {Array.<number>} ascArr
- */
-
-
- function quantile(ascArr, p) {
- var H = (ascArr.length - 1) * p + 1;
- var h = Math.floor(H);
- var v = +ascArr[h - 1];
- var e = H - h;
- return e ? v + e * (ascArr[h] - v) : v;
- }
- /**
- * Order intervals asc, and split them when overlap.
- * expect(numberUtil.reformIntervals([
- * {interval: [18, 62], close: [1, 1]},
- * {interval: [-Infinity, -70], close: [0, 0]},
- * {interval: [-70, -26], close: [1, 1]},
- * {interval: [-26, 18], close: [1, 1]},
- * {interval: [62, 150], close: [1, 1]},
- * {interval: [106, 150], close: [1, 1]},
- * {interval: [150, Infinity], close: [0, 0]}
- * ])).toEqual([
- * {interval: [-Infinity, -70], close: [0, 0]},
- * {interval: [-70, -26], close: [1, 1]},
- * {interval: [-26, 18], close: [0, 1]},
- * {interval: [18, 62], close: [0, 1]},
- * {interval: [62, 150], close: [0, 1]},
- * {interval: [150, Infinity], close: [0, 0]}
- * ]);
- * @param {Array.<Object>} list, where `close` mean open or close
- * of the interval, and Infinity can be used.
- * @return {Array.<Object>} The origin list, which has been reformed.
- */
-
-
- function reformIntervals(list) {
- list.sort(function (a, b) {
- return littleThan(a, b, 0) ? -1 : 1;
- });
- var curr = -Infinity;
- var currClose = 1;
-
- for (var i = 0; i < list.length;) {
- var interval = list[i].interval;
- var close = list[i].close;
-
- for (var lg = 0; lg < 2; lg++) {
- if (interval[lg] <= curr) {
- interval[lg] = curr;
- close[lg] = !lg ? 1 - currClose : 1;
- }
-
- curr = interval[lg];
- currClose = close[lg];
- }
-
- if (interval[0] === interval[1] && close[0] * close[1] !== 1) {
- list.splice(i, 1);
- } else {
- i++;
- }
- }
-
- return list;
-
- function littleThan(a, b, lg) {
- return a.interval[lg] < b.interval[lg] || a.interval[lg] === b.interval[lg] && (a.close[lg] - b.close[lg] === (!lg ? 1 : -1) || !lg && littleThan(a, b, 1));
- }
- }
- /**
- * parseFloat NaNs numeric-cast false positives (null|true|false|"")
- * ...but misinterprets leading-number strings, particularly hex literals ("0x...")
- * subtraction forces infinities to NaN
- *
- * @param {*} v
- * @return {boolean}
- */
-
-
- function isNumeric(v) {
- return v - parseFloat(v) >= 0;
- }
-
- exports.linearMap = linearMap;
- exports.parsePercent = parsePercent;
- exports.round = round;
- exports.asc = asc;
- exports.getPrecision = getPrecision;
- exports.getPrecisionSafe = getPrecisionSafe;
- exports.getPixelPrecision = getPixelPrecision;
- exports.getPercentWithPrecision = getPercentWithPrecision;
- exports.MAX_SAFE_INTEGER = MAX_SAFE_INTEGER;
- exports.remRadian = remRadian;
- exports.isRadianAroundZero = isRadianAroundZero;
- exports.parseDate = parseDate;
- exports.quantity = quantity;
- exports.quantityExponent = quantityExponent;
- exports.nice = nice;
- exports.quantile = quantile;
- exports.reformIntervals = reformIntervals;
- exports.isNumeric = isNumeric;
-
- /***/ }),
-
- /***/ 988:
- /***/ (function(module, exports) {
-
- /**
- * The base implementation of `_.unary` without support for storing metadata.
- *
- * @private
- * @param {Function} func The function to cap arguments for.
- * @returns {Function} Returns the new capped function.
- */
- function baseUnary(func) {
- return function(value) {
- return func(value);
- };
- }
-
- module.exports = baseUnary;
-
-
- /***/ }),
-
- /***/ 989:
- /***/ (function(module, exports, __webpack_require__) {
-
- /* WEBPACK VAR INJECTION */(function(module) {var freeGlobal = __webpack_require__(319);
-
- /** Detect free variable `exports`. */
- var freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports;
-
- /** Detect free variable `module`. */
- var freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module;
-
- /** Detect the popular CommonJS extension `module.exports`. */
- var moduleExports = freeModule && freeModule.exports === freeExports;
-
- /** Detect free variable `process` from Node.js. */
- var freeProcess = moduleExports && freeGlobal.process;
-
- /** Used to access faster Node.js helpers. */
- var nodeUtil = (function() {
- try {
- // Use `util.types` for Node.js 10+.
- var types = freeModule && freeModule.require && freeModule.require('util').types;
-
- if (types) {
- return types;
- }
-
- // Legacy `process.binding('util')` for Node.js < 10.
- return freeProcess && freeProcess.binding && freeProcess.binding('util');
- } catch (e) {}
- }());
-
- module.exports = nodeUtil;
-
- /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(309)(module)))
-
- /***/ })
-
- });
|