* Moved nuxt app to main app

This commit is contained in:
Alexis
2021-03-29 11:17:51 +02:00
parent e819e00822
commit d31a9aad7b
113 changed files with 10463 additions and 26133 deletions

View File

@@ -0,0 +1,164 @@
<template>
<div class="celestial-card">
<div class="card-wrapper">
<celestial-card-icon :type="celestial.type" />
<div class="card-header">
<h3 class="heading-3">
{{ celestial.name }}
</h3>
<p>
Type :
<span class="txt-capitalize">{{ celestial.type }}</span>
</p>
</div>
<div class="card-info">
<nuxt-link
:to="`/astres/${celestial.id}`"
class="no-style"
>
<span class="material-icons-round">info</span>
</nuxt-link>
</div>
<div class="card-content">
<div v-if="celestial.aroundPlanet">
<p>
Orbite autour de
<nuxt-link
:to="`/astres/${celestial.aroundPlanet.planet}`"
class="txt-capitalize"
>
{{ celestial.aroundPlanet.planet }}
</nuxt-link>
</p>
</div>
<div v-if="celestial.gravity">
<p>Facteur Gravité : {{ celestial.gravity }}</p>
</div>
<div v-if="celestial.density">
<p>Facteur Densité : {{ celestial.density }}</p>
</div>
</div>
<div v-if="celestial.discoveredBy" class="card-footer">
<p>
<i>
Ce corps céleste a été découvert par
{{ celestial.discoveredBy }} le {{ celestial.discoveryDate }}
</i>
</p>
</div>
<div class="card-actions">
<button
class="favourite no-style"
:class="isFav ? 'active' : ''"
@click="toggleFav()"
>
<span class="icon material-icons-round">favorite</span>
</button>
</div>
</div>
</div>
</template>
<script>
import { v4 as uuidv4 } from 'uuid'
import CelestialCardIcon from './CelestialCardIcon.vue'
export default {
name: 'CelestialCard',
components: { CelestialCardIcon },
props: {
celestial: {
type: Object,
default: () => { return {} }
}
},
computed: {
isFav () {
return this.$store.getters.isFav(this.celestial.id)
}
},
methods: {
toggleFav () {
if (!this.isFav) {
this.$store.dispatch('toasts/pushToast', {
id: uuidv4(),
title: 'Favori ajouté',
message: `${this.celestial.name} a été ajouté à la liste des favoris.`,
category: 'valid',
timer: 3
})
} else {
this.$store.dispatch('toasts/pushToast', {
id: uuidv4(),
title: 'Favori retiré',
message: `${this.celestial.name} a été retiré de la liste des favoris.`,
category: 'valid',
timer: 3
})
}
this.$store.dispatch('toggleFav', this.celestial.id)
}
}
}
</script>
<style lang="scss" scoped>
.celestial-card {
height: 100%;
min-height: 100%;
padding: 20px;
color: $fs-black;
background: rgba($white, 85%);
border-radius: 5px;
.card-wrapper {
position: relative;
height: 100%;
display: flex;
flex-flow: column;
align-items: stretch;
> * {
flex: 0 1 auto;
}
.card-header {
padding-right: 60px;
}
.card-content {
flex: 1 1 auto;
min-height: 30px;
}
.card-info {
position: absolute;
top: 0;
right: 0;
}
.card-actions {
color: #afafaf;
.favourite {
.icon {
color: #afafaf;
}
&.active {
.icon {
position: relative;
display: inline-block;
will-change: font-size;
animation: toggleFavHeart 0.6s cubic-bezier(0.17, 0.89, 0.32, 1.49);
animation-fill-mode: forwards;
}
}
}
}
}
}
</style>

View File

@@ -0,0 +1,66 @@
<template>
<div class="card-icon">
<img
v-if="type === 'planète à lunes'"
src="/icons/saturn-and-other-planets.svg"
class="fs-icon"
alt="planet icon"
>
<img
v-else-if="type === 'planète'"
src="/icons/saturn-planet-shape.svg"
class="fs-icon"
alt="planet icon"
>
<img
v-else-if="type === 'lune'"
src="/icons/moon-and-stars-in-a-cloud.svg"
class="fs-icon"
alt="moon icon"
>
<img
v-else-if="type === 'étoile'"
src="/icons/sun-shape.svg"
class="fs-icon"
alt="moon icon"
>
<img
v-else
src="/icons/stars-group.svg"
alt="moon icon"
class="fs-icon"
>
</div>
</template>
<script>
export default {
name: 'CelestialCardIcon',
props: {
type: {
type: String,
default: () => { return '' }
}
}
}
</script>
<style lang="scss">
.card-icon {
display: block;
position: absolute;
top: 20px;
bottom: 20px;
left: 0;
right: 0;
user-select: none;
pointer-events: none;
opacity: 4%;
img {
height: 100%;
width: 100%;
z-index: -1;
}
}
</style>

