mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-09 19:50:26 +03:00
open image in new tab when clicked, add css class for attachments
This commit is contained in:
parent
47cb5f0b28
commit
2a8d34a833
13
html.c
13
html.c
@ -1055,6 +1055,10 @@ xs_str *html_entry(snac *snac, xs_str *os, const xs_dict *msg, int local,
|
|||||||
|
|
||||||
if ((attach = xs_dict_get(msg, "attachment")) != NULL) { /** **/
|
if ((attach = xs_dict_get(msg, "attachment")) != NULL) { /** **/
|
||||||
char *v;
|
char *v;
|
||||||
|
|
||||||
|
/* make custom css for attachments easier */
|
||||||
|
s = xs_str_cat(s, "<p class=\"snac-content-attachments\">\n");
|
||||||
|
|
||||||
while (xs_list_iter(&attach, &v)) {
|
while (xs_list_iter(&attach, &v)) {
|
||||||
char *t = xs_dict_get(v, "mediaType");
|
char *t = xs_dict_get(v, "mediaType");
|
||||||
|
|
||||||
@ -1066,8 +1070,9 @@ xs_str *html_entry(snac *snac, xs_str *os, const xs_dict *msg, int local,
|
|||||||
char *name = xs_dict_get(v, "name");
|
char *name = xs_dict_get(v, "name");
|
||||||
|
|
||||||
if (url != NULL) {
|
if (url != NULL) {
|
||||||
xs *s1 = xs_fmt("<p><img src=\"%s\" alt=\"%s\" loading=\"lazy\"/></p>\n",
|
xs *s1 = xs_fmt(
|
||||||
url, xs_is_null(name) ? "" : name);
|
"<a href=\"%s\" target=\"_blank\"><img src=\"%s\" alt=\"%s\" loading=\"lazy\"/></a>\n",
|
||||||
|
url, url, xs_is_null(name) ? "" : name);
|
||||||
|
|
||||||
s = xs_str_cat(s, s1);
|
s = xs_str_cat(s, s1);
|
||||||
}
|
}
|
||||||
@ -1077,12 +1082,14 @@ xs_str *html_entry(snac *snac, xs_str *os, const xs_dict *msg, int local,
|
|||||||
char *url = xs_dict_get(v, "url");
|
char *url = xs_dict_get(v, "url");
|
||||||
|
|
||||||
if (url != NULL) {
|
if (url != NULL) {
|
||||||
xs *s1 = xs_fmt("<p><object data=\"%s\"></object></p>\n", url);
|
xs *s1 = xs_fmt("<object data=\"%s\"></object>\n", url);
|
||||||
|
|
||||||
s = xs_str_cat(s, s1);
|
s = xs_str_cat(s, s1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
s = xs_str_cat(s, "</p>\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (sensitive)
|
if (sensitive)
|
||||||
|
Loading…
Reference in New Issue
Block a user