123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290 |
- import React, { useState } from 'react'
- import { Text, View, StyleSheet, FlatList, TouchableOpacity, Button, ScrollView } from 'react-native'
- import SelectBox from 'react-native-multi-selectbox'
- import { xorBy } from 'lodash'
- import firebase from 'firebase'
- import { firebaseConfig } from '../../config/firebaseConfig'
-
- //Flag to indicate an IRL appointment.
- var mapflag = false
-
- if (firebase.apps.length === 0) {
- firebase.initializeApp(firebaseConfig)
- }
-
- require('firebase/firestore')
- // Options data must contain 'item' & 'id' keys
-
- const Tags = [
- {
- item: 'Presencial',
- id: 'PL',
- },
- {
- item: 'Online',
- id: 'ON',
- },
- {
- item: 'Individual',
- id: 'IL',
- },
- {
- item: 'Grupal',
- id: 'GL',
- },
- {
- item: 'Esp',
- id: 'ESP',
- },
- {
- item: 'Ing',
- id: 'ING',
- }
-
- ]
-
-
- const Days = [
- {
- item: 'Lunes',
- id: 'L',
- },
- {
- item: 'Martes',
- id: 'M',
- },
- {
- item: 'Miercoles',
- id: 'W',
- },
- {
- item: 'Jueves',
- id: 'J',
- },
- {
- item: 'Viernes',
- id: 'V',
- },
- {
- item: 'Sabado',
- id: 'S',
- },
- {
- item: 'Domingo',
- id: 'D',
- },
- {
- item: 'Feriados',
- id: 'F',
- }
- ]
-
-
-
- function Search({route, navigation }) {
-
- const u_token = route.params.U_Token;
- const username = route.params.Username;
- console.log("U__token: ", u_token)
-
- const [users, setUsers] = useState([])
- const [selectedTags, setSelectedTags] = useState([])
- const [selectedDays, setSelectedDays] = useState([])
-
-
- const fetchUsers = (tags, days) => {
-
- //if the array that have the interpreter tags
- //and the day tags are empty we dont send the query seeing as the user
- //is not searching for anything yet
- if (tags.length === 0 && days.length === 0) {
- return
- }
-
- //reset the users usestate to empty
- const users = []
-
-
- const db = firebase.firestore()
- var query = db.collection('Interprete')
-
- for (let i = 0; i < tags.length; i++) {
-
- //Reset Flag.
- mapflag = false
-
- //check which tags where called in the search
- if (tags[i].id === 'PL') {
- console.log('Presencial')
- query = query.where('Modalidad.Presencial', '==', true)
- mapflag = true
- }
- if (tags[i].id == 'ON') {
- query = query.where('Modalidad.Online', '==', true)
- }
- if (tags[i].id == 'IL') {
- query = query.where('Cantidad.Individual', '==', true)
- }
- if (tags[i].id == 'GL') {
- query = query.where('Cantidad.Grupal', '==', true)
- }
- if (tags[i].id == 'ESP') {
- query = query.where('Lenguaje.Esp', '==', true)
- }
- if (tags[i].id == 'ING') {
- query = query.where('Lenguaje.Ing', '==', true)
- }
- }
- for(let i = 0; i < days.length; i++) {
- if (days[i].id === 'L') {
- query = query.where('dias.Lunes', '==', true)
- }
- if (days[i].id === 'M') {
- query = query.where('dias.Martes', '==', true)
- }
- if (days[i].id === 'W') {
- query = query.where('dias.Miercoles', '==', true)
- }
- if (days[i].id === 'J') {
- query = query.where('dias.Jueves', '==', true)
- }
- if (days[i].id === 'V') {
- query = query.where('dias.Viernes', '==', true)
- }
- if (days[i].id === 'S') {
- query = query.where('dias.Sabado', '==', true)
- }
- if (days[i].id === 'D') {
- query = query.where('dias.Domingo', '==', true)
- }
- if (days[i].id === 'F') {
- query = query.where('dias.Feriados', '==', true)
- }
- }
- query.get().then(querySnapshot => {
- console.log('Total users: ', querySnapshot.size);
- //traverse the query snapshot
- //add the user to the users array
- querySnapshot.forEach(documentSnapshot => {
- //save the user id and the user data
- const user = {
- id: documentSnapshot.id,
- data: documentSnapshot.data()
- }
- users.push(user)
- setUsers(users)
-
- });
- });
- console.log('These are the users after the query is executed: ', users)
-
- }
-
-
- return (
- <ScrollView>
- <View style={{ margin: 30 }}>
- <View style={{ width: '100%', alignItems: 'center' }}>
- <Text style={{ fontSize: 30, paddingBottom: 20 }}>Busqueda</Text>
- </View>
- <Text style={{ fontSize: 20, paddingBottom: 10 }}>Filtro de Interpretes</Text>
- <SelectBox
- arrowIconColor='#E4CD05'
- toggleIconColor='#E4CD05'
- searchIconColor='#E4CD05'
- multiOptionContainerStyle = {{
- backgroundColor: '#E4CD05',
- borderColor: '#E4CD05',
- borderWidth: 1,
- borderRadius: 5,
- marginBottom: 10,
- marginTop: 10,
- padding: 10,
- }}
- multiOptionsLabelStyle = {{
- color: '#000000',
- fontSize: 20,
- }}
- label="Select multiple"
- options={Tags}
- selectedValues={selectedTags}
- onMultiSelect={onMultiChange()}
- onTapClose={onMultiChange()}
- isMulti
- />
- <Text style={{ fontSize: 20, paddingBottom: 10 }}>Dias Disponibles</Text>
- <SelectBox
- arrowIconColor='#E4CD05'
- toggleIconColor='#E4CD05'
- searchIconColor='#E4CD05'
- multiOptionContainerStyle = {{
- backgroundColor: '#E4CD05',
- borderColor: '#E4CD05',
- borderWidth: 1,
- borderRadius: 5,
- marginBottom: 10,
- marginTop: 10,
- padding: 10,
- }}
- multiOptionsLabelStyle = {{
- color: '#000000',
- fontSize: 20,
- }}
- label="Select multiple"
- options={Days}
- selectedValues={selectedDays}
- onMultiSelect={(item) => setSelectedDays(xorBy(selectedDays, [item], 'id'))}
- onTapClose={(item) => setSelectedDays(xorBy(selectedDays, [item], 'id'))}
- isMulti
- />
-
- {/* button that will fetch the users */}
- <Button title='Buscar' onPress={() => fetchUsers(selectedTags, selectedDays)}/>
-
-
- <FlatList
- numColumns={1}
- horizontal={false}
- data={users}
-
- renderItem={({ item, }) => {
- return (
- <View>
- <View style={{ flexDirection: "row", paddingBottom: 20, paddingTop: 20, justifyContent: "space-between" }}>
- <Text>{item.data.username}</Text>
- <Text>{item.data.Precio}</Text>
- <Button title='Buscar' onPress={() => { dothing(item.id, item.data.push_token, u_token, item.data.username) }}/>
- </View>
- <View style={{ borderBottomColor: 'black', borderBottomWidth: 1 }} />
- </View>
- )
- }}
- />
-
- </View>
- </ScrollView>
- );
-
- function onMultiChange() {
- return (item) => setSelectedTags(xorBy(selectedTags, [item], 'id'))
- }
-
- function dothing(item, i_token, u_token, I_username) {
- console.log('This is the item id: ', item, "With i_token: ", i_token, " u_token : ", u_token)
- navigation.navigate('Calendar', {Intereprete_id: item, Flag: mapflag, I_Token: i_token, U_Token: u_token, Username: username, I_Username: I_username})
- }
-
- }
-
- const styles = StyleSheet.create({
-
- button: {
- alignItems: "center",
- backgroundColor: 'transparent'
- },
- });
-
-
-
-
- export default Search
|