mirror of
https://github.com/ArthurDanjou/website-old.git
synced 2026-01-14 12:14:42 +01:00
57 lines
1.7 KiB
Vue
57 lines
1.7 KiB
Vue
<template>
|
|
<div class="flex flex-row mb-5">
|
|
<div class="self-center flex h-4 w-4 mr-4 relative">
|
|
<span v-if="end === 'Today'" class="animate-ping relative inline h-4 w-4 rounded-full bg-orange-400 opacity-75"></span>
|
|
<span v-else class="inline relative h-4 w-4 rounded-full bg-gray-400 opacity-75"></span>
|
|
<span v-if="end === 'Today'" class="inline absolute rounded-full h-4 w-4 bg-orange-500"></span>
|
|
<span v-else class="inline absolute rounded-full h-4 w-4 bg-gray-500"></span>
|
|
</div>
|
|
<div class="leading-7">
|
|
<p v-if="isSameDate()" class="text-base dark:text-dark-100 text-gray-800 leading-6">{{ formatDate(begin) }} <span class="px-3">|</span> {{location}}</p>
|
|
<p v-else class="text-base dark:text-dark-100 text-gray-800 leading-6">{{ formatDate(begin) }} - {{ formatDate(end) }} <span class="px-3">|</span> {{location}}</p>
|
|
<h1 class="text-2xl font-bold">{{ $t(title) }}</h1>
|
|
<h2 class="text-xl">{{ company }}</h2>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "Experience",
|
|
props: {
|
|
title: {
|
|
type: String,
|
|
default: "Title"
|
|
},
|
|
company: {
|
|
type: String,
|
|
default: "ArtDanjProduction"
|
|
},
|
|
location: {
|
|
type: String,
|
|
default: "France"
|
|
},
|
|
begin: {
|
|
type: String,
|
|
default: "Now"
|
|
},
|
|
end: {
|
|
type: String,
|
|
default: "Never"
|
|
}
|
|
},
|
|
methods: {
|
|
formatDate(date) {
|
|
const dateFormat = date.split('-')
|
|
return date === 'Today' ? this.$t('date.today') : this.$t('month.' + dateFormat[0]) + " " + dateFormat[1]
|
|
},
|
|
isSameDate() {
|
|
return this.begin === this.end
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
</style>
|