index-7562e272.js 2.5 KB
Newer Older
zhf's avatar
zhf committed
1 2 3
var a = Object.defineProperty;
var s = (t, o, r) => o in t ? a(t, o, { enumerable: !0, configurable: !0, writable: !0, value: r }) : t[o] = r;
var e = (t, o, r) => (s(t, typeof o != "symbol" ? o + "" : o, r), r);
zhf's avatar
zhf committed
4 5
import { ControlType as c, ViewType as l } from "@ibiz-template/model";
import { PluginStaticResource as h } from "@ibiz-template/runtime";
zhf's avatar
zhf committed
6 7
import { PortletPartController as C } from "@ibiz-template/controller";
const m = new h(import.meta.url);
zhf's avatar
zhf committed
8 9
class p {
  constructor() {
zhf's avatar
zhf committed
10
    e(this, "component", "ChartControl");
zhf's avatar
zhf committed
11 12
  }
}
zhf's avatar
zhf committed
13
class w {
zhf's avatar
zhf committed
14
  constructor() {
zhf's avatar
zhf committed
15
    e(this, "component", "ChartView");
zhf's avatar
zhf committed
16 17
  }
}
zhf's avatar
zhf committed
18
class d extends C {
zhf's avatar
zhf committed
19 20 21 22 23 24 25 26 27
  constructor() {
    super(...arguments);
    /**
     * 图表神经元
     *
     * @author zhanghengfeng
     * @date 2023-10-30 19:10:58
     * @type {ChartNeuron}
     */
zhf's avatar
zhf committed
28
    e(this, "chart");
zhf's avatar
zhf committed
29 30 31 32 33 34 35
    /**
     * 图表适配器
     *
     * @author zhanghengfeng
     * @date 2023-10-30 19:10:22
     * @type {IControlProvider}
     */
zhf's avatar
zhf committed
36
    e(this, "chartProvider");
zhf's avatar
zhf committed
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
  }
  async onInit() {
    await super.onInit();
    const { chart: r } = this.model;
    r && (this.chartProvider = await ibiz.register.control.get(r));
  }
  /**
   * 设置图表神经元
   *
   * @author zhanghengfeng
   * @date 2023-10-30 19:10:45
   * @param {ChartNeuron} neuron
   */
  setChartNeuron(r) {
    this.chart = r, this.chart.evt.on("mounted", () => {
      var i;
      (i = this.chart) == null || i.call.load();
    }), this.chart.evt.on("destroyed", () => {
      this.chart = void 0;
    });
  }
}
class P {
  constructor() {
zhf's avatar
zhf committed
61
    e(this, "component", "ChartPortlet");
zhf's avatar
zhf committed
62
  }
zhf's avatar
zhf committed
63 64 65
  async createController(o, r, i) {
    const n = new d(
      o,
zhf's avatar
zhf committed
66 67 68
      r,
      i
    );
zhf's avatar
zhf committed
69 70 71 72 73 74
    return await n.init(), n;
  }
}
class g {
  constructor() {
    e(this, "component", "GwxnChartControl");
zhf's avatar
zhf committed
75 76 77 78 79
  }
}
const T = {
  mateUrl: import.meta.url,
  install(t) {
zhf's avatar
zhf committed
80
    m.loadStyle(["/style.css"]), t.component(
zhf's avatar
zhf committed
81
      "ChartControl",
zhf's avatar
zhf committed
82
      () => import("./chart-control-e83eabb6.js")
zhf's avatar
zhf committed
83 84 85 86 87
    ), ibiz.register.control.register(c.CHART, new p()), t.component(
      "ChartView",
      () => import("./chart-view-2e05f0a8.js")
    ), ibiz.register.view.register(
      l.DE_CHART_VIEW,
zhf's avatar
zhf committed
88
      new w()
zhf's avatar
zhf committed
89 90
    ), t.component(
      "ChartPortlet",
zhf's avatar
zhf committed
91
      () => import("./chart-portlet-533d5bd9.js")
zhf's avatar
zhf committed
92 93
    ), ibiz.register.portletPart.register("CHART", new P()), t.component(
      "GwxnChartControl",
zhf's avatar
zhf committed
94
      () => import("./gwxn-chart-control-f043106c.js")
zhf's avatar
zhf committed
95
    ), ibiz.register.control.register("CUSTOM_GwxnChart", new g());
zhf's avatar
zhf committed
96 97 98
  }
};
export {
zhf's avatar
zhf committed
99
  d as C,
zhf's avatar
zhf committed
100 101
  T as i
};