This commit is contained in:
Pau Figueras 2023-02-06 13:04:36 +01:00
pare 5f3cf38575
commit 1f48749b50
S'han modificat 2 arxius amb 59 adicions i 13 eliminacions

Veure arxiu

@ -1,15 +1,26 @@
const headers = { 'X-API-KEY': '', 'Content-type': 'application/json' } const headers = { 'X-API-KEY': '1FvqqqUpoeNgNpxZQxJX6FBDLbwKscx5hgXhZxUb', 'Content-type': 'application/json' }
let location: string = "L'Hospitalet de Llobregat"; let location: string = "L'Hospitalet de Llobregat";
let municipis = await fetch('https://api.meteo.cat/referencia/v1/municipis', { method: 'GET', headers: new Headers(headers), credentials: 'include' }).then( (data) => data.json() ); let municipis = await fetch('https://api.meteo.cat/referencia/v1/municipis', { method: 'GET', headers: new Headers(headers), credentials: 'include' }).then( (data) => data.json() );
export function load(): { location: string, weatherData: Promise<any> } { export function load(): { location: string, weatherData: Promise<any> } {
return { location: location, weatherData: getCityCode( location ) } let objMunicipi = getCityCode( location );
if (objMunicipi === location) {
return { location, weatherData: getWeather(location).then( (data) => data.message ) }
}
let codiMunicipi: string = objMunicipi.codi;
let locFullName: string = objMunicipi.nom;
return { location: locFullName, weatherData: getWeather(codiMunicipi) }
}; };
function changeLocation(newLoc: string) { function changeLocation(newLoc: string): void {
location = newLoc; location = newLoc;
} }
async function fetchApi(url: string) {
let response: Response = await fetch(url, { method: 'GET', headers: new Headers(headers), credentials: 'include' })
return response;
}
export const actions = { export const actions = {
changeLoc: async ({ request }) => { changeLoc: async ({ request }) => {
const data: FormData = await request.formData(); const data: FormData = await request.formData();
@ -17,11 +28,18 @@ export const actions = {
} }
} }
async function getWeather(): Promise<any> { async function getWeather(codiMunicipi: string): Promise<any> {
let response = await fetch('https://api.meteo.cat/referencia/v1/municipis', { method: 'GET', headers: new Headers(headers), credentials: 'include' }) if (codiMunicipi !== '') {
return response.json(); let response = await fetchApi(`https://api.meteo.cat/pronostic/v1/municipal/${codiMunicipi}`)
return response.json();
}
return '';
} }
function getCityCode(locName: string) { function getCityCode(locName: string): object | string {
return municipis.filter( municipi => municipi["nom"].startsWith(location) ) let foundMunicipis: object[] = municipis.filter( municipi => municipi["nom"].toLowerCase().startsWith(locName.toLowerCase()) )
if ( foundMunicipis.length > 0 ) {
return foundMunicipis[0];
}
return locName;
} }

Veure arxiu

@ -8,15 +8,43 @@
function toggleDisplay(): void { function toggleDisplay(): void {
display = (display === 'none') ? 'block' : 'none'; display = (display === 'none') ? 'block' : 'none';
} }
$: variables = data.weatherData.dies[0].variables;
</script> </script>
<div class="box" id="locChange" style="display: {display};"> <div class="box" id="locChange" style="display: {display};">
<form action="?/changeLoc" method="post" use:enhance> <form action="?/changeLoc" method="post" use:enhance>
<p>Change location</p> <p>Change location</p>
<div class="schBox"><input type="text" placeholder="Change location" name='newloc'></div> <div class="schBox"><input type="text" placeholder="Change location" name='newloc'></div>
<button type="button">Change location</button> <button type="submit">Canviar</button>
</form> </form>
</div> </div>
<p>Weather in {data.location}:</p> <button type="button" on:click={toggleDisplay}>Canviar ubicació</button>
<button type="button" on:click={toggleDisplay}>Change location</button> <p>El temps a: {data.location}</p>
<br> <!-- <pre>{ JSON.stringify(data.weatherData) }</pre> -->
<pre>{ JSON.stringify(data.weatherData) }</pre> <table>
<thead>
<tr>
<th>Temperatura màxima</th>
<th>Temperatura mínima</th>
<th>Precipitació</th>
</tr>
</thead>
<tbody>
<tr>
<td>{ variables.tmax.valor }{ variables.tmax.unitat }</td>
<td>{ variables.tmin.valor }{ variables.tmin.unitat }</td>
<td>{ variables.precipitacio.valor }{ variables.precipitacio.unitat }</td>
</tr>
</tbody>
</table>
<style>
table {
border-collapse: collapse;
border: 1px solid black;
}
th, td {
border-collapse: collapse;
border: 1px solid black
}
</style>