initial upload of prototype

This commit is contained in:
2026-06-17 11:25:40 +02:00
commit 006944e333
52 changed files with 2805 additions and 0 deletions

45
.gitignore vendored Normal file
View File

@ -0,0 +1,45 @@
# Gradle
.gradle/
build/
**/build/
# Local configuration
local.properties
# Android Studio / IntelliJ
*.iml
.idea/
!.idea/codeStyles/
!.idea/inspectionProfiles/
!.idea/runConfigurations.xml
!.idea/runConfigurations/
# Kotlin
.kotlin/
# Built artifacts
*.apk
*.aab
*.ap_
*.dex
# Native / NDK
.externalNativeBuild/
.cxx/
# Captures and profiling
/captures/
*.hprof
# OS files
.DS_Store
Thumbs.db
# Signing keys (never commit)
*.jks
*.keystore
keystore.properties
# Secrets
google-services.json
secrets.properties

1
app/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/build

65
app/build.gradle.kts Normal file
View File

@ -0,0 +1,65 @@
plugins {
alias(libs.plugins.android.application)
alias(libs.plugins.kotlin.compose)
}
android {
namespace = "com.tomhempel.coordinatorapp"
compileSdk {
version = release(36) {
minorApiLevel = 1
}
}
defaultConfig {
applicationId = "com.tomhempel.coordinatorapp"
minSdk = 24
targetSdk = 36
versionCode = 1
versionName = "1.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
isMinifyEnabled = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
buildFeatures {
compose = true
}
}
dependencies {
implementation(platform(libs.androidx.compose.bom))
implementation(libs.androidx.activity.compose)
implementation(libs.androidx.compose.material3)
implementation(libs.androidx.compose.material.icons.extended)
implementation(libs.androidx.compose.ui)
implementation(libs.androidx.compose.ui.graphics)
implementation(libs.androidx.compose.ui.tooling.preview)
implementation(libs.androidx.core.ktx)
implementation(libs.androidx.lifecycle.runtime.ktx)
implementation(libs.androidx.lifecycle.runtime.compose)
implementation(libs.androidx.lifecycle.viewmodel.compose)
implementation(libs.androidx.navigation.compose)
implementation(libs.androidx.security.crypto)
implementation(libs.gson)
implementation(libs.okhttp)
testImplementation(libs.junit)
androidTestImplementation(platform(libs.androidx.compose.bom))
androidTestImplementation(libs.androidx.compose.ui.test.junit4)
androidTestImplementation(libs.androidx.espresso.core)
androidTestImplementation(libs.androidx.junit)
debugImplementation(libs.androidx.compose.ui.test.manifest)
debugImplementation(libs.androidx.compose.ui.tooling)
}

21
app/proguard-rules.pro vendored Normal file
View File

@ -0,0 +1,21 @@
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable
# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile

View File

@ -0,0 +1,24 @@
package com.tomhempel.coordinatorapp
import androidx.test.platform.app.InstrumentationRegistry
import androidx.test.ext.junit.runners.AndroidJUnit4
import org.junit.Test
import org.junit.runner.RunWith
import org.junit.Assert.*
/**
* Instrumented test, which will execute on an Android device.
*
* See [testing documentation](http://d.android.com/tools/testing).
*/
@RunWith(AndroidJUnit4::class)
class ExampleInstrumentedTest {
@Test
fun useAppContext() {
// Context of the app under test.
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
assertEquals("com.tomhempel.coordinatorapp", appContext.packageName)
}
}

View File

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:networkSecurityConfig="@xml/network_security_config"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.CoordinatorApp"
android:usesCleartextTraffic="false"
tools:targetApi="31">
<activity
android:name=".MainActivity"
android:exported="true"
android:label="@string/app_name"
android:theme="@style/Theme.CoordinatorApp">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>

View File

@ -0,0 +1,30 @@
package com.tomhempel.coordinatorapp
import android.os.Bundle
import androidx.activity.ComponentActivity
import androidx.activity.compose.setContent
import androidx.activity.enableEdgeToEdge
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.safeDrawingPadding
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.Surface
import androidx.compose.ui.Modifier
import com.tomhempel.coordinatorapp.ui.CoordinatorAppRoot
import com.tomhempel.coordinatorapp.ui.theme.CoordinatorAppTheme
class MainActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
enableEdgeToEdge()
setContent {
CoordinatorAppTheme {
Surface(
modifier = Modifier.fillMaxSize().safeDrawingPadding(),
color = MaterialTheme.colorScheme.background,
) {
CoordinatorAppRoot()
}
}
}
}
}

View File

@ -0,0 +1,21 @@
package com.tomhempel.coordinatorapp.data
data class LoginResult(
val token: String,
val user: String,
val role: String,
val mustChangePassword: Boolean,
)
data class CounselorUser(
val userID: String,
val username: String,
val mustChangePassword: Boolean,
val supervisorUsername: String?,
)
data class SessionInfo(
val valid: Boolean,
val user: String,
val role: String,
)

View File

@ -0,0 +1,6 @@
package com.tomhempel.coordinatorapp.network
object ApiConfig {
const val BASE_URL = "http://49.13.157.44/nat-as-server/api"
const val CLIENT_HEADER = "coordinator"
}

View File

@ -0,0 +1,6 @@
package com.tomhempel.coordinatorapp.network
class ApiException(
override val message: String,
val code: String? = null,
) : Exception(message)

View File

@ -0,0 +1,223 @@
package com.tomhempel.coordinatorapp.network
import com.google.gson.JsonElement
import com.google.gson.JsonObject
import com.google.gson.JsonParser
import com.tomhempel.coordinatorapp.data.CounselorUser
import com.tomhempel.coordinatorapp.data.LoginResult
import com.tomhempel.coordinatorapp.data.SessionInfo
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.withContext
import okhttp3.MediaType.Companion.toMediaType
import okhttp3.OkHttpClient
import okhttp3.Request
import okhttp3.RequestBody.Companion.toRequestBody
import org.json.JSONObject
import java.util.concurrent.TimeUnit
object NatAsApiClient {
private val jsonMediaType = "application/json; charset=UTF-8".toMediaType()
private val client = OkHttpClient.Builder()
.connectTimeout(30, TimeUnit.SECONDS)
.readTimeout(60, TimeUnit.SECONDS)
.writeTimeout(60, TimeUnit.SECONDS)
.build()
suspend fun login(username: String, password: String): LoginResult = withContext(Dispatchers.IO) {
val body = JSONObject()
.put("username", username)
.put("password", password)
.toString()
.toRequestBody(jsonMediaType)
val request = Request.Builder()
.url("${ApiConfig.BASE_URL}/auth/login")
.header("X-QDB-Client", ApiConfig.CLIENT_HEADER)
.post(body)
.build()
execute(request) { data ->
val token = data.get("token")?.asString
?: throw ApiException("Login response missing token")
LoginResult(
token = token,
user = data.get("user")?.asString.orEmpty().ifBlank { username },
role = data.get("role")?.asString.orEmpty(),
mustChangePassword = data.get("mustChangePassword")?.asBoolean ?: false,
)
}
}
suspend fun changePassword(
token: String,
username: String,
oldPassword: String,
newPassword: String,
): LoginResult = withContext(Dispatchers.IO) {
val body = JSONObject()
.put("username", username)
.put("old_password", oldPassword)
.put("new_password", newPassword)
.toString()
.toRequestBody(jsonMediaType)
val request = authorizedRequest(token)
.url("${ApiConfig.BASE_URL}/auth/change-password")
.post(body)
.build()
execute(request) { data ->
val newToken = data.get("token")?.asString
?: throw ApiException("Password change response missing token")
LoginResult(
token = newToken,
user = data.get("user")?.asString.orEmpty().ifBlank { username },
role = data.get("role")?.asString.orEmpty(),
mustChangePassword = false,
)
}
}
suspend fun getSession(token: String): SessionInfo = withContext(Dispatchers.IO) {
val request = authorizedRequest(token)
.url("${ApiConfig.BASE_URL}/session")
.get()
.build()
execute(request) { data ->
SessionInfo(
valid = data.get("valid")?.asBoolean ?: false,
user = data.get("user")?.asString.orEmpty(),
role = data.get("role")?.asString.orEmpty(),
)
}
}
suspend fun listCounselors(token: String): List<CounselorUser> = withContext(Dispatchers.IO) {
val request = authorizedRequest(token)
.url("${ApiConfig.BASE_URL}/users")
.get()
.build()
execute(request) { data ->
val users = data.getAsJsonArray("users") ?: return@execute emptyList()
users.mapNotNull { element ->
val obj = element.asJsonObject
val role = obj.get("role")?.asString.orEmpty()
if (role != "coach") return@mapNotNull null
val userID = obj.get("userID")?.asString?.takeIf { it.isNotBlank() }
?: return@mapNotNull null
CounselorUser(
userID = userID,
username = obj.get("username")?.asString.orEmpty(),
mustChangePassword = (obj.get("mustChangePassword")?.asInt ?: 0) != 0,
supervisorUsername = obj.get("supervisorUsername")?.asString,
)
}.sortedBy { it.username.lowercase() }
}
}
suspend fun resetCounselorPassword(
token: String,
userID: String,
newPassword: String,
temporary: Boolean,
): Boolean = withContext(Dispatchers.IO) {
val body = JSONObject()
.put("userID", userID)
.put("password", newPassword)
.put("mustChangePassword", if (temporary) 1 else 0)
.toString()
.toRequestBody(jsonMediaType)
val request = authorizedRequest(token)
.url("${ApiConfig.BASE_URL}/users")
.patch(body)
.build()
execute(request) { data ->
(data.get("mustChangePassword")?.asInt ?: if (temporary) 1 else 0) != 0
}
}
suspend fun revokeCounselorSessions(token: String, userID: String): Int =
withContext(Dispatchers.IO) {
val body = JSONObject()
.put("action", "revokeSessions")
.put("userID", userID)
.toString()
.toRequestBody(jsonMediaType)
val request = authorizedRequest(token)
.url("${ApiConfig.BASE_URL}/users")
.patch(body)
.build()
execute(request) { data ->
data.get("revokedSessions")?.asInt ?: 0
}
}
suspend fun logout(token: String) = withContext(Dispatchers.IO) {
val request = authorizedRequest(token)
.url("${ApiConfig.BASE_URL}/logout")
.delete()
.build()
execute(request) { }
}
private fun authorizedRequest(token: String): Request.Builder =
Request.Builder()
.header("Authorization", "Bearer $token")
.header("X-QDB-Client", ApiConfig.CLIENT_HEADER)
.header("Content-Type", "application/json; charset=UTF-8")
private inline fun <T> execute(request: Request, parse: (JsonObject) -> T): T {
client.newCall(request).execute().use { response ->
val bodyText = response.body?.string()
val root = parseEnvelope(response.code, bodyText)
val data = root.get("data")
return when {
data == null || data.isJsonNull -> parse(JsonObject())
data.isJsonObject -> parse(data.asJsonObject)
else -> throw ApiException("Unexpected response data")
}
}
}
private fun parseEnvelope(httpCode: Int, body: String?): JsonObject {
if (body.isNullOrBlank()) {
throw ApiException("Empty server response ($httpCode)")
}
val root = try {
JsonParser.parseString(body).asJsonObject
} catch (_: Exception) {
throw ApiException("Server response was not valid JSON ($httpCode)")
}
if (!root.has("ok")) {
throw errorFromElement(root.get("error"), httpCode)
}
if (!root.get("ok").asBoolean) {
throw errorFromElement(root.get("error"), httpCode)
}
return root
}
private fun errorFromElement(errorEl: JsonElement?, httpCode: Int): ApiException {
if (errorEl == null || errorEl.isJsonNull) {
return ApiException("Unexpected server response ($httpCode)")
}
if (errorEl.isJsonObject) {
val o = errorEl.asJsonObject
return ApiException(
o.get("message")?.asString ?: "Server error ($httpCode)",
o.get("code")?.asString,
)
}
if (errorEl.isJsonPrimitive) {
return ApiException(errorEl.asString)
}
return ApiException("Unexpected server response ($httpCode)")
}
}

