From 04f28a3be58d3f441c8307a0d6470e011b9caf4d Mon Sep 17 00:00:00 2001 From: Mouriya Date: Mon, 10 Jun 2024 06:10:32 +0900 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E3=81=97=E3=81=84=E7=B5=B1=E5=90=88?= =?UTF-8?q?=E3=81=95=E3=82=8C=E3=81=9F=E3=83=95=E3=82=A3=E3=83=BC=E3=83=AB?= =?UTF-8?q?=E3=83=89=E5=85=A5=E5=8A=9B=E3=80=81=E3=81=99=E3=81=B9=E3=81=A6?= =?UTF-8?q?=E3=81=AE=E9=96=A2=E9=80=A3=E9=83=A8=E5=93=81=E3=81=AE=E4=B8=80?= =?UTF-8?q?=E8=87=B4=E4=BF=AE=E6=AD=A3.=20=E3=83=95=E3=82=A3=E3=83=BC?= =?UTF-8?q?=E3=83=AB=E3=83=89=E3=81=AE=E5=80=A4=E3=82=92=E5=8F=96=E5=BE=97?= =?UTF-8?q?=E3=81=99=E3=82=8B=20=E3=81=AB=E6=96=B0=E3=81=97=E3=81=84?= =?UTF-8?q?=E3=82=A2=E3=82=AF=E3=82=B7=E3=83=A7=E3=83=B3=E3=82=92=E8=BF=BD?= =?UTF-8?q?=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ConditionEditor/ConditionObject.vue | 165 +++++++------ .../ConditionEditor/NodeCondition.vue | 10 +- .../DynamicItemInput/DynamicItemInput.vue | 134 ++++++++++ .../components/DynamicItemInput/FieldAdd.vue | 41 +++ .../DynamicItemInput/VariableAdd.vue | 42 ++++ frontend/src/components/ShowDialog.vue | 9 +- frontend/src/components/VariableList.vue | 5 +- .../src/components/right/ConditionInput.vue | 29 +++ frontend/src/components/right/DataMapping.vue | 23 +- .../src/components/right/DataProcessing.vue | 8 +- frontend/src/types/Conditions.ts | 20 +- .../src/actions/current-field-get.ts | 74 ++++++ .../src/actions/data-mapping.ts | 123 +++++---- .../src/actions/data-processing.ts | 233 ++++++++++++------ .../src/types/action-process.ts | 1 + 15 files changed, 670 insertions(+), 247 deletions(-) create mode 100644 frontend/src/components/DynamicItemInput/DynamicItemInput.vue create mode 100644 frontend/src/components/DynamicItemInput/FieldAdd.vue create mode 100644 frontend/src/components/DynamicItemInput/VariableAdd.vue create mode 100644 plugin/kintone-addins/src/actions/current-field-get.ts diff --git a/frontend/src/components/ConditionEditor/ConditionObject.vue b/frontend/src/components/ConditionEditor/ConditionObject.vue index 2097f5a..77ea9cf 100644 --- a/frontend/src/components/ConditionEditor/ConditionObject.vue +++ b/frontend/src/components/ConditionEditor/ConditionObject.vue @@ -1,20 +1,21 @@