forked from adrianengine/jquery-spectragram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspectragram.js
187 lines (154 loc) · 4.66 KB
/
spectragram.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
/*!
* Spectragram by Adrian Quevedo (http://adrianquevedo.com/)
* http://spectragram.js.org/
*
* Licensed under the MIT license.
* You are free to use this plugin in commercial projects as long as the copyright header is left intact.
*
* This plugin uses the Instagram(tm) API and is not endorsed or certified by Instagram, Inc.
* All Instagram(tm) logos and trademarks displayed on this plugin are property of Instagram, Inc.
*
*/
// Utility for older browsers
if ( typeof Object.create !== "function" ) {
Object.create = function ( obj ) {
function F () {}
F.prototype = obj;
return new F();
};
}
( function ( $, window, document, undefined ) {
var Instagram = {
API_URL: "https://graph.instagram.com/me/media?fields=",
API_FIELDS: "caption,media_url,media_type,permalink,timestamp,username",
/**
* Initializes the plugin.
* @param {object} options
* @param {jQuery Object} elem
*/
initialize: function ( options, elem ) {
this.elem = elem;
this.$elem = $( elem );
this.accessToken = $.fn.spectragram.accessData.accessToken,
this.options = $.extend( {}, $.fn.spectragram.options, options );
this.messages = {
defaultImageAltText: "Instagram Photo",
notFound: "This user account is private or doesn't have any photos."
};
this.getPhotos();
},
/**
* Calls the fetch function and work with the response.
*/
getPhotos: function () {
var self = this;
self.fetch().done( function ( results ) {
if ( results.data && results.data.length ) {
self.displayPhotos( results );
} else if ( results.error.message ) {
$.error( "Spectragram.js - Error: " + results.error.message );
} else {
$.error( "Spectragram.js - Error: user does not have photos." );
}
} );
},
/**
* Makes the ajax call and returns the result.
*/
fetch: function () {
var getUrl = this.API_URL + this.API_FIELDS + "&access_token=" + this.accessToken;
return $.ajax( {
type: "GET",
dataType: "jsonp",
cache: false,
url: getUrl
} );
},
/**
* Appends the markup to the DOM with the images.
* @param {object} results
*/
displayPhotos: function ( results ) {
var $element,
$image,
hasCaption,
isWrapperEmpty,
isImage,
imageGroup = [],
imageCaption,
max,
size;
var sizeChart = {
"small": 160,
"medium": 320,
"large": 640
};
isWrapperEmpty = $( this.options.wrapEachWith ).length === 0;
max = ( this.options.max >= results.data.length ) ? results.data.length : this.options.max;
size = sizeChart[this.options.size];
if ( results.data === undefined || results.data.length === 0 ) {
if ( isWrapperEmpty ) {
this.$elem.append( this.messages.notFound );
} else {
this.$elem.append( $( this.options.wrapEachWith ).append( this.messages.notFound ) );
}
return;
}
for ( var i = 0; i < max; i++ ) {
isImage = results.data[i].media_type === "IMAGE";
if (isImage) {
hasCaption = results.data[i].caption !== null || results.data[i].caption !== undefined;
imageCaption = ( hasCaption ) ?
$( "<span>" ).text( results.data[i].caption ).html() :
this.messages.defaultImageAltText;
$image = $( "<img>", {
alt: imageCaption,
attr: {
height: size,
width: size
},
src: results.data[i].media_url
} );
$element = $( "<a>", {
href: results.data[i].permalink,
target: "_blank",
title: imageCaption
} ).append( $image );
if ( isWrapperEmpty ) {
imageGroup.push( $element );
} else {
imageGroup.push( $( this.options.wrapEachWith ).append( $element ) );
}
}
}
this.$elem.append( imageGroup );
if ( typeof this.options.complete === "function" ) {
this.options.complete.call( this );
}
}
};
/**
* Spectragram Plugin Definition.
*/
jQuery.fn.spectragram = function ( options ) {
if ( jQuery.fn.spectragram.accessData.accessToken ) {
this.each( function () {
var instagram = Object.create( Instagram );
instagram.initialize( options, this );
});
} else {
$.error( "You must define an accessToken on jQuery.spectragram" );
}
};
// Plugin Default Options.
jQuery.fn.spectragram.options = {
complete : null,
max: 25,
size: "large",
wrapEachWith: "<li></li>"
};
// Instagram Access Data.
jQuery.fn.spectragram.accessData = {
accessToken: null
};
} )( jQuery, window, document );