カスタムコントロールの作成:ProcessFlowの拡張におけるエラー

Jan 07 2021

プロセスフロー制御からカスタム制御を作成しようとしています。基本コントロールは次のようになります。

ここで、ProcessFlowにカスタムノードを作成し、各ノードに次のようなボタンを配置します。

したがって、私が抱えている問題は、カスタムProcessFlowNode(正方形のメモとして示されている)があるため、標準のProcessFlowでは集約さsap.suite.commons.ProcessFlowNodeれたタイプコントロールのみが許可されるため、カスタムProcessFlowコントロールが必要になることですnodes

したがって、ハードルは、カスタムProcessFlowNodeコントロールを受け入れるカスタム集計を使用してカスタムProcessFlowコントロールを作成することです。この点に関する私の質問は次のとおりです。

  • 私は拡張しますsap.ui.core.Controlsap.suite.commons.ProcessFlow?Controlの場合、ProcessFlowであることをどのようにして知ることができますか?ここでの私の仮定(私は自分の質問に部分的に答えていると思います)は、ProcessFlowが拡張されることです。次に、oRm.renderControl(oControl.getAggregation("lanes"))。を使用してコントロールをレンダリングしようとすると、「oControlはsap.ui.core.Controlまたは空である必要があります」などのコンソールエラーが発生します。これらのエラーを解決するにはどうすればよいですか?


これは、基本的な動作中のProcessFlow(名前空間xmlns="sap.suite.ui.commons")がどのように見えるかのスクリーンショットを含むサンプルコードです。

<ProcessFlow>
  <nodes>
    <ProcessFlowNode
      title="Sales Order Volume"
      titleAbbreviation="SOV1"
      laneId="0"
      nodeId="01"
      children="010,011"
      state="Positive"
      stateText="OK status"
      texts="Sales Order Document Overdue long text for the wrap up all the aspects - Not cleared"
      highlighted="false"
      focused="true"
    />
    <ProcessFlowNode
      title="Outbound Delivery 40"
      titleAbbreviation="OD40"
      laneId="0"
      nodeId="010"
      state="Negative"
      stateText="NOT OK"
      texts="Save Our Soul"
      highlighted="false"
      focused="false"
    />
    <!-- ... -->
  </nodes>
  <lanes>
    <ProcessFlowLaneHeader laneId="0" iconSrc="sap-icon://order-status" text="Order Processing" position="0" />
    <ProcessFlowLaneHeader laneId="1" iconSrc="sap-icon://monitor-payments" text="Delivery Processing" position="1" />
    <ProcessFlowLaneHeader laneId="2" iconSrc="sap-icon://payment-approval" text="Invoicing" position="2" />
    <ProcessFlowLaneHeader laneId="3" iconSrc="sap-icon://money-bills" text="Accounting" position="3" />
  </lanes>
</ProcessFlow>


これまでの私のコードは次のとおりです。

コントロール:

sap.ui.define([
  "sap/suite/ui/commons/ProcessFlow"
], function(ProcessFlow){
  "use strict";

  return ProcessFlow.extend("ns.testino.control.SuperProcessFlow", {
    metadata: {
      aggregations:{
        "lanes":{
          type: "sap.suite.ui.commons.ProcessFlowLaneHeader",
          multiple: true,
          singularName: "lane"
        },
        "nodes": {
          type: "sap.suite.ui.commons.ProcessFlowNode",
          multiple: true,
          singularName: "node"
        }
      }
    },

    init: function() {
      
    },

    renderer: function(oRM,oControl) {
      oRM.renderControl(oControl.getAggregation("lanes"));
    }
  });
});

アプリで表示:

<mvc:View controllerName="ns.testino.controller.coke2"
  xmlns:mvc="sap.ui.core.mvc"
  xmlns:m="sap.m"
  xmlns="sap.suite.ui.commons"
  xmlns:custom="ns.testino.control"
>
  <m:Panel>
    <custom:SuperProcessFlow>
      <custom:lanes>
        <ProcessFlowLaneHeader laneId="0" iconSrc="sap-icon://order-status" text="Order Processing" position="0" />
        <ProcessFlowLaneHeader laneId="1" iconSrc="sap-icon://monitor-payments" text="Delivery Processing" position="1" />
        <ProcessFlowLaneHeader laneId="2" iconSrc="sap-icon://payment-approval" text="Invoicing" position="2" />
        <ProcessFlowLaneHeader laneId="3" iconSrc="sap-icon://money-bills" text="Accounting" position="3" />
      </custom:lanes>
    </custom:SuperProcessFlow>
  </m:Panel>
</mvc:View>

回答

1 EldwinCheung Jan 08 2021 at 10:31

initメソッドを削除し、renderer関数を空にすることで、エラーを解決しました。

sap.ui.define([
  "sap/suite/ui/commons/ProcessFlow"
], function(ProcessFlow) {
  "use strict";

  return ProcessFlow.extend("ns.testino.control.CustomProcessFlow", {
    metadata: {
      // ...
    },

    // No init: function() {},

    renderer: {} // leave empty if you want it to render like the standard control

  });
});