AppMenu.vue 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <template>
  2. <b-container>
  3. <b-row class="justify-content-center mb-4 pt-3">
  4. <b-col lg="8" md="7" sm="8" xl="8">
  5. <a href="#">
  6. <b-img class="titleImg" :src="require('../assets/Title.png')"></b-img>
  7. </a>
  8. </b-col>
  9. </b-row>
  10. <b-row class="justify-content-center mt-3 mb-5">
  11. <b-col lg="8" md="7" sm="8" xl="8">
  12. <div class="backgroundMenu">
  13. <keep-alive include="menu-login">
  14. <component
  15. :is="menuPage"
  16. @enter-online="enterOnline"
  17. @enter-game-creation="enterGameCreation"
  18. @enter-local="enterLocal"
  19. @back="menuPage = previousPage.pop()"
  20. @home="
  21. menuPage = 'menu-login';
  22. previousPage = [];
  23. "
  24. :username="username"
  25. v-on="$listeners"
  26. ></component>
  27. </keep-alive>
  28. </div>
  29. </b-col>
  30. </b-row>
  31. </b-container>
  32. </template>
  33. <script>
  34. import MenuLogin from './login/MenuLogin';
  35. import MenuOnlineRoom from './online-room/MenuOnlineRoom';
  36. import MenuGameCreation from './game-creation/MenuGameCreation';
  37. import { mapGetters } from 'vuex';
  38. export default {
  39. data() {
  40. return {
  41. previousPage: [],
  42. menuPage: 'menu-login',
  43. username: ''
  44. };
  45. },
  46. components: {
  47. MenuLogin,
  48. MenuOnlineRoom,
  49. MenuGameCreation
  50. },
  51. methods: {
  52. enterLocal() {
  53. alert('Not implemented yet, give us time ! :)');
  54. },
  55. enterOnline(username) {
  56. this.previousPage.push(this.menuPage);
  57. this.username = username;
  58. this.menuPage = 'menu-online-room';
  59. },
  60. enterGameCreation() {
  61. this.previousPage.push(this.menuPage);
  62. this.menuPage = 'menu-game-creation';
  63. }
  64. },
  65. computed: {
  66. ...mapGetters({ isGameRunning: 'isGameRunning' })
  67. },
  68. watch: {
  69. isGameRunning(value) {
  70. if (value === true) {
  71. this.menuPage = 'menu-login';
  72. this.previousPage = [];
  73. }
  74. }
  75. }
  76. };
  77. </script>
  78. <style scoped>
  79. .titleImg {
  80. max-width: 100%;
  81. }
  82. .backgroundMenu {
  83. /* The image used */
  84. background-image: url('../assets/parchemin.png');
  85. /* Full height */
  86. height: 100%;
  87. /* Center and scale the image nicely */
  88. background-position: center;
  89. background-repeat: no-repeat;
  90. background-size: cover;
  91. }
  92. </style>