forked from samuelcarreira/rss-marquee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrss-marquee.js
309 lines (250 loc) · 8.85 KB
/
rss-marquee.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
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
/*!
* RSS Marquee
*
* Licensed under MIT
* Copyright (c) 2020 [Samuel Carreira]
*/
class RSSMarquee {
/**
*
* @param {string[]} feedURLs Feed URLs
* @param {object} elementContainer the selector of the marquee container
* @param {number} options.speed duration in ms per character. Bigger values = slow speed
* @param {number} options.maxItems specify max number of titles to show (useful to debug)
* @param {object} options.hostnameSelector The selector of the element where you want to show the URL of the news feed source (usefull for copyright atttribution)
*/
constructor(feedURLs, elementContainer, options = { speed: 110, maxItems: null, hostnameSelector: null }) {
this._feedURLs = new Array();
if (Array.isArray(feedURLs)) {
this._feedURLs = feedURLs;
} else {
this._feedURLs[0] = feedURLs;
}
const URLvalidation = this._feedURLs.every(this.validateURL);
if (!URLvalidation) {
throw new TypeError('Invalid URL on list');
}
this._urlIndex = 0;
this._anim = null;
this._newsText = '';
this._lastTime = Date.now();
if (elementContainer === null) {
throw new TypeError('Invalid element selector');
}
this._elementContainer = elementContainer;
this.styleElementContainer();
this._options = {
speed: this.validateSpeed(options.speed),
maxItems: options.maxItems,
hostnameSelector: options.hostnameSelector,
// ...options
};
this.getRSS();
}
validateSpeed(speed) {
if (!Number(speed) || speed < 50 || speed > 300) {
return 110; // default safe value
} else {
return speed;
}
}
/**
* Set the animation speed
* @param {number} speed value between 50-300
*/
set setSpeed(speed) {
this._options.speed = this.validateSpeed(speed);
}
get getSpeed() {
return this._options.speed;
}
/**
* Validate URL (uses URL interface)
*
* @param {string} url Url to check
* @returns {boolean} true if valid
*/
validateURL(url) {
try {
const u = new URL(url);
return true;
} catch (e) {
return false;
}
}
/**
* Get Hostname from url string
*
* Sample: "http://www.dnoticias.pt/rss/desporto.xml"
* returns -> www.dnoticias.pt
*
* @param {string} url url string
* @returns {string} hostname
*/
getHostname(url) {
try {
const u = new URL(url);
return u.hostname;
} catch (e) {
return '';
}
}
getRSS() {
const url = this._feedURLs[this._urlIndex];
this.fetchRSS(url)
.then((xmlText) => {
this._newsText = this.parseXMLFeed(xmlText);
this.showMarquee(this._newsText);
this.showHostname(url);
})
.catch((err) => {
console.error(err);
this.handleErrors();
});
}
handleErrors() {
const diffTime = Date.now() - this._lastTime;
if (diffTime > 5000) {
console.log('Trying next feed URL...');
this.nextURL();
this._lastTime = Date.now();
} else {
if (this._newsText === '') {
console.log('delay...');
setTimeout(() => {
this.nextURL();
}, 5000);
} else {
console.log('show again cached saved news');
this.showMarquee(this._newsText);
}
}
}
nextURL() {
this.increaseIndex();
this.getRSS();
}
styleElementContainer() {
this._elementContainer.style.overflow = 'hidden';
this._elementContainer.style.whiteSpace = 'nowrap';
}
showHostname(url) {
if (!this._options.hostnameSelector) {
return;
}
this._options.hostnameSelector.innerText = this.getHostname(url);
}
showMarquee(text) {
try {
const animKeyframes = [{
transform: 'translateX(0)'
},
{
transform: 'translateX(-100%)'
}
];
const animOptions = {
duration: 25000, // The number of milliseconds each iteration of the animation takes to complete. Defaults to 0. Although this is technically optional, keep in mind that your animation will not run if this value is 0.
easing: 'linear', // The rate of the animation's change over time. Accepts the pre-defined values "linear", "ease", "ease-in", "ease-out", and "ease-in-out", or a custom "cubic-bezier" value like "cubic-bezier(0.42, 0, 0.58, 1)". Defaults to "linear".
iterations: 1, // The number of times the animation should repeat. Defaults to 1, and can also take a value of Infinity to make it repeat for as long as the element exists.
delay: 0, // The number of milliseconds to delay the start of the animation. Defaults to 0.
endDelay: 0 // The number of milliseconds to delay after the end of an animation. This is primarily of use when sequencing animations based on the end time of another animation. Defaults to 0.
};
animOptions.duration = text.length * this._options.speed;
const elementChildNode = document.createElement('span');
elementChildNode.style.display = 'inline-block';
elementChildNode.style.paddingLeft = '100%';
const textNode = document.createTextNode(text);
elementChildNode.appendChild(textNode);
this._elementContainer.appendChild(elementChildNode);
this._anim = elementChildNode.animate(animKeyframes, animOptions);
this._anim.onfinish = () => {
// console.log('end');
while (this._elementContainer.firstChild) {
this._elementContainer.firstChild.remove();
}
delete this._anim.onfinish;
this.nextURL();
};
this._lastTime = Date.now();
} catch (err) {
console.error(err);
}
}
increaseIndex() {
this._urlIndex += 1;
if (this._urlIndex > this._feedURLs.length - 1) {
this._urlIndex = 0;
}
}
/**
* Fetch RSS
* @param {string} feedURL RSS XML url
*/
fetchRSS(feedURL) {
return new Promise((resolve, reject) => {
console.info(`Start fetching ${feedURL}...`);
fetch(feedURL, { mode: 'cors', redirect: 'follow' })
.then((response) => {
if (!response.ok) {
throw new Error();
}
return response.text();
})
.then((xmlTxt) => {
return resolve(xmlTxt);
})
.catch(() => {
console.error('Error in fetching the RSS feed');
reject();
})
});
}
/**
* Parses RSS XML feed
*
* - Select title elementContainer
* - add dot separator between "headlines"
* - remove <![CDATA[ string
* - remove html tags
*
* @param {string} xmlText
* @returns {string} parsed feed
*/
parseXMLFeed(xmlText) {
try {
const parser = new DOMParser();
const doc = parser.parseFromString(xmlText, "text/xml");
let news = '';
let totals = 0;
for (let item of doc.querySelectorAll('item')) {
let title = item.getElementsByTagName("title")[0].childNodes[0].nodeValue;
// let description = item.getElementsByTagName("description")[0].childNodes[0].nodeValue;
if (title) {
if (news.length) {
news += '\xa0' + ' • ' + '\xa0';
}
title = this.remoteCData(title);
title = this.stripTags(title);
news += title;
totals += 1;
}
if (this._options.maxItems !== null && totals >= this._options.maxItems) {
console.info('Maximum items reached!');
break;
}
}
console.info(`Parsed ${totals} title(s)`);
return news;
} catch (err) {
console.error(err);
return ' ';
}
}
stripTags(textWithTags) {
return textWithTags.replace(/<(.|\n)*?>/g, '');
}
remoteCData(originalText) {
return originalText.replace("<![CDATA[", "").replace("]]>", "");
}
}