import './lockNotification.less'; import * as React from 'react'; import request from '../../../utils/request-middleware.js'; import Dialog from '../../../../components/dialog.jsx'; function LockNotification(props) { props = { shareId : 0, disableLock : ()=>{}, lock : {}, message : 'Unable to retrieve Lock Message', reviewRequested : false, ...props }; const [reviewState, setReviewState] = React.useState(props.reviewRequested); const removeLock = async ()=>{ await request.put(`/api/lock/review/request/${props.shareId}`) .then(()=>{ setReviewState(true); }); }; const renderReviewButton = function(){ if(reviewState){ return REVIEW REQUESTED; }; return REQUEST LOCK REMOVAL; }; return BREW LOCKED This brew been locked by the Administrators. It will not be accessible by any method other than the Editor until the lock is removed. LOCK REASON {props.message} Once you have resolved this issue, click REQUEST LOCK REMOVAL to notify the Administrators for review. Click CONTINUE TO EDITOR to temporarily hide this notification; it will reappear the next time the page is reloaded. {renderReviewButton()} ; }; module.exports = LockNotification;
This brew been locked by the Administrators. It will not be accessible by any method other than the Editor until the lock is removed.
{props.message}
Once you have resolved this issue, click REQUEST LOCK REMOVAL to notify the Administrators for review.
Click CONTINUE TO EDITOR to temporarily hide this notification; it will reappear the next time the page is reloaded.