Fix bugs and improve minor UI things
This commit is contained in:
parent
bc97df7de8
commit
9603f59b96
5 changed files with 21 additions and 18 deletions
|
@ -157,7 +157,7 @@ class Client extends BaseMainView {
|
||||||
renderPreferences = () => (
|
renderPreferences = () => (
|
||||||
<PrefTable>
|
<PrefTable>
|
||||||
<PrefInput rowName="User ID" type="text" disabled={!this.isNew} fullWidth={true}
|
<PrefInput rowName="User ID" type="text" disabled={!this.isNew} fullWidth={true}
|
||||||
name={!this.isNew ? "id" : ""} value={this.state.id}
|
name={!this.isNew ? "id" : ""} value={this.state.id} className="id"
|
||||||
placeholder="@fancybot:example.com" onChange={this.inputChange}/>
|
placeholder="@fancybot:example.com" onChange={this.inputChange}/>
|
||||||
<PrefInput rowName="Homeserver" type="text" name="homeserver"
|
<PrefInput rowName="Homeserver" type="text" name="homeserver"
|
||||||
value={this.state.homeserver} placeholder="https://example.com"
|
value={this.state.homeserver} placeholder="https://example.com"
|
||||||
|
|
|
@ -135,9 +135,9 @@ class Instance extends BaseMainView {
|
||||||
render() {
|
render() {
|
||||||
return <div className="instance">
|
return <div className="instance">
|
||||||
<PrefTable>
|
<PrefTable>
|
||||||
<PrefInput rowName="ID" type="text" name={"id"} value={this.state.id}
|
<PrefInput rowName="ID" type="text" name="id" value={this.state.id}
|
||||||
placeholder="fancybotinstance" onChange={this.inputChange}
|
placeholder="fancybotinstance" onChange={this.inputChange}
|
||||||
disabled={!this.isNew} fullWidth={true}/>
|
disabled={!this.isNew} fullWidth={true} className="id"/>
|
||||||
<PrefSwitch rowName="Enabled" active={this.state.enabled}
|
<PrefSwitch rowName="Enabled" active={this.state.enabled}
|
||||||
onToggle={enabled => this.setState({ enabled })}/>
|
onToggle={enabled => this.setState({ enabled })}/>
|
||||||
<PrefSwitch rowName="Running" active={this.state.started}
|
<PrefSwitch rowName="Running" active={this.state.started}
|
||||||
|
|
|
@ -67,6 +67,12 @@ class Plugin extends BaseMainView {
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
return <div className="plugin">
|
return <div className="plugin">
|
||||||
|
{!this.isNew && <PrefTable>
|
||||||
|
<PrefInput rowName="ID" type="text" value={this.state.id} disabled={true}
|
||||||
|
className="id"/>
|
||||||
|
<PrefInput rowName="Version" type="text" value={this.state.version}
|
||||||
|
disabled={true}/>
|
||||||
|
</PrefTable>}
|
||||||
<div className={`upload-box ${this.state.uploading ? "uploading" : ""}`}>
|
<div className={`upload-box ${this.state.uploading ? "uploading" : ""}`}>
|
||||||
<UploadButton className="upload"/>
|
<UploadButton className="upload"/>
|
||||||
<input className="file-selector" type="file" accept="application/zip"
|
<input className="file-selector" type="file" accept="application/zip"
|
||||||
|
@ -75,20 +81,13 @@ class Plugin extends BaseMainView {
|
||||||
onDragLeave={evt => evt.target.parentElement.classList.remove("drag")}/>
|
onDragLeave={evt => evt.target.parentElement.classList.remove("drag")}/>
|
||||||
{this.state.uploading && <Spinner/>}
|
{this.state.uploading && <Spinner/>}
|
||||||
</div>
|
</div>
|
||||||
{!this.isNew && <>
|
{!this.isNew && <div className="buttons">
|
||||||
<PrefTable>
|
<button className={`delete ${this.hasInstances ? "disabled-bg" : ""}`}
|
||||||
<PrefInput rowName="ID" type="text" value={this.state.id} disabled={true}/>
|
onClick={this.delete} disabled={this.loading || this.hasInstances}
|
||||||
<PrefInput rowName="Version" type="text" value={this.state.version}
|
title={this.hasInstances ? "Can't delete plugin that is in use" : ""}>
|
||||||
disabled={true}/>
|
{this.state.deleting ? <Spinner/> : "Delete"}
|
||||||
</PrefTable>
|
</button>
|
||||||
<div className="buttons">
|
</div>}
|
||||||
<button className={`delete ${this.hasInstances ? "disabled-bg" : ""}`}
|
|
||||||
onClick={this.delete} disabled={this.loading || this.hasInstances}
|
|
||||||
title={this.hasInstances ? "Can't delete plugin that is in use" : ""}>
|
|
||||||
{this.state.deleting ? <Spinner/> : "Delete"}
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</>}
|
|
||||||
<div className="error">{this.state.error}</div>
|
<div className="error">{this.state.error}</div>
|
||||||
{!this.isNew && this.renderInstances()}
|
{!this.isNew && this.renderInstances()}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -137,7 +137,7 @@ class Dashboard extends Component {
|
||||||
<Route path="/client/:id" render={({ match }) =>
|
<Route path="/client/:id" render={({ match }) =>
|
||||||
this.renderView("clients", Client, match.params.id)}/>
|
this.renderView("clients", Client, match.params.id)}/>
|
||||||
<Route path="/plugin/:id" render={({ match }) =>
|
<Route path="/plugin/:id" render={({ match }) =>
|
||||||
this.renderView("plugin", Plugin, match.params.id)}/>
|
this.renderView("plugins", Plugin, match.params.id)}/>
|
||||||
<Route render={() => this.renderNotFound()}/>
|
<Route render={() => this.renderNotFound()}/>
|
||||||
</Switch>
|
</Switch>
|
||||||
</main>
|
</main>
|
||||||
|
|
|
@ -62,6 +62,10 @@
|
||||||
|
|
||||||
border-bottom: 1px solid $background
|
border-bottom: 1px solid $background
|
||||||
|
|
||||||
|
&.id:disabled
|
||||||
|
font-family: "Fira Code", monospace
|
||||||
|
font-weight: bold
|
||||||
|
|
||||||
&:not(:disabled)
|
&:not(:disabled)
|
||||||
border-bottom: 1px dotted $primary
|
border-bottom: 1px dotted $primary
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue