Files
sample-full-skies/src/views/celestials/Celestials.vue
2021-03-05 16:05:45 +01:00

93 lines
1.8 KiB
Vue

<template>
<section class="celestials">
<header>
<h1 class="heading-1">Le système solaire</h1>
</header>
<div class="section-content">
<celestials-list :celestials="celestials" />
</div>
</section>
</template>
<script lang="ts">
import { defineComponent } from "vue";
import CelestialsList from "@/components/celestials/CelestialsList.vue";
// API
import axios from "axios";
// Global methods
import { addCelestialType } from "@/plugins/methods";
export default defineComponent({
name: "Celestials",
components: {
CelestialsList
},
// Initial state
data() {
return {
celestials: Array<any>()
};
},
async mounted() {
// Fetches from API...
this.fetchBodies().then(res => {
// ...and add type
this.celestials = this.addType(res);
});
console.log(this.$options);
},
methods: {
/**
* Fetches celestial bodies from API
*/
fetchBodies(): Promise<any> {
return axios
.get("https://api.le-systeme-solaire.net/rest/bodies/")
.then(res => {
return res.data.bodies;
})
.catch(err => {
console.log(err);
return [];
});
},
/**
* Assign a type from the celestial object provided
*/
addType(bodies: Array<any>): Array<any> {
return bodies.map((e: any) => addCelestialType(e));
}
}
});
</script>
<style lang="scss" scoped>
.celestials {
position: relative;
min-height: 100%;
padding: 25px 10%;
&:after {
display: block;
content: "";
position: absolute;
top: 0;
bottom: 0;
left: 0;
width: 100%;
background-image: url("/celestials_bg-min.jpg");
background-size: cover;
background-attachment: fixed;
z-index: -1;
opacity: 33%;
pointer-events: none;
}
}
</style>