-
Notifications
You must be signed in to change notification settings - Fork 46
/
csphotoselector.js
executable file
·666 lines (590 loc) · 21.1 KB
/
csphotoselector.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
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
/*
* CS Photo Selector
* @author: Carson Shold (@cshold)
*/
var CSPhotoSelector = (function(module, $) {
// Public functions
var init, setAlbums, getAlbums, getAlbumById, getPhotoById, setPhotos, newInstance,
// Private variables
settings, albums, prev, photos,
$albums, $photos, $container, $albumsContainer, $photosContainer, $selectedCount, $selectedCountMax, $pageNumber, $pageNumberTotal, $pagePrev, $pageNext, $buttonClose, $buttonOK, $buttonCancel,
// Private functions
$getAlbumById, $getPhotoById, buildAlbumSelector, buildPhotoSelector, sortPhotos, log, htmlEntities;
/////////////////////////////////////////
// PUBLIC FUNCTIONS FOR GLOBAL PLUGIN
// They are public because they are added to module and returned
/////////////////////////////////////////
/**
* Initialise the plugin and define global options
*/
init = function(options) {
// Default settings
settings = {
speed : 100,
debug : false,
disabledClass : 'CSPhotoSelector_disabled',
albumSelectedClass : 'CSPhotoSelector_photoSelected',
albumDisabledClass : 'CSPhotoSelector_photoDisabled',
photoFilteredClass : 'CSPhotoSelector_photoFiltered',
containerSelector : '#CSPhotoSelector',
albumsContainerSelector : '.CSAlbum_container',
photosContainerSelector : '.CSPhoto_container',
photosWrapperSelector : '.CSPhotoSelector_wrapper',
selectedPhotoCountSelector : '.CSPhotoSelector_selectedPhotoCount',
selectedPhotoCountMaxSelector : '.CSPhotoSelector_selectedPhotoCountMax',
pageNumberSelector : '#CSPhotoSelector_pageNumber',
pageNumberTotalSelector : '#CSPhotoSelector_pageNumberTotal',
pagePrevSelector : '#CSPhotoSelector_pagePrev',
pageNextSelector : '#CSPhotoSelector_pageNext',
buttonBackToAlbumsSelector : '#CSPhotoSelector_backToAlbums',
buttonCloseSelector : '#CSPhotoSelector_buttonClose',
buttonOKSelector : '#CSPhotoSelector_buttonOK',
buttonCancelSelector : '#CSPhotoSelector_buttonCancel',
loader : '#CSPhotoSelector_loader',
pagination : '.CSPhotoSelector_pageNumberContainer, #CSPhotoSelector_pagePrev, #CSPhotoSelector_pageNext'
};
// Override defaults with arguments
$.extend(settings, options);
// Select DOM elements
$container = $(settings.containerSelector);
$albumsContainer = $container.find(settings.albumsContainerSelector);
$photosContainer = $container.find(settings.photosContainerSelector);
$photosWrapper = $container.find(settings.photosWrapperSelector);
$selectedCount = $container.find(settings.selectedPhotoCountSelector);
$selectedCountMax = $container.find(settings.selectedPhotoCountMaxSelector);
$pageNumber = $container.find(settings.pageNumberSelector);
$pageNumberTotal = $container.find(settings.pageNumberTotalSelector);
$pagePrev = $container.find(settings.pagePrevSelector);
$pageNext = $container.find(settings.pageNextSelector);
$backToAlbums = $container.find(settings.buttonBackToAlbumsSelector);
$buttonClose = $container.find(settings.buttonCloseSelector);
$buttonOK = $container.find(settings.buttonOKSelector);
$buttonCancel = $container.find(settings.buttonCancelSelector);
$loader = $container.find(settings.loader);
$pagination = $container.find(settings.pagination);
};
/**
* If your website has already loaded the user's Facebook photos, pass them in here to avoid another API call.
*/
setAlbums = function(input) {
var i, len;
if (!input || input.length === 0) {
return;
}
input = Array.prototype.slice.call(input);
input = input.sort(sortPhotos);
albums = [];
for (var i=0; i<input.length; i++){
albums[albums.length] = input[i];
}
};
getAlbums = function() {
return albums;
};
setPhotos = function(input) {
var i, len;
if (!input || input.length === 0) {
return;
}
input = Array.prototype.slice.call(input);
photos = input;
};
getPhotos = function() {
return photos;
};
/**
* Use this function if you have a photo ID and need to know their name
*/
getAlbumById = function(id) {
var i, len;
id = id.toString();
for (i = 0, len = albums.length; i < len; i += 1) {
if (albums[i].id === id) {
return albums[i];
}
}
return null;
};
getPhotoById = function(id) {
var i, len;
id = id.toString();
for (i = 0, len = photos.length; i < len; i += 1) {
if (photos[i].id === id) {
return photos[i];
}
}
return null;
};
/**
* Create a new instance of the photo selector
* @param options An object containing settings that are relevant to this particular instance
*/
newInstance = function(options) {
// Public functions
var showAlbumSelector, showPhotoSelector, hidePhotoSelector, hideAlbumSelector, getselectedAlbumIds, getselectedPhotoIds, setDisabledPhotoIds, reset,
// Private variables
instanceSettings, selectedAlbumIds = [], selectedPhotoIds = [], disabledPhotoIds = [],
// Private functions
bindEvents, unbindEvents, updateAlbumContainer, updatePhotosContainer, updatePaginationButtons, selectAlbum, selectPhotos;
if (!settings) {
log('Cannot create a new instance of CSPhotoSelector because the plugin not initialised.');
return false;
}
// Default settings
instanceSettings = {
maxSelection : 1,
albumsPerPage : 6,
photosPerPage : 10,
autoDeselection : false, // Allow the user to keep on selecting once they reach maxSelection, and just deselect the first selected photo
callbackAlbumSelected : null,
callbackAlbumUnselected : null,
callbackPhotoSelected : null,
callbackPhotoUnselected : null,
callbackMaxSelection : null,
callbackSubmit : null
};
// Override defaults with arguments
$.extend(instanceSettings, options);
/////////////////////////////////////////
// PUBLIC FUNCTIONS FOR AN INSTANCE
/////////////////////////////////////////
/**
* Call this function to show the interface
*/
showAlbumSelector = function(id, callback) {
var i, len;
log('CSPhotoSelector - show Albums');
if (!$albums) {
return buildAlbumSelector(id, function() {
showAlbumSelector(id, callback);
});
} else {
bindEvents();
// Update classnames to represent the selections for this instance
$albums.removeClass(settings.albumSelectedClass + ' ' + settings.albumDisabledClass + ' ' + settings.photoFilteredClass);
for (i = 0, len = albums.length; i < len; i += 1) {
if ($.inArray(albums[i].id, selectedAlbumIds) !== -1) {
$($albums[i]).addClass(settings.albumSelectedClass);
}
if ($.inArray(albums[i].id, disabledPhotoIds) !== -1) {
$($albums[i]).addClass(settings.albumDisabledClass);
}
}
// Update paging
updateAlbumContainer(1);
updatePaginationButtons(1);
$container.fadeIn(100);
if (typeof callback === 'function') {
callback();
}
}
};
showPhotoSelector = function(callback, albumId) {
var i, len;
log('CSPhotoSelector - show Photos');
// show loader until we get a response
$loader.show();
if (!$photos || albumId) {
return buildPhotoSelector(function() {
showPhotoSelector(callback);
}, albumId);
} else {
// Update classnames to represent the selections for this instance
$photos.removeClass(settings.albumSelectedClass + ' ' + settings.albumDisabledClass + ' ' + settings.photoFilteredClass);
for (i = 0, len = photos.length; i < len; i += 1) {
if ($.inArray(photos[i].id, selectedPhotoIds) !== -1) {
$($photos[i]).addClass(settings.albumSelectedClass);
}
if ($.inArray(photos[i].id, disabledPhotoIds) !== -1) {
$($photos[i]).addClass(settings.albumDisabledClass);
}
}
// Update paging
$selectedCount.html(selectedPhotoIds.length);
$selectedCountMax.html(instanceSettings.maxSelection);
updatePhotosContainer(1);
// updatePaginationButtons(1);
$container.fadeIn(100);
if (typeof callback === 'function') {
callback();
}
}
};
hidePhotoSelector = function() {
$photosWrapper.removeClass('CSPhoto_container_active');
};
hideAlbumSelector = function() {
unbindEvents();
$container.fadeOut(100);
};
getselectedAlbumIds = function() {
return selectedAlbumIds;
};
getselectedPhotoIds = function() {
return selectedPhotoIds;
};
/**
* Disabled photos are greyed out in the interface and are not selectable.
*/
setDisabledPhotoIds = function(input) {
disabledPhotoIds = input;
};
/**
* Remove selections, clear disabled list, go to page 1, etc
*/
reset = function() {
if (!albums || albums.length === 0) {
return;
}
// hide the photo container
$photosWrapper.removeClass('CSPhoto_container_active');
$buttonOK.hide();
$albumsContainer.empty();
$photosContainer.empty();
selectedAlbumIds = [];
selectedPhotoIds = [];
$albums = null;
$selectedCount.html("0");
disabledPhotoIds = [];
updatePaginationButtons(1);
};
/////////////////////////////////////////
// PRIVATE FUNCTIONS FOR AN INSTANCE
/////////////////////////////////////////
// Add event listeners
bindEvents = function() {
$buttonClose.bind('click', function(e) {
e.preventDefault();
hideAlbumSelector();
});
$buttonCancel.bind('click', function(e) {
e.preventDefault();
hideAlbumSelector();
});
$buttonOK.bind('click', function(e) {
e.preventDefault();
hideAlbumSelector();
if (typeof instanceSettings.callbackSubmit === "function") { instanceSettings.callbackSubmit(selectedPhotoIds); }
});
$backToAlbums.bind('click', function(e) {
e.preventDefault();
$pagination.show();
$buttonOK.hide();
hidePhotoSelector();
});
$pagePrev.bind('click', function(e) {
var pageNumber = parseInt($pageNumber.text(), 10) - 1;
e.preventDefault();
if (pageNumber < 1) { return; }
updateAlbumContainer(pageNumber);
updatePaginationButtons(pageNumber);
});
$pageNext.bind('click', function(e) {
var pageNumber = parseInt($pageNumber.text(), 10) + 1;
e.preventDefault();
if ($(this).hasClass(settings.disabledClass)) { return; }
updateAlbumContainer(pageNumber);
updatePaginationButtons(pageNumber);
});
$(window).bind('keydown', function(e) {
if (e.which === 27) {
// The escape key has the same effect as the close button
e.preventDefault();
e.stopPropagation();
hideAlbumSelector();
}
});
};
// Remove event listeners
unbindEvents = function() {
$buttonClose.unbind('click');
$buttonOK.unbind('click');
$buttonCancel.unbind('click');
$albumsContainer.children().unbind('click');
$photosContainer.children().unbind('click');
$pagePrev.unbind('click');
$pageNext.unbind('click');
$(window).unbind('keydown');
};
// Set the contents of the albums container
updateAlbumContainer = function(pageNumber) {
var firstIndex, lastIndex;
firstIndex = (pageNumber - 1) * instanceSettings.albumsPerPage;
lastIndex = pageNumber * instanceSettings.albumsPerPage;
$albumsContainer.html($albums.not("." + settings.photoFilteredClass).slice(firstIndex, lastIndex));
$albumsContainer.children().bind('click', function(e) {
e.preventDefault();
selectAlbum($(this));
});
};
// Set the contents of the photos container
updatePhotosContainer = function(pageNumber) {
var firstIndex, lastIndex;
firstIndex = (pageNumber - 1) * instanceSettings.photosPerPage;
lastIndex = pageNumber * instanceSettings.photosPerPage;
$photosContainer.html($photos.not("." + settings.photoFilteredClass).slice(firstIndex, lastIndex));
$photosContainer.children().bind('click', function(e) {
e.preventDefault();
selectPhotos($(this));
});
};
updatePaginationButtons = function(pageNumber) {
var numPages = Math.ceil((albums.length) / instanceSettings.albumsPerPage);
$pageNumber.html(pageNumber);
$pageNumberTotal.html(numPages);
if (pageNumber === 1 || numPages === 1) {
$pagePrev.addClass(settings.disabledClass);
} else {
$pagePrev.removeClass(settings.disabledClass);
}
if (pageNumber === numPages || numPages === 1) {
$pageNext.addClass(settings.disabledClass);
} else {
$pageNext.removeClass(settings.disabledClass);
}
};
selectAlbum = function($album) {
var albumId, i, len, removedId;
albumId = $album.attr('data-id');
// If the album is disabled, ignore this
if ($album.hasClass(settings.albumDisabledClass)) {
return;
}
if (!$album.hasClass(settings.albumSelectedClass)) {
// If autoDeselection is enabled and they have already selected the max number of albums, deselect the first album
if (instanceSettings.autoDeselection && selectedAlbumIds.length === instanceSettings.maxSelection) {
removedId = selectedAlbumIds.splice(0, 1);
$getAlbumById(removedId).removeClass(settings.albumSelectedClass);
$selectedCount.html(selectedAlbumIds.length);
}
if (selectedAlbumIds.length < instanceSettings.maxSelection) {
// Add album to selectedAlbumIds
if ($.inArray(albumId, selectedAlbumIds) === -1) {
selectedAlbumIds.push(albumId);
$album.addClass(settings.albumSelectedClass);
$selectedCount.html(selectedAlbumIds.length);
log('CSPhotoSelector - newInstance - selectAlbum - selected IDs: ', selectedAlbumIds);
if (typeof instanceSettings.callbackAlbumSelected === "function") { instanceSettings.callbackAlbumSelected(albumId); }
} else {
log('CSPhotoSelector - newInstance - selectAlbum - ID already stored');
}
}
} else {
// Remove album from selectedAlbumIds
for (i = 0, len = selectedAlbumIds.length; i < len; i += 1) {
if (selectedAlbumIds[i] === albumId) {
selectedAlbumIds.splice(i, 1);
$album.removeClass(settings.albumSelectedClass);
$selectedCount.html(selectedAlbumIds.length);
if (typeof instanceSettings.callbackAlbumUnselected === "function") { instanceSettings.callbackAlbumUnselected(albumId); }
return false;
}
}
}
if (selectedAlbumIds.length === instanceSettings.maxSelection) {
if (typeof instanceSettings.callbackMaxSelection === "function") { instanceSettings.callbackMaxSelection(); }
}
};
selectPhotos = function($photo) {
var photoId, i, len, removedId;
photoId = $photo.attr('data-id');
// If the photo is disabled, ignore this
if ($photo.hasClass(settings.albumDisabledClass)) {
return;
}
if (!$photo.hasClass(settings.albumSelectedClass)) {
// If autoDeselection is enabled and they have already selected the max number of photos, deselect the first photo
if (instanceSettings.autoDeselection && selectedPhotoIds.length === instanceSettings.maxSelection) {
removedId = selectedPhotoIds.splice(0, 1);
$getPhotoById(removedId).removeClass(settings.albumSelectedClass);
$selectedCount.html(selectedPhotoIds.length);
}
if (selectedPhotoIds.length < instanceSettings.maxSelection) {
// Add photo to selectedPhotoIds
if ($.inArray(photoId, selectedPhotoIds) === -1) {
selectedPhotoIds.push(photoId);
$photo.addClass(settings.albumSelectedClass);
$selectedCount.html(selectedPhotoIds.length);
log('CSPhotoSelector - newInstance - selectPhoto - selected IDs: ', selectedPhotoIds);
if (typeof instanceSettings.callbackPhotoSelected === "function") { instanceSettings.callbackPhotoSelected(photoId); }
} else {
log('CSPhotoSelector - newInstance - selectPhoto - ID already stored');
}
}
} else {
// Remove photo from selectedPhotoIds
for (i = 0, len = selectedPhotoIds.length; i < len; i += 1) {
if (selectedPhotoIds[i] === photoId) {
selectedPhotoIds.splice(i, 1);
$photo.removeClass(settings.albumSelectedClass);
$selectedCount.html(selectedPhotoIds.length);
if (typeof instanceSettings.callbackPhotoUnselected === "function") { instanceSettings.callbackPhotoUnselected(photoId); }
return false;
}
}
}
if (selectedPhotoIds.length === instanceSettings.maxSelection) {
if (typeof instanceSettings.callbackMaxSelection === "function") { instanceSettings.callbackMaxSelection(); }
}
// log(selectedPhotoIds);
};
// Return an object with access to the public members
return {
showAlbumSelector : showAlbumSelector,
showPhotoSelector : showPhotoSelector,
hidePhotoSelector : hidePhotoSelector,
hideAlbumSelector : hideAlbumSelector,
getselectedAlbumIds : getselectedAlbumIds,
getselectedPhotoIds : getselectedPhotoIds,
setDisabledPhotoIds : setDisabledPhotoIds,
reset : reset
};
};
/////////////////////////////////////////
// PRIVATE FUNCTIONS FOR GLOBAL PLUGIN
/////////////////////////////////////////
$getAlbumById = function(id) {
var i, len;
id = id.toString();
for (i = 0, len = albums.length; i < len; i += 1) {
if (albums[i].id === id) {
return $($albums[i]);
}
}
return $("");
};
$getPhotoById = function(id) {
var i, len;
id = id.toString();
for (i = 0, len = photos.length; i < len; i += 1) {
if (photos[i].id === id) {
return $($photos[i]);
}
}
return $("");
};
/**
* Load the Facebook albums and build the markup
*/
buildAlbumSelector = function(id, callback) {
var buildMarkup, buildAlbumMarkup;
log("buildAlbumSelector");
$pagination.show();
if (!FB) {
log('The Facebook SDK must be initialised before showing the photo selector');
return false;
}
// Check that the user is logged in to Facebook
FB.getLoginStatus(function(response) {
if (response.status === 'connected') {
var accessToken = response.authResponse.accessToken;
// Load Facebook photos
FB.api('/'+ id +'/albums', function(response) {
if (response.data.length) {
setAlbums(response.data);
// Build the markup
buildMarkup(accessToken);
// Call the callback
if (typeof callback === 'function') { callback(); }
} else {
alert ('Sorry, your friend won\'t let us look through their photos');
log('CSPhotoSelector - buildAlbumSelector - No albums returned');
return false;
}
});
} else {
log('CSPhotoSelector - buildAlbumSelector - User is not logged in to Facebook');
return false;
}
});
// Build the markup of the album selector
buildMarkup = function(accessToken) {
// loop through photo albums
var i, len, html = '';
for (i = 0, len = albums.length; i < len; i += 1) {
html += buildAlbumMarkup(albums[i], accessToken);
}
$albums = $(html);
};
// Return the markup for a single album
buildAlbumMarkup = function(album, accessToken) {
return '<a href="#" class="CSPhotoSelector_album" data-id="' + album.id + '">' +
'<div class="CSPhotoSelector_albumWrap"><div>' +
'<img src="https://graph.facebook.com/'+ album.id +'/picture?type=album&access_token='+ accessToken +'" alt="' + htmlEntities(album.name) + '" class="CSPhotoSelector_photoAvatar" />' +
'</div></div>' +
'<div class="CSPhotoSelector_photoName">' + htmlEntities(album.name) + '</div>' +
'</a>';
};
};
/**
* Load the Facebook photos and build the markup
*/
buildPhotoSelector = function(callback, albumId) {
var buildSecondMarkup, buildPhotoMarkup;
log("buildPhotoSelector");
photos = [];
FB.api('/'+ albumId +'/photos?fields=id,picture,source,height,width,images&limit=500', function(response) {
if (response.data) {
setPhotos(response.data);
// Build the markup
buildSecondMarkup();
// Call the callback
if (typeof callback === 'function') {
callback();
// hide the loader and pagination
$loader.hide();
$pagination.hide();
// set the photo container to active
$photosWrapper.addClass('CSPhoto_container_active');
}
} else {
log('CSPhotoSelector - showPhotoSelector - No photos returned');
return false;
}
});
// Build the markup of the photo selector
buildSecondMarkup = function() {
//loop through photos
var i, len, html = '';
// if photos is empty, we need to try again
if (!photos) {
buildPhotoSelector(null, albumId);
}
for (i = 0, len = photos.length; i < len; i += 1) {
html += buildPhotoMarkup(photos[i]);
}
$photos = $(html);
};
buildPhotoMarkup = function(photo) {
return '<a href="#" class="CSPhotoSelector_photo CSPhotoSelector_clearfix" data-id="' + photo.id + '">' +
'<span><img src="' + photo.picture + '" alt="" class="CSPhotoSelector_photoAvatar" /></span>' +
'</a>';
};
};
sortPhotos = function(photo1, photo2) {
if (photo1.upperCaseName === photo2.upperCaseName) { return 0; }
if (photo1.upperCaseName > photo2.upperCaseName) { return 1; }
if (photo1.upperCaseName < photo2.upperCaseName) { return -1; }
};
log = function() {
if (settings && settings.debug && window.console) {
console.log(Array.prototype.slice.call(arguments));
}
};
htmlEntities = function(str) {
if (!str) return '';
// replace HTML tags in a string with encoded entities
return String(str).replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>').replace(/"/g, '"');
};
module = {
init : init,
setAlbums : setAlbums,
getAlbums : getAlbums,
getAlbumById : getAlbumById,
setPhotos : setPhotos,
getPhotos : getPhotos,
getPhotoById : getPhotoById,
newInstance : newInstance
};
return module;
}(CSPhotoSelector || {}, jQuery));