/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ import { Meta, StoryObj } from "@storybook/react"; import { BoxedExpressionEditor, BoxedExpressionEditorProps } from "../../../src/BoxedExpressionEditor"; import { BoxedExpressionEditorStory, BoxedExpressionEditorStoryArgs } from "../../boxedExpressionStoriesWrapper"; import { generateUuid } from "../../../src/api"; import { Base as EmptyExpression } from "../../misc/Empty/EmptyExpression.stories"; // More on how to set up stories at: https://storybook.js.org/docs/react/writing-stories/introduction#default-export const meta: Meta = { title: "Boxed Expressions/Conditional", component: BoxedExpressionEditor, includeStories: /^[A-Z]/, }; export default meta; type Story = StoryObj; // More on writing stories with args: https://storybook.js.org/docs/react/writing-stories/args export const Base: Story = { render: (args) => BoxedExpressionEditorStory(), parameters: { exclude: ["dataTypes", "beeGwtService", "pmmlDocuments"] }, args: { ...EmptyExpression.args, expression: { __$$element: "conditional", "@_id": generateUuid(), "@_label": "Expression Name", if: { "@_id": generateUuid(), expression: { __$$element: "literalExpression", "@_id": generateUuid(), }, }, then: { "@_id": generateUuid(), expression: { __$$element: "literalExpression", "@_id": generateUuid(), }, }, else: { "@_id": generateUuid(), expression: { __$$element: "literalExpression", "@_id": generateUuid(), }, }, }, }, }; export const Readonly: Story = { render: (args) => BoxedExpressionEditorStory(), parameters: { exclude: ["dataTypes", "beeGwtService", "pmmlDocuments"] }, args: { ...EmptyExpression.args, expression: { __$$element: "conditional", "@_id": generateUuid(), "@_label": "Expression Name", if: { "@_id": generateUuid(), expression: { __$$element: "literalExpression", "@_id": generateUuid(), }, }, then: { "@_id": generateUuid(), expression: { __$$element: "literalExpression", "@_id": generateUuid(), }, }, else: { "@_id": generateUuid(), expression: { __$$element: "literalExpression", "@_id": generateUuid(), }, }, }, isReadOnly: true, }, }; export const EvaluationHits: Story = { render: (args) => BoxedExpressionEditorStory({ evaluationHitsCountById: new Map([ ["_1FA12B9F-288C-42E8-B77F-BE2D3702B7B7", 70], ["_1FA12B9F-288C-42E8-B77F-BE2D3702B7B8", 30], ["_1FA12B9F-288C-42E8-B77F-BE2D3702B7B9", 40], ["_1FA12B9F-288C-42E8-B77F-BE2D3702B7B0", 50], ["_1FA12B9F-288C-42E8-B77F-BE2D3702B7B1", 20], ["_1FA12B9F-288C-42E8-B77F-BE2D3702B7B2", 70], ["_1FA12B9F-288C-42E8-B77F-BE2D3702B7B3", 20], ]), }), parameters: { exclude: ["dataTypes", "beeGwtService", "pmmlDocuments"] }, args: { ...EmptyExpression.args, expression: { __$$element: "conditional", "@_id": generateUuid(), "@_label": "Expression Name", if: { "@_id": generateUuid(), expression: { __$$element: "literalExpression", "@_id": generateUuid(), }, }, then: { "@_id": "_1FA12B9F-288C-42E8-B77F-BE2D3702B7B7", expression: { __$$element: "decisionTable", "@_id": generateUuid(), "@_typeRef": "Any", "@_hitPolicy": "UNIQUE", input: [ { "@_id": generateUuid(), inputExpression: { "@_id": generateUuid(), text: { __$$text: "input-1" }, }, }, { "@_id": generateUuid(), inputExpression: { "@_id": generateUuid(), text: { __$$text: "input-2" }, }, }, ], output: [ { "@_id": generateUuid(), "@_label": "output-1", }, { "@_id": generateUuid(), "@_label": "output-2", }, { "@_id": generateUuid(), "@_label": "output-3", }, ], annotation: [ { "@_name": "Annotations", }, ], rule: [ { "@_id": "_1FA12B9F-288C-42E8-B77F-BE2D3702B7B8", inputEntry: [ { "@_id": generateUuid(), text: { __$$text: "E" } }, { "@_id": generateUuid(), text: { __$$text: "E" } }, ], outputEntry: [ { "@_id": generateUuid(), text: { __$$text: "aaa" } }, { "@_id": generateUuid(), text: { __$$text: "aaa" } }, { "@_id": generateUuid(), text: { __$$text: "aaa" } }, ], annotationEntry: [{ text: { __$$text: "// Your annotations here" } }], }, { "@_id": "_1FA12B9F-288C-42E8-B77F-BE2D3702B7B9", inputEntry: [ { "@_id": generateUuid(), text: { __$$text: "E" } }, { "@_id": generateUuid(), text: { __$$text: "E" } }, ], outputEntry: [ { "@_id": generateUuid(), text: { __$$text: "aaa" } }, { "@_id": generateUuid(), text: { __$$text: "aaa" } }, { "@_id": generateUuid(), text: { __$$text: "aaa" } }, ], annotationEntry: [{ text: { __$$text: "// Your annotations here" } }], }, ], }, }, else: { "@_id": "_1FA12B9F-288C-42E8-B77F-BE2D3702B7B2", expression: { __$$element: "conditional", "@_id": generateUuid(), "@_label": "Expression Name", if: { "@_id": generateUuid(), expression: { __$$element: "literalExpression", "@_id": generateUuid(), }, }, then: { "@_id": "_1FA12B9F-288C-42E8-B77F-BE2D3702B7B0", expression: { __$$element: "literalExpression", "@_id": generateUuid(), }, }, else: { "@_id": "_1FA12B9F-288C-42E8-B77F-BE2D3702B7B3", expression: { __$$element: "decisionTable", "@_id": generateUuid(), "@_typeRef": "Any", "@_hitPolicy": "UNIQUE", input: [ { "@_id": generateUuid(), inputExpression: { "@_id": generateUuid(), text: { __$$text: "input-1" }, }, }, { "@_id": generateUuid(), inputExpression: { "@_id": generateUuid(), text: { __$$text: "input-2" }, }, }, ], output: [ { "@_id": generateUuid(), "@_label": "output-1", }, { "@_id": generateUuid(), "@_label": "output-2", }, { "@_id": generateUuid(), "@_label": "output-3", }, ], annotation: [ { "@_name": "Annotations", }, ], rule: [ { "@_id": "_1FA12B9F-288C-42E8-B77F-BE2D3702B7B1", inputEntry: [ { "@_id": generateUuid(), text: { __$$text: "E" } }, { "@_id": generateUuid(), text: { __$$text: "E" } }, ], outputEntry: [ { "@_id": generateUuid(), text: { __$$text: "aaa" } }, { "@_id": generateUuid(), text: { __$$text: "aaa" } }, { "@_id": generateUuid(), text: { __$$text: "aaa" } }, ], annotationEntry: [{ text: { __$$text: "// Your annotations here" } }], }, ], }, }, }, }, }, }, }; export const MonthlyFee: Story = { render: (args) => BoxedExpressionEditorStory(), parameters: { exclude: ["dataTypes", "beeGwtService", "pmmlDocuments"] }, args: { ...EmptyExpression.args, expression: { __$$element: "conditional", "@_id": "_D98FB35A-C6A5-4BA7-AD38-176D56A31983", "@_label": "MonthlyFee", "@_typeRef": "number", if: { "@_id": generateUuid(), expression: { __$$element: "literalExpression", "@_id": generateUuid(), text: { __$$text: 'ProductType = "STANDARD LOAN"' }, }, }, then: { "@_id": generateUuid(), expression: { __$$element: "literalExpression", "@_id": generateUuid(), text: { __$$text: "20" }, }, }, else: { "@_id": generateUuid(), expression: { __$$element: "conditional", "@_id": generateUuid(), if: { "@_id": generateUuid(), expression: { __$$element: "literalExpression", "@_id": "_D98FB35A-C6A5-4BA7-AD38-176D56A31983", text: { __$$text: 'ProductType = "SPECIAL OFFERING"' }, }, }, then: { "@_id": generateUuid(), expression: { __$$element: "literalExpression", "@_id": generateUuid(), text: { __$$text: "25" }, }, }, else: { "@_id": generateUuid(), expression: { __$$element: "literalExpression", "@_id": generateUuid(), text: { __$$text: "null" }, }, }, }, }, }, widthsById: { "_D98FB35A-C6A5-4BA7-AD38-176D56A31983": [300], }, }, }; export const Nested: Story = { render: (args) => BoxedExpressionEditorStory(), parameters: { exclude: ["dataTypes", "beeGwtService", "pmmlDocuments"] }, args: { ...EmptyExpression.args, expression: { __$$element: "context", "@_id": generateUuid(), "@_label": "Expression Name", contextEntry: [ { "@_id": generateUuid(), variable: { "@_id": generateUuid(), "@_name": "ContextEntry-1", }, expression: { __$$element: "conditional", "@_id": generateUuid(), "@_label": "Expression Name", if: { "@_id": generateUuid(), expression: { __$$element: "literalExpression", "@_id": generateUuid(), }, }, then: { "@_id": generateUuid(), expression: { __$$element: "literalExpression", "@_id": generateUuid(), }, }, else: { "@_id": generateUuid(), expression: { __$$element: "literalExpression", "@_id": generateUuid(), }, }, }, }, ], }, }, };