aboutsummaryrefslogtreecommitdiff
path: root/profile/public/user.js
blob: 963904c56e2d50f09de06ff294f01f8dd912f02f (plain) (blame)
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
const uid = new URL(window.location.href).searchParams.get("uid");
const userDiv = document.getElementById("user");
const commentsDiv = document.getElementById("comments");
const charDiv = document.getElementById("char");

if (uid < 1 || uid > 119) window.location.assign("./users.html"); // Well

function addUser(userData) {
    const divs = [];
    const questions = userData.questions;
    const user = userData.user;
    for (const questionID in questions) {
        if (!questions.hasOwnProperty(questionID) || questions[questionID].type === "file") continue;
        const question = questions[questionID];
        const div = document.createElement("div");
        div.innerHTML = `<b>${question.question.replace(/</g, "&lt;").replace(/>/g, "&gt;")}</b> <span>${
            (question.answer || "nichts").replace(/</g, "&lt;").replace(/>/g, "&gt;") || ""
        }</span>`;
        divs.push(div);
    }
    const h1 = document.createElement("h1");
    h1.textContent = `${user.name} ${user.middlename || ""} ${user.surname}`;
    document.querySelector("title").textContent = h1.textContent;
    h1.addEventListener("click", (evt) => {
        const qDivs = evt.target.parentElement.querySelectorAll("div");
        qDivs.forEach(
            (div) => (div.style.display = !div.style.display || div.style.display === "block" ? "none" : "block"),
        );
        if (h1.classList.contains("bananenkuchen")) h1.classList.remove("bananenkuchen");
        else h1.classList.add("bananenkuchen");
    });
    userDiv.append(h1, ...divs);
}

async function addComments(comments) {
    const h2 = document.createElement("h2");
    h2.textContent = "Kommentare";
    h2.addEventListener("click", (evt) => {
        const qDivs = evt.target.parentElement.querySelectorAll("div");
        qDivs.forEach(
            (div) => (div.style.display = !div.style.display || div.style.display === "flex" ? "none" : "flex"),
        );
        if (h2.classList.contains("bananenkuchen")) h2.classList.remove("bananenkuchen");
        else h2.classList.add("bananenkuchen");
    });
    const divs = [];
    for (const comment of comments) {
        const div = document.createElement("div");
        div.dataset.id = comment.id;
        const span = document.createElement("span");
        span.textContent = comment.comment;
        div.append(span);

        if (comment.owner) {
            const buttons = document.createElement("div");
            buttons.classList.add("control-buttons");

            const del = document.createElement("span");
            del.classList.add("delete-btn");
            del.addEventListener("click", async (evt) => {
                if (!confirm("Bist du sicher, dass du den Kommentar löschen willst?")) return;
                const body = JSON.stringify({
                    pid: uid,
                    cid: evt.target.parentElement.parentElement.dataset.id,
                });
                const resp = await fetch("api/comment", {
                    method: "DELETE",
                    headers: { "Content-Type": "application/json" },
                    body,
                });
                const res = await resp.json();
                if (res.success) window.location.reload();
            });

            const edit = document.createElement("span");
            edit.classList.add("edit-btn");
            edit.addEventListener("click", (evt) => {
                const updateDiv = document.createElement("div");
                updateDiv.id = "edit-div";

                const inputDiv = document.createElement("div");
                const input = document.createElement("textarea");
                input.placeholder = "Dein Kommentar...";
                input.value = comment.comment;
                const submit = document.createElement("input");
                submit.type = "submit";
                submit.value = "Speichern";
                submit.classList.add("pure-button", "pure-button-primary");

                submit.addEventListener("click", async () => {
                    const body = JSON.stringify({
                        pid: uid,
                        cid: evt.target.parentElement.parentElement.dataset.id,
                        comment: input.value,
                    });
                    const resp = await fetch("api/comment", {
                        method: "PUT",
                        headers: { "Content-Type": "application/json" },
                        body,
                    });
                    const res = await resp.json();
                    if (res.success) window.location.reload();
                });

                inputDiv.append(input, submit);
                updateDiv.append(inputDiv);
                div.insertAdjacentElement("beforebegin", updateDiv);
                commentsDiv.removeChild(div);
            });

            buttons.append(edit, del);
            div.append(buttons);
        }
        divs.push(div);
    }

    commentsDiv.append(h2, ...divs);

    const addDiv = document.createElement("div");
    addDiv.id = "add-div";
    const add = document.createElement("span");
    add.classList.add("add-btn");
    add.addEventListener("click", (evt) => {
        const div = document.createElement("div");
        const input = document.createElement("textarea");
        input.placeholder = "Dein Kommentar...";
        const submit = document.createElement("input");
        submit.type = "submit";
        submit.value = "Hinzufügen";
        submit.classList.add("pure-button", "pure-button-primary");

        submit.addEventListener("click", async (evt) => {
            const comment = input.value;
            console.log(comment);
            const body = JSON.stringify({ comment, pid: uid });
            const resp = await fetch("api/comment", {
                method: "POST",
                headers: { "Content-Type": "application/json" },
                body,
            });
            const res = await resp.json();
            console.log(res);
            if (res.success) window.location.reload();
        });
        div.append(input, submit);
        addDiv.removeChild(add);
        addDiv.append(div);
    });
    addDiv.append(add);
    commentsDiv.append(addDiv);
}

function addChar(char) {
    let method = "POST";
    const h2 = document.createElement("h2");
    h2.textContent = "Erkennungsmerkmal";
    h2.addEventListener("click", (evt) => {
        const divs = evt.target.parentElement.querySelectorAll("div");
        divs.forEach(
            (div) => (div.style.display = !div.style.display || div.style.display === "flex" ? "none" : "flex"),
        );
        if (h2.classList.contains("bananenkuchen")) h2.classList.remove("bananenkuchen");
        else h2.classList.add("bananenkuchen");
    });
    const inp = document.createElement("input");
    const btn = document.createElement("button");
    btn.textContent = "Senden";

    if (char.hasOwnProperty("txt")) {
        method = "PUT";
        inp.value = char.txt;
    }

    inp.maxLength = 255;

    btn.addEventListener("click", async (e) => {
        const char = inp.value;
        const body = JSON.stringify({ char });
        await fetch(`api/char/${uid}`, {
            method,
            headers: { "Content-Type": "application/json" },
            body,
        });
    });
    const div = document.createElement("div");
    div.style.display = "flex";
    div.append(inp, btn);
    charDiv.append(h2, div);
}

fetch(`api/user/${uid}`)
    .then((response) => response.json())
    .then(addUser);

fetch(`api/comments/${uid}`)
    .then((response) => response.json())
    .then(addComments);

fetch(`api/char/${uid}`)
    .then((response) => response.json())
    .then(addChar);