View File

@@ -0,0 +1,120 @@
<template>
<div class="celestial-filters">
<ul class="no-style">
<li>
<button
class="btn btn-primary"
:class="[filters.all ? 'active' : '']"
@click="emitFilter('all')"
>
Tous
</button>
<button
class="btn btn-primary btn-icon"
:class="[filters.planets ? 'active' : '']"
@click="emitFilter('planets')"
>
Planètes
<img
src="icons/saturn-planet-shape-white.svg"
alt=""
class="fs-icon icon-sm"
>
</button>
<button
class="btn btn-primary btn-icon"
:class="[filters.moons ? 'active' : '']"
@click="emitFilter('moons')"
>
Lunes
<img
src="icons/moon-and-stars-in-a-cloud-white.svg"
alt=""
class="fs-icon icon-sm"
>
</button>
<button
class="btn btn-primary btn-icon"
:class="[filters.stars ? 'active' : '']"
@click="emitFilter('stars')"
>
Etoiles
<img src="icons/sun-shape-white.svg" alt="" class="fs-icon icon-sm">
</button>
<button
class="btn btn-primary btn-icon"
:class="[filters.others ? 'active' : '']"
@click="emitFilter('others')"
>
Autres
<img
src="icons/stars-group-white.svg"
alt=""
class="fs-icon icon-sm"
>
</button>
</li>
</ul>
</div>
</template>
<script>
import { defineComponent } from '@vue/composition-api'
export default defineComponent({
name: 'CelestialFilters',
props: {
celestials: {
type: Array,
default: () => { return [] }
}
},
data () {
return {
filters: {
all: true,
planets: false,
moons: false,
stars: false,
others: false
}
}
},
methods: {
/**
* Emits the type of celestial body to filter for to parent
*/
emitFilter (type) {
// Reset filter appearance
this.filters = {
all: false,
planets: false,
moons: false,
stars: false,
others: false
}
// Triggers the correct filter
if (type === 'all') {
this.filters.all = true
} else if (type === 'planets') {
this.filters.planets = true
} else if (type === 'moons') {
this.filters.moons = true
} else if (type === 'stars') {
this.filters.stars = true
} else if (type === 'others') {
this.filters.others = true
}
this.$emit('filter:celestials', type)
}
}
})
</script>
<style lang="scss" scoped>
.celestial-filters {
margin-bottom: 20px;
}
</style>

View File

@@ -0,0 +1,95 @@
<template>
<div class="celestial-list-wrapper">
<div v-if="celestials && celestials.length > 1">
<celestial-filters v-if="hasFilters" @filter:celestials="filterCelestials" />
<ul v-if="celestials" class="celestial-list grid no-style">
<li
v-for="(celestial, index) in sortedCelestials"
:key="index"
class="celestial-item"
>
<celestial-card :celestial="celestial" />
</li>
</ul>
</div>
<div v-else>
<nest-loader />
</div>
</div>
</template>
<script>
import { defineComponent } from '@vue/composition-api'
import CelestialCard from '@/components/celestials/CelestialCard.vue'
import NestLoader from '@/components/NestLoader.vue'
import CelestialFilters from './CelestialFilters.vue'
export default defineComponent({
name: 'CelestialList',
components: {
CelestialCard,
CelestialFilters,
NestLoader
},
props: {
celestials: {
type: Array,
required: true
},
hasFilters: {
type: Boolean,
default: true
}
},
// Initial state
data () {
return {
activeFilter: 'all'
}
},
computed: {
sortedCelestials () {
if (this.activeFilter === 'moons') {
return this.celestials.filter(e => e.type === 'lune')
} else if (this.activeFilter === 'planets') {
return this.celestials.filter(
e => e.type === 'planète' || e.type === 'planète à lunes'
)
} else if (this.activeFilter === 'stars') {
return this.celestials.filter(e => e.type === 'étoile')
} else if (this.activeFilter === 'others') {
return this.celestials.filter(e => e.type === 'autre')
} else {
return this.celestials
}
}
},
methods: {
/**
* Applies the filter type to the data
*/
filterCelestials (type) {
this.activeFilter = type
}
}
})
</script>
<style lang="scss" scoped>
.celestial-list {
display: flex;
justify-content: space-between;
align-items: stretch;
flex-flow: row wrap;
.celestial-item {
width: calc(33% - 15px);
margin-bottom: 20px;
}
}
</style>