diff options
-rw-r--r-- | profile/index.js | 4 | ||||
-rw-r--r-- | profile/public/user.js | 6 |
2 files changed, 6 insertions, 4 deletions
diff --git a/profile/index.js b/profile/index.js index 5099c94..6bc2221 100644 --- a/profile/index.js +++ b/profile/index.js @@ -143,7 +143,7 @@ app.get("/api/comments/:uid", async (req, res) => { app.post("/api/comment", async (req, res) => { const { pid, comment } = req.body; - if (!pid || !comment) return res.json({ success: false }); + if (!pid || !comment || comment.length > 280) return res.json({ success: false }); try { await db.query("INSERT INTO profile_comments (user_id, profile_id, comment) VALUES (?,?,?)", [ req.session.uid, @@ -159,7 +159,7 @@ app.post("/api/comment", async (req, res) => { app.put("/api/comment", async (req, res) => { const { pid, cid, comment } = req.body; - if (!pid || !comment || !cid) return res.json({ success: false }); + if (!pid || !comment || !cid || comment.length > 280) return res.json({ success: false }); try { await db.query( "UPDATE profile_comments SET comment = ? WHERE (user_id = ? OR ?) AND profile_id = ? AND id = ?", diff --git a/profile/public/user.js b/profile/public/user.js index 141ba54..dbceafc 100644 --- a/profile/public/user.js +++ b/profile/public/user.js @@ -96,8 +96,9 @@ async function addComments(comments) { const inputDiv = document.createElement("div"); const input = document.createElement("textarea"); - input.placeholder = "Dein Kommentar..."; + input.placeholder = "Dein Kommentar (max. 280 Zeichen)"; input.value = comment.comment; + input.maxLength = 280; const submit = document.createElement("input"); submit.type = "submit"; submit.value = "Speichern"; @@ -139,7 +140,8 @@ async function addComments(comments) { add.addEventListener("click", (evt) => { const div = document.createElement("div"); const input = document.createElement("textarea"); - input.placeholder = "Dein Kommentar..."; + input.placeholder = "Dein Kommentar (max. 280 Zeichen)"; + input.maxLength = 280; const submit = document.createElement("input"); submit.type = "submit"; submit.value = "Hinzufügen"; |