-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsolicitudTransporte.js
201 lines (177 loc) · 6.43 KB
/
solicitudTransporte.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
// Función principal para gestionar la solicitud de transporte
export default async function solicitudTransporte() {
try {
const elementos = obtenerElementosDOM();
validarDatos(elementos);
const preferencias = obtenerPreferencias();
const distancia = await obtenerDistancia(elementos.origen, elementos.destino);
const precioEstimado = calcularPrecioEstimado(distancia, elementos.tipoVehiculo, elementos.tipoServicio);
actualizarPrecioEstimado(precioEstimado);
await enviarSolicitudViaje({
...elementos,
precio: precioEstimado,
preferencias
});
mostrarConfirmacion();
} catch (error) {
mostrarError(error.message);
console.error(error);
}
}
// Obtener elementos del DOM
function obtenerElementosDOM() {
return {
origen: document.getElementById("origen").value,
destino: document.getElementById("destino").value,
fechaViaje: document.getElementById("fechaViaje").value,
horaViaje: document.getElementById("horaViaje").value,
pasajeros: parseInt(document.getElementById("pasajeros").value),
tipoServicio: document.getElementById("tipoServicio").value,
tipoVehiculo: document.getElementById("tipoVehiculo").value,
precioEstimado: document.getElementById("precioEstimado")
};
}
// Validar datos del formulario
function validarDatos({ origen, destino, fechaViaje, horaViaje, pasajeros, tipoServicio, tipoVehiculo }) {
if (!origen || !destino) {
throw new Error("Debe ingresar un origen y destino válidos.");
}
if (!fechaViaje) {
throw new Error("Debe ingresar una fecha de viaje válida.");
}
if (!horaViaje) {
throw new Error("Debe ingresar una hora de viaje válida.");
}
if (isNaN(pasajeros) || pasajeros <= 0) {
throw new Error("Debe ingresar el número de pasajeros válido.");
}
if (tipoServicio === "Seleccione un servicio") {
throw new Error("Debe elegir un servicio válido.");
}
if (tipoVehiculo === "Seleccione un vehículo") {
throw new Error("Debe seleccionar un tipo de vehículo válido.");
}
}
// Obtener preferencias adicionales
function obtenerPreferencias() {
return {
asientosBebes: document.getElementById("asientosBebes")?.checked || false,
asistenciaEquipaje: document.getElementById("asistenciaEquipaje")?.checked || false,
informacionAdicional: document.getElementById("informacionAdicional")?.value || ""
};
}
// Actualizar el precio estimado en la UI
function actualizarPrecioEstimado(precio) {
const precioEstimado = document.getElementById("precioEstimado");
precioEstimado.textContent = `Precio estimado: $${precio}`;
}
// Mostrar mensaje de confirmación
function mostrarConfirmacion() {
alert("Su solicitud de viaje ha sido enviada. Un representante se pondrá en contacto con usted en breve.");
}
// Mostrar errores en la UI
function mostrarError(mensaje) {
alert(mensaje);
}
async function obtenerDistancia(origen, destino) {
const apiKey = 'YOUR_GOOGLE_MAPS_API_KEY'; // Reemplaza con tu clave API de Google Maps
// Función para obtener las coordenadas (latitud y longitud) de una ubicación
async function obtenerCoordenadas(ubicacion) {
const url = `https://maps.googleapis.com/maps/api/geocode/json?address=${encodeURIComponent(ubicacion)}&key=${apiKey}`;
const response = await fetch(url);
const data = await response.json();
if (data.status === 'OK') {
const { lat, lng } = data.results[0].geometry.location;
return { lat, lng };
} else {
throw new Error(`Error al obtener coordenadas para ${ubicacion}: ${data.status}`);
}
}
// Función para calcular la distancia entre dos puntos en la Tierra
function calcularDistancia(lat1, lon1, lat2, lon2) {
const R = 6371; // Radio de la Tierra en kilómetros
const dLat = (lat2 - lat1) * Math.PI / 180;
const dLon = (lon2 - lon1) * Math.PI / 180;
const a =
0.5 - Math.cos(dLat) / 2 +
Math.cos(lat1 * Math.PI / 180) * Math.cos(lat2 * Math.PI / 180) *
(1 - Math.cos(dLon)) / 2;
return R * 2 * Math.asin(Math.sqrt(a));
}
try {
const [coordenadasOrigen, coordenadasDestino] = await Promise.all([
obtenerCoordenadas(origen),
obtenerCoordenadas(destino)
]);
const distancia = calcularDistancia(
coordenadasOrigen.lat, coordenadasOrigen.lng,
coordenadasDestino.lat, coordenadasDestino.lng
);
return distancia;
} catch (error) {
console.error(error);
throw new Error('No se pudo calcular la distancia');
}
}
// Ejemplo de uso la función `obtenerDistancia`
/**
obtenerDistancia('Nueva York, NY', 'Los Ángeles, CA')
.then(distancia => {
console.log(`La distancia es de ${distancia.toFixed(2)} km`);
})
.catch(error => {
console.error('Error:', error);
});
*/
// Calcular el precio estimado
function calcularPrecioEstimado(distancia, tipoVehiculo, tipoServicio) {
const tarifaBase = 10;
let tarifaPorKm;
switch (tipoVehiculo) {
case "Mototaxi":
tarifaPorKm = 1.5;
break;
case "Sedan":
tarifaPorKm = 2.5;
break;
case "SUV":
tarifaPorKm = 2;
break;
case "Minivan":
tarifaPorKm = 2.5;
break;
case "Autobús":
tarifaPorKm = 3.5;
break;
case "Chivero":
tarifaPorKm = 3.5;
break;
default:
tarifaPorKm = 1.5;
break;
}
let costoTipoServicio = 0;
if (tipoServicio === "Premium") {
costoTipoServicio = 5;
}
return tarifaBase + (tarifaPorKm * distancia) + costoTipoServicio;
}
// Enviar solicitud de viaje al servidor (simulado)
async function enviarSolicitudViaje({ origen, destino, fechaViaje, horaViaje, pasajeros, tipoServicio, tipoVehiculo, precio, preferencias }) {
console.log("Solicitud de viaje enviada:", {
origen,
destino,
fechaViaje,
horaViaje,
pasajeros,
tipoServicio,
tipoVehiculo,
precio,
preferencias
});
return new Promise((resolve) => {
setTimeout(() => {
resolve();
}, 1000);
});
}