mirror of
https://github.com/drawdb-io/drawdb.git
synced 2025-05-24 02:09:17 +00:00
update email api endpoints
This commit is contained in:
parent
9e245cf550
commit
3a499d316d
9
src/api/email.js
Normal file
9
src/api/email.js
Normal file
@ -0,0 +1,9 @@
|
||||
import axios from "axios";
|
||||
|
||||
export async function send(subject, message, attachments) {
|
||||
return await axios.post(`${import.meta.env.VITE_BACKEND_URL}/email/send`, {
|
||||
subject,
|
||||
message,
|
||||
attachments,
|
||||
});
|
||||
}
|
7
src/api/index.js
Normal file
7
src/api/index.js
Normal file
@ -0,0 +1,7 @@
|
||||
import { send } from "./email";
|
||||
|
||||
export const api = {
|
||||
email: {
|
||||
send,
|
||||
},
|
||||
};
|
@ -14,9 +14,9 @@ import { editorConfig } from "../data/editorConfig";
|
||||
import { useLexicalComposerContext } from "@lexical/react/LexicalComposerContext";
|
||||
import { $generateHtmlFromNodes } from "@lexical/html";
|
||||
import { CLEAR_EDITOR_COMMAND } from "lexical";
|
||||
import axios from "axios";
|
||||
import { Link } from "react-router-dom";
|
||||
import { socials } from "../data/socials";
|
||||
import { api } from "../api";
|
||||
|
||||
function Form({ theme }) {
|
||||
const [editor] = useLexicalComposerContext();
|
||||
@ -65,21 +65,19 @@ function Form({ theme }) {
|
||||
setLoading(true);
|
||||
editor.update(() => {
|
||||
const sendMail = async () => {
|
||||
await axios
|
||||
.post(`${import.meta.env.VITE_BACKEND_URL}/send_email`, {
|
||||
subject: `[BUG REPORT]: ${data.title}`,
|
||||
message: $generateHtmlFromNodes(editor),
|
||||
attachments: data.attachments,
|
||||
})
|
||||
.then(() => {
|
||||
Toast.success("Bug reported!");
|
||||
editor.dispatchCommand(CLEAR_EDITOR_COMMAND, null);
|
||||
resetForm();
|
||||
})
|
||||
.catch(() => {
|
||||
Toast.error("Oops! Something went wrong.");
|
||||
setLoading(false);
|
||||
});
|
||||
try {
|
||||
await api.email.send(
|
||||
`[BUG REPORT]: ${data.title}`,
|
||||
$generateHtmlFromNodes(editor),
|
||||
data.attachments,
|
||||
);
|
||||
Toast.success("Bug reported!");
|
||||
editor.dispatchCommand(CLEAR_EDITOR_COMMAND, null);
|
||||
resetForm();
|
||||
} catch {
|
||||
Toast.error("Oops! Something went wrong.");
|
||||
setLoading(false);
|
||||
}
|
||||
};
|
||||
sendMail();
|
||||
});
|
||||
|
@ -20,8 +20,8 @@ import { $generateHtmlFromNodes } from "@lexical/html";
|
||||
import { CLEAR_EDITOR_COMMAND } from "lexical";
|
||||
import { Link } from "react-router-dom";
|
||||
import RichEditor from "../components/LexicalEditor/RichEditor";
|
||||
import axios from "axios";
|
||||
import { questions } from "../data/surveyQuestions";
|
||||
import { api } from "../api";
|
||||
|
||||
function SurveyForm({ theme }) {
|
||||
const [editor] = useLexicalComposerContext();
|
||||
@ -55,24 +55,20 @@ function SurveyForm({ theme }) {
|
||||
setLoading(true);
|
||||
editor.update(() => {
|
||||
const sendMail = async () => {
|
||||
await axios
|
||||
.post(`${import.meta.env.VITE_BACKEND_URL}/send_email`, {
|
||||
subject: `[SURVEY]: ${new Date().toDateString()}`,
|
||||
message: `${Object.keys(form).map(
|
||||
(k) => `<div>${questions[k]}</div><div>${form[k]}</div>`
|
||||
)}<div>How can we make drawDB a better experience for you?</div>${$generateHtmlFromNodes(
|
||||
editor
|
||||
)}`,
|
||||
})
|
||||
.then(() => {
|
||||
Toast.success("Thanks for the feedback!");
|
||||
editor.dispatchCommand(CLEAR_EDITOR_COMMAND, undefined);
|
||||
resetForm();
|
||||
})
|
||||
.catch(() => {
|
||||
Toast.error("Oops! Something went wrong.");
|
||||
setLoading(false);
|
||||
});
|
||||
try {
|
||||
await api.email.send(
|
||||
`[SURVEY]: ${new Date().toDateString()}`,
|
||||
`${Object.keys(form)
|
||||
.map((k) => `<div>${questions[k]}</div><div>${form[k]}</div>`)
|
||||
.join("\n\n")}<br/>${$generateHtmlFromNodes(editor)}`,
|
||||
);
|
||||
Toast.success("Thanks for the feedback!");
|
||||
editor.dispatchCommand(CLEAR_EDITOR_COMMAND, null);
|
||||
resetForm();
|
||||
} catch {
|
||||
Toast.error("Oops! Something went wrong.");
|
||||
setLoading(false);
|
||||
}
|
||||
};
|
||||
sendMail();
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user