install.js 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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 categoryFilter from './categoryFilter';
  41. import categoryVisual from './categoryVisual';
  42. import edgeVisual from './edgeVisual';
  43. import simpleLayout from './simpleLayout';
  44. import circularLayout from './circularLayout';
  45. import forceLayout from './forceLayout';
  46. import createView from './createView';
  47. import View from '../../coord/View';
  48. import GraphView from './GraphView';
  49. import GraphSeriesModel from './GraphSeries';
  50. import { updateCenterAndZoom } from '../../action/roamHelper';
  51. var actionInfo = {
  52. type: 'graphRoam',
  53. event: 'graphRoam',
  54. update: 'none'
  55. };
  56. export function install(registers) {
  57. registers.registerChartView(GraphView);
  58. registers.registerSeriesModel(GraphSeriesModel);
  59. registers.registerProcessor(categoryFilter);
  60. registers.registerVisual(categoryVisual);
  61. registers.registerVisual(edgeVisual);
  62. registers.registerLayout(simpleLayout);
  63. registers.registerLayout(registers.PRIORITY.VISUAL.POST_CHART_LAYOUT, circularLayout);
  64. registers.registerLayout(forceLayout);
  65. registers.registerCoordinateSystem('graphView', {
  66. dimensions: View.dimensions,
  67. create: createView
  68. }); // Register legacy focus actions
  69. registers.registerAction({
  70. type: 'focusNodeAdjacency',
  71. event: 'focusNodeAdjacency',
  72. update: 'series:focusNodeAdjacency'
  73. }, function () {});
  74. registers.registerAction({
  75. type: 'unfocusNodeAdjacency',
  76. event: 'unfocusNodeAdjacency',
  77. update: 'series:unfocusNodeAdjacency'
  78. }, function () {}); // Register roam action.
  79. registers.registerAction(actionInfo, function (payload, ecModel) {
  80. ecModel.eachComponent({
  81. mainType: 'series',
  82. query: payload
  83. }, function (seriesModel) {
  84. var coordSys = seriesModel.coordinateSystem;
  85. var res = updateCenterAndZoom(coordSys, payload);
  86. seriesModel.setCenter && seriesModel.setCenter(res.center);
  87. seriesModel.setZoom && seriesModel.setZoom(res.zoom);
  88. });
  89. });
  90. }