import React from "react"; import styled from "styled-components"; import { createMessage, EDIT_APP, FORK_APP, SIGN_IN } from "constants/messages"; import { ANONYMOUS_USERNAME } from "constants/userConstants"; import { getTypographyByKey } from "constants/DefaultTheme"; import Button from "components/ads/Button"; import ForkApplicationModal from "pages/Applications/ForkApplicationModal"; const Cta = styled(Button)` ${(props) => getTypographyByKey(props, "btnLarge")} height: 100%; `; const ForkButton = styled(Cta)` svg { transform: rotate(-90deg); } height: ${(props) => `calc(${props.theme.smallHeaderHeight})`}; `; const getAppViewerHeaderCTA = ({ url, canEdit, currentApplicationDetails, currentUser, forkUrl, loginUrl, }: any) => { let CTA = null; if (url && canEdit) { CTA = ( ); } else if ( currentApplicationDetails?.forkingEnabled && currentApplicationDetails?.isPublic ) { if (currentUser?.username === ANONYMOUS_USERNAME) { CTA = ( ); } else { CTA = (
); } } else if ( currentApplicationDetails?.isPublic && currentUser?.username === ANONYMOUS_USERNAME ) { CTA = ( ); } return CTA; }; export default getAppViewerHeaderCTA;