2022-09-06 19:26:43 -04:00
|
|
|
import {LitElement, html} from './lit-all.min.js';
|
|
|
|
import * as tfrpc from '/static/tfrpc.js';
|
|
|
|
import {styles} from './tf-styles.js';
|
|
|
|
|
|
|
|
class TfUserElement extends LitElement {
|
|
|
|
static get properties() {
|
|
|
|
return {
|
|
|
|
id: {type: String},
|
|
|
|
users: {type: Object},
|
2023-03-29 18:02:12 -04:00
|
|
|
};
|
2022-09-06 19:26:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static styles = styles;
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
this.id = null;
|
|
|
|
this.users = {};
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2023-03-19 19:31:08 -04:00
|
|
|
let name = this.users?.[this.id]?.name;
|
2024-02-24 11:09:34 -05:00
|
|
|
name =
|
|
|
|
name !== undefined
|
|
|
|
? html`<a target="_top" href=${'#' + this.id}>${name}</a>`
|
|
|
|
: html`<a target="_top" href=${'#' + this.id}>${this.id}</a>`;
|
2023-03-19 19:31:08 -04:00
|
|
|
|
2022-09-06 19:26:43 -04:00
|
|
|
if (this.users[this.id]) {
|
|
|
|
let image = this.users[this.id].image;
|
2024-02-24 11:09:34 -05:00
|
|
|
image = typeof image == 'string' ? image : image?.link;
|
|
|
|
return html` <div style="display: inline-block; font-weight: bold">
|
|
|
|
<img
|
|
|
|
style="width: 2em; height: 2em; vertical-align: middle; border-radius: 50%"
|
|
|
|
?hidden=${image === undefined}
|
|
|
|
src="${image ? '/' + image + '/view' : undefined}"
|
|
|
|
/>
|
|
|
|
${name}
|
|
|
|
</div>`;
|
2022-09-06 19:26:43 -04:00
|
|
|
} else {
|
2024-02-24 11:09:34 -05:00
|
|
|
return html` <div style="display: inline-block; font-weight: bold">
|
|
|
|
${name}
|
|
|
|
</div>`;
|
2022-09-06 19:26:43 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-24 11:09:34 -05:00
|
|
|
customElements.define('tf-user', TfUserElement);
|