MenuLogin.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <template>
  2. <div class="row">
  3. <div class="col-12 col-md-8 offset-sm-2 col-lg-6 offset-md-3">
  4. <div class="form-group">
  5. <input
  6. type="text"
  7. placeholder="Username"
  8. autocomplete="off"
  9. class="form-control"
  10. :value="username"
  11. @input="usernameInput = $event.target.value"
  12. :disabled="
  13. connectionStatus.status === $types('request').REQUESTED ||
  14. isConnected
  15. "
  16. @keydown.enter="connect(usernameInput)"
  17. />
  18. <button
  19. class="btn btn-primary form-control"
  20. @click.prevent="connectButtonAction"
  21. :disabled="connectionStatus.status === $types('request').REQUESTED"
  22. >
  23. {{ connectButtonText }}
  24. </button>
  25. <p>{{ connectionStatus.text }} {{ isGameRunning | getRunningText }}</p>
  26. <button
  27. class="btn btn-primary form-control"
  28. :disabled="!isConnected || isGameRunning"
  29. @click.prevent="$emit('enter-online', username)"
  30. >
  31. Online Game
  32. </button>
  33. <button
  34. class="btn btn-primary form-control"
  35. @click.prevent="$emit('enter-local')"
  36. :disabled="isGameRunning"
  37. >
  38. Local Game
  39. </button>
  40. </div>
  41. </div>
  42. </div>
  43. </template>
  44. <script>
  45. import { mapActions, mapGetters } from 'vuex';
  46. export default {
  47. data() {
  48. return {
  49. usernameInput: this.username
  50. };
  51. },
  52. methods: {
  53. ...mapActions({
  54. connect: 'menu/connect',
  55. disconnect: 'disconnect'
  56. }),
  57. connectButtonAction() {
  58. if (this.isConnected) {
  59. this.disconnect();
  60. } else {
  61. this.connect(this.usernameInput);
  62. }
  63. }
  64. },
  65. computed: {
  66. ...mapGetters({
  67. isGameRunning: 'isGameRunning',
  68. username: 'username',
  69. isConnected: 'isConnected',
  70. connectionStatus: 'menu/connectionStatus'
  71. }),
  72. connectButtonText() {
  73. if (this.isConnected === true) {
  74. return 'Disconnect';
  75. } else if (
  76. this.connectionStatus.status === this.$types('request').REQUESTED
  77. ) {
  78. return 'Connecting';
  79. } else {
  80. return 'Connect';
  81. }
  82. }
  83. },
  84. filters: {
  85. getRunningText(isRunning) {
  86. if (isRunning === true) {
  87. return '(Game running)';
  88. } else {
  89. return '';
  90. }
  91. }
  92. }
  93. };
  94. </script>
  95. <style lang="scss" scoped>
  96. // @import '../style/style.scss';
  97. </style>