Decryption Retry All RN frontend

pull/2712/head
fhfuih 2020-03-14 20:13:28 -04:00
parent 6f46d1985f
commit 6207b42044
1 changed files with 10 additions and 0 deletions

View File

@ -61,6 +61,9 @@ class StatusScreenComponent extends BaseScreenComponent {
style.fontWeight = 'bold'; style.fontWeight = 'bold';
if (i > 0) style.paddingTop = 20; if (i > 0) style.paddingTop = 20;
lines.push({ key: `section_${i}`, isSection: true, text: section.title }); lines.push({ key: `section_${i}`, isSection: true, text: section.title });
if (section.canRetryAll) {
lines.push({ key: `retry_all_${i}`, text: '', retryAllHandler: section.retryAllHandler });
}
for (let n in section.body) { for (let n in section.body) {
if (!section.body.hasOwnProperty(n)) continue; if (!section.body.hasOwnProperty(n)) continue;
@ -101,6 +104,12 @@ class StatusScreenComponent extends BaseScreenComponent {
style.flex = 1; style.flex = 1;
const retryAllButton = item.retryAllHandler ? (
<View style={{ flex: 0 }}>
<Button title={_('Retry All')} onPress={item.retryAllHandler} />
</View>
) : null;
const retryButton = item.retryHandler ? ( const retryButton = item.retryHandler ? (
<View style={{ flex: 0 }}> <View style={{ flex: 0 }}>
<Button title={_('Retry')} onPress={item.retryHandler} /> <Button title={_('Retry')} onPress={item.retryHandler} />
@ -113,6 +122,7 @@ class StatusScreenComponent extends BaseScreenComponent {
return ( return (
<View style={{ flex: 1, flexDirection: 'row' }}> <View style={{ flex: 1, flexDirection: 'row' }}>
<Text style={style}>{item.text}</Text> <Text style={style}>{item.text}</Text>
{retryAllButton}
{retryButton} {retryButton}
</View> </View>
); );