Refactored to xs_html the poll part of html_entry().

This commit is contained in:
default 2023-11-28 09:29:54 +01:00
parent 04b253200b
commit 5d3b22bfce

79
html.c
View File

@ -1512,54 +1512,77 @@ xs_str *html_entry(snac *user, xs_str *os, const xs_dict *msg, int local,
if (closed || user == NULL) { if (closed || user == NULL) {
/* closed poll */ /* closed poll */
c = xs_str_cat(c, "<table class=\"snac-poll-result\">\n"); xs_html *poll_result = xs_html_tag("table",
xs_html_attr("class", "snac-poll-result"));
while (xs_list_iter(&p, &v)) { while (xs_list_iter(&p, &v)) {
const char *name = xs_dict_get(v, "name"); char *name = xs_dict_get(v, "name");
const xs_dict *replies = xs_dict_get(v, "replies"); xs_dict *replies = xs_dict_get(v, "replies");
if (name && replies) { if (name && replies) {
int nr = xs_number_get(xs_dict_get(replies, "totalItems")); char *ti = (char *)xs_number_str(xs_dict_get(replies, "totalItems"));
xs *es1 = encode_html(name);
xs *l = xs_fmt("<tr><td>%s:</td><td>%d</td></tr>\n", es1, nr);
c = xs_str_cat(c, l); xs_html_add(poll_result,
xs_html_tag("tr",
xs_html_tag("td",
xs_html_text(name),
xs_html_text(":")),
xs_html_tag("td",
xs_html_text(ti))));
} }
} }
c = xs_str_cat(c, "</table>\n"); xs *s1 = xs_html_render(poll_result);
c = xs_str_cat(c, s1);
} }
else { else {
/* poll still active */ /* poll still active */
xs *s1 = xs_fmt("<div class=\"snac-poll-form\">\n" xs *vote_action = xs_fmt("%s/admin/vote", user->actor);
"<form autocomplete=\"off\" " xs_html *form;
"method=\"post\" action=\"%s/admin/vote\">\n" xs_html *poll = xs_html_tag("div",
"<input type=\"hidden\" name=\"actor\" value= \"%s\">\n" xs_html_attr("class", "snac-poll-form"),
"<input type=\"hidden\" name=\"irt\" value=\"%s\">\n", form = xs_html_tag("form",
user->actor, actor, id); xs_html_attr("autocomplete", "off"),
xs_html_attr("method", "post"),
xs_html_attr("action", vote_action),
xs_html_sctag("input",
xs_html_attr("type", "hidden"),
xs_html_attr("name", "actor"),
xs_html_attr("value", actor)),
xs_html_sctag("input",
xs_html_attr("type", "hidden"),
xs_html_attr("name", "irt"),
xs_html_attr("value", id))));
while (xs_list_iter(&p, &v)) { while (xs_list_iter(&p, &v)) {
const char *name = xs_dict_get(v, "name"); char *name = xs_dict_get(v, "name");
const xs_dict *replies = xs_dict_get(v, "replies"); xs_dict *replies = xs_dict_get(v, "replies");
if (name) { if (name) {
int nr = xs_number_get(xs_dict_get(replies, "totalItems")); char *ti = (char *)xs_number_str(xs_dict_get(replies, "totalItems"));
xs *es1 = encode_html(name);
xs *opt = xs_fmt("<input type=\"%s\""
" id=\"%s\" value=\"%s\""
" name=\"question\"> <span title=\"%d\">%s</span><br>\n",
!xs_is_null(oo) ? "radio" : "checkbox",
es1, es1, nr, es1);
s1 = xs_str_cat(s1, opt); xs_html_add(form,
xs_html_sctag("input",
xs_html_attr("type", !xs_is_null(oo) ? "radio" : "checkbox"),
xs_html_attr("id", name),
xs_html_attr("value", name),
xs_html_attr("name", "question")),
xs_html_text(" "),
xs_html_tag("span",
xs_html_attr("title", ti),
xs_html_text(name)),
xs_html_sctag("br", NULL));
} }
} }
xs *s2 = xs_fmt("<p><input type=\"submit\" " xs_html_add(form,
"class=\"button\" value=\"%s\">\n</form>\n</div>\n\n", L("Vote")); xs_html_tag("p", NULL),
xs_html_sctag("input",
s1 = xs_str_cat(s1, s2); xs_html_attr("type", "submit"),
xs_html_attr("class", "button"),
xs_html_attr("value", L("Vote"))));
xs *s1 = xs_html_render(poll);
c = xs_str_cat(c, s1); c = xs_str_cat(c, s1);
} }