// @flow import * as React from 'react'; import { observable } from 'mobx'; import { observer } from 'mobx-react'; import styled from 'styled-components'; import Tip from './Tip'; import CopyToClipboard from './CopyToClipboard'; import Team from '../models/Team'; type Props = { team: Team, disabled: boolean, }; @observer class TipInvite extends React.Component { @observable linkCopied: boolean = false; handleCopy = () => { this.linkCopied = true; }; render() { const { team, disabled } = this.props; if (disabled) return null; return ( Looking to invite your team? Your teammates can sign in with{' '} {team.slackConnected ? 'Slack' : 'Google'} to join this knowledgebase at your team’s own subdomain ({team.url.replace(/^https?:\/\//, '')}) –{' '} {this.linkCopied ? 'link copied to clipboard!' : 'copy a link to share.'} ); } } const Heading = styled.h3` margin: 0.25em 0 0.5em 0; `; const Paragraph = styled.p` margin: 0.25em 0; a { color: ${props => props.theme.text}; text-decoration: underline; } `; export default TipInvite;