View File

@ -0,0 +1,42 @@
package com.tomhempel.coordinatorapp.network
import android.content.Context
import androidx.security.crypto.EncryptedSharedPreferences
import androidx.security.crypto.MasterKey
object SessionStore {
private const val PREF = "coordinator_secure_prefs"
private const val KEY_TOKEN = "token"
private const val KEY_USER = "user"
private const val KEY_ROLE = "role"
private fun prefs(context: Context) = EncryptedSharedPreferences.create(
context,
PREF,
MasterKey.Builder(context)
.setKeyScheme(MasterKey.KeyScheme.AES256_GCM)
.build(),
EncryptedSharedPreferences.PrefKeyEncryptionScheme.AES256_SIV,
EncryptedSharedPreferences.PrefValueEncryptionScheme.AES256_GCM,
)
fun save(context: Context, token: String, username: String, role: String) {
prefs(context).edit()
.putString(KEY_TOKEN, token)
.putString(KEY_USER, username)
.putString(KEY_ROLE, role)
.apply()
}
fun getToken(context: Context): String? = prefs(context).getString(KEY_TOKEN, null)
fun getUsername(context: Context): String? = prefs(context).getString(KEY_USER, null)
fun getRole(context: Context): String? = prefs(context).getString(KEY_ROLE, null)
fun hasSession(context: Context): Boolean = !getToken(context).isNullOrBlank()
fun clear(context: Context) {
prefs(context).edit().clear().apply()
}
}

View File

@ -0,0 +1,80 @@
package com.tomhempel.coordinatorapp.ui
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.material3.CircularProgressIndicator
import androidx.compose.runtime.Composable
import androidx.compose.runtime.getValue
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.lifecycle.compose.collectAsStateWithLifecycle
import androidx.lifecycle.viewmodel.compose.viewModel
import com.tomhempel.coordinatorapp.ui.counselors.SessionManagementScreen
import com.tomhempel.coordinatorapp.ui.home.HomeScreen
import com.tomhempel.coordinatorapp.ui.login.ChangePasswordScreen
import com.tomhempel.coordinatorapp.ui.login.LoginScreen
import com.tomhempel.coordinatorapp.viewmodel.AppScreen
import com.tomhempel.coordinatorapp.viewmodel.CoordinatorViewModel
@Composable
fun CoordinatorAppRoot(
viewModel: CoordinatorViewModel = viewModel(),
) {
val state by viewModel.uiState.collectAsStateWithLifecycle()
when {
state.isLoading && state.screen == AppScreen.Login && state.username.isBlank() -> {
Box(Modifier.fillMaxSize(), contentAlignment = Alignment.Center) {
CircularProgressIndicator()
}
}
state.screen == AppScreen.ChangePassword -> {
ChangePasswordScreen(
username = state.pendingUsername,
isLoading = state.isLoading,
errorMessage = state.errorMessage,
onSubmit = viewModel::changePassword,
)
}
state.screen == AppScreen.Home -> {
HomeScreen(
username = state.username,
role = state.role,
onOpenSessionManagement = viewModel::openSessionManagement,
onLogout = viewModel::logout,
)
}
state.screen == AppScreen.SessionManagement -> {
SessionManagementScreen(
username = state.username,
role = state.role,
counselors = state.counselors,
isRefreshing = state.isRefreshing,
resetTarget = state.resetTarget,
isResettingPassword = state.isResettingPassword,
resetError = state.resetError,
revokeTarget = state.revokeTarget,
isRevokingSessions = state.isRevokingSessions,
revokeError = state.revokeError,
snackbarMessage = state.snackbarMessage,
onRefresh = viewModel::refreshCounselors,
onBack = viewModel::navigateHome,
onLogout = viewModel::logout,
onResetPassword = viewModel::openResetPassword,
onDismissReset = viewModel::dismissResetPassword,
onConfirmReset = viewModel::resetPassword,
onRevokeSessions = viewModel::openRevokeSessions,
onDismissRevoke = viewModel::dismissRevokeSessions,
onConfirmRevoke = viewModel::confirmRevokeSessions,
onSnackbarShown = viewModel::clearSnackbar,
)
}
else -> {
LoginScreen(
isLoading = state.isLoading,
errorMessage = state.errorMessage,
onLogin = viewModel::login,
)
}
}
}

View File

