/* * Copyright (c) 2019 - 2020 Arnaud Vergnet. * * This file is part of Campus INSAT. * * Campus INSAT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Campus INSAT is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Campus INSAT. If not, see . */ // @flow import * as React from 'react'; import {Image, View} from 'react-native'; import i18n from 'i18n-js'; import {Card, Avatar, Paragraph, Title} from 'react-native-paper'; import CollapsibleScrollView from '../../components/Collapsible/CollapsibleScrollView'; import type {CardTitleIconPropsType} from '../../constants/PaperStyles'; import ProxiwashConstants from '../../constants/ProxiwashConstants'; const LOGO = 'https://etud.insa-toulouse.fr/~amicale_app/images/Proxiwash.png'; export type LaundromatType = { id: string, title: string, subtitle: string, description: string, tarif: string, paymentMethods: string, icon: string, url: string, }; /** * Class defining the proxiwash about screen. */ export default class ProxiwashAboutScreen extends React.Component { static getCardItem(item: LaundromatType): React.Node { return ( ( )} /> {i18n.t(item.description)} {i18n.t('screens.proxiwash.tariffs')} {i18n.t(item.tarif)} {i18n.t('screens.proxiwash.paymentMethods')} {i18n.t(item.paymentMethods)} ); } render(): React.Node { return ( {ProxiwashAboutScreen.getCardItem(ProxiwashConstants.washinsa)} {ProxiwashAboutScreen.getCardItem(ProxiwashConstants.tripodeB)} ( )} /> {i18n.t('screens.proxiwash.procedure')} {i18n.t('screens.proxiwash.dryerProcedure')} {i18n.t('screens.proxiwash.tips')} {i18n.t('screens.proxiwash.dryerTips')} ( )} /> {i18n.t('screens.proxiwash.procedure')} {i18n.t('screens.proxiwash.washerProcedure')} {i18n.t('screens.proxiwash.tips')} {i18n.t('screens.proxiwash.washerTips')} ); } }