Skip to content

Commit

Permalink
feat: upgrade package json [HOOK FAIL OK]
Browse files Browse the repository at this point in the history
  • Loading branch information
batleforc committed Aug 22, 2024
1 parent d7567a2 commit 0fd6f28
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 13 deletions.
4 changes: 3 additions & 1 deletion apps/front/src/stores/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ export const useIndexStore = defineStore({
(a: HomeHistory, b: HomeHistory) => b.weight - a.weight,
);
},
getPresentation(): string | undefined {
return this.homeContent?.presentation.split('\n');
},
},
actions: {
init() {
Expand All @@ -29,7 +32,6 @@ export const useIndexStore = defineStore({
if (body.status === 200) {
this.homeContent = body.data;
}
console.log(body);
})
.catch((err) => {
console.error(err);
Expand Down
1 change: 1 addition & 0 deletions apps/front/src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

html, body, #root {
margin: 0;
background-color: $color-textCover;
}

html{
Expand Down
1 change: 0 additions & 1 deletion apps/front/src/views/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import NavBar from '../component/NavBar/NavBar.vue';
const indexStore = useIndexStore();
if (!indexStore.inited && !indexStore.homeLoading) {
console.log('Init index store');
indexStore.init();
}
</script>
Expand Down
12 changes: 8 additions & 4 deletions apps/front/src/views/HomeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ const { type } = useBreakpoints();

<template>
<div v-if="indexStore.inited" class="homePageContainer">
<Panel header="Qui suis je ?">
<p class="m-0">{{ indexStore.homeContent.presentation }}</p>
<Panel class="homePageWhoAmI" header="Qui suis je ?">
<p v-for="text in indexStore.getPresentation" :key="text">{{ text }}</p>
</Panel>
<div class="homePageCvContainer">
<a :href="getMediaApiUrl(indexStore.homeContent.cvUrl)" target="_blank" rel="noreferrer" class="homePageCV">
Expand All @@ -29,10 +29,10 @@ const { type } = useBreakpoints();
</div>
</template>
<template #title>
{{ slotProps.item.title }}, {{ slotProps.item.lieux }}
{{ slotProps.item.title }}
</template>
<template #subtitle>
{{ slotProps.item.date }}
{{ slotProps.item.lieux }}, {{ slotProps.item.date }}
</template>
<template #content>
<p>{{ slotProps.item.description }}</p>
Expand All @@ -51,6 +51,10 @@ const { type } = useBreakpoints();
@apply flex justify-center flex-col;
}
.homePageWhoAmI {
@apply my-4 mx-2;
}
.homePageCV {
@apply border-2 rounded-full px-5 py-2;
background-color: $color-bgCover;
Expand Down
23 changes: 16 additions & 7 deletions folio_content/content/home.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Maxime Leriche
presentation: |
Hello, Moi c'est Maxime, je suis un développeur passionné autant par les nouvelles technologies qu'un nouveau projet.
Hello,
Moi c'est Maxime, je suis un développeur passionné autant par les nouvelles technologies qu'un nouveau projet.
J'aime apprendre en permanence et construire ce que j'estime étre ma base de connaissance.
Et vous êtes ici sur mon site qui est un savant mélange de mes passions et de mes projets.
Alors, bienvenue et bonne visite !
Expand Down Expand Up @@ -47,10 +48,18 @@ history:
description: |
DUT Informatique
Découverte de la programmation et des bases nécessaires pour devenir développeur (Java, C, SQL, C#, JS, Python, PHP, etc)
- title: Stage Dev Web
lieux: Maxinfoweb, Neuilly en Thelle
date: Mars 2020 - Juin 2020
weight: 3
imgUrl: logoMaxinfoweb.png
description: |
Stage de fin d'étude BAC+2
Développements d'applications en PHP sur un Framework propre a l'entreprise.
- title: Codeur
lieux: Museomix, Amiens
date: 2019
weight: 3
weight: 4
imgUrl: museomixLogo.png
url:
- name: Objectif CIAP
Expand All @@ -64,7 +73,7 @@ history:
- title: LP Dev Cloud
lieux: IUT La Rochelle, Niort
date: 2020 - 2021
weight: 4
weight: 5
imgUrl: logoIUTLaRochelle.png
description: |
Licence Professionnelle Développement Cloud et Mobile
Expand All @@ -73,7 +82,7 @@ history:
- title: Alternant dev natif et PWA
lieux: Nexi Conseils, Aigrefeuille d'Aunis
date: 2020 - 2021
weight: 5
weight: 6
imgUrl: nexiConseils.png
description: |
Alternance en tant que développeur natif et PWA
Expand All @@ -82,7 +91,7 @@ history:
- title: Master Architecte Logiciel
lieux: Université de La Rochelle, Niort
date: 2021 - 2023
weight: 6
weight: 7
imgUrl: logoUniversiteLaRochelle.png
description: |
Master Architecte Logiciel
Expand All @@ -91,7 +100,7 @@ history:
- title: Alternant DevOps/Couche d'échange
lieux: Macif, Niort
date: 2021 - 2023
weight: 7
weight: 8
imgUrl: macif.png
description: |
Alternance en tant que DevOps et développeur couche d'échange
Expand All @@ -101,7 +110,7 @@ history:
- title: CDI Ingénieur Couche d'échange / Socle de fabrication
lieux: Macif, Niort
date: 2023 - Now
weight: 8
weight: 9
imgUrl: macif.png
description: |
A la suite de mon alternance, la Macif et plus précisément mon manager m'a fait confiance en me proposant de continuer l'aventure avec eux.
Expand Down
Binary file added folio_content/media/logoMaxinfoweb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 0fd6f28

Please sign in to comment.