1
0

common_sider.html 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {{define "menuItems"}}
  2. <a-menu-item key="{{ .base_path }}panel/">
  3. <a-icon type="dashboard"></a-icon>
  4. <span>{{ i18n "menu.dashboard"}}</span>
  5. </a-menu-item>
  6. <a-menu-item key="{{ .base_path }}panel/inbounds">
  7. <a-icon type="user"></a-icon>
  8. <span>{{ i18n "menu.inbounds"}}</span>
  9. </a-menu-item>
  10. <a-menu-item key="{{ .base_path }}panel/settings">
  11. <a-icon type="setting"></a-icon>
  12. <span>{{ i18n "menu.settings"}}</span>
  13. </a-menu-item>
  14. <a-menu-item key="{{ .base_path }}panel/xray">
  15. <a-icon type="tool"></a-icon>
  16. <span>{{ i18n "menu.xray"}}</span>
  17. </a-menu-item>
  18. <a-menu-item key="{{ .base_path }}logout">
  19. <a-icon type="logout"></a-icon>
  20. <span>{{ i18n "menu.logout"}}</span>
  21. </a-menu-item>
  22. {{end}}
  23. {{define "commonSider"}}
  24. <a-layout-sider :theme="themeSwitcher.currentTheme" id="sider" collapsible breakpoint="md">
  25. <a-theme-switch></a-theme-switch>
  26. <a-menu :theme="themeSwitcher.currentTheme" mode="inline" :selected-keys="['{{ .request_uri }}']" @click="({key}) => key.startsWith('http') ? window.open(key) : location.href = key">
  27. {{template "menuItems" .}}
  28. </a-menu>
  29. </a-layout-sider>
  30. <a-drawer id="sider-drawer" placement="left" :closable="false" @close="siderDrawer.close()" :visible="siderDrawer.visible" :wrap-class-name="themeSwitcher.currentTheme" :wrap-style="{ padding: 0 }">
  31. <div class="drawer-handle" @click="siderDrawer.change()" slot="handle">
  32. <a-icon :type="siderDrawer.visible ? 'close' : 'menu-fold'"></a-icon>
  33. </div>
  34. <a-theme-switch></a-theme-switch>
  35. <a-menu :theme="themeSwitcher.currentTheme" mode="inline" :selected-keys="['{{ .request_uri }}']" @click="({key}) => key.startsWith('http') ? window.open(key) : location.href = key">
  36. {{template "menuItems" .}}
  37. </a-menu>
  38. </a-drawer>
  39. <script>
  40. const siderDrawer = {
  41. visible: false,
  42. show() {
  43. this.visible = true;
  44. },
  45. close() {
  46. this.visible = false;
  47. },
  48. change() {
  49. this.visible = !this.visible;
  50. },
  51. };
  52. </script>
  53. {{end}}