Preferences.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <template>
  2. <div class="content preferences-tab">
  3. <p class="control is-expanded checkbox-control">
  4. <input type="checkbox" id="nightmode" v-model="localNightmode" />
  5. <label for="nightmode">
  6. <span></span>
  7. <p>Use nightmode</p>
  8. </label>
  9. </p>
  10. <p class="control is-expanded checkbox-control">
  11. <input
  12. type="checkbox"
  13. id="autoSkipDisliked"
  14. v-model="localAutoSkipDisliked"
  15. />
  16. <label for="autoSkipDisliked">
  17. <span></span>
  18. <p>Automatically vote to skip disliked songs</p>
  19. </label>
  20. </p>
  21. <button class="button is-primary save-changes" @click="saveChanges()">
  22. Save changes
  23. </button>
  24. </div>
  25. </template>
  26. <script>
  27. import { mapState, mapActions } from "vuex";
  28. export default {
  29. data() {
  30. return {
  31. localNightmode: false,
  32. localAutoSkipDisliked: false
  33. };
  34. },
  35. computed: mapState({
  36. nightmode: state => state.user.preferences.nightmode,
  37. autoSkipDisliked: state => state.user.preferences.autoSkipDisliked
  38. }),
  39. mounted() {
  40. this.localNightmode = this.nightmode;
  41. this.localAutoSkipDisliked = this.autoSkipDisliked;
  42. },
  43. methods: {
  44. saveChanges() {
  45. if (this.localNightmode !== this.nightmode)
  46. this.changeNightmodeLocal();
  47. if (this.localAutoSkipDisliked !== this.autoSkipDisliked)
  48. this.changeAutoSkipDislikedLocal();
  49. },
  50. changeNightmodeLocal() {
  51. localStorage.setItem("nightmode", this.localNightmode);
  52. this.changeNightmode(this.localNightmode);
  53. },
  54. changeAutoSkipDislikedLocal() {
  55. localStorage.setItem(
  56. "autoSkipDisliked",
  57. this.localAutoSkipDisliked
  58. );
  59. this.changeAutoSkipDisliked(this.localAutoSkipDisliked);
  60. },
  61. ...mapActions("user/preferences", [
  62. "changeNightmode",
  63. "changeAutoSkipDisliked"
  64. ])
  65. }
  66. };
  67. </script>
  68. <style lang="scss" scoped>
  69. @import "../../../styles/global.scss";
  70. .checkbox-control {
  71. input[type="checkbox"] {
  72. opacity: 0;
  73. position: absolute;
  74. }
  75. label {
  76. display: flex;
  77. flex-direction: row;
  78. align-items: center;
  79. span {
  80. cursor: pointer;
  81. width: 24px;
  82. height: 24px;
  83. background-color: $white;
  84. display: inline-block;
  85. border: 1px solid $dark-grey-2;
  86. position: relative;
  87. border-radius: 3px;
  88. }
  89. p {
  90. margin-left: 10px;
  91. }
  92. }
  93. input[type="checkbox"]:checked + label span::after {
  94. content: "";
  95. width: 18px;
  96. height: 18px;
  97. left: 2px;
  98. top: 2px;
  99. border-radius: 3px;
  100. background-color: $musare-blue;
  101. position: absolute;
  102. }
  103. }
  104. </style>