-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery.npr.js
executable file
·556 lines (444 loc) · 13.2 KB
/
jquery.npr.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
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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
/**
* Plugin for accessing the NPR API via jquery
* @author jgrosman
*
* @TODO Add images to full story
* @TODO Topic Listing using api.npr.org/list
* @TODO Byline styles
* @TODO Add HTML5 audio
*/
(function($){
var NPRAPI = function(element, options) {
var elem = $(element);
var obj = this;
// Defaults
var settings = $.extend({
content : 'summary',
stylesheet : 'css/default.css'
}, options || {});
// Public Methods
/**
* Load a story into the HTML element
*
* @arg options
*/
this.loadStory = function(options) {
// allow the function call to update the
if ( options ) {
$.extend( settings, options );
}
if (!settings.apiKey) {
alert('Required option (apiKey) not found');
return;
}
if (!settings.nprId) {
alert('Required option (nprId) not found');
return;
}
// construct the url to the npr api
var apiUrl = "http://api.npr.org/query?id=" + settings.nprId + "&output=json&apiKey=" + settings.apiKey + "&callback=?";
// fetch the api result
$.getJSON(apiUrl, null, function(data) {
if (data.list.story && data.list.story.length > 0) {
$.each(data.list.story, function (storyIndex, storyObj) {
var storyElm = null;
if (storyIndex < elem.length) {
storyElm = $(elem[storyIndex]);
} else if (settings.cloneToFit) {
// if we run out of elements, keep creating elements until we run out of stories
// clone the first element
var clonedElem = $(elem[0]).clone();
// put it after the last element
storyElm = clonedElem.insertAfter($(elem[elem.length - 1]));
}
if (storyElm) {
if (settings.content == 'summary') {
var storyHtml = renderStorySummary(storyObj);
renderIframe(storyHtml, storyElm);
}
else if (settings.content == 'title') {
var storyHtml = renderStoryTitle(storyObj, 'span');
storyElm.html(storyHtml);
}
else if (settings.content == 'full') {
var storyHtml = renderStoryFull(storyObj);
renderIframe(storyHtml, storyElm);
}
}
});
}
if (settings.onload) {
settings.onload();
}
});
};
/**
* Load the list of news topics into the HTML element
*
* @arg options
*/
this.loadNewsTopics = function(options) {
// allow the function call to update the settings
if ( options ) {
$.extend( settings, options );
}
if (!settings.apiKey) {
alert('Required option (apiKey) not found');
return;
}
// construct the url to the npr api
var apiUrl = "http://api.npr.org/list?id=3218&output=json&apiKey=" + settings.apiKey + "&callback=?";
// fetch the api result
$.getJSON(apiUrl, null, function(data) {
if (data.subcategory && data.subcategory[0].item.length > 0) {
$.each(data.subcategory[0].item, function (itemIndex, itemObj) {
var itemElm = null;
if (itemIndex < elem.length) {
itemElm = $(elem[itemIndex]);
} else if (settings.cloneToFit) {
// if we run out of elements, keep creating elements until we run out of stories
// clone the first element
var clonedElem = $(elem[0]).clone();
// put it after the last element
itemElm = clonedElem.insertAfter($(elem[elem.length - 1]));
}
if (settings.callback) {
var aElm = $('<a></a>');
aElm.attr({href : '#'});
aElm.click(function(e) {
e.preventDefault(e);
return settings.callback(itemObj.id);
});
aElm.html(itemObj.title.$text);
itemElm.html(aElm);
}
else {
itemElm.html(itemObj.title.$text);
}
});
}
if (settings.onload) {
settings.onload();
}
});
};
/**
* Load a transcript for a story into the element
*
* @param options
*/
this.loadTranscript = function(options) {
// allow the function call to update the settings
if ( options ) {
$.extend( settings, options );
}
if (!settings.apiKey) {
alert('Required option (apiKey) not found');
return;
}
if (!settings.nprId) {
alert('Required option (nprId) not found');
return;
}
// construct the url to the npr api
var apiUrl = "http://api.npr.org/transcript?id=" + settings.nprId + "&format=json&apiKey=" + settings.apiKey + "&callback=?";
// fetch the api result
$.getJSON(apiUrl, null, function(data) {
if (data.paragraph) {
var transcriptElm = renderTranscriptText(data);
elem.html(transcriptElm);
}
else {
elem.html("<p>No transcript available</p>");
}
if (settings.onload) {
settings.onload();
}
});
};
// Private Methods
/**
* Render the iframe. This allows the content to use a custom spreadsheet.
*
* @param content
* @param elm
*
* @todo Resizing of the iframe doesn't always work
*/
var renderIframe = function (content, elm) {
var ret = $('<iframe></iframe>');
ret.css({width : '100%', border : 'none', overflow : 'hidden'});
elm.html(ret);
setTimeout(function() {
var elmIframeContents = ret.contents();
var elmIframeHead = elmIframeContents.find('head');
var elmIframeBody = elmIframeContents.find('body');
$(elmIframeHead).append('<link rel="stylesheet" href="' + settings.stylesheet + '" type="text/css" />');
$(elmIframeBody).html(content);
var newHeight = elmIframeBody.get(0).scrollHeight;
var newWidth = elmIframeBody.get(0).scrollWidth;
ret.get(0).height = Math.floor(newHeight * 1.3) + "px";
ret.get(0).width = (newWidth) + "px";
}, 1);
return ret;
};
/**
* Render the story summary into the element
*
* @param storyObj
*/
var renderStorySummary = function(storyObj) {
// create the starting div
var ret = $('<div></div>');
ret.addClass('nprStoryShort');
if (storyObj.image || storyObj.promoArt) {
ret.addClass('nprStoryImg138');
}
ret.append(renderStorySlug(storyObj));
ret.append(renderStoryTitle(storyObj, 'h4'));
if (storyObj.image || storyObj.promoArt) {
ret.append(renderStoryThumbnail(storyObj));
}
var contentDiv = $('<div></div>');
contentDiv.addClass('nprStoryContent');
contentDiv.append(renderStoryTeaser(storyObj));
ret.append(contentDiv);
return ret;
};
/**
* Render the full story
*
* @param storyObj
*
*/
var renderStoryFull = function(storyObj) {
// create the starting div
var ret = $('<div></div>');
ret.addClass('nprStoryFull');
var titleDiv = $('<div></div>');
titleDiv.append(renderStoryTitle(storyObj, 'h1'));
//titleDiv.append(renderStoryByline(storyObj));
ret.append(titleDiv);
var contentDiv = $('<div></div>');
contentDiv.addClass('nprStoryContent');
if (storyObj.fullText) {
//contentDiv.append(renderStoryFullText(storyObj));
contentDiv.append(storyObj.fullText.$text);
}
else {
contentDiv.append(renderStoryTeaser(storyObj));
}
ret.append(contentDiv);
return ret;
};
/**
* Render the story title
*
* @param storyObj
* @param containerElm h1, h2, h3, h4, h5, h6, span
*/
var renderStoryTitle = function(storyObj, containerElm) {
var storyUrl = getStoryUrl(storyObj);
var storyTitle = storyObj.title.$text;
var storyId = storyObj.id;
// create the h4 tag
var ret = $('<' + containerElm + '></' + containerElm + '>');
ret.addClass('nprStoryTitle');
// create the link
var aElm = $('<a></a>');
aElm.attr({href : storyUrl, target : '_BLANK'});
aElm.html(storyTitle);
if (settings.callback) {
aElm.click(function(e) {
e.preventDefault();
return settings.callback(storyId);
});
}
ret.append(aElm);
return ret;
};
/**
* Render the story slug
*
* @param storyObj
*/
var renderStorySlug = function(storyObj) {
var storySlug = storyObj.slug.$text;
var ret = $('<h3></h3>');
ret.addClass('nprStorySlug');
ret.html(storySlug);
return ret;
};
/**
* Render the story thumbnail
*
* @param storyObj
*/
var renderStoryThumbnail = function(storyObj) {
var storyPrimaryImage = getStoryPrimaryImage(storyObj);
var storyUrl = getStoryUrl(storyObj);
var storyId = storyObj.id;
var ret = $('<a></a>');
ret.attr({href : storyUrl, target : '_BLANK'});
ret.addClass('nprStoryThumbnailWrap');
if (settings.callback) {
ret.click(function(e) {
e.preventDefault();
return settings.callback(storyId);
});
}
if (storyPrimaryImage) {
var imgElm = $('<img />');
imgElm.addClass('nprStoryThumbnail');
imgElm.attr({src : storyPrimaryImage.src, width : 138});
ret.append(imgElm);
}
return ret;
};
/**
* Render dateline
*
* @param storyObj
*/
var renderStoryDateline = function(storyObj) {
var storyDate = new Date(Date.parse(storyObj.storyDate.$text));
var ret = $('<span></span>');
ret.addClass('nprStoryDate');
ret.html(formatDisplayDate(storyDate));
return ret;
};
/**
* Render teaser paragraph
*
* @param storyObj
*/
var renderStoryTeaser = function(storyObj) {
var storyTeaser = storyObj.teaser.$text;
var ret = $('<p></p>');
ret.append(renderStoryDateline(storyObj));
ret.append(' ' + storyTeaser);
return ret;
};
/**
* Render all paragraphs of full text
* @param storyObj
* @returns
*/
var renderStoryFullText = function(storyObj) {
var ret = $('<div></div>');
$.each(storyObj.textWithHtml.paragraph, function(index, pgraph) {
var pElm = $('<p></p>');
if (index == 0) {
pElm.append(renderStoryDateline(storyObj));
pElm.append(" ");
};
pElm.append(pgraph.$text);
ret.append(pElm);
});
return ret;
};
/**
* Render the byline
*
* @param storyObj
*/
var renderStoryByline = function (storyObj) {
var ret = $('<p></p>');
ret.addClass('nprStoryByline');
ret.html(getStoryBylines(storyObj));
return ret;
};
/**
* Render the transcript text
*
* @param transcriptObj
*/
var renderTranscriptText = function (transcriptObj) {
// create the starting div
var ret = $('<div></div>');
ret.addClass('nprStoryFull');
$.each(transcriptObj.paragraph, function(index, elm) {
ret.append('<p>' + elm.$text + '</p>');
return true;
});
return ret;
};
/**
* Get the url for this story
*
* @param storyObj
*/
var getStoryUrl = function(storyObj) {
var link = null;
$.each(storyObj.link, function(index, elm) {
if (elm.type == 'html') {
link = elm.$text;
return false;
}
});
return link;
};
/**
* Get the primary image for this story
*
* @param storyObj
*/
var getStoryPrimaryImage = function(storyObj) {
var storyImage = null;
if (storyObj.promoArt) {
storyImage = storyObj.promoArt;
}
else if (storyObj.image) {
$.each(storyObj.image, function(index, imageElm) {
if (imageElm.type == 'primary') {
storyImage = imageElm;
return false;
}
return true;
});
}
return storyImage;
};
/**
* Get the story bylines
*
* @param storyObj
*/
var getStoryBylines = function(storyObj) {
var bylineText = '';
if (storyObj.byline) {
$.each(storyObj.byline, function(index, byline) {
if (index == 0) {
bylineText += 'by ';
}
else {
bylineText += ' and ';
}
bylineText += byline.name.$text;
});
}
return bylineText;
};
/**
* Format the display date
*/
var formatDisplayDate = function(d) {
var monthToString = new Array("January", "February", "March",
"April", "May", "June", "July", "August", "September",
"October", "November", "December");
return monthToString[d.getMonth()] + ' ' + d.getDate() + ', ' + d.getFullYear();
};
};
$.fn.npr = function(options) {
var element = $(this);
// Return early if this element already has a plugin instance
if (element.data('NPRAPI')) {
return element.data('NPRAPI');
}
// pass options to plugin constructor
var myplugin = new NPRAPI(this, options);
// Store plugin object in this element's data
element.data('NPRAPI', myplugin);
return myplugin;
};
})(jQuery);