| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269 |
- /**
- * 车辆列表V2
- * @邠心vbe on 2024/01/30
- */
- import React, { Component } from 'react';
- import { View, Text, Image, StyleSheet, Pressable, FlatList, RefreshControl } from 'react-native';
- import apiUser from '../../api/apiUser';
- import Button, { ElevationObject } from '../../components/Button';
- import Dialog from '../../components/Dialog';
- import TextView from '../../components/TextView';
- import { PageList } from '../Router';
- import { MyRefreshProps } from '../../components/ThemesConfig';
- import utils from '../../utils/utils';
- export default class VehicleListV2 extends Component {
- constructor(props) {
- super(props);
- this.state = {
- vehicleList: [],
- refreshing: false
- };
- }
- componentDidMount() {
- //this.getVehicleList();
- this.props.navigation.addListener('focus', () => {
- this.getVehicleList();
- })
- }
- onRefresh() {
- this.setState({
- refreshing: true
- })
- this.getVehicleList();
- }
- getVehicleList() {
- apiUser.getVehicles().then(res => {
- if (res.data) {
- this.setState({
- vehicleList: res.data,
- refreshing: false
- });
- if (this.props.onResult) {
- this.props.onResult(res.data.length)
- }
- }
- }).catch(err => {
- this.setState({
- vehicleList: [],
- refreshing: false
- });
- if (this.props.onResult) {
- this.props.onResult(0)
- }
- });
- }
- removeVehicle(id) {
- Dialog.showDialog({
- title: $t('profile.removeVehicle'),
- message: $t('profile.tipRemoveVehicle'),
- callback: btn => {
- if (btn == 'ok') {
- Dialog.dismissLoading();
- this.deleteVehicle(id);
- }
- }
- })
- }
- deleteVehicle(id) {
- Dialog.showProgressDialog();
- apiUser.deleteVehicle({
- vehiclePk: id
- }).then(res => {
- Dialog.dismissLoading();
- toastShort($t('common.deleteSuccess'));
- this.getVehicleList();
- }).catch(err => {
- Dialog.dismissLoading();
- toastShort(err);
- });
- }
- showTypeCapacity(item) {
- let str = "";
- if (item.connectorType) {
- str += item.connectorType;
- }
- if (item.batteryCapacity) {
- if (str) {
- str += ", ";
- }
- str += item.batteryCapacity + "KWH";
- }
- return str;
- }
- listItem = ({item, index, separators}) => {
- return (
- <Pressable
- style={styles.vehicleView}
- android_ripple={ripple}
- onPress={() => {
- startPage(PageList.editVehicleV2, {id: item.vehiclePk});
- }}
- onLongPress={() => {
- this.removeVehicle(item.vehiclePk)
- }}>
- <View style={styles.vehicleRow}>
- <TextView style={styles.vehicleName}>{item.brand} {item.model}</TextView>
- </View>
- <TextView style={styles.vehicleModle}>{item.licensePlate}</TextView>
- <View style={styles.vehicleRow}>
- <TextView style={styles.vehicleType}>{this.showTypeCapacity(item)}</TextView>
- {/* <View style={styles.vehicleTypeRow}>
- <View style={styles.vehicleTypeIcon}>
- <VehicleType size={10}/>
- </View>
-
- </View> */}
- </View>
- {/* <Pressable
- style={styles.closeIcon}
- android_ripple={rippleLess}
- onPress={() => this.removeVehicle(item.vehiclePk)}>
- <MaterialCommunityIcons
- name="close"
- size={20}
- color={textCancel}
- />
- </Pressable> */}
- { utils.isNotEmpty(item.vehiclePhoto) &&
- <Image
- resizeMode="contain"
- style={styles.vehicleViewBg}
- source={{uri: utils.getImageUrl(item.vehiclePhoto)}}/>
- }
- </Pressable>
- )
- }
- listHeader = () => {
- return (
- <View style={$padding(8, 16)}>
- <TextView style={styles.titleText}>{$t('profile.titleVehicles')}</TextView>
- <Button
- style={styles.addButton}
- onClick={() => startPage(PageList.addVehicleV2)}>
- <MaterialIcons
- name="add-circle"
- size={18}
- color={colorPrimary}
- />
- <TextView style={styles.addBtnText}>{$t('profile.btnAdd')}</TextView>
- </Button>
- </View>
- )
- }
- render() {
- return (
- <FlatList
- style={ui.flex1}
- data={this.state.vehicleList}
- contentContainerStyle={$padding(8, 0)}
- renderItem={this.listItem}
- keyExtractor={item => item?.vehiclePk}
- //onEndReached={() => this.getVehicleListPage()}
- refreshControl={
- <RefreshControl
- {...MyRefreshProps()}
- refreshing={this.state.refreshing}
- onRefresh={() => this.onRefresh()}
- />
- }
- ListHeaderComponent={this.listHeader}
- ListEmptyComponent={<Text style={ui.noData}>{$t('profile.noVehicles')}</Text>}
- />
- );
- }
- }
- const styles = StyleSheet.create({
- titleText: {
- fontSize: 14,
- color: textPrimary,
- fontWeight: 'bold'
- },
- vehicleView: {
- borderWidth: 1,
- borderRadius: 4,
- borderStyle: 'solid',
- borderColor: '#EAEAEA',
- overflow: 'hidden',
- //...ElevationObject(5),
- ...$margin(8, 16),
- ...$padding(12, 16, 12),
- backgroundColor: colorLight
- },
- vehicleViewBg: {
- top: 16,
- right: 16,
- width: 40,
- height: 40,
- position: 'absolute'
- },
- vehicleRow: {
- alignItems: 'center',
- flexDirection: 'row',
- },
- vehicleIcon: {
- width: 32,
- height: 32,
- },
- vehicleName: {
- color: textDark,
- fontSize: 14,
- fontWeight: 'bold'
- },
- vehicleModle: {
- color: textPrimary,
- fontSize: 14,
- paddingTop: 4,
- paddingBottom: 4
- },
- vehicleTypeRow: {
- height: 20,
- marginLeft: 44,
- borderRadius: 4,
- overflow: 'hidden',
- alignItems: 'center',
- flexDirection: 'row',
- backgroundColor: '#E5EFDE'
- },
- vehicleTypeIcon: {
- width: 20,
- height: 20,
- alignItems: 'center',
- justifyContent: 'center',
- backgroundColor: colorAccent
- },
- vehicleType: {
- color: colorAccent,
- fontSize: 14
- },
- closeIcon: {
- top: 0,
- right: 0,
- padding: 12,
- position: 'absolute'
- },
- addButton: {
- marginTop: 16,
- borderWidth: 1,
- borderRadius: 4,
- borderStyle: 'solid',
- borderColor: colorPrimary,
- backgroundColor: 'transparent'
- },
- addBtnText: {
- fontSize: 15,
- color: colorPrimary,
- fontWeight: 'bold',
- paddingLeft: 8
- }
- });
|