aSidebar.html 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. {{define "component/sidebar/content"}}
  2. <template>
  3. <div class="ant-sidebar">
  4. <a-layout-sider :theme="themeSwitcher.currentTheme" collapsible :collapsed="collapsed"
  5. @collapse="(isCollapsed, type) => collapseHandle(isCollapsed, type)" breakpoint="md">
  6. <a-theme-switch></a-theme-switch>
  7. <a-menu :theme="themeSwitcher.currentTheme" mode="inline" :selected-keys="activeTab"
  8. @click="({key}) => openLink(key)">
  9. <a-menu-item v-for="tab in tabs" :key="tab.key">
  10. <a-icon :type="tab.icon"></a-icon>
  11. <span v-text="tab.title"></span>
  12. </a-menu-item>
  13. </a-menu>
  14. </a-layout-sider>
  15. <a-drawer placement="left" :closable="false" @close="closeDrawer" :visible="visible"
  16. :wrap-class-name="themeSwitcher.currentTheme" :wrap-style="{ padding: 0 }" :style="{ height: '100%' }">
  17. <div class="drawer-handle" @click="toggleDrawer" slot="handle">
  18. <a-icon :type="visible ? 'close' : 'menu-fold'"></a-icon>
  19. </div>
  20. <a-theme-switch></a-theme-switch>
  21. <a-menu :theme="themeSwitcher.currentTheme" mode="inline" :selected-keys="activeTab"
  22. @click="({key}) => openLink(key)">
  23. <a-menu-item v-for="tab in tabs" :key="tab.key">
  24. <a-icon :type="tab.icon"></a-icon>
  25. <span v-text="tab.title"></span>
  26. </a-menu-item>
  27. </a-menu>
  28. </a-drawer>
  29. </div>
  30. </template>
  31. {{end}}
  32. {{define "component/aSidebar"}}
  33. <style>
  34. .ant-sidebar>.ant-layout-sider {
  35. height: 100%;
  36. }
  37. </style>
  38. <script>
  39. const SIDEBAR_COLLAPSED_KEY = "isSidebarCollapsed"
  40. Vue.component('a-sidebar', {
  41. data() {
  42. return {
  43. tabs: [
  44. {
  45. key: 'panel/',
  46. icon: 'dashboard',
  47. title: '{{ i18n "menu.dashboard"}}'
  48. },
  49. {
  50. key: 'panel/inbounds',
  51. icon: 'user',
  52. title: '{{ i18n "menu.inbounds"}}'
  53. },
  54. {
  55. key: 'panel/settings',
  56. icon: 'setting',
  57. title: '{{ i18n "menu.settings"}}'
  58. },
  59. {
  60. key: 'panel/xray',
  61. icon: 'tool',
  62. title: '{{ i18n "menu.xray"}}'
  63. },
  64. {
  65. key: 'logout/',
  66. icon: 'logout',
  67. title: '{{ i18n "menu.logout"}}'
  68. },
  69. ],
  70. activeTab: [
  71. '{{ .request_uri }}'
  72. ],
  73. visible: false,
  74. collapsed: JSON.parse(localStorage.getItem(SIDEBAR_COLLAPSED_KEY)),
  75. }
  76. },
  77. methods: {
  78. openLink(key) {
  79. return key.startsWith('http') ?
  80. window.open(`{{ .base_path }}${key}`) :
  81. location.href = `{{ .base_path }}${key}`
  82. },
  83. closeDrawer() {
  84. this.visible = false;
  85. },
  86. toggleDrawer() {
  87. this.visible = !this.visible;
  88. },
  89. collapseHandle(collapsed, type) {
  90. if (type === "clickTrigger") {
  91. localStorage.setItem(SIDEBAR_COLLAPSED_KEY, collapsed);
  92. this.collapsed = JSON.parse(localStorage.getItem(SIDEBAR_COLLAPSED_KEY));
  93. }
  94. }
  95. },
  96. template: `{{template "component/sidebar/content"}}`,
  97. });
  98. </script>
  99. {{end}}