Open dialog to create new network on IRC URL click

If we're running under a bouncer and the user clicks a link with
a server we aren't connected to yet, open the dialog to add a new
network.

References: https://todo.sr.ht/~emersion/gamja/71
This commit is contained in:
Simon Ser 2021-10-13 16:40:34 +02:00
parent 405bc51c26
commit 3562478946
2 changed files with 16 additions and 8 deletions

View file

@ -883,7 +883,13 @@ export default class App extends Component {
}
}
if (!bouncerNetID) {
// TODO: open dialog to create network if bouncer
// Open dialog to create network if bouncer
let client = this.clients.values().next().value;
if (client && client.enabledCaps["soju.im/bouncer-networks"]) {
event.preventDefault();
let params = { host: url.host };
this.openDialog("network", { params });
}
return;
}
@ -1364,13 +1370,15 @@ export default class App extends Component {
let dialog = null;
switch (this.state.dialog) {
case "network":
let title = this.state.dialogData ? "Edit network" : "Add network";
let isNew = !!(!this.state.dialogData || !this.state.dialogData.id);
let title = isNew ? "Add network" : "Edit network";
dialog = html`
<${Dialog} title=${title} onDismiss=${this.dismissDialog}>
<${NetworkForm}
onSubmit=${this.handleNetworkSubmit}
onRemove=${this.handleNetworkRemove}
params=${this.state.dialogData ? this.state.dialogData.params : null}
isNew=${isNew}
/>
</>
`;