rename avatar to img to save a few bytes in alerts
This commit is contained in:
parent
61688a0c6d
commit
17c8f7604a
|
@ -167,7 +167,7 @@ func buildAlertString(msg string, sub []string, path, avatar string, asid int) s
|
||||||
return sb.String()
|
return sb.String()
|
||||||
}
|
}
|
||||||
|
|
||||||
const AlertsGrowHint2 = len(`{"msg":"","sub":[],"path":"","avatar":"","id":}`) + 5 + 3 + 1 + 1 + 1
|
const AlertsGrowHint2 = len(`{"msg":"","sub":[],"path":"","img":"","id":}`) + 5 + 3 + 1 + 1 + 1
|
||||||
|
|
||||||
// TODO: Use a string builder?
|
// TODO: Use a string builder?
|
||||||
func buildAlertSb(sb *strings.Builder, msg string, sub []string, path, avatar string, asid int) {
|
func buildAlertSb(sb *strings.Builder, msg string, sub []string, path, avatar string, asid int) {
|
||||||
|
@ -185,7 +185,7 @@ func buildAlertSb(sb *strings.Builder, msg string, sub []string, path, avatar st
|
||||||
}
|
}
|
||||||
sb.WriteString(`],"path":"`)
|
sb.WriteString(`],"path":"`)
|
||||||
sb.WriteString(escapeTextInJson(path))
|
sb.WriteString(escapeTextInJson(path))
|
||||||
sb.WriteString(`","avatar":"`)
|
sb.WriteString(`","img":"`)
|
||||||
sb.WriteString(escapeTextInJson(avatar))
|
sb.WriteString(escapeTextInJson(avatar))
|
||||||
sb.WriteString(`","id":`)
|
sb.WriteString(`","id":`)
|
||||||
sb.WriteString(strconv.Itoa(asid))
|
sb.WriteString(strconv.Itoa(asid))
|
||||||
|
@ -289,7 +289,7 @@ func BuildAlertSb(sb *strings.Builder, a *Alert, user User /* The current user *
|
||||||
sb.WriteString(escapeTextInJson(area))
|
sb.WriteString(escapeTextInJson(area))
|
||||||
sb.WriteString(`"],"path":"`)
|
sb.WriteString(`"],"path":"`)
|
||||||
sb.WriteString(escapeTextInJson(url))
|
sb.WriteString(escapeTextInJson(url))
|
||||||
sb.WriteString(`","avatar":"`)
|
sb.WriteString(`","img":"`)
|
||||||
sb.WriteString(escapeTextInJson(a.Actor.Avatar))
|
sb.WriteString(escapeTextInJson(a.Actor.Avatar))
|
||||||
sb.WriteString(`","id":`)
|
sb.WriteString(`","id":`)
|
||||||
sb.WriteString(strconv.Itoa(a.ASID))
|
sb.WriteString(strconv.Itoa(a.ASID))
|
||||||
|
@ -298,7 +298,7 @@ func BuildAlertSb(sb *strings.Builder, a *Alert, user User /* The current user *
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
//var AlertsGrowHint3 = len(`{"msg":"._","sub":["",""],"path":"","avatar":"","id":}`) + 3 + 2 + 2 + 2 + 2 + 1
|
//var AlertsGrowHint3 = len(`{"msg":"._","sub":["",""],"path":"","img":"","id":}`) + 3 + 2 + 2 + 2 + 2 + 1
|
||||||
|
|
||||||
func AddActivityAndNotifyAll(a Alert) error {
|
func AddActivityAndNotifyAll(a Alert) error {
|
||||||
id, err := Activity.Add(a)
|
id, err := Activity.Add(a)
|
||||||
|
|
|
@ -68,7 +68,7 @@ function addAlert(msg, notice = false) {
|
||||||
let aItem = Template_alert({
|
let aItem = Template_alert({
|
||||||
ASID: msg.id,
|
ASID: msg.id,
|
||||||
Path: msg.path,
|
Path: msg.path,
|
||||||
Avatar: msg.avatar || "",
|
Avatar: msg.img || "",
|
||||||
Message: mmsg
|
Message: mmsg
|
||||||
})
|
})
|
||||||
//alertMapping[msg.id] = aItem;
|
//alertMapping[msg.id] = aItem;
|
||||||
|
@ -83,7 +83,7 @@ function addAlert(msg, notice = false) {
|
||||||
if(Notification.permission === "granted") {
|
if(Notification.permission === "granted") {
|
||||||
var n = new Notification("Something Happened",{
|
var n = new Notification("Something Happened",{
|
||||||
body: mmsg,
|
body: mmsg,
|
||||||
icon: msg.avatar,
|
icon: msg.img,
|
||||||
});
|
});
|
||||||
setTimeout(n.close.bind(n), 8000);
|
setTimeout(n.close.bind(n), 8000);
|
||||||
}
|
}
|
||||||
|
@ -138,7 +138,7 @@ function loadAlerts(menuAlerts, eTc = false) {
|
||||||
type:'get',
|
type:'get',
|
||||||
dataType:'json',
|
dataType:'json',
|
||||||
url:'/api/?m=alerts' + tc,
|
url:'/api/?m=alerts' + tc,
|
||||||
success: (data) => {
|
success: data => {
|
||||||
if("errmsg" in data) {
|
if("errmsg" in data) {
|
||||||
setAlertError(menuAlerts,data.errmsg)
|
setAlertError(menuAlerts,data.errmsg)
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue