mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 13:17:46 +00:00
feat: playlist search in likepage (#627)
This commit is contained in:
parent
95f22f47fe
commit
79de3009ad
1 changed files with 91 additions and 3 deletions
|
|
@ -85,7 +85,7 @@
|
||||||
<div class="input">
|
<div class="input">
|
||||||
<input
|
<input
|
||||||
v-model.trim="inputSearchKeyWords"
|
v-model.trim="inputSearchKeyWords"
|
||||||
v-focus="displaySearchInPlaylist"
|
v-focus
|
||||||
:placeholder="inputFocus ? '' : $t('playlist.search')"
|
:placeholder="inputFocus ? '' : $t('playlist.search')"
|
||||||
@input="inputDebounce()"
|
@input="inputDebounce()"
|
||||||
@focus="inputFocus = true"
|
@focus="inputFocus = true"
|
||||||
|
|
@ -147,6 +147,22 @@
|
||||||
data.user.nickname
|
data.user.nickname
|
||||||
}}{{ $t('library.sLikedSongs') }}
|
}}{{ $t('library.sLikedSongs') }}
|
||||||
</h1>
|
</h1>
|
||||||
|
<div class="search-box-likepage" @click="searchInPlaylist()">
|
||||||
|
<div class="container" :class="{ active: inputFocus }">
|
||||||
|
<svg-icon icon-class="search" />
|
||||||
|
<div class="input" :style="{ width: searchInputWidth }">
|
||||||
|
<input
|
||||||
|
v-if="displaySearchInPlaylist"
|
||||||
|
v-model.trim="inputSearchKeyWords"
|
||||||
|
v-focus
|
||||||
|
:placeholder="inputFocus ? '' : $t('playlist.search')"
|
||||||
|
@input="inputDebounce()"
|
||||||
|
@focus="inputFocus = true"
|
||||||
|
@blur="inputFocus = false"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<TrackList
|
<TrackList
|
||||||
|
|
@ -326,11 +342,12 @@ export default {
|
||||||
tracks: [],
|
tracks: [],
|
||||||
loadingMore: false,
|
loadingMore: false,
|
||||||
lastLoadedTrackIndex: 9,
|
lastLoadedTrackIndex: 9,
|
||||||
displaySearchInPlaylist: false,
|
displaySearchInPlaylist: false, // 是否显示搜索框
|
||||||
searchKeyWords: '', // 搜索使用的关键字
|
searchKeyWords: '', // 搜索使用的关键字
|
||||||
inputSearchKeyWords: '', // 搜索框中正在输入的关键字
|
inputSearchKeyWords: '', // 搜索框中正在输入的关键字
|
||||||
inputFocus: false,
|
inputFocus: false,
|
||||||
debounceTimeout: null,
|
debounceTimeout: null,
|
||||||
|
searchInputWidth: '0px', // 搜索框宽度
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
|
@ -488,11 +505,13 @@ export default {
|
||||||
nativeAlert('此功能开发中');
|
nativeAlert('此功能开发中');
|
||||||
},
|
},
|
||||||
searchInPlaylist() {
|
searchInPlaylist() {
|
||||||
this.displaySearchInPlaylist = !this.displaySearchInPlaylist;
|
this.displaySearchInPlaylist =
|
||||||
|
!this.displaySearchInPlaylist || this.isLikeSongsPage;
|
||||||
if (this.displaySearchInPlaylist == false) {
|
if (this.displaySearchInPlaylist == false) {
|
||||||
this.searchKeyWords = '';
|
this.searchKeyWords = '';
|
||||||
this.inputSearchKeyWords = '';
|
this.inputSearchKeyWords = '';
|
||||||
} else {
|
} else {
|
||||||
|
this.searchInputWidth = '172px';
|
||||||
this.loadMore(500);
|
this.loadMore(500);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
@ -774,6 +793,7 @@ export default {
|
||||||
.user-info {
|
.user-info {
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 42px;
|
font-size: 42px;
|
||||||
|
position: relative;
|
||||||
color: var(--color-text);
|
color: var(--color-text);
|
||||||
.avatar {
|
.avatar {
|
||||||
height: 44px;
|
height: 44px;
|
||||||
|
|
@ -843,4 +863,72 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.search-box-likepage {
|
||||||
|
display: flex;
|
||||||
|
position: absolute;
|
||||||
|
right: 12vw;
|
||||||
|
top: 95px;
|
||||||
|
justify-content: flex-end;
|
||||||
|
-webkit-app-region: no-drag;
|
||||||
|
|
||||||
|
.input {
|
||||||
|
transition: all 0.5s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
height: 32px;
|
||||||
|
background: var(--color-secondary-bg-for-transparent);
|
||||||
|
border-radius: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.svg-icon {
|
||||||
|
height: 15px;
|
||||||
|
width: 15px;
|
||||||
|
color: var(--color-text);
|
||||||
|
opacity: 0.28;
|
||||||
|
margin: {
|
||||||
|
left: 8px;
|
||||||
|
right: 8px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
input {
|
||||||
|
font-size: 16px;
|
||||||
|
border: none;
|
||||||
|
background: transparent;
|
||||||
|
width: 96%;
|
||||||
|
font-weight: 600;
|
||||||
|
margin-top: -1px;
|
||||||
|
color: var(--color-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
.active {
|
||||||
|
background: var(--color-primary-bg-for-transparent);
|
||||||
|
input,
|
||||||
|
.svg-icon {
|
||||||
|
opacity: 1;
|
||||||
|
color: var(--color-primary);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-theme='dark'] {
|
||||||
|
.search-box-likepage {
|
||||||
|
.active {
|
||||||
|
input,
|
||||||
|
.svg-icon {
|
||||||
|
color: var(--color-text);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 1336px) {
|
||||||
|
.search-box-likepage {
|
||||||
|
right: 8vw;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue