-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathWidget.js
More file actions
394 lines (320 loc) · 13.5 KB
/
Widget.js
File metadata and controls
394 lines (320 loc) · 13.5 KB
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
///////////////////////////////////////////////////////////////////////////
// Copyright © 2015 Softwhere Solutions
// All Rights Reserved.
//
// Licensed under the Apache License Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
///////////////////////////////////////////////////////////////////////////
/*global console, define, dojo */
define(['dojo/_base/declare',
'jimu/BaseWidget',
'dijit/_WidgetsInTemplateMixin',
'dojo/_base/lang',
'dojo/_base/array',
'dojo/_base/html',
'dojo/query',
'dojo/on',
'dojo/topic',
'dojo/string',
'esri/arcgis/Portal',
'esri/geometry/Extent',
'esri/geometry/webMercatorUtils',
'jimu/ConfigManager',
'jimu/MapManager',
'jimu/tokenUtils',
'jimu/dijit/Message',
'jimu/dijit/Search',
'jimu/dijit/TabContainer3',
'./ItemTable'
],
function (declare,
BaseWidget,
_WidgetsInTemplateMixin,
lang,
array,
html,
query,
on,
topic,
string,
arcgisPortal,
Extent,
webMercatorUtils,
ConfigManager,
MapManager,
tokenUtils,
Message,
Search,
TabContainer3,
ItemTable) {
//To create a widget, you need to derive from BaseWidget.
return declare([BaseWidget, _WidgetsInTemplateMixin], {
// Custom widget code goes here
baseClass: 'jimu-widget-changewebmap',
// the tabs
tab: null,
_itemTypes: '["Web Map"]',
_typeKeywords: '[]',
// set on sign in
credential: null,
// user id of logged in user
currentUserId: '',
//methods to communication with app container:
postCreate: function () {
this.inherited(arguments);
this._initTabs();
//bind events
this.own(
on(this.mycontentItemTable, 'item-selected', lang.hitch(this, this._onItemSelected))
);
this.own(
on(this.publicItemTable, 'item-selected', lang.hitch(this, this._onItemSelected))
);
this.searchPublicContent();
this.updateUIForSignIn();
console.log('ChangeWebMap :: postCreate :: completed');
},
startup: function () {
this.inherited(arguments);
console.log('ChangeWebMap :: startup');
},
onOpen: function () {
console.log('ChangeWebMap :: onOpen');
},
onSignIn: function (credential) {
this.credential = credential;
this.currentUserId = credential.userId;
this.searchMyContent(this.currentUserId);
this.updateUIForSignIn();
console.log('ChangeWebMap :: onSignIn : user signed in ', this.currentUserId);
},
onSignOut: function () {
this.credential = null;
this.currentUserId = '';
this.updateUIForSignIn();
this.mycontentItemTable.clear();
console.log('ChangeWebMap :: onSignOut : user signed out ');
},
doSignIn: function () {
console.log("ChangeWebMap :: doSignIn");
tokenUtils.signInPortal(this.config.portalUrl)
.then(function (credential) {
topic.publish('userSignIn', credential);
}, function () {
var msg = new Message({
message: "An error occurred logging in. Please try again.",
type: 'error'
});
});
// will callback onSignIn when completed
},
doSignOut: function () {
console.log("ChangeWebMap :: doSignOut");
// fire event for main app to handle
// this is not really required since signOutAll publishes the event
// but makes double sure incase the credential is not found...
topic.publish('userSignOut');
// this should be all that is required since it deletes cached login
// call signout will callback onSignOut when completed - unless it does not find the credential.
tokenUtils.signOutAll();
},
/**
* set the ui for sign in and out
*/
updateUIForSignIn: function () {
var hasSignIn = !!this.currentUserId,
display = !hasSignIn ? "block" : "none";
// if logged in, hide the signin button
html.setStyle(this.signInPanel, 'display', display);
// if logged in, hide the signout button
display = hasSignIn ? "block" : "none";
html.setStyle(this.signOutPanel, 'display', display);
this.signOutMessage.innerHTML = string.substitute("You are logged in as <strong>${userid}</strong>", {
"userid": this.currentUserId
});
console.log('ChangeWebMap :: updateUIForSignIn :: hasSignIn = ', hasSignIn);
},
/**
* prompt the user to zoom to the item
* @param {Object} item web map item from Portal
*/
promptUserToZoomToItem: function (item) {
// the dialog is async so processing continues before question is answered
var dlg = new Message({
message: "Do you want to zoom to the new map?",
type: 'question',
buttons: [{
label: "No",
onClick: lang.hitch(this, function () {
console.log('ChangeWebMap :: promptUserToZoomToItem :: keep current extent');
dlg.close();
})
}, {
label: "Yes",
onClick: lang.hitch(this, function () {
dlg.close();
console.log('ChangeWebMap :: promptUserToZoomToItem :: zooming to new extent');
this.zoomToItem(item);
})
}]
});
},
/**
* Zoom the map to the given web map
* @param {Object} item web map item from Portal
*/
zoomToItem: function (item) {
var extentGCS,
extentWM,
cfg;
// item have extent in geographic
cfg = {
"xmin": item.extent[0][0],
"ymin": item.extent[0][1],
"xmax": item.extent[1][0],
"ymax": item.extent[1][1],
"spatialReference": {
"wkid": 4326
}
};
extentGCS = new Extent(cfg);
// assumes map is in web mercator
extentWM = webMercatorUtils.geographicToWebMercator(extentGCS);
console.log('ChangeWebMap :: zoomToItem :: map itemid ', this.map.itemId);
this.map.setExtent(extentWM, true).then(
function () {
console.log('ChangeWebMap :: zoomToItem :: zoomed to ', extentGCS);
},
function () {
console.error("ChangeWebMap :: zoomToItem :: failed");
}
);
},
/**
* define the tabs in the UI
*/
_initTabs: function () {
var tabs,
tabMyContent,
tabPublic;
tabMyContent = {
title: "My Content",
content: this.mycontentTabNode
};
tabPublic = {
title: "Public",
content: this.publicTabNode
};
tabs = [tabPublic, tabMyContent];
this.tab = new TabContainer3({
tabs: tabs
}, this.tabNode);
this.own(on(this.tab, "tabChanged", lang.hitch(this, function (title) {
console.log('ChangeWebMap :: tabChanged to ', title);
})));
},
/**
* set the my content table with the query for the given user
* @param {String} userId user id
*/
searchMyContent: function (userId) {
console.log('ChangeWebMap :: searchMyContent :: starting for user = ', userId);
this.mycontentItemTable.clear();
var query = {
q: "type:Web Map AND owner:" + userId,
start: 1,
num: 16,
f: 'json'
};
this.mycontentItemTable.set('portalUrl', this.config.portalUrl);
this.mycontentItemTable.searchAllItems(query);
this.mycontentItemTable.showAllItemsSection();
},
/**
* set the query on the item table in the public tab
*/
searchPublicContent: function () {
console.log("ChangeWebMap :: searchPublicContent :: starting ");
this.publicItemTable.clear();
var query = {
q: this.config.publicContent.query,
start: 1,
num: 16,
f: 'json'
};
this.publicItemTable.set('portalUrl', this.config.portalUrl);
this.publicItemTable.searchAllItems(query);
this.publicItemTable.showAllItemsSection();
console.log("ChangeWebMap :: searchPublicContent :: completed ");
},
/**
* return the options object for the current map
* @returns {Object} object with center in lat/lon and scale of the current map
*/
getCurrentMapOptions: function () {
var options = null,
scale = 0,
centerPt,
lat = 0,
lon = 0;
scale = this.map.getScale();
centerPt = this.map.extent.getCenter();
lat = centerPt.getLatitude();
lon = centerPt.getLongitude();
// check for valid values
if (!!scale && !!lat && !!lon) {
options = {
"center": [lon, lat],
"scale": scale
};
}
return options;
},
// when a web map is selected make it active, but keep the extent
_onItemSelected: function (item) {
var mapConfig,
onMapChanged,
options;
mapConfig = {
"itemId": item.id
};
// set the map options to override the default extent with the current extent
// to zoom to default extent of map, do not set the map options
options = this.getCurrentMapOptions();
if (options) {
mapConfig.mapOptions = options;
}
console.log('ChangeWebMap :: zoomToItem :: map itemid ', this.map.itemId);
// when the map is loaded it uses the previous extext
// prompt user to zoom to the default extent of new map
onMapChanged = topic.subscribe("mapChanged", lang.hitch(this, function (newMap) {
console.log('ChangeWebMap :: _onItemSelected :: map changed from ', this.map.itemId, ' to ', newMap.itemId);
// update map reference here
// since this.map still refers to old map?
// ConfigManager has not recreated widget with new map yet
this.map = newMap;
this.promptUserToZoomToItem(item);
// do not listen any more
onMapChanged.remove();
}));
// this is the official way to do this, but reloads the whole app instead of just the map
// MapManager.getInstance().onAppConfigChanged(this.appConfig, 'mapChange', mapConfig);
ConfigManager.getInstance()._onMapChanged(mapConfig);
//so manually apply config and recreate map
// lang.mixin(this.appConfig.map, mapConfig);
// this.map.destroy();
// debugger;
// MapManager.getInstance().showMap();
console.log('ChangeWebMap :: _onItemSelected :: map change to ', mapConfig);
}
});
});