-
-
Notifications
You must be signed in to change notification settings - Fork 8
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
Showing
9 changed files
with
161 additions
and
9 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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 @@ | ||
* @datl4g |
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,52 @@ | ||
name: Check Dependency Versions | ||
on: | ||
push: | ||
|
||
jobs: | ||
dependency-versions: | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
checks: write | ||
pull-requests: write | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Java | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: temurin | ||
java-version: 17 | ||
|
||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
|
||
- name: Check Dependency Versions | ||
run: ./gradlew dependencyUpdates | ||
|
||
- name: Publish version results | ||
run: | | ||
ruby << 'EOF' | gh api -X POST '/repos/${{ github.repository }}/check-runs' --input - | ||
require 'json' | ||
report = { | ||
name: ENV.fetch('REPORT_CHECK_NAME'), | ||
head_sha: ENV.fetch('REPORT_SHA'), | ||
status: 'completed', | ||
conclusion: ENV.fetch('REPORT_CONCLUSION'), | ||
output: { | ||
title: ENV.fetch('REPORT_CHECK_OUTPUT_TITLE'), | ||
summary: File.read(ENV.fetch('REPORT_CHECK_OUTPUT_SUMMARY_FILE')), | ||
}, | ||
} | ||
puts report.to_json | ||
EOF | ||
env: | ||
REPORT_SHA: ${{ github.event.pull_request.head.sha || github.sha }} | ||
GITHUB_TOKEN: ${{ github.token }} | ||
REPORT_CHECK_NAME: Version Results | ||
REPORT_CHECK_OUTPUT_TITLE: ${{ github.event.repository.updated_at }} | ||
REPORT_CHECK_OUTPUT_SUMMARY_FILE: build/dependencyUpdates/report.md | ||
REPORT_CONCLUSION: ${{ job.status }} | ||
shell: bash |
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
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
7 changes: 7 additions & 0 deletions
7
app/shared/src/androidMain/kotlin/dev/datlag/burningseries/App.android.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,7 @@ | ||
package dev.datlag.burningseries | ||
|
||
import androidx.compose.runtime.Composable | ||
|
||
@Composable | ||
actual fun SystemProvider(content: @Composable () -> Unit) { | ||
} |
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
76 changes: 76 additions & 0 deletions
76
app/shared/src/desktopMain/kotlin/dev/datlag/burningseries/App.desktop.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,76 @@ | ||
package dev.datlag.burningseries | ||
|
||
import androidx.compose.foundation.ExperimentalFoundationApi | ||
import androidx.compose.foundation.LocalContextMenuRepresentation | ||
import androidx.compose.foundation.text.LocalTextContextMenu | ||
import androidx.compose.material3.ColorScheme | ||
import androidx.compose.material3.MaterialTheme | ||
import androidx.compose.runtime.* | ||
import androidx.compose.ui.ExperimentalComposeUiApi | ||
import androidx.compose.ui.awt.ComposeWindow | ||
import com.dzirbel.contextmenu.ContextMenuColors | ||
import com.dzirbel.contextmenu.MaterialContextMenuRepresentation | ||
import com.dzirbel.contextmenu.MaterialTextContextMenu | ||
import com.mayakapps.compose.windowstyler.WindowBackdrop | ||
import com.mayakapps.compose.windowstyler.WindowCornerPreference | ||
import com.mayakapps.compose.windowstyler.WindowFrameStyle | ||
import com.mayakapps.compose.windowstyler.WindowStyleManager | ||
|
||
val LocalWindow = compositionLocalOf<ComposeWindow> { error("No window state provided") } | ||
|
||
@OptIn(ExperimentalComposeUiApi::class, ExperimentalFoundationApi::class) | ||
@Composable | ||
actual fun SystemProvider(content: @Composable () -> Unit) { | ||
val backgroundColor = MaterialTheme.colorScheme.background | ||
val onBackgroundColor = MaterialTheme.colorScheme.onBackground | ||
val backdrop = WindowBackdrop.Solid(backgroundColor) | ||
|
||
WindowStyle( | ||
backdropType = backdrop, | ||
frameStyle = WindowFrameStyle( | ||
borderColor = backgroundColor, | ||
titleBarColor = backgroundColor, | ||
captionColor = onBackgroundColor, | ||
cornerPreference = WindowCornerPreference.ROUNDED | ||
) | ||
) | ||
|
||
CompositionLocalProvider( | ||
LocalContextMenuRepresentation provides MaterialContextMenuRepresentation(colors = ContextMenuColors(MaterialTheme.colorScheme)), | ||
LocalTextContextMenu provides MaterialTextContextMenu, | ||
) { | ||
content() | ||
} | ||
} | ||
|
||
@Composable | ||
private fun WindowStyle( | ||
window: ComposeWindow = LocalWindow.current, | ||
isDarkTheme: Boolean = LocalDarkMode.current, | ||
backdropType: WindowBackdrop = WindowBackdrop.Default, | ||
frameStyle: WindowFrameStyle = WindowFrameStyle() | ||
) { | ||
val manager = remember(isDarkTheme) { WindowStyleManager( | ||
window = window, | ||
isDarkTheme = isDarkTheme, | ||
backdropType = backdropType, | ||
frameStyle = frameStyle | ||
) } | ||
|
||
LaunchedEffect(isDarkTheme) { | ||
manager.isDarkTheme = isDarkTheme | ||
} | ||
|
||
LaunchedEffect(backdropType) { | ||
manager.backdropType = backdropType | ||
} | ||
} | ||
|
||
@Composable | ||
fun ContextMenuColors(scheme: ColorScheme = MaterialTheme.colorScheme) = ContextMenuColors( | ||
surface = scheme.surface, | ||
text = scheme.onSurface, | ||
icon = scheme.onSurface, | ||
divider = scheme.onSurfaceVariant, | ||
shortcutText = scheme.onSurfaceVariant | ||
) |
7 changes: 7 additions & 0 deletions
7
app/shared/src/iosMain/kotlin/dev/datlag/burningseries/App.ios.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,7 @@ | ||
package dev.datlag.burningseries | ||
|
||
import androidx.compose.runtime.Composable | ||
|
||
@Composable | ||
actual fun SystemProvider(content: @Composable () -> Unit) { | ||
} |
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