history.js 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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);
  50. // If previous dataZoom can not be found,
  51. // complete an range with current range.
  52. each(newSnapshot, function (batchItem, dataZoomId) {
  53. var i = storedSnapshots.length - 1;
  54. for (; i >= 0; i--) {
  55. var snapshot = storedSnapshots[i];
  56. if (snapshot[dataZoomId]) {
  57. break;
  58. }
  59. }
  60. if (i < 0) {
  61. // No origin range set, create one by current range.
  62. var dataZoomModel = ecModel.queryComponents({
  63. mainType: 'dataZoom',
  64. subType: 'select',
  65. id: dataZoomId
  66. })[0];
  67. if (dataZoomModel) {
  68. var percentRange = dataZoomModel.getPercentRange();
  69. storedSnapshots[0][dataZoomId] = {
  70. dataZoomId: dataZoomId,
  71. start: percentRange[0],
  72. end: percentRange[1]
  73. };
  74. }
  75. }
  76. });
  77. storedSnapshots.push(newSnapshot);
  78. }
  79. export function pop(ecModel) {
  80. var storedSnapshots = getStoreSnapshots(ecModel);
  81. var head = storedSnapshots[storedSnapshots.length - 1];
  82. storedSnapshots.length > 1 && storedSnapshots.pop();
  83. // Find top for all dataZoom.
  84. var snapshot = {};
  85. each(head, function (batchItem, dataZoomId) {
  86. for (var i = storedSnapshots.length - 1; i >= 0; i--) {
  87. batchItem = storedSnapshots[i][dataZoomId];
  88. if (batchItem) {
  89. snapshot[dataZoomId] = batchItem;
  90. break;
  91. }
  92. }
  93. });
  94. return snapshot;
  95. }
  96. export function clear(ecModel) {
  97. inner(ecModel).snapshots = null;
  98. }
  99. export function count(ecModel) {
  100. return getStoreSnapshots(ecModel).length;
  101. }
  102. /**
  103. * History length of each dataZoom may be different.
  104. * this._history[0] is used to store origin range.
  105. */
  106. function getStoreSnapshots(ecModel) {
  107. var store = inner(ecModel);
  108. if (!store.snapshots) {
  109. store.snapshots = [{}];
  110. }
  111. return store.snapshots;
  112. }