refactors and changes invite route

This commit is contained in:
tomlum 2022-02-10 11:43:58 -05:00
parent 0e1ebbcf41
commit 7fd713eb6c
3 changed files with 6 additions and 6 deletions

View file

@ -195,8 +195,8 @@ const OnboardingNavigation = ({currentPage, totalDots, onNextPage, onBackPage, n
OnboardingNavigation.propTypes = { OnboardingNavigation.propTypes = {
currentPage: PropTypes.number, currentPage: PropTypes.number,
totalDots: PropTypes.number, totalDots: PropTypes.number,
onNextPage: PropTypes.funct, onNextPage: PropTypes.func,
onBackPage: PropTypes.funct, onBackPage: PropTypes.func,
nextButtonText: PropTypes.string nextButtonText: PropTypes.string
}; };
@ -485,7 +485,7 @@ const BecomeAScratcher = ({user, invitedScratcher, scratcher, sessionStatus}) =>
</Button> </Button>
<Button <Button
onClick={() => { onClick={() => {
handlePromoteToScratcher(user, nextPage); handlePromoteToScratcher(nextPage);
}} }}
> >
<FormattedMessage id={'becomeAScratcher.buttons.iAgree'} /> <FormattedMessage id={'becomeAScratcher.buttons.iAgree'} />
@ -544,7 +544,7 @@ const BecomeAScratcher = ({user, invitedScratcher, scratcher, sessionStatus}) =>
<FormattedMessage id={'becomeAScratcher.success.createAProject'} /> <FormattedMessage id={'becomeAScratcher.success.createAProject'} />
</a> </a>
</div> </div>
<a href={hoorayAppear && '/'}> <a href={hoorayAppear ? '/' : null}>
<Button> <Button>
<FormattedMessage id={'becomeAScratcher.buttons.takeMeBack'} /> <FormattedMessage id={'becomeAScratcher.buttons.takeMeBack'} />
</Button> </Button>

View file

@ -10,7 +10,7 @@
"becomeAScratcher.buttons.backToProfile": "Back to Profile Page", "becomeAScratcher.buttons.backToProfile": "Back to Profile Page",
"becomeAScratcher.buttons.finishLater": "Finish Later", "becomeAScratcher.buttons.finishLater": "Finish Later",
"becomeAScratcher.congratulations.header": "Congratulations, {username}! You have shown that you are ready to become a Scratcher.", "becomeAScratcher.congratulations.header": "Congratulations, {username}! You have shown that you are ready to become a Scratcher.",
"becomeAScratcher.congratulations.body": "Scratch is a friendly and welcoming community for everyone, where people create, share, and learn together. We welcome people of all ages, races, ethnicities, religions, abilities, sexual orientations, and gender identities. The next few pages will take you through the community guidelines and explain what this means.", "becomeAScratcher.congratulations.body": "Scratch is a friendly and welcoming community for everyone, where people create, share, and learn together. We welcome people of all ages, races, ethnicities, religions, abilities, sexual orientations, and gender identities.",
"becomeAScratcher.toBeAScratcher.header": "What does it mean to be a Scratcher?", "becomeAScratcher.toBeAScratcher.header": "What does it mean to be a Scratcher?",
"becomeAScratcher.toBeAScratcher.body": "You might notice on your profile page that you are currently a “New Scratcher”. Now that you have spent some time on Scratch, we invite you to become a “Scratcher”.", "becomeAScratcher.toBeAScratcher.body": "You might notice on your profile page that you are currently a “New Scratcher”. Now that you have spent some time on Scratch, we invite you to become a “Scratcher”.",
"becomeAScratcher.toBeAScratcher.bold": "Scratchers have a bit more experience on Scratch and are excited to both contribute to the community and to make it a supportive and welcoming space for others.", "becomeAScratcher.toBeAScratcher.bold": "Scratchers have a bit more experience on Scratch and are excited to both contribute to the community and to make it a supportive and welcoming space for others.",

View file

@ -30,7 +30,7 @@ const AdminMessage = props => (
id="messages.scratcherInvite" id="messages.scratcherInvite"
values={{ values={{
learnMore: ( learnMore: (
<a href={`/users/${props.username}#promote`}> <a href={`/promote-to-scratcher`}>
{props.intl.formatMessage({id: 'messages.learnMore'})} {props.intl.formatMessage({id: 'messages.learnMore'})}
</a> </a>
) )