@ -0,0 +1,179 @@
package com.tomhempel.coordinatorapp.ui.components
import androidx.compose.foundation.background
import androidx.compose.foundation.border
import androidx.compose.foundation.clickable
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.BoxWithConstraints
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.ColumnScope
import androidx.compose.foundation.layout.PaddingValues
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.size
import androidx.compose.foundation.layout.widthIn
import androidx.compose.foundation.shape.CircleShape
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material3.Card
import androidx.compose.material3.CardDefaults
import androidx.compose.material3.Icon
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.draw.clip
import androidx.compose.ui.graphics.Brush
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.unit.Dp
import androidx.compose.ui.unit.dp
@Composable
fun CoordinatorBackground(
modifier: Modifier = Modifier,
content: @Composable () -> Unit,
) {
val scheme = MaterialTheme.colorScheme
Box(
modifier = modifier
.fillMaxSize()
.background(
Brush.verticalGradient(
colors = listOf(
scheme.background,
scheme.surfaceVariant,
scheme.background,
),
),
),
) {
content()
}
}
@Composable
fun ResponsiveContent(
modifier: Modifier = Modifier,
maxContentWidth: Dp = 1120.dp,
horizontalPadding: Dp = 20.dp,
verticalPadding: Dp = 16.dp,
content: @Composable ColumnScope.() -> Unit,
) {
BoxWithConstraints(
modifier = modifier.fillMaxWidth(),
contentAlignment = Alignment.TopCenter,
) {
val sidePadding = when {
maxWidth < 360.dp -> 16.dp
maxWidth < 600.dp -> horizontalPadding
else -> 28.dp
}
Column(
modifier = Modifier
.widthIn(max = maxContentWidth)
.fillMaxWidth()
.padding(horizontal = sidePadding, vertical = verticalPadding),
content = content,
)
}
}
@Composable
fun FeatureTile(
title: String,
description: String,
icon: ImageVector,
onClick: () -> Unit,
modifier: Modifier = Modifier,
) {
val scheme = MaterialTheme.colorScheme
Card(
modifier = modifier
.fillMaxWidth()
.clickable(onClick = onClick),
shape = RoundedCornerShape(20.dp),
colors = CardDefaults.cardColors(containerColor = scheme.surface),
elevation = CardDefaults.cardElevation(defaultElevation = 0.dp),
) {
Column(
modifier = Modifier
.fillMaxWidth()
.border(
width = 1.dp,
color = scheme.outline,
shape = RoundedCornerShape(20.dp),
)
.padding(20.dp),
verticalArrangement = Arrangement.spacedBy(14.dp),
) {
Box(
modifier = Modifier
.size(48.dp)
.clip(CircleShape)
.background(scheme.primaryContainer),
contentAlignment = Alignment.Center,
) {
Icon(
imageVector = icon,
contentDescription = null,
tint = scheme.primary,
modifier = Modifier.size(24.dp),
)
}
Column(verticalArrangement = Arrangement.spacedBy(6.dp)) {
Text(
text = title,
style = MaterialTheme.typography.titleMedium,
fontWeight = FontWeight.SemiBold,
color = scheme.onSurface,
)
Text(
text = description,
style = MaterialTheme.typography.bodyMedium,
color = scheme.onSurfaceVariant,
)
}
}
}
}
@Composable
fun AuthCard(
modifier: Modifier = Modifier,
content: @Composable ColumnScope.() -> Unit,
) {
val scheme = MaterialTheme.colorScheme
Card(
modifier = modifier.fillMaxWidth(),
shape = RoundedCornerShape(24.dp),
colors = CardDefaults.cardColors(containerColor = scheme.surface),
elevation = CardDefaults.cardElevation(defaultElevation = 0.dp),
) {
Column(
modifier = Modifier
.fillMaxWidth()
.border(
width = 1.dp,
color = scheme.outline,
shape = RoundedCornerShape(24.dp),
)
.padding(24.dp),
verticalArrangement = Arrangement.spacedBy(16.dp),
content = content,
)
}
}
fun gridColumnCount(contentWidth: Dp): Int = when {
contentWidth < 520.dp -> 1
contentWidth < 840.dp -> 2
else -> 3
}
fun gridContentPadding(contentWidth: Dp): PaddingValues {
val horizontal = if (contentWidth < 360.dp) 16.dp else 20.dp
return PaddingValues(horizontal = horizontal, vertical = 12.dp)
}

View File

@ -0,0 +1,404 @@
package com.tomhempel.coordinatorapp.ui.counselors
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.BoxWithConstraints
import androidx.compose.foundation.lazy.grid.GridCells
import androidx.compose.foundation.lazy.grid.LazyVerticalGrid
import androidx.compose.foundation.lazy.grid.items
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.automirrored.filled.ArrowBack
import androidx.compose.material.icons.automirrored.filled.Logout
import androidx.compose.material.icons.filled.LockReset
import androidx.compose.material.icons.filled.Refresh
import androidx.compose.material3.AlertDialog
import androidx.compose.foundation.border
import androidx.compose.material3.Button
import androidx.compose.material3.Card
import androidx.compose.material3.CardDefaults
import androidx.compose.material3.CircularProgressIndicator
import androidx.compose.material3.ExperimentalMaterial3Api
import androidx.compose.material3.Icon
import androidx.compose.material3.IconButton
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.OutlinedButton
import androidx.compose.material3.OutlinedTextField
import androidx.compose.material3.Scaffold
import androidx.compose.material3.SnackbarHost
import androidx.compose.material3.SnackbarHostState
import androidx.compose.material3.Text
import androidx.compose.material3.TextButton
import androidx.compose.material3.TopAppBar
import androidx.compose.material3.TopAppBarDefaults
import androidx.compose.material3.pulltorefresh.PullToRefreshBox
import androidx.compose.runtime.Composable
import androidx.compose.runtime.LaunchedEffect
import androidx.compose.runtime.getValue
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.remember
import androidx.compose.runtime.saveable.rememberSaveable
import androidx.compose.runtime.setValue
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.text.input.PasswordVisualTransformation
import androidx.compose.ui.unit.dp
import com.tomhempel.coordinatorapp.data.CounselorUser
import com.tomhempel.coordinatorapp.ui.components.CoordinatorBackground
import com.tomhempel.coordinatorapp.ui.components.gridColumnCount
import com.tomhempel.coordinatorapp.ui.components.gridContentPadding
@OptIn(ExperimentalMaterial3Api::class)
@Composable
fun SessionManagementScreen(
username: String,
role: String,
counselors: List<CounselorUser>,
isRefreshing: Boolean,
resetTarget: CounselorUser?,
isResettingPassword: Boolean,
resetError: String?,
revokeTarget: CounselorUser?,
isRevokingSessions: Boolean,
revokeError: String?,
snackbarMessage: String?,
onRefresh: () -> Unit,
onBack: () -> Unit,
onLogout: () -> Unit,
onResetPassword: (CounselorUser) -> Unit,
onDismissReset: () -> Unit,
onConfirmReset: (newPassword: String, confirmPassword: String, temporary: Boolean) -> Unit,
onRevokeSessions: (CounselorUser) -> Unit,
onDismissRevoke: () -> Unit,
onConfirmRevoke: () -> Unit,
onSnackbarShown: () -> Unit,
modifier: Modifier = Modifier,
) {
val snackbarHostState = remember { SnackbarHostState() }
LaunchedEffect(snackbarMessage) {
val message = snackbarMessage ?: return@LaunchedEffect
snackbarHostState.showSnackbar(message)
onSnackbarShown()
}
CoordinatorBackground(modifier = modifier) {
Scaffold(
modifier = Modifier.fillMaxSize(),
containerColor = androidx.compose.ui.graphics.Color.Transparent,
topBar = {
TopAppBar(
navigationIcon = {
IconButton(onClick = onBack) {
Icon(Icons.AutoMirrored.Filled.ArrowBack, contentDescription = "Back")
}
},
title = {
Column {
Text("Session management", fontWeight = FontWeight.SemiBold)
Text(
text = "$username · ${formatRole(role)}",
style = MaterialTheme.typography.bodySmall,
color = MaterialTheme.colorScheme.onSurfaceVariant,
)
}
},
actions = {
IconButton(onClick = onRefresh, enabled = !isRefreshing) {
Icon(Icons.Default.Refresh, contentDescription = "Refresh")
}
IconButton(onClick = onLogout) {
Icon(Icons.AutoMirrored.Filled.Logout, contentDescription = "Log out")
}
},
colors = TopAppBarDefaults.topAppBarColors(
containerColor = androidx.compose.ui.graphics.Color.Transparent,
),
)
},
snackbarHost = { SnackbarHost(snackbarHostState) },
) { padding ->
PullToRefreshBox(
isRefreshing = isRefreshing,
onRefresh = onRefresh,
modifier = Modifier
.fillMaxSize()
.padding(padding),
) {
if (counselors.isEmpty()) {
Box(
modifier = Modifier
.fillMaxSize()
.padding(24.dp),
contentAlignment = Alignment.Center,
) {
Column(
horizontalAlignment = Alignment.CenterHorizontally,
verticalArrangement = Arrangement.spacedBy(8.dp),
) {
Text(
text = "No counselors yet",
style = MaterialTheme.typography.titleMedium,
fontWeight = FontWeight.SemiBold,
)
Text(
text = "Assigned counselors will appear here.",
style = MaterialTheme.typography.bodyLarge,
color = MaterialTheme.colorScheme.onSurfaceVariant,
)
}
}
} else {
BoxWithConstraints(modifier = Modifier.fillMaxSize()) {
val columns = gridColumnCount(maxWidth)
val contentPadding = gridContentPadding(maxWidth)
LazyVerticalGrid(
columns = GridCells.Fixed(columns),
modifier = Modifier.fillMaxSize(),
contentPadding = contentPadding,
horizontalArrangement = Arrangement.spacedBy(14.dp),
verticalArrangement = Arrangement.spacedBy(14.dp),
) {
items(counselors, key = { it.userID }) { counselor ->
CounselorCard(
counselor = counselor,
showSupervisor = role == "admin",
onResetPassword = { onResetPassword(counselor) },
onRevokeSessions = { onRevokeSessions(counselor) },
)
}
}
}
}
}
}
}
if (resetTarget != null) {
ResetPasswordDialog(
counselor = resetTarget,
isLoading = isResettingPassword,
errorMessage = resetError,
onDismiss = onDismissReset,
onConfirm = onConfirmReset,
)
}
if (revokeTarget != null) {
RevokeSessionsDialog(
counselor = revokeTarget,
isLoading = isRevokingSessions,
errorMessage = revokeError,
onDismiss = onDismissRevoke,
onConfirm = onConfirmRevoke,
)
}
}
@Composable
private fun CounselorCard(
counselor: CounselorUser,
showSupervisor: Boolean,
onResetPassword: () -> Unit,
onRevokeSessions: () -> Unit,
) {
val scheme = MaterialTheme.colorScheme
Card(
modifier = Modifier.fillMaxWidth(),
shape = RoundedCornerShape(18.dp),
colors = CardDefaults.cardColors(containerColor = scheme.surface),
elevation = CardDefaults.cardElevation(defaultElevation = 0.dp),
) {
Column(
modifier = Modifier
.fillMaxWidth()
.border(
width = 1.dp,
color = scheme.outline,
shape = RoundedCornerShape(18.dp),
)
.padding(16.dp),
verticalArrangement = Arrangement.spacedBy(12.dp),
) {
Column(modifier = Modifier.fillMaxWidth()) {
Text(
text = counselor.username,
style = MaterialTheme.typography.titleMedium,
fontWeight = FontWeight.SemiBold,
)
if (showSupervisor && !counselor.supervisorUsername.isNullOrBlank()) {
Text(
text = "Supervisor: ${counselor.supervisorUsername}",
style = MaterialTheme.typography.bodySmall,
color = MaterialTheme.colorScheme.onSurfaceVariant,
)
}
if (counselor.mustChangePassword) {
Text(
text = "Must change password on next sign-in",
style = MaterialTheme.typography.bodySmall,
color = MaterialTheme.colorScheme.primary,
modifier = Modifier.padding(top = 4.dp),
)
}
}
Button(
onClick = onResetPassword,
modifier = Modifier.fillMaxWidth(),
shape = RoundedCornerShape(12.dp),
) {
Icon(
Icons.Default.LockReset,
contentDescription = null,
modifier = Modifier.padding(end = 6.dp),
)
Text("Set temporary password")
}
OutlinedButton(
onClick = onRevokeSessions,
modifier = Modifier.fillMaxWidth(),
shape = RoundedCornerShape(12.dp),
) {
Icon(
Icons.AutoMirrored.Filled.Logout,
contentDescription = null,
modifier = Modifier.padding(end = 6.dp),
)
Text("Sign out everywhere")
}
}
}
}
@Composable
private fun ResetPasswordDialog(
counselor: CounselorUser,
isLoading: Boolean,
errorMessage: String?,
onDismiss: () -> Unit,
onConfirm: (newPassword: String, confirmPassword: String, temporary: Boolean) -> Unit,
) {
var newPassword by rememberSaveable(counselor.userID) { mutableStateOf("") }
var confirmPassword by rememberSaveable(counselor.userID) { mutableStateOf("") }
AlertDialog(
onDismissRequest = { if (!isLoading) onDismiss() },
title = { Text("Reset temporary password") },
text = {
Column(verticalArrangement = Arrangement.spacedBy(12.dp)) {
Text(
text = "Set a new temporary password for ${counselor.username}. They must change it when signing in to the field app.",
style = MaterialTheme.typography.bodyMedium,
)
OutlinedTextField(
value = newPassword,
onValueChange = { newPassword = it },
modifier = Modifier.fillMaxWidth(),
label = { Text("New password") },
singleLine = true,
enabled = !isLoading,
visualTransformation = PasswordVisualTransformation(),
)
OutlinedTextField(
value = confirmPassword,
onValueChange = { confirmPassword = it },
modifier = Modifier.fillMaxWidth(),
label = { Text("Confirm password") },
singleLine = true,
enabled = !isLoading,
visualTransformation = PasswordVisualTransformation(),
)
if (!errorMessage.isNullOrBlank()) {
Text(
text = errorMessage,
color = MaterialTheme.colorScheme.error,
style = MaterialTheme.typography.bodySmall,
)
}
}
},
confirmButton = {
Button(
onClick = { onConfirm(newPassword, confirmPassword, true) },
enabled = !isLoading,
) {
if (isLoading) {
CircularProgressIndicator(
modifier = Modifier.padding(horizontal = 12.dp),
strokeWidth = 2.dp,
)
} else {
Text("Set password")
}
}
},
dismissButton = {
TextButton(onClick = onDismiss, enabled = !isLoading) {
Text("Cancel")
}
},
)
}
@Composable
private fun RevokeSessionsDialog(
counselor: CounselorUser,
isLoading: Boolean,
errorMessage: String?,
onDismiss: () -> Unit,
onConfirm: () -> Unit,
) {
AlertDialog(
onDismissRequest = { if (!isLoading) onDismiss() },
title = { Text("Sign out everywhere") },
text = {
Column(verticalArrangement = Arrangement.spacedBy(8.dp)) {
Text(
text = "End all active sessions for ${counselor.username}? They will need to sign in again on every device.",
style = MaterialTheme.typography.bodyMedium,
)
if (!errorMessage.isNullOrBlank()) {
Text(
text = errorMessage,
color = MaterialTheme.colorScheme.error,
style = MaterialTheme.typography.bodySmall,
)
}
}
},
confirmButton = {
Button(
onClick = onConfirm,
enabled = !isLoading,
) {
if (isLoading) {
CircularProgressIndicator(
modifier = Modifier.padding(horizontal = 12.dp),
strokeWidth = 2.dp,
)
} else {
Text("Sign out")
}
}
},
dismissButton = {
TextButton(onClick = onDismiss, enabled = !isLoading) {
Text("Cancel")
}
},
)
}
private fun formatRole(role: String): String = when (role) {
"admin" -> "Admin"
"supervisor" -> "Supervisor"
else -> role.replaceFirstChar { it.uppercase() }
}

