浏览代码

feat: 播放器样式调整
1. 侧边栏样式调整

kindring 3 月之前
父节点
当前提交
6f1d03b6d6
共有 4 个文件被更改,包括 133 次插入111 次删除
  1. 9 1
      src/assets/base.css
  2. 1 1
      src/common/db/db_music.ts
  3. 123 85
      src/components/music/musicIndex.vue
  4. 0 24
      src/style.css

+ 9 - 1
src/assets/base.css

@@ -1,4 +1,12 @@
-
+*{
+    margin: 0;
+    padding: 0;
+}
+button{
+    border: none;
+    outline: none;
+    cursor: pointer;
+}
 
 
 .drag{

+ 1 - 1
src/common/db/db_music.ts

@@ -236,7 +236,7 @@ export async function getScanConfig() : PromiseResult<MusicScanSetting[]>
 
     let [err, res] = await handle(
         db.select('id', 'name', 'path', 'scanSubDir', 'isFileRepeat')
-            .from<MusicScanSetting>(MusicTableName.music_scan_setting).withSchema(MusicTableName.music_scan_setting)
+            .from<MusicScanSetting>(MusicTableName.music_scan_setting)
     )
     if (err) {
         err = err as Error;

+ 123 - 85
src/components/music/musicIndex.vue

@@ -7,6 +7,7 @@ import message from "@/components/public/kui/message";
 import MusicSetting from "@/components/music/common/musicSetting.vue";
 import {fetchPlayList} from "@/apis/musicControl.ts";
 import {ErrorCode} from "@/types/apiTypes.ts";
+import {Tab, TabGroup, TabList, TabPanel, TabPanels} from "@headlessui/vue";
 
 defineComponent({
   name: "musicIndex"
@@ -21,59 +22,19 @@ defineProps({
 
 const searchText = ref('');
 
-const playList: Ref<PlayList[]> = ref<PlayList[]>([
-    {
-    id: 'default',
-    name: "喜爱的歌曲",
-    cover: "bg.jpg",
-    icon: "music",
-    description: "默认收藏夹",
-    createTime: 0,
-    lastPlayTime: 0,
-    playCount: 0,
-    trackCount: 0,
-    isPublic: true,
-    isSync: true,
-    isTagSearch: false,
-    isLike: false
-  },
-  {
-    id: 'history',
-    name: "最近播放",
-    cover: "bg.jpg",
-    icon: "music",
-    description: "默认收藏夹2",
-    createTime: 0,
-    lastPlayTime: 0,
-    playCount: 0,
-    trackCount: 0,
-    isPublic: true,
-    isSync: true,
-    isTagSearch: false,
-    isLike: false
-  },
-  {
-    id: 'local',
-    name: "本地目录",
-    cover: "bg.jpg",
-    icon: "music",
-    description: "默认收藏夹3",
-    createTime: 0,
-    lastPlayTime: 0,
-    playCount: 0,
-    trackCount: 0,
-    isPublic: true,
-    isSync: true,
-    isTagSearch: false,
-    isLike: false
-  },
-])
+const playList: Ref<PlayList[]> = ref<PlayList[]>([])
 
 const selectIndex = ref(0);
 
 const showPlayList = "showPlayList";
 const showSetting = "showSetting";
+const showScanList = "showScanList";
+
+const site_playList = "site-play-list";
+const site_scan_list = "site-scan-list";
+
 const musicViewShow = ref(showPlayList);
+const site_view = ref(site_playList);
 
 function changePlayList(index: number) {
   selectIndex.value = index;
@@ -122,21 +83,49 @@ function showMusicSetting()
           </div>
         </div>
 
-        <!--       主歌单 -->
-        <div class="play-list">
-          <div class="title">播放列表</div>
-          <div
-              v-for="(item, i) in playList"
-              :key="item.id"
-              :class="`list-item ${i == selectIndex?'select-item':''}` "
-              @click="changePlayList(i)"
-          >
-            <div class="icon">
-              <IconSvg :icon-name="item.icon" />
-            </div>
-            <span>{{item.name}}</span>
-          </div>
-        </div>
+          <TabGroup as="div" class="site-chunk play-list">
+            <TabList as="div" class="tab-head">
+              <Tab as="template" v-slot="{ selected }"  >
+                <button :class="`tab-head-item ${selected?'head-select':''}`">
+                  歌单列表
+                </button>
+              </Tab>
+              <Tab as="template" v-slot="{ selected }"  >
+                <button :class="`tab-head-item ${selected?'head-select':''}`">
+                  扫描结果
+                </button>
+              </Tab>
+            </TabList>
+            <TabPanels as="template">
+              <TabPanel as="div"  class="site-chunk site-chunk-content">
+                <div
+                    v-for="(item, i) in playList"
+                    :key="item.id"
+                    :class="`list-item ${i == selectIndex?'select-item':''}` "
+                    @click="changePlayList(i)"
+                >
+                  <div class="icon">
+                    <IconSvg :icon-name="item.icon" />
+                  </div>
+                  <span>{{item.name}}</span>
+                </div>
+              </TabPanel>
+              <TabPanel as="div"  class="site-chunk site-chunk-content">
+                <div
+                    v-for="(item, i) in playList"
+                    :key="item.id"
+                    :class="`list-item ${i == selectIndex?'select-item':''}` "
+                    @click="changePlayList(i)"
+                >
+                  <div class="icon">
+                    <IconSvg :icon-name="item.icon" />
+                  </div>
+                  <span>扫描{{item.name}}</span>
+                </div>
+              </TabPanel>
+            </TabPanels>
+          </TabGroup>
+
 
 <!--        设置-->
         <div class="setting-group">
@@ -242,14 +231,36 @@ function showMusicSetting()
   color: var(--color-text-money);
 }
 
+.setting-group{
+  width: calc(100% - 20px);
+  height: 40px;
+  display: flex;
+  justify-content: right;
+  align-items: center;
+  font-size: 1.5em;
+}
+.setting-group .icon:hover{
+  cursor: pointer;
+  color: var(--color-text-money);
+}
+
+</style>
 
-.play-list {
+<style>
+
+.site-chunk {
   width: 100%;
-  height: calc(100% - 140px);
   overflow-y: auto;
   padding-top: 10px;
+  position: relative;
+}
+.site-chunk-content {
+  height: calc(100% - 50px);
 }
-.play-list .title{
+.play-list {
+  height: calc(100% - 140px);
+}
+.site-chunk .title{
   width: 100%;
   height: 40px;
   line-height: 40px;
@@ -258,7 +269,48 @@ function showMusicSetting()
   border-bottom: 1px solid var(--color-border);
   box-sizing: border-box;
 }
-.play-list .list-item{
+.tab-head
+{
+  width: 100%;
+  height: 40px;
+  display: flex;
+  align-items: center;
+  box-sizing: border-box;
+  border-bottom: 1px solid var(--color-border);
+  box-sizing: border-box;
+  padding-left: 3px
+}
+.tab-head-item{
+  height: 100%;
+  padding: 3px 8px;
+  display: flex;
+  align-items: center;
+  justify-content: center;
+  color: var(--color-text);
+  flex-shrink: 0;
+  border-right: 1px solid var(--color-border);
+  box-sizing: border-box;
+  cursor: pointer;
+  transition: all 0.2s;
+  user-select: none;
+}
+.tab-head-item:hover{
+  color: var(--color-text-money);
+}
+.tab-head-item:first-child{
+  border-radius: 5px 0 0 0;
+}
+.tab-head-item:last-child{
+  border-radius: 0 5px 0 0;
+}
+.tab-head-item::selection {
+  background: transparent;
+}
+.tab-head-item.head-select{
+  color: var(--color-text-show);
+  background-color: var(--color-background-soft);
+}
+.site-chunk .list-item{
   width: 100%;
   height: 35px;
   line-height: 35px;
@@ -268,10 +320,10 @@ function showMusicSetting()
   position: relative;
   font-size: 0.9em;
 }
-.play-list .list-item:hover , .play-list .select-item{
+.site-chunk .list-item:hover , .site-chunk .select-item{
   background-color: var(--color-background-soft);
 }
-.list-item:hover::before ,.play-list .select-item::before{
+.list-item:hover::before ,.site-chunk .select-item::before{
   content: "";
   width: 5px;
   height: 25px;
@@ -280,7 +332,7 @@ function showMusicSetting()
   top: 5px;
   background-color: var(--color-text-money);
 }
-.play-list .list-item .icon{
+.site-chunk .list-item .icon{
   width: 30px;
   height: 30px;
   display: flex;
@@ -291,7 +343,7 @@ function showMusicSetting()
   flex-shrink: 0;
   font-size: 1.2em;
 }
-.play-list .list-item span{
+.site-chunk .list-item span{
   width: calc(100% - 40px);
   margin-left: 10px;
   height: 30px;
@@ -303,18 +355,4 @@ function showMusicSetting()
   color: var(--color-text);
   flex-shrink: 0;
 }
-
-.setting-group{
-  width: calc(100% - 20px);
-  height: 40px;
-  display: flex;
-  justify-content: right;
-  align-items: center;
-  font-size: 1.5em;
-}
-.setting-group .icon:hover{
-  cursor: pointer;
-  color: var(--color-text-money);
-}
-
-</style>
+</style>

+ 0 - 24
src/style.css

@@ -138,30 +138,6 @@ a:hover {
 
 
 
-h1 {
-  font-size: 3.2em;
-  line-height: 1.1;
-}
-
-button {
-  border-radius: 8px;
-  border: 1px solid transparent;
-  padding: 0.6em 1.2em;
-  font-size: 1em;
-  font-weight: 500;
-  font-family: inherit;
-  background-color: #1a1a1a;
-  cursor: pointer;
-  transition: border-color 0.25s;
-}
-button:hover {
-  border-color: #646cff;
-}
-button:focus,
-button:focus-visible {
-  outline: 4px auto -webkit-focus-ring-color;
-}
-