This repository was archived by the owner on Oct 17, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathOfferCodeScreen.kt
More file actions
287 lines (271 loc) · 12.2 KB
/
OfferCodeScreen.kt
File metadata and controls
287 lines (271 loc) · 12.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
package dev.hyo.martie.screens
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.*
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.filled.*
import androidx.compose.material3.*
import androidx.compose.runtime.*
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.platform.LocalContext
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.unit.dp
import androidx.navigation.NavController
import dev.hyo.martie.models.AppColors
import dev.hyo.martie.screens.uis.*
import dev.hyo.openiap.IapContext
import dev.hyo.openiap.store.OpenIapStore
import kotlinx.coroutines.launch
@OptIn(ExperimentalMaterial3Api::class)
@Composable
fun OfferCodeScreen(
navController: NavController,
storeParam: OpenIapStore? = null
) {
val context = LocalContext.current
val iapStore = storeParam ?: (IapContext.LocalOpenIapStore.current
?: IapContext.rememberOpenIapStore())
val connectionStatus by iapStore.connectionStatus.collectAsState()
var offerCode by remember { mutableStateOf("") }
var showResult by remember { mutableStateOf(false) }
var resultMessage by remember { mutableStateOf("") }
var isRedeeming by remember { mutableStateOf(false) }
// Initialize and connect on first composition (spec-aligned names)
val startupScope = rememberCoroutineScope()
DisposableEffect(Unit) {
startupScope.launch { runCatching { iapStore.initConnection() } }
onDispose { startupScope.launch { runCatching { iapStore.endConnection() } } }
}
Scaffold(
topBar = {
TopAppBar(
title = { Text("Offer Code") },
navigationIcon = {
IconButton(onClick = { navController.navigateUp() }) {
Icon(Icons.AutoMirrored.Filled.ArrowBack, contentDescription = "Back")
}
},
colors = TopAppBarDefaults.topAppBarColors(
containerColor = AppColors.background
)
)
}
) { paddingValues ->
Column(
modifier = Modifier
.fillMaxSize()
.padding(paddingValues)
.background(AppColors.background)
.padding(16.dp),
verticalArrangement = Arrangement.spacedBy(20.dp)
) {
// Header Card
Card(
modifier = Modifier.fillMaxWidth(),
shape = RoundedCornerShape(12.dp),
colors = CardDefaults.cardColors(containerColor = AppColors.cardBackground),
elevation = CardDefaults.cardElevation(defaultElevation = 2.dp)
) {
Column(
modifier = Modifier.padding(16.dp),
verticalArrangement = Arrangement.spacedBy(16.dp)
) {
Row(
verticalAlignment = Alignment.CenterVertically,
horizontalArrangement = Arrangement.spacedBy(12.dp)
) {
Icon(
Icons.Default.LocalOffer,
contentDescription = null,
modifier = Modifier.size(48.dp),
tint = AppColors.warning
)
Column(verticalArrangement = Arrangement.spacedBy(4.dp)) {
Text(
"Redeem Offer Code",
style = MaterialTheme.typography.headlineSmall,
fontWeight = FontWeight.Bold
)
Text(
"Enter promo code to redeem",
style = MaterialTheme.typography.bodySmall,
color = AppColors.textSecondary
)
}
}
Text(
"Enter your promo code to redeem special offers, discounts, or free subscriptions from Google Play Store.",
style = MaterialTheme.typography.bodyMedium,
color = AppColors.textSecondary
)
}
}
// Input Field
Card(
modifier = Modifier.fillMaxWidth(),
shape = RoundedCornerShape(12.dp),
colors = CardDefaults.cardColors(containerColor = AppColors.surfaceVariant)
) {
Column(
modifier = Modifier.padding(16.dp),
verticalArrangement = Arrangement.spacedBy(16.dp)
) {
OutlinedTextField(
value = offerCode,
onValueChange = { offerCode = it.uppercase() },
label = { Text("Promo Code") },
placeholder = { Text("Enter code") },
modifier = Modifier.fillMaxWidth(),
singleLine = true,
leadingIcon = {
Icon(
Icons.Default.CardGiftcard,
contentDescription = null,
tint = AppColors.warning
)
},
colors = OutlinedTextFieldDefaults.colors(
focusedBorderColor = AppColors.warning,
unfocusedBorderColor = AppColors.textSecondary.copy(alpha = 0.3f)
)
)
Button(
onClick = {
if (offerCode.isNotBlank()) {
isRedeeming = true
// Note: Google Play doesn't have a direct API for promo codes
// They are usually redeemed through the Play Store app
resultMessage = "Promo codes should be redeemed directly in the Google Play Store app. " +
"Go to Play Store → Menu → Payments & subscriptions → Redeem code"
showResult = true
isRedeeming = false
}
},
modifier = Modifier.fillMaxWidth(),
enabled = offerCode.isNotBlank() && !isRedeeming && connectionStatus
) {
if (isRedeeming) {
CircularProgressIndicator(
modifier = Modifier.size(16.dp),
color = MaterialTheme.colorScheme.onPrimary
)
} else {
Icon(Icons.Default.Redeem, contentDescription = null)
Spacer(modifier = Modifier.width(8.dp))
Text("Redeem Code")
}
}
}
}
// Result Message
if (showResult) {
Card(
modifier = Modifier.fillMaxWidth(),
shape = RoundedCornerShape(12.dp),
colors = CardDefaults.cardColors(
containerColor = AppColors.info.copy(alpha = 0.1f)
)
) {
Row(
modifier = Modifier.padding(16.dp),
horizontalArrangement = Arrangement.spacedBy(12.dp),
verticalAlignment = Alignment.Top
) {
Icon(
Icons.Default.Info,
contentDescription = null,
tint = AppColors.info
)
Column(verticalArrangement = Arrangement.spacedBy(8.dp)) {
Text(
"How to Redeem",
style = MaterialTheme.typography.titleMedium,
fontWeight = FontWeight.SemiBold
)
Text(
resultMessage,
style = MaterialTheme.typography.bodySmall,
color = AppColors.textSecondary
)
}
}
}
}
// Instructions
Card(
modifier = Modifier.fillMaxWidth(),
shape = RoundedCornerShape(12.dp),
colors = CardDefaults.cardColors(containerColor = AppColors.cardBackground)
) {
Column(
modifier = Modifier.padding(16.dp),
verticalArrangement = Arrangement.spacedBy(8.dp)
) {
Row(
verticalAlignment = Alignment.CenterVertically,
horizontalArrangement = Arrangement.spacedBy(8.dp)
) {
Icon(
Icons.Default.HelpOutline,
contentDescription = null,
tint = AppColors.primary
)
Text(
"About Promo Codes",
style = MaterialTheme.typography.titleMedium,
fontWeight = FontWeight.SemiBold
)
}
Text(
"• Promo codes are provided by developers or Google\n" +
"• Codes can offer free trials, discounts, or in-app credits\n" +
"• Some codes are region or account-specific\n" +
"• Codes have expiration dates\n" +
"• Each code can typically be used only once per account",
style = MaterialTheme.typography.bodySmall,
color = AppColors.textSecondary
)
}
}
// Alternative Redemption Methods
Card(
modifier = Modifier.fillMaxWidth(),
shape = RoundedCornerShape(12.dp),
colors = CardDefaults.cardColors(
containerColor = AppColors.warning.copy(alpha = 0.1f)
)
) {
Column(
modifier = Modifier.padding(16.dp),
verticalArrangement = Arrangement.spacedBy(8.dp)
) {
Row(
verticalAlignment = Alignment.CenterVertically,
horizontalArrangement = Arrangement.spacedBy(8.dp)
) {
Icon(
Icons.Default.Store,
contentDescription = null,
tint = AppColors.warning
)
Text(
"Alternative Methods",
style = MaterialTheme.typography.titleMedium,
fontWeight = FontWeight.SemiBold
)
}
Text(
"You can also redeem codes:\n" +
"• Through Google Play Store app\n" +
"• Via play.google.com/redeem on web\n" +
"• Using Google Play gift cards",
style = MaterialTheme.typography.bodySmall,
color = AppColors.textSecondary
)
}
}
}
}
}