View File

@ -0,0 +1,153 @@
package com.tomhempel.coordinatorapp.ui.home
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.BoxWithConstraints
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.PaddingValues
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.lazy.grid.GridCells
import androidx.compose.foundation.lazy.grid.GridItemSpan
import androidx.compose.foundation.lazy.grid.LazyVerticalGrid
import androidx.compose.foundation.lazy.grid.items
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.automirrored.filled.Logout
import androidx.compose.material.icons.filled.ManageAccounts
import androidx.compose.material3.ExperimentalMaterial3Api
import androidx.compose.material3.Icon
import androidx.compose.material3.IconButton
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.Scaffold
import androidx.compose.material3.Text
import androidx.compose.material3.TopAppBar
import androidx.compose.material3.TopAppBarDefaults
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.unit.dp
import com.tomhempel.coordinatorapp.ui.components.CoordinatorBackground
import com.tomhempel.coordinatorapp.ui.components.FeatureTile
import com.tomhempel.coordinatorapp.ui.components.gridColumnCount
import com.tomhempel.coordinatorapp.ui.components.gridContentPadding
private data class HomeFeature(
val id: HomeFeatureId,
val title: String,
val description: String,
val icon: androidx.compose.ui.graphics.vector.ImageVector,
)
private enum class HomeFeatureId {
SessionManagement,
}
@OptIn(ExperimentalMaterial3Api::class)
@Composable
fun HomeScreen(
username: String,
role: String,
onOpenSessionManagement: () -> Unit,
onLogout: () -> Unit,
modifier: Modifier = Modifier,
) {
val features = listOf(
HomeFeature(
id = HomeFeatureId.SessionManagement,
title = "Session management",
description = "Reset counselor passwords and sign them out on all devices.",
icon = Icons.Default.ManageAccounts,
),
)
CoordinatorBackground(modifier = modifier) {
Scaffold(
modifier = Modifier.fillMaxSize(),
containerColor = androidx.compose.ui.graphics.Color.Transparent,
topBar = {
TopAppBar(
title = {
Column {
Text(
text = "NAT-AS Coordinator",
fontWeight = FontWeight.SemiBold,
)
Text(
text = "$username · ${formatRole(role)}",
style = MaterialTheme.typography.bodySmall,
color = MaterialTheme.colorScheme.onSurfaceVariant,
)
}
},
actions = {
IconButton(onClick = onLogout) {
Icon(
Icons.AutoMirrored.Filled.Logout,
contentDescription = "Log out",
)
}
},
colors = TopAppBarDefaults.topAppBarColors(
containerColor = androidx.compose.ui.graphics.Color.Transparent,
),
)
},
) { padding ->
BoxWithConstraints(
modifier = Modifier
.fillMaxSize()
.padding(padding),
) {
val columns = gridColumnCount(maxWidth)
val contentPadding = gridContentPadding(maxWidth)
LazyVerticalGrid(
columns = GridCells.Fixed(columns),
modifier = Modifier.fillMaxSize(),
contentPadding = contentPadding,
horizontalArrangement = Arrangement.spacedBy(14.dp),
verticalArrangement = Arrangement.spacedBy(14.dp),
) {
item(span = { GridItemSpan(columns) }) {
Column(
modifier = Modifier
.fillMaxWidth()
.padding(bottom = 4.dp),
verticalArrangement = Arrangement.spacedBy(6.dp),
) {
Text(
text = "Welcome back",
style = MaterialTheme.typography.headlineSmall,
fontWeight = FontWeight.Bold,
)
Text(
text = "Choose a task to get started.",
style = MaterialTheme.typography.bodyLarge,
color = MaterialTheme.colorScheme.onSurfaceVariant,
)
}
}
items(features, key = { it.id }) { feature ->
FeatureTile(
title = feature.title,
description = feature.description,
icon = feature.icon,
onClick = {
when (feature.id) {
HomeFeatureId.SessionManagement -> onOpenSessionManagement()
}
},
)
}
}
}
}
}
}
private fun formatRole(role: String): String = when (role) {
"admin" -> "Admin"
"supervisor" -> "Supervisor"
else -> role.replaceFirstChar { it.uppercase() }
}

