mirror of
https://github.com/maubot/maubot.git
synced 2024-10-01 01:06:10 -04:00
Change more things
This commit is contained in:
parent
53d2264351
commit
0a406ac071
@ -222,10 +222,16 @@ class Client extends Component {
|
|||||||
</PrefTable>
|
</PrefTable>
|
||||||
)
|
)
|
||||||
|
|
||||||
|
get hasInstances() {
|
||||||
|
return this.state.instances.length > 0
|
||||||
|
}
|
||||||
|
|
||||||
renderPrefButtons = () => <>
|
renderPrefButtons = () => <>
|
||||||
<div className="buttons">
|
<div className="buttons">
|
||||||
{!this.isNew && (
|
{!this.isNew && (
|
||||||
<button className="delete" onClick={this.delete} disabled={this.loading}>
|
<button className={`delete ${this.hasInstances ? "disabled-bg" : ""}`}
|
||||||
|
onClick={this.delete} disabled={this.loading || this.hasInstances}
|
||||||
|
title={this.hasInstances ? "Can't delete client that is in use" : ""}>
|
||||||
{this.state.deleting ? <Spinner/> : "Delete"}
|
{this.state.deleting ? <Spinner/> : "Delete"}
|
||||||
</button>
|
</button>
|
||||||
)}
|
)}
|
||||||
@ -238,7 +244,7 @@ class Client extends Component {
|
|||||||
|
|
||||||
renderInstances = () => !this.isNew && (
|
renderInstances = () => !this.isNew && (
|
||||||
<div className="instances">
|
<div className="instances">
|
||||||
<h3>{this.state.instances.length > 0 ? "Instances" : "No instances :("}</h3>
|
<h3>{this.hasInstances ? "Instances" : "No instances :("}</h3>
|
||||||
{this.state.instances.map(instance => (
|
{this.state.instances.map(instance => (
|
||||||
<Link className="instance" key={instance.id} to={`/instance/${instance.id}`}>
|
<Link className="instance" key={instance.id} to={`/instance/${instance.id}`}>
|
||||||
{instance.id}
|
{instance.id}
|
||||||
|
@ -26,6 +26,9 @@
|
|||||||
box-sizing: border-box
|
box-sizing: border-box
|
||||||
font-size: 1rem
|
font-size: 1rem
|
||||||
|
|
||||||
|
&.disabled-bg
|
||||||
|
background-color: $background-dark
|
||||||
|
|
||||||
&:not(:disabled)
|
&:not(:disabled)
|
||||||
cursor: pointer
|
cursor: pointer
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user