From 1ca4628dcad0ef927afbc82a1de485c344725337 Mon Sep 17 00:00:00 2001
From: chris <kokosias@yahoo.gr>
Date: Tue, 18 Jul 2023 16:24:27 +0300
Subject: [PATCH] remove option from node

---
 .../components/DropDownComponent.js            |  1 -
 .../components/MatchingContainerComponent.js   | 18 ++++++++++++++++++
 2 files changed, 18 insertions(+), 1 deletion(-)

diff --git a/wax-prosemirror-services/src/MatchingService/components/DropDownComponent.js b/wax-prosemirror-services/src/MatchingService/components/DropDownComponent.js
index f73ef4807..2d969bca5 100644
--- a/wax-prosemirror-services/src/MatchingService/components/DropDownComponent.js
+++ b/wax-prosemirror-services/src/MatchingService/components/DropDownComponent.js
@@ -81,7 +81,6 @@ const DropComponent = ({ getPos, node, view, uniqueId }) => {
   const isEditable = main.props.editable(editable => {
     return editable;
   });
-
   let isDisabled = !isEditable;
   if (node.attrs.options.length === 0) isDisabled = true;
 
diff --git a/wax-prosemirror-services/src/MatchingService/components/MatchingContainerComponent.js b/wax-prosemirror-services/src/MatchingService/components/MatchingContainerComponent.js
index 9eb97d8a9..6b4175ccf 100644
--- a/wax-prosemirror-services/src/MatchingService/components/MatchingContainerComponent.js
+++ b/wax-prosemirror-services/src/MatchingService/components/MatchingContainerComponent.js
@@ -220,6 +220,24 @@ export default ({ node, view, getPos }) => {
     setTimeout(() => {
       setAddingOption(false);
     });
+    const allNodes = getNodes(context.pmViews.main);
+    allNodes.forEach(singleNode => {
+      if (singleNode.node.attrs.id === node.attrs.id) {
+        singleNode.node.content.content.forEach(parentNodes => {
+          parentNodes.forEach(optionNode => {
+            if (optionNode.type.name === 'matching_option') {
+              /* eslint-disable-next-line no-param-reassign */
+              optionNode.attrs.options = options.filter(
+                option => option.value !== value,
+              );
+              if (optionNode.attrs.correct === value) {
+                optionNode.attrs.correct = '';
+              }
+            }
+          });
+        });
+      }
+    });
   };
 
   const saveInChildOptions = allNodes => {
-- 
GitLab