react-native-album-display 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/index.js +7 -0
- package/index.js +1 -2
- package/package.json +20 -3
- package/App.js +0 -25
- package/app.json +0 -28
- package/assets/adaptive-icon.png +0 -0
- package/assets/favicon.png +0 -0
- package/assets/icon.png +0 -0
- package/assets/splash-icon.png +0 -0
- package/sampleData/albums.json +0 -816
@@ -0,0 +1,7 @@
|
|
1
|
+
export { default as AlbumBasicData } from './albumDetailsSubcomponents/AlbumBasicData';
|
2
|
+
export { default as AlbumTracklist } from './albumDetailsSubcomponents/AlbumTracklist';
|
3
|
+
export { default as RatesStatistics } from './albumDetailsSubcomponents/RatesStatistics';
|
4
|
+
export { default as FadeInView } from './animations/FadeInView';
|
5
|
+
export { default as CoverComponent } from './CoverComponent';
|
6
|
+
export { default as AlbumDetails } from './AlbumDetails';
|
7
|
+
export { default as CoverGroup } from './CoverGroup';
|
package/index.js
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
import { registerRootComponent } from 'expo';
|
2
|
-
|
3
2
|
import App from './App';
|
4
3
|
|
5
4
|
// registerRootComponent calls AppRegistry.registerComponent('main', () => App);
|
6
5
|
// It also ensures that whether you load the app in Expo Go or in a native build,
|
7
6
|
// the environment is set up appropriately
|
8
|
-
registerRootComponent(App);
|
7
|
+
registerRootComponent(App);
|
package/package.json
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "react-native-album-display",
|
3
|
-
"
|
3
|
+
"description": "A simple album display component for React Native",
|
4
|
+
"version": "1.0.2",
|
4
5
|
"authors": [
|
5
6
|
{
|
6
7
|
"email": "guille@carvajal.es",
|
@@ -10,7 +11,7 @@
|
|
10
11
|
"name": "Diego Moragón Merallo"
|
11
12
|
}
|
12
13
|
],
|
13
|
-
"main": "index.js",
|
14
|
+
"main": "components/index.js",
|
14
15
|
"scripts": {
|
15
16
|
"start": "expo start",
|
16
17
|
"android": "expo start --android",
|
@@ -25,6 +26,7 @@
|
|
25
26
|
"react": "18.3.1",
|
26
27
|
"react-dom": "18.3.1",
|
27
28
|
"react-native": "0.76.7",
|
29
|
+
"react-native-album-display": "^1.0.1",
|
28
30
|
"react-native-chart-kit": "^6.12.0",
|
29
31
|
"react-native-linear-gradient": "^2.8.3",
|
30
32
|
"react-native-star-rating-widget": "^1.9.2",
|
@@ -33,5 +35,20 @@
|
|
33
35
|
"devDependencies": {
|
34
36
|
"@babel/core": "^7.20.0"
|
35
37
|
},
|
36
|
-
"private": false
|
38
|
+
"private": false,
|
39
|
+
"bugs": {
|
40
|
+
"url": "https://github.com/GuillermoDylan/react-native-album-display/issues"
|
41
|
+
},
|
42
|
+
"homepage": "https://github.com/GuillermoDylan/react-native-album-display",
|
43
|
+
"repository": {
|
44
|
+
"type": "git",
|
45
|
+
"url": "git+https://github.com/GuillermoDylan/react-native-album-display.git"
|
46
|
+
},
|
47
|
+
"keywords": [
|
48
|
+
"react-native",
|
49
|
+
"album",
|
50
|
+
"display",
|
51
|
+
"music"
|
52
|
+
],
|
53
|
+
"license": "Apache-2.0"
|
37
54
|
}
|
package/App.js
DELETED
@@ -1,25 +0,0 @@
|
|
1
|
-
import { Button, StyleSheet, SafeAreaView } from 'react-native';
|
2
|
-
import CoverGroup from './components/CoverGroup';
|
3
|
-
import albums from './sampleData/albums.json'
|
4
|
-
import React from 'react';
|
5
|
-
|
6
|
-
|
7
|
-
export default function App() {
|
8
|
-
const [listView, setListView] = React.useState(false);
|
9
|
-
|
10
|
-
return (
|
11
|
-
<SafeAreaView style={styles.container}>
|
12
|
-
<Button onPress={() => setListView(!listView)} title="Change view" />
|
13
|
-
<CoverGroup albums={albums} isListView={listView} />
|
14
|
-
</SafeAreaView>
|
15
|
-
);
|
16
|
-
}
|
17
|
-
|
18
|
-
const styles = StyleSheet.create({
|
19
|
-
container: {
|
20
|
-
flex: 1,
|
21
|
-
backgroundColor: 'black',
|
22
|
-
alignItems: 'center',
|
23
|
-
justifyContent: 'center',
|
24
|
-
},
|
25
|
-
});
|
package/app.json
DELETED
@@ -1,28 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"expo": {
|
3
|
-
"name": "react-native-album-display",
|
4
|
-
"slug": "react-native-album-display",
|
5
|
-
"version": "1.0.0",
|
6
|
-
"orientation": "portrait",
|
7
|
-
"icon": "./assets/icon.png",
|
8
|
-
"userInterfaceStyle": "light",
|
9
|
-
"newArchEnabled": true,
|
10
|
-
"splash": {
|
11
|
-
"image": "./assets/splash-icon.png",
|
12
|
-
"resizeMode": "contain",
|
13
|
-
"backgroundColor": "#ffffff"
|
14
|
-
},
|
15
|
-
"ios": {
|
16
|
-
"supportsTablet": true
|
17
|
-
},
|
18
|
-
"android": {
|
19
|
-
"adaptiveIcon": {
|
20
|
-
"foregroundImage": "./assets/adaptive-icon.png",
|
21
|
-
"backgroundColor": "#ffffff"
|
22
|
-
}
|
23
|
-
},
|
24
|
-
"web": {
|
25
|
-
"favicon": "./assets/favicon.png"
|
26
|
-
}
|
27
|
-
}
|
28
|
-
}
|
package/assets/adaptive-icon.png
DELETED
Binary file
|
package/assets/favicon.png
DELETED
Binary file
|
package/assets/icon.png
DELETED
Binary file
|
package/assets/splash-icon.png
DELETED
Binary file
|
package/sampleData/albums.json
DELETED
@@ -1,816 +0,0 @@
|
|
1
|
-
[
|
2
|
-
{
|
3
|
-
"coverUrl": "https://m.media-amazon.com/images/I/71ORmo0+Z0L._UF894,1000_QL80_.jpg",
|
4
|
-
"title": "Red (Taylor's Version)",
|
5
|
-
"artist": "Taylor Swift",
|
6
|
-
"tracklist": [
|
7
|
-
{
|
8
|
-
"name": "State of Grace (Taylor's Version)",
|
9
|
-
"duration": "4:55"
|
10
|
-
},
|
11
|
-
{
|
12
|
-
"name": "Red (Taylor's Version)",
|
13
|
-
"duration": "3:43"
|
14
|
-
},
|
15
|
-
{
|
16
|
-
"name": "Treacherous (Taylor's Version)",
|
17
|
-
"duration": "4:02"
|
18
|
-
},
|
19
|
-
{
|
20
|
-
"name": "I Knew You Were Trouble (Taylor's Version)",
|
21
|
-
"duration": "3:39"
|
22
|
-
},
|
23
|
-
{
|
24
|
-
"name": "All Too Well (Taylor's Version)",
|
25
|
-
"duration": "5:29"
|
26
|
-
},
|
27
|
-
{
|
28
|
-
"name": "22 (Taylor's Version)",
|
29
|
-
"duration": "3:50"
|
30
|
-
},
|
31
|
-
{
|
32
|
-
"name": "I Almost Do (Taylor's Version)",
|
33
|
-
"duration": "4:04"
|
34
|
-
},
|
35
|
-
{
|
36
|
-
"name": "We Are Never Ever Getting Back Together (Taylor's Version)",
|
37
|
-
"duration": "3:13"
|
38
|
-
},
|
39
|
-
{
|
40
|
-
"name": "Stay Stay Stay (Taylor's Version)",
|
41
|
-
"duration": "3:25"
|
42
|
-
},
|
43
|
-
{
|
44
|
-
"name": "The Last Time (Taylor's Version)",
|
45
|
-
"duration": "4:59"
|
46
|
-
},
|
47
|
-
{
|
48
|
-
"name": "Holy Ground (Taylor's Version)",
|
49
|
-
"duration": "3:22"
|
50
|
-
},
|
51
|
-
{
|
52
|
-
"name": "Sad Beautiful Tragic (Taylor's Version)",
|
53
|
-
"duration": "4:44"
|
54
|
-
},
|
55
|
-
{
|
56
|
-
"name": "The Lucky One (Taylor's Version)",
|
57
|
-
"duration": "4:00"
|
58
|
-
},
|
59
|
-
{
|
60
|
-
"name": "Everything Has Changed (Taylor's Version)",
|
61
|
-
"duration": "4:05"
|
62
|
-
},
|
63
|
-
{
|
64
|
-
"name": "Starlight (Taylor's Version)",
|
65
|
-
"duration": "3:40"
|
66
|
-
},
|
67
|
-
{
|
68
|
-
"name": "Begin Again (Taylor's Version)",
|
69
|
-
"duration": "3:58"
|
70
|
-
},
|
71
|
-
{
|
72
|
-
"name": "The Moment I Knew (Taylor's Version)",
|
73
|
-
"duration": "4:45"
|
74
|
-
},
|
75
|
-
{
|
76
|
-
"name": "Come Back... Be Here (Taylor's Version)",
|
77
|
-
"duration": "3:43"
|
78
|
-
},
|
79
|
-
{
|
80
|
-
"name": "Girl at Home (Taylor's Version)",
|
81
|
-
"duration": "3:40"
|
82
|
-
},
|
83
|
-
{
|
84
|
-
"name": "State of Grace (acoustic version) (Taylor's Version)",
|
85
|
-
"duration": "5:21"
|
86
|
-
},
|
87
|
-
{
|
88
|
-
"name": "Ronan (Taylor's Version)",
|
89
|
-
"duration": "4:24"
|
90
|
-
},
|
91
|
-
{
|
92
|
-
"name": "Better Man (Taylor's Version) (From The Vault)",
|
93
|
-
"duration": "4:57"
|
94
|
-
},
|
95
|
-
{
|
96
|
-
"name": "Nothing New (Taylor's Version) (From The Vault)",
|
97
|
-
"duration": "4:18"
|
98
|
-
},
|
99
|
-
{
|
100
|
-
"name": "Babe (Taylor's Version) (From The Vault)",
|
101
|
-
"duration": "3:44"
|
102
|
-
},
|
103
|
-
{
|
104
|
-
"name": "Message in a Bottle (Taylor's Version) (From The Vault)",
|
105
|
-
"duration": "3:45"
|
106
|
-
},
|
107
|
-
{
|
108
|
-
"name": "I Bet You Think About Me (Taylor's Version) (From The Vault)",
|
109
|
-
"duration": "4:45"
|
110
|
-
},
|
111
|
-
{
|
112
|
-
"name": "Forever Winter (Taylor's Version) (From The Vault)",
|
113
|
-
"duration": "4:23"
|
114
|
-
},
|
115
|
-
{
|
116
|
-
"name": "Run (Taylor's Version) (From The Vault)",
|
117
|
-
"duration": "4:00"
|
118
|
-
},
|
119
|
-
{
|
120
|
-
"name": "The Very First Night (Taylor's Version) (From The Vault)",
|
121
|
-
"duration": "3:20"
|
122
|
-
},
|
123
|
-
{
|
124
|
-
"name": "All Too Well (10 Minute Version) (Taylor's Version) (From The Vault)",
|
125
|
-
"duration": "10:13"
|
126
|
-
}
|
127
|
-
],
|
128
|
-
"ratings": [
|
129
|
-
0,
|
130
|
-
1.5,
|
131
|
-
3,
|
132
|
-
4.5,
|
133
|
-
2,
|
134
|
-
5,
|
135
|
-
3.5,
|
136
|
-
2.5,
|
137
|
-
4,
|
138
|
-
1,
|
139
|
-
0.5,
|
140
|
-
3,
|
141
|
-
5,
|
142
|
-
4.5,
|
143
|
-
2,
|
144
|
-
1,
|
145
|
-
3.5,
|
146
|
-
0
|
147
|
-
]
|
148
|
-
},
|
149
|
-
{
|
150
|
-
"coverUrl": "https://m.media-amazon.com/images/I/71dtYuD2+-L._UF894,1000_QL80_.jpg",
|
151
|
-
"title": "HIT ME HARD AND SOFT",
|
152
|
-
"artist": "Billie Eilish",
|
153
|
-
"tracklist": [
|
154
|
-
{
|
155
|
-
"name": "SKINNY",
|
156
|
-
"duration": "3:39"
|
157
|
-
},
|
158
|
-
{
|
159
|
-
"name": "LUNCH",
|
160
|
-
"duration": "2:59"
|
161
|
-
},
|
162
|
-
{
|
163
|
-
"name": "CHIHIRO",
|
164
|
-
"duration": "5:03"
|
165
|
-
},
|
166
|
-
{
|
167
|
-
"name": "BIRDS OF A FEATHER",
|
168
|
-
"duration": "3:30"
|
169
|
-
},
|
170
|
-
{
|
171
|
-
"name": "WILDFLOWER",
|
172
|
-
"duration": "4:21"
|
173
|
-
},
|
174
|
-
{
|
175
|
-
"name": "THE GREATEST",
|
176
|
-
"duration": "4:53"
|
177
|
-
},
|
178
|
-
{
|
179
|
-
"name": "L'AMOUR DE MA VIE",
|
180
|
-
"duration": "5:33"
|
181
|
-
},
|
182
|
-
{
|
183
|
-
"name": "THE DINER",
|
184
|
-
"duration": "3:06"
|
185
|
-
},
|
186
|
-
{
|
187
|
-
"name": "BITTERSUITE",
|
188
|
-
"duration": "4:58"
|
189
|
-
},
|
190
|
-
{
|
191
|
-
"name": "BLUE",
|
192
|
-
"duration": "5:43"
|
193
|
-
}
|
194
|
-
],
|
195
|
-
"ratings": [
|
196
|
-
2.5,
|
197
|
-
4,
|
198
|
-
1,
|
199
|
-
0.5,
|
200
|
-
3,
|
201
|
-
5,
|
202
|
-
4.5,
|
203
|
-
2,
|
204
|
-
3.5,
|
205
|
-
1.5,
|
206
|
-
2,
|
207
|
-
0,
|
208
|
-
4,
|
209
|
-
5,
|
210
|
-
3,
|
211
|
-
1,
|
212
|
-
0.5
|
213
|
-
]
|
214
|
-
},
|
215
|
-
{
|
216
|
-
"coverUrl": "https://m.media-amazon.com/images/I/71MnvffNWML._UF894,1000_QL80_.jpg",
|
217
|
-
"title": "Doo-Wops & Hooligans",
|
218
|
-
"artist": "Bruno Mars",
|
219
|
-
"tracklist": [
|
220
|
-
{
|
221
|
-
"name": "Grenade",
|
222
|
-
"duration": "3:43"
|
223
|
-
},
|
224
|
-
{
|
225
|
-
"name": "Just the Way You Are",
|
226
|
-
"duration": "3:40"
|
227
|
-
},
|
228
|
-
{
|
229
|
-
"name": "Our First Time",
|
230
|
-
"duration": "4:03"
|
231
|
-
},
|
232
|
-
{
|
233
|
-
"name": "Runaway Baby",
|
234
|
-
"duration": "2:28"
|
235
|
-
},
|
236
|
-
{
|
237
|
-
"name": "The Lazy Song",
|
238
|
-
"duration": "3:09"
|
239
|
-
},
|
240
|
-
{
|
241
|
-
"name": "Marry You",
|
242
|
-
"duration": "3:49"
|
243
|
-
},
|
244
|
-
{
|
245
|
-
"name": "Talking to the Moon",
|
246
|
-
"duration": "3:38"
|
247
|
-
},
|
248
|
-
{
|
249
|
-
"name": "Liquor Store Blues",
|
250
|
-
"duration": "3:49"
|
251
|
-
},
|
252
|
-
{
|
253
|
-
"name": "Count on Me",
|
254
|
-
"duration": "3:17"
|
255
|
-
},
|
256
|
-
{
|
257
|
-
"name": "The Other Side",
|
258
|
-
"duration": "3:48"
|
259
|
-
}
|
260
|
-
],
|
261
|
-
"ratings": [
|
262
|
-
5,
|
263
|
-
3.5,
|
264
|
-
4,
|
265
|
-
1,
|
266
|
-
0,
|
267
|
-
2.5,
|
268
|
-
4.5,
|
269
|
-
3,
|
270
|
-
2,
|
271
|
-
0.5,
|
272
|
-
5,
|
273
|
-
1.5,
|
274
|
-
3,
|
275
|
-
4,
|
276
|
-
0,
|
277
|
-
2,
|
278
|
-
1,
|
279
|
-
4.5
|
280
|
-
]
|
281
|
-
},
|
282
|
-
{
|
283
|
-
"coverUrl": "https://i.scdn.co/image/ab67616d0000b273df174e0dcb15de7b625a7194",
|
284
|
-
"title": "brat and it's the same but there's three more songs so it's not",
|
285
|
-
"artist": "Charli xcx",
|
286
|
-
"tracklist": [
|
287
|
-
{
|
288
|
-
"name": "360",
|
289
|
-
"duration": "2:13"
|
290
|
-
},
|
291
|
-
{
|
292
|
-
"name": "Club Classics",
|
293
|
-
"duration": "2:33"
|
294
|
-
},
|
295
|
-
{
|
296
|
-
"name": "Sympathy Is a Knife",
|
297
|
-
"duration": "2:31"
|
298
|
-
},
|
299
|
-
{
|
300
|
-
"name": "I Might Say Something Stupid",
|
301
|
-
"duration": "1:49"
|
302
|
-
},
|
303
|
-
{
|
304
|
-
"name": "Talk Talk",
|
305
|
-
"duration": "2:41"
|
306
|
-
},
|
307
|
-
{
|
308
|
-
"name": "Von Dutch",
|
309
|
-
"duration": "2:44"
|
310
|
-
},
|
311
|
-
{
|
312
|
-
"name": "Everything Is Romantic",
|
313
|
-
"duration": "3:23"
|
314
|
-
},
|
315
|
-
{
|
316
|
-
"name": "Rewind",
|
317
|
-
"duration": "2:48"
|
318
|
-
},
|
319
|
-
{
|
320
|
-
"name": "So I",
|
321
|
-
"duration": "3:31"
|
322
|
-
},
|
323
|
-
{
|
324
|
-
"name": "Girl, So Confusing",
|
325
|
-
"duration": "2:54"
|
326
|
-
},
|
327
|
-
{
|
328
|
-
"name": "Apple",
|
329
|
-
"duration": "2:31"
|
330
|
-
},
|
331
|
-
{
|
332
|
-
"name": "B2B",
|
333
|
-
"duration": "2:58"
|
334
|
-
},
|
335
|
-
{
|
336
|
-
"name": "Mean Girls",
|
337
|
-
"duration": "3:09"
|
338
|
-
},
|
339
|
-
{
|
340
|
-
"name": "I Think About It All the Time",
|
341
|
-
"duration": "2:15"
|
342
|
-
},
|
343
|
-
{
|
344
|
-
"name": "365",
|
345
|
-
"duration": "3:23"
|
346
|
-
},
|
347
|
-
{
|
348
|
-
"name": "Hello Goodbye",
|
349
|
-
"duration": "3:39"
|
350
|
-
},
|
351
|
-
{
|
352
|
-
"name": "Guess",
|
353
|
-
"duration": "2:22"
|
354
|
-
},
|
355
|
-
{
|
356
|
-
"name": "Spring Breakers",
|
357
|
-
"duration": "2:23"
|
358
|
-
}
|
359
|
-
],
|
360
|
-
"ratings": [
|
361
|
-
1.5,
|
362
|
-
2,
|
363
|
-
3.5,
|
364
|
-
5,
|
365
|
-
4.5,
|
366
|
-
0.5,
|
367
|
-
1,
|
368
|
-
3,
|
369
|
-
2.5,
|
370
|
-
4,
|
371
|
-
0,
|
372
|
-
1.5,
|
373
|
-
5,
|
374
|
-
3,
|
375
|
-
4.5,
|
376
|
-
2,
|
377
|
-
0.5
|
378
|
-
]
|
379
|
-
},
|
380
|
-
{
|
381
|
-
"coverUrl": "https://m.media-amazon.com/images/I/81a5QE+ikIL._UF894,1000_QL80_.jpg",
|
382
|
-
"title": "Blue Neighbourhood",
|
383
|
-
"artist": "Troye Sivan",
|
384
|
-
"tracklist": [
|
385
|
-
{
|
386
|
-
"name": "WILD",
|
387
|
-
"duration": "3:47"
|
388
|
-
},
|
389
|
-
{
|
390
|
-
"name": "BITE",
|
391
|
-
"duration": "3:06"
|
392
|
-
},
|
393
|
-
{
|
394
|
-
"name": "FOOLS",
|
395
|
-
"duration": "3:40"
|
396
|
-
},
|
397
|
-
{
|
398
|
-
"name": "EASE",
|
399
|
-
"duration": "3:33"
|
400
|
-
},
|
401
|
-
{
|
402
|
-
"name": "THE QUIET",
|
403
|
-
"duration": "3:46"
|
404
|
-
},
|
405
|
-
{
|
406
|
-
"name": "DKLA",
|
407
|
-
"duration": "4:15"
|
408
|
-
},
|
409
|
-
{
|
410
|
-
"name": "TALK ME DOWN",
|
411
|
-
"duration": "3:57"
|
412
|
-
},
|
413
|
-
{
|
414
|
-
"name": "COOL",
|
415
|
-
"duration": "3:21"
|
416
|
-
},
|
417
|
-
{
|
418
|
-
"name": "HEAVEN",
|
419
|
-
"duration": "4:21"
|
420
|
-
},
|
421
|
-
{
|
422
|
-
"name": "YOUTH",
|
423
|
-
"duration": "3:05"
|
424
|
-
},
|
425
|
-
{
|
426
|
-
"name": "LOST BOY",
|
427
|
-
"duration": "3:43"
|
428
|
-
},
|
429
|
-
{
|
430
|
-
"name": "FOR HIM.",
|
431
|
-
"duration": "3:29"
|
432
|
-
},
|
433
|
-
{
|
434
|
-
"name": "SUBURBIA",
|
435
|
-
"duration": "3:53"
|
436
|
-
},
|
437
|
-
{
|
438
|
-
"name": "TOO GOOD",
|
439
|
-
"duration": "3:44"
|
440
|
-
},
|
441
|
-
{
|
442
|
-
"name": "BLUE",
|
443
|
-
"duration": "3:31"
|
444
|
-
},
|
445
|
-
{
|
446
|
-
"name": "WILD (feat. Alessia Cara)",
|
447
|
-
"duration": "3:39"
|
448
|
-
},
|
449
|
-
{
|
450
|
-
"name": "SWIMMING POOLS",
|
451
|
-
"duration": "3:26"
|
452
|
-
},
|
453
|
-
{
|
454
|
-
"name": "Happy Little Pill (live version)",
|
455
|
-
"duration": "4:02"
|
456
|
-
}
|
457
|
-
],
|
458
|
-
"ratings": [
|
459
|
-
0,
|
460
|
-
5,
|
461
|
-
4,
|
462
|
-
2.5,
|
463
|
-
1.5,
|
464
|
-
3,
|
465
|
-
0.5,
|
466
|
-
4.5,
|
467
|
-
3.5,
|
468
|
-
1,
|
469
|
-
2,
|
470
|
-
5,
|
471
|
-
0,
|
472
|
-
3,
|
473
|
-
2.5,
|
474
|
-
4,
|
475
|
-
1.5,
|
476
|
-
0.5
|
477
|
-
]
|
478
|
-
},
|
479
|
-
{
|
480
|
-
"coverUrl": "https://m.media-amazon.com/images/I/71VJwUwpOzL.jpg",
|
481
|
-
"title": "Born This Way",
|
482
|
-
"artist": "Lady Gaga",
|
483
|
-
"tracklist": [
|
484
|
-
{
|
485
|
-
"name": "Marry the Night",
|
486
|
-
"duration": "4:25"
|
487
|
-
},
|
488
|
-
{
|
489
|
-
"name": "Born This Way",
|
490
|
-
"duration": "4:20"
|
491
|
-
},
|
492
|
-
{
|
493
|
-
"name": "Government Hooker",
|
494
|
-
"duration": "4:14"
|
495
|
-
},
|
496
|
-
{
|
497
|
-
"name": "Judas",
|
498
|
-
"duration": "4:09"
|
499
|
-
},
|
500
|
-
{
|
501
|
-
"name": "Americano",
|
502
|
-
"duration": "4:07"
|
503
|
-
},
|
504
|
-
{
|
505
|
-
"name": "Hair",
|
506
|
-
"duration": "5:08"
|
507
|
-
},
|
508
|
-
{
|
509
|
-
"name": "Scheiße",
|
510
|
-
"duration": "3:46"
|
511
|
-
},
|
512
|
-
{
|
513
|
-
"name": "Bloody Mary",
|
514
|
-
"duration": "4:05"
|
515
|
-
},
|
516
|
-
{
|
517
|
-
"name": "Black Jesus + Amen Fashion",
|
518
|
-
"duration": "3:36"
|
519
|
-
},
|
520
|
-
{
|
521
|
-
"name": "Bad Kids",
|
522
|
-
"duration": "3:51"
|
523
|
-
},
|
524
|
-
{
|
525
|
-
"name": "Fashion of His Love",
|
526
|
-
"duration": "3:39"
|
527
|
-
},
|
528
|
-
{
|
529
|
-
"name": "Highway Unicorn (Road to Love)",
|
530
|
-
"duration": "4:16"
|
531
|
-
},
|
532
|
-
{
|
533
|
-
"name": "Heavy Metal Lover",
|
534
|
-
"duration": "4:13"
|
535
|
-
},
|
536
|
-
{
|
537
|
-
"name": "Electric Chapel",
|
538
|
-
"duration": "4:12"
|
539
|
-
},
|
540
|
-
{
|
541
|
-
"name": "The Queen",
|
542
|
-
"duration": "5:17"
|
543
|
-
},
|
544
|
-
{
|
545
|
-
"name": "Yoü and I",
|
546
|
-
"duration": "5:07"
|
547
|
-
},
|
548
|
-
{
|
549
|
-
"name": "The Edge of Glory",
|
550
|
-
"duration": "5:21"
|
551
|
-
}
|
552
|
-
],
|
553
|
-
"ratings": [
|
554
|
-
4.5,
|
555
|
-
3,
|
556
|
-
1,
|
557
|
-
2,
|
558
|
-
5,
|
559
|
-
0,
|
560
|
-
2.5,
|
561
|
-
3.5,
|
562
|
-
4,
|
563
|
-
1.5,
|
564
|
-
0.5,
|
565
|
-
3,
|
566
|
-
5,
|
567
|
-
2,
|
568
|
-
1,
|
569
|
-
4.5,
|
570
|
-
0,
|
571
|
-
3.5
|
572
|
-
]
|
573
|
-
},
|
574
|
-
{
|
575
|
-
"coverUrl": "https://m.media-amazon.com/images/I/81ZnVYpTdhL.jpg",
|
576
|
-
"title": "Kids In Love",
|
577
|
-
"artist": "Kygo",
|
578
|
-
"tracklist": [
|
579
|
-
{
|
580
|
-
"name": "Never Let You Go",
|
581
|
-
"duration": "3:52"
|
582
|
-
},
|
583
|
-
{
|
584
|
-
"name": "Sunrise",
|
585
|
-
"duration": "3:34"
|
586
|
-
},
|
587
|
-
{
|
588
|
-
"name": "Riding Shotgun",
|
589
|
-
"duration": "3:18"
|
590
|
-
},
|
591
|
-
{
|
592
|
-
"name": "Stranger Things",
|
593
|
-
"duration": "3:41"
|
594
|
-
},
|
595
|
-
{
|
596
|
-
"name": "With You",
|
597
|
-
"duration": "3:30"
|
598
|
-
},
|
599
|
-
{
|
600
|
-
"name": "Kids in Love",
|
601
|
-
"duration": "4:23"
|
602
|
-
},
|
603
|
-
{
|
604
|
-
"name": "Permanent",
|
605
|
-
"duration": "3:48"
|
606
|
-
},
|
607
|
-
{
|
608
|
-
"name": "I See You",
|
609
|
-
"duration": "3:48"
|
610
|
-
},
|
611
|
-
{
|
612
|
-
"name": "Stargazing",
|
613
|
-
"duration": "3:45"
|
614
|
-
},
|
615
|
-
{
|
616
|
-
"name": "It Ain't Me",
|
617
|
-
"duration": "3:40"
|
618
|
-
},
|
619
|
-
{
|
620
|
-
"name": "First Time",
|
621
|
-
"duration": "3:14"
|
622
|
-
},
|
623
|
-
{
|
624
|
-
"name": "This Town",
|
625
|
-
"duration": "3:22"
|
626
|
-
},
|
627
|
-
{
|
628
|
-
"name": "Remind Me to Forget",
|
629
|
-
"duration": "3:37"
|
630
|
-
}
|
631
|
-
],
|
632
|
-
"ratings": [
|
633
|
-
2,
|
634
|
-
1.5,
|
635
|
-
0.5,
|
636
|
-
3,
|
637
|
-
4.5,
|
638
|
-
5,
|
639
|
-
2.5,
|
640
|
-
1,
|
641
|
-
0,
|
642
|
-
4,
|
643
|
-
3.5,
|
644
|
-
2,
|
645
|
-
1,
|
646
|
-
5,
|
647
|
-
0.5,
|
648
|
-
4,
|
649
|
-
3
|
650
|
-
]
|
651
|
-
},
|
652
|
-
{
|
653
|
-
"coverUrl": "https://m.media-amazon.com/images/I/71MRKrpsukL._UF894,1000_QL80_.jpg",
|
654
|
-
"title": "BLURRYFACE",
|
655
|
-
"artist": "twenty one pilots",
|
656
|
-
"tracklist": [
|
657
|
-
{
|
658
|
-
"name": "Heavydirtysoul",
|
659
|
-
"duration": "3:55"
|
660
|
-
},
|
661
|
-
{
|
662
|
-
"name": "Stressed Out",
|
663
|
-
"duration": "3:22"
|
664
|
-
},
|
665
|
-
{
|
666
|
-
"name": "Ride",
|
667
|
-
"duration": "3:35"
|
668
|
-
},
|
669
|
-
{
|
670
|
-
"name": "Fairly Local",
|
671
|
-
"duration": "3:27"
|
672
|
-
},
|
673
|
-
{
|
674
|
-
"name": "Tear in My Heart",
|
675
|
-
"duration": "3:08"
|
676
|
-
},
|
677
|
-
{
|
678
|
-
"name": "Lane Boy",
|
679
|
-
"duration": "4:13"
|
680
|
-
},
|
681
|
-
{
|
682
|
-
"name": "The Judge",
|
683
|
-
"duration": "4:58"
|
684
|
-
},
|
685
|
-
{
|
686
|
-
"name": "Doubt",
|
687
|
-
"duration": "3:11"
|
688
|
-
},
|
689
|
-
{
|
690
|
-
"name": "Polarize",
|
691
|
-
"duration": "3:47"
|
692
|
-
},
|
693
|
-
{
|
694
|
-
"name": "We Don't Believe What's on TV",
|
695
|
-
"duration": "2:57"
|
696
|
-
},
|
697
|
-
{
|
698
|
-
"name": "Message Man",
|
699
|
-
"duration": "4:00"
|
700
|
-
},
|
701
|
-
{
|
702
|
-
"name": "Hometown",
|
703
|
-
"duration": "3:55"
|
704
|
-
},
|
705
|
-
{
|
706
|
-
"name": "Not Today",
|
707
|
-
"duration": "3:58"
|
708
|
-
},
|
709
|
-
{
|
710
|
-
"name": "Goner",
|
711
|
-
"duration": "3:57"
|
712
|
-
},
|
713
|
-
{
|
714
|
-
"name": "Heathens",
|
715
|
-
"duration": "3:15"
|
716
|
-
}
|
717
|
-
],
|
718
|
-
"ratings": [
|
719
|
-
0,
|
720
|
-
3.5,
|
721
|
-
4,
|
722
|
-
1,
|
723
|
-
2.5,
|
724
|
-
5,
|
725
|
-
0.5,
|
726
|
-
2,
|
727
|
-
4.5,
|
728
|
-
3,
|
729
|
-
1.5,
|
730
|
-
0,
|
731
|
-
5,
|
732
|
-
4,
|
733
|
-
2,
|
734
|
-
3,
|
735
|
-
1,
|
736
|
-
0.5
|
737
|
-
]
|
738
|
-
},
|
739
|
-
{
|
740
|
-
"coverUrl": "https://m.media-amazon.com/images/I/71NEqnKS2dL._UF894,1000_QL80_.jpg",
|
741
|
-
"title": "After Laughter",
|
742
|
-
"artist": "Paramore",
|
743
|
-
"tracklist": [
|
744
|
-
{
|
745
|
-
"name": "Hard Times",
|
746
|
-
"duration": "3:02"
|
747
|
-
},
|
748
|
-
{
|
749
|
-
"name": "Rose-Colored Boy",
|
750
|
-
"duration": "3:32"
|
751
|
-
},
|
752
|
-
{
|
753
|
-
"name": "Told You So",
|
754
|
-
"duration": "3:08"
|
755
|
-
},
|
756
|
-
{
|
757
|
-
"name": "Forgiveness",
|
758
|
-
"duration": "3:40"
|
759
|
-
},
|
760
|
-
{
|
761
|
-
"name": "Fake Happy",
|
762
|
-
"duration": "3:55"
|
763
|
-
},
|
764
|
-
{
|
765
|
-
"name": "26",
|
766
|
-
"duration": "3:40"
|
767
|
-
},
|
768
|
-
{
|
769
|
-
"name": "Pool",
|
770
|
-
"duration": "3:52"
|
771
|
-
},
|
772
|
-
{
|
773
|
-
"name": "Grudges",
|
774
|
-
"duration": "3:06"
|
775
|
-
},
|
776
|
-
{
|
777
|
-
"name": "Caught in the Middle",
|
778
|
-
"duration": "3:34"
|
779
|
-
},
|
780
|
-
{
|
781
|
-
"name": "Idle Worship",
|
782
|
-
"duration": "3:18"
|
783
|
-
},
|
784
|
-
{
|
785
|
-
"name": "No Friend",
|
786
|
-
"duration": "3:24"
|
787
|
-
},
|
788
|
-
{
|
789
|
-
"name": "Tell Me How",
|
790
|
-
"duration": "4:20"
|
791
|
-
}
|
792
|
-
],
|
793
|
-
"ratings": [
|
794
|
-
3,
|
795
|
-
2.5,
|
796
|
-
5,
|
797
|
-
0,
|
798
|
-
1.5,
|
799
|
-
4,
|
800
|
-
0.5,
|
801
|
-
2,
|
802
|
-
3.5,
|
803
|
-
1,
|
804
|
-
4.5,
|
805
|
-
3,
|
806
|
-
0,
|
807
|
-
2.5,
|
808
|
-
5,
|
809
|
-
1.5,
|
810
|
-
4,
|
811
|
-
0.5
|
812
|
-
]
|
813
|
-
},
|
814
|
-
null,
|
815
|
-
null
|
816
|
-
]
|