Web: Files: added consumer for Bar

This commit is contained in:
Dmitry Sychugov 2022-02-01 13:19:45 +05:00
parent d05234bf6c
commit 6a65f13c40

View File

@ -3,6 +3,7 @@ import { LANGUAGE } from "@appserver/common/constants";
import { ADS_TIMEOUT } from "../../../../helpers/constants";
import { getLanguage } from "@appserver/common/utils";
import SnackBar from "@appserver/components/snackbar";
import { Consumer } from "@appserver/components/utils/context";
const loadLanguagePath = () => {
if (!window.firebaseHelper) return;
@ -65,15 +66,22 @@ const bannerHOC = (props) => {
bar.remove();
};
const onLoad = () => setMaintenanceExist(true);
const onLoad = () => {
setMaintenanceExist(true);
};
return personal && !mainBarExistNode && htmlLink && !firstLoad ? (
return !mainBarExistNode && htmlLink && !firstLoad ? (
<Consumer>
{(context) => (
<SnackBar
sectionWidth={context.sectionWidth}
onLoad={onLoad}
clickAction={onClose}
isCampaings={true}
isCampaigns={true}
htmlContent={htmlLink}
/>
)}
</Consumer>
) : null;
};