// @flow import * as React from 'react'; import {FlatList, View} from "react-native"; import AsyncStorageManager from "../../managers/AsyncStorageManager"; import CustomModal from "../../components/Overrides/CustomModal"; import {Button, List, Subheading, TextInput, Title, withTheme} from 'react-native-paper'; type Props = { navigation: Object, }; type State = { modalCurrentDisplayItem: Object, currentPreferences: Array, } /** * Class defining the Debug screen. * This screen allows the user to get and modify information on the app/device. */ class DebugScreen extends React.Component { modalRef: Object; modalInputValue = ''; onModalRef: Function; colors: Object; constructor(props) { super(props); this.onModalRef = this.onModalRef.bind(this); this.colors = props.theme.colors; let copy = {...AsyncStorageManager.getInstance().preferences}; let currentPreferences = []; Object.values(copy).map((object) => { currentPreferences.push(object); }); this.state = { modalCurrentDisplayItem: {}, currentPreferences: currentPreferences }; } /** * Show the edit modal * @param item */ showEditModal(item: Object) { this.setState({ modalCurrentDisplayItem: item }); if (this.modalRef) { this.modalRef.open(); } } /** * Gets the edit modal content * * @return {*} */ getModalContent() { return ( {this.state.modalCurrentDisplayItem.key} Default: {this.state.modalCurrentDisplayItem.default} Current: {this.state.modalCurrentDisplayItem.current} this.modalInputValue = text} /> ); } findIndexOfKey(key: string) { let index = -1; for (let i = 0; i < this.state.currentPreferences.length; i++) { if (this.state.currentPreferences[i].key === key) { index = i; break; } } return index; } /** * Saves the new value of the given preference * * @param key The pref key * @param value The pref value */ saveNewPrefs(key: string, value: string) { this.setState((prevState) => { let currentPreferences = [...prevState.currentPreferences]; currentPreferences[this.findIndexOfKey(key)].current = value; return {currentPreferences}; }); AsyncStorageManager.getInstance().savePref(key, value); this.modalRef.close(); } /** * Callback used when receiving the modal ref * * @param ref */ onModalRef(ref: Object) { this.modalRef = ref; } renderItem = ({item}: Object) => { return ( this.showEditModal(item)} /> ); }; render() { return ( {this.getModalContent()} {/*$FlowFixMe*/} ); } } export default withTheme(DebugScreen);