✨ make forceDesktop work
This commit is contained in:
parent
36670f72fd
commit
f4d654a08f
1 changed files with 11 additions and 7 deletions
|
@ -1,20 +1,24 @@
|
|||
import React from 'react';
|
||||
import { useSelector } from 'react-redux';
|
||||
import MediaQuery from 'react-responsive';
|
||||
import ResponsiveForm from '../modules/User/components/ResponsiveForm';
|
||||
|
||||
export const mobileEnabled = () => (window.process.env.MOBILE_ENABLED === true);
|
||||
|
||||
|
||||
/** createMobileFirst: Receives the store, and creates a function that chooses between two components,
|
||||
* aimed at mobile and desktop resolutions, respectively.
|
||||
* The created function returns a Component (props => jsx)
|
||||
*/
|
||||
export const createMobileFirst = store => (MobileComponent, Fallback) => props => (
|
||||
export const createMobileFirst = store => (MobileComponent, Fallback) => (props) => {
|
||||
const { forceDesktop } = useSelector(state => state.editorAccessibility);
|
||||
return (
|
||||
<MediaQuery minWidth={770}>
|
||||
{matches => ((matches || (store && store.getState().editorAccessibility.forceDesktop) || (!mobileEnabled()))
|
||||
{matches => ((matches || (store && forceDesktop) || (!mobileEnabled()))
|
||||
? <Fallback {...props} />
|
||||
: <MobileComponent {...props} />)}
|
||||
</MediaQuery>);
|
||||
</MediaQuery>
|
||||
);
|
||||
};
|
||||
|
||||
export const responsiveForm = DesktopComponent => props => (
|
||||
<ResponsiveForm>
|
||||
|
|
Loading…
Reference in a new issue