aboutsummaryrefslogtreecommitdiff
path: root/includes/js/dojox/data/demos/demo_FlickrRestStore.html
blob: a094bc6a5af3bf65dc5507010e8b89548dfc020e (plain)
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
<!--
  This file is a demo of the FlickrStore, a simple wrapper to the public feed service
  of Flickr.  This just does very basic queries against Flickr and loads the results
  into a list viewing widget.
-->
<html>
<head>
	<title>Demo of FlickrRestStore</title>
	<style type="text/css">

		@import "../../../dijit/themes/tundra/tundra.css";
		@import "../../../dojo/resources/dojo.css";
		@import "../../../dijit/tests/css/dijitTests.css";
		@import "./flickrDemo.css";
	</style>

	<script type="text/javascript" src="../../../dojo/dojo.js" djConfig="isDebug: true, parseOnLoad: true"></script>
	<script type="text/javascript">
		dojo.require("dojo.parser");
		dojo.require("dijit.form.TextBox");
		dojo.require("dijit.form.Button");
		dojo.require("dijit.form.ComboBox");
		dojo.require("dijit.form.NumberSpinner");
		dojo.require("dijit.Tree");
		dojo.require("dojox.data.FlickrStore");
		dojo.require("dojox.data.FlickrRestStore");
		dojo.require("dojox.data.demos.widgets.FlickrViewList");
		dojo.require("dojox.data.demos.widgets.FlickrView");

		function init(){
			var fViewWidgets = [];

			//Set up an onComplete handler for flickrData
			function onComplete(items, request){
				flickrViewsWidget.clearList();
				if(items.length > 0){
					for(var i = 0; i < items.length; i++){
						var flickrData = {
							title: flickrStore.getValue(items[i],"title"),
							author: flickrStore.getValue(items[i],"author"),
							iconUrl: flickrStore.getValue(items[i],"imageUrlSmall"),
							imageUrl: flickrStore.getValue(items[i],"imageUrl")
						}
						flickrViewsWidget.addView(flickrData);
					}
				}
				statusWidget.setValue("PROCESSING COMPLETE.");

			}
			//What to do if a search fails...
			function onError(error, request){
				flickrViewsWidget.clearList();
				statusWidget.setValue("PROCESSING ERROR.");
			}

			//Function to invoke the search of the FlickrStore
			function invokeSearch(){
				var request = {
					query: {
					  apikey: "8c6803164dbc395fb7131c9d54843627"  
					},
					onComplete: onComplete,
					onError: onError
				};

				if(idWidget){
					var userid = idWidget.getValue();
					if(userid && userid !== ""){
						request.query.userid = userid;
					}
				}
				if(tagsWidget){
					var tags = tagsWidget.getValue();
					if(tags && tags !== ""){
						var tagsArray = tags.split(" ");
						tags = "";
						for(var i = 0; i < tagsArray.length; i++){
							tags = tags + tagsArray[i];
							if(i < (tagsArray.length - 1)){
								tags += ","
							}
						}
						request.query.tags = tags;
					}
				}
				if(tagmodeWidget){
					var tagmode = tagmodeWidget.getValue();
					if(tagmode !== ""){
						request.query.tagmode = tagmode;
					}
				}
				
				if(setIdWidget){
					var setId = setIdWidget.getValue();
					if(setId != ""){
					  request.query.setId = setId;
					}
				}
				
				if(fullTextWidget){
					var fullText = fullTextWidget.getValue();
					if(fullText != ""){
					  request.query.text = fullText;
					}
				}
				
				if(sortTypeWidget && sortDirWidget){
					var sortType = sortTypeWidget.getValue();
					var sortDirection = sortDirWidget.getValue();
					
					if(sortType != "" && sortDirection != ""){
						request.query.sort = [
						  {
							attribute: sortType,
							descending: (sortDirection.toLowerCase() == "descending")
						  }					  
						];
					}
				}
				
				if(countWidget){
					request.count = countWidget.getValue();
				}
				if(pageWidget){
					request.start = request.count * (pageWidget.getValue() -1);
				}

				if(statusWidget){
					statusWidget.setValue("PROCESSING REQUEST");
				}

				flickrStore.fetch(request);
			}

			//Lastly, link up the search event.
			var button = dijit.byId("searchButton");
			dojo.connect(button, "onClick", invokeSearch);
		}
		dojo.addOnLoad(init);
	</script>
