history.js 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. /**
  20. * AUTO-GENERATED FILE. DO NOT MODIFY.
  21. */
  22. /*
  23. * Licensed to the Apache Software Foundation (ASF) under one
  24. * or more contributor license agreements. See the NOTICE file
  25. * distributed with this work for additional information
  26. * regarding copyright ownership. The ASF licenses this file
  27. * to you under the Apache License, Version 2.0 (the
  28. * "License"); you may not use this file except in compliance
  29. * with the License. You may obtain a copy of the License at
  30. *
  31. * http://www.apache.org/licenses/LICENSE-2.0
  32. *
  33. * Unless required by applicable law or agreed to in writing,
  34. * software distributed under the License is distributed on an
  35. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  36. * KIND, either express or implied. See the License for the
  37. * specific language governing permissions and limitations
  38. * under the License.
  39. */
  40. import * as zrUtil from 'zrender/lib/core/util.js';
  41. import { makeInner } from '../../util/model.js';
  42. var each = zrUtil.each;
  43. var inner = makeInner();
  44. /**
  45. * @param ecModel
  46. * @param newSnapshot key is dataZoomId
  47. */
  48. export function push(ecModel, newSnapshot) {
  49. var storedSnapshots = getStoreSnapshots(ecModel); // If previous dataZoom can not be found,
  50. // complete an range with current range.
  51. each(newSnapshot, function (batchItem, dataZoomId) {
  52. var i = storedSnapshots.length - 1;
  53. for (; i >= 0; i--) {
  54. var snapshot = storedSnapshots[i];
  55. if (snapshot[dataZoomId]) {
  56. break;
  57. }
  58. }
  59. if (i < 0) {
  60. // No origin range set, create one by current range.
  61. var dataZoomModel = ecModel.queryComponents({
  62. mainType: 'dataZoom',
  63. subType: 'select',
  64. id: dataZoomId
  65. })[0];
  66. if (dataZoomModel) {
  67. var percentRange = dataZoomModel.getPercentRange();
  68. storedSnapshots[0][dataZoomId] = {
  69. dataZoomId: dataZoomId,
  70. start: percentRange[0],
  71. end: percentRange[1]
  72. };
  73. }
  74. }
  75. });
  76. storedSnapshots.push(newSnapshot);
  77. }
  78. export function pop(ecModel) {
  79. var storedSnapshots = getStoreSnapshots(ecModel);
  80. var head = storedSnapshots[storedSnapshots.length - 1];
  81. storedSnapshots.length > 1 && storedSnapshots.pop(); // Find top for all dataZoom.
  82. var snapshot = {};
  83. each(head, function (batchItem, dataZoomId) {
  84. for (var i = storedSnapshots.length - 1; i >= 0; i--) {
  85. batchItem = storedSnapshots[i][dataZoomId];
  86. if (batchItem) {
  87. snapshot[dataZoomId] = batchItem;
  88. break;
  89. }
  90. }
  91. });
  92. return snapshot;
  93. }
  94. export function clear(ecModel) {
  95. inner(ecModel).snapshots = null;
  96. }
  97. export function count(ecModel) {
  98. return getStoreSnapshots(ecModel).length;
  99. }
  100. /**
  101. * History length of each dataZoom may be different.
  102. * this._history[0] is used to store origin range.
  103. */
  104. function getStoreSnapshots(ecModel) {
  105. var store = inner(ecModel);
  106. if (!store.snapshots) {
  107. store.snapshots = [{}];
  108. }
  109. return store.snapshots;
  110. }