@@ -31,23 +31,18 @@ import androidx.compose.runtime.rememberCoroutineScope
31
31
import androidx.compose.runtime.saveable.rememberSaveable
32
32
import androidx.compose.runtime.setValue
33
33
import androidx.compose.ui.Modifier
34
- import androidx.compose.ui.platform.LocalContext
35
34
import androidx.compose.ui.unit.dp
36
35
import androidx.hilt.navigation.compose.hiltViewModel
37
36
import androidx.lifecycle.compose.collectAsStateWithLifecycle
38
37
import androidx.navigation.NavController
39
38
import com.google.accompanist.permissions.ExperimentalPermissionsApi
40
39
import com.google.accompanist.permissions.rememberMultiplePermissionsState
41
40
import com.niyaj.common.tags.ProfileTestTags.PROFILE_SCREEN
42
- import com.niyaj.common.utils.ImageStorageManager
43
- import com.niyaj.common.utils.toBitmap
44
41
import com.niyaj.designsystem.theme.LightColor6
45
42
import com.niyaj.designsystem.theme.SpaceSmall
46
43
import com.niyaj.feature.profile.components.AccountInfo
47
44
import com.niyaj.feature.profile.components.RestaurantCard
48
45
import com.niyaj.feature.profile.destinations.UpdateProfileScreenDestination
49
- import com.niyaj.model.RESTAURANT_LOGO_NAME
50
- import com.niyaj.model.RESTAURANT_PRINT_LOGO_NAME
51
46
import com.niyaj.ui.components.SettingsCard
52
47
import com.niyaj.ui.event.UiEvent
53
48
import com.niyaj.ui.util.Screens
@@ -73,46 +68,12 @@ fun ProfileScreen(
73
68
viewModel : ProfileViewModel = hiltViewModel(),
74
69
resultRecipient : ResultRecipient <UpdateProfileScreenDestination , String >
75
70
) {
76
- val context = LocalContext .current
77
71
val lazyListState = rememberLazyListState()
78
72
val scope = rememberCoroutineScope()
79
73
80
74
val info = viewModel.info.collectAsStateWithLifecycle().value
81
75
val accountInfo = viewModel.accountInfo.collectAsStateWithLifecycle().value
82
76
83
- val resLogo = info.getRestaurantLogo(context)
84
- val printLogo = info.getRestaurantPrintLogo(context)
85
-
86
- LaunchedEffect (key1 = true ) {
87
- viewModel.eventFlow.collect { event ->
88
- when (event) {
89
- is UiEvent .Success -> {
90
- scaffoldState.snackbarHostState.showSnackbar(
91
- message = event.successMessage
92
- )
93
- }
94
-
95
- is UiEvent .Error -> {
96
- scaffoldState.snackbarHostState.showSnackbar(
97
- message = event.errorMessage
98
- )
99
- }
100
-
101
- }
102
- }
103
- }
104
-
105
- resultRecipient.onNavResult { result ->
106
- when (result) {
107
- is NavResult .Canceled -> {}
108
- is NavResult .Value -> {
109
- scope.launch {
110
- scaffoldState.snackbarHostState.showSnackbar(result.value)
111
- }
112
- }
113
- }
114
- }
115
-
116
77
val permissionState = if (Build .VERSION .SDK_INT >= Build .VERSION_CODES .TIRAMISU ) {
117
78
rememberMultiplePermissionsState(
118
79
permissions = listOf (
@@ -134,6 +95,10 @@ fun ProfileScreen(
134
95
}
135
96
}
136
97
98
+ LaunchedEffect (key1 = Unit ) {
99
+ checkForMediaPermission()
100
+ }
101
+
137
102
var showPrintLogo by rememberSaveable {
138
103
mutableStateOf(false )
139
104
}
@@ -142,39 +107,43 @@ fun ProfileScreen(
142
107
contract = ActivityResultContracts .PickVisualMedia ()
143
108
) { uri ->
144
109
uri?.let {
145
- val result = ImageStorageManager .saveToInternalStorage(
146
- context,
147
- uri.toBitmap(context),
148
- RESTAURANT_LOGO_NAME
149
- )
150
-
151
- scope.launch {
152
- if (result) {
153
- scaffoldState.snackbarHostState.showSnackbar(" Profile image saved successfully." )
154
- viewModel.onEvent(ProfileEvent .LogoChanged )
155
- } else {
156
- scaffoldState.snackbarHostState.showSnackbar(" Unable save image into storage." )
157
- }
158
- }
110
+ viewModel.onEvent(ProfileEvent .LogoChanged (uri = it))
159
111
}
160
112
}
161
113
162
114
val printLogoLauncher = rememberLauncherForActivityResult(
163
115
contract = ActivityResultContracts .PickVisualMedia ()
164
116
) { uri ->
165
117
uri?.let {
166
- val result = ImageStorageManager .saveToInternalStorage(
167
- context,
168
- uri.toBitmap(context),
169
- RESTAURANT_PRINT_LOGO_NAME
170
- )
118
+ viewModel.onEvent(ProfileEvent .PrintLogoChanged (uri = it))
119
+ }
120
+ }
121
+
122
+ LaunchedEffect (key1 = true ) {
123
+ viewModel.eventFlow.collect { event ->
124
+ when (event) {
125
+ is UiEvent .Success -> {
126
+ scaffoldState.snackbarHostState.showSnackbar(
127
+ message = event.successMessage
128
+ )
129
+ }
171
130
172
- scope.launch {
173
- if (result) {
174
- scaffoldState.snackbarHostState.showSnackbar(" Print Image saved successfully." )
175
- viewModel.onEvent(ProfileEvent .PrintLogoChanged )
176
- } else {
177
- scaffoldState.snackbarHostState.showSnackbar(" Unable save print image into storage." )
131
+ is UiEvent .Error -> {
132
+ scaffoldState.snackbarHostState.showSnackbar(
133
+ message = event.errorMessage
134
+ )
135
+ }
136
+
137
+ }
138
+ }
139
+ }
140
+
141
+ resultRecipient.onNavResult { result ->
142
+ when (result) {
143
+ is NavResult .Canceled -> {}
144
+ is NavResult .Value -> {
145
+ scope.launch {
146
+ scaffoldState.snackbarHostState.showSnackbar(result.value)
178
147
}
179
148
}
180
149
}
@@ -224,8 +193,6 @@ fun ProfileScreen(
224
193
item(" Restaurant Info" ) {
225
194
RestaurantCard (
226
195
info = info,
227
- resLogo = resLogo,
228
- printLogo = printLogo,
229
196
showPrintLogo = showPrintLogo,
230
197
onClickEdit = {
231
198
checkForMediaPermission()
0 commit comments