1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00

Decryption Retry All RN frontend

This commit is contained in:
fhfuih 2020-03-14 20:13:28 -04:00
parent 6f46d1985f
commit 6207b42044

View File

@ -61,6 +61,9 @@ class StatusScreenComponent extends BaseScreenComponent {
style.fontWeight = 'bold';
if (i > 0) style.paddingTop = 20;
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) {
if (!section.body.hasOwnProperty(n)) continue;
@ -101,6 +104,12 @@ class StatusScreenComponent extends BaseScreenComponent {
style.flex = 1;
const retryAllButton = item.retryAllHandler ? (
<View style={{ flex: 0 }}>
<Button title={_('Retry All')} onPress={item.retryAllHandler} />
</View>
) : null;
const retryButton = item.retryHandler ? (
<View style={{ flex: 0 }}>
<Button title={_('Retry')} onPress={item.retryHandler} />
@ -113,6 +122,7 @@ class StatusScreenComponent extends BaseScreenComponent {
return (
<View style={{ flex: 1, flexDirection: 'row' }}>
<Text style={style}>{item.text}</Text>
{retryAllButton}
{retryButton}
</View>
);