Corrige l'affichage du bouton custom pour simulateur salaire (#2444)
* fix: Affichage du bouton custom pour simulateur salaire + position top iframe * feat: Ajoute version RGAA compatible logopull/2449/head
parent
5584fd1242
commit
8d481f49b9
|
@ -14,7 +14,7 @@ import { H4 } from '@/design-system/typography/heading'
|
|||
import { StyledLink } from '@/design-system/typography/link'
|
||||
import { Body } from '@/design-system/typography/paragraphs'
|
||||
import { useOnClickOutside } from '@/hooks/useClickOutside'
|
||||
import { CurrentSimulatorDataContext } from '@/pages/Simulateurs/metadata'
|
||||
import { useSitePaths } from '@/sitePaths'
|
||||
|
||||
import * as safeLocalStorage from '../../storage/safeLocalStorage'
|
||||
import { JeDonneMonAvis } from '../JeDonneMonAvis'
|
||||
|
@ -44,6 +44,8 @@ const getShouldAskFeedback = (url: string) => {
|
|||
)
|
||||
}
|
||||
|
||||
const IFRAME_SIMULATEUR_EMBAUCHE_PATH = '/iframes/simulateur-embauche'
|
||||
|
||||
const FeedbackButton = ({ isEmbedded }: { isEmbedded?: boolean }) => {
|
||||
const [isFormOpen, setIsFormOpen] = useState(false)
|
||||
const [isShowingThankMessage, setIsShowingThankMessage] = useState(false)
|
||||
|
@ -53,7 +55,12 @@ const FeedbackButton = ({ isEmbedded }: { isEmbedded?: boolean }) => {
|
|||
const url = useLocation().pathname
|
||||
const tag = useContext(TrackingContext)
|
||||
const containerRef = useRef<HTMLElement | null>(null)
|
||||
const currentSimulatorData = useContext(CurrentSimulatorDataContext)
|
||||
|
||||
const { absoluteSitePaths } = useSitePaths()
|
||||
const currentPath = useLocation().pathname
|
||||
const isSimulateurSalaire =
|
||||
currentPath.includes(absoluteSitePaths.simulateurs.salarié) ||
|
||||
currentPath.includes(IFRAME_SIMULATEUR_EMBAUCHE_PATH)
|
||||
|
||||
const { shouldShowRater, customTitle } = useFeedback()
|
||||
|
||||
|
@ -146,8 +153,8 @@ const FeedbackButton = ({ isEmbedded }: { isEmbedded?: boolean }) => {
|
|||
</>
|
||||
)}
|
||||
<Spacing lg />
|
||||
{currentSimulatorData?.pathId === 'simulateurs.salarié' ? (
|
||||
<JeDonneMonAvis />
|
||||
{isSimulateurSalaire ? (
|
||||
<JeDonneMonAvis light />
|
||||
) : (
|
||||
<Button
|
||||
color="tertiary"
|
||||
|
@ -200,7 +207,7 @@ const FeedbackButton = ({ isEmbedded }: { isEmbedded?: boolean }) => {
|
|||
const StyledButton = styled.button<{ $isEmbedded?: boolean }>`
|
||||
position: fixed;
|
||||
top: 10.5rem;
|
||||
${({ $isEmbedded }) => ($isEmbedded ? `top: 40rem;` : '')}
|
||||
${({ $isEmbedded }) => ($isEmbedded ? `top: 2rem;` : '')}
|
||||
right: 0;
|
||||
width: 3.75rem;
|
||||
height: 3.75rem;
|
||||
|
@ -274,7 +281,7 @@ const StyledBody = styled(Body)`
|
|||
const Section = styled.section<{ $isEmbedded?: boolean }>`
|
||||
position: fixed;
|
||||
top: 10.5rem;
|
||||
${({ $isEmbedded }) => ($isEmbedded ? `top: 40rem;` : '')}
|
||||
${({ $isEmbedded }) => ($isEmbedded ? `top: 2rem;` : '')}
|
||||
right: 0;
|
||||
width: 17.375rem;
|
||||
background-color: ${({ theme }) => theme.colors.bases.primary[700]};
|
||||
|
@ -284,6 +291,7 @@ const Section = styled.section<{ $isEmbedded?: boolean }>`
|
|||
color: ${({ theme }) => theme.colors.extended.grey[100]};
|
||||
}
|
||||
padding: 1.5rem;
|
||||
padding-top: 0.75rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
import { useTranslation } from 'react-i18next'
|
||||
|
||||
import { Link } from '@/design-system/typography/link'
|
||||
import donnerVotreAvisSvg from '@/images/donner-votre-avis-services-publics.svg'
|
||||
|
||||
export const JeDonneMonAvis = () => {
|
||||
export const JeDonneMonAvis = ({ light }: { light?: boolean }) => {
|
||||
const { t } = useTranslation()
|
||||
const href =
|
||||
'https://jedonnemonavis.numerique.gouv.fr/Demarches/3226?&view-mode=formulaire-avis&nd_mode=en-ligne-enti%C3%A8rement&nd_source=button&key=e62c98db43a483b98032a17ddcc8d279'
|
||||
|
@ -15,7 +16,11 @@ export const JeDonneMonAvis = () => {
|
|||
)}
|
||||
>
|
||||
<img
|
||||
src="https://jedonnemonavis.numerique.gouv.fr/static/bouton-blanc.svg"
|
||||
src={
|
||||
light
|
||||
? donnerVotreAvisSvg
|
||||
: 'https://jedonnemonavis.numerique.gouv.fr/static/bouton-blanc.svg'
|
||||
}
|
||||
alt="Je donne mon avis"
|
||||
/>
|
||||
</Link>
|
||||
|
|
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 22 KiB |
Loading…
Reference in New Issue