View File

@ -0,0 +1,252 @@
package com.tomhempel.coordinatorapp.ui.login
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.imePadding
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.rememberScrollState
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.foundation.text.KeyboardActions
import androidx.compose.foundation.text.KeyboardOptions
import androidx.compose.foundation.verticalScroll
import androidx.compose.material3.Button
import androidx.compose.material3.CircularProgressIndicator
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.OutlinedTextField
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.runtime.getValue
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.saveable.rememberSaveable
import androidx.compose.runtime.setValue
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.text.input.ImeAction
import androidx.compose.ui.text.input.KeyboardType
import androidx.compose.ui.text.input.PasswordVisualTransformation
import androidx.compose.ui.unit.dp
import com.tomhempel.coordinatorapp.ui.components.AuthCard
import com.tomhempel.coordinatorapp.ui.components.CoordinatorBackground
import com.tomhempel.coordinatorapp.ui.components.ResponsiveContent
@Composable
fun LoginScreen(
isLoading: Boolean,
errorMessage: String?,
onLogin: (username: String, password: String) -> Unit,
modifier: Modifier = Modifier,
) {
var username by rememberSaveable { mutableStateOf("") }
var password by rememberSaveable { mutableStateOf("") }
CoordinatorBackground(modifier = modifier) {
Box(
modifier = Modifier
.fillMaxSize()
.imePadding(),
contentAlignment = Alignment.Center,
) {
ResponsiveContent(
maxContentWidth = 440.dp,
verticalPadding = 24.dp,
) {
Column(
modifier = Modifier
.fillMaxWidth()
.verticalScroll(rememberScrollState()),
horizontalAlignment = Alignment.CenterHorizontally,
) {
Text(
text = "NAT-AS Coordinator",
style = MaterialTheme.typography.headlineMedium,
fontWeight = FontWeight.Bold,
color = MaterialTheme.colorScheme.onBackground,
)
Text(
text = "Supervisor and admin tools",
style = MaterialTheme.typography.bodyLarge,
color = MaterialTheme.colorScheme.onSurfaceVariant,
modifier = Modifier.padding(top = 8.dp, bottom = 28.dp),
)
AuthCard {
Text(
text = "Sign in",
style = MaterialTheme.typography.titleLarge,
fontWeight = FontWeight.SemiBold,
)
Text(
text = "Use your coordinator account",
style = MaterialTheme.typography.bodyMedium,
color = MaterialTheme.colorScheme.onSurfaceVariant,
)
OutlinedTextField(
value = username,
onValueChange = { username = it },
modifier = Modifier.fillMaxWidth(),
label = { Text("Username") },
singleLine = true,
enabled = !isLoading,
keyboardOptions = KeyboardOptions(
keyboardType = KeyboardType.Text,
imeAction = ImeAction.Next,
),
)
OutlinedTextField(
value = password,
onValueChange = { password = it },
modifier = Modifier.fillMaxWidth(),
label = { Text("Password") },
singleLine = true,
enabled = !isLoading,
visualTransformation = PasswordVisualTransformation(),
keyboardOptions = KeyboardOptions(
keyboardType = KeyboardType.Password,
imeAction = ImeAction.Done,
),
keyboardActions = KeyboardActions(
onDone = {
if (!isLoading) onLogin(username.trim(), password)
},
),
)
if (!errorMessage.isNullOrBlank()) {
Text(
text = errorMessage,
color = MaterialTheme.colorScheme.error,
style = MaterialTheme.typography.bodyMedium,
)
}
Button(
onClick = { onLogin(username.trim(), password) },
modifier = Modifier
.fillMaxWidth()
.height(48.dp),
enabled = !isLoading,
shape = RoundedCornerShape(14.dp),
) {
if (isLoading) {
CircularProgressIndicator(
modifier = Modifier.height(22.dp),
strokeWidth = 2.dp,
color = MaterialTheme.colorScheme.onPrimary,
)
} else {
Text("Log in")
}
}
}
Spacer(modifier = Modifier.height(20.dp))
Text(
text = "Counselors sign in through the field app.",
style = MaterialTheme.typography.bodySmall,
color = MaterialTheme.colorScheme.onSurfaceVariant,
)
}
}
}
}
}
@Composable
fun ChangePasswordScreen(
username: String,
isLoading: Boolean,
errorMessage: String?,
onSubmit: (newPassword: String, confirmPassword: String) -> Unit,
modifier: Modifier = Modifier,
) {
var newPassword by rememberSaveable { mutableStateOf("") }
var confirmPassword by rememberSaveable { mutableStateOf("") }
CoordinatorBackground(modifier = modifier) {
Box(
modifier = Modifier
.fillMaxSize()
.imePadding(),
contentAlignment = Alignment.Center,
) {
ResponsiveContent(
maxContentWidth = 440.dp,
verticalPadding = 24.dp,
) {
Column(
modifier = Modifier
.fillMaxWidth()
.verticalScroll(rememberScrollState()),
) {
AuthCard {
Text(
text = "Choose a new password",
style = MaterialTheme.typography.titleLarge,
fontWeight = FontWeight.SemiBold,
)
Text(
text = username,
style = MaterialTheme.typography.bodyMedium,
color = MaterialTheme.colorScheme.onSurfaceVariant,
)
OutlinedTextField(
value = newPassword,
onValueChange = { newPassword = it },
modifier = Modifier.fillMaxWidth(),
label = { Text("New password") },
singleLine = true,
enabled = !isLoading,
visualTransformation = PasswordVisualTransformation(),
)
OutlinedTextField(
value = confirmPassword,
onValueChange = { confirmPassword = it },
modifier = Modifier.fillMaxWidth(),
label = { Text("Confirm password") },
singleLine = true,
enabled = !isLoading,
visualTransformation = PasswordVisualTransformation(),
)
if (!errorMessage.isNullOrBlank()) {
Text(
text = errorMessage,
color = MaterialTheme.colorScheme.error,
style = MaterialTheme.typography.bodyMedium,
)
}
Button(
onClick = { onSubmit(newPassword, confirmPassword) },
modifier = Modifier
.fillMaxWidth()
.height(48.dp),
enabled = !isLoading,
shape = RoundedCornerShape(14.dp),
) {
if (isLoading) {
CircularProgressIndicator(
modifier = Modifier.height(22.dp),
strokeWidth = 2.dp,
color = MaterialTheme.colorScheme.onPrimary,
)
} else {
Text("Save and continue")
}
}
}
}
}
}
}
}

View File

@ -0,0 +1,21 @@
package com.tomhempel.coordinatorapp.ui.theme
import androidx.compose.ui.graphics.Color
val BrandPurple = Color(0xFF6E56CF)
val BrandPurpleDark = Color(0xFF9B8AE8)
val BrandWindowBg = Color(0xFFF4F8F7)
val BrandSurface = Color(0xFFFFFFFF)
val BrandTextDark = Color(0xFF1F3A37)
val BrandTextMuted = Color(0xFF6E8480)
val BrandStroke = Color(0xFFD5E4E0)
val BrandDestructive = Color(0xFFC62828)
val BrandAccentContainer = Color(0xFFE6F4F0)
val BrandWindowBgDark = Color(0xFF121A19)
val BrandSurfaceDark = Color(0xFF1E2A28)
val BrandTextLight = Color(0xFFE8F2F0)
val BrandTextMutedDark = Color(0xFF8AA39E)
val BrandStrokeDark = Color(0xFF2D403C)
val BrandAccentContainerDark = Color(0xFF243532)

View File

@ -0,0 +1,72 @@
package com.tomhempel.coordinatorapp.ui.theme
import android.app.Activity
import androidx.compose.foundation.isSystemInDarkTheme
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.darkColorScheme
import androidx.compose.material3.lightColorScheme
import androidx.compose.runtime.Composable
import androidx.compose.runtime.SideEffect
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.toArgb
import androidx.compose.ui.platform.LocalView
import androidx.core.view.WindowCompat
private val LightColorScheme = lightColorScheme(
primary = BrandPurple,
onPrimary = Color.White,
primaryContainer = BrandAccentContainer,
onPrimaryContainer = BrandTextDark,
background = BrandWindowBg,
onBackground = BrandTextDark,
surface = BrandSurface,
onSurface = BrandTextDark,
surfaceVariant = BrandAccentContainer,
onSurfaceVariant = BrandTextMuted,
outline = BrandStroke,
error = BrandDestructive,
onError = Color.White,
)
private val DarkColorScheme = darkColorScheme(
primary = BrandPurpleDark,
onPrimary = Color(0xFF1F163D),
primaryContainer = BrandAccentContainerDark,
onPrimaryContainer = BrandTextLight,
background = BrandWindowBgDark,
onBackground = BrandTextLight,
surface = BrandSurfaceDark,
onSurface = BrandTextLight,
surfaceVariant = BrandAccentContainerDark,
onSurfaceVariant = BrandTextMutedDark,
outline = BrandStrokeDark,
error = BrandDestructive,
onError = Color.White,
)
@Composable
fun CoordinatorAppTheme(
darkTheme: Boolean = isSystemInDarkTheme(),
content: @Composable () -> Unit,
) {
val colorScheme = if (darkTheme) DarkColorScheme else LightColorScheme
val view = LocalView.current
if (!view.isInEditMode) {
SideEffect {
val window = (view.context as Activity).window
window.statusBarColor = colorScheme.background.toArgb()
window.navigationBarColor = colorScheme.background.toArgb()
WindowCompat.getInsetsController(window, view).apply {
isAppearanceLightStatusBars = !darkTheme
isAppearanceLightNavigationBars = !darkTheme
}
}
}
MaterialTheme(
colorScheme = colorScheme,
typography = Typography,
content = content,
)
}

