Compare commits
6
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1f39f27618 | ||
|
|
956be6a6de | ||
|
|
90ca9775ef | ||
|
|
0e33564b95 | ||
|
|
321b260e3d | ||
|
|
be3c885988 |
@@ -34,8 +34,8 @@ android {
|
||||
applicationId = "pl.firmatpp.kierowca"
|
||||
minSdk = 26
|
||||
targetSdk = 36
|
||||
versionCode = 128
|
||||
versionName = "1.0.75"
|
||||
versionCode = 131
|
||||
versionName = "1.0.78"
|
||||
setProperty("archivesBaseName", "pl.firmatpp.kierowca")
|
||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||
|
||||
|
||||
@@ -202,6 +202,9 @@ class DriverRepository(
|
||||
source: String,
|
||||
stage: String = "other",
|
||||
metadata: PhotoUploadMetadata = PhotoUploadMetadata(),
|
||||
workflowVersion: String? = null,
|
||||
workflowStepId: String? = null,
|
||||
workflowDocumentId: String? = null,
|
||||
): PhotoUploadResponse {
|
||||
val resolver = context.contentResolver
|
||||
val mimeType = resolver.getType(uri) ?: "image/jpeg"
|
||||
@@ -222,6 +225,9 @@ class DriverRepository(
|
||||
contentSha256.toPlainTextBody(),
|
||||
sourceBody,
|
||||
stage.toPlainTextBody(),
|
||||
workflowVersion?.toPlainTextBody(),
|
||||
workflowStepId?.toPlainTextBody(),
|
||||
workflowDocumentId?.toPlainTextBody(),
|
||||
metadataParts["takenAt"],
|
||||
metadataParts["latitude"],
|
||||
metadataParts["longitude"],
|
||||
@@ -249,6 +255,9 @@ class DriverRepository(
|
||||
upload.contentSha256.toPlainTextBody(),
|
||||
upload.source.toPlainTextBody(),
|
||||
upload.stage.toPlainTextBody(),
|
||||
upload.workflowVersion?.toPlainTextBody(),
|
||||
upload.workflowStepId?.toPlainTextBody(),
|
||||
upload.workflowDocumentId?.toPlainTextBody(),
|
||||
metadataParts["takenAt"],
|
||||
metadataParts["latitude"],
|
||||
metadataParts["longitude"],
|
||||
|
||||
@@ -216,6 +216,9 @@ interface MobileDriverApi {
|
||||
@Part("contentSha256") contentSha256: RequestBody,
|
||||
@Part("source") source: RequestBody,
|
||||
@Part("stage") stage: RequestBody?,
|
||||
@Part("workflowVersion") workflowVersion: RequestBody?,
|
||||
@Part("workflowStepId") workflowStepId: RequestBody?,
|
||||
@Part("workflowDocumentId") workflowDocumentId: RequestBody?,
|
||||
@Part("takenAt") takenAt: RequestBody?,
|
||||
@Part("latitude") latitude: RequestBody?,
|
||||
@Part("longitude") longitude: RequestBody?,
|
||||
|
||||
@@ -78,6 +78,7 @@ data class DriverAppSettingsDto(
|
||||
val loadingWeightRequirement: String? = null,
|
||||
val unloadingPhotoRequirement: String? = null,
|
||||
val unloadingWeightRequirement: String? = null,
|
||||
val routeWorkflow: DriverRouteWorkflowDto? = null,
|
||||
val dispatchSheetRemindersEnabled: Boolean? = null,
|
||||
val dispatchSheetOnFridays: Boolean? = null,
|
||||
val dispatchSheetOnLastWorkingDay: Boolean? = null,
|
||||
@@ -85,6 +86,33 @@ data class DriverAppSettingsDto(
|
||||
val leaveRequests: LeaveRequestsConfigDto? = null,
|
||||
)
|
||||
|
||||
data class DriverRouteWorkflowDto(
|
||||
val version: String,
|
||||
val customized: Boolean = false,
|
||||
val loading: DriverRouteStageWorkflowDto,
|
||||
val unloading: DriverRouteStageWorkflowDto,
|
||||
)
|
||||
|
||||
data class DriverRouteStageWorkflowDto(
|
||||
val steps: List<DriverRouteWorkflowStepDto> = emptyList(),
|
||||
)
|
||||
|
||||
data class DriverRouteWorkflowStepDto(
|
||||
val id: String,
|
||||
val type: String,
|
||||
val title: String,
|
||||
val description: String = "",
|
||||
val requirement: String = "required",
|
||||
val documents: List<DriverRouteWorkflowDocumentDto> = emptyList(),
|
||||
)
|
||||
|
||||
data class DriverRouteWorkflowDocumentDto(
|
||||
val id: String,
|
||||
val label: String,
|
||||
val description: String = "",
|
||||
val requirement: String = "required",
|
||||
)
|
||||
|
||||
data class LeaveRequestsConfigDto(
|
||||
val enabled: Boolean = false,
|
||||
val types: List<String> = listOf("URLOP"),
|
||||
@@ -522,6 +550,10 @@ data class RoutePhotoDto(
|
||||
val contentSha256: String? = null,
|
||||
val source: String,
|
||||
val stage: String = "other",
|
||||
val workflowVersion: String? = null,
|
||||
val workflowStepId: String? = null,
|
||||
val workflowDocumentId: String? = null,
|
||||
val originalName: String? = null,
|
||||
val mimeType: String?,
|
||||
val size: Long,
|
||||
val url: String,
|
||||
@@ -552,6 +584,8 @@ data class StartRouteBody(
|
||||
val occurredAt: String,
|
||||
val photoClientRequestIds: List<String>,
|
||||
val loadingNotes: String? = null,
|
||||
val workflowVersion: String? = null,
|
||||
val completedStepIds: List<String> = emptyList(),
|
||||
)
|
||||
|
||||
data class FinishRouteBody(
|
||||
@@ -560,6 +594,8 @@ data class FinishRouteBody(
|
||||
val occurredAt: String,
|
||||
val photoClientRequestIds: List<String>,
|
||||
val unloadingNotes: String? = null,
|
||||
val workflowVersion: String? = null,
|
||||
val completedStepIds: List<String> = emptyList(),
|
||||
)
|
||||
|
||||
data class RouteActionResponse(
|
||||
|
||||
@@ -21,7 +21,7 @@ import pl.firmatpp.kierowca.data.sync.DriverSyncStateEntity
|
||||
DriverRouteCacheEntity::class,
|
||||
DriverSyncStateEntity::class,
|
||||
],
|
||||
version = 7,
|
||||
version = 8,
|
||||
exportSchema = false,
|
||||
)
|
||||
abstract class DriverDatabase : RoomDatabase() {
|
||||
@@ -208,6 +208,16 @@ abstract class DriverDatabase : RoomDatabase() {
|
||||
}
|
||||
}
|
||||
|
||||
private val migration7To8 = object : Migration(7, 8) {
|
||||
override fun migrate(db: SupportSQLiteDatabase) {
|
||||
db.execSQL("ALTER TABLE photo_uploads ADD COLUMN workflowVersion TEXT")
|
||||
db.execSQL("ALTER TABLE photo_uploads ADD COLUMN workflowStepId TEXT")
|
||||
db.execSQL("ALTER TABLE photo_uploads ADD COLUMN workflowDocumentId TEXT")
|
||||
db.execSQL("ALTER TABLE route_actions ADD COLUMN workflowVersion TEXT")
|
||||
db.execSQL("ALTER TABLE route_actions ADD COLUMN completedStepIdsJson TEXT NOT NULL DEFAULT '[]'")
|
||||
}
|
||||
}
|
||||
|
||||
fun get(context: Context): DriverDatabase =
|
||||
instance ?: synchronized(this) {
|
||||
instance ?: Room.databaseBuilder(
|
||||
@@ -221,6 +231,7 @@ abstract class DriverDatabase : RoomDatabase() {
|
||||
migration4To5,
|
||||
migration5To6,
|
||||
migration6To7,
|
||||
migration7To8,
|
||||
).build().also { instance = it }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -17,6 +17,9 @@ data class PhotoUploadEntity(
|
||||
val localPath: String,
|
||||
val source: String,
|
||||
val stage: String = "other",
|
||||
val workflowVersion: String? = null,
|
||||
val workflowStepId: String? = null,
|
||||
val workflowDocumentId: String? = null,
|
||||
val takenAt: String?,
|
||||
val latitude: Double?,
|
||||
val longitude: Double?,
|
||||
|
||||
@@ -13,7 +13,9 @@ import java.io.File
|
||||
import java.security.MessageDigest
|
||||
import java.util.UUID
|
||||
import java.util.concurrent.TimeUnit
|
||||
import kotlinx.coroutines.Dispatchers
|
||||
import kotlinx.coroutines.flow.Flow
|
||||
import kotlinx.coroutines.withContext
|
||||
import pl.firmatpp.kierowca.data.PhotoUploadMetadata
|
||||
import pl.firmatpp.kierowca.data.model.DriverRouteDto
|
||||
import pl.firmatpp.kierowca.data.model.RoutePhotoDto
|
||||
@@ -29,12 +31,22 @@ class PhotoUploadOutbox(
|
||||
fun observeQueuedUploads(): Flow<List<PhotoUploadEntity>> =
|
||||
dao.observeQueuedUploads()
|
||||
|
||||
suspend fun enqueue(routeId: String, uri: Uri, source: String, metadata: PhotoUploadMetadata, stage: String = "other"): PhotoUploadEntity {
|
||||
suspend fun enqueue(
|
||||
routeId: String,
|
||||
uri: Uri,
|
||||
source: String,
|
||||
metadata: PhotoUploadMetadata,
|
||||
stage: String = "other",
|
||||
workflowVersion: String? = null,
|
||||
workflowStepId: String? = null,
|
||||
workflowDocumentId: String? = null,
|
||||
): PhotoUploadEntity = withContext(Dispatchers.IO) {
|
||||
val clientRequestId = UUID.randomUUID().toString()
|
||||
val mimeType = context.contentResolver.getType(uri) ?: "image/jpeg"
|
||||
val extension = when (mimeType) {
|
||||
"image/png" -> "png"
|
||||
"image/webp" -> "webp"
|
||||
"application/pdf" -> "pdf"
|
||||
else -> "jpg"
|
||||
}
|
||||
val uploadDir = File(context.filesDir, "photo-upload-outbox").apply { mkdirs() }
|
||||
@@ -46,6 +58,9 @@ class PhotoUploadOutbox(
|
||||
localPath = localFile.absolutePath,
|
||||
source = source,
|
||||
stage = stage,
|
||||
workflowVersion = workflowVersion,
|
||||
workflowStepId = workflowStepId,
|
||||
workflowDocumentId = workflowDocumentId,
|
||||
takenAt = metadata.takenAt,
|
||||
latitude = metadata.latitude,
|
||||
longitude = metadata.longitude,
|
||||
@@ -58,7 +73,7 @@ class PhotoUploadOutbox(
|
||||
dao.upsert(upload)
|
||||
enqueueWorker(clientRequestId)
|
||||
|
||||
return upload
|
||||
upload
|
||||
}
|
||||
|
||||
suspend fun retry(clientRequestId: String) {
|
||||
|
||||
@@ -33,6 +33,8 @@ data class RouteActionEntity(
|
||||
val weight: Double?,
|
||||
val occurredAt: String,
|
||||
val photoClientRequestIdsJson: String,
|
||||
val workflowVersion: String? = null,
|
||||
val completedStepIdsJson: String = "[]",
|
||||
val status: String = RouteActionStatus.Pending,
|
||||
val attemptCount: Int = 0,
|
||||
val lastError: String? = null,
|
||||
|
||||
@@ -48,16 +48,20 @@ class RouteActionOutbox(
|
||||
loadingWeight: Double?,
|
||||
photoClientRequestIds: List<String>,
|
||||
notes: String? = null,
|
||||
workflowVersion: String? = null,
|
||||
completedStepIds: List<String> = emptyList(),
|
||||
): RouteActionEntity =
|
||||
enqueue(RouteActionType.Start, routeId, loadingWeight, photoClientRequestIds, notes)
|
||||
enqueue(RouteActionType.Start, routeId, loadingWeight, photoClientRequestIds, notes, workflowVersion, completedStepIds)
|
||||
|
||||
suspend fun enqueueFinish(
|
||||
routeId: String,
|
||||
unloadingWeight: Double?,
|
||||
photoClientRequestIds: List<String>,
|
||||
notes: String? = null,
|
||||
workflowVersion: String? = null,
|
||||
completedStepIds: List<String> = emptyList(),
|
||||
): RouteActionEntity =
|
||||
enqueue(RouteActionType.Finish, routeId, unloadingWeight, photoClientRequestIds, notes)
|
||||
enqueue(RouteActionType.Finish, routeId, unloadingWeight, photoClientRequestIds, notes, workflowVersion, completedStepIds)
|
||||
|
||||
private suspend fun enqueue(
|
||||
action: String,
|
||||
@@ -65,6 +69,8 @@ class RouteActionOutbox(
|
||||
weight: Double?,
|
||||
photoClientRequestIds: List<String>,
|
||||
notes: String?,
|
||||
workflowVersion: String?,
|
||||
completedStepIds: List<String>,
|
||||
): RouteActionEntity {
|
||||
dao.pruneConfirmed(System.currentTimeMillis() - TimeUnit.DAYS.toMillis(7))
|
||||
val entity = RouteActionEntity(
|
||||
@@ -74,6 +80,8 @@ class RouteActionOutbox(
|
||||
weight = weight,
|
||||
occurredAt = Instant.now().toString(),
|
||||
photoClientRequestIdsJson = gson.toJson(photoClientRequestIds.distinct()),
|
||||
workflowVersion = workflowVersion,
|
||||
completedStepIdsJson = gson.toJson(completedStepIds.distinct()),
|
||||
notes = notes?.trim()?.takeIf { it.isNotEmpty() },
|
||||
)
|
||||
|
||||
|
||||
@@ -181,6 +181,8 @@ class RouteActionWorker(
|
||||
occurredAt = action.occurredAt,
|
||||
photoClientRequestIds = photoClientRequestIds,
|
||||
loadingNotes = action.notes,
|
||||
workflowVersion = action.workflowVersion,
|
||||
completedStepIds = completedStepIds(action),
|
||||
),
|
||||
)
|
||||
RouteActionType.Finish -> repository.finishRoute(
|
||||
@@ -191,6 +193,8 @@ class RouteActionWorker(
|
||||
occurredAt = action.occurredAt,
|
||||
photoClientRequestIds = photoClientRequestIds,
|
||||
unloadingNotes = action.notes,
|
||||
workflowVersion = action.workflowVersion,
|
||||
completedStepIds = completedStepIds(action),
|
||||
),
|
||||
)
|
||||
else -> error("Nieznana akcja kursu: ${action.action}")
|
||||
@@ -204,6 +208,14 @@ class RouteActionWorker(
|
||||
.filter { it.isNotBlank() }
|
||||
.distinct()
|
||||
|
||||
private fun completedStepIds(action: RouteActionEntity): List<String> =
|
||||
runCatching {
|
||||
gson.fromJson(action.completedStepIdsJson, Array<String>::class.java)?.toList().orEmpty()
|
||||
}.getOrDefault(emptyList())
|
||||
.map { it.trim() }
|
||||
.filter { it.isNotBlank() }
|
||||
.distinct()
|
||||
|
||||
companion object {
|
||||
const val KEY_CLIENT_ACTION_ID = "clientActionId"
|
||||
|
||||
|
||||
@@ -166,6 +166,7 @@ import pl.firmatpp.kierowca.data.model.DispatchSheetReminderDto
|
||||
import pl.firmatpp.kierowca.data.model.DriverLeaveCalendarEntryDto
|
||||
import pl.firmatpp.kierowca.data.model.DriverLeaveRequestDto
|
||||
import pl.firmatpp.kierowca.data.model.DriverRouteDto
|
||||
import pl.firmatpp.kierowca.data.model.DriverRouteWorkflowStepDto
|
||||
import pl.firmatpp.kierowca.data.model.NavigationPointDto
|
||||
import pl.firmatpp.kierowca.data.model.RoutePhotoDto
|
||||
import pl.firmatpp.kierowca.data.model.TachographReminderDto
|
||||
@@ -190,6 +191,11 @@ private enum class RouteLocationPermissionPurpose {
|
||||
RestoreRequiredTracking,
|
||||
}
|
||||
|
||||
private enum class RouteStageCameraMode {
|
||||
Single,
|
||||
Multiple,
|
||||
}
|
||||
|
||||
@Composable
|
||||
fun DriverApp(
|
||||
viewModel: DriverViewModel,
|
||||
@@ -464,6 +470,9 @@ fun DriverApp(
|
||||
locationPermissionGranted = locationPermissionGranted,
|
||||
onBack = viewModel::back,
|
||||
onPhoto = viewModel::openPhoto,
|
||||
onDeletePhoto = viewModel::deletePhoto,
|
||||
onDeleteUpload = viewModel::deletePhotoUpload,
|
||||
onRetryUpload = viewModel::retryPhotoUpload,
|
||||
onRefresh = viewModel::refreshSelectedRoute,
|
||||
onStartRoute = openStartRoute,
|
||||
onFinishRoute = viewModel::openFinishRoute,
|
||||
@@ -472,22 +481,24 @@ fun DriverApp(
|
||||
)
|
||||
DriverScreen.StartRoute -> RouteStageScreen(
|
||||
state = state,
|
||||
title = if (routeStageRequirementIsVisible(state.loadingPhotoRequirement)) "Zdjęcia załadunku" else "Potwierdź załadunek",
|
||||
title = if (state.routeWorkflow != null) "Załadunek" else if (routeStageRequirementIsVisible(state.loadingPhotoRequirement)) "Zdjęcia załadunku" else "Potwierdź załadunek",
|
||||
stage = "loading",
|
||||
weightLabel = "Tonaż załadunku",
|
||||
submitLabel = if (routeStageRequirementIsVisible(state.loadingWeightRequirement)) "Dalej: tonaż" else "Potwierdź załadunek",
|
||||
showWeightInput = false,
|
||||
showNotesInput = !routeStageRequirementIsVisible(state.loadingWeightRequirement),
|
||||
submitLabel = if (state.routeWorkflow != null) "Potwierdź załadunek" else if (routeStageRequirementIsVisible(state.loadingWeightRequirement)) "Dalej: tonaż" else "Potwierdź załadunek",
|
||||
showWeightInput = state.routeWorkflow?.let { routeWorkflowSteps(it, "loading").any { step -> step.type == RouteWorkflowStepType.Weight } } ?: false,
|
||||
showNotesInput = state.routeWorkflow != null || !routeStageRequirementIsVisible(state.loadingWeightRequirement),
|
||||
showPhotoActions = routeStageRequirementIsVisible(state.loadingPhotoRequirement),
|
||||
showPhotoGrid = routeStageRequirementIsVisible(state.loadingPhotoRequirement),
|
||||
onBack = viewModel::back,
|
||||
onWeightChange = viewModel::updateRouteStageWeight,
|
||||
onNotesChange = viewModel::updateRouteStageNotes,
|
||||
onUpload = { uri, source, metadata -> viewModel.uploadPhoto(uri, source, metadata, "loading") },
|
||||
onUpload = { uri, source, metadata, stepId, documentId -> viewModel.uploadPhoto(uri, source, metadata, "loading", stepId, documentId)?.join() },
|
||||
onStepToggle = viewModel::toggleRouteStageStep,
|
||||
onPhoto = viewModel::openPhoto,
|
||||
onDeletePhoto = viewModel::deletePhoto,
|
||||
onDeleteUpload = viewModel::deletePhotoUpload,
|
||||
onRetryUpload = viewModel::retryPhotoUpload,
|
||||
onSubmit = if (routeStageRequirementIsVisible(state.loadingWeightRequirement)) viewModel::openLoadingWeight else viewModel::submitStartRoute,
|
||||
onSubmit = if (state.routeWorkflow == null && routeStageRequirementIsVisible(state.loadingWeightRequirement)) viewModel::openLoadingWeight else viewModel::submitStartRoute,
|
||||
)
|
||||
DriverScreen.LoadingWeight -> RouteStageScreen(
|
||||
state = state,
|
||||
@@ -502,8 +513,10 @@ fun DriverApp(
|
||||
onBack = viewModel::back,
|
||||
onWeightChange = viewModel::updateRouteStageWeight,
|
||||
onNotesChange = viewModel::updateRouteStageNotes,
|
||||
onUpload = { _, _, _ -> },
|
||||
onUpload = { _, _, _, _, _ -> },
|
||||
onStepToggle = viewModel::toggleRouteStageStep,
|
||||
onPhoto = viewModel::openPhoto,
|
||||
onDeletePhoto = viewModel::deletePhoto,
|
||||
onDeleteUpload = viewModel::deletePhotoUpload,
|
||||
onRetryUpload = viewModel::retryPhotoUpload,
|
||||
onSubmit = viewModel::submitStartRoute,
|
||||
@@ -521,8 +534,10 @@ fun DriverApp(
|
||||
onBack = viewModel::back,
|
||||
onWeightChange = viewModel::updateRouteStageWeight,
|
||||
onNotesChange = viewModel::updateRouteStageNotes,
|
||||
onUpload = { uri, source, metadata -> viewModel.uploadPhoto(uri, source, metadata, "unloading") },
|
||||
onUpload = { uri, source, metadata, stepId, documentId -> viewModel.uploadPhoto(uri, source, metadata, "unloading", stepId, documentId)?.join() },
|
||||
onStepToggle = viewModel::toggleRouteStageStep,
|
||||
onPhoto = viewModel::openPhoto,
|
||||
onDeletePhoto = viewModel::deletePhoto,
|
||||
onDeleteUpload = viewModel::deletePhotoUpload,
|
||||
onRetryUpload = viewModel::retryPhotoUpload,
|
||||
onSubmit = viewModel::submitFinishRoute,
|
||||
@@ -4416,8 +4431,10 @@ private fun RouteStageScreen(
|
||||
onBack: () -> Unit,
|
||||
onWeightChange: (String) -> Unit,
|
||||
onNotesChange: (String) -> Unit,
|
||||
onUpload: (Uri, String, PhotoUploadMetadata) -> Unit,
|
||||
onUpload: suspend (Uri, String, PhotoUploadMetadata, String?, String?) -> Unit,
|
||||
onStepToggle: (String, Boolean) -> Unit,
|
||||
onPhoto: (RoutePhotoDto) -> Unit,
|
||||
onDeletePhoto: (RoutePhotoDto) -> Unit,
|
||||
onDeleteUpload: (PhotoUploadEntity) -> Unit,
|
||||
onRetryUpload: (PhotoUploadEntity) -> Unit,
|
||||
onSubmit: () -> Unit,
|
||||
@@ -4425,16 +4442,32 @@ private fun RouteStageScreen(
|
||||
val context = LocalContext.current
|
||||
val coroutineScope = rememberCoroutineScope()
|
||||
var cameraUri by remember { mutableStateOf<Uri?>(null) }
|
||||
var pendingCameraMode by remember { mutableStateOf<RouteStageCameraMode?>(null) }
|
||||
var showMultiplePhotoCamera by remember(stage) { mutableStateOf(false) }
|
||||
var multiplePhotoLocationMetadata by remember(stage) { mutableStateOf(PhotoUploadMetadata()) }
|
||||
var showPreciseLocationPermissionDialog by remember { mutableStateOf(false) }
|
||||
var voiceDictationActive by remember(stage) { mutableStateOf(false) }
|
||||
var cameraAttachmentTarget by remember(stage) { mutableStateOf<RouteWorkflowAttachmentTarget?>(null) }
|
||||
var pickerAttachmentTarget by remember(stage) { mutableStateOf<RouteWorkflowAttachmentTarget?>(null) }
|
||||
val route = state.displaySelectedRoute
|
||||
val stagePhotos = route?.photos?.let { routePhotosForStage(it, stage) }.orEmpty()
|
||||
val stageUploads = state.photoUploads.filter { normalizedRoutePhotoStage(it.stage) == stage }
|
||||
val usableStageUploads = routeStageUsableUploads(stageUploads)
|
||||
val attachmentCount = visiblePhotoAttachmentCount(stagePhotos.size, usableStageUploads.size)
|
||||
val cargoStagePhotos = stagePhotos.filter { it.workflowDocumentId.isNullOrBlank() }
|
||||
val cargoStageUploads = usableStageUploads.filter { it.workflowDocumentId.isNullOrBlank() }
|
||||
val attachmentCount = visiblePhotoAttachmentCount(cargoStagePhotos.size, cargoStageUploads.size)
|
||||
val photoRequirement = if (stage == "loading") state.loadingPhotoRequirement else state.unloadingPhotoRequirement
|
||||
val weightRequirement = if (stage == "loading") state.loadingWeightRequirement else state.unloadingWeightRequirement
|
||||
val submitBlocker = when {
|
||||
val submitBlocker = if (state.routeWorkflow != null) {
|
||||
routeWorkflowSubmitBlocker(
|
||||
workflow = state.routeWorkflow,
|
||||
stage = stage,
|
||||
completedStepIds = state.routeStageCompletedStepIds,
|
||||
weightText = state.routeStageWeightText,
|
||||
serverPhotos = stagePhotos,
|
||||
localUploads = usableStageUploads,
|
||||
)
|
||||
} else when {
|
||||
!showWeightInput -> loadingPhotosSubmitBlocker(
|
||||
serverPhotoCount = stagePhotos.size,
|
||||
localUploadCount = usableStageUploads.size,
|
||||
@@ -4473,12 +4506,27 @@ private fun RouteStageScreen(
|
||||
)
|
||||
) {
|
||||
coroutineScope.launch {
|
||||
onUpload(capturedUri, "camera", cameraPhotoMetadata(context))
|
||||
onUpload(
|
||||
capturedUri,
|
||||
"camera",
|
||||
cameraPhotoMetadata(context),
|
||||
cameraAttachmentTarget?.stepId,
|
||||
cameraAttachmentTarget?.documentId,
|
||||
)
|
||||
}
|
||||
}
|
||||
cameraUri = null
|
||||
cameraAttachmentTarget = null
|
||||
}
|
||||
val openMultiplePhotoCamera = {
|
||||
multiplePhotoLocationMetadata = PhotoUploadMetadata()
|
||||
showMultiplePhotoCamera = true
|
||||
coroutineScope.launch {
|
||||
multiplePhotoLocationMetadata = cameraPhotoMetadata(context).copy(takenAt = null)
|
||||
}
|
||||
}
|
||||
val cameraPermissionLauncher = rememberLauncherForActivityResult(ActivityResultContracts.RequestMultiplePermissions()) { grants ->
|
||||
val requestedMode = pendingCameraMode
|
||||
val pendingUri = cameraUri
|
||||
val cameraGranted = grants[Manifest.permission.CAMERA] == true || hasPermission(context, Manifest.permission.CAMERA)
|
||||
val fineLocationGranted = grants[Manifest.permission.ACCESS_FINE_LOCATION] == true ||
|
||||
@@ -4486,12 +4534,70 @@ private fun RouteStageScreen(
|
||||
if (!canLaunchCameraWithLocationPolicy(state.requirePreciseLocationForPhotos, fineLocationGranted)) {
|
||||
showPreciseLocationPermissionDialog = true
|
||||
cameraUri = null
|
||||
pendingCameraMode = null
|
||||
return@rememberLauncherForActivityResult
|
||||
}
|
||||
if (cameraGranted && pendingUri != null) cameraLauncher.launch(pendingUri)
|
||||
if (cameraGranted) {
|
||||
when (requestedMode) {
|
||||
RouteStageCameraMode.Single -> {
|
||||
if (pendingUri != null) cameraLauncher.launch(pendingUri)
|
||||
}
|
||||
RouteStageCameraMode.Multiple -> {
|
||||
openMultiplePhotoCamera()
|
||||
}
|
||||
null -> Unit
|
||||
}
|
||||
} else {
|
||||
cameraUri = null
|
||||
}
|
||||
pendingCameraMode = null
|
||||
}
|
||||
val pickerLauncher = rememberLauncherForActivityResult(ActivityResultContracts.PickVisualMedia()) { uri ->
|
||||
if (uri != null) onUpload(uri, "gallery", PhotoUploadMetadata())
|
||||
if (uri != null) {
|
||||
coroutineScope.launch {
|
||||
onUpload(
|
||||
uri,
|
||||
"gallery",
|
||||
PhotoUploadMetadata(),
|
||||
pickerAttachmentTarget?.stepId,
|
||||
pickerAttachmentTarget?.documentId,
|
||||
)
|
||||
}
|
||||
}
|
||||
pickerAttachmentTarget = null
|
||||
}
|
||||
val filePickerLauncher = rememberLauncherForActivityResult(ActivityResultContracts.OpenDocument()) { uri ->
|
||||
if (uri != null) {
|
||||
coroutineScope.launch {
|
||||
onUpload(
|
||||
uri,
|
||||
"file",
|
||||
PhotoUploadMetadata(),
|
||||
pickerAttachmentTarget?.stepId,
|
||||
pickerAttachmentTarget?.documentId,
|
||||
)
|
||||
}
|
||||
}
|
||||
pickerAttachmentTarget = null
|
||||
}
|
||||
|
||||
if (showMultiplePhotoCamera) {
|
||||
MultiplePhotoCameraScreen(
|
||||
stage = stage,
|
||||
onPhotoCaptured = { uri ->
|
||||
onUpload(
|
||||
uri,
|
||||
"camera",
|
||||
multiplePhotoLocationMetadata.copy(takenAt = Instant.now().toString()),
|
||||
null,
|
||||
null,
|
||||
)
|
||||
},
|
||||
onClose = {
|
||||
showMultiplePhotoCamera = false
|
||||
},
|
||||
)
|
||||
return
|
||||
}
|
||||
|
||||
BoxWithConstraints(Modifier.fillMaxSize()) {
|
||||
@@ -4515,7 +4621,42 @@ private fun RouteStageScreen(
|
||||
if (route != null) {
|
||||
item { RouteStageSummaryCard(route) }
|
||||
}
|
||||
item {
|
||||
if (state.routeWorkflow != null) {
|
||||
item {
|
||||
RouteWorkflowStepsCard(
|
||||
steps = routeWorkflowSteps(state.routeWorkflow, stage),
|
||||
completedStepIds = state.routeStageCompletedStepIds,
|
||||
weightText = state.routeStageWeightText,
|
||||
serverPhotos = stagePhotos,
|
||||
localUploads = usableStageUploads,
|
||||
onStepToggle = onStepToggle,
|
||||
onTakeDocumentPhoto = { stepId, documentId ->
|
||||
cameraAttachmentTarget = RouteWorkflowAttachmentTarget(stepId, documentId)
|
||||
val newUri = createCameraUri(context)
|
||||
cameraUri = newUri
|
||||
pendingCameraMode = RouteStageCameraMode.Single
|
||||
val missingPermissions = cameraCapturePermissions(
|
||||
context = context,
|
||||
requirePreciseLocation = state.requirePreciseLocationForPhotos,
|
||||
)
|
||||
if (missingPermissions.isEmpty()) {
|
||||
pendingCameraMode = null
|
||||
cameraLauncher.launch(newUri)
|
||||
} else {
|
||||
cameraPermissionLauncher.launch(missingPermissions)
|
||||
}
|
||||
},
|
||||
onPickDocumentPhoto = { stepId, documentId ->
|
||||
pickerAttachmentTarget = RouteWorkflowAttachmentTarget(stepId, documentId)
|
||||
pickerLauncher.launch(PickVisualMediaRequest(ActivityResultContracts.PickVisualMedia.ImageOnly))
|
||||
},
|
||||
onPickDocumentFile = { stepId, documentId ->
|
||||
pickerAttachmentTarget = RouteWorkflowAttachmentTarget(stepId, documentId)
|
||||
filePickerLauncher.launch(arrayOf("application/pdf", "image/jpeg", "image/png"))
|
||||
},
|
||||
)
|
||||
}
|
||||
} else item {
|
||||
RouteStageChecklist(
|
||||
hasValidWeight = if (showWeightInput) {
|
||||
state.routeStageWeightText.trim().isNotBlank() && routeStageSubmitBlocker(
|
||||
@@ -4573,21 +4714,42 @@ private fun RouteStageScreen(
|
||||
if (showPhotoActions) {
|
||||
item {
|
||||
Column(verticalArrangement = Arrangement.spacedBy(12.dp)) {
|
||||
CargoActionButton("Zrób nowe zdjęcie", Icons.Outlined.CameraAlt, TppTheme.colors.forest) {
|
||||
val newUri = createCameraUri(context)
|
||||
cameraUri = newUri
|
||||
val missingPermissions = cameraCapturePermissions(
|
||||
context = context,
|
||||
requirePreciseLocation = state.requirePreciseLocationForPhotos,
|
||||
)
|
||||
if (missingPermissions.isEmpty()) {
|
||||
cameraLauncher.launch(newUri)
|
||||
} else {
|
||||
cameraPermissionLauncher.launch(missingPermissions)
|
||||
}
|
||||
}
|
||||
RouteStageCameraActions(
|
||||
onSinglePhoto = {
|
||||
cameraAttachmentTarget = null
|
||||
val newUri = createCameraUri(context)
|
||||
cameraUri = newUri
|
||||
pendingCameraMode = RouteStageCameraMode.Single
|
||||
val missingPermissions = cameraCapturePermissions(
|
||||
context = context,
|
||||
requirePreciseLocation = state.requirePreciseLocationForPhotos,
|
||||
)
|
||||
if (missingPermissions.isEmpty()) {
|
||||
pendingCameraMode = null
|
||||
cameraLauncher.launch(newUri)
|
||||
} else {
|
||||
cameraPermissionLauncher.launch(missingPermissions)
|
||||
}
|
||||
},
|
||||
onMultiplePhotos = {
|
||||
cameraAttachmentTarget = null
|
||||
cameraUri = null
|
||||
pendingCameraMode = RouteStageCameraMode.Multiple
|
||||
val missingPermissions = cameraCapturePermissions(
|
||||
context = context,
|
||||
requirePreciseLocation = state.requirePreciseLocationForPhotos,
|
||||
)
|
||||
if (missingPermissions.isEmpty()) {
|
||||
pendingCameraMode = null
|
||||
openMultiplePhotoCamera()
|
||||
} else {
|
||||
cameraPermissionLauncher.launch(missingPermissions)
|
||||
}
|
||||
},
|
||||
)
|
||||
if (state.allowGalleryUploads) {
|
||||
CargoActionButton("Dodaj zdjęcie z galerii", Icons.Outlined.AddPhotoAlternate, TppTheme.colors.containerGreen) {
|
||||
pickerAttachmentTarget = null
|
||||
pickerLauncher.launch(PickVisualMediaRequest(ActivityResultContracts.PickVisualMedia.ImageOnly))
|
||||
}
|
||||
}
|
||||
@@ -4597,12 +4759,12 @@ private fun RouteStageScreen(
|
||||
if (showPhotoGrid) {
|
||||
item {
|
||||
PhotoGrid(
|
||||
photos = stagePhotos,
|
||||
uploads = stageUploads,
|
||||
photos = cargoStagePhotos,
|
||||
uploads = stageUploads.filter { it.workflowDocumentId.isNullOrBlank() },
|
||||
deletingPhotoIds = state.deletingPhotoIds,
|
||||
imageAuthHeader = state.imageAuthHeader,
|
||||
onPhoto = onPhoto,
|
||||
onDeletePhoto = {},
|
||||
onDeletePhoto = onDeletePhoto,
|
||||
onDeleteUpload = onDeleteUpload,
|
||||
onRetryUpload = onRetryUpload,
|
||||
)
|
||||
@@ -4642,6 +4804,164 @@ private fun RouteStageScreen(
|
||||
}
|
||||
}
|
||||
|
||||
private data class RouteWorkflowAttachmentTarget(
|
||||
val stepId: String,
|
||||
val documentId: String,
|
||||
)
|
||||
|
||||
@Composable
|
||||
private fun RouteWorkflowStepsCard(
|
||||
steps: List<DriverRouteWorkflowStepDto>,
|
||||
completedStepIds: Set<String>,
|
||||
weightText: String,
|
||||
serverPhotos: List<RoutePhotoDto>,
|
||||
localUploads: List<PhotoUploadEntity>,
|
||||
onStepToggle: (String, Boolean) -> Unit,
|
||||
onTakeDocumentPhoto: (String, String) -> Unit,
|
||||
onPickDocumentPhoto: (String, String) -> Unit,
|
||||
onPickDocumentFile: (String, String) -> Unit,
|
||||
) {
|
||||
Card(
|
||||
colors = CardDefaults.cardColors(containerColor = TppTheme.colors.card),
|
||||
border = BorderStroke(1.dp, TppTheme.colors.outline),
|
||||
shape = MaterialTheme.shapes.medium,
|
||||
modifier = Modifier.fillMaxWidth(),
|
||||
) {
|
||||
Column(Modifier.padding(16.dp), verticalArrangement = Arrangement.spacedBy(14.dp)) {
|
||||
Text(
|
||||
"Kroki do wykonania",
|
||||
color = TppTheme.colors.ink,
|
||||
fontWeight = FontWeight.Bold,
|
||||
style = MaterialTheme.typography.titleMedium,
|
||||
)
|
||||
if (steps.isEmpty()) {
|
||||
Text("Brak dodatkowych czynności. Możesz potwierdzić etap.", color = TppTheme.colors.muted)
|
||||
}
|
||||
steps.forEachIndexed { index, step ->
|
||||
val required = routeStageRequirementIsRequired(step.requirement)
|
||||
val done = when (step.type) {
|
||||
RouteWorkflowStepType.Confirmation -> step.id in completedStepIds
|
||||
RouteWorkflowStepType.Weight -> parseRouteWeightTons(weightText)?.let { it > 0.0 } == true
|
||||
RouteWorkflowStepType.Photos ->
|
||||
serverPhotos.any { it.workflowDocumentId.isNullOrBlank() } ||
|
||||
localUploads.any {
|
||||
it.workflowDocumentId.isNullOrBlank() &&
|
||||
it.status != PhotoUploadStatus.FailedPermanent.storageValue &&
|
||||
it.status != PhotoUploadStatus.Cancelled.storageValue
|
||||
}
|
||||
else -> false
|
||||
}
|
||||
|
||||
Column(
|
||||
Modifier
|
||||
.fillMaxWidth()
|
||||
.background(TppTheme.colors.panel, RoundedCornerShape(8.dp))
|
||||
.border(1.dp, TppTheme.colors.outline.copy(alpha = 0.7f), RoundedCornerShape(8.dp))
|
||||
.padding(13.dp),
|
||||
verticalArrangement = Arrangement.spacedBy(8.dp),
|
||||
) {
|
||||
Row(verticalAlignment = Alignment.CenterVertically, horizontalArrangement = Arrangement.spacedBy(10.dp)) {
|
||||
Box(
|
||||
Modifier
|
||||
.size(30.dp)
|
||||
.background(if (done) TppTheme.colors.successContainer else TppTheme.colors.card, RoundedCornerShape(15.dp)),
|
||||
contentAlignment = Alignment.Center,
|
||||
) {
|
||||
Text(
|
||||
if (done) "✓" else "${index + 1}",
|
||||
color = if (done) TppTheme.colors.forest else TppTheme.colors.muted,
|
||||
fontWeight = FontWeight.Bold,
|
||||
)
|
||||
}
|
||||
Column(Modifier.weight(1f)) {
|
||||
Text(step.title, color = TppTheme.colors.ink, fontWeight = FontWeight.Bold)
|
||||
Text(
|
||||
if (required) "WYMAGANY" else "OPCJONALNY",
|
||||
color = if (required) TppTheme.colors.error else TppTheme.colors.muted,
|
||||
fontFamily = FontFamily.Monospace,
|
||||
style = MaterialTheme.typography.labelSmall,
|
||||
)
|
||||
}
|
||||
if (step.type == RouteWorkflowStepType.Confirmation) {
|
||||
Checkbox(
|
||||
checked = step.id in completedStepIds,
|
||||
onCheckedChange = { onStepToggle(step.id, it) },
|
||||
)
|
||||
}
|
||||
}
|
||||
if (step.description.isNotBlank()) {
|
||||
Text(step.description, color = TppTheme.colors.muted, style = MaterialTheme.typography.bodyMedium)
|
||||
}
|
||||
|
||||
step.documents.forEach { document ->
|
||||
val documentServerPhotos = serverPhotos.filter {
|
||||
it.workflowStepId == step.id && it.workflowDocumentId == document.id
|
||||
}
|
||||
val documentUploads = localUploads.filter {
|
||||
it.workflowStepId == step.id && it.workflowDocumentId == document.id &&
|
||||
it.status != PhotoUploadStatus.Cancelled.storageValue &&
|
||||
it.status != PhotoUploadStatus.FailedPermanent.storageValue
|
||||
}
|
||||
val count = documentServerPhotos.size + documentUploads.size
|
||||
Column(
|
||||
Modifier
|
||||
.fillMaxWidth()
|
||||
.background(TppTheme.colors.card, RoundedCornerShape(6.dp))
|
||||
.padding(11.dp),
|
||||
verticalArrangement = Arrangement.spacedBy(8.dp),
|
||||
) {
|
||||
Row(verticalAlignment = Alignment.CenterVertically, horizontalArrangement = Arrangement.spacedBy(8.dp)) {
|
||||
Icon(Icons.Outlined.Description, contentDescription = null, tint = TppTheme.colors.forest)
|
||||
Column(Modifier.weight(1f)) {
|
||||
Text(document.label, color = TppTheme.colors.ink, fontWeight = FontWeight.Bold)
|
||||
Text(
|
||||
if (count > 0) "$count ${photoCountLabel(count)}" else if (routeStageRequirementIsRequired(document.requirement)) "wymagany dokument" else "opcjonalny dokument",
|
||||
color = if (count > 0) TppTheme.colors.forest else TppTheme.colors.muted,
|
||||
fontFamily = FontFamily.Monospace,
|
||||
style = MaterialTheme.typography.labelSmall,
|
||||
)
|
||||
}
|
||||
}
|
||||
if (document.description.isNotBlank()) {
|
||||
Text(document.description, color = TppTheme.colors.muted, style = MaterialTheme.typography.bodySmall)
|
||||
}
|
||||
Row(Modifier.fillMaxWidth(), horizontalArrangement = Arrangement.spacedBy(6.dp)) {
|
||||
OutlinedButton(
|
||||
onClick = { onTakeDocumentPhoto(step.id, document.id) },
|
||||
modifier = Modifier.weight(1f),
|
||||
contentPadding = PaddingValues(horizontal = 6.dp, vertical = 8.dp),
|
||||
) {
|
||||
Icon(Icons.Outlined.CameraAlt, contentDescription = null, modifier = Modifier.size(17.dp))
|
||||
Spacer(Modifier.width(4.dp))
|
||||
Text("Aparat", style = MaterialTheme.typography.labelMedium)
|
||||
}
|
||||
OutlinedButton(
|
||||
onClick = { onPickDocumentPhoto(step.id, document.id) },
|
||||
modifier = Modifier.weight(1f),
|
||||
contentPadding = PaddingValues(horizontal = 6.dp, vertical = 8.dp),
|
||||
) {
|
||||
Icon(Icons.Outlined.AddPhotoAlternate, contentDescription = null, modifier = Modifier.size(17.dp))
|
||||
Spacer(Modifier.width(4.dp))
|
||||
Text("Galeria", style = MaterialTheme.typography.labelMedium)
|
||||
}
|
||||
OutlinedButton(
|
||||
onClick = { onPickDocumentFile(step.id, document.id) },
|
||||
modifier = Modifier.weight(1f),
|
||||
contentPadding = PaddingValues(horizontal = 6.dp, vertical = 8.dp),
|
||||
) {
|
||||
Icon(Icons.Outlined.Description, contentDescription = null, modifier = Modifier.size(17.dp))
|
||||
Spacer(Modifier.width(4.dp))
|
||||
Text("Plik", style = MaterialTheme.typography.labelMedium)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Composable
|
||||
private fun RouteStageSummaryCard(route: DriverRouteDto) {
|
||||
Card(
|
||||
@@ -4809,6 +5129,9 @@ private fun DetailScreen(
|
||||
locationPermissionGranted: Boolean,
|
||||
onBack: () -> Unit,
|
||||
onPhoto: (RoutePhotoDto) -> Unit,
|
||||
onDeletePhoto: (RoutePhotoDto) -> Unit,
|
||||
onDeleteUpload: (PhotoUploadEntity) -> Unit,
|
||||
onRetryUpload: (PhotoUploadEntity) -> Unit,
|
||||
onRefresh: () -> Unit,
|
||||
onStartRoute: () -> Unit,
|
||||
onFinishRoute: () -> Unit,
|
||||
@@ -4867,6 +5190,9 @@ private fun DetailScreen(
|
||||
loadingWeightPending = projection.loadingWeightPending,
|
||||
unloadingWeightPending = projection.unloadingWeightPending,
|
||||
onPhoto = onPhoto,
|
||||
onDeletePhoto = onDeletePhoto,
|
||||
onDeleteUpload = onDeleteUpload,
|
||||
onRetryUpload = onRetryUpload,
|
||||
)
|
||||
}
|
||||
item { ErrorText(state.error) }
|
||||
@@ -5335,6 +5661,9 @@ private fun CargoDocumentationSection(
|
||||
loadingWeightPending: Boolean,
|
||||
unloadingWeightPending: Boolean,
|
||||
onPhoto: (RoutePhotoDto) -> Unit,
|
||||
onDeletePhoto: (RoutePhotoDto) -> Unit,
|
||||
onDeleteUpload: (PhotoUploadEntity) -> Unit,
|
||||
onRetryUpload: (PhotoUploadEntity) -> Unit,
|
||||
) {
|
||||
val loadingPhotos = routePhotosForStage(route.photos, "loading")
|
||||
val unloadingPhotos = routePhotosForStage(route.photos, "unloading")
|
||||
@@ -5359,6 +5688,9 @@ private fun CargoDocumentationSection(
|
||||
imageAuthHeader = imageAuthHeader,
|
||||
weightPending = loadingWeightPending,
|
||||
onPhoto = onPhoto,
|
||||
onDeletePhoto = onDeletePhoto,
|
||||
onDeleteUpload = onDeleteUpload,
|
||||
onRetryUpload = onRetryUpload,
|
||||
)
|
||||
RouteStageDocumentationBlock(
|
||||
title = "Rozładunek",
|
||||
@@ -5370,6 +5702,9 @@ private fun CargoDocumentationSection(
|
||||
imageAuthHeader = imageAuthHeader,
|
||||
weightPending = unloadingWeightPending,
|
||||
onPhoto = onPhoto,
|
||||
onDeletePhoto = onDeletePhoto,
|
||||
onDeleteUpload = onDeleteUpload,
|
||||
onRetryUpload = onRetryUpload,
|
||||
)
|
||||
if (otherPhotos.isNotEmpty() || otherUploads.isNotEmpty()) {
|
||||
RouteStageDocumentationBlock(
|
||||
@@ -5382,6 +5717,9 @@ private fun CargoDocumentationSection(
|
||||
imageAuthHeader = imageAuthHeader,
|
||||
weightPending = false,
|
||||
onPhoto = onPhoto,
|
||||
onDeletePhoto = onDeletePhoto,
|
||||
onDeleteUpload = onDeleteUpload,
|
||||
onRetryUpload = onRetryUpload,
|
||||
)
|
||||
}
|
||||
}
|
||||
@@ -5398,6 +5736,9 @@ private fun RouteStageDocumentationBlock(
|
||||
imageAuthHeader: String?,
|
||||
weightPending: Boolean = false,
|
||||
onPhoto: (RoutePhotoDto) -> Unit,
|
||||
onDeletePhoto: (RoutePhotoDto) -> Unit,
|
||||
onDeleteUpload: (PhotoUploadEntity) -> Unit,
|
||||
onRetryUpload: (PhotoUploadEntity) -> Unit,
|
||||
) {
|
||||
val count = visiblePhotoAttachmentCount(photos.size, uploads.size)
|
||||
Column(verticalArrangement = Arrangement.spacedBy(10.dp)) {
|
||||
@@ -5480,10 +5821,9 @@ private fun RouteStageDocumentationBlock(
|
||||
deletingPhotoIds = deletingPhotoIds,
|
||||
imageAuthHeader = imageAuthHeader,
|
||||
onPhoto = onPhoto,
|
||||
onDeletePhoto = {},
|
||||
onDeleteUpload = {},
|
||||
onRetryUpload = {},
|
||||
readOnly = true,
|
||||
onDeletePhoto = onDeletePhoto,
|
||||
onDeleteUpload = onDeleteUpload,
|
||||
onRetryUpload = onRetryUpload,
|
||||
)
|
||||
}
|
||||
}
|
||||
@@ -5492,6 +5832,107 @@ private fun RouteStageDocumentationBlock(
|
||||
private fun formatRouteWeight(weight: Double): String =
|
||||
if (weight % 1.0 == 0.0) "${weight.toInt()} t" else String.format(Locale("pl", "PL"), "%.3f t", weight)
|
||||
|
||||
@Composable
|
||||
private fun RouteStageCameraActions(
|
||||
onSinglePhoto: () -> Unit,
|
||||
onMultiplePhotos: () -> Unit,
|
||||
) {
|
||||
BoxWithConstraints(Modifier.fillMaxWidth()) {
|
||||
if (maxWidth >= 300.dp) {
|
||||
Row(
|
||||
modifier = Modifier.fillMaxWidth(),
|
||||
horizontalArrangement = Arrangement.spacedBy(12.dp),
|
||||
) {
|
||||
RouteStageCameraActionButton(
|
||||
label = "Jedno zdjęcie",
|
||||
icon = Icons.Outlined.CameraAlt,
|
||||
color = TppTheme.colors.forest,
|
||||
compact = true,
|
||||
modifier = Modifier.weight(1f),
|
||||
onClick = onSinglePhoto,
|
||||
)
|
||||
RouteStageCameraActionButton(
|
||||
label = "Wiele zdjęć",
|
||||
icon = Icons.Outlined.CameraAlt,
|
||||
color = TppTheme.colors.forest,
|
||||
compact = true,
|
||||
modifier = Modifier.weight(1f),
|
||||
onClick = onMultiplePhotos,
|
||||
)
|
||||
}
|
||||
} else {
|
||||
Column(verticalArrangement = Arrangement.spacedBy(12.dp)) {
|
||||
RouteStageCameraActionButton(
|
||||
label = "Jedno zdjęcie",
|
||||
icon = Icons.Outlined.CameraAlt,
|
||||
color = TppTheme.colors.forest,
|
||||
compact = false,
|
||||
modifier = Modifier.fillMaxWidth(),
|
||||
onClick = onSinglePhoto,
|
||||
)
|
||||
RouteStageCameraActionButton(
|
||||
label = "Wiele zdjęć",
|
||||
icon = Icons.Outlined.CameraAlt,
|
||||
color = TppTheme.colors.forest,
|
||||
compact = false,
|
||||
modifier = Modifier.fillMaxWidth(),
|
||||
onClick = onMultiplePhotos,
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Composable
|
||||
private fun RouteStageCameraActionButton(
|
||||
label: String,
|
||||
icon: ImageVector,
|
||||
color: Color,
|
||||
compact: Boolean,
|
||||
modifier: Modifier = Modifier,
|
||||
onClick: () -> Unit,
|
||||
) {
|
||||
Button(
|
||||
onClick = onClick,
|
||||
modifier = modifier.height(if (compact) 76.dp else 64.dp),
|
||||
colors = ButtonDefaults.buttonColors(containerColor = color),
|
||||
contentPadding = PaddingValues(horizontal = 12.dp, vertical = 8.dp),
|
||||
shape = MaterialTheme.shapes.medium,
|
||||
) {
|
||||
if (compact) {
|
||||
Column(
|
||||
horizontalAlignment = Alignment.CenterHorizontally,
|
||||
verticalArrangement = Arrangement.spacedBy(4.dp),
|
||||
) {
|
||||
Icon(
|
||||
icon,
|
||||
contentDescription = null,
|
||||
tint = Color.White,
|
||||
modifier = Modifier.size(22.dp),
|
||||
)
|
||||
Text(
|
||||
text = label,
|
||||
color = Color.White,
|
||||
style = MaterialTheme.typography.labelLarge,
|
||||
fontWeight = FontWeight.Bold,
|
||||
maxLines = 1,
|
||||
overflow = TextOverflow.Ellipsis,
|
||||
textAlign = TextAlign.Center,
|
||||
)
|
||||
}
|
||||
} else {
|
||||
Icon(icon, contentDescription = null, tint = Color.White)
|
||||
Spacer(Modifier.width(10.dp))
|
||||
Text(
|
||||
text = label,
|
||||
color = Color.White,
|
||||
style = MaterialTheme.typography.titleMedium,
|
||||
fontWeight = FontWeight.Bold,
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Composable
|
||||
private fun CargoActionButton(label: String, icon: ImageVector, color: Color, onClick: () -> Unit) {
|
||||
Button(
|
||||
|
||||
@@ -12,6 +12,8 @@ import java.time.temporal.ChronoUnit
|
||||
import java.util.Locale
|
||||
import kotlin.math.abs
|
||||
import pl.firmatpp.kierowca.data.model.DriverRouteDto
|
||||
import pl.firmatpp.kierowca.data.model.DriverRouteWorkflowDto
|
||||
import pl.firmatpp.kierowca.data.model.DriverRouteWorkflowStepDto
|
||||
import pl.firmatpp.kierowca.data.model.DispatchSheetReminderDto
|
||||
import pl.firmatpp.kierowca.data.model.RoutePhotoDto
|
||||
import pl.firmatpp.kierowca.data.model.TachographReminderDto
|
||||
@@ -278,6 +280,75 @@ fun routeStageRequirementIsVisible(requirement: String): Boolean =
|
||||
fun routeStageRequirementIsRequired(requirement: String): Boolean =
|
||||
normalizeRouteStageRequirement(requirement) == RouteStageRequirement.Required
|
||||
|
||||
object RouteWorkflowStepType {
|
||||
const val Confirmation = "confirmation"
|
||||
const val Weight = "weight"
|
||||
const val Photos = "photos"
|
||||
}
|
||||
|
||||
fun routeWorkflowSteps(workflow: DriverRouteWorkflowDto?, stage: String): List<DriverRouteWorkflowStepDto> =
|
||||
when (stage) {
|
||||
"loading" -> workflow?.loading?.steps
|
||||
"unloading" -> workflow?.unloading?.steps
|
||||
else -> null
|
||||
}.orEmpty().filter { routeStageRequirementIsVisible(it.requirement) }
|
||||
|
||||
fun routeWorkflowSubmitBlocker(
|
||||
workflow: DriverRouteWorkflowDto?,
|
||||
stage: String,
|
||||
completedStepIds: Set<String>,
|
||||
weightText: String,
|
||||
serverPhotos: List<RoutePhotoDto>,
|
||||
localUploads: List<PhotoUploadEntity>,
|
||||
): String? {
|
||||
val steps = routeWorkflowSteps(workflow, stage)
|
||||
if (steps.isEmpty()) return null
|
||||
val normalizedWeight = parseRouteWeightTons(weightText)
|
||||
|
||||
for (step in steps) {
|
||||
val required = routeStageRequirementIsRequired(step.requirement)
|
||||
when (step.type) {
|
||||
RouteWorkflowStepType.Confirmation -> if (required && step.id !in completedStepIds) {
|
||||
return "Potwierdź krok: ${step.title}."
|
||||
}
|
||||
RouteWorkflowStepType.Weight -> when {
|
||||
required && weightText.isBlank() -> return "Uzupełnij krok: ${step.title}."
|
||||
weightText.isNotBlank() && normalizedWeight == null -> return "Podaj poprawny tonaż."
|
||||
weightText.isNotBlank() && normalizedWeight != null && normalizedWeight <= 0.0 -> return "Tonaż musi być większy od zera."
|
||||
weightText.isNotBlank() && normalizedWeight != null && normalizedWeight > routeWeightMaxTons -> return "Tonaż nie może przekraczać 999,999 t."
|
||||
}
|
||||
RouteWorkflowStepType.Photos -> if (
|
||||
required &&
|
||||
serverPhotos.none { it.workflowDocumentId.isNullOrBlank() } &&
|
||||
localUploads.none {
|
||||
it.workflowDocumentId.isNullOrBlank() &&
|
||||
it.status != PhotoUploadStatus.Cancelled.storageValue &&
|
||||
it.status != PhotoUploadStatus.FailedPermanent.storageValue
|
||||
}
|
||||
) {
|
||||
return "Dodaj zdjęcie dla kroku: ${step.title}."
|
||||
}
|
||||
}
|
||||
|
||||
for (document in step.documents.filter { routeStageRequirementIsRequired(it.requirement) }) {
|
||||
val serverPresent = serverPhotos.any {
|
||||
it.workflowStepId == step.id && it.workflowDocumentId == document.id
|
||||
}
|
||||
val localPresent = localUploads.any {
|
||||
it.workflowStepId == step.id &&
|
||||
it.workflowDocumentId == document.id &&
|
||||
it.status != PhotoUploadStatus.Cancelled.storageValue &&
|
||||
it.status != PhotoUploadStatus.FailedPermanent.storageValue
|
||||
}
|
||||
if (!serverPresent && !localPresent) {
|
||||
return "Dodaj dokument „${document.label}” w kroku „${step.title}”."
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return null
|
||||
}
|
||||
|
||||
fun normalizeRouteStageNotes(value: String): String = value.take(routeStageNotesMaxLength)
|
||||
|
||||
fun parseRouteWeightTons(weightText: String): Double? {
|
||||
|
||||
@@ -39,6 +39,7 @@ import pl.firmatpp.kierowca.data.model.DriverLeaveForecastDto
|
||||
import pl.firmatpp.kierowca.data.model.DriverLeaveRequestDto
|
||||
import pl.firmatpp.kierowca.data.model.DriverLeaveSummaryDto
|
||||
import pl.firmatpp.kierowca.data.model.DriverRouteDto
|
||||
import pl.firmatpp.kierowca.data.model.DriverRouteWorkflowDto
|
||||
import pl.firmatpp.kierowca.data.model.RoutePhotoDto
|
||||
import pl.firmatpp.kierowca.data.model.TachographReminderDto
|
||||
import pl.firmatpp.kierowca.data.model.driverLifecycleStatus
|
||||
@@ -98,6 +99,7 @@ data class DriverUiState(
|
||||
val loadingWeightRequirement: String = RouteStageRequirement.Required,
|
||||
val unloadingPhotoRequirement: String = RouteStageRequirement.Required,
|
||||
val unloadingWeightRequirement: String = RouteStageRequirement.Required,
|
||||
val routeWorkflow: DriverRouteWorkflowDto? = null,
|
||||
val notifyNewRoutes: Boolean = false,
|
||||
val routeProgressNotificationEnabled: Boolean = true,
|
||||
val notificationPermissionDenied: Boolean = false,
|
||||
@@ -105,6 +107,7 @@ data class DriverUiState(
|
||||
val selectedPhoto: RoutePhotoDto? = null,
|
||||
val routeStageWeightText: String = "",
|
||||
val routeStageNotesText: String = "",
|
||||
val routeStageCompletedStepIds: Set<String> = emptySet(),
|
||||
val routeActions: List<RouteActionEntity> = emptyList(),
|
||||
val visibleRouteActions: List<RouteActionEntity> = emptyList(),
|
||||
val photoUploads: List<PhotoUploadEntity> = emptyList(),
|
||||
@@ -613,6 +616,7 @@ class DriverViewModel(application: Application) : AndroidViewModel(application)
|
||||
loadingWeightRequirement = normalizeRouteStageRequirement(settings?.loadingWeightRequirement),
|
||||
unloadingPhotoRequirement = normalizeRouteStageRequirement(settings?.unloadingPhotoRequirement),
|
||||
unloadingWeightRequirement = normalizeRouteStageRequirement(settings?.unloadingWeightRequirement),
|
||||
routeWorkflow = settings?.routeWorkflow,
|
||||
leaveRequestsConfig = settings?.leaveRequests?.let { config ->
|
||||
LeaveRequestsConfig(enabled = config.enabled, types = config.types)
|
||||
},
|
||||
@@ -1478,16 +1482,34 @@ class DriverViewModel(application: Application) : AndroidViewModel(application)
|
||||
}
|
||||
}
|
||||
|
||||
fun uploadPhoto(uri: Uri, source: String, metadata: PhotoUploadMetadata = PhotoUploadMetadata(), stage: String = "other") {
|
||||
fun uploadPhoto(
|
||||
uri: Uri,
|
||||
source: String,
|
||||
metadata: PhotoUploadMetadata = PhotoUploadMetadata(),
|
||||
stage: String = "other",
|
||||
workflowStepId: String? = null,
|
||||
workflowDocumentId: String? = null,
|
||||
): Job? {
|
||||
val snapshot = _state.value
|
||||
val route = snapshot.selectedRoute ?: return
|
||||
val route = snapshot.selectedRoute ?: return null
|
||||
if (!routeIsActiveToday(route, snapshot.selectedDate)) {
|
||||
_state.update { it.copy(error = "Zdjęcia możesz dodać tylko w zaplanowanym zakresie kursu.") }
|
||||
return
|
||||
return null
|
||||
}
|
||||
viewModelScope.launch {
|
||||
return viewModelScope.launch {
|
||||
_state.update { it.copy(error = null) }
|
||||
runCatching { photoUploadOutbox.enqueue(route.id, uri, source, metadata, stage) }
|
||||
runCatching {
|
||||
photoUploadOutbox.enqueue(
|
||||
routeId = route.id,
|
||||
uri = uri,
|
||||
source = source,
|
||||
metadata = metadata,
|
||||
stage = stage,
|
||||
workflowVersion = snapshot.routeWorkflow?.version,
|
||||
workflowStepId = workflowStepId,
|
||||
workflowDocumentId = workflowDocumentId,
|
||||
)
|
||||
}
|
||||
.onFailure { throwable ->
|
||||
_state.update { it.withApiError(throwable) }
|
||||
}
|
||||
@@ -1505,7 +1527,9 @@ class DriverViewModel(application: Application) : AndroidViewModel(application)
|
||||
_state.update { it.copy(error = "Załadunek nie jest dostępny poza zaplanowanym zakresem kursu.") }
|
||||
return
|
||||
}
|
||||
val targetScreen = if (
|
||||
val targetScreen = if (snapshot.routeWorkflow != null) {
|
||||
DriverScreen.StartRoute
|
||||
} else if (
|
||||
!routeStageRequirementIsVisible(snapshot.loadingPhotoRequirement) &&
|
||||
routeStageRequirementIsVisible(snapshot.loadingWeightRequirement)
|
||||
) DriverScreen.LoadingWeight else DriverScreen.StartRoute
|
||||
@@ -1514,6 +1538,7 @@ class DriverViewModel(application: Application) : AndroidViewModel(application)
|
||||
screen = targetScreen,
|
||||
routeStageWeightText = "",
|
||||
routeStageNotesText = route.loadingNotes.orEmpty(),
|
||||
routeStageCompletedStepIds = emptySet(),
|
||||
feedback = null,
|
||||
error = null,
|
||||
)
|
||||
@@ -1559,6 +1584,7 @@ class DriverViewModel(application: Application) : AndroidViewModel(application)
|
||||
screen = DriverScreen.FinishRoute,
|
||||
routeStageWeightText = route.unloadingWeight?.toString().orEmpty(),
|
||||
routeStageNotesText = route.unloadingNotes.orEmpty(),
|
||||
routeStageCompletedStepIds = emptySet(),
|
||||
feedback = null,
|
||||
error = null,
|
||||
)
|
||||
@@ -1574,6 +1600,18 @@ class DriverViewModel(application: Application) : AndroidViewModel(application)
|
||||
_state.update { it.copy(routeStageNotesText = normalizeRouteStageNotes(value)) }
|
||||
}
|
||||
|
||||
fun toggleRouteStageStep(stepId: String, completed: Boolean) {
|
||||
_state.update {
|
||||
it.copy(
|
||||
routeStageCompletedStepIds = if (completed) {
|
||||
it.routeStageCompletedStepIds + stepId
|
||||
} else {
|
||||
it.routeStageCompletedStepIds - stepId
|
||||
},
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
fun correctFailedRouteAction() {
|
||||
val snapshot = _state.value
|
||||
val action = (snapshot.visibleRouteActions + snapshot.routeActions)
|
||||
@@ -1672,7 +1710,16 @@ class DriverViewModel(application: Application) : AndroidViewModel(application)
|
||||
val stageUploads = routeStageUsableUploads(
|
||||
snapshot.photoUploads.filter { normalizedRoutePhotoStage(it.stage) == stage },
|
||||
)
|
||||
val submitBlocker = if (stage == "loading") {
|
||||
val submitBlocker = if (snapshot.routeWorkflow != null) {
|
||||
routeWorkflowSubmitBlocker(
|
||||
workflow = snapshot.routeWorkflow,
|
||||
stage = stage,
|
||||
completedStepIds = snapshot.routeStageCompletedStepIds,
|
||||
weightText = snapshot.routeStageWeightText,
|
||||
serverPhotos = stagePhotos,
|
||||
localUploads = stageUploads,
|
||||
)
|
||||
} else if (stage == "loading") {
|
||||
loadingWeightSubmitBlocker(
|
||||
weightText = snapshot.routeStageWeightText,
|
||||
serverPhotoCount = stagePhotos.size,
|
||||
@@ -1695,7 +1742,7 @@ class DriverViewModel(application: Application) : AndroidViewModel(application)
|
||||
return
|
||||
}
|
||||
|
||||
val photoClientRequestIds = if (routeStageRequirementIsVisible(photoRequirement)) {
|
||||
val photoClientRequestIds = if (snapshot.routeWorkflow != null || routeStageRequirementIsVisible(photoRequirement)) {
|
||||
(stagePhotos.mapNotNull { it.clientRequestId } + stageUploads.map { it.clientRequestId })
|
||||
.map { it.trim() }
|
||||
.filter { it.isNotBlank() }
|
||||
@@ -1714,7 +1761,14 @@ class DriverViewModel(application: Application) : AndroidViewModel(application)
|
||||
runCatching {
|
||||
val updatedRoute = when (stage) {
|
||||
"loading" -> {
|
||||
routeActionOutbox.enqueueStart(route.id, weight, photoClientRequestIds, notes)
|
||||
routeActionOutbox.enqueueStart(
|
||||
route.id,
|
||||
weight,
|
||||
photoClientRequestIds,
|
||||
notes,
|
||||
snapshot.routeWorkflow?.version,
|
||||
snapshot.routeStageCompletedStepIds.toList(),
|
||||
)
|
||||
route.copy(
|
||||
status = "W TRAKCIE",
|
||||
driverStatus = "W TRAKCIE",
|
||||
@@ -1725,7 +1779,14 @@ class DriverViewModel(application: Application) : AndroidViewModel(application)
|
||||
)
|
||||
}
|
||||
"unloading" -> {
|
||||
routeActionOutbox.enqueueFinish(route.id, weight, photoClientRequestIds, notes)
|
||||
routeActionOutbox.enqueueFinish(
|
||||
route.id,
|
||||
weight,
|
||||
photoClientRequestIds,
|
||||
notes,
|
||||
snapshot.routeWorkflow?.version,
|
||||
snapshot.routeStageCompletedStepIds.toList(),
|
||||
)
|
||||
route.copy(
|
||||
status = "ZAKOŃCZONA",
|
||||
driverStatus = "ZAKOŃCZONA",
|
||||
@@ -1746,6 +1807,7 @@ class DriverViewModel(application: Application) : AndroidViewModel(application)
|
||||
routes = it.routes.map { item -> if (item.id == route.id) updatedRoute else item },
|
||||
routeStageWeightText = "",
|
||||
routeStageNotesText = "",
|
||||
routeStageCompletedStepIds = emptySet(),
|
||||
feedback = if (stage == "loading") {
|
||||
if (snapshot.isOnline) "Potwierdzam załadunek z serwerem." else "Załadunek zapisano w telefonie. Wyślemy go po odzyskaniu internetu."
|
||||
} else {
|
||||
|
||||
@@ -0,0 +1,287 @@
|
||||
package pl.firmatpp.kierowca.ui
|
||||
|
||||
import android.content.Context
|
||||
import android.net.Uri
|
||||
import androidx.activity.compose.BackHandler
|
||||
import androidx.camera.core.ImageCapture
|
||||
import androidx.camera.core.ImageCaptureException
|
||||
import androidx.camera.view.CameraController
|
||||
import androidx.camera.view.LifecycleCameraController
|
||||
import androidx.camera.view.PreviewView
|
||||
import androidx.compose.foundation.background
|
||||
import androidx.compose.foundation.layout.Arrangement
|
||||
import androidx.compose.foundation.layout.Box
|
||||
import androidx.compose.foundation.layout.Column
|
||||
import androidx.compose.foundation.layout.PaddingValues
|
||||
import androidx.compose.foundation.layout.Row
|
||||
import androidx.compose.foundation.layout.fillMaxSize
|
||||
import androidx.compose.foundation.layout.fillMaxWidth
|
||||
import androidx.compose.foundation.layout.height
|
||||
import androidx.compose.foundation.layout.navigationBarsPadding
|
||||
import androidx.compose.foundation.layout.padding
|
||||
import androidx.compose.foundation.layout.size
|
||||
import androidx.compose.foundation.layout.statusBarsPadding
|
||||
import androidx.compose.foundation.layout.width
|
||||
import androidx.compose.foundation.shape.CircleShape
|
||||
import androidx.compose.foundation.shape.RoundedCornerShape
|
||||
import androidx.compose.material.icons.Icons
|
||||
import androidx.compose.material.icons.automirrored.outlined.ArrowBack
|
||||
import androidx.compose.material.icons.outlined.CameraAlt
|
||||
import androidx.compose.material.icons.outlined.CheckCircle
|
||||
import androidx.compose.material3.Button
|
||||
import androidx.compose.material3.ButtonDefaults
|
||||
import androidx.compose.material3.CircularProgressIndicator
|
||||
import androidx.compose.material3.Icon
|
||||
import androidx.compose.material3.IconButton
|
||||
import androidx.compose.material3.MaterialTheme
|
||||
import androidx.compose.material3.Text
|
||||
import androidx.compose.runtime.Composable
|
||||
import androidx.compose.runtime.DisposableEffect
|
||||
import androidx.compose.runtime.getValue
|
||||
import androidx.compose.runtime.mutableIntStateOf
|
||||
import androidx.compose.runtime.mutableStateOf
|
||||
import androidx.compose.runtime.remember
|
||||
import androidx.compose.runtime.rememberCoroutineScope
|
||||
import androidx.compose.runtime.rememberUpdatedState
|
||||
import androidx.compose.runtime.setValue
|
||||
import androidx.compose.ui.Alignment
|
||||
import androidx.compose.ui.Modifier
|
||||
import androidx.compose.ui.graphics.Color
|
||||
import androidx.compose.ui.platform.LocalContext
|
||||
import androidx.compose.ui.text.style.TextOverflow
|
||||
import androidx.compose.ui.unit.dp
|
||||
import androidx.compose.ui.viewinterop.AndroidView
|
||||
import androidx.core.content.ContextCompat
|
||||
import androidx.core.content.FileProvider
|
||||
import androidx.lifecycle.compose.LocalLifecycleOwner
|
||||
import java.io.File
|
||||
import kotlinx.coroutines.launch
|
||||
import pl.firmatpp.kierowca.ui.theme.TppTheme
|
||||
|
||||
@Composable
|
||||
internal fun MultiplePhotoCameraScreen(
|
||||
stage: String,
|
||||
onPhotoCaptured: suspend (Uri) -> Unit,
|
||||
onClose: () -> Unit,
|
||||
) {
|
||||
val context = LocalContext.current
|
||||
val lifecycleOwner = LocalLifecycleOwner.current
|
||||
val coroutineScope = rememberCoroutineScope()
|
||||
val currentOnPhotoCaptured by rememberUpdatedState(onPhotoCaptured)
|
||||
val cameraController = remember(context) {
|
||||
LifecycleCameraController(context).apply {
|
||||
setEnabledUseCases(CameraController.IMAGE_CAPTURE)
|
||||
imageCaptureMode = ImageCapture.CAPTURE_MODE_MINIMIZE_LATENCY
|
||||
}
|
||||
}
|
||||
var capturedCount by remember { mutableIntStateOf(0) }
|
||||
var pendingUploads by remember { mutableIntStateOf(0) }
|
||||
var isCapturing by remember { mutableStateOf(false) }
|
||||
var cameraUnavailable by remember { mutableStateOf(false) }
|
||||
var cameraError by remember { mutableStateOf<String?>(null) }
|
||||
|
||||
DisposableEffect(cameraController, lifecycleOwner) {
|
||||
runCatching {
|
||||
cameraController.bindToLifecycle(lifecycleOwner)
|
||||
}.onFailure {
|
||||
cameraUnavailable = true
|
||||
cameraError = "Nie udało się uruchomić aparatu."
|
||||
}
|
||||
|
||||
onDispose {
|
||||
cameraController.unbind()
|
||||
}
|
||||
}
|
||||
|
||||
BackHandler {
|
||||
if (!isCapturing && pendingUploads == 0) onClose()
|
||||
}
|
||||
|
||||
Box(
|
||||
Modifier
|
||||
.fillMaxSize()
|
||||
.background(Color.Black),
|
||||
) {
|
||||
AndroidView(
|
||||
factory = { previewContext ->
|
||||
PreviewView(previewContext).apply {
|
||||
controller = cameraController
|
||||
implementationMode = PreviewView.ImplementationMode.COMPATIBLE
|
||||
scaleType = PreviewView.ScaleType.FILL_CENTER
|
||||
}
|
||||
},
|
||||
modifier = Modifier.fillMaxSize(),
|
||||
)
|
||||
|
||||
Row(
|
||||
modifier = Modifier
|
||||
.fillMaxWidth()
|
||||
.align(Alignment.TopCenter)
|
||||
.background(Color.Black.copy(alpha = 0.62f))
|
||||
.statusBarsPadding()
|
||||
.padding(horizontal = 8.dp, vertical = 10.dp),
|
||||
verticalAlignment = Alignment.CenterVertically,
|
||||
) {
|
||||
IconButton(
|
||||
onClick = onClose,
|
||||
enabled = !isCapturing && pendingUploads == 0,
|
||||
) {
|
||||
Icon(
|
||||
Icons.AutoMirrored.Outlined.ArrowBack,
|
||||
contentDescription = "Wróć",
|
||||
tint = Color.White,
|
||||
)
|
||||
}
|
||||
Column {
|
||||
Text(
|
||||
text = if (stage == "loading") "Zdjęcia załadunku" else "Zdjęcia rozładunku",
|
||||
color = Color.White,
|
||||
style = MaterialTheme.typography.titleMedium,
|
||||
)
|
||||
Text(
|
||||
text = if (pendingUploads > 0) {
|
||||
"Wykonano: $capturedCount · zapisuję: $pendingUploads"
|
||||
} else {
|
||||
"Wykonano: $capturedCount"
|
||||
},
|
||||
color = Color.White.copy(alpha = 0.78f),
|
||||
style = MaterialTheme.typography.bodyMedium,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
Column(
|
||||
modifier = Modifier
|
||||
.fillMaxWidth()
|
||||
.align(Alignment.BottomCenter)
|
||||
.background(Color.Black.copy(alpha = 0.68f))
|
||||
.navigationBarsPadding()
|
||||
.padding(horizontal = 20.dp, vertical = 16.dp),
|
||||
horizontalAlignment = Alignment.CenterHorizontally,
|
||||
verticalArrangement = Arrangement.spacedBy(12.dp),
|
||||
) {
|
||||
cameraError?.let { message ->
|
||||
Text(
|
||||
text = message,
|
||||
color = Color.White,
|
||||
style = MaterialTheme.typography.bodyMedium,
|
||||
modifier = Modifier
|
||||
.fillMaxWidth()
|
||||
.background(Color(0xFF8C1D18), RoundedCornerShape(6.dp))
|
||||
.padding(10.dp),
|
||||
)
|
||||
}
|
||||
|
||||
Box(
|
||||
modifier = Modifier
|
||||
.fillMaxWidth()
|
||||
.height(72.dp),
|
||||
) {
|
||||
Button(
|
||||
onClick = {
|
||||
if (isCapturing || cameraUnavailable) return@Button
|
||||
|
||||
val photoFile = createMultipleCameraFile(context)
|
||||
val outputOptions = ImageCapture.OutputFileOptions.Builder(photoFile).build()
|
||||
isCapturing = true
|
||||
cameraController.takePicture(
|
||||
outputOptions,
|
||||
ContextCompat.getMainExecutor(context),
|
||||
object : ImageCapture.OnImageSavedCallback {
|
||||
override fun onImageSaved(outputFileResults: ImageCapture.OutputFileResults) {
|
||||
isCapturing = false
|
||||
cameraError = null
|
||||
capturedCount += 1
|
||||
pendingUploads += 1
|
||||
coroutineScope.launch {
|
||||
try {
|
||||
currentOnPhotoCaptured(cameraFileUri(context, photoFile))
|
||||
} finally {
|
||||
pendingUploads = (pendingUploads - 1).coerceAtLeast(0)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
override fun onError(exception: ImageCaptureException) {
|
||||
isCapturing = false
|
||||
photoFile.delete()
|
||||
cameraError = "Nie udało się zapisać zdjęcia. Spróbuj ponownie."
|
||||
}
|
||||
},
|
||||
)
|
||||
},
|
||||
enabled = !isCapturing && !cameraUnavailable,
|
||||
modifier = Modifier
|
||||
.align(Alignment.Center)
|
||||
.size(72.dp),
|
||||
shape = CircleShape,
|
||||
colors = ButtonDefaults.buttonColors(
|
||||
containerColor = Color.White,
|
||||
disabledContainerColor = Color.White.copy(alpha = 0.55f),
|
||||
),
|
||||
contentPadding = ButtonDefaults.ContentPadding,
|
||||
) {
|
||||
if (isCapturing) {
|
||||
CircularProgressIndicator(
|
||||
modifier = Modifier.size(28.dp),
|
||||
color = TppTheme.colors.forest,
|
||||
strokeWidth = 3.dp,
|
||||
)
|
||||
} else {
|
||||
Icon(
|
||||
Icons.Outlined.CameraAlt,
|
||||
contentDescription = "Zrób zdjęcie",
|
||||
tint = TppTheme.colors.forest,
|
||||
modifier = Modifier.size(32.dp),
|
||||
)
|
||||
}
|
||||
}
|
||||
Button(
|
||||
onClick = onClose,
|
||||
enabled = !isCapturing && pendingUploads == 0,
|
||||
modifier = Modifier
|
||||
.align(Alignment.CenterEnd)
|
||||
.width(104.dp)
|
||||
.height(52.dp),
|
||||
colors = ButtonDefaults.buttonColors(
|
||||
containerColor = TppTheme.colors.forest,
|
||||
),
|
||||
shape = RoundedCornerShape(6.dp),
|
||||
contentPadding = PaddingValues(horizontal = 8.dp, vertical = 6.dp),
|
||||
) {
|
||||
if (pendingUploads > 0) {
|
||||
CircularProgressIndicator(
|
||||
modifier = Modifier.size(16.dp),
|
||||
color = Color.White,
|
||||
strokeWidth = 2.dp,
|
||||
)
|
||||
} else {
|
||||
Icon(
|
||||
Icons.Outlined.CheckCircle,
|
||||
contentDescription = null,
|
||||
tint = Color.White,
|
||||
modifier = Modifier.size(18.dp),
|
||||
)
|
||||
}
|
||||
Text(
|
||||
text = if (pendingUploads > 0) "Zapisuję" else "Gotowe",
|
||||
color = Color.White,
|
||||
style = MaterialTheme.typography.labelMedium,
|
||||
maxLines = 1,
|
||||
softWrap = false,
|
||||
overflow = TextOverflow.Clip,
|
||||
modifier = Modifier.padding(start = 4.dp),
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private fun createMultipleCameraFile(context: Context): File {
|
||||
val directory = File(context.cacheDir, "camera").apply { mkdirs() }
|
||||
return File.createTempFile("ladunek-", ".jpg", directory)
|
||||
}
|
||||
|
||||
private fun cameraFileUri(context: Context, file: File): Uri =
|
||||
FileProvider.getUriForFile(context, "${context.packageName}.fileprovider", file)
|
||||
@@ -6,6 +6,10 @@ import org.junit.Assert.assertFalse
|
||||
import org.junit.Assert.assertTrue
|
||||
import org.junit.Test
|
||||
import pl.firmatpp.kierowca.data.model.DriverRouteDto
|
||||
import pl.firmatpp.kierowca.data.model.DriverRouteStageWorkflowDto
|
||||
import pl.firmatpp.kierowca.data.model.DriverRouteWorkflowDocumentDto
|
||||
import pl.firmatpp.kierowca.data.model.DriverRouteWorkflowDto
|
||||
import pl.firmatpp.kierowca.data.model.DriverRouteWorkflowStepDto
|
||||
import pl.firmatpp.kierowca.data.model.DispatchSheetReminderDto
|
||||
import pl.firmatpp.kierowca.data.model.RoutePhotoDto
|
||||
import pl.firmatpp.kierowca.data.model.TachographReminderDto
|
||||
@@ -18,6 +22,52 @@ import pl.firmatpp.kierowca.data.upload.RouteActionType
|
||||
class DriverUiRulesTest {
|
||||
private val today = LocalDate.parse("2026-06-30")
|
||||
|
||||
@Test
|
||||
fun customWorkflowBlocksUntilConfirmationAndRequiredDocumentArePresent() {
|
||||
val workflow = DriverRouteWorkflowDto(
|
||||
version = "workflow-v1",
|
||||
customized = true,
|
||||
loading = DriverRouteStageWorkflowDto(
|
||||
steps = listOf(
|
||||
DriverRouteWorkflowStepDto(
|
||||
id = "secure-load",
|
||||
type = RouteWorkflowStepType.Confirmation,
|
||||
title = "Sprawdź zabezpieczenie ładunku",
|
||||
requirement = RouteStageRequirement.Required,
|
||||
documents = listOf(
|
||||
DriverRouteWorkflowDocumentDto(
|
||||
id = "cmr",
|
||||
label = "List przewozowy CMR",
|
||||
requirement = RouteStageRequirement.Required,
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
unloading = DriverRouteStageWorkflowDto(),
|
||||
)
|
||||
|
||||
assertEquals(
|
||||
"Potwierdź krok: Sprawdź zabezpieczenie ładunku.",
|
||||
routeWorkflowSubmitBlocker(workflow, "loading", emptySet(), "", emptyList(), emptyList()),
|
||||
)
|
||||
assertEquals(
|
||||
"Dodaj dokument „List przewozowy CMR” w kroku „Sprawdź zabezpieczenie ładunku”.",
|
||||
routeWorkflowSubmitBlocker(workflow, "loading", setOf("secure-load"), "", emptyList(), emptyList()),
|
||||
)
|
||||
assertEquals(
|
||||
null,
|
||||
routeWorkflowSubmitBlocker(
|
||||
workflow,
|
||||
"loading",
|
||||
setOf("secure-load"),
|
||||
"",
|
||||
listOf(photo("cmr-photo", "loading").copy(workflowStepId = "secure-load", workflowDocumentId = "cmr")),
|
||||
emptyList(),
|
||||
),
|
||||
)
|
||||
}
|
||||
|
||||
@Test
|
||||
fun disabledRouteLocationNeverStartsTracking() {
|
||||
assertFalse(shouldTrackRouteLocation(RouteLocationMode.Disabled, optionalLocationEnabled = true, hasLocationPermission = true))
|
||||
|
||||
Reference in New Issue
Block a user