aboutsummaryrefslogtreecommitdiff
path: root/assets/javascript/script.js
blob: ac59acb49850f71a3cec87779c3230c1698bcf39 (plain) (blame)
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
'use strict';

var client = new XMLHttpRequest();
var radio = findGetParameter('radio');
var url = '//somafm.com/songs/' + radio + '.xml';

/* Processes response */
client.onload = function () {
  if (client.readyState === client.DONE) {
    if (this.status === 200 && this.responseXML !== null) {
      /* Gets current track */
      var current = this.responseXML.getElementsByTagName('song')[0];
      var artistTrack = current.getElementsByTagName('artist')[0].textContent;
      var titleTrack = current.getElementsByTagName('title')[0].textContent;

      /* Gets items on the page */
      var displayElement = document.getElementById('display');
      var artistElement = document.getElementById('artist');
      var titleElement = document.getElementById('title');

      if (artistElement.textContent !== artistTrack || titleElement.textContent !== titleTrack) {
        /* Updates text */
        artistElement.textContent = artistTrack;
        titleElement.textContent = titleTrack;

        /* Displays a pop-up window */
        displayElement.style['animation-name'] = 'fadeIn';

        setTimeout(function () {
          /* Removes a pop-up window */
          displayElement.style['animation-name'] = 'fadeOut';
        }, getInterval('duration'));
      }
    }
  }
};

/* Update cycle */
setInterval(function () {
  client.open('GET', url);
  client.send();
}, getInterval('interval'));

/**
 * @param {String} parameterName - Variable name
 * @returns {String} Value of variable
 * @description Searches for the value of the GET variable on the page.
 */
function findGetParameter(parameterName) {
  var result = null;
  var tmp = [];

  var items = window.location.search.substr(1).split('&');
  for (var index = 0; index < items.length; index++) {
    tmp = items[index].split('=');
    if (tmp[0] === parameterName) {
      result = decodeURIComponent(tmp[1]);
    }
  }

  return result;
}

/**
 * @param {String} parameterName - Variable name
 * @returns {Number} Timer value, default 10 seconds
 * @description Gets the settings for the specified timer.
 */
function getInterval(parameterName) {
  var value = findGetParameter(parameterName);
  var interval = parseInt(value, 10);
  var result = 10000;

  if (isNaN(interval) === false) {
    result = interval;
  }

  return result;
}