View File

@ -0,0 +1,34 @@
package com.tomhempel.coordinatorapp.ui.theme
import androidx.compose.material3.Typography
import androidx.compose.ui.text.TextStyle
import androidx.compose.ui.text.font.FontFamily
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.unit.sp
// Set of Material typography styles to start with
val Typography = Typography(
bodyLarge = TextStyle(
fontFamily = FontFamily.Default,
fontWeight = FontWeight.Normal,
fontSize = 16.sp,
lineHeight = 24.sp,
letterSpacing = 0.5.sp
)
/* Other default text styles to override
titleLarge = TextStyle(
fontFamily = FontFamily.Default,
fontWeight = FontWeight.Normal,
fontSize = 22.sp,
lineHeight = 28.sp,
letterSpacing = 0.sp
),
labelSmall = TextStyle(
fontFamily = FontFamily.Default,
fontWeight = FontWeight.Medium,
fontSize = 11.sp,
lineHeight = 16.sp,
letterSpacing = 0.5.sp
)
*/
)

View File

@ -0,0 +1,346 @@
package com.tomhempel.coordinatorapp.viewmodel
import android.app.Application
import androidx.lifecycle.AndroidViewModel
import androidx.lifecycle.viewModelScope
import com.tomhempel.coordinatorapp.data.CounselorUser
import com.tomhempel.coordinatorapp.network.ApiException
import com.tomhempel.coordinatorapp.network.NatAsApiClient
import com.tomhempel.coordinatorapp.network.SessionStore
import kotlinx.coroutines.flow.MutableStateFlow
import kotlinx.coroutines.flow.StateFlow
import kotlinx.coroutines.flow.asStateFlow
import kotlinx.coroutines.flow.update
import kotlinx.coroutines.launch
class CoordinatorViewModel(application: Application) : AndroidViewModel(application) {
private val _uiState = MutableStateFlow(CoordinatorUiState())
val uiState: StateFlow<CoordinatorUiState> = _uiState.asStateFlow()
private val allowedRoles = setOf("admin", "supervisor")
init {
restoreSession()
}
private fun restoreSession() {
val context = getApplication<Application>()
val token = SessionStore.getToken(context) ?: return
viewModelScope.launch {
_uiState.update { it.copy(isLoading = true) }
try {
val session = NatAsApiClient.getSession(token)
if (!session.valid || session.role !in allowedRoles) {
SessionStore.clear(context)
_uiState.update { CoordinatorUiState() }
return@launch
}
val counselors = NatAsApiClient.listCounselors(token)
_uiState.update {
CoordinatorUiState(
screen = AppScreen.Home,
username = session.user,
role = session.role,
counselors = counselors,
)
}
} catch (_: Exception) {
SessionStore.clear(context)
_uiState.update { CoordinatorUiState() }
}
}
}
fun login(username: String, password: String) {
val trimmedUser = username.trim()
if (trimmedUser.isBlank() || password.isBlank()) {
_uiState.update { it.copy(errorMessage = "Username and password are required") }
return
}
viewModelScope.launch {
_uiState.update { it.copy(isLoading = true, errorMessage = null) }
try {
val result = NatAsApiClient.login(trimmedUser, password)
if (result.role !in allowedRoles) {
_uiState.update {
it.copy(
isLoading = false,
errorMessage = "Only supervisor or admin accounts can use this app.",
)
}
return@launch
}
if (result.mustChangePassword) {
_uiState.update {
it.copy(
isLoading = false,
screen = AppScreen.ChangePassword,
pendingUsername = trimmedUser,
pendingOldPassword = password,
pendingTempToken = result.token,
errorMessage = null,
)
}
return@launch
}
completeLogin(result.token, result.user, result.role)
} catch (e: ApiException) {
_uiState.update { it.copy(isLoading = false, errorMessage = e.message) }
} catch (e: Exception) {
_uiState.update {
it.copy(isLoading = false, errorMessage = e.message ?: "Login failed")
}
}
}
}
fun changePassword(newPassword: String, confirmPassword: String) {
val state = _uiState.value
val token = state.pendingTempToken
val username = state.pendingUsername
val oldPassword = state.pendingOldPassword
if (token.isBlank() || username.isBlank()) {
_uiState.update { it.copy(errorMessage = "Session expired. Please sign in again.") }
return
}
if (newPassword.length < 6) {
_uiState.update { it.copy(errorMessage = "Password must be at least 6 characters") }
return
}
if (newPassword != confirmPassword) {
_uiState.update { it.copy(errorMessage = "Passwords do not match") }
return
}
viewModelScope.launch {
_uiState.update { it.copy(isLoading = true, errorMessage = null) }
try {
val result = NatAsApiClient.changePassword(token, username, oldPassword, newPassword)
if (result.role !in allowedRoles) {
_uiState.update {
it.copy(
isLoading = false,
errorMessage = "Only supervisor or admin accounts can use this app.",
)
}
return@launch
}
completeLogin(result.token, result.user, result.role)
} catch (e: ApiException) {
_uiState.update { it.copy(isLoading = false, errorMessage = e.message) }
} catch (e: Exception) {
_uiState.update {
it.copy(isLoading = false, errorMessage = e.message ?: "Password change failed")
}
}
}
}
fun openSessionManagement() {
_uiState.update { it.copy(screen = AppScreen.SessionManagement, errorMessage = null) }
if (_uiState.value.counselors.isEmpty()) {
refreshCounselors()
}
}
fun navigateHome() {
_uiState.update {
it.copy(
screen = AppScreen.Home,
resetTarget = null,
resetError = null,
revokeTarget = null,
revokeError = null,
errorMessage = null,
)
}
}
fun refreshCounselors() {
val context = getApplication<Application>()
val token = SessionStore.getToken(context) ?: return
viewModelScope.launch {
_uiState.update { it.copy(isRefreshing = true, errorMessage = null) }
try {
val counselors = NatAsApiClient.listCounselors(token)
_uiState.update { it.copy(counselors = counselors, isRefreshing = false) }
} catch (e: ApiException) {
_uiState.update { it.copy(isRefreshing = false, errorMessage = e.message) }
} catch (e: Exception) {
_uiState.update {
it.copy(isRefreshing = false, errorMessage = e.message ?: "Could not load counselors")
}
}
}
}
fun openResetPassword(counselor: CounselorUser) {
_uiState.update {
it.copy(
resetTarget = counselor,
resetError = null,
)
}
}
fun dismissResetPassword() {
_uiState.update { it.copy(resetTarget = null, resetError = null) }
}
fun resetPassword(newPassword: String, confirmPassword: String, temporary: Boolean) {
val target = _uiState.value.resetTarget ?: return
val context = getApplication<Application>()
val token = SessionStore.getToken(context) ?: return
if (newPassword.length < 6) {
_uiState.update { it.copy(resetError = "Password must be at least 6 characters") }
return
}
if (newPassword != confirmPassword) {
_uiState.update { it.copy(resetError = "Passwords do not match") }
return
}
viewModelScope.launch {
_uiState.update { it.copy(isResettingPassword = true, resetError = null) }
try {
val mustChange = NatAsApiClient.resetCounselorPassword(
token = token,
userID = target.userID,
newPassword = newPassword,
temporary = temporary,
)
val updated = _uiState.value.counselors.map { counselor ->
if (counselor.userID == target.userID) {
counselor.copy(mustChangePassword = mustChange)
} else {
counselor
}
}
_uiState.update {
it.copy(
counselors = updated,
resetTarget = null,
isResettingPassword = false,
snackbarMessage = "Temporary password set for ${target.username}",
)
}
} catch (e: ApiException) {
_uiState.update { it.copy(isResettingPassword = false, resetError = e.message) }
} catch (e: Exception) {
_uiState.update {
it.copy(
isResettingPassword = false,
resetError = e.message ?: "Could not reset password",
)
}
}
}
}
fun openRevokeSessions(counselor: CounselorUser) {
_uiState.update {
it.copy(
revokeTarget = counselor,
revokeError = null,
)
}
}
fun dismissRevokeSessions() {
_uiState.update { it.copy(revokeTarget = null, revokeError = null) }
}
fun confirmRevokeSessions() {
val target = _uiState.value.revokeTarget ?: return
val context = getApplication<Application>()
val token = SessionStore.getToken(context) ?: return
viewModelScope.launch {
_uiState.update { it.copy(isRevokingSessions = true, revokeError = null) }
try {
val count = NatAsApiClient.revokeCounselorSessions(token, target.userID)
_uiState.update {
it.copy(
revokeTarget = null,
isRevokingSessions = false,
snackbarMessage = if (count == 1) {
"Signed out ${target.username} (1 session ended)"
} else {
"Signed out ${target.username} ($count sessions ended)"
},
)
}
} catch (e: ApiException) {
_uiState.update { it.copy(isRevokingSessions = false, revokeError = e.message) }
} catch (e: Exception) {
_uiState.update {
it.copy(
isRevokingSessions = false,
revokeError = e.message ?: "Could not end sessions",
)
}
}
}
}
fun clearSnackbar() {
_uiState.update { it.copy(snackbarMessage = null) }
}
fun clearError() {
_uiState.update { it.copy(errorMessage = null) }
}
fun logout() {
val context = getApplication<Application>()
val token = SessionStore.getToken(context)
viewModelScope.launch {
if (!token.isNullOrBlank()) {
try {
NatAsApiClient.logout(token)
} catch (_: Exception) {
// Clear local session even if the server is unreachable.
}
}
SessionStore.clear(context)
_uiState.value = CoordinatorUiState()
}
}
private suspend fun completeLogin(token: String, username: String, role: String) {
val context = getApplication<Application>()
SessionStore.save(context, token, username, role)
val counselors = NatAsApiClient.listCounselors(token)
_uiState.value = CoordinatorUiState(
screen = AppScreen.Home,
username = username,
role = role,
counselors = counselors,
)
}
}
enum class AppScreen {
Login,
ChangePassword,
Home,
SessionManagement,
}
data class CoordinatorUiState(
val screen: AppScreen = AppScreen.Login,
val username: String = "",
val role: String = "",
val counselors: List<CounselorUser> = emptyList(),
val isLoading: Boolean = false,
val isRefreshing: Boolean = false,
val errorMessage: String? = null,
val pendingUsername: String = "",
val pendingOldPassword: String = "",
val pendingTempToken: String = "",
val resetTarget: CounselorUser? = null,
val isResettingPassword: Boolean = false,
val resetError: String? = null,
val revokeTarget: CounselorUser? = null,
val isRevokingSessions: Boolean = false,
val revokeError: String? = null,
val snackbarMessage: String? = null,
)

