src_store_store.js.html 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Source: src/store/store.js | Source: src/store/store.js</title>
  6. <script src="scripts/prettify/prettify.js"> </script>
  7. <script src="scripts/prettify/lang-css.js"> </script>
  8. <!--[if lt IE 9]>
  9. <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
  10. <![endif]-->
  11. <link type="text/css" rel="stylesheet" href="styles/bootstrap.min.css">
  12. <link type="text/css" rel="stylesheet" href="styles/prettify-jsdoc.css">
  13. <link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
  14. <link type="text/css" rel="stylesheet" href="styles/tui-doc.css">
  15. </head>
  16. <body>
  17. <nav class="lnb" id="lnb">
  18. <div class="logo" style="">
  19. <img src="img/toast-ui.png" width="100%" height="100%">
  20. </div>
  21. <div class="title">
  22. <h1><a href="index.html" class="link">Source: src/store/store.js</a></h1>
  23. </div>
  24. <div class="search-container" id="search-container">
  25. <input type="text" placeholder="Search">
  26. <ul></ul>
  27. </div>
  28. <div class="lnb-api hidden"><h3>Modules</h3><ul><li><a href="module-GameStore%2520-%2520vuex%2520store%2520part%2520with%2520game%2520data.html">GameStore - vuex store part with game data</a><button type="button" class="hidden toggle-subnav btn btn-link"> <span class="glyphicon glyphicon-plus"></span></button><div class="hidden" id="module:GameStore - vuex store part with game data_sub"></div></li></ul></div><div class="lnb-api hidden"><h3>Namespaces</h3><ul><li><a href="constants.html">constants</a><button type="button" class="hidden toggle-subnav btn btn-link"> <span class="glyphicon glyphicon-plus"></span></button><div class="hidden" id="constants_sub"><div class="member-type">Members</div><ul class="inner"><li><a href="constants.html#.exports.JOJO">exports.JOJO</a></li><li><a href="constants.html#.POS_PILE">POS_PILE</a></li></ul></div></li></ul></div><div class="lnb-api hidden"><h3>Global</h3><ul><li class="hidden"><a href="global.html#Ability">Ability</a></li><li class="hidden"><a href="global.html#AbilityHook">AbilityHook</a></li><li class="hidden"><a href="global.html#AdvRule">AdvRule</a></li><li class="hidden"><a href="global.html#BattleTile">BattleTile</a></li><li class="hidden"><a href="global.html#Color">Color</a></li><li class="hidden"><a href="global.html#DeckMode">DeckMode</a></li><li class="hidden"><a href="global.html#Faction">Faction</a></li><li class="hidden"><a href="global.html#GameGlobalState">GameGlobalState</a></li><li class="hidden"><a href="global.html#GameStateEnum">GameStateEnum</a></li><li><a href="global.html#Getters">Getters</a></li><li class="hidden"><a href="global.html#HeroAction">HeroAction</a></li><li class="hidden"><a href="global.html#HeroCard">HeroCard</a></li><li class="hidden"><a href="global.html#HeroInGame">HeroInGame</a></li><li class="hidden"><a href="global.html#HeroPosition">HeroPosition</a></li><li class="hidden"><a href="global.html#PlayerAction">PlayerAction</a></li><li class="hidden"><a href="global.html#PlayerGameState">PlayerGameState</a></li><li class="hidden"><a href="global.html#Popularity">Popularity</a></li><li class="hidden"><a href="global.html#StoreData">StoreData</a></li></ul></div>
  29. </nav>
  30. <div id="resizer"></div>
  31. <div class="main" id="main">
  32. <section>
  33. <article>
  34. <pre class="prettyprint source linenums"><code>'use strict';
  35. import Vue from 'vue';
  36. import Vuex from 'vuex';
  37. Vue.use(Vuex);
  38. import menu from './menu/menu';
  39. import game from './game/game';
  40. import { socketService } from '../main';
  41. const state = {
  42. username: '',
  43. isConnected: false,
  44. gameId: -1,
  45. isGameRunning: false,
  46. messages: []
  47. };
  48. /**
  49. * The module 'getters' object.
  50. *
  51. * @name Getters
  52. * @type {object}
  53. * @getter {Array&lt;string>} messages=messages Returns the messages for chat.
  54. * @getter {number} gameId=gameId Returns the id of current online game playing (-1 if no online game).
  55. * @getter {boolean} isGameRunning=isGameRunning Returns true if a game is running (online or local).
  56. */
  57. const getters = {
  58. messages(state) {
  59. return state.messages;
  60. },
  61. gameId(state) {
  62. return state.gameId;
  63. },
  64. isGameRunning(state) {
  65. return state.isGameRunning;
  66. },
  67. username(state) {
  68. return state.username;
  69. },
  70. isConnected(state) {
  71. return state.isConnected;
  72. }
  73. };
  74. const mutations = {
  75. ADD_MESSAGE: (state, payload) => {
  76. state.messages.push(payload);
  77. },
  78. SET_GAME_ID: (state, payload) => {
  79. state.gameId = payload;
  80. },
  81. SET_IS_GAME_RUNNING: (state, payload) => {
  82. state.isGameRunning = payload;
  83. },
  84. SET_USERNAME: (state, payload) => {
  85. state.username = payload;
  86. },
  87. SET_IS_CONNECTED: (state, payload) => {
  88. state.isConnected = payload;
  89. }
  90. };
  91. const actions = {
  92. addMessageToQueue: ({ commit }, payload) => {
  93. commit('ADD_MESSAGE', payload);
  94. },
  95. stopGame: ({ commit, rootState }) => {
  96. socketService.leaveGame(rootState.username);
  97. commit('SET_IS_GAME_RUNNING', false);
  98. localStorage.removeItem('gameId');
  99. },
  100. disconnect: ({ commit }) => {
  101. socketService.disconnect();
  102. commit('SET_GAME_ID', -1);
  103. commit('SET_IS_GAME_RUNNING', false);
  104. commit('SET_USERNAME', '');
  105. commit('SET_IS_CONNECTED', false);
  106. commit('menu/RESET_ALL_STATUS');
  107. localStorage.removeItem('username');
  108. localStorage.removeItem('gameId');
  109. }
  110. };
  111. export const store = new Vuex.Store({
  112. state,
  113. getters,
  114. mutations,
  115. actions,
  116. modules: {
  117. menu,
  118. game
  119. }
  120. });
  121. </code></pre>
  122. </article>
  123. </section>
  124. </div>
  125. <footer>
  126. <img class="logo" src="img/toast-ui.png" style="">
  127. <div class="footer-text">NHN Entertainment. Frontend Development Lab</div>
  128. </footer>
  129. <script>prettyPrint();</script>
  130. <script src="scripts/jquery.min.js"></script>
  131. <script src="scripts/tui-doc.js"></script>
  132. <script src="scripts/linenumber.js"></script>
  133. <script>
  134. var id = '_sub'.replace(/"/g, '_');
  135. var selectedApi = document.getElementById(id); // do not use jquery selector
  136. var $selectedApi = $(selectedApi);
  137. $selectedApi.removeClass('hidden');
  138. $selectedApi.parent().find('.glyphicon').removeClass('glyphicon-plus').addClass('glyphicon-minus');
  139. showLnbApi();
  140. </script>
  141. </body>
  142. </html>