-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmySC.js
138 lines (122 loc) · 3.99 KB
/
mySC.js
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
$(document).ready(function() {
// Queue up a SoundCloud song to play via the song url
var songs = ['https://soundcloud.com/chancetherapper/acid-rain-1',
'https://soundcloud.com/hxns/precious',
'https://soundcloud.com/morguemami/limelight-prod-xauve',
'https://soundcloud.com/joshpanii/usedii'];
playSC(songs[0], false); // false = don't autoPlay, true = autoPlay
getSCinfo(songs[0], 'thumbnail', true, true);
for (i = 1; i < songs.length; i++) {
getSCinfo(songs[i], 'smallThumb' + i);
//Set up click listeners for extra songs
(function(i) {
$("#smallThumb" + i).click(function(){
playSC(songs[i], true);
getSCinfo(songs[i], 'thumbnail', true, true);
// Set the song link as the external link
$("#sc_link").attr("href", songs[i]);
});
})(i);
}
var player = SC.Widget("so");
// Set the song link as the external link
$("#sc_link").attr("href", songs[0]);
// Play button pressed
$("#play").click(function() {
player.play();
toggleButtons('play');
});
// Pause button pressed
$("#pause").click(function() {
player.pause();
toggleButtons('pause');
});
// Spacebar is pressed, pause or play song
document.body.onkeyup = function(e){
if(e.keyCode == 32){
var player = SC.Widget("so");
player.isPaused(function(pause){
if(pause){
player.play();
toggleButtons('play');
}else{
player.pause();
toggleButtons('pause');
}
});
}
}
// New SoundCloud URL requested via prompt()
$("#newSong").click(function() {
var url = prompt("Enter in a new SoundCloud URL:");
var scMatch = url.match(/^https:\/\/soundcloud\.com\/[a-z1-9-]*\/[a-z1-9-]*\/?$/);
if(url !== null && scMatch !== null){
playSC(url, true);
getSCinfo(url, 'thumbnail', true, true);
$("#sc_link").attr("href", url);
}else{
alert("Enter in a valid http://soundcloud.com/ link.")
}
});
})
/**
Plays a SoundCloud song by replaceing the iFrame #so on the page.
@param {string} song - The song URL from soundcloud.com/...
@param {bool} autoPlay - Should it autoplay the song after loading it.
*/
function playSC(song, autoPlay){
// Set up URL
var uri = encodeURIComponent(song);
var scUrl ='https://w.soundcloud.com/player/?url='+uri;
// Set iFrame source
$("#so").prop('src', scUrl);
// Play song after 1 sec delay
$("#so").on("load", function () {
setTimeout(function(){
if(autoPlay === true){
var player = SC.Widget("so");
player.play();
toggleButtons('play');
}
}, 1000);
});
}
/**
Get the SoundCloud informatin for a given track,
and replace elemnts on the page with the info.
@param {string} song - The song URL from soundcloud.com/...
@param {string} thumbId - DOM Id of element to populate
@param {boolean} setTitle - Should title be set?
@param {boolean} setArtist - Should artist be set?
*/
function getSCinfo(song, thumbId, setTitle, setArtist){
// Get SC song info from oembed.js
var uri = encodeURIComponent(song);
var scUrl = 'https://soundcloud.com/oembed.json?maxheight=200&url='+uri;
$.get(scUrl, function(data){
// Populate the data onto the web-page
var thumb_https = data.thumbnail_url.replace(/^http:\/\//i, 'https://');
var title_only = data.title.split("by");
$("#" + thumbId).prop("src", thumb_https);
if (setTitle) {
$("#song_title").html('<i class="fa fa-music" aria-hidden="true"></i> ' + title_only[0]);
}
if (setArtist) {
$("#song_artist").html('<i class="fa fa-user" aria-hidden="true"></i> ' + data.author_name);
}
})
}
/**
* Show and hide play/pause button depending
* on whether the song is running or not.
* @param {string} status - State of the song
*/
function toggleButtons(status) {
if (status === 'play') {
$("#play").hide();
$("#pause").show();
} else {
$("#play").show();
$("#pause").hide();
}
}