aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/pages/bug/EditCommentForm.tsx
diff options
context:
space:
mode:
authorSascha <GlancingMind@outlook.com>2021-03-17 22:28:45 +0100
committerSascha <GlancingMind@outlook.com>2021-03-19 17:52:32 +0100
commit9fb033ef191a23b1338e0fdfe8ab1f462165b99d (patch)
tree8d42f7eff77db4227857b9e3cdb02d375ccff4b9 /webui/src/pages/bug/EditCommentForm.tsx
parentd6c3ffa984c57a546d437d9be989077d824fac46 (diff)
downloadgit-bug-9fb033ef191a23b1338e0fdfe8ab1f462165b99d.tar.gz
Return of new comment works...
...but the types are quite hacky
Diffstat (limited to 'webui/src/pages/bug/EditCommentForm.tsx')
-rw-r--r--webui/src/pages/bug/EditCommentForm.tsx11
1 files changed, 7 insertions, 4 deletions
diff --git a/webui/src/pages/bug/EditCommentForm.tsx b/webui/src/pages/bug/EditCommentForm.tsx
index ca627c27..7823d75e 100644
--- a/webui/src/pages/bug/EditCommentForm.tsx
+++ b/webui/src/pages/bug/EditCommentForm.tsx
@@ -7,7 +7,7 @@ import { makeStyles, Theme } from '@material-ui/core/styles';
import CommentInput from '../../components/CommentInput/CommentInput';
import { BugFragment } from './Bug.generated';
-import { useEditCommentMutation } from './EditCommentform.generated';
+import { useEditCommentMutation } from './EditCommentForm.generated';
import { AddCommentFragment } from './MessageCommentFragment.generated';
import { CreateFragment } from './MessageCreateFragment.generated';
@@ -43,7 +43,7 @@ type Props = {
bug: BugFragment;
comment: AddCommentFragment | CreateFragment;
onCancelClick?: () => void;
- onPostSubmit?: () => void;
+ onPostSubmit?: (comments: any) => void;
};
function EditCommentForm({ bug, comment, onCancelClick, onPostSubmit }: Props) {
@@ -54,7 +54,6 @@ function EditCommentForm({ bug, comment, onCancelClick, onPostSubmit }: Props) {
const form = useRef<HTMLFormElement>(null);
const submit = () => {
- console.log('submit: ' + message + '\nTo: ' + comment.id);
editComment({
variables: {
input: {
@@ -63,9 +62,13 @@ function EditCommentForm({ bug, comment, onCancelClick, onPostSubmit }: Props) {
target: comment.id,
},
},
+ }).then((result) => {
+ const comments = result.data?.editComment.bug.timeline.comments;
+ const coms = comments as (AddCommentFragment | CreateFragment)[];
+ const res = coms.find((elem) => elem.id === comment.id);
+ if (onPostSubmit) onPostSubmit(res);
});
resetForm();
- if (onPostSubmit) onPostSubmit();
};
function resetForm() {