forked from likeastore/ngDialog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
456 lines (398 loc) · 19.2 KB
/
index.html
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
<!doctype html>
<html ng-app="exampleDialog">
<head>
<meta charset="utf-8">
<title>ngDialog demo</title>
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
<link rel="stylesheet" href="../css/ngDialog.css">
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,400italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="../css/ngDialog-theme-default.css">
<link rel="stylesheet" href="../css/ngDialog-theme-plain.css">
<link rel="stylesheet" href="../css/ngDialog-custom-width.css">
<style>
a, button {
font: 14px 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
display: block;
color: #333;
margin-bottom: 10px;
}
/* The following 'important' styles are just here to show off trapFocus */
button.ngdialog-button {
border: solid transparent 1px !important;
}
button.ngdialog-button:focus {
border: solid black 1px !important;
}
.ngdialog h2:focus { outline: none; }
button.inline {
display: inline
}
</style>
</head>
<body ng-controller="MainCtrl">
<!-- Buttons and links -->
<a id="via-service" href="" ng-click="open()">Open via service</a>
<button type="button"
ng-dialog="firstDialogId"
ng-dialog-controller="InsideCtrl"
ng-dialog-data="{{jsonData}}"
ng-dialog-class="ngdialog-theme-default"
ng-dialog-show-close="false">Open via directive</button>
<a href="" ng-click="openDefault()">Default theme</a>
<a href="" ng-click="openDefaultWithoutAnimation()">Default theme without animation</a>
<a href="" ng-click="openPlain()">Plain theme</a>
<a href="" ng-click="openPlainCustomWidth()">Plain theme with custom width</a>
<a href="" ng-click="openInlineController()">Inline controller</a>
<a href="" ng-click="openControllerAsController()">Controller with usage of ControllerAs syntax</a>
<a href="" ng-click="openTemplate()">Open with external template for modal</a>
<a href="" ng-click="openTemplateNoCache()">Open with external template for modal (disabled cache)</a>
<a href="" ng-click="openTimed()">Open and use return value to close later</a>
<a href="" ng-click="openNotify()">Open and use promise to know when closed</a>
<a href="" ng-click="openConfirm()">Open confirm modal</a>
<a href="" ng-click="openDefaultWithPreCloseCallbackInlined()">Open default modal with pre-close callback inlined</a>
<button type="button"
ng-dialog="firstDialogId"
ng-dialog-controller="InsideCtrl"
ng-dialog-data="{{jsonData}}"
ng-dialog-class="ngdialog-theme-default"
ng-dialog-scope="this"
ng-dialog-pre-close-callback="directivePreCloseCallback"
ng-dialog-show-close="false">Open via directive with pre-close callback</button>
<a href="" ng-click="openConfirmWithPreCloseCallbackOnScope()">Open confirm modal with pre-close callback on scope</a>
<a href="" ng-click="openConfirmWithPreCloseCallbackInlinedWithNestedConfirm()">Open confirm modal with pre-close inlined with nested confirm.</a>
<a href="" ng-click="openWithoutOverlay()">Open without overlay</a>
<a href="" ng-click="openWithJSSpecificWidth()" id="js-width">Open with js specific width</a>
<a href="" ng-click="openWithJSSpecificHeight()" id="js-height">Open with js specific height</a>
<!-- Templates -->
<script type="text/ng-template" id="firstDialogId">
<div class="ngdialog-message">
<h3>ngDialog template</h3>
<p ng-show="theme">Test content for <code>{{theme}}</code></p>
<p ng-show="ngDialogId">Dialog Id: <code>{{ngDialogId}}</code></p>
<p class="data-passed-through" ng-show="ngDialogData.foo">Data passed through: <code>{{ngDialogData.foo}}</code></p>
<p ng-show="dialogModel.message">Scope passed through: <code>{{dialogModel.message}}</code></p>
<p>Close this dialog: <button class="inline close-this-dialog" ng-click="closeThisDialog()">Close</button></p>
</div>
<div class="ngdialog-buttons">
<button type="button" class="ngdialog-button ngdialog-button-secondary"
ng-dialog="secondDialogId"
ng-dialog-class="ngdialog-theme-default"
ng-dialog-controller="SecondModalCtrl"
ng-dialog-close-previous>Close and open</button>
<button type="button" class="ngdialog-button ngdialog-button-primary" ng-click="openSecond()">Open next</button>
</div>
</script>
<script type="text/ng-template" id="dialogWithNestedConfirmDialogId">
<div class="ngdialog-message">
<h3>ngDialog template</h3>
<p>Dialog containing work in which a user has to perform a task (e.g. editing data).</p>
<p>'Save' would save the task's actions, while 'Cancel' would cause the task's actions to be lost.</p>
<p>...other controls here...</p>
</div>
<div class="ngdialog-buttons">
<button type="button" class="ngdialog-button ngdialog-button-secondary" ng-click="closeThisDialog('Cancel')">Cancel</button>
<button type="button" class="ngdialog-button ngdialog-button-primary" ng-click="confirm('Save')">Save</button>
</div>
</script>
<script type="text/ng-template" id="withInlineController">
<div class="ngdialog-message">
<h3>ngDialog template</h3>
<p ng-show="theme">Test content for <code>{{theme}}</code></p>
<p ng-show="exampleExternalData">Example data from external service: <code>{{exampleExternalData}}</code></p>
</div>
<div class="ngdialog-buttons">
<button type="button" class="ngdialog-button ngdialog-button-primary" ng-click="closeThisDialog()">Close</button>
</div>
</script>
<script type="text/ng-template" id="controllerAsDialog">
<div class="ngdialog-message">
<h3>ngDialog template</h3>
<p>This template uses controllerAs syntax</p>
<p>Value from controller {{ctrl.value}}</p>
</div>
<div class="ngdialog-buttons">
<button type="button" class="ngdialog-button ngdialog-button-primary" ng-click="closeThisDialog()">Close</button>
</div>
</script>
<script type="text/ng-template" id="secondDialogId">
<h3><a href="" ng-click="closeSecond()">Close all by click here!</a></h3>
</script>
<script type="text/ng-template" id="modalDialogId">
<div class="ngdialog-message">
<h3>ngDialog modal example</h3>
<p>The <code>.openConfirm()</code> function returns a promise that is resolved when confirmed and rejected when otherwise closed. Modal dialogs by default do not close when clicked outside the dialog or when hitting escape. This can ofcourse be overridden when opening the dialog.</p>
<p>Confirm can take a value. Enter one here for example and see the console output: <input ng-model="confirmValue" /></p>
</div>
<div class="ngdialog-buttons">
<button type="button" class="ngdialog-button ngdialog-button-primary" ng-click="confirm(confirmValue)">Confirm</button>
<button type="button" class="ngdialog-button ngdialog-button-secondary" ng-click="closeThisDialog('button')">Cancel</button>
</div>
</script>
<!-- Scripts -->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.0/angular.min.js"></script>
<script>window.angular || document.write('<script src="../bower_components/angular/angular.min.js">\x3C/script>')</script>
<script src="../js/ngDialog.js"></script>
<!-- App -->
<script>
var app = angular.module('exampleDialog', ['ngDialog']);
// Example of how to set default values for all dialogs
app.config(['ngDialogProvider', function (ngDialogProvider) {
ngDialogProvider.setDefaults({
className: 'ngdialog-theme-default',
plain: false,
showClose: true,
closeByDocument: true,
closeByEscape: true,
appendTo: false,
preCloseCallback: function () {
console.log('default pre-close callback');
}
});
}]);
app.controller('MainCtrl', function ($scope, $rootScope, ngDialog, $timeout) {
$rootScope.jsonData = '{"foo": "bar"}';
$rootScope.theme = 'ngdialog-theme-default';
$scope.directivePreCloseCallback = function (value) {
if(confirm('Close it? MainCtrl.Directive. (Value = ' + value + ')')) {
return true;
}
return false;
};
$scope.preCloseCallbackOnScope = function (value) {
if(confirm('Close it? MainCtrl.OnScope (Value = ' + value + ')')) {
return true;
}
return false;
};
$scope.open = function() {
var new_dialog = ngDialog.open({ id: 'fromAService', template: 'firstDialogId', controller: 'InsideCtrl', data: { foo: 'from a service' } });
// example on checking whether created `new_dialog` is open
$timeout(function() {
console.log(ngDialog.isOpen(new_dialog.id));
}, 2000)
};
$scope.openDefault = function () {
ngDialog.open({
template: 'firstDialogId',
controller: 'InsideCtrl',
className: 'ngdialog-theme-default'
});
};
$scope.openDefaultWithoutAnimation = function () {
ngDialog.open({
template: 'firstDialogId',
controller: 'InsideCtrl',
className: 'ngdialog-theme-default',
disableAnimation: true
});
};
$scope.openDefaultWithPreCloseCallbackInlined = function () {
ngDialog.open({
template: 'firstDialogId',
controller: 'InsideCtrl',
className: 'ngdialog-theme-default',
preCloseCallback: function(value) {
if (confirm('Close it? (Value = ' + value + ')')) {
return true;
}
return false;
}
});
};
$scope.openConfirm = function () {
ngDialog.openConfirm({
template: 'modalDialogId',
className: 'ngdialog-theme-default'
}).then(function (value) {
console.log('Modal promise resolved. Value: ', value);
}, function (reason) {
console.log('Modal promise rejected. Reason: ', reason);
});
};
$scope.openConfirmWithPreCloseCallbackOnScope = function () {
ngDialog.openConfirm({
template: 'modalDialogId',
className: 'ngdialog-theme-default',
preCloseCallback: 'preCloseCallbackOnScope',
scope: $scope
}).then(function (value) {
console.log('Modal promise resolved. Value: ', value);
}, function (reason) {
console.log('Modal promise rejected. Reason: ', reason);
});
};
$scope.openConfirmWithPreCloseCallbackInlinedWithNestedConfirm = function () {
ngDialog.openConfirm({
template: 'dialogWithNestedConfirmDialogId',
className: 'ngdialog-theme-default',
preCloseCallback: function(value) {
var nestedConfirmDialog = ngDialog.openConfirm({
template:
'<p>Are you sure you want to close the parent dialog?</p>' +
'<div class="ngdialog-buttons">' +
'<button type="button" class="ngdialog-button ngdialog-button-secondary" ng-click="closeThisDialog(0)">No' +
'<button type="button" class="ngdialog-button ngdialog-button-primary" ng-click="confirm(1)">Yes' +
'</button></div>',
plain: true,
className: 'ngdialog-theme-default'
});
return nestedConfirmDialog;
},
scope: $scope
})
.then(function(value){
console.log('resolved:' + value);
// Perform the save here
}, function(value){
console.log('rejected:' + value);
});
};
$scope.openPlain = function () {
$rootScope.theme = 'ngdialog-theme-plain';
ngDialog.open({
template: 'firstDialogId',
controller: 'InsideCtrl',
className: 'ngdialog-theme-plain',
closeByDocument: false
});
};
$scope.openPlainCustomWidth = function () {
$rootScope.theme = 'ngdialog-theme-plain custom-width';
ngDialog.open({
template: 'firstDialogId',
controller: 'InsideCtrl',
className: 'ngdialog-theme-plain custom-width',
closeByDocument: false
});
};
$scope.openInlineController = function () {
$rootScope.theme = 'ngdialog-theme-plain';
ngDialog.open({
template: 'withInlineController',
controller: ['$scope', '$timeout', function ($scope, $timeout) {
var counter = 0;
var timeout;
function count() {
$scope.exampleExternalData = 'Counter ' + (counter++);
timeout = $timeout(count, 450);
}
count();
$scope.$on('$destroy', function () {
$timeout.cancel(timeout);
});
}],
className: 'ngdialog-theme-plain'
});
};
$scope.openControllerAsController = function () {
$rootScope.theme = 'ngdialog-theme-plain';
ngDialog.open({
template: 'controllerAsDialog',
controller: 'InsideCtrlAs',
controllerAs: 'ctrl',
className: 'ngdialog-theme-plain'
});
};
$scope.openTemplate = function () {
$scope.value = true;
ngDialog.open({
template: 'externalTemplate.html',
className: 'ngdialog-theme-plain',
scope: $scope
});
};
$scope.openTemplateNoCache = function () {
$scope.value = true;
ngDialog.open({
template: 'externalTemplate.html',
className: 'ngdialog-theme-plain',
scope: $scope,
cache: false
});
};
$scope.openTimed = function () {
var dialog = ngDialog.open({
template: '<p>Just passing through!</p>',
plain: true,
closeByDocument: false,
closeByEscape: false
});
setTimeout(function () {
dialog.close();
}, 2000);
};
$scope.openNotify = function () {
var dialog = ngDialog.open({
template:
'<p>You can do whatever you want when I close, however that happens.</p>' +
'<div class="ngdialog-buttons"><button type="button" class="ngdialog-button ngdialog-button-primary" ng-click="closeThisDialog(1)">Close Me</button></div>',
plain: true
});
dialog.closePromise.then(function (data) {
console.log('ngDialog closed' + (data.value === 1 ? ' using the button' : '') + ' and notified by promise: ' + data.id);
});
};
$scope.openWithoutOverlay = function () {
ngDialog.open({
template: '<h2>Notice that there is no overlay!</h2>',
className: 'ngdialog-theme-default',
plain: true,
overlay: false
});
};
$scope.openWithJSSpecificWidth = function () {
ngDialog.open({
template: '<h2>Notice that style inline set specific width!</h2>',
className: 'ngdialog-theme-default',
width: 650,
plain: true
});
};
$scope.openWithJSSpecificHeight = function () {
ngDialog.open({
template: '<h2>This modal is using a custom height (400px)! See the inline style</h2>',
className: 'ngdialog-theme-default',
height: 400,
plain: true
});
};
$rootScope.$on('ngDialog.opened', function (e, $dialog) {
console.log('ngDialog opened: ' + $dialog.attr('id'));
});
$rootScope.$on('ngDialog.closed', function (e, $dialog) {
console.log('ngDialog closed: ' + $dialog.attr('id'));
});
$rootScope.$on('ngDialog.closing', function (e, $dialog) {
console.log('ngDialog closing: ' + $dialog.attr('id'));
});
$rootScope.$on('ngDialog.templateLoading', function (e, template) {
console.log('ngDialog template is loading: ' + template);
});
$rootScope.$on('ngDialog.templateLoaded', function (e, template) {
console.log('ngDialog template loaded: ' + template);
});
});
app.controller('InsideCtrl', function ($scope, ngDialog) {
$scope.dialogModel = {
message : 'message from passed scope'
};
$scope.openSecond = function () {
ngDialog.open({
template: '<h3><a href="" ng-click="closeSecond()">Close all by click here!</a></h3>',
plain: true,
closeByEscape: false,
controller: 'SecondModalCtrl'
});
};
});
app.controller('InsideCtrlAs', function () {
this.value = 'value from controller';
});
app.controller('SecondModalCtrl', function ($scope, ngDialog) {
$scope.closeSecond = function () {
ngDialog.close();
};
});
</script>
</body>
</html>