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

@ -14,7 +14,6 @@ export default class NetworkForm extends Component {
prevParams = null;
state = {
...defaultParams,
isNew: true,
};
constructor(props) {
@ -25,8 +24,6 @@ export default class NetworkForm extends Component {
this.handleChange = this.handleChange.bind(this);
this.handleSubmit = this.handleSubmit.bind(this);
this.state.isNew = !props.params;
if (props.params) {
Object.keys(defaultParams).forEach((k) => {
if (props.params[k] !== undefined) {
@ -48,7 +45,10 @@ export default class NetworkForm extends Component {
let params = {};
Object.keys(defaultParams).forEach((k) => {
if (this.prevParams[k] == this.state[k]) {
if (!this.props.isNew && this.prevParams[k] == this.state[k]) {
return;
}
if (this.props.isNew && defaultParams[k] == this.state[k]) {
return;
}
params[k] = this.state[k];
@ -59,7 +59,7 @@ export default class NetworkForm extends Component {
render() {
let removeNetwork = null;
if (!this.state.isNew) {
if (!this.props.isNew) {
removeNetwork = html`
<button type="button" class="danger" onClick=${() => this.props.onRemove()}>
Remove network
@ -121,7 +121,7 @@ export default class NetworkForm extends Component {
${removeNetwork}
${" "}
<button>
${this.state.isNew ? "Add network" : "Save network"}
${this.props.isNew ? "Add network" : "Save network"}
</button>
</form>
`;