Et2ButtonTimestamper: Fix error where some users could not be found

In instances with > 100 users, it's possible the current user was not on the client side.  Now checking user() first, it should always be there.
This commit is contained in:
nathan 2023-12-07 10:31:59 -07:00
parent e26bcee006
commit 7052803700

View File

@ -66,12 +66,11 @@ export class Et2ButtonTimestamper extends Et2Button
}
/**
* Overwritten to maintain an internal clicked attribute
* Stamp the date / user into the target widget
*
* @param _ev
* @returns {Boolean}
*/
stamp(event: MouseEvent): boolean
stamp(event : MouseEvent)
{
const now = new Date(new Date().toLocaleString('en-US', {
timeZone: this.timezone || this.egw().preference('tz')
@ -81,12 +80,27 @@ export class Et2ButtonTimestamper extends Et2Button
let text = date(format, now);
// Get properly formatted user name
// Try from account first, it's faster
const fromAccount = this.egw().user("account_fullname") || "";
if(fromAccount != "")
{
this.setText(text + fromAccount + ': ');
}
else
{
const user = '' + parseInt(this.egw().user('account_id'));
this.egw().accounts('accounts').then((accounts) =>
{
const account = accounts.filter((option : SelectOption) => option.value == user)[0];
text += account.label + ': ';
this.setText(text + account.label + ': ');
});
}
}
protected setText(text)
{
const widget = this._get_input(this.target);
let input = widget.input ? widget.input : widget.getDOMNode();
if(input.context)
@ -162,7 +176,6 @@ export class Et2ButtonTimestamper extends Et2Button
input.scrollTop = scrollPos;
input.focus();
}
});
}
private _get_input(target)