| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- 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; }
- /**
- * Animate configuration and register
- * @author sima.zhang1990@gmail.com
- */
- import { isFunction, deepMix } from '../util/common';
- var defaultAnimationCfg = {
- appear: {
- duration: 450,
- easing: 'quadraticOut'
- },
- // 'appear' animation options
- update: {
- duration: 300,
- easing: 'quadraticOut'
- },
- // 'update' animation options
- enter: {
- duration: 300,
- easing: 'quadraticOut'
- },
- // 'enter' animation options
- leave: {
- duration: 350,
- easing: 'quadraticIn'
- } // 'leave' animation options
- };
- var Animate = {
- defaultCfg: {},
- Action: {},
- getAnimation(geomType, coord, animationType) {
- var geomAnimateCfg = this.defaultCfg[geomType];
- if (geomAnimateCfg) {
- var animation = geomAnimateCfg[animationType];
- if (isFunction(animation)) {
- return animation(coord);
- }
- }
- return false;
- },
- getAnimateCfg(geomType, animationType) {
- var defaultCfg = defaultAnimationCfg[animationType];
- var geomConfig = this.defaultCfg[geomType];
- if (geomConfig && geomConfig.cfg && geomConfig.cfg[animationType]) {
- return deepMix({}, defaultCfg, geomConfig.cfg[animationType]);
- }
- return defaultCfg;
- },
- registerAnimation(animationName, animationFun) {
- if (!this.Action) {
- this.Action = {};
- }
- this.Action = _objectSpread(_objectSpread({}, this.Action), {}, {
- [animationName]: animationFun
- });
- }
- };
- export default Animate;
|