123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461 |
- import { StatusBar } from 'expo-status-bar';
- import React, {useState, useEffect} from 'react';
- import { View, Image, StyleSheet, Text, Button, ScrollView, Pressable} from 'react-native';
- import DropDownPicker from 'react-native-dropdown-picker';
- import { parse } from 'json2csv';
-
- //import JSON;
- //import { Dataframe, readJSON } from "danfojs";
-
- //where data will be put
- var organizedData
-
- //where data will be stored
- var information = "data goes here"
-
- //organize data make it pretty
-
- //add loading thing while this organizes all the data !!!
-
- function organize(){
-
- var stringDiv = JSON.parse(information)
- var csv = parse(stringDiv)
- console.log(csv)
-
- //var csv is the variable with the thing you just pulled
- //put function and data cleaning here
- //just make sure you change the return value in 'getInfo()'
- //so it returns the actual organized table
- //or make getInfo() organize the table as well
- //and return that organized table
- //i leave this to you
-
- }
-
- //fix
-
- DropDownPicker.setListMode("SCROLLVIEW")
-
- //data query variables (global)
-
- const queryBase = "https://api.census.gov/data/2020/acs/acs5/profile?get=group"
- const queryEnd = "&in=state:72"
- var table = ""
- var pueblo = ""
-
-
- function updateTable(value){
- table = value
- }
-
- function updatePueblo(value){
- pueblo = value
- }
-
- //calls data query
- function loadDoc(query) {
- var xhttp = new XMLHttpRequest();
- xhttp.onreadystatechange = function() {
- if (this.readyState == 4 && this.status == 200) {
- information = this.responseText;
- organize()
- }
- };
- xhttp.open("GET", query, true);
- xhttp.send();
-
- }
-
-
- //"https://api.census.gov/data/2020/acs/acs5/profile?get=group(DP02PR)&for=county:127&in=state:72"
-
-
-
- function fetchData() {
-
- console.log("fetching data")
-
- var query = queryBase + "(" + table + ")&for=county:" + pueblo + queryEnd
-
- if(pueblo && table)
- {loadDoc(query)}
- else
- {Alert.alert("Please fill every parameter before calling!")}
-
- }
-
- //change this to an external css file later
- const styles = StyleSheet.create({
-
- buttons: {
- flexDirection: 'row',
- justifyContent: 'center',
- marginTop: 40,
- marginBottom: 30,
- margin: 30,
- borderColor: "grey",
- borderRadius: 8,
- padding: (30, 16),
- backgroundColor: "#008CBA",
- marginTop: 0
- },
- buttonContainer: {
- flexDirection: 'column',
- backgroundColor: 'black',
- alignItems: 'center',
- justifyContent: 'center',
- paddingTop:100,
- marginTop: 20,
- },
- container: {
- flexDirection: 'column',
- justifyContent: 'center',
- backgroundColor: 'black',
- alignItems: 'center',
- justifyContent: 'center',
- paddingTop:20,
- marginTop: 20,
- },
- containerbackground:{
-
- backgroundColor: '#063970'
- },
- intro: {
- fontWeight: "bold",
- color:"#beb2c8",
- fontSize: 30,
- },
-
- sub: {
- color:"#beb2c8",
- fontWeight: "bold",
- fontSize: 15,
- paddingBottom:10,
- },
-
- Navsub: {
- color:"#beb2c8",
- fontWeight: "bold",
- fontSize: 30,
- paddingBottom:10,
- },
- scrollView:{
- marginHorizontal: 20
- },
- listItem:{
- fontSize: 30,
- color: "white",
- textDecorationLines: "underline"
- },
- listButtons:{
- fontSize: 15,
- color: "white",
- textDecorationLines: "underline"
- },
- buttonsVer: {
- flexDirection: 'column',
- justifyContent: 'center',
- marginTop: 40,
- marginBottom: 30,
- margin: 30,
- borderColor: "grey",
- }
- });
-
-
- //default button press
-
- const handlePress = () => false
-
-
- //data parsing goes here
- function getInfo(){
- //console.log(information[6])
- return information
- }
-
- //data display
-
- class DataButton extends React.Component{
-
- state = {
- click: false
- }
-
- pullData = () => {fetchData(); this.setState({click: true})}
-
-
- render() {
- return(
- <View>
- <Button
- onPress = {this.pullData}
- title = "Fetch Data"
- color = "black"
- />
- <Text style={styles.sub}>{getInfo()}</Text>
- </View>
- );}
- }
-
-
- //picker test
-
- function Picker() {
-
- //table to pick from
-
-
- const [openTable, setOpenTable] = useState(false);
- const [valueTable, setValueTable] = useState(null);
- const [table, setTable] = useState([
- {label:'DP02PR', value: 'DP02PR'},
- {label:'DP03', value: 'DP03'},
- {label:'DP04', value: 'DP04'},
- {label:'DP05', value: 'DP05'},
- ]);
-
- //cambiar pueblo
-
-
- //pueblo
- const [openPueblo, setOpenPueblo] = useState(false);
- const [valuePueblo, setValuePueblo] = useState(null);
- const [pueblo, setPueblo] = useState([
- {label: 'Adjuntas', value: '001'},
- {label: 'Aguada', value: '003'},
- {label: 'Aguadillas', value: '005'},
- {label: 'Aguas Buenas', value: '007'},
- {label: 'Aibonito', value: '009'},
- {label: 'Añasco', value: '011'},
- {label: 'Arecibo', value: '013'},
- {label: 'Arroyo', value: '015'},
- {label: 'Barceloneta', value: '017'},
- {label: 'Barranquitas', value: '019'},
- {label: 'Bayamón', value: '021'},
- {label: 'Cabo Rojo', value: '023'},
- {label: 'Caguas', value: '025'},
- {label: 'Camuy', value: '027'},
- {label: 'Canóvanas', value: '029'},
- {label: 'Carolina', value: '031'},
- {label: 'Cataño', value: '033'},
- {label: 'Cayey', value: '035'},
- {label: 'Ceiba', value: '037'},
- {label: 'Ciales', value: '039'},
- {label: 'Cidra', value: '041'},
- {label: 'Coamo', value: '043'},
- {label: 'Comerío', value: '045'},
- {label: 'Corozal', value: '047'},
- {label: 'Culebra', value: '049'},
- {label: 'Dorado', value: '051'},
- {label: 'Fajardo', value: '053'},
- {label: 'Florida', value: '054'},
- {label: 'Guánica', value: '055'},
- {label: 'Guayama', value: '057'},
- {label: 'Guayanilla', value: '059'},
- {label: 'Guaynabo', value: '061'},
- {label: 'Gurabo', value: '063'},
- {label: 'Hatillo', value: '065'},
- {label: 'Hormigueros', value: '067'},
- {label: 'Humacao', value: '069'},
- {label: 'Isabela', value: '071'},
- {label: 'Jayuya', value: '073'},
- {label: 'Juana Díaz', value: '075'},
- {label: 'Juncos', value: '077'},
- {label: 'Lajas', value: '079'},
- {label: 'Lares', value: '081'},
- {label: 'Las Marías', value: '083'},
- {label: 'Las Piedras', value: '085'},
- {label: 'Loíza', value: '087'},
- {label: 'Luquillo', value: '089'},
- {label: 'Manatí', value: '091'},
- {label: 'Maricao', value: '093'},
- {label: 'Maunabo', value: '095'},
- {label: 'Mayagüez', value: '097'},
- {label: 'Moca', value: '099'},
- {label: 'Morovis', value: '101'},
- {label: 'Naguabo', value: '103'},
- {label: 'Naranjito', value: '105'},
- {label: 'Orocovis', value: '107'},
- {label: 'Patillas', value: '109'},
- {label: 'Peñuelas', value: '111'},
- {label: 'Ponce', value: '113'},
- {label: 'Quebradillas', value: '115'},
- {label: 'Rincón', value: '117'},
- {label: 'Río Grande', value: '119'},
- {label: 'Sabana Grande', value: '121'},
- {label: 'Salinas', value: '123'},
- {label: 'San Germán', value: '125'},
- {label: 'San Juan', value: '127'},
- {label: 'San Lorenzo', value: '129'},
- {label: 'San Sebastián', value: '131'},
- {label: 'Santa Isabel', value: '133'},
- {label: 'Toa Alta', value: '135'},
- {label: 'Toa Baja', value: '137'},
- {label: 'Trujillo Alto', value: '139'},
- {label: 'Utuado', value: '141'},
- {label: 'Vega Alta', value: '143'},
- {label: 'Vega Baja', value: '145'},
- {label: 'Vieques', value: '147'},
- {label: 'Villalba', value: '149'},
- {label: 'Yabucoa', value: '151'},
- {label: 'Yauco', value: '153'}
- ]);
-
-
- return (
- <View>
- <DropDownPicker
- open={openTable}
- value={valueTable}
- items={table}
- setOpen={setOpenTable}
- setValue={setValueTable}
- setItems={setTable}
- onChangeValue = {(valueTable) => {
- updateTable(valueTable);
- }}
- onOpen = {() => {setOpenPueblo(false)}}
- zIndex={3000}
- zIndexInverse={1000}
- placeholder="Tabla de Datos"
- />
-
- <DropDownPicker
- searchable={true}
- open={openPueblo}
- value={valuePueblo}
- items={pueblo}
- setOpen={setOpenPueblo}
- setValue={setValuePueblo}
- setItems={setPueblo}
- onChangeValue = {(valuePueblo) => {
- updatePueblo(valuePueblo);
- }}
- onOpen = {() => {setOpenTable(false)}}
- zIndex={1000}
- zIndexInverse={3000}
- placeholder="Pueblo"
- searchPlaceholder="Busqueda..."
- />
-
- </View>
- );
- }
-
-
-
- //actual application
-
- class App extends React.Component {
-
- //the text at the end of a page gets cut off if anyone knows how to fix that?
- vars = {
- welcome:
-
-
- <View style = {styles.containerbackground}>
- <ScrollView style={styles.scrollView}>
- <View style = {styles.container}>
-
-
- <Text style={styles.intro}>BIENVENIDO!!!!</Text>
-
- <Image source={require('./Logo.jpeg')} />
- </View>
- <View style = {styles.container}>
- <Text style={styles.sub}>Aqui podra mantenerse al tanto con las
- ultimas noticias relacionadas al censo y tambien verificar
- las tablas por municipio.</Text>
- </View>
- </ScrollView>
- </View>,
-
- newsView:
- <View style = {styles.containerbackground}>
- <ScrollView style={styles.scrollView}>
- <View style = {styles.container}>
-
- <Text style={styles.intro}>Noticias</Text>
-
- <Image source={require('./Logo.jpeg')} />
-
-
-
-
- </View>
- </ScrollView></View>,
-
- dataOp:
- <View style = {styles.containerbackground}>
- <ScrollView nestedScrollEnabled = {true} style={styles.scrollView}>
- <View style = {styles.container}>
-
-
- <Text style={styles.intro}>DATA VIEWING PROJECT</Text>
-
- <Picker />
-
- <Image source={require('./testimg.gif')} />
-
- <DataButton />
-
- <Text style={styles.sub}>blehhhhhh bleh bleh bleh bleh bleh blehhhhhhhhhhhhhhhhh </Text>
-
- </View>
- </ScrollView></View>
-
-
-
-
- }
- //current state
- state = {current: this.vars.welcome}
-
- //state changing functions
- setHome = () => this.setState({ current: this.vars.welcome })
-
-
- setData = () => this.setState({current: this.vars.dataOp})
-
-
- setNews = () => this.setState({ current: this.vars.newsView })
-
-
-
- //render app
- render() {
- return (
- <View>
-
- <View style = {styles.containerbackground}>
- <View style = {styles.buttonContainer}>
- <Text style={styles.Navsub}> Demographic Data Viewer</Text>
- <Text style={styles.sub}> Navegador</Text>
- <View style = {styles.buttons}>
-
- <Button
- onPress = {this.setNews}
- title = "Noticias"
- color = "rgba(255, 0, 0, 0)"
- />
-
- <Button
- onPress = {this.setData}
- title = "Datos"
- color = "rgba(255, 0, 0, 0)"
- />
- </View>
-
-
- {this.state.current}
- </View>
- </View>
- </View>
- );
- }
- }
-
-
- export default App
|