Skip to content

Commit

Permalink
Various fixes for window component.
Browse files Browse the repository at this point in the history
  • Loading branch information
rjaros committed Feb 27, 2018
1 parent 130e041 commit 57da0d7
Show file tree
Hide file tree
Showing 4 changed files with 76 additions and 33 deletions.
2 changes: 1 addition & 1 deletion src/main/kotlin/pl/treksoft/kvision/KVManager.kt
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ internal object KVManager {

@Suppress("UnsafeCastFromDynamic")
internal fun clearResizeEvent(component: Component) {
if (component.getElement().asDynamic().__resizeTrigger__.contentDocument != null) {
if (component.getElement()?.asDynamic()?.__resizeTrigger__?.contentDocument != null) {
component.getElement()?.let {
elementResizeEvent.unbind(it)
}
Expand Down
98 changes: 68 additions & 30 deletions src/main/kotlin/pl/treksoft/kvision/window/Window.kt
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ open class Window(
/**
* Determines if the window is draggable.
*/
var isDraggable by refreshOnUpdate(isDraggable, { checkIsDraggable(); })
var isDraggable by refreshOnUpdate(isDraggable, { checkIsDraggable(); checkHeaderVisibility() })
/**
* Determines if Close button is visible.
*/
Expand All @@ -126,11 +126,12 @@ open class Window(
private var isResizeEvent = false

init {
id = "kv_window_" + counter
position = Position.ABSOLUTE
overflow = Overflow.HIDDEN
@Suppress("LeakingThis")
width = contentWidth
zIndex = DEFAULT_Z_INDEX
zIndex = ++zIndexCounter
closeIcon.visible = closeButton
closeIcon.setEventListener {
click = {
Expand All @@ -148,7 +149,15 @@ open class Window(
content.marginBottom = WINDOW_CONTENT_MARGIN_BOTTOM.px
}
@Suppress("LeakingThis")
setEventListener<Window> {
click = {
toFront()
focus()
}
}
@Suppress("LeakingThis")
init?.invoke(this)
counter++
}

private fun checkHeaderVisibility() {
Expand All @@ -164,25 +173,27 @@ open class Window(
if (isDraggable) {
header.setEventListener<SimplePanel> {
mousedown = { e ->
isDrag = true
val dragStartX = this@Window.getElementJQuery()?.position()?.left?.toInt() ?: 0
val dragStartY = this@Window.getElementJQuery()?.position()?.top?.toInt() ?: 0
val dragMouseX = e.pageX
val dragMouseY = e.pageY
val moveCallback = { me: Event ->
if (isDrag) {
this@Window.left = (dragStartX + (me as MouseEvent).pageX - dragMouseX).toInt().px
this@Window.top = (dragStartY + (me).pageY - dragMouseY).toInt().px
if (e.button.toInt() == 0) {
isDrag = true
val dragStartX = this@Window.getElementJQuery()?.position()?.left?.toInt() ?: 0
val dragStartY = this@Window.getElementJQuery()?.position()?.top?.toInt() ?: 0
val dragMouseX = e.pageX
val dragMouseY = e.pageY
val moveCallback = { me: Event ->
if (isDrag) {
this@Window.left = (dragStartX + (me as MouseEvent).pageX - dragMouseX).toInt().px
this@Window.top = (dragStartY + (me).pageY - dragMouseY).toInt().px
}
}
kotlin.browser.window.addEventListener("mousemove", moveCallback)
var upCallback: ((Event) -> Unit)? = null
upCallback = { _ ->
isDrag = false
kotlin.browser.window.removeEventListener("mousemove", moveCallback)
kotlin.browser.window.removeEventListener("mouseup", upCallback)
}
kotlin.browser.window.addEventListener("mouseup", upCallback)
}
kotlin.browser.window.addEventListener("mousemove", moveCallback)
var upCallback: ((Event) -> Unit)? = null
upCallback = { _ ->
isDrag = false
kotlin.browser.window.removeEventListener("mousemove", moveCallback)
kotlin.browser.window.removeEventListener("mouseup", upCallback)
}
kotlin.browser.window.addEventListener("mouseup", upCallback)
}
}
} else {
Expand Down Expand Up @@ -210,12 +221,15 @@ open class Window(
if (isResizable) {
isResizeEvent = true
KVManager.setResizeEvent(this) {
val intWidth = (getElementJQuery()?.width()?.toInt() ?: 0) + 2
val intHeight = (getElementJQuery()?.height()?.toInt() ?: 0) + 2
width = intWidth.px
height = intHeight.px
content.width = (intWidth - 2).px
content.height = (intHeight - WINDOW_HEADER_HEIGHT - WINDOW_CONTENT_MARGIN_BOTTOM - 1 - 2).px
val eid = getElementJQuery()?.attr("id")
if (eid == id) {
val intWidth = (getElementJQuery()?.width()?.toInt() ?: 0) + 2
val intHeight = (getElementJQuery()?.height()?.toInt() ?: 0) + 2
width = intWidth.px
height = intHeight.px
content.width = (intWidth - 2).px
content.height = (intHeight - WINDOW_HEADER_HEIGHT - WINDOW_CONTENT_MARGIN_BOTTOM - 1 - 2).px
}
}
} else if (isResizeEvent) {
KVManager.clearResizeEvent(this)
Expand Down Expand Up @@ -250,23 +264,47 @@ open class Window(
checkResizablEventHandler()
}

override fun afterDestroy() {
if (isResizeEvent) {
KVManager.clearResizeEvent(this)
}
}

/**
* Moves the current window to the front.
*/
open fun toFront() {
if ((zIndex ?: 0) < zIndexCounter) zIndex = ++zIndexCounter
}

/**
* Makes the current window focused.
*/
open fun focus() {
getElementJQuery()?.focus()
}

companion object {
internal var counter = 0
internal var zIndexCounter = DEFAULT_Z_INDEX

/**
* DSL builder extension function.
*
* It takes the same parameters as the constructor of the built component.
*/
fun Container.window(
caption: String? = null,
width: CssSize? = CssSize(0, UNIT.auto),
height: CssSize? = CssSize(0, UNIT.auto),
resizable: Boolean = true,
draggable: Boolean = true,
contentWidth: CssSize? = CssSize(0, UNIT.auto),
contentHeight: CssSize? = CssSize(0, UNIT.auto),
isResizable: Boolean = true,
isDraggable: Boolean = true,
closeButton: Boolean = false,
classes: Set<String> = setOf(),
init: (Window.() -> Unit)? = null
): Window {
val window = Window(caption, width, height, resizable, draggable, closeButton, classes, init)
val window =
Window(caption, contentWidth, contentHeight, isResizable, isDraggable, closeButton, classes, init)
this.add(window)
return window
}
Expand Down
4 changes: 4 additions & 0 deletions src/main/resources/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -127,3 +127,7 @@ trix-toolbar .trix-button-group {
height: 40px;
padding: 10px 15px 5px 15px;
}

.kv-window .modal-header .modal-title {
white-space: nowrap;
}
5 changes: 3 additions & 2 deletions src/test/kotlin/test/pl/treksoft/kvision/window/WindowSpec.kt
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,16 @@ class WindowSpec : DomSpec {
val root = Root("test")
val window = Window("Window title", isResizable = false)
root.add(window)
val id = window.id
val element = document.getElementById("test")
assertEqualsHtml(
"<div class=\"modal-content kv-window\" style=\"width: auto; position: absolute; z-index: 1000; overflow: hidden;\"><div class=\"modal-header\"><h4 class=\"modal-title\">Window title</h4></div><div style=\"height: auto; overflow: auto;\"></div></div>",
"<div class=\"modal-content kv-window\" id=\"$id\" style=\"width: auto; position: absolute; z-index: 1001; overflow: hidden;\"><div class=\"modal-header\"><h4 class=\"modal-title\">Window title</h4></div><div style=\"height: auto; overflow: auto;\"></div></div>",
element?.innerHTML,
"Should render floating window without resizable handler"
)
window.isResizable = true
assertEqualsHtml(
"<div class=\"modal-content kv-window\" style=\"width: auto; position: absolute; z-index: 1000; overflow: hidden; resize: both; height: 10px;\"><div class=\"modal-header\"><h4 class=\"modal-title\">Window title</h4></div><div style=\"height: auto; overflow: auto; margin-bottom: 11px;\"></div><object style=\"display: block; position: absolute; top: 0; left: 0; height: 100%; width: 100%; overflow: hidden; pointer-events: none; z-index: -1; opacity: 0;\" class=\"resize-sensor\" type=\"text/html\" data=\"about:blank\"></object></div>",
"<div class=\"modal-content kv-window\" id=\"$id\" style=\"width: auto; position: absolute; z-index: 1001; overflow: hidden; resize: both; height: 10px;\"><div class=\"modal-header\"><h4 class=\"modal-title\">Window title</h4></div><div style=\"height: auto; overflow: auto; margin-bottom: 11px;\"></div><object style=\"display: block; position: absolute; top: 0; left: 0; height: 100%; width: 100%; overflow: hidden; pointer-events: none; z-index: -1; opacity: 0;\" class=\"resize-sensor\" type=\"text/html\" data=\"about:blank\"></object></div>",
element?.innerHTML,
"Should render floating window with resizable handler"
)
Expand Down

0 comments on commit 57da0d7

Please sign in to comment.