-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSearchPage.qml
344 lines (333 loc) · 12.1 KB
/
SearchPage.qml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
import QtQuick 6.2
import QtQuick.Window 6.2
import QtQuick.Controls 6.2
import QtQuick.Layouts 1.15
import "player.js" as Player
Rectangle {
property string keyword
TabBar {
id: tabBar
anchors.left: parent.left
anchors.right: parent.right
anchors.top: parent.top
height: 30
currentIndex: swipeView.currentIndex
background: Rectangle {
color: "transparent"
}
TabButton {
text: qsTr("歌曲")
anchors.top: parent.top
height: 30
background: Rectangle {
color: "transparent"
Rectangle {
anchors.verticalCenter: parent.verticalCenter
anchors.right: parent.right
height: 15
width: 1
color: "black"
}
}
}
TabButton {
text: qsTr("歌手")
anchors.top: parent.top
height: 30
background: Rectangle {
color: "transparent"
Rectangle {
anchors.verticalCenter: parent.verticalCenter
anchors.left: parent.left
height: 15
width: 1
color: "black"
}
Rectangle {
anchors.verticalCenter: parent.verticalCenter
anchors.right: parent.right
height: 15
width: 1
color: "black"
}
}
}
TabButton {
text: qsTr("专辑")
anchors.top: parent.top
height: 30
background: Rectangle {
color: "transparent"
Rectangle {
anchors.verticalCenter: parent.verticalCenter
anchors.left: parent.left
height: 15
width: 1
color: "black"
}
Rectangle {
anchors.verticalCenter: parent.verticalCenter
anchors.right: parent.right
height: 15
width: 1
color: "black"
}
}
}
TabButton {
text: qsTr("歌单")
anchors.top: parent.top
height: 30
background: Rectangle {
color: "transparent"
Rectangle {
anchors.verticalCenter: parent.verticalCenter
anchors.left: parent.left
height: 15
width: 1
color: "black"
}
Rectangle {
anchors.verticalCenter: parent.verticalCenter
anchors.right: parent.right
height: 15
width: 1
color: "black"
}
}
}
TabButton {
text: qsTr("电台")
anchors.top: parent.top
height: 30
background: Rectangle {
color: "transparent"
Rectangle {
anchors.verticalCenter: parent.verticalCenter
anchors.left: parent.left
height: 15
width: 1
color: "black"
}
Rectangle {
anchors.verticalCenter: parent.verticalCenter
anchors.right: parent.right
height: 15
width: 1
color: "black"
}
}
}
TabButton {
text: qsTr("歌词")
anchors.top: parent.top
height: 30
background: Rectangle {
color: "transparent"
Rectangle {
anchors.verticalCenter: parent.verticalCenter
anchors.left: parent.left
height: 15
width: 1
color: "black"
}
Rectangle {
anchors.verticalCenter: parent.verticalCenter
anchors.right: parent.right
height: 15
width: 1
color: "black"
}
}
}
TabButton {
text: qsTr("用户")
anchors.top: parent.top
height: 30
background: Rectangle {
color: "transparent"
Rectangle {
anchors.verticalCenter: parent.verticalCenter
anchors.left: parent.left
height: 15
width: 1
color: "black"
}
}
}
}
Rectangle {
id: indicator
z: 2
x: (swipeView.width / swipeView.count - width) / 2
+ swipeView.currentIndex * (swipeView.width / swipeView.count)
anchors.bottom: tabBar.bottom
width: swipeView.width / swipeView.count - 20
height: 2
radius: 1
color: "red"
Behavior on x {
NumberAnimation {
duration: 150
}
}
}
SwipeView {
id: swipeView
anchors.top: tabBar.bottom
anchors.bottom: parent.bottom
anchors.left: parent.left
anchors.right: parent.right
currentIndex: tabBar.currentIndex
ListView {
id: songView
Component.onCompleted: {
var search = neteaseAPI.search(keyword, "1", "30", "0")
if (search !== "") {
var json = JSON.parse(search)
var songs = json.result.songs
var idList = []
var song
for (song in songs) {
idList.push(songs[song].id)
// var _id = songs[song].id
// var _name = songs[song].name
// var artist = ""
// for (var _artist in songs[song].artists)
// artist += "/" + songs[song].artists[_artist].name
// artist = artist.substr(1)
// var alia = ""
// for (var _alia in songs[song].alia)
// alia += songs[song].alia[_alia]
// if (songs[song].hasOwnProperty("tns"))
// for (var tn in songs[song].tns)
// alia += songs[song].tns[tn]
// var album = songs[song].album.name
// var cover = songs[song].album.artist.img1v1Url
// model.append({
// "id": _id,
// "name": _name,
// "artist": artist,
// "alia": alia,
// "album": album,
// "cover": cover
// })
}
var songDetail = neteaseAPI.songDetail(idList)
json = JSON.parse(songDetail)
songs = json.songs
for (song in songs) {
var _id = songs[song].id
var _name = songs[song].name
var artist = ""
for (var _artist in songs[song].ar)
artist += "/" + songs[song].ar[_artist].name
artist = artist.substr(1)
var alia = ""
for (var _alia in songs[song].alia)
alia += songs[song].alia[_alia]
if (songs[song].hasOwnProperty("tns"))
for (var tn in songs[song].tns)
alia += songs[song].tns[tn]
var album = songs[song].al.name
var cover = songs[song].al.picUrl
model.append({
"id": _id,
"name": _name,
"artist": artist,
"alia": alia,
"album": album,
"cover": cover
})
}
}
}
model: ListModel {}
delegate: MouseArea {
width: songView.width
height: 45
onReleased: {
Player.play(id)
}
Material_Image {
id: songCover
width: height
radius: 2
anchors.left: parent.left
anchors.top: parent.top
anchors.bottom: parent.bottom
source: cover
elevation: 2
anchors.leftMargin: 5
anchors.bottomMargin: 5
anchors.topMargin: 5
}
RowLayout {
anchors.left: songCover.right
anchors.leftMargin: 5
anchors.right: parent.right
anchors.top: parent.top
anchors.topMargin: 5
height: 20
Text {
id: songName
Layout.preferredHeight: parent.height
Layout.preferredWidth: contentWidth
text: name
elide: Text.ElideRight
font.pointSize: 12
}
Text {
id: songAlia
color: "#424242"
Layout.preferredHeight: parent.height
Layout.fillWidth: true
text: (alia === "") ? "" : qsTr("(") + alia + qsTr(")")
elide: Text.ElideRight
font.pointSize: 12
}
}
RowLayout {
anchors.left: songCover.right
anchors.leftMargin: 5
anchors.right: parent.right
anchors.bottom: parent.bottom
spacing: 0
anchors.bottomMargin: 10
height: 10
Text {
id: songArtist
color: "#424242"
Layout.preferredHeight: parent.height
Layout.preferredWidth: contentWidth
text: artist
elide: Text.ElideRight
}
Text {
id: songAlbum
color: "#424242"
Layout.preferredHeight: parent.height
Layout.fillWidth: true
text: qsTr(" - ") + album
elide: Text.ElideRight
}
}
}
}
Rectangle {
color: "red"
}
Rectangle {
color: "white"
}
Item {}
Item {}
Item {}
Item {}
}
}
/*##^##
Designer {
D{i:0;autoSize:true;formeditorZoom:0.5;height:480;width:640}
}
##^##*/