2020-09-04 23:50:05 +08:00
|
|
|
/**
|
|
|
|
* Before you edit these, read the documentation on how these files are compiled:
|
2020-09-05 01:32:39 +08:00
|
|
|
* https://docs.phpvms.net/developers/building-assets
|
2020-09-04 23:50:05 +08:00
|
|
|
*
|
|
|
|
* Edits here don't take place until you compile these assets and then upload them.
|
|
|
|
*/
|
2019-08-30 20:08:00 +08:00
|
|
|
|
|
|
|
import request from '../request';
|
|
|
|
|
2019-08-27 00:32:46 +08:00
|
|
|
/**
|
|
|
|
* Lookup an airport from the server
|
2019-08-28 03:08:42 +08:00
|
|
|
*
|
|
|
|
* @param {String} fromICAO
|
|
|
|
* @param {String} toICAO
|
2019-08-27 00:32:46 +08:00
|
|
|
*/
|
2019-08-28 03:08:42 +08:00
|
|
|
export default async (fromICAO, toICAO) => {
|
2019-08-30 20:08:00 +08:00
|
|
|
const params = {
|
|
|
|
method: 'GET',
|
|
|
|
url: `/api/airports/${fromICAO}/distance/${toICAO}`,
|
|
|
|
};
|
2019-08-27 00:32:46 +08:00
|
|
|
|
2019-08-30 20:08:00 +08:00
|
|
|
const response = await request(params);
|
|
|
|
return response.data;
|
2019-08-27 00:32:46 +08:00
|
|
|
};
|