aboutsummaryrefslogtreecommitdiff
path: root/kvision-modules/kvision-onsenui/src/main/kotlin/pl/treksoft/kvision/onsenui/OnsenUi.kt
blob: 9cbc960ef590b4041a7fc9e79344331aae4f24ef (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
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
/*
 * Copyright (c) 2017-present Robert Jaros
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

package pl.treksoft.kvision.onsenui

import pl.treksoft.kvision.KVManagerOnsenui.ons

/**
 * Back button event type.
 */
external interface BackButtonEvent {
    fun callParentHandler()
}

/**
 * Change orientation event event type.
 */
external interface OrientationEvent {
    val isPortrait: Boolean
}

/**
 * Platform types.
 */
enum class Platform(internal val type: String) {
    OPERA("opera"),
    FIREFOX("firefox"),
    SAFARI("safari"),
    CHROME("chrome"),
    IE("ie"),
    EDGE("edge"),
    ANDROID("android"),
    BLACKBERRY("blackberry"),
    IOS("ios"),
    WP("wp")
}

/**
 * Contains global Onsen UI functions.
 */
@Suppress("UnsafeCastFromDynamic")
object OnsenUi {

    /**
     * Whether OnsenUI engine is loaded and ready.
     */
    fun isReady(): Boolean {
        return ons.isReady()
    }

    /**
     * Whether app is running inside Cordova.
     */
    fun isWebView(): Boolean {
        return ons.isWebView()
    }

    /**
     * A function called when engine is loaded and ready.
     */
    fun ready(callback: () -> Unit) {
        ons.ready(callback)
    }

    /**
     * Set default listener for the device back button event.
     */
    fun setDefaultDeviceBackButtonListener(listener: (event: dynamic) -> Unit) {
        ons.setDefaultDeviceBackButtonListener(listener)
    }

    /**
     * Disable default handler for the device back button.
     */
    fun disableDeviceBackButtonHandler() {
        ons.disableDeviceBackButtonHandler()
    }

    /**
     * Enable default handler for the device back button.
     */
    fun enableDeviceBackButtonHandler() {
        ons.enableDeviceBackButtonHandler()
    }

    /**
     * Enable status bar fill on IOS7 and above (except iPhone X)
     */
    fun enableAutoStatusBarFill() {
        ons.enableAutoStatusBarFill()
    }

    /**
     * Disable status bar fill on IOS7 and above (except iPhone X)
     */
    fun disableAutoStatusBarFill() {
        ons.disableAutoStatusBarFill()
    }

    /**
     * Creates a static element similar to iOS/Android status bar.
     */
    fun mockStatusBar() {
        ons.mockStatusBar()
    }

    /**
     * Disable all animations.
     */
    fun disableAnimations() {
        ons.disableAnimations()
    }

    /**
     * Enable all animations.
     */
    fun enableAnimations() {
        ons.enableAnimations()
    }

    /**
     * Disable automatic styling.
     */
    fun disableAutoStyling() {
        ons.disableAutoStyling()
    }

    /**
     * Enable automatic styling.
     */
    fun enableAutoStyling() {
        ons.enableAutoStyling()
    }

    /**
     * Disable adding fa- prefix for icons.
     */
    fun disableIconAutoPrefix() {
        ons.disableIconAutoPrefix()
    }

    /**
     * Applies a scroll fix for iOS UIWebView.
     */
    fun forceUIWebViewScrollFix(force: Boolean) {
        ons.forceUIWebViewScrollFix(force)
    }

    /**
     * Force styling for the given platform.
     */
    fun forcePlatformStyling(platform: Platform) {
        ons.forcePlatformStyling(platform.type)
    }

    /**
     * Set styling for the given platform (preferred)
     */
    fun platformSelect(platform: Platform) {
        ons.platform.select(platform.type)
    }

    /**
     * Whether device is iPhone.
     * @param forceActualPlatform return the actual platform.
     */
    fun isIOS(forceActualPlatform: Boolean = false): Boolean {
        return ons.platform.isIOS(forceActualPlatform)
    }

    /**
     * Whether device is Android.
     * @param forceActualPlatform return the actual platform.
     */
    fun isAndroid(forceActualPlatform: Boolean = false): Boolean {
        return ons.platform.isAndroid(forceActualPlatform)
    }

    /**
     * Whether device is Android phone.
     */
    fun isAndroidPhone(): Boolean {
        return ons.platform.isAndroidPhone()
    }

    /**
     * Whether device is Android tablet.
     */
    fun isAndroidTablet(): Boolean {
        return ons.platform.isAndroidTablet()
    }

    /**
     * Whether device is UIWebView.
     */
    fun isUIWebView(): Boolean {
        return ons.platform.isUIWebView()
    }

    /**
     * Whether device is iOS Safari.
     */
    fun isIOSSafari(): Boolean {
        return ons.platform.isIOSSafari()
    }

    /**
     * Whether device is WKWebView.
     */
    fun isWKWebView(): Boolean {
        return ons.platform.isWKWebView()
    }

    /**
     * Whether device is iPhone.
     */
    fun isIPhone(): Boolean {
        return ons.platform.isIPhone()
    }

    /**
     * Whether device is iPhone X, XS, XS Max, or XR.
     */
    fun isIPhoneX(): Boolean {
        return ons.platform.isIPhoneX()
    }

    /**
     * Whether device is iPad.
     */
    fun isIPad(): Boolean {
        return ons.platform.isIPad()
    }

    /**
     * Whether device is BlackBerry.
     * @param forceActualPlatform return the actual platform.
     */
    fun isBlackBerry(forceActualPlatform: Boolean = false): Boolean {
        return ons.platform.isBlackBerry(forceActualPlatform)
    }

    /**
     * Whether browser is Opera.
     * @param forceActualPlatform return the actual platform.
     */
    fun isOpera(forceActualPlatform: Boolean = false): Boolean {
        return ons.platform.isOpera(forceActualPlatform)
    }

    /**
     * Whether browser is Firefox.
     * @param forceActualPlatform return the actual platform.
     */
    fun isFirefox(forceActualPlatform: Boolean = false): Boolean {
        return ons.platform.isFirefox(forceActualPlatform)
    }

    /**
     * Whether browser is Safari.
     * @param forceActualPlatform return the actual platform.
     */
    fun isSafari(forceActualPlatform: Boolean = false): Boolean {
        return ons.platform.isSafari(forceActualPlatform)
    }

    /**
     * Whether browser is Chrome.
     * @param forceActualPlatform return the actual platform.
     */
    fun isChrome(forceActualPlatform: Boolean = false): Boolean {
        return ons.platform.isChrome(forceActualPlatform)
    }

    /**
     * Whether browser is IE.
     * @param forceActualPlatform return the actual platform.
     */
    fun isIE(forceActualPlatform: Boolean = false): Boolean {
        return ons.platform.isIE(forceActualPlatform)
    }

    /**
     * Whether device is iOS 7 or above.
     */
    fun isIOS7above(): Boolean {
        return ons.platform.isIOS7above()
    }

    /**
     * Whether browser is Edge.
     * @param forceActualPlatform return the actual platform.
     */
    fun isEdge(forceActualPlatform: Boolean = false): Boolean {
        return ons.platform.isEdge(forceActualPlatform)
    }

    /**
     * Whether device is Windows Phone.
     * @param forceActualPlatform return the actual platform.
     */
    fun isWP(forceActualPlatform: Boolean = false): Boolean {
        return ons.platform.isWP(forceActualPlatform)
    }

    /**
     * Function called on orientation change event.
     */
    fun onOrientationChange(callback: (OrientationEvent) -> Unit) {
        ons.orientation.on("change", callback)
    }

    /**
     * Function called on a single orientation change event.
     */
    fun onOrientationChangeOnce(callback: (OrientationEvent) -> Unit) {
        ons.orientation.once("change", callback)
    }

    /**
     * Remove orientation change event listener/all listeners.
     */
    fun offOrientationChange(callback: ((OrientationEvent) -> Unit)? = undefined) {
        ons.orientation.off("change", callback)
    }

    /**
     * Whether orientation is portrait.
     */
    fun isPortrait(): Boolean {
        return ons.orientation.isPortrait()
    }

    /**
     * Whether orientation is landscape.
     */
    fun isLandscape(): Boolean {
        return ons.orientation.isLandscape()
    }
}