import React, { useState } from "react"; import PropTypes from "prop-types"; import { Appbar, BottomNavigation, Text, Card, Dialog, Portal, Button, Provider, RadioButton, TouchableRipple } from "react-native-paper"; import { View, StatusBar, StyleSheet } from "react-native"; import SubjectsContainer from "./containers/SubjectsContainer"; import themes from "./themes"; function Dummy() { return ( Dummy ); } function ThemePicker({ onPress, selectionIdx }) { return ( <> {themes.map((t, idx) => ( onPress(t, idx)} key={idx} > {t.name} ))} ); } ThemePicker.propTypes = { onPress: PropTypes.func, selectionIdx: PropTypes.number, }; const App = ({ theme, setTheme }) => { const [ pane, setPane ] = useState({ index: 0, routes: [ { key: "add", title: "Add Classes", icon: "pencil-plus" }, { key: "statistics", title: "Statistics", icon: "file-chart" }, { key: "timetable", title: "Time Table", icon: "calendar-clock" }, { key: "subjects", title: "Subjects", icon: "book-open" }, ], }); const [ showDialog, setShowDialog ] = useState(false); const [ newTheme, setNewTheme ] = useState(themes.findIndex( i => JSON.stringify(i.theme) === JSON.stringify(theme) )); const renderScene = BottomNavigation.SceneMap({ add: Dummy, statistics: Dummy, timetable: Dummy, subjects: SubjectsContainer, }); function dialogSelection(theme, idx) { setNewTheme(idx); setTheme(theme.theme); } return ( <> setShowDialog(true)} /> setPane({ index, routes: pane.routes })} renderScene={renderScene} shifting={true} /> setShowDialog(false)}> Theme ); }; App.propTypes = { theme: PropTypes.object, setTheme: PropTypes.func, }; const styles = StyleSheet.create({ radio: { flexDirection: "row", alignItems: "center", margin: 5 } }); export default App;