mirror of
https://codeberg.org/emersion/gamja.git
synced 2024-11-14 19:05:01 -05:00
Hide everything while loading config.json
This commit is contained in:
parent
dee9e06b2f
commit
af1e2e144a
1 changed files with 7 additions and 0 deletions
|
@ -131,6 +131,7 @@ export default class App extends Component {
|
|||
bouncerNetworks: new Map(),
|
||||
activeBuffer: null,
|
||||
connectForm: true,
|
||||
loading: true,
|
||||
dialog: null,
|
||||
error: null,
|
||||
openPanels: {
|
||||
|
@ -186,6 +187,8 @@ export default class App extends Component {
|
|||
* - Default server URL constructed from the current URL location
|
||||
*/
|
||||
handleConfig(config) {
|
||||
this.setState({ loading: false });
|
||||
|
||||
let connectParams = {};
|
||||
|
||||
if (config.server) {
|
||||
|
@ -1123,6 +1126,10 @@ export default class App extends Component {
|
|||
}
|
||||
|
||||
render() {
|
||||
if (this.state.loading) {
|
||||
return html`<section id="connect"></section>`;
|
||||
}
|
||||
|
||||
let activeBuffer = null, activeServer = null, activeBouncerNetwork = null;
|
||||
let isBouncer = false;
|
||||
if (this.state.buffers.get(this.state.activeBuffer)) {
|
||||
|
|
Loading…
Reference in a new issue