From 875539082ea57c1ce3251d11fb0736dd40dac616 Mon Sep 17 00:00:00 2001 From: Pavol Celuch Date: Mon, 22 Jul 2024 15:44:20 +0200 Subject: [PATCH] Hide personal data processing message (#922) * Hide personal data processing message * Move logic from PostponeButton to PostponeSection and reuse date logic * Moving terms to a component * Revert "Moving terms to a component" This reverts commit 32911c2363db3ac97a38f71b94c6682184759569. --- src/pages/index.tsx | 58 +++++++++++++++++++++++---------------------- 1 file changed, 30 insertions(+), 28 deletions(-) diff --git a/src/pages/index.tsx b/src/pages/index.tsx index bcf42631..15c7d292 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -157,31 +157,35 @@ const TaxFormSection = ({ nextRoute, isDebug, isLive }) => { ) } -const PostponeSection = ({ nextPostponeRoute, now, isPostponeLive, isDebug }) => ( - <> -

- {`Odklad daňového priznania za rok ${TAX_YEAR}`} -

- - - - { - (isPostponeLive || isDebug) && ( - <> -

- Používaním tejto služby súhlasíte so spracovaním osobných údajov v rozsahu - nevyhnutnom na vygenerovanie odkladu daňového priznania. Vaše údaje - neukladáme, sú použité výlučne na spracovanie odkladu daňového priznania. -

- - - ) - } - -) +const PostponeSection = ({ nextPostponeRoute, now, isPostponeLive, isDebug }) => { + const isPostponeTime = now.getMonth() < 3 + + return ( + <> +

+ {`Odklad daňového priznania za rok ${TAX_YEAR}`} +

+ +
    +
  • {`do 30.6.${TAX_YEAR + 1} ak ste mali príjmy len zo Slovenska, alebo`}
  • +
  • {`do 30.9.${TAX_YEAR + 1} ak ste mali príjmy aj zo zahraničia`}
  • +
+ + { + ((isPostponeTime && isPostponeLive) || isDebug) && ( + <> +

+ Používaním tejto služby súhlasíte so spracovaním osobných údajov v rozsahu + nevyhnutnom na vygenerovanie odkladu daňového priznania. Vaše údaje + neukladáme, sú použité výlučne na spracovanie odkladu daňového priznania. +

+ + + ) + } + + ) +} const PostponeText = ({ now }: { now: Date }) => ( <> @@ -204,9 +208,7 @@ const PostponeText = ({ now }: { now: Date }) => ( ) -const PostponeButton = ({ now, nextPostponeRoute }) => { - const isPostponeTime = now.getMonth() < 3 - +const PostponeButton = ({ isPostponeTime, nextPostponeRoute }) => { if (!isPostponeTime) { return (