aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobbie Cronin <robert.cronin@uqconnect.edu.au>2019-06-21 09:58:39 +0800
committerRobbie Cronin <robert.cronin@uqconnect.edu.au>2019-06-21 09:58:39 +0800
commit9038555f9e46a32a0a725112304e64cdd408bf8e (patch)
treea3e92673ac6e1ec677c44a2b0cb01c0f9c88f4dd
parent7d815923590d951d23b6763b2efb771bd32111fe (diff)
downloadkvision-9038555f9e46a32a0a725112304e64cdd408bf8e.tar.gz
kvision-9038555f9e46a32a0a725112304e64cdd408bf8e.tar.bz2
kvision-9038555f9e46a32a0a725112304e64cdd408bf8e.zip
Add KVision Pace module
-rw-r--r--kvision-modules/kvision-pace/build.gradle9
-rw-r--r--kvision-modules/kvision-pace/package.json.d/project.info3
-rw-r--r--kvision-modules/kvision-pace/src/main/kotlin/pl/treksoft/kvision/KVManagerPace.kt35
-rw-r--r--kvision-modules/kvision-pace/src/main/kotlin/pl/treksoft/kvision/pace/Pace.kt143
-rw-r--r--settings.gradle1
5 files changed, 191 insertions, 0 deletions
diff --git a/kvision-modules/kvision-pace/build.gradle b/kvision-modules/kvision-pace/build.gradle
new file mode 100644
index 00000000..d577df20
--- /dev/null
+++ b/kvision-modules/kvision-pace/build.gradle
@@ -0,0 +1,9 @@
+apply from: "../shared.gradle"
+
+kotlinFrontend {
+
+ npm {
+ dependency("pace-progressbar", "1.0.8")
+ }
+
+} \ No newline at end of file
diff --git a/kvision-modules/kvision-pace/package.json.d/project.info b/kvision-modules/kvision-pace/package.json.d/project.info
new file mode 100644
index 00000000..98d48a0f
--- /dev/null
+++ b/kvision-modules/kvision-pace/package.json.d/project.info
@@ -0,0 +1,3 @@
+{
+ "description": "KVision Pace module"
+}
diff --git a/kvision-modules/kvision-pace/src/main/kotlin/pl/treksoft/kvision/KVManagerPace.kt b/kvision-modules/kvision-pace/src/main/kotlin/pl/treksoft/kvision/KVManagerPace.kt
new file mode 100644
index 00000000..38a83fb5
--- /dev/null
+++ b/kvision-modules/kvision-pace/src/main/kotlin/pl/treksoft/kvision/KVManagerPace.kt
@@ -0,0 +1,35 @@
+/*
+ * 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
+
+internal val kVManagerPaceInit = KVManagerPace.init()
+
+/**
+ * Internal singleton object which initializes and configures KVision Moment module.
+ */
+internal object KVManagerPace {
+ fun init() {}
+
+ private val pace = try {
+ require("pace-progressbar").default
+ } catch (e: Throwable) {}
+}
diff --git a/kvision-modules/kvision-pace/src/main/kotlin/pl/treksoft/kvision/pace/Pace.kt b/kvision-modules/kvision-pace/src/main/kotlin/pl/treksoft/kvision/pace/Pace.kt
new file mode 100644
index 00000000..a5d80908
--- /dev/null
+++ b/kvision-modules/kvision-pace/src/main/kotlin/pl/treksoft/kvision/pace/Pace.kt
@@ -0,0 +1,143 @@
+/*
+ * 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.pace
+
+import pl.treksoft.kvision.require
+import pl.treksoft.kvision.utils.obj
+import org.w3c.dom.events.Event
+import org.w3c.dom.get
+import kotlin.browser.window
+
+class PaceAjaxOptions(trackMethods:Array<dynamic>? = null,
+ trackWebSockets:Boolean? = null,
+ ignoreURLs:Array<dynamic>? = null) {
+ internal var paceAjaxOptionsJs: dynamic = obj {
+ if (trackMethods != null) { this.trackMethods = trackMethods }
+ if (trackWebSockets != null) { this.trackWebSockets = trackWebSockets }
+ if (ignoreURLs != null) { this.ignoreURLs = ignoreURLs }
+ }
+}
+
+class PaceElementsOptions(minSamples:Int? = null,
+ selectors:Array<dynamic>? = null) {
+ internal var paceElementsOptionsJs: dynamic = obj {
+ if (minSamples != null) { this.minSamples = minSamples }
+ if (selectors != null) { this.selectors = selectors }
+ }
+}
+
+class PaceEventLagOptions(minSamples:Int? = null,
+ sampleCount:Int? = null,
+ lagThreshold:Int? = null) {
+ internal var paceEventLagOptionsJs: dynamic = obj {
+ if (minSamples != null) { this.minSamples = minSamples }
+ if (sampleCount != null) { this.sampleCount = sampleCount }
+ if (lagThreshold != null) { this.lagThreshold = lagThreshold }
+ }
+}
+
+class PaceOptions(
+ ajax:PaceAjaxOptions? = null,
+ catchupTime:Int? = null,
+ easeFactor:Double? = null,
+ elements:PaceElementsOptions? = null,
+ eventLag:PaceEventLagOptions? = null,
+ ghostTime:Int? = null,
+ initialRate:Double? = null,
+ maxProgressPerFrame:Int? = null,
+ minTime:Int? = null,
+ restartOnPushState:Boolean? = null,
+ restartOnRequestAfter:Double? = null,
+ startOnPageLoad:Boolean? = null,
+ target:String? = null
+) {
+ internal var paceOptionsJs: dynamic = obj {
+ if (ajax != null) { this.ajax = ajax.paceAjaxOptionsJs }
+ if (catchupTime != null) { this.catchupTime = catchupTime }
+ if (easeFactor != null) { this.easeFactor = easeFactor }
+ if (elements != null) { this.elements = elements.paceElementsOptionsJs }
+ if (eventLag != null) { this.eventLag = eventLag.paceEventLagOptionsJs }
+ if (ghostTime != null) { this.ghostTime = ghostTime }
+ if (initialRate != null) { this.initialRate = initialRate }
+ if (maxProgressPerFrame != null) { this.maxProgressPerFrame = maxProgressPerFrame }
+ if (minTime != null) { this.minTime = minTime }
+ if (restartOnPushState != null) { this.restartOnPushState = restartOnPushState }
+ if (restartOnRequestAfter != null) { this.restartOnRequestAfter = restartOnRequestAfter }
+ if (startOnPageLoad != null) { this.startOnPageLoad = startOnPageLoad }
+ if (target != null) { this.target = target }
+ }
+}
+
+enum class PaceColor(var paceColorString: String) {
+ Black("black"),
+ Blue("blue"),
+ Green("green"),
+ Orange("orange"),
+ Pink("pink"),
+ Purple("purple"),
+ Red("red"),
+ Silver("silver"),
+ White("white"),
+ Yellow("yellow")
+}
+
+enum class PaceTheme(var paceThemeString: String) {
+ BarberShop("barber-shop"),
+ BigCounter("big-counter"),
+ Bounce("bounce"),
+ CenterAtom("center-atom"),
+ CenterCircle("center-circle"),
+ CenterRadar("center-radar"),
+ CenterSimple("center-simple"),
+ CornerIndicator("corner-indicator"),
+ FillLeft("fill-left"),
+ Flash("flash"),
+ FlatTop("flat-top"),
+ LoadingBar("loading-bar"),
+ MacOSX("mac-osx"),
+ Material("material"),
+ Minimal("minimal")
+}
+
+class Pace {
+ companion object {
+ fun setNewTheme(color: PaceColor, theme: PaceTheme) {
+ require("pace-progressbar/themes/${color.paceColorString}/pace-theme-${theme.paceThemeString}.css")
+ }
+ fun setOptions(options: PaceOptions) {
+ window["Pace"].options = options.paceOptionsJs
+ }
+
+ fun on(event: Event, handler: (() -> Unit)? = null, context: List<dynamic>? = null): dynamic {
+ return window["Pace"].on(event, handler, context)
+ }
+
+ fun start() {
+ window["Pace"].start()
+ }
+
+ fun stop() {
+ window["Pace"].stop()
+ }
+ }
+} \ No newline at end of file
diff --git a/settings.gradle b/settings.gradle
index 995d49dd..c7d58bfd 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -17,6 +17,7 @@ include 'kvision-modules:kvision-base',
'kvision-modules:kvision-redux',
'kvision-modules:kvision-tabulator',
'kvision-modules:kvision-moment',
+ 'kvision-modules:kvision-pace',
'kvision-modules:kvision-remote',
'kvision-modules:kvision-select-remote',
'kvision-modules:kvision-server-jooby',