-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e83e0a8
commit 837cac6
Showing
6 changed files
with
100 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
...ose/src/jsMain/kotlin/dev/inmo/micro_utils/common/compose/AttrBuilderContextExtensions.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package dev.inmo.micro_utils.common.compose | ||
|
||
import org.jetbrains.compose.web.dom.AttrBuilderContext | ||
import org.w3c.dom.Element | ||
|
||
operator fun <T : Element> AttrBuilderContext<T>?.plus( | ||
other: AttrBuilderContext<T>? | ||
) = when (this) { | ||
null -> other ?: {} | ||
else -> when (other) { | ||
null -> this ?: {} | ||
else -> { | ||
{ | ||
invoke(this) | ||
other(this) | ||
} | ||
} | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
common/compose/src/jsMain/kotlin/dev/inmo/micro_utils/common/compose/MultiRef.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package dev.inmo.micro_utils.common.compose | ||
|
||
import androidx.compose.runtime.Composable | ||
import androidx.compose.runtime.DisposableEffect | ||
import androidx.compose.runtime.DisposableEffectResult | ||
import androidx.compose.runtime.DisposableEffectScope | ||
import org.jetbrains.compose.web.attributes.AttrsScope | ||
import org.jetbrains.compose.web.dom.ElementScope | ||
import org.w3c.dom.Element | ||
|
||
/** | ||
* This function must be called in the context of your tag content. It works like default [AttrsScope.ref], | ||
* but able to be used several times. Uses [DisposableEffect] under the hood | ||
*/ | ||
@Composable | ||
fun <T : Element> ElementScope<T>.ref( | ||
block: DisposableEffectScope.(T) -> DisposableEffectResult | ||
) { | ||
DisposableEffect(0) { | ||
block(scopeElement) | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
.../compose/src/jsMain/kotlin/dev/inmo/micro_utils/common/compose/TagAttributesExtensions.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package dev.inmo.micro_utils.common.compose | ||
|
||
import org.jetbrains.compose.web.dom.AttrBuilderContext | ||
|
||
fun tagClasses(vararg classnames: String): AttrBuilderContext<*> = { | ||
classes(*classnames) | ||
} | ||
|
||
fun tagId(id: String): AttrBuilderContext<*> = { | ||
id(id) | ||
} |
13 changes: 13 additions & 0 deletions
13
common/src/jsMain/kotlin/dev/inmo/micro_utils/common/CopyToClipboard.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package dev.inmo.micro_utils.common | ||
|
||
import kotlinx.browser.window | ||
|
||
fun copyToClipboard(text: String): Boolean { | ||
return runCatching { | ||
window.navigator.clipboard.writeText( | ||
text | ||
) | ||
}.onFailure { | ||
it.printStackTrace() | ||
}.isSuccess | ||
} |
29 changes: 29 additions & 0 deletions
29
common/src/jsMain/kotlin/dev/inmo/micro_utils/common/CopyToClipboardImage.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package dev.inmo.micro_utils.common | ||
|
||
import kotlinx.browser.window | ||
import org.w3c.files.Blob | ||
import org.w3c.files.BlobPropertyBag | ||
import kotlin.js.json | ||
|
||
external class ClipboardItem(data: dynamic) | ||
|
||
inline fun Blob.convertToClipboardItem(): ClipboardItem { | ||
val itemData: dynamic = json(this.type to this) | ||
return ClipboardItem(itemData) | ||
} | ||
|
||
suspend fun copyImageURLToClipboard(imageUrl: String): Boolean { | ||
return runCatching { | ||
val response = window.fetch(imageUrl).await() | ||
val blob = response.blob().await() | ||
val data = arrayOf( | ||
Blob( | ||
arrayOf(blob), | ||
BlobPropertyBag("image/png") | ||
).convertToClipboardItem() | ||
).asDynamic() | ||
window.navigator.clipboard.write(data) | ||
}.onFailure { | ||
it.printStackTrace() | ||
}.isSuccess | ||
} |