import * as React from 'react'; import { View, Text, Button, FlatList, TextStyle, StyleSheet } from 'react-native'; import Setting from '@joplin/lib/models/Setting'; import { connect } from 'react-redux'; import { ScreenHeader } from '../ScreenHeader'; import ReportService, { ReportSection } from '@joplin/lib/services/ReportService'; import { _ } from '@joplin/lib/locale'; import { BaseScreenComponent } from '../base-screen'; import { themeStyle } from '../global-style'; import { AppState } from '../../utils/types'; import checkDisabledSyncItemsNotification from '@joplin/lib/services/synchronizer/utils/checkDisabledSyncItemsNotification'; import { Dispatch } from 'redux'; interface Props { themeId: number; dispatch: Dispatch; } interface State { report: ReportSection[]; } class StatusScreenComponent extends BaseScreenComponent { public constructor(props: Props) { super(props); this.state = { report: [], }; } public override componentDidMount() { void this.refreshScreen(); } private async refreshScreen() { const service = new ReportService(); const report = await service.status(Setting.value('sync.target')); this.setState({ report: report }); } private styles() { const theme = themeStyle(this.props.themeId); return StyleSheet.create({ body: { flex: 1, margin: theme.margin, }, actionButton: { flex: 0, flexBasis: 'auto', marginLeft: 2, marginRight: 2, }, }); } public override render() { const theme = themeStyle(this.props.themeId); const styles = this.styles(); const renderBody = (report: ReportSection[]) => { const baseStyle = { paddingLeft: 6, paddingRight: 6, paddingTop: 2, paddingBottom: 2, flex: 0, color: theme.color, fontSize: theme.fontSize, }; const lines = []; for (let i = 0; i < report.length; i++) { const section = report[i]; let style: TextStyle = { ...baseStyle }; 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 (const n in section.body) { if (!section.body.hasOwnProperty(n)) continue; style = { ...baseStyle }; const item = section.body[n]; let text = ''; let retryHandler = null; let ignoreHandler = null; if (typeof item === 'object') { if (item.canRetry) { retryHandler = async () => { await item.retryHandler(); await this.refreshScreen(); }; } if (item.canIgnore) { ignoreHandler = async () => { await item.ignoreHandler(); await this.refreshScreen(); await checkDisabledSyncItemsNotification((action) => this.props.dispatch(action)); }; } text = item.text; } else { text = item; } lines.push({ key: `item_${i}_${n}`, text: text, retryHandler, ignoreHandler }); } lines.push({ key: `divider2_${i}`, isDivider: true }); } return ( { const style: TextStyle = { ...baseStyle }; if (item.isSection === true) { style.fontWeight = 'bold'; style.marginBottom = 5; } style.flex = 1; const retryAllButton = item.retryAllHandler ? (