aThemeSwitch.html 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. {{define "component/themeSwitchTemplate"}}
  2. <template>
  3. <a-menu :theme="themeSwitcher.currentTheme" mode="inline" selected-keys="">
  4. <a-sub-menu>
  5. <span slot="title">
  6. <a-icon type="bulb" :theme="themeSwitcher.isDarkTheme ? 'filled' : 'outlined'"></a-icon>
  7. <span>{{ i18n "menu.theme" }}</span>
  8. </span>
  9. <a-menu-item id="change-theme" class="ant-menu-theme-switch" @mousedown="themeSwitcher.animationsOff()">
  10. <span>{{ i18n "menu.dark" }}</span>
  11. <a-switch style="margin-left: 2px;" size="small" :default-checked="themeSwitcher.isDarkTheme"
  12. @change="themeSwitcher.toggleTheme()"></a-switch>
  13. </a-menu-item>
  14. <a-menu-item id="change-theme-ultra" v-if="themeSwitcher.isDarkTheme" class="ant-menu-theme-switch"
  15. @mousedown="themeSwitcher.animationsOffUltra()">
  16. <span>{{ i18n "menu.ultraDark" }}</span>
  17. <a-checkbox style="margin-left: 2px;" :checked="themeSwitcher.isUltra"
  18. @click="themeSwitcher.toggleUltra()"></a-checkbox>
  19. </a-menu-item>
  20. </a-sub-menu>
  21. </a-menu>
  22. </template>
  23. {{end}}
  24. {{define "component/themeSwitchTemplateLogin"}}
  25. <template>
  26. <a-space direction="vertical" :size="10" :style="{ width: '100%' }">
  27. <a-space direction="horizontal" size="small">
  28. <a-switch size="small" :default-checked="themeSwitcher.isDarkTheme" @change="themeSwitcher.toggleTheme()"></a-switch>
  29. <span>{{ i18n "menu.dark" }}</span>
  30. </a-space>
  31. <a-space v-if="themeSwitcher.isDarkTheme" direction="horizontal" size="small">
  32. <a-checkbox :checked="themeSwitcher.isUltra" @click="themeSwitcher.toggleUltra()"></a-checkbox>
  33. <span>{{ i18n "menu.ultraDark" }}</span>
  34. </a-space>
  35. </a-space>
  36. </template>
  37. {{end}}
  38. {{define "component/aThemeSwitch"}}
  39. <script>
  40. function createThemeSwitcher() {
  41. const isDarkTheme = localStorage.getItem('dark-mode') === 'true';
  42. const isUltra = localStorage.getItem('isUltraDarkThemeEnabled') === 'true';
  43. if (isUltra) {
  44. document.documentElement.setAttribute('data-theme', 'ultra-dark');
  45. }
  46. const theme = isDarkTheme ? 'dark' : 'light';
  47. document.querySelector('body').setAttribute('class', theme);
  48. return {
  49. animationsOff() {
  50. document.documentElement.setAttribute('data-theme-animations', 'off');
  51. const themeAnimations = document.querySelector('#change-theme');
  52. themeAnimations.addEventListener('mouseleave', () => {
  53. document.documentElement.removeAttribute('data-theme-animations');
  54. });
  55. themeAnimations.addEventListener('touchend', () => {
  56. document.documentElement.removeAttribute('data-theme-animations');
  57. });
  58. },
  59. animationsOffUltra() {
  60. document.documentElement.setAttribute('data-theme-animations', 'off');
  61. const themeAnimationsUltra = document.querySelector('#change-theme-ultra');
  62. themeAnimationsUltra.addEventListener('mouseleave', () => {
  63. document.documentElement.removeAttribute('data-theme-animations');
  64. });
  65. themeAnimationsUltra.addEventListener('touchend', () => {
  66. document.documentElement.removeAttribute('data-theme-animations');
  67. });
  68. },
  69. isDarkTheme,
  70. isUltra,
  71. get currentTheme() {
  72. return this.isDarkTheme ? 'dark' : 'light';
  73. },
  74. toggleTheme() {
  75. this.isDarkTheme = !this.isDarkTheme;
  76. localStorage.setItem('dark-mode', this.isDarkTheme);
  77. document.querySelector('body').setAttribute('class', this.isDarkTheme ? 'dark' : 'light');
  78. document.getElementById('message').className = themeSwitcher.currentTheme;
  79. },
  80. toggleUltra() {
  81. this.isUltra = !this.isUltra;
  82. if (this.isUltra) {
  83. document.documentElement.setAttribute('data-theme', 'ultra-dark');
  84. } else {
  85. document.documentElement.removeAttribute('data-theme');
  86. }
  87. localStorage.setItem('isUltraDarkThemeEnabled', this.isUltra.toString());
  88. }
  89. };
  90. }
  91. const themeSwitcher = createThemeSwitcher();
  92. Vue.component('a-theme-switch', {
  93. template: `{{template "component/themeSwitchTemplate"}}`,
  94. data: () => ({
  95. themeSwitcher
  96. }),
  97. mounted() {
  98. this.$message.config({
  99. getContainer: () => document.getElementById('message')
  100. });
  101. document.getElementById('message').className = themeSwitcher.currentTheme;
  102. }
  103. });
  104. Vue.component('a-theme-switch-login', {
  105. template: `{{template "component/themeSwitchTemplateLogin"}}`,
  106. data: () => ({
  107. themeSwitcher
  108. }),
  109. mounted() {
  110. this.$message.config({
  111. getContainer: () => document.getElementById('message')
  112. });
  113. document.getElementById('message').className = themeSwitcher.currentTheme;
  114. }
  115. });
  116. </script>
  117. {{end}}