|
|
@@ -1,41 +0,0 @@
|
|
|
-import React from 'react';
|
|
|
-import PropTypes from 'prop-types';
|
|
|
-
|
|
|
-import { withTranslation } from 'react-i18next';
|
|
|
-
|
|
|
-import { withUnstatedContainers } from '../UnstatedUtils';
|
|
|
-import NavigationContainer from '../../services/NavigationContainer';
|
|
|
-
|
|
|
-const PageCreateButton = (props) => {
|
|
|
- const { t, navigationContainer, isIcon } = props;
|
|
|
-
|
|
|
- if (isIcon) {
|
|
|
- return (
|
|
|
- <button className="btn btn-lg btn-primary rounded-circle waves-effect waves-light" type="button" onClick={navigationContainer.openPageCreateModal}>
|
|
|
- <i className="icon-pencil"></i>
|
|
|
- </button>
|
|
|
- );
|
|
|
- }
|
|
|
-
|
|
|
- return (
|
|
|
- <button className="px-md-2 nav-link create-page border-0 bg-transparent" type="button" onClick={navigationContainer.openPageCreateModal}>
|
|
|
- <i className="icon-pencil mr-2"></i>
|
|
|
- <span className="d-none d-lg-block">{ t('New') }</span>
|
|
|
- </button>
|
|
|
- );
|
|
|
-};
|
|
|
-
|
|
|
-/**
|
|
|
- * Wrapper component for using unstated
|
|
|
- */
|
|
|
-const PageCreateButtonWrapper = withUnstatedContainers(PageCreateButton, [NavigationContainer]);
|
|
|
-
|
|
|
-
|
|
|
-PageCreateButton.propTypes = {
|
|
|
- t: PropTypes.func.isRequired, // i18next
|
|
|
- navigationContainer: PropTypes.instanceOf(NavigationContainer).isRequired,
|
|
|
-
|
|
|
- isIcon: PropTypes.bool,
|
|
|
-};
|
|
|
-
|
|
|
-export default withTranslation()(PageCreateButtonWrapper);
|