|
|
@@ -1,9 +1,11 @@
|
|
|
import React from 'react';
|
|
|
import PropTypes from 'prop-types';
|
|
|
import { withTranslation } from 'react-i18next';
|
|
|
+import { UncontrolledTooltip } from 'reactstrap';
|
|
|
+
|
|
|
|
|
|
const NotFoundAlert = (props) => {
|
|
|
- const { t, isHidden } = props;
|
|
|
+ const { t, isHidden, isGuestUserMode } = props;
|
|
|
function clickHandler(viewType) {
|
|
|
if (props.onPageCreateClicked === null) {
|
|
|
return;
|
|
|
@@ -15,21 +17,31 @@ const NotFoundAlert = (props) => {
|
|
|
return null;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
return (
|
|
|
<div className="border border-info p-3">
|
|
|
- <div className="col-md-12 p-0">
|
|
|
+ <div
|
|
|
+ className="col-md-12 p-0"
|
|
|
+ >
|
|
|
<h2 className="text-info lead">
|
|
|
<i className="icon-info pr-2 font-weight-bold" aria-hidden="true"></i>
|
|
|
{t('not_found_page.page_not_exist_alert')}
|
|
|
</h2>
|
|
|
<button
|
|
|
+ id="create-page-btn-wrapper-for-tooltip"
|
|
|
type="button"
|
|
|
- className="m-1 pl-3 pr-3 btn bg-info text-white"
|
|
|
+ className={`m-1 pl-3 pr-3 btn bg-info text-white ${isGuestUserMode && 'disabled'}`}
|
|
|
onClick={() => { clickHandler('edit') }}
|
|
|
>
|
|
|
<i className="icon-note icon-fw" />
|
|
|
{t('not_found_page.Create Page')}
|
|
|
</button>
|
|
|
+
|
|
|
+ {isGuestUserMode && (
|
|
|
+ <UncontrolledTooltip placement="bottom" target="create-page-btn-wrapper-for-tooltip" fade={false}>
|
|
|
+ {t('Not available for guest')}
|
|
|
+ </UncontrolledTooltip>
|
|
|
+ )}
|
|
|
</div>
|
|
|
</div>
|
|
|
);
|
|
|
@@ -40,6 +52,7 @@ NotFoundAlert.propTypes = {
|
|
|
t: PropTypes.func.isRequired, // i18next
|
|
|
onPageCreateClicked: PropTypes.func,
|
|
|
isHidden: PropTypes.bool.isRequired,
|
|
|
+ isGuestUserMode: PropTypes.bool.isRequired,
|
|
|
};
|
|
|
|
|
|
export default withTranslation()(NotFoundAlert);
|