@@ -42,14 +42,13 @@ import org.wikipedia.compose.components.WikiTopAppBarWithSearch
42
42
import org.wikipedia.compose.components.error.ComposeWikiErrorParentView
43
43
import org.wikipedia.compose.components.error.WikiErrorClickEvents
44
44
import org.wikipedia.compose.theme.WikipediaTheme
45
+ import org.wikipedia.util.UiState
45
46
46
47
@Composable
47
48
fun ComposeLangLinksScreen (
48
49
modifier : Modifier = Modifier ,
49
- isLoading : Boolean = true,
50
- langLinksItem : List <LangLinksViewModel .LangLinksItem >,
51
- onLanguageSelected : (LangLinksViewModel .LangLinksItem ) -> Unit ,
52
- error : Throwable ? = null,
50
+ uiState : UiState <List <LangLinksItem >>,
51
+ onLanguageSelected : (LangLinksItem ) -> Unit ,
53
52
wikiErrorClickEvents : WikiErrorClickEvents ? = null,
54
53
onBackButtonClick : () -> Unit ,
55
54
onSearchQueryChange : (String ) -> Unit ,
@@ -77,77 +76,89 @@ fun ComposeLangLinksScreen(
77
76
},
78
77
containerColor = WikipediaTheme .colors.paperColor
79
78
) { paddingValues ->
80
- if (error != null ) {
81
- Box (
82
- modifier = modifier
83
- .fillMaxSize()
84
- .padding(paddingValues)
85
- // Add bottom padding when keyboard is visible
86
- .padding(bottom = if (isKeyboardVisible) imeHeight else 0 .dp),
87
- contentAlignment = Alignment .Center
88
- ) {
89
- ComposeWikiErrorParentView (
90
- modifier = Modifier
91
- .fillMaxWidth(),
92
- caught = error,
93
- errorClickEvents = wikiErrorClickEvents
94
- )
95
- }
96
- return @Scaffold
97
- }
98
-
99
- if (langLinksItem.isEmpty()) {
100
- Box (
101
- modifier = modifier
102
- .fillMaxSize()
103
- .padding(paddingValues)
104
- // Add bottom padding when keyboard is visible
105
- .padding(bottom = if (isKeyboardVisible) imeHeight else 0 .dp),
106
- contentAlignment = Alignment .Center
107
- ) {
108
- if (isLoading) {
79
+ when (uiState) {
80
+ is UiState .Loading -> {
81
+ Box (
82
+ modifier = modifier
83
+ .fillMaxSize()
84
+ .padding(paddingValues)
85
+ // Add bottom padding when keyboard is visible
86
+ .padding(bottom = if (isKeyboardVisible) imeHeight else 0 .dp),
87
+ contentAlignment = Alignment .Center
88
+ ) {
109
89
CircularProgressIndicator (
110
90
color = WikipediaTheme .colors.progressiveColor
111
91
)
112
- } else {
113
- SearchEmptyView (
92
+ }
93
+ }
94
+
95
+ is UiState .Error -> {
96
+ Box (
97
+ modifier = modifier
98
+ .fillMaxSize()
99
+ .padding(paddingValues)
100
+ // Add bottom padding when keyboard is visible
101
+ .padding(bottom = if (isKeyboardVisible) imeHeight else 0 .dp),
102
+ contentAlignment = Alignment .Center
103
+ ) {
104
+ ComposeWikiErrorParentView (
114
105
modifier = Modifier
115
106
.fillMaxWidth(),
116
- emptyTexTitle = context.getString(R .string.langlinks_no_match)
107
+ caught = uiState.throwable,
108
+ errorClickEvents = wikiErrorClickEvents
117
109
)
118
110
}
119
111
}
120
- return @Scaffold
121
- }
112
+ is UiState .Success -> {
113
+ val langLinksItem = uiState.data
114
+ if (langLinksItem.isEmpty()) {
115
+ Box (
116
+ modifier = modifier
117
+ .fillMaxSize()
118
+ .padding(paddingValues)
119
+ // Add bottom padding when keyboard is visible
120
+ .padding(bottom = if (isKeyboardVisible) imeHeight else 0 .dp),
121
+ contentAlignment = Alignment .Center
122
+ ) {
123
+ SearchEmptyView (
124
+ modifier = Modifier
125
+ .fillMaxWidth(),
126
+ emptyTexTitle = context.getString(R .string.langlinks_no_match)
127
+ )
128
+ }
129
+ return @Scaffold
130
+ }
122
131
123
- LazyColumn (
124
- modifier = modifier
125
- .padding(paddingValues)
126
- ) {
127
- items(langLinksItem) { item ->
128
- if (item.isHeader) {
129
- ListHeader (
130
- modifier = Modifier
131
- .height(56 .dp)
132
- .fillMaxWidth()
133
- .padding(horizontal = 16 .dp)
134
- .padding(bottom = 4 .dp),
135
- title = item.headerText,
136
- )
137
- } else {
138
- LangLinksItemView (
139
- modifier = Modifier
140
- .fillMaxWidth()
141
- .padding(16 .dp)
142
- .clickable(
143
- interactionSource = remember { MutableInteractionSource () },
144
- indication = ripple(bounded = true ),
145
- onClick = { onLanguageSelected(item) }
146
- ),
147
- localizedLanguageName = item.localizedName,
148
- canonicalName = item.canonicalName,
149
- articleName = item.articleName
150
- )
132
+ LazyColumn (
133
+ modifier = modifier
134
+ .padding(paddingValues)
135
+ ) {
136
+ items(langLinksItem) { item ->
137
+ if (item.isHeader) {
138
+ ListHeader (
139
+ modifier = Modifier
140
+ .height(56 .dp)
141
+ .fillMaxWidth()
142
+ .padding(horizontal = 16 .dp)
143
+ .padding(bottom = 4 .dp),
144
+ title = item.headerText,
145
+ )
146
+ } else {
147
+ LangLinksItemView (
148
+ modifier = Modifier
149
+ .fillMaxWidth()
150
+ .padding(16 .dp)
151
+ .clickable(
152
+ interactionSource = remember { MutableInteractionSource () },
153
+ indication = ripple(bounded = true ),
154
+ onClick = { onLanguageSelected(item) }
155
+ ),
156
+ localizedLanguageName = item.localizedName,
157
+ canonicalName = item.canonicalName,
158
+ articleName = item.articleName
159
+ )
160
+ }
161
+ }
151
162
}
152
163
}
153
164
}
0 commit comments