/** * Sample React Native App * https://github.com/facebook/react-native * * @format * @flow */ import React, { Component } from "react"; import { Platform, StyleSheet, Text, View, Image, TouchableOpacity, ImageBackground, TextInput, Button, StatusBar, Modal, TouchableHighlight, DeviceEventEmitter } from "react-native"; type Props = {}; export default class PersonalInfoDialog extends Component { state = { modalVisible: false, title: "title", placeholder: "", touchcolor: "white", touchtextcolor: "#58A8FA", touch_cancel_color: "white", touch_cancel_textcolor: "#58A8FA", input_text: "", updateType: 0 //1修改昵称,2修改学校名称 }; setModalVisible(visible, type) { this.setState({ modalVisible: visible, updateType: type, input_text: "" }); } setInfo(mytitle, holder) { this.setState({ title: mytitle, placeholder: holder }); } cancel() { let data = { updateNS_show: false }; this.props.updateParentState(data); } touchDown() { this.setState({ touchcolor: "#58A8FA", touchtextcolor: "white" }); } touchUp() { this.setState({ touchcolor: "white", touchtextcolor: "#58A8FA" }); } touchCancelDown() { this.setState({ touch_cancel_color: "#58A8FA", touch_cancel_textcolor: "white" }); } touchCancelUp() { this.setState({ touch_cancel_color: "white", touch_cancel_textcolor: "#58A8FA" }); } setParentState(bool) { let data; if (this.state.updateType == 1) { data = { nickName: this.state.input_text, updateNS_show: bool }; } else if (this.state.updateType == 2) { data = { schoolName: this.state.input_text, updateNS_show: bool }; } this.props.updateParentState(data); } render() { if (this.props.updateNS_show) { return ( {this.state.title} this.setState({ input_text: text })} /> this.touchDown()} onPressOut={() => this.touchUp()} onPress={() => { this.setParentState(false); }} > 确定 this.touchCancelDown()} onPressOut={() => this.touchCancelUp()} onPress={() => this.cancel()} > 取消 ); } else { return null; } } }