This repository has been archived by the owner on Jun 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.js
140 lines (128 loc) · 2.87 KB
/
index.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
var Dialog = require('./lib/Dialog'),
Confirmation = require('./lib/Confirmation'),
Overlay = require('./lib/Overlay'),
Tip = require('./lib/Tip')
/*
* Dialog
* @api public
*/
module.exports.Dialog = Dialog
/*
* Confirmation
* @api public
*/
module.exports.Confirmation = Confirmation
/*
* Overlay
* @api public
*/
module.exports.Overlay = Overlay
/*
* Tip
* @api public
*/
module.exports.Tip = Tip
/*
* Shorthand for using Dialog
* @api public
*/
module.exports.dialog = function dialog() {
var dialog, options
if(typeof arguments[0] === 'object') {
options = arguments[0]
} else {
options = {}
if(arguments.length === 1) {
options.message = arguments[0]
}
if(arguments.length === 2) {
options.title = arguments[0]
options.message = arguments[1]
}
}
var dialog = new Dialog(options)
dialog.show()
return dialog
}
/*
* Shorthand for using Comfirmation
* @api public
*/
module.exports.confirm = function confirm() {
var self, title, message, callback
self = this
if(typeof arguments[arguments.length - 1] === 'function') {
callback = arguments[arguments.length - 1]
}
if(arguments.length === 2 && callback) {
if(typeof arguments[0] === 'string') {
message = arguments[0]
}
} else if(arguments.length > 2) {
title = arguments[0]
message = arguments[1]
} else if(arguments.length === 3) {
}
var confirmation = new Confirmation({
title: title || null,
message: message || 'Are you sure?'
})
if(callback) {
confirmation.ok(function() {
callback.call(self, true)
})
confirmation.cancel(function() {
callback.call(self, false)
})
}
confirmation.show()
return confirmation
}
/*
* Shorthand for using Overlay
* @api public
*/
module.exports.overlay = function overlay() {
var options, overlay
options = {}
if(arguments.length === 1) {
if(typeof arguments[0] === 'string' || arguments[0] instanceof $) {
options.content = arguments[0]
} else if(typeof arguments[0] === 'object') {
options = arguments[0]
} else if(arguments[0].$el && arguments[0].$el instanceof $) {
options.content = arguments[0].$el
}
}
overlay = new Overlay(options)
overlay.show()
return overlay
}
/*
* Shorthand for Tip
* @api public
*/
module.exports.tip = function tip() {
var options
if(typeof arguments[0] === 'object') {
options = arguments[0]
} else if(typeof arguments[0] === 'string' || arguments[0] instanceof $) {
options = {
target: arguments[0]
}
if(typeof arguments[1] === 'string') {
options.content = arguments[1]
}
if(typeof arguments[2] === 'string') {
options.position = arguments[2]
}
}
var tip = new Tip(options)
tip.visible = true
setTimeout(function() {
if(tip.$target && tip.visible) {
tip.show()
}
},0)
return tip
}