Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
2
2024-HCI-Mirror
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
米 天为
2024-HCI-Mirror
Commits
6fb6367f
Commit
6fb6367f
authored
3 months ago
by
杭 羽凡
Browse files
Options
Downloads
Patches
Plain Diff
左边框搜索和添加歌单进一步完善
parent
85718fe3
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/components/LeftSideBar.vue
+120
-25
120 additions, 25 deletions
src/components/LeftSideBar.vue
src/components/musicAlbumView.vue
+3
-2
3 additions, 2 deletions
src/components/musicAlbumView.vue
src/icon/searchIcon.vue
+1
-1
1 addition, 1 deletion
src/icon/searchIcon.vue
with
124 additions
and
28 deletions
src/components/LeftSideBar.vue
+
120
−
25
View file @
6fb6367f
...
...
@@ -6,6 +6,7 @@ import searchIcon from "../icon/searchIcon.vue";
import
plusIcon
from
"
../icon/plusIcon.vue
"
;
import
playButton
from
"
../icon/playButton.vue
"
;
import
{
getPlaylistsByUser
}
from
"
../api/playlist
"
;
import
{
ElPopover
}
from
"
element-plus
"
;
const
emit
=
defineEmits
();
...
...
@@ -61,12 +62,23 @@ function startResizing(event) {
window
.
addEventListener
(
'
mouseup
'
,
onMouseUp
);
}
function
addAlbum
()
{
//TODO:
console
.
log
(
111
)
//TODO:添加新的空歌单
}
function
toggleSearchBar
(){
const
input
=
document
.
querySelector
(
"
.search-input
"
);
input
.
classList
.
toggle
(
'
active
'
);
// 切换输入框的显示状态
input
.
focus
();
// 点击搜索图标后聚焦输入框
}
function
blurSearchBar
(){
const
input
=
document
.
querySelector
(
"
.search-input
"
);
if
(
input
.
classList
.
contains
(
'
active
'
))
input
.
classList
.
remove
(
'
active
'
);
}
function
searchAlbum
()
{
//TODO:
console
.
log
(
111
)
const
input
=
document
.
querySelector
(
"
.search-input
"
).
value
;
// TODO:提交表单
}
onMounted
(()
=>
{
...
...
@@ -92,14 +104,29 @@ defineProps({
<music-album-closed
v-if=
"!isSideBarOpen"
/>
<p
style=
"margin-left: 15px;font:normal small-caps bold 20px Arial, sans-serif ;"
v-if=
"isSideBarOpen"
>
音乐库
</p>
</div>
<div
class=
"add-album"
v-if=
"isSideBarOpen"
@
click=
"addAlbum"
>
<plus-icon
/>
</div>
<el-popover
class=
"dropdown-options"
:width=
"200"
trigger=
"click"
hide-after=
"0"
>
<template
#reference
v-if=
"isSideBarOpen"
>
<div
class=
"add-album"
>
<plus-icon
class=
"plus-icon"
/>
</div>
</
template
>
<ul>
<li
@
click=
"addAlbum"
>
添加歌单
</li>
</ul>
</el-popover>
</div>
<div
class=
"search-album"
v-if=
"isSideBarOpen"
@
click=
"searchAlbum"
>
<search-icon/>
<div
class=
"search-container"
>
<div
class=
"search-album"
v-if=
"isSideBarOpen"
@
click=
"toggleSearchBar"
>
<search-icon
class=
"search-icon"
/>
</div>
<input
type=
"text"
class=
"search-input"
placeholder=
"输入搜索歌单"
@
keydown.enter=
"searchAlbum"
@
blur=
"blurSearchBar"
/>
</div>
<div
class=
"musicAlbums"
@
mouseenter=
"()=>{hoverOnAlbum=true}"
...
...
@@ -141,7 +168,22 @@ defineProps({
padding
:
0
;
margin
:
0
;
}
ul
{
background-color
:
#282828
;
list-style-type
:
none
;
margin
:
0
;
border-radius
:
10px
;
padding
:
12px
8px
;
}
li
{
color
:
white
;
padding
:
10px
12px
;
}
li
:hover
{
cursor
:
pointer
;
background-color
:
#404040
;
text-decoration
:
underline
;
}
nav
{
user-select
:
none
;
-webkit-user-select
:
none
;
...
...
@@ -171,8 +213,73 @@ nav {
align-items
:
center
;
justify-content
:
space-between
;
}
.add-album
{
color
:
#b2b2b2
;
margin-top
:
5px
;
margin-right
:
10px
;
width
:
30px
;
cursor
:
pointer
;
}
.search-container
{
margin
:
12px
10px
;
display
:
flex
;
align-items
:
center
;
cursor
:
pointer
;
}
.search-icon
{
font-size
:
24px
;
transition
:
margin-right
0.3s
ease
;
}
.search-input
{
background-color
:
#404040
;
font-size
:
15px
;
color
:
#ffffff
;
height
:
35px
;
border
:
none
;
width
:
0
;
opacity
:
0
;
transition
:
width
0.3s
ease
,
opacity
0.3s
ease
;
padding
:
5px
;
border-radius
:
4px
;
outline
:
none
;
}
.search-input.active
{
width
:
70%
;
/* 设置输入框拉伸后的宽度 */
opacity
:
1
;
}
.search-album
{
display
:
flex
;
color
:
#b2b2b2
;
width
:
35px
;
height
:
35px
;
cursor
:
pointer
;
align-items
:
center
;
justify-content
:
center
;
}
.plus-icon
{
border-radius
:
50%
;
transition
:
width
,
color
,
background-color
ease-in-out
0.2s
;
}
.plus-icon
:hover
{
transform
:
scale
(
1.1
);
color
:
#efeeee
;
background-color
:
#404040
;
}
.search-icon
{
padding
:
3px
;
border-radius
:
50%
;
transition
:
width
,
color
,
background-color
ease-in-out
0.2s
;
}
.search-icon
:hover
{
transform
:
scale
(
1.05
);
color
:
#efeeee
;
background-color
:
#404040
;
}
.toggle-button
:hover
{
color
:
#
d2d0d0
;
color
:
#
efeeee
;
}
.toggle-button
{
display
:
flex
;
...
...
@@ -181,22 +288,10 @@ nav {
margin
:
0
0
0
16px
;
background-color
:
transparent
;
cursor
:
pointer
;
transition
:
color
0.
5
s
ease
;
transition
:
color
0.
2
s
ease
;
color
:
#b2b2b2
;
}
.add-album
{
color
:
#b2b2b2
;
margin-top
:
5px
;
margin-right
:
15px
;
width
:
30px
;
cursor
:
pointer
;
}
.search-album
{
color
:
#b2b2b2
;
margin
:
16px
0
0
13px
;
width
:
40px
;
cursor
:
pointer
;
}
.resizer
{
position
:
absolute
;
width
:
5px
;
...
...
This diff is collapsed.
Click to expand it.
src/components/musicAlbumView.vue
+
3
−
2
View file @
6fb6367f
...
...
@@ -496,16 +496,17 @@ p{
ul
{
background-color
:
#282828
;
list-style-type
:
none
;
padding
:
0
;
margin
:
0
;
border-radius
:
10px
;
padding
:
12px
8px
;
}
li
{
color
:
white
;
padding
:
1
5
px
12px
;
padding
:
1
0
px
12px
;
}
li
:hover
{
cursor
:
pointer
;
background-color
:
#404040
;
text-decoration
:
underline
;
}
...
...
This diff is collapsed.
Click to expand it.
src/icon/searchIcon.vue
+
1
−
1
View file @
6fb6367f
<
template
>
<svg
xmlns=
"http://www.w3.org/2000/svg"
width=
"2
4
px"
height=
"2
4
px"
viewBox=
"0 0 24 24"
><path
fill=
"none"
stroke=
"currentColor"
stroke-linecap=
"round"
stroke-linejoin=
"round"
stroke-width=
"1.5"
d=
"M17.5 17.5L22 22m-2-11a9 9 0 1 0-18 0a9 9 0 0 0 18 0"
color=
"currentColor"
/></svg>
<svg
xmlns=
"http://www.w3.org/2000/svg"
width=
"2
8
px"
height=
"2
8
px"
viewBox=
"0 0 24 24"
><path
fill=
"none"
stroke=
"currentColor"
stroke-linecap=
"round"
stroke-linejoin=
"round"
stroke-width=
"1.5"
d=
"M17.5 17.5L22 22m-2-11a9 9 0 1 0-18 0a9 9 0 0 0 18 0"
color=
"currentColor"
/></svg>
</
template
>
<
script
>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment