mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-14 17:45:04 +00:00
Set display to none for children details that are empty.
This commit is contained in:
parent
73a5fc6f5b
commit
d50b039104
1 changed files with 23 additions and 11 deletions
34
html.c
34
html.c
|
@ -1858,6 +1858,8 @@ xs_html *html_entry(snac *user, xs_dict *msg, int read_only,
|
||||||
|
|
||||||
xs_list *p = children;
|
xs_list *p = children;
|
||||||
char *cmd5;
|
char *cmd5;
|
||||||
|
int cnt = 0;
|
||||||
|
|
||||||
while (xs_list_iter(&p, &cmd5)) {
|
while (xs_list_iter(&p, &cmd5)) {
|
||||||
xs *chd = NULL;
|
xs *chd = NULL;
|
||||||
|
|
||||||
|
@ -1866,23 +1868,33 @@ xs_html *html_entry(snac *user, xs_dict *msg, int read_only,
|
||||||
else
|
else
|
||||||
object_get_by_md5(cmd5, &chd);
|
object_get_by_md5(cmd5, &chd);
|
||||||
|
|
||||||
if (chd != NULL && xs_is_null(xs_dict_get(chd, "name"))) {
|
if (chd != NULL) {
|
||||||
xs_html *che = html_entry(user, chd, read_only, level + 1, cmd5, hide_children);
|
if (xs_is_null(xs_dict_get(chd, "name"))) {
|
||||||
|
xs_html *che = html_entry(user, chd, read_only,
|
||||||
|
level + 1, cmd5, hide_children);
|
||||||
|
|
||||||
if (che != NULL) {
|
if (che != NULL) {
|
||||||
if (left > 3)
|
if (left > 3)
|
||||||
xs_html_add(ch_older,
|
xs_html_add(ch_older,
|
||||||
che);
|
che);
|
||||||
else
|
else
|
||||||
xs_html_add(ch_container,
|
xs_html_add(ch_container,
|
||||||
che);
|
che);
|
||||||
|
|
||||||
|
cnt++;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
left--;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
srv_debug(2, xs_fmt("cannot read child %s", cmd5));
|
srv_debug(2, xs_fmt("cannot read child %s", cmd5));
|
||||||
|
|
||||||
left--;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* if no children were finally added, hide the details */
|
||||||
|
if (cnt == 0)
|
||||||
|
xs_html_add(ch_details,
|
||||||
|
xs_html_attr("style", "display: none"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue