Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions apps/nuxt/src/assets/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ WARNING :
.fr-justify-center {
justify-content: center;
}
.fr-card:hover {
cursor: pointer !important;
}
.fr-modal-custom::before {
content: none !important;
}
Expand Down
52 changes: 52 additions & 0 deletions apps/nuxt/src/assets/scss/card.scss
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,58 @@
}
}

&.fr-card--cta {
@include tool.media-query-respond-from(md) {
.fr-card__header {
flex-basis: 30%;
}
}

@include tool.media-query-respond-from(lg) {
.fr-card__header {
flex-basis: 25%;
}
}

.fr-card__header {
align-content: center;
}

@include tool.media-query-respond-from(md) {
.fr-card__img {
max-height: 250px;
}
}

.fr-card__img {
position: relative;

img {
max-height: 250px;
}

&::after {
content: '';
position: absolute;
z-index: 0; // Lower layer
height: 100%;
width: 100%;
top: 0;
left: 0;
background: linear-gradient(to bottom right, rgb(255 255 255 / 0%) 70%, rgb(255 255 255 / 100%) 95%) !important;
}

.fr-card__logo {
position: absolute;
bottom: 0;
right: 0;
width: 50px;
height: 50px;
z-index: 1; // Higher than the gradient
}
}
}

&.fr-card--program {
.fr-card__content {
padding: 1rem 1.5rem 4rem !important;
Expand Down
5 changes: 1 addition & 4 deletions apps/nuxt/src/components/TeeHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
:quick-links="quickLinks"
logo-text="RÉPUBLIQUE<br>FRANÇAISE"
:show-search="false"
:operator-img-src="img(Identity.logoPath, { quality: 70, format: 'webp' })"
:operator-img-src="Identity.logoPath"
operator-img-alt="Transition Écologique des Entreprises - ADEME"
operator-img-style="width:3.5rem;"
/>
Expand All @@ -19,11 +19,8 @@

import { TeeDsfrHeaderMenuLinkProps } from '@/components/element/vueDsfr/dsfrHeader/TeeDsfrHeaderMenuLinks.vue'
import { Identity } from '@/tools/Identity'
import { Image } from '@/tools/image'
import { RouteName } from '@/types/routeType'

const img = Image.getUrl

const quickLinks: TeeDsfrHeaderMenuLinkProps[] = [
{
label: 'Accueil',
Expand Down
212 changes: 37 additions & 175 deletions apps/nuxt/src/components/element/card/TeeCtaCard.vue
Original file line number Diff line number Diff line change
@@ -1,207 +1,69 @@
<template>
<div class="fr-container fr-px-0">
<div class="fr-grid-row">
<div class="fr-col-12">
<div class="fr-card fr-card--cta fr-card--horizontal fr-card--grey fr-p-4v">
<div class="fr-card__body">
<div class="fr-card__content fr-justify-center">
<h2
class="fr-card__title fr-text--blue"
v-html="title"
/>
<p
class="fr-card__desc fr-text--md"
v-html="description"
/>
<div
class="fr-card fr-enlarge-link fr-card--horizontal fr-card--grey fr-p-4v fr-card--no-border"
:class="{ 'fr-card--no-icon': target === '_self' }"
v-if="ctaBtnTitle"
class="fr-card__end"
>
<div class="fr-card__body">
<div class="fr-card__content fr-justify-center">
<component
:is="titleTag"
class="fr-card__title"
>
<a
v-if="onClick"
href="#"
:target="target"
:rel="target === '_blank' ? 'noopener external' : 'noopener'"
@click.prevent="onClick()"
v-html="resolvedTitle"
/>
<a
v-else
:href="resolvedLink"
:target="target"
:rel="target === '_blank' ? 'noopener external' : 'noopener'"
v-html="resolvedTitle"
/>
</component>
<p
class="fr-card__desc fr-text--md"
v-html="resolvedDescription"
/>
<div
v-if="ctaBtnTitle"
class="fr-card__end"
>
<TeeDsfrButton class="inline-flex fr-text--yellow fr-text--bold fr-btn-align-center">
<template #default>
{{ ctaBtnTitle }}
</template>
</TeeDsfrButton>
</div>
</div>
</div>
<div class="fr-card__header">
<div
class="fr-card__img"
:class="[bgColor ? `fr-bg--${bgColor}` : '', objectFit === 'contain' ? 'fr-card__img--contain' : '']"
>
<img
class="fr-responsive-img"
:src="resolvedImageSrc"
:alt="resolvedImageAlt"
/>
<img
class="fr-card__logo"
:src="img('/images/logos/mission-transition-logo-alone.png', { height: 50, width: 50, quality: 100, loading: 'lazy' })"
alt="Transition Ecologique des Entreprises - ADEME"
/>
</div>
</div>
<TeeDsfrButton
class="inline-flex fr-text--yellow fr-text--bold fr-btn-align-center"
@click.prevent="onClick()"
>
<template #default>
{{ ctaBtnTitle }}
</template>
</TeeDsfrButton>
</div>
</div>
</div>
<TeeHeaderLogoCard
:image-src="imageSrc"
:image-alt="imageAlt"
:img-bg-color="imgBgColor"
:object-fit="objectFit"
/>
</div>
</template>

<script setup lang="ts">
import { Image } from '@/tools/image'
import { computed } from 'vue'
import { useRouter } from 'vue-router'
import { Color, RouteName } from '@/types'
import { Color } from '@/types'

interface Props {
link?: string
title?: string
description?: string
description: string
imageSrc?: string
imageAlt?: string
objectFit?: 'cover' | 'contain' | 'fill' | 'none' | 'scale-down'
bgColor?: Color
imgBgColor?: Color
ctaBtnTitle?: string
target?: '_blank' | '_self' | '_parent' | '_top'
onClick?: CallableFunction
titleTag?: 'h2' | 'h3' | 'h4' | 'h5' | 'h6'
withIframeResizer?: boolean
onClick: CallableFunction
}

const props = withDefaults(defineProps<Props>(), {
link: undefined,
title: undefined,
withDefaults(defineProps<Props>(), {
title: 'Accédez aux aides publiques pour votre projet de transition écologique',
imageSrc: undefined,
imageAlt: undefined,
objectFit: 'cover',
bgColor: undefined,
ctaBtnTitle: undefined,
target: '_blank',
onClick: undefined,
titleTag: 'h3',
withIframeResizer: true
imgBgColor: undefined,
ctaBtnTitle: undefined
})

const router = useRouter()

const defaultLink = router.resolve({ name: RouteName.Homepage }).href
const defaultTitle = 'Accédez aux aides publiques pour votre projet de transition écologique'
const defaultImageSrc = 'images/TEE_iframe_transparent.webp'
const defaultImageAlt = "Image de la page d'accueil de mission transition écologique"

const resolvedLink = computed(() => props.link || defaultLink)
const resolvedTitle = computed(() => props.title || defaultTitle)
const resolvedDescription = computed(
() =>
props.description ||
'Le service public <strong>Transition écologique des entreprises</strong> vous permet de trouver les aides, accompagnements' +
"et ressources issues de l'ensemble des acteurs publics pour vous aider à réaliser votre projet de transition écologique" +
'(ADEME, CCI, CMA, Bpifrance, DGFiP, etc.)'
)
const resolvedImageSrc = computed(() =>
props.imageSrc
? img(props.imageSrc, { height: 250, quality: 70, loading: 'lazy' })
: img(defaultImageSrc, { height: 350, quality: 100, loading: 'lazy' })
)
const resolvedImageAlt = computed(() => props.imageAlt || defaultImageAlt)

const img = Image.getUrl

if (props.withIframeResizer) {
const imageResizerChild = () => import('@iframe-resizer/child')
imageResizerChild()
}
</script>

<style scoped lang="scss">
@use '@/assets/scss/tool';

.fr-card {
.fr-card--no-icon {
a::after {
display: none !important;
}
}

.fr-card__title {
a {
background-image: none;
outline-width: 0;

&::after {
display: inline-block !important;
}
}
}

@include tool.media-query-respond-from(md) {
.fr-card__header {
flex-basis: 30%;
}
}

@include tool.media-query-respond-from(lg) {
.fr-card__header {
flex-basis: 25%;
}
}

.fr-card__header {
align-content: center;
}

@include tool.media-query-respond-from(md) {
.fr-card__img {
max-height: 250px;
}
}

.fr-card__img {
position: relative;

img {
max-height: 250px;
}

&::after {
content: '';
position: absolute;
z-index: 0; // Lower layer
height: 100%;
width: 100%;
top: 0;
left: 0;
background: linear-gradient(to bottom right, rgb(255 255 255 / 0%) 70%, rgb(255 255 255 / 100%) 95%) !important;
}

.fr-card__logo {
position: absolute;
bottom: 0;
right: 0;
width: 50px;
height: 50px;
z-index: 1; // Higher than the gradient
}
:hover:not(button, button *) {
cursor: default !important;
}
}
</style>
Loading
Loading