File size: 6,156 Bytes
f5071ca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
import React, { useEffect, useState } from "react";
import { Box, HStack, Spinner, useColorModeValue } from "@chakra-ui/react";
import converter from "../../helper/converter";
import { PrimaryBtn, SecondaryBtn } from "../../utils/Buttons";
import MDE from "../MDE";
import "../../styles/customizeMDE.scss";
import { htmlToJsx } from "../../helper/htmlToJsx";
import { updateComment } from "../../lib/api";
import { useDispatch, useSelector } from "react-redux";
import { Timestamp } from "firebase/firestore";
import { useAuth } from "../../context/auth";
import { nanoid } from "@reduxjs/toolkit";
import { removeFromLocalStorage } from "../../helper/localStorage";
import { setLoginAlert } from "../../store/loginAlert";
import hljs from "highlight.js";

const DiscussionBox = ({
  postId,
  commentId,
  showDismiss,
  onDismiss,
  valueToEdit,
  transformedComments,
  repliedUserId,
}) => {
  const user = useAuth();
  const dispatch = useDispatch();

  const { transformedData } = useSelector((state) => state.transformedData);

  const [submitting, setSubmitting] = useState(false);
  const [uploadingImg, setUploadingImg] = useState(false);
  const [mdeTab, setMdeTab] = useState("write");
  const [MDEValue, setMDEValue] = useState(valueToEdit || "");

  const comments = transformedData?.find(
    (data) => data.id === postId
  )?.comments;

  const hasValue = MDEValue.trim();

  const mdeTabChangeHandler = () => {
    setMdeTab((prev) => (prev === "write" ? "preview" : "write"));
  };

  useEffect(() => {
    const textArea = document.querySelector(".mde-text");

    if (!user) {
      document.querySelector(".mde-header").style.display = "none";
      textArea.readOnly = true; // not allow cursor if not authenticated
    }

    const checkUser = () => {
      if (!user) {
        dispatch(setLoginAlert(true));
      }
    };

    textArea?.addEventListener("click", checkUser);

    return () => textArea?.removeEventListener("click", checkUser);
  }, [user, dispatch]); // hide mde-header if user is not authenticated

  // insert placeholder
  useEffect(() => {
    const textBoxes = [...document.querySelectorAll(".mde-text")];
    textBoxes.map((textbox, idx) =>
      idx === 0
        ? (textbox.placeholder = "Add to the discussion...")
        : (textbox.placeholder = "Reply...")
    );
  }, [mdeTab]);

  useEffect(() => {
    if (mdeTab === "preview") {
      hljs.highlightAll();
    }
  }, [mdeTab]);

  const handleSubmit = (e) => {
    e.preventDefault();
    setSubmitting(true);

    const createdAt = Timestamp.now();
    const newComment = {
      value: MDEValue,
      replies: {},
      createdAt,
      userId: user.userId,
      commentId: nanoid(),
      likes: [],
    };

    let modifiedComments = [];

    if (valueToEdit) {
      modifiedComments = transformedComments(comments, MDEValue);
    } else if (commentId) {
      modifiedComments = comments.map((comment) =>
        comment.commentId === commentId ||
        Object.values(comment.replies).find(
          (cmt) => cmt.commentId === commentId
        )
          ? {
              ...comment,
              replies: {
                ...comment.replies,
                [nanoid()]: {
                  ...newComment,
                  repliedUserId,
                  repliedCommentId: commentId,
                },
              },
            }
          : comment
      );
    } else {
      modifiedComments = [...comments, newComment];
    }

    updateComment(modifiedComments, postId)
      .then((_) => {
        setSubmitting(false);
        setMDEValue("");
        // onDismiss && onDismiss(); => close discussionBox immediately without accepting new state value
        onDismiss && setTimeout(onDismiss, 100); // need new state value ('submitting = false') to disable || enable to MDE after state change
        setMdeTab("write");
        removeFromLocalStorage("commentItemToManage");
        // console.log('added comment successfully');
      })
      .catch((err) => {
        setSubmitting(false);
        console.log(err);
      });
  };

  const shadow = useColorModeValue(
    "0 0 0 1px rgb(212 212 212)",
    "0 0 0 1px rgb(255 255 255 / 15%)"
  );

  const boxBoxShadow = useColorModeValue(
    "0 0 0 2px rgb(59 73 223)",
    "0 0 0 2px rgb(129 140 248) "
  );

  return (
    <Box className="mde-preview">
      {mdeTab === "write" && (
        <Box
          borderRadius="5px"
          _focusWithin={{
            boxShadow: user && boxBoxShadow,
          }}
          boxShadow={shadow}
          overflow="hidden"
          className="discussion-box mde-preview"
        >
          <MDE
            MDEValue={MDEValue}
            setMDEValue={setMDEValue}
            isSubmitting={submitting}
            setUploadingImg={setUploadingImg}
          />
        </Box>
      )}

      {mdeTab === "preview" && (
        <Box
          minH="192px"
          borderRadius="5px"
          padding="10px !important"
          className="mde-preview-content"
          boxShadow={shadow}
          fontSize={["1rem", "1.1rem"]}
          sx={{ p: { marginBottom: "5px !important" } }}
        >
          {htmlToJsx(converter().makeHtml(MDEValue))}
        </Box>
      )}

      {/* buttons */}
      <HStack justify="flex-end" w="100%" mt=".5rem">
        {showDismiss && (
          <SecondaryBtn
            onClick={onDismiss}
            disabled={uploadingImg || submitting}
          >
            Dismiss
          </SecondaryBtn>
        )}

        <SecondaryBtn
          disabled={
            (!hasValue && mdeTab === "write") || uploadingImg || submitting
          }
          onClick={mdeTabChangeHandler}
        >
          {mdeTab === "write" ? "Preview" : "Edit"}
        </SecondaryBtn>

        <PrimaryBtn
          onClick={handleSubmit}
          bg="light.primary"
          disabled={!hasValue || uploadingImg || submitting}
        >
          {submitting ? (
            <>
              <Spinner size="sm" mr="1" /> Submitting
            </>
          ) : (
            "Submit"
          )}
        </PrimaryBtn>
      </HStack>
    </Box>
  );
};

export default DiscussionBox;