forked from microsoft/fluentui-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathV2CardNudgeActivity.kt
346 lines (327 loc) · 17.4 KB
/
V2CardNudgeActivity.kt
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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
package com.microsoft.fluentuidemo.demos
import android.os.Bundle
import android.widget.Toast
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.*
import androidx.compose.foundation.lazy.LazyColumn
import androidx.compose.foundation.text.BasicText
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.outlined.Call
import androidx.compose.material.icons.outlined.LocationOn
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.graphics.Color
import androidx.compose.ui.platform.LocalContext
import androidx.compose.ui.platform.LocalLayoutDirection
import androidx.compose.ui.platform.testTag
import androidx.compose.ui.text.TextStyle
import androidx.compose.ui.text.style.TextAlign
import androidx.compose.ui.unit.LayoutDirection
import com.microsoft.fluentui.theme.FluentTheme
import com.microsoft.fluentui.theme.token.FluentAliasTokens
import com.microsoft.fluentui.theme.token.FluentGlobalTokens
import com.microsoft.fluentui.theme.token.FluentIcon
import com.microsoft.fluentui.tokenized.controls.Label
import com.microsoft.fluentui.tokenized.controls.ToggleSwitch
import com.microsoft.fluentui.tokenized.listitem.ChevronOrientation
import com.microsoft.fluentui.tokenized.listitem.ListItem
import com.microsoft.fluentui.tokenized.notification.CardNudge
import com.microsoft.fluentui.tokenized.notification.CardNudgeMetaData
import com.microsoft.fluentui.tokenized.segmentedcontrols.PillMetaData
import com.microsoft.fluentuidemo.R
import com.microsoft.fluentuidemo.V2DemoActivity
import kotlin.math.abs
// Tags used for testing
const val CARD_NUDGE_MODIFIABLE_PARAMETER_SECTION = "Modifiable Parameters"
const val CARD_NUDGE_ICON_PARAM = "Icon Param"
const val CARD_NUDGE_SUBTITLE_PARAM = "Subtitle Param"
const val CARD_NUDGE_ACCENT_ICON_PARAM = "Accent Icon Param"
const val CARD_NUDGE_ACCENT_TEXT_PARAM = "Accent Text Param"
const val CARD_NUDGE_ACTION_BUTTON_PARAM = "Action Button Param"
const val CARD_NUDGE_DISMISS_BUTTON_PARAM = "Dismiss Button Param"
class V2CardNudgeActivity : V2DemoActivity() {
init {
setupActivity(this)
}
override val paramsUrl = "https://github.com/microsoft/fluentui-android/wiki/Controls#params-15"
override val controlTokensUrl =
"https://github.com/microsoft/fluentui-android/wiki/Controls#control-tokens-15"
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
val context = this
setActivityContent {
var swipeLeft: Boolean by rememberSaveable { mutableStateOf(false) }
var swipeRight: Boolean by rememberSaveable { mutableStateOf(false) }
var swipeAmount: Float by rememberSaveable { mutableStateOf(0.0F) }
var icon: Boolean by rememberSaveable { mutableStateOf(true) }
var actionButton: Boolean by rememberSaveable { mutableStateOf(true) }
var subtitle: String? by rememberSaveable { mutableStateOf(null) }
var accentText: String? by rememberSaveable { mutableStateOf(null) }
var accentImage: Boolean by rememberSaveable { mutableStateOf(false) }
var outlineEnabled: Boolean by rememberSaveable { mutableStateOf(false) }
var dismissEnabled by rememberSaveable { mutableStateOf(true) }
Column(
Modifier.fillMaxSize(),
horizontalAlignment = Alignment.CenterHorizontally
) {
ListItem.SectionHeader(
title = LocalContext.current.resources.getString(R.string.app_modifiable_parameters),
modifier = Modifier.testTag(CARD_NUDGE_MODIFIABLE_PARAMETER_SECTION),
enableChevron = true,
enableContentOpenCloseTransition = true,
chevronOrientation = ChevronOrientation(90f, 0f),
) {
LazyColumn(Modifier.fillMaxHeight(0.5F)) {
item {
ListItem.Item(
text = LocalContext.current.resources.getString(R.string.fluentui_icon),
subText = if (!icon)
LocalContext.current.resources.getString(R.string.fluentui_disabled)
else
LocalContext.current.resources.getString(R.string.fluentui_enabled),
trailingAccessoryContent = {
ToggleSwitch(
onValueChange = {
icon = it
},
modifier = Modifier.testTag(CARD_NUDGE_ICON_PARAM),
checkedState = icon
)
}
)
}
item {
val subTitleText =
LocalContext.current.resources.getString(R.string.fluentui_subtitle)
ListItem.Item(
text = subTitleText,
subText = if (subtitle.isNullOrBlank())
LocalContext.current.resources.getString(R.string.fluentui_disabled)
else
LocalContext.current.resources.getString(R.string.fluentui_enabled),
trailingAccessoryContent = {
ToggleSwitch(
onValueChange = {
subtitle = if (subtitle.isNullOrBlank()) {
subTitleText
} else {
null
}
},
modifier = Modifier.testTag(CARD_NUDGE_SUBTITLE_PARAM),
checkedState = !subtitle.isNullOrBlank()
)
}
)
}
item {
val accent =
LocalContext.current.resources.getString(R.string.fluentui_accent)
ListItem.Item(
text = accent,
subText = if (accentText.isNullOrBlank())
LocalContext.current.resources.getString(R.string.fluentui_disabled)
else
LocalContext.current.resources.getString(R.string.fluentui_enabled),
trailingAccessoryContent = {
ToggleSwitch(
onValueChange = {
accentText = if (accentText.isNullOrBlank()) {
accent
} else {
null
}
},
modifier = Modifier.testTag(CARD_NUDGE_ACCENT_TEXT_PARAM),
checkedState = !accentText.isNullOrBlank()
)
}
)
}
item {
ListItem.Item(
text = LocalContext.current.resources.getString(R.string.fluentui_accent_icon),
subText = if (accentImage)
LocalContext.current.resources.getString(R.string.fluentui_disabled)
else
LocalContext.current.resources.getString(R.string.fluentui_enabled),
trailingAccessoryContent = {
ToggleSwitch(
onValueChange = {
accentImage = it
},
modifier = Modifier.testTag(CARD_NUDGE_ACCENT_ICON_PARAM),
checkedState = accentImage
)
}
)
}
item {
ListItem.Item(
text = LocalContext.current.resources.getString(R.string.fluentui_action_button),
subText = if (actionButton)
LocalContext.current.resources.getString(R.string.fluentui_disabled)
else
LocalContext.current.resources.getString(R.string.fluentui_enabled),
trailingAccessoryContent = {
ToggleSwitch(
onValueChange = {
actionButton = it
},
modifier = Modifier.testTag(CARD_NUDGE_ACTION_BUTTON_PARAM),
checkedState = actionButton
)
}
)
}
item {
ListItem.Item(
text = LocalContext.current.resources.getString(R.string.fluentui_dismiss_button),
subText = if (!dismissEnabled)
LocalContext.current.resources.getString(R.string.fluentui_disabled)
else
LocalContext.current.resources.getString(R.string.fluentui_enabled),
trailingAccessoryContent = {
ToggleSwitch(
onValueChange = {
dismissEnabled = it
},
modifier = Modifier.testTag(CARD_NUDGE_DISMISS_BUTTON_PARAM),
checkedState = dismissEnabled
)
}
)
}
item {
ListItem.Item(
text = LocalContext.current.resources.getString(R.string.fluentui_outline),
subText = if (!outlineEnabled)
LocalContext.current.resources.getString(R.string.fluentui_disabled)
else
LocalContext.current.resources.getString(R.string.fluentui_enabled),
trailingAccessoryContent = {
ToggleSwitch(
onValueChange = {
outlineEnabled = it
},
checkedState = outlineEnabled
)
}
)
}
}
}
}
//Behaviour text
val buttonPressed =
LocalContext.current.resources.getString(R.string.fluentui_button_pressed)
val dismissPressed =
LocalContext.current.resources.getString(R.string.fluentui_dismissed)
val leftSwiped =
LocalContext.current.resources.getString(R.string.fluentui_left_swiped)
val rightSwiped =
LocalContext.current.resources.getString(R.string.fluentui_right_swiped)
val isRtl = LocalLayoutDirection.current == LayoutDirection.Rtl
Column(Modifier.fillMaxHeight(), verticalArrangement = Arrangement.Center) {
Box(
Modifier
.wrapContentHeight()
.fillMaxWidth()
.background(
if (abs(swipeAmount) > 0.3)
FluentTheme.aliasTokens.errorAndStatusColor[FluentAliasTokens.ErrorAndStatusColorTokens.WarningBackground1].value()
else
Color.Unspecified
),
contentAlignment = Alignment.Center
) {
BasicText(
"Hide",
modifier = Modifier
.fillMaxWidth()
.padding(horizontal = FluentGlobalTokens.size(FluentGlobalTokens.SizeTokens.Size160)),
style = FluentTheme.aliasTokens.typography[FluentAliasTokens.TypographyTokens.Body1Strong].merge(
TextStyle(
textAlign =
if (swipeAmount > 0) {
if(!isRtl) TextAlign.Left else TextAlign.Right
} else {
if(!isRtl) TextAlign.Right else TextAlign.Left },
color = if (abs(swipeAmount) > 0.3)
FluentTheme.aliasTokens.errorAndStatusColor[FluentAliasTokens.ErrorAndStatusColorTokens.WarningForeground1].value()
else
Color.Black
)
)
)
CardNudge(
metadata = CardNudgeMetaData(
message = LocalContext.current.resources.getString(R.string.fluentui_title),
icon = if (icon) FluentIcon(Icons.Outlined.Call) else null,
subTitle = subtitle,
accentText = accentText,
accentIcon = if (accentImage) FluentIcon(Icons.Outlined.LocationOn) else null,
actionMetaData = if (actionButton)
PillMetaData(
LocalContext.current.resources.getString(R.string.fluentui_action_button),
onClick = {
Toast.makeText(
context,
buttonPressed,
Toast.LENGTH_SHORT
).show()
}
) else null,
dismissOnClick = if (dismissEnabled) {
{
Toast.makeText(
context,
dismissPressed,
Toast.LENGTH_SHORT
).show()
}
} else null,
leftSwipeGesture = {
if(!isRtl){
swipeRight = false
swipeLeft = true
}
else{
swipeRight = true
swipeLeft = false
}
swipeAmount = it
},
rightSwipeGesture = {
if(!isRtl) {
swipeRight = true
swipeLeft = false
}
else{
swipeRight = false
swipeLeft = true
}
swipeAmount = it
}
),
outlineMode = outlineEnabled
)
}
if (swipeLeft)
Label(
leftSwiped + ": " + abs(swipeAmount).toString(),
textStyle = FluentAliasTokens.TypographyTokens.Caption1Strong
)
else if (swipeRight)
Label(
rightSwiped + ": " + abs(swipeAmount).toString(),
textStyle = FluentAliasTokens.TypographyTokens.Caption1Strong
)
}
}
}
}