View File

@ -0,0 +1,170 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path
android:fillColor="#3DDC84"
android:pathData="M0,0h108v108h-108z" />
<path
android:fillColor="#00000000"
android:pathData="M9,0L9,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,0L19,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,0L29,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,0L39,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,0L49,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,0L59,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,0L69,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,0L79,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M89,0L89,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M99,0L99,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,9L108,9"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,19L108,19"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,29L108,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,39L108,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,49L108,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,59L108,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,69L108,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,79L108,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,89L108,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,99L108,99"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,29L89,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,39L89,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,49L89,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,59L89,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,69L89,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,79L89,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,19L29,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,19L39,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,19L49,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,19L59,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,19L69,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,19L79,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
</vector>

View File

@ -0,0 +1,30 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path android:pathData="M31,63.928c0,0 6.4,-11 12.1,-13.1c7.2,-2.6 26,-1.4 26,-1.4l38.1,38.1L107,108.928l-32,-1L31,63.928z">
<aapt:attr name="android:fillColor">
<gradient
android:endX="85.84757"
android:endY="92.4963"
android:startX="42.9492"
android:startY="49.59793"
android:type="linear">
<item
android:color="#44000000"
android:offset="0.0" />
<item
android:color="#00000000"
android:offset="1.0" />
</gradient>
</aapt:attr>
</path>
<path
android:fillColor="#FFFFFF"
android:fillType="nonZero"
android:pathData="M65.3,45.828l3.8,-6.6c0.2,-0.4 0.1,-0.9 -0.3,-1.1c-0.4,-0.2 -0.9,-0.1 -1.1,0.3l-3.9,6.7c-6.3,-2.8 -13.4,-2.8 -19.7,0l-3.9,-6.7c-0.2,-0.4 -0.7,-0.5 -1.1,-0.3C38.8,38.328 38.7,38.828 38.9,39.228l3.8,6.6C36.2,49.428 31.7,56.028 31,63.928h46C76.3,56.028 71.8,49.428 65.3,45.828zM43.4,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2c-0.3,-0.7 -0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C45.3,56.528 44.5,57.328 43.4,57.328L43.4,57.328zM64.6,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2s-0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C66.5,56.528 65.6,57.328 64.6,57.328L64.6,57.328z"
android:strokeWidth="1"
android:strokeColor="#00000000" />
</vector>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
<monochrome android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
<monochrome android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 982 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.CoordinatorApp" parent="android:Theme.Material.NoActionBar" />
</resources>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="purple_200">#FFBB86FC</color>
<color name="purple_500">#FF6200EE</color>
<color name="purple_700">#FF3700B3</color>
<color name="teal_200">#FF03DAC5</color>
<color name="teal_700">#FF018786</color>
<color name="black">#FF000000</color>
<color name="white">#FFFFFFFF</color>
</resources>

View File

@ -0,0 +1,3 @@
<resources>
<string name="app_name">CoordinatorApp</string>
</resources>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.CoordinatorApp" parent="android:Theme.Material.NoActionBar" />
</resources>

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?><!--
Sample backup rules file; uncomment and customize as necessary.
See https://developer.android.com/guide/topics/data/autobackup
for details.
Note: This file is ignored for devices older than API 31
See https://developer.android.com/about/versions/12/backup-restore
-->
<full-backup-content>
<!--
<include domain="sharedpref" path="."/>
<exclude domain="sharedpref" path="device.xml"/>
-->
</full-backup-content>

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?><!--
Sample data extraction rules file; uncomment and customize as necessary.
See https://developer.android.com/about/versions/12/backup-restore#xml-changes
for details.
-->
<data-extraction-rules>
<cloud-backup>
<!-- TODO: Use <include> and <exclude> to control what is backed up.
<include .../>
<exclude .../>
-->
</cloud-backup>
<!--
<device-transfer>
<include .../>
<exclude .../>
</device-transfer>
-->
</data-extraction-rules>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<base-config cleartextTrafficPermitted="false" />
<domain-config cleartextTrafficPermitted="true">
<domain includeSubdomains="true">49.13.157.44</domain>
</domain-config>
</network-security-config>

View File

@ -0,0 +1,17 @@
package com.tomhempel.coordinatorapp
import org.junit.Test
import org.junit.Assert.*
/**
* Example local unit test, which will execute on the development machine (host).
*
* See [testing documentation](http://d.android.com/tools/testing).
*/
class ExampleUnitTest {
@Test
fun addition_isCorrect() {
assertEquals(4, 2 + 2)
}
}

5
build.gradle.kts Normal file
View File

@ -0,0 +1,5 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
alias(libs.plugins.android.application) apply false
alias(libs.plugins.kotlin.compose) apply false
}

15
gradle.properties Normal file
View File

@ -0,0 +1,15 @@
# Project-wide Gradle settings.
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.
# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. For more details, visit
# https://developer.android.com/r/tools/gradle-multi-project-decoupled-projects
# org.gradle.parallel=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official

View File

@ -0,0 +1,12 @@
#This file is generated by updateDaemonJvm
toolchainUrl.FREE_BSD.AARCH64=https\://api.foojay.io/disco/v3.0/ids/ec7520a1e057cd116f9544c42142a16b/redirect
toolchainUrl.FREE_BSD.X86_64=https\://api.foojay.io/disco/v3.0/ids/4c4f879899012ff0a8b2e2117df03b0e/redirect
toolchainUrl.LINUX.AARCH64=https\://api.foojay.io/disco/v3.0/ids/ec7520a1e057cd116f9544c42142a16b/redirect
toolchainUrl.LINUX.X86_64=https\://api.foojay.io/disco/v3.0/ids/4c4f879899012ff0a8b2e2117df03b0e/redirect
toolchainUrl.MAC_OS.AARCH64=https\://api.foojay.io/disco/v3.0/ids/73bcfb608d1fde9fb62e462f834a3299/redirect
toolchainUrl.MAC_OS.X86_64=https\://api.foojay.io/disco/v3.0/ids/846ee0d876d26a26f37aa1ce8de73224/redirect
toolchainUrl.UNIX.AARCH64=https\://api.foojay.io/disco/v3.0/ids/ec7520a1e057cd116f9544c42142a16b/redirect
toolchainUrl.UNIX.X86_64=https\://api.foojay.io/disco/v3.0/ids/4c4f879899012ff0a8b2e2117df03b0e/redirect
toolchainUrl.WINDOWS.AARCH64=https\://api.foojay.io/disco/v3.0/ids/9482ddec596298c84656d31d16652665/redirect
toolchainUrl.WINDOWS.X86_64=https\://api.foojay.io/disco/v3.0/ids/39701d92e1756bb2f141eb67cd4c660e/redirect
toolchainVersion=21

