move some parts to services and introduce the backend communication for the airports
Šī revīzija ir iekļauta:
@@ -1,7 +1,7 @@
|
||||
import React, { useEffect } from 'react';
|
||||
import { Button } from 'primereact/button';
|
||||
import { Card } from 'primereact/card';
|
||||
import { Configuration } from './configuration';
|
||||
import { Configuration } from '../services';
|
||||
|
||||
export const Login: React.FC = () => {
|
||||
// reset every old token
|
||||
|
||||
15
src/services/airport.ts
Parasts fails
15
src/services/airport.ts
Parasts fails
@@ -0,0 +1,15 @@
|
||||
import axios from 'axios';
|
||||
import { Configuration } from './configuration';
|
||||
import { AirportOverview } from '../types';
|
||||
|
||||
export class Airport {
|
||||
static async all(): Promise<AirportOverview[]> {
|
||||
return axios
|
||||
.get<AirportOverview[]>(`${Configuration.resourceServer}/airport/all`, {
|
||||
headers: {
|
||||
Authorization: `Bearer ${sessionStorage.getItem('token')}`,
|
||||
},
|
||||
})
|
||||
.then((response) => response.data);
|
||||
}
|
||||
}
|
||||
4
src/services/index.ts
Parasts fails
4
src/services/index.ts
Parasts fails
@@ -0,0 +1,4 @@
|
||||
import { Airport } from "./airport";
|
||||
import { Configuration } from "./configuration";
|
||||
|
||||
export { Airport, Configuration };
|
||||
Atsaukties uz šo jaunā problēmā
Block a user