diff --git a/src/components/Lists/DashboardEdit/DashboardEditAccordion.js b/src/components/Lists/DashboardEdit/DashboardEditAccordion.js index 1c6d738..67146ef 100644 --- a/src/components/Lists/DashboardEdit/DashboardEditAccordion.js +++ b/src/components/Lists/DashboardEdit/DashboardEditAccordion.js @@ -2,71 +2,88 @@ import * as React from 'react'; import {withTheme} from 'react-native-paper'; -import {FlatList, Image, View} from "react-native"; -import DashboardEditItem from "./DashboardEditItem"; -import AnimatedAccordion from "../../Animations/AnimatedAccordion"; -import type {ServiceCategory, ServiceItem} from "../../../managers/ServicesManager"; -import MaterialCommunityIcons from "react-native-vector-icons/MaterialCommunityIcons"; -import type {CustomTheme} from "../../../managers/ThemeManager"; +import {FlatList, Image, View} from 'react-native'; +import MaterialCommunityIcons from 'react-native-vector-icons/MaterialCommunityIcons'; +import DashboardEditItem from './DashboardEditItem'; +import AnimatedAccordion from '../../Animations/AnimatedAccordion'; +import type { + ServiceCategoryType, + ServiceItemType, +} from '../../../managers/ServicesManager'; +import type {CustomTheme} from '../../../managers/ThemeManager'; -type Props = { - item: ServiceCategory, - activeDashboard: Array, - onPress: (service: ServiceItem) => void, - theme: CustomTheme, -} +type PropsType = { + item: ServiceCategoryType, + activeDashboard: Array, + onPress: (service: ServiceItemType) => void, + theme: CustomTheme, +}; const LIST_ITEM_HEIGHT = 64; -class DashboardEditAccordion extends React.Component { +class DashboardEditAccordion extends React.Component { + getRenderItem = ({item}: {item: ServiceItemType}): React.Node => { + const {props} = this; + return ( + { + props.onPress(item); + }} + /> + ); + }; - renderItem = ({item}: { item: ServiceItem }) => { - return ( - this.props.onPress(item)}/> - ); - } + getItemLayout = ( + data: ?Array, + index: number, + ): {length: number, offset: number, index: number} => ({ + length: LIST_ITEM_HEIGHT, + offset: LIST_ITEM_HEIGHT * index, + index, + }); - itemLayout = (data, index) => ({length: LIST_ITEM_HEIGHT, offset: LIST_ITEM_HEIGHT * index, index}); - - render() { - const item = this.props.item; - return ( - - typeof item.image === "number" - ? - : } - > - {/*$FlowFixMe*/} - - - - ); - } + render(): React.Node { + const {props} = this; + const {item} = props; + return ( + + + typeof item.image === 'number' ? ( + + ) : ( + + ) + }> + {/* $FlowFixMe */} + + + + ); + } } -export default withTheme(DashboardEditAccordion) +export default withTheme(DashboardEditAccordion); diff --git a/src/components/Lists/DashboardEdit/DashboardEditItem.js b/src/components/Lists/DashboardEdit/DashboardEditItem.js index 1d32b9e..f2d2038 100644 --- a/src/components/Lists/DashboardEdit/DashboardEditItem.js +++ b/src/components/Lists/DashboardEdit/DashboardEditItem.js @@ -1,55 +1,61 @@ // @flow import * as React from 'react'; -import {Image} from "react-native"; +import {Image} from 'react-native'; import {List, withTheme} from 'react-native-paper'; -import type {CustomTheme} from "../../../managers/ThemeManager"; -import type {ServiceItem} from "../../../managers/ServicesManager"; +import type {CustomTheme} from '../../../managers/ThemeManager'; +import type {ServiceItemType} from '../../../managers/ServicesManager'; -type Props = { - item: ServiceItem, - isActive: boolean, - height: number, - onPress: () => void, - theme: CustomTheme, -} +type PropsType = { + item: ServiceItemType, + isActive: boolean, + height: number, + onPress: () => void, + theme: CustomTheme, +}; -class DashboardEditItem extends React.Component { +class DashboardEditItem extends React.Component { + shouldComponentUpdate(nextProps: PropsType): boolean { + const {isActive} = this.props; + return nextProps.isActive !== isActive; + } - shouldComponentUpdate(nextProps: Props) { - return (nextProps.isActive !== this.props.isActive); - } - - render() { - return ( - - } - right={props => this.props.isActive - ? : null} - style={{ - height: this.props.height, - justifyContent: 'center', - paddingLeft: 30, - backgroundColor: this.props.isActive ? this.props.theme.colors.proxiwashFinishedColor : "transparent" - }} + render(): React.Node { + const {props} = this; + return ( + ( + + )} + right={({size}: {size: number}): React.Node => + props.isActive ? ( + - ); - } + ) : null + } + style={{ + height: props.height, + justifyContent: 'center', + paddingLeft: 30, + backgroundColor: props.isActive + ? props.theme.colors.proxiwashFinishedColor + : 'transparent', + }} + /> + ); + } } export default withTheme(DashboardEditItem); diff --git a/src/components/Lists/DashboardEdit/DashboardEditPreviewItem.js b/src/components/Lists/DashboardEdit/DashboardEditPreviewItem.js index f4c4ce2..0077284 100644 --- a/src/components/Lists/DashboardEdit/DashboardEditPreviewItem.js +++ b/src/components/Lists/DashboardEdit/DashboardEditPreviewItem.js @@ -2,57 +2,57 @@ import * as React from 'react'; import {TouchableRipple, withTheme} from 'react-native-paper'; -import {Dimensions, Image, View} from "react-native"; -import type {CustomTheme} from "../../../managers/ThemeManager"; +import {Dimensions, Image, View} from 'react-native'; +import type {CustomTheme} from '../../../managers/ThemeManager'; -type Props = { - image: string, - isActive: boolean, - onPress: () => void, - theme: CustomTheme, +type PropsType = { + image: string, + isActive: boolean, + onPress: () => void, + theme: CustomTheme, }; /** * Component used to render a small dashboard item */ -class DashboardEditPreviewItem extends React.Component { +class DashboardEditPreviewItem extends React.Component { + itemSize: number; - itemSize: number; - - constructor(props: Props) { - super(props); - this.itemSize = Dimensions.get('window').width / 8; - } - - render() { - const props = this.props; - return ( - - - - - - ); - } + constructor(props: PropsType) { + super(props); + this.itemSize = Dimensions.get('window').width / 8; + } + render(): React.Node { + const {props} = this; + return ( + + + + + + ); + } } -export default withTheme(DashboardEditPreviewItem) +export default withTheme(DashboardEditPreviewItem); diff --git a/src/screens/Other/Settings/DashboardEditScreen.js b/src/screens/Other/Settings/DashboardEditScreen.js index 34414b3..95acc2d 100644 --- a/src/screens/Other/Settings/DashboardEditScreen.js +++ b/src/screens/Other/Settings/DashboardEditScreen.js @@ -1,148 +1,166 @@ // @flow import * as React from 'react'; -import {StackNavigationProp} from "@react-navigation/stack"; -import type {CustomTheme} from "../../../managers/ThemeManager"; -import {Button, Card, Paragraph, withTheme} from "react-native-paper"; -import type {ServiceCategory, ServiceItem} from "../../../managers/ServicesManager"; -import DashboardManager from "../../../managers/DashboardManager"; -import DashboardItem from "../../../components/Home/EventDashboardItem"; -import {FlatList} from "react-native"; -import {View} from "react-native-animatable"; -import DashboardEditAccordion from "../../../components/Lists/DashboardEdit/DashboardEditAccordion"; -import DashboardEditPreviewItem from "../../../components/Lists/DashboardEdit/DashboardEditPreviewItem"; -import AsyncStorageManager from "../../../managers/AsyncStorageManager"; -import i18n from "i18n-js"; -import CollapsibleFlatList from "../../../components/Collapsible/CollapsibleFlatList"; +import {StackNavigationProp} from '@react-navigation/stack'; +import {Button, Card, Paragraph, withTheme} from 'react-native-paper'; +import {FlatList} from 'react-native'; +import {View} from 'react-native-animatable'; +import i18n from 'i18n-js'; +import type { + ServiceCategoryType, + ServiceItemType, +} from '../../../managers/ServicesManager'; +import DashboardManager from '../../../managers/DashboardManager'; +import DashboardItem from '../../../components/Home/EventDashboardItem'; +import DashboardEditAccordion from '../../../components/Lists/DashboardEdit/DashboardEditAccordion'; +import DashboardEditPreviewItem from '../../../components/Lists/DashboardEdit/DashboardEditPreviewItem'; +import AsyncStorageManager from '../../../managers/AsyncStorageManager'; +import CollapsibleFlatList from '../../../components/Collapsible/CollapsibleFlatList'; -type Props = { - navigation: StackNavigationProp, - theme: CustomTheme, +type PropsType = { + navigation: StackNavigationProp, }; -type State = { - currentDashboard: Array, - currentDashboardIdList: Array, - activeItem: number, +type StateType = { + currentDashboard: Array, + currentDashboardIdList: Array, + activeItem: number, }; /** * Class defining the Settings screen. This screen shows controls to modify app preferences. */ -class DashboardEditScreen extends React.Component { +class DashboardEditScreen extends React.Component { + content: Array; - content: Array; - initialDashboard: Array; - initialDashboardIdList: Array; + initialDashboard: Array; - constructor(props: Props) { - super(props); - let dashboardManager = new DashboardManager(this.props.navigation); - this.initialDashboardIdList = AsyncStorageManager.getObject(AsyncStorageManager.PREFERENCES.dashboardItems.key); - this.initialDashboard = dashboardManager.getCurrentDashboard(); - this.state = { - currentDashboard: [...this.initialDashboard], - currentDashboardIdList: [...this.initialDashboardIdList], - activeItem: 0, - } - this.content = dashboardManager.getCategories(); - } + initialDashboardIdList: Array; - dashboardRowRenderItem = ({item, index}: { item: DashboardItem, index: number }) => { - return ( - this.setState({activeItem: index})} - isActive={this.state.activeItem === index} - /> - ); + constructor(props: PropsType) { + super(props); + const dashboardManager = new DashboardManager(props.navigation); + this.initialDashboardIdList = AsyncStorageManager.getObject( + AsyncStorageManager.PREFERENCES.dashboardItems.key, + ); + this.initialDashboard = dashboardManager.getCurrentDashboard(); + this.state = { + currentDashboard: [...this.initialDashboard], + currentDashboardIdList: [...this.initialDashboardIdList], + activeItem: 0, }; + this.content = dashboardManager.getCategories(); + } - getDashboard(content: Array) { - return ( - ); - } + getDashboardRowRenderItem = ({ + item, + index, + }: { + item: DashboardItem, + index: number, + }): React.Node => { + const {activeItem} = this.state; + return ( + { + this.setState({activeItem: index}); + }} + isActive={activeItem === index} + /> + ); + }; - renderItem = ({item}: { item: ServiceCategory }) => { - return ( - - ); - }; + getDashboard(content: Array): React.Node { + return ( + + ); + } - updateDashboard = (service: ServiceItem) => { - let currentDashboard = this.state.currentDashboard; - let currentDashboardIdList = this.state.currentDashboardIdList; - currentDashboard[this.state.activeItem] = service; - currentDashboardIdList[this.state.activeItem] = service.key; - this.setState({ - currentDashboard: currentDashboard, - currentDashboardIdList: currentDashboardIdList, - }); - AsyncStorageManager.set(AsyncStorageManager.PREFERENCES.dashboardItems.key, currentDashboardIdList); - } + getRenderItem = ({item}: {item: ServiceCategoryType}): React.Node => { + const {currentDashboardIdList} = this.state; + return ( + + ); + }; - undoDashboard = () => { - this.setState({ - currentDashboard: [...this.initialDashboard], - currentDashboardIdList: [...this.initialDashboardIdList] - }); - AsyncStorageManager.set(AsyncStorageManager.PREFERENCES.dashboardItems.key, this.initialDashboardIdList); - } + getListHeader(): React.Node { + const {currentDashboard} = this.state; + return ( + + + + + + {this.getDashboard(currentDashboard)} + + + + {i18n.t('screens.settings.dashboardEdit.message')} + + + + ); + } - getListHeader() { - return ( - - - - - - {this.getDashboard(this.state.currentDashboard)} - - - - {i18n.t("screens.settings.dashboardEdit.message")} - - - - ); - } + updateDashboard = (service: ServiceItemType) => { + const {currentDashboard, currentDashboardIdList, activeItem} = this.state; + currentDashboard[activeItem] = service; + currentDashboardIdList[activeItem] = service.key; + this.setState({ + currentDashboard, + currentDashboardIdList, + }); + AsyncStorageManager.set( + AsyncStorageManager.PREFERENCES.dashboardItems.key, + currentDashboardIdList, + ); + }; + undoDashboard = () => { + this.setState({ + currentDashboard: [...this.initialDashboard], + currentDashboardIdList: [...this.initialDashboardIdList], + }); + AsyncStorageManager.set( + AsyncStorageManager.PREFERENCES.dashboardItems.key, + this.initialDashboardIdList, + ); + }; - render() { - return ( - - ); - } - + render(): React.Node { + return ( + + ); + } } export default withTheme(DashboardEditScreen);