File size: 1,155 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
import { Button } from '@automattic/components';
import clsx from 'clsx';
import { translate } from 'i18n-calypso';
import PropTypes from 'prop-types';
import { Component } from 'react';
import { contextTypes } from '../context-types';
export default class LinkQuit extends Component {
static displayName = 'LinkQuit';
static propTypes = {
primary: PropTypes.bool,
subtle: PropTypes.bool,
href: PropTypes.string,
target: PropTypes.string,
};
static contextTypes = contextTypes;
constructor( props, context ) {
super( props, context );
}
onClick = ( event ) => {
this.props.onClick && this.props.onClick( event );
const { quit, tour, tourVersion, step, isLastStep } = this.context;
quit( { tour, tourVersion, step, isLastStep } );
};
render() {
const { children, primary, subtle, href, target } = this.props;
const classes = clsx( 'guided-tours__button-link', {
'guided-tours__subtle-button': subtle,
} );
return (
<Button
className={ classes }
onClick={ this.onClick }
primary={ primary }
href={ href }
target={ target }
>
{ children || translate( 'Quit' ) }
</Button>
);
}
}
|