2018-07-06 18:15:15 +00:00
|
|
|
<template>
|
|
|
|
<form
|
|
|
|
:id="'join-channel-' + channel.id"
|
|
|
|
class="join-form"
|
|
|
|
method="post"
|
|
|
|
action=""
|
|
|
|
autocomplete="off"
|
2018-07-12 19:06:17 +00:00
|
|
|
@keydown.esc.prevent="$emit('toggleJoinChannel')"
|
2019-02-25 05:38:13 +00:00
|
|
|
@submit.prevent="onSubmit"
|
|
|
|
>
|
2018-07-06 18:15:15 +00:00
|
|
|
<input
|
2018-07-12 19:06:17 +00:00
|
|
|
v-model="inputChannel"
|
2018-07-29 17:57:14 +00:00
|
|
|
v-focus
|
2018-07-06 18:15:15 +00:00
|
|
|
type="text"
|
|
|
|
class="input"
|
|
|
|
name="channel"
|
|
|
|
placeholder="Channel"
|
|
|
|
pattern="[^\s]+"
|
|
|
|
maxlength="200"
|
|
|
|
title="The channel name may not contain spaces"
|
2019-02-25 05:38:13 +00:00
|
|
|
required
|
2019-07-17 09:33:59 +00:00
|
|
|
/>
|
2018-07-06 18:15:15 +00:00
|
|
|
<input
|
2018-07-12 19:06:17 +00:00
|
|
|
v-model="inputPassword"
|
2018-07-06 18:15:15 +00:00
|
|
|
type="password"
|
|
|
|
class="input"
|
|
|
|
name="key"
|
|
|
|
placeholder="Password (optional)"
|
|
|
|
pattern="[^\s]+"
|
|
|
|
maxlength="200"
|
|
|
|
title="The channel password may not contain spaces"
|
2019-02-25 05:38:13 +00:00
|
|
|
autocomplete="new-password"
|
2019-07-17 09:33:59 +00:00
|
|
|
/>
|
|
|
|
<button type="submit" class="btn btn-small">Join</button>
|
2018-07-06 18:15:15 +00:00
|
|
|
</form>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2018-07-12 19:06:17 +00:00
|
|
|
import socket from "../js/socket";
|
|
|
|
|
2018-07-06 18:15:15 +00:00
|
|
|
export default {
|
|
|
|
name: "JoinChannel",
|
2018-07-12 19:06:17 +00:00
|
|
|
directives: {
|
|
|
|
focus: {
|
|
|
|
inserted(el) {
|
|
|
|
el.focus();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2018-07-06 18:15:15 +00:00
|
|
|
props: {
|
2018-07-23 09:14:35 +00:00
|
|
|
network: Object,
|
2018-07-06 18:15:15 +00:00
|
|
|
channel: Object,
|
|
|
|
},
|
2018-07-12 19:06:17 +00:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
inputChannel: "",
|
|
|
|
inputPassword: "",
|
|
|
|
};
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
onSubmit() {
|
2019-11-03 14:59:43 +00:00
|
|
|
const existingChannel = this.$store.getters.findChannelOnCurrentNetwork(this.channel);
|
2018-07-12 19:06:17 +00:00
|
|
|
|
|
|
|
if (existingChannel) {
|
2019-10-25 21:37:40 +00:00
|
|
|
this.$root.switchToChannel(existingChannel);
|
2018-07-12 19:06:17 +00:00
|
|
|
} else {
|
2019-10-04 16:56:18 +00:00
|
|
|
const chanTypes = this.network.serverOptions.CHANTYPES;
|
|
|
|
let channel = this.inputChannel;
|
|
|
|
|
|
|
|
if (chanTypes && chanTypes.length > 0 && !chanTypes.includes(channel[0])) {
|
|
|
|
channel = chanTypes[0] + channel;
|
|
|
|
}
|
|
|
|
|
2018-07-12 19:06:17 +00:00
|
|
|
socket.emit("input", {
|
2019-10-04 16:56:18 +00:00
|
|
|
text: `/join ${channel} ${this.inputPassword}`,
|
2018-07-12 19:06:17 +00:00
|
|
|
target: this.channel.id,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
this.inputChannel = "";
|
|
|
|
this.inputPassword = "";
|
|
|
|
this.$emit("toggleJoinChannel");
|
|
|
|
},
|
|
|
|
},
|
2018-07-06 18:15:15 +00:00
|
|
|
};
|
|
|
|
</script>
|