index.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. <template>
  2. <div>
  3. <page-metadata title="Settings" />
  4. <main-header />
  5. <div class="container">
  6. <h1 id="page-title">Settings</h1>
  7. <div id="sidebar-with-content">
  8. <div class="nav-links">
  9. <a
  10. :class="{ active: tab === 'profile' }"
  11. @click="showTab('profile')"
  12. >
  13. Profile
  14. </a>
  15. <a
  16. :class="{ active: tab === 'account' }"
  17. @click="showTab('account')"
  18. >
  19. Account
  20. </a>
  21. <a
  22. :class="{ active: tab === 'security' }"
  23. @click="showTab('security')"
  24. >
  25. Security
  26. </a>
  27. <a
  28. :class="{ active: tab === 'preferences' }"
  29. @click="showTab('preferences')"
  30. >
  31. Preferences
  32. </a>
  33. </div>
  34. <profile-settings v-if="tab === 'profile'"></profile-settings>
  35. <account-settings v-if="tab === 'account'"></account-settings>
  36. <security-settings
  37. v-if="tab === 'security'"
  38. ></security-settings>
  39. <preferences-settings
  40. v-if="tab === 'preferences'"
  41. ></preferences-settings>
  42. </div>
  43. </div>
  44. <main-footer />
  45. <remove-account v-if="modals.removeAccount" />
  46. </div>
  47. </template>
  48. <script>
  49. import { mapActions, mapGetters, mapState } from "vuex";
  50. import { defineAsyncComponent } from "vue";
  51. import Toast from "toasters";
  52. import ws from "@/ws";
  53. import TabQueryHandler from "@/mixins/TabQueryHandler.vue";
  54. export default {
  55. components: {
  56. SecuritySettings: defineAsyncComponent(() =>
  57. import("./Tabs/Security.vue")
  58. ),
  59. AccountSettings: defineAsyncComponent(() =>
  60. import("./Tabs/Account.vue")
  61. ),
  62. ProfileSettings: defineAsyncComponent(() =>
  63. import("./Tabs/Profile.vue")
  64. ),
  65. PreferencesSettings: defineAsyncComponent(() =>
  66. import("./Tabs/Preferences.vue")
  67. ),
  68. RemoveAccount: defineAsyncComponent(() =>
  69. import("@/components/modals/RemoveAccount.vue")
  70. )
  71. },
  72. mixins: [TabQueryHandler],
  73. data() {
  74. return {
  75. tab: ""
  76. };
  77. },
  78. computed: {
  79. ...mapGetters({
  80. socket: "websockets/getSocket"
  81. }),
  82. ...mapState("modalVisibility", {
  83. modals: state => state.modals
  84. })
  85. },
  86. mounted() {
  87. if (
  88. this.$route.query.tab === "profile" ||
  89. this.$route.query.tab === "security" ||
  90. this.$route.query.tab === "account" ||
  91. this.$route.query.tab === "preferences"
  92. )
  93. this.tab = this.$route.query.tab;
  94. else this.tab = "profile";
  95. this.localNightmode = this.nightmode;
  96. ws.onConnect(this.init);
  97. this.socket.on("event:user.password.linked", () =>
  98. this.updateOriginalUser({
  99. property: "password",
  100. value: true
  101. })
  102. );
  103. this.socket.on("event:user.password.unlinked", () =>
  104. this.updateOriginalUser({
  105. property: "password",
  106. value: false
  107. })
  108. );
  109. this.socket.on("event:user.github.linked", () =>
  110. this.updateOriginalUser({
  111. property: "github",
  112. value: true
  113. })
  114. );
  115. this.socket.on("event:user.github.unlinked", () =>
  116. this.updateOriginalUser({
  117. property: "github",
  118. value: false
  119. })
  120. );
  121. },
  122. methods: {
  123. init() {
  124. this.socket.dispatch("users.findBySession", res => {
  125. if (res.status === "success") this.setUser(res.data.user);
  126. else new Toast("You're not currently signed in.");
  127. });
  128. },
  129. ...mapActions("settings", ["updateOriginalUser", "setUser"])
  130. }
  131. };
  132. </script>
  133. <style lang="less" scoped>
  134. .night-mode {
  135. .container .content {
  136. box-shadow: 0 !important;
  137. }
  138. }
  139. :deep(.character-counter) {
  140. display: flex;
  141. justify-content: flex-end;
  142. height: 0;
  143. }
  144. .container {
  145. margin-top: 32px;
  146. padding: 24px;
  147. :deep(.row) {
  148. *:not(:last-child) {
  149. margin-right: 5px;
  150. }
  151. }
  152. .content {
  153. background-color: var(--white);
  154. padding: 30px 50px;
  155. border-radius: @border-radius;
  156. box-shadow: @box-shadow;
  157. }
  158. #sidebar-with-content {
  159. display: flex;
  160. flex-direction: column;
  161. }
  162. @media only screen and (min-width: 700px) {
  163. #sidebar-with-content {
  164. width: 962px;
  165. max-width: 100%;
  166. margin: 0 auto;
  167. flex-direction: row;
  168. .nav-links {
  169. margin-left: 0;
  170. margin-right: 64px;
  171. }
  172. .content {
  173. width: 600px;
  174. margin-top: 0px !important;
  175. }
  176. }
  177. }
  178. .nav-links {
  179. width: 250px;
  180. margin-left: auto;
  181. margin-right: auto;
  182. a {
  183. outline: none;
  184. border: none;
  185. box-shadow: 0;
  186. color: var(--primary-color);
  187. font-size: 22px;
  188. line-height: 26px;
  189. padding: 7px 0 7px 12px;
  190. width: 100%;
  191. text-align: left;
  192. cursor: pointer;
  193. border-radius: @border-radius;
  194. background-color: transparent;
  195. display: inline-block;
  196. &.active {
  197. color: var(--white);
  198. background-color: var(--primary-color);
  199. }
  200. }
  201. }
  202. :deep(.content) {
  203. margin: 24px 0;
  204. height: fit-content;
  205. .control:not(:first-of-type) {
  206. margin: 10px 0;
  207. }
  208. label {
  209. font-size: 14px;
  210. color: var(--dark-grey-2);
  211. }
  212. textarea {
  213. height: 96px;
  214. }
  215. button {
  216. width: 100%;
  217. margin-top: 30px;
  218. }
  219. }
  220. }
  221. </style>