</head>

<body class="tundra">
	<h1>
		DEMO:  FlickrRestStore Search
	</h1>
	<hr>
	<h3>
		Description:
	</h3>
	<p>
		This simple demo shows how services, such as Flickr, can be wrapped by the datastore API.
		In this demo, you can search public Flickr images through a FlickrRestStore by specifying
		a series of tags (separated by spaces) to search on.  The results will be displayed below the search box.
	</p>
	<p>
		For fun, search on the 3dny tag!
	</p>

	<blockquote>

	<!--
		The store instance used by this demo.
	-->
	<table>
		<tbody>
			<tr>
				<td>
					<b>Status:</b>
				</td>
				<td>
					<div dojoType="dijit.form.TextBox" size="50" id="status" jsId="statusWidget" disabled="true"></div>
				</td>
				<td></td>
				<td></td>
			</tr>
			<tr>
				<td>
					<b>User ID:</b>
				</td>
				<td>
					<div dojoType="dijit.form.TextBox" size="50" id="userid" jsId="idWidget" value="44153025@N00"></div>
				</td>
				<td>
					<b>Set ID</b>
				</td>
				<td>
					  <div dojoType="dijit.form.TextBox" size="50" id="setid" jsId="setIdWidget"></div>
				</td>
			</tr>
			<tr>
				<td>
					<b>Tags:</b>
				</td>
				<td>
					<div dojoType="dijit.form.TextBox" size="50" id="tags" jsId="tagsWidget" value="rollingstones,kinsale"></div>
				</td>
				<td>
					<b>Full Text</b>
				</td>
				<td>
					  <div dojoType="dijit.form.TextBox" size="50" id="fulltext" jsId="fullTextWidget"></div>
				</td>
			</tr>
			<tr>
				<td>
					<b>Tagmode:</b>
				</td>
				<td>
					<select id="tagmode"
							jsId="tagmodeWidget"
							dojoType="dijit.form.ComboBox"
							autocomplete="false"
							value="any"
					>
						<option>any</option>
						<option>all</option>
					</select>
				</td>
				<td>
					<b>Sort</b>
				</td>
				<td>
					  <select dojoType="dijit.form.ComboBox" size="15" id="sorttype" jsId="sortTypeWidget">
						<option>date-posted</option>
						<option>date-taken</option>
						<option>interestingness</option>
					  </select>
					   <select dojoType="dijit.form.ComboBox" size="15" id="sortdirection" jsId="sortDirWidget">
						<option>ascending</option>
						<option>descending</option>
					  </select>
				</td>
			</tr>
			<tr>
				<td>
					<b>Number of Pictures:</b>
				</td>
				<td>
					<div   
						id="count"
						jsId="countWidget"
						dojoType="dijit.form.NumberSpinner"
						value="20"
						constraints="{min:1,max:20,places:0}" 
					></div>
				</td>
				<td>
					<b>Page:</b>
				</td>
				<td>
					<div   
						id="page"
						jsId="pageWidget"
						dojoType="dijit.form.NumberSpinner"
						value="1"
						constraints="{min:1,max:5,places:0}" 
					></div>
				</td>
			</tr>
			<tr>
				<td>
				</td>
				<td>
					<div dojoType="dijit.form.Button" label="Search" id="searchButton" jsId="searchButtonWidget"></div>
				</td>
			</tr>
		</tbody>
	</table>
	<hr/>
	<div dojoType="dojox.data.FlickrRestStore" jsId="flickrStore" label="title"></div>
	<div dojoType="dojox.data.demos.widgets.FlickrViewList" id="flickrViews" jsId="flickrViewsWidget"></div>

</body>
</html>