From: Revanshu Paliwal Date: Thu, 20 Jul 2023 08:17:56 +0000 (+0200) Subject: SONAR-19907 FIxes after validation and review X-Git-Tag: 10.2.0.77647~313 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=6cc81e30c5c456f32362698d0c88c1801cd36233;p=sonarqube.git SONAR-19907 FIxes after validation and review --- diff --git a/server/sonar-web/src/main/js/components/tutorials/bitbucket-pipelines/BitbucketPipelinesTutorial.tsx b/server/sonar-web/src/main/js/components/tutorials/bitbucket-pipelines/BitbucketPipelinesTutorial.tsx index 3d3c4ef3f35..31c33edbc17 100644 --- a/server/sonar-web/src/main/js/components/tutorials/bitbucket-pipelines/BitbucketPipelinesTutorial.tsx +++ b/server/sonar-web/src/main/js/components/tutorials/bitbucket-pipelines/BitbucketPipelinesTutorial.tsx @@ -84,7 +84,7 @@ export default function BitbucketPipelinesTutorial(props: BitbucketPipelinesTuto <> {buildTool === BuildTools.CFamily && ( )} diff --git a/server/sonar-web/src/main/js/components/tutorials/components/DefaultProjectKey.tsx b/server/sonar-web/src/main/js/components/tutorials/components/DefaultProjectKey.tsx index b2b8bf75909..c53a717787b 100644 --- a/server/sonar-web/src/main/js/components/tutorials/components/DefaultProjectKey.tsx +++ b/server/sonar-web/src/main/js/components/tutorials/components/DefaultProjectKey.tsx @@ -36,11 +36,7 @@ export default function DefaultProjectKey(props: DefaultProjectKeyProps) { filename="sonar-project.properties" translationKey="onboarding.tutorial.other.project_key" /> - + ); } diff --git a/server/sonar-web/src/main/js/components/tutorials/components/GithubCFamilyExampleRepositories.tsx b/server/sonar-web/src/main/js/components/tutorials/components/GithubCFamilyExampleRepositories.tsx index 59c2ca6e6e9..b6fc67871ab 100644 --- a/server/sonar-web/src/main/js/components/tutorials/components/GithubCFamilyExampleRepositories.tsx +++ b/server/sonar-web/src/main/js/components/tutorials/components/GithubCFamilyExampleRepositories.tsx @@ -56,7 +56,7 @@ export default function GithubCFamilyExampleRepositories( const link = `https://github.com/orgs/sonarsource-cfamily-examples/repositories?q=${queryParams}`; return ( - +
, + extra: , field: ( {translate('onboarding.tutorial.env_variables.field')} diff --git a/server/sonar-web/src/main/js/components/tutorials/github-action/commands/CFamily.tsx b/server/sonar-web/src/main/js/components/tutorials/github-action/commands/CFamily.tsx index 450aad1d9a9..b1a6589e7a0 100644 --- a/server/sonar-web/src/main/js/components/tutorials/github-action/commands/CFamily.tsx +++ b/server/sonar-web/src/main/js/components/tutorials/github-action/commands/CFamily.tsx @@ -133,7 +133,7 @@ export default function CFamily(props: CFamilyProps) { /> {os && ( diff --git a/server/sonar-web/src/main/js/components/tutorials/gitlabci/YmlFileStep.tsx b/server/sonar-web/src/main/js/components/tutorials/gitlabci/YmlFileStep.tsx index 664b4f2da6f..b06d09d08e8 100644 --- a/server/sonar-web/src/main/js/components/tutorials/gitlabci/YmlFileStep.tsx +++ b/server/sonar-web/src/main/js/components/tutorials/gitlabci/YmlFileStep.tsx @@ -130,7 +130,7 @@ export function YmlFileStep(props: YmlFileStepProps) { {buildTool === BuildTools.CFamily && ( )} @@ -177,7 +177,7 @@ export function YmlFileStep(props: YmlFileStepProps) { {(build) => ( @@ -185,7 +185,7 @@ export function YmlFileStep(props: YmlFileStepProps) { ) : ( diff --git a/server/sonar-web/src/main/js/components/tutorials/gitlabci/commands/PipeCommand.tsx b/server/sonar-web/src/main/js/components/tutorials/gitlabci/commands/PipeCommand.tsx index bf6143cebc0..b5d13db1e0b 100644 --- a/server/sonar-web/src/main/js/components/tutorials/gitlabci/commands/PipeCommand.tsx +++ b/server/sonar-web/src/main/js/components/tutorials/gitlabci/commands/PipeCommand.tsx @@ -102,5 +102,5 @@ sonarqube-vulnerability-report: - sonarqube-check `; - return ; + return ; } diff --git a/server/sonar-web/src/main/js/components/tutorials/jenkins/buildtool-steps/CFamilly.tsx b/server/sonar-web/src/main/js/components/tutorials/jenkins/buildtool-steps/CFamilly.tsx index ca17d2de1fd..a0e21e87013 100644 --- a/server/sonar-web/src/main/js/components/tutorials/jenkins/buildtool-steps/CFamilly.tsx +++ b/server/sonar-web/src/main/js/components/tutorials/jenkins/buildtool-steps/CFamilly.tsx @@ -125,7 +125,7 @@ export default function CFamilly(props: LanguageProps) { /> {os && ( diff --git a/server/sonar-web/src/main/js/components/tutorials/other/DoneNextSteps.tsx b/server/sonar-web/src/main/js/components/tutorials/other/DoneNextSteps.tsx index 6f788da72e8..4f9c5069055 100644 --- a/server/sonar-web/src/main/js/components/tutorials/other/DoneNextSteps.tsx +++ b/server/sonar-web/src/main/js/components/tutorials/other/DoneNextSteps.tsx @@ -17,10 +17,13 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ +import styled from '@emotion/styled'; +import { animated, config, useSpring } from '@react-spring/web'; import { BasicSeparator, FlagVisual, Link } from 'design-system'; import * as React from 'react'; import { useDocUrl } from '../../../helpers/docs'; import { translate } from '../../../helpers/l10n'; +import useIntersectionObserver from '../../../hooks/useIntersectionObserver'; import { Component } from '../../../types/types'; export interface DoneNextStepsProps { @@ -29,50 +32,71 @@ export interface DoneNextStepsProps { export default function DoneNextSteps({ component }: DoneNextStepsProps) { const isProjectAdmin = component.configuration?.showSettings; + const outroRef = React.useRef(null); + + const intersectionEntry = useIntersectionObserver(outroRef, { freezeOnceVisible: true }); + + const outroAnimation = useSpring({ + from: { top: '200px' }, + to: intersectionEntry?.isIntersecting ? { top: '0px' } : { top: '200px' }, + config: config.wobbly, + }); const docUrl = useDocUrl(); return ( - <> + + +
+ +
-
- -
+

+ + {translate('onboarding.analysis.auto_refresh_after_analysis.done')} + + {translate('onboarding.analysis.auto_refresh_after_analysis.auto_refresh')} +

+

+ {isProjectAdmin + ? translate( + 'onboarding.analysis.auto_refresh_after_analysis.set_up_pr_deco_and_ci.admin' + ) + : translate('onboarding.analysis.auto_refresh_after_analysis.set_up_pr_deco_and_ci')} +

+
+ + {translate('onboarding.analysis.auto_refresh_after_analysis.check_these_links')} + +
    +
  • + + {translate( + 'onboarding.analysis.auto_refresh_after_analysis.check_these_links.branches' + )} + +
  • -

    - - {translate('onboarding.analysis.auto_refresh_after_analysis.done')} - - {translate('onboarding.analysis.auto_refresh_after_analysis.auto_refresh')} -

    -

    - {isProjectAdmin - ? translate('onboarding.analysis.auto_refresh_after_analysis.set_up_pr_deco_and_ci.admin') - : translate('onboarding.analysis.auto_refresh_after_analysis.set_up_pr_deco_and_ci')} -

    -
    - - {translate('onboarding.analysis.auto_refresh_after_analysis.check_these_links')} - -
      -
    • - - {translate( - 'onboarding.analysis.auto_refresh_after_analysis.check_these_links.branches' - )} - -
    • - -
    • - - {translate( - 'onboarding.analysis.auto_refresh_after_analysis.check_these_links.pr_analysis' - )} - -
    • -
    -
    - +
  • + + {translate( + 'onboarding.analysis.auto_refresh_after_analysis.check_these_links.pr_analysis' + )} + +
  • +
+
+
+
); } + +const StyledDiv = styled.div` + width: 840px; + margin: auto; +`;