Use remote_avatar/displayname in client selector too
This commit is contained in:
parent
1abd0d4820
commit
bb92a26aaf
@ -19,6 +19,7 @@ import AceEditor from "react-ace"
|
|||||||
import "brace/mode/yaml"
|
import "brace/mode/yaml"
|
||||||
import "brace/theme/github"
|
import "brace/theme/github"
|
||||||
import { ReactComponent as ChevronRight } from "../../res/chevron-right.svg"
|
import { ReactComponent as ChevronRight } from "../../res/chevron-right.svg"
|
||||||
|
import { ReactComponent as NoAvatarIcon } from "../../res/bot.svg"
|
||||||
import PrefTable, { PrefInput, PrefSelect, PrefSwitch } from "../../components/PreferenceTable"
|
import PrefTable, { PrefInput, PrefSelect, PrefSwitch } from "../../components/PreferenceTable"
|
||||||
import api from "../../api"
|
import api from "../../api"
|
||||||
import Spinner from "../../components/Spinner"
|
import Spinner from "../../components/Spinner"
|
||||||
@ -73,13 +74,31 @@ class Instance extends BaseMainView {
|
|||||||
this.updateClientOptions()
|
this.updateClientOptions()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getAvatarMXC(client) {
|
||||||
|
return client.avatar_url === "disable" ? client.remote_avatar_url : client.avatar_url
|
||||||
|
}
|
||||||
|
|
||||||
|
getAvatarURL(client) {
|
||||||
|
return api.getAvatarURL({
|
||||||
|
id: client.id,
|
||||||
|
avatar_url: this.getAvatarMXC(client),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
clientSelectEntry = client => client && {
|
clientSelectEntry = client => client && {
|
||||||
id: client.id,
|
id: client.id,
|
||||||
value: client.id,
|
value: client.id,
|
||||||
label: (
|
label: (
|
||||||
<div className="select-client">
|
<div className="select-client">
|
||||||
<img className="avatar" src={api.getAvatarURL(client)} alt=""/>
|
{this.getAvatarMXC(client)
|
||||||
<span className="displayname">{client.displayname || client.id}</span>
|
? <img className="avatar" src={this.getAvatarURL(client)} alt=""/>
|
||||||
|
: <NoAvatarIcon className='avatar'/>}
|
||||||
|
<span className="displayname">{
|
||||||
|
(client.displayname === "disable"
|
||||||
|
? client.remote_displayname
|
||||||
|
: client.displayname
|
||||||
|
) || client.id
|
||||||
|
}</span>
|
||||||
</div>
|
</div>
|
||||||
),
|
),
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user