44
gradle/libs.versions.toml Normal file
View File

@ -0,0 +1,44 @@
[versions]
agp = "9.2.1"
coreKtx = "1.10.1"
junit = "4.13.2"
junitVersion = "1.1.5"
espressoCore = "3.5.1"
lifecycleRuntimeKtx = "2.6.1"
activityCompose = "1.8.0"
kotlin = "2.2.10"
composeBom = "2026.02.01"
okhttp = "4.12.0"
gson = "2.11.0"
securityCrypto = "1.1.0-alpha06"
navigationCompose = "2.8.5"
lifecycle = "2.8.7"
materialIcons = "1.7.6"
[libraries]
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
junit = { group = "junit", name = "junit", version.ref = "junit" }
androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycleRuntimeKtx" }
androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activityCompose" }
androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "composeBom" }
androidx-compose-ui = { group = "androidx.compose.ui", name = "ui" }
androidx-compose-ui-graphics = { group = "androidx.compose.ui", name = "ui-graphics" }
androidx-compose-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" }
androidx-compose-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" }
androidx-compose-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest" }
androidx-compose-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" }
androidx-compose-material3 = { group = "androidx.compose.material3", name = "material3" }
androidx-compose-material-icons-extended = { group = "androidx.compose.material", name = "material-icons-extended", version.ref = "materialIcons" }
androidx-navigation-compose = { group = "androidx.navigation", name = "navigation-compose", version.ref = "navigationCompose" }
androidx-lifecycle-viewmodel-compose = { group = "androidx.lifecycle", name = "lifecycle-viewmodel-compose", version.ref = "lifecycle" }
androidx-lifecycle-runtime-compose = { group = "androidx.lifecycle", name = "lifecycle-runtime-compose", version.ref = "lifecycle" }
androidx-security-crypto = { group = "androidx.security", name = "security-crypto", version.ref = "securityCrypto" }
okhttp = { group = "com.squareup.okhttp3", name = "okhttp", version.ref = "okhttp" }
gson = { group = "com.google.code.gson", name = "gson", version.ref = "gson" }
[plugins]
android-application = { id = "com.android.application", version.ref = "agp" }
kotlin-compose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }

BIN
gradle/wrapper/gradle-wrapper.jar vendored Normal file

Binary file not shown.

View File

@ -0,0 +1,9 @@
#Wed Jun 17 10:07:22 CEST 2026
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionSha256Sum=2ab2958f2a1e51120c326cad6f385153bb11ee93b3c216c5fccebfdfbb7ec6cb
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

251
gradlew vendored Executable file
View File

@ -0,0 +1,251 @@
#!/bin/sh
#
# Copyright © 2015 the original authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0
#
##############################################################################
#
# Gradle start up script for POSIX generated by Gradle.
#
# Important for running:
#
# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
# noncompliant, but you have some other compliant shell such as ksh or
# bash, then to run this script, type that shell name before the whole
# command line, like:
#
# ksh Gradle
#
# Busybox and similar reduced shells will NOT work, because this script
# requires all of these POSIX shell features:
# * functions;
# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
# * compound commands having a testable exit status, especially «case»;
# * various built-in commands including «command», «set», and «ulimit».
#
# Important for patching:
#
# (2) This script targets any POSIX shell, so it avoids extensions provided
# by Bash, Ksh, etc; in particular arrays are avoided.
#
# The "traditional" practice of packing multiple parameters into a
# space-separated string is a well documented source of bugs and security
# problems, so this is (mostly) avoided, by progressively accumulating
# options in "$@", and eventually passing that to Java.
#
# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
# see the in-line comments for details.
#
# There are tweaks for specific operating systems such as AIX, CygWin,
# Darwin, MinGW, and NonStop.
#
# (3) This script is generated from the Groovy template
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# within the Gradle project.
#
# You can find Gradle at https://github.com/gradle/gradle/.
#
##############################################################################
# Attempt to set APP_HOME
# Resolve links: $0 may be a link
app_path=$0
# Need this for daisy-chained symlinks.
while
APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
[ -h "$app_path" ]
do
ls=$( ls -ld "$app_path" )
link=${ls#*' -> '}
case $link in #(
/*) app_path=$link ;; #(
*) app_path=$APP_HOME$link ;;
esac
done
# This is normally unused
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
warn () {
echo "$*"
} >&2
die () {
echo
echo "$*"
echo
exit 1
} >&2
# OS specific support (must be 'true' or 'false').
cygwin=false
msys=false
darwin=false
nonstop=false
case "$( uname )" in #(
CYGWIN* ) cygwin=true ;; #(
Darwin* ) darwin=true ;; #(
MSYS* | MINGW* ) msys=true ;; #(
NONSTOP* ) nonstop=true ;;
esac
CLASSPATH="\\\"\\\""
# Determine the Java command to use to start the JVM.
if [ -n "$JAVA_HOME" ] ; then
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
# IBM's JDK on AIX uses strange locations for the executables
JAVACMD=$JAVA_HOME/jre/sh/java
else
JAVACMD=$JAVA_HOME/bin/java
fi
if [ ! -x "$JAVACMD" ] ; then
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
else
JAVACMD=java
if ! command -v java >/dev/null 2>&1
then
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
fi
# Increase the maximum file descriptors if we can.
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
case $MAX_FD in #(
max*)
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC2039,SC3045
MAX_FD=$( ulimit -H -n ) ||
warn "Could not query maximum file descriptor limit"
esac
case $MAX_FD in #(
'' | soft) :;; #(
*)
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC2039,SC3045
ulimit -n "$MAX_FD" ||
warn "Could not set maximum file descriptor limit to $MAX_FD"
esac
fi
# Collect all arguments for the java command, stacking in reverse order:
# * args from the command line
# * the main class name
# * -classpath
# * -D...appname settings
# * --module-path (only if needed)
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
# For Cygwin or MSYS, switch paths to Windows format before running java
if "$cygwin" || "$msys" ; then
APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
JAVACMD=$( cygpath --unix "$JAVACMD" )
# Now convert the arguments - kludge to limit ourselves to /bin/sh
for arg do
if
case $arg in #(
-*) false ;; # don't mess with options #(
/?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath
[ -e "$t" ] ;; #(
*) false ;;
esac
then
arg=$( cygpath --path --ignore --mixed "$arg" )
fi
# Roll the args list around exactly as many times as the number of
# args, so each arg winds up back in the position where it started, but
# possibly modified.
#
# NB: a `for` loop captures its iteration list before it begins, so
# changing the positional parameters here affects neither the number of
# iterations, nor the values presented in `arg`.
shift # remove old arg
set -- "$@" "$arg" # push replacement arg
done
fi
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Collect all arguments for the java command:
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
# and any embedded shellness will be escaped.
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
# treated as '${Hostname}' itself on the command line.
set -- \
"-Dorg.gradle.appname=$APP_BASE_NAME" \
-classpath "$CLASSPATH" \
-jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
"$@"
# Stop when "xargs" is not available.
if ! command -v xargs >/dev/null 2>&1
then
die "xargs is not available"
fi
# Use "xargs" to parse quoted args.
#
# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
#
# In Bash we could simply go:
#
# readarray ARGS < <( xargs -n1 <<<"$var" ) &&
# set -- "${ARGS[@]}" "$@"
#
# but POSIX shell has neither arrays nor command substitution, so instead we
# post-process each arg (as a line of input to sed) to backslash-escape any
# character that might be a shell metacharacter, then use eval to reverse
# that process (while maintaining the separation between arguments), and wrap
# the whole thing up as a single "set" statement.
#
# This will of course break if any of these variables contains a newline or
# an unmatched quote.
#
eval "set -- $(
printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
xargs -n1 |
sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
tr '\n' ' '
)" '"$@"'
exec "$JAVACMD" "$@"

94
gradlew.bat vendored Normal file
View File

@ -0,0 +1,94 @@
@rem
@rem Copyright 2015 the original author or authors.
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem
@rem https://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem
@rem SPDX-License-Identifier: Apache-2.0
@rem
@if "%DEBUG%"=="" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
set DIRNAME=%~dp0
if "%DIRNAME%"=="" set DIRNAME=.
@rem This is normally unused
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Resolve any "." and ".." in APP_HOME to make it shorter.
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if %ERRORLEVEL% equ 0 goto execute
echo. 1>&2
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
echo. 1>&2
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
echo location of your Java installation. 1>&2
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto execute
echo. 1>&2
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
echo. 1>&2
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
echo location of your Java installation. 1>&2
goto fail
:execute
@rem Setup the command line
set CLASSPATH=
@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*
:end
@rem End local scope for the variables with windows NT shell
if %ERRORLEVEL% equ 0 goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
set EXIT_CODE=%ERRORLEVEL%
if %EXIT_CODE% equ 0 set EXIT_CODE=1
if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
exit /b %EXIT_CODE%
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega

27
settings.gradle.kts Normal file
View File

@ -0,0 +1,27 @@
pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "CoordinatorApp"
include(":app")