mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
32 lines
789 B
JavaScript
32 lines
789 B
JavaScript
import React from 'react';
|
|
import { includes } from 'lodash';
|
|
|
|
import { compose } from 'utils';
|
|
import { Redirect } from 'react-router-dom';
|
|
import withSubscriptions from '../../containers/Subscriptions/withSubscriptionss';
|
|
|
|
/**
|
|
* Ensures the given subscription type is active or redirect to the given route.
|
|
*/
|
|
function EnsureSubscriptionsIsInactive({
|
|
children,
|
|
subscriptionType = 'main',
|
|
redirectTo = '/billing',
|
|
routePath,
|
|
exclude,
|
|
isSubscriptionsInactive,
|
|
}) {
|
|
return !isSubscriptionsInactive || includes(exclude, routePath) ? (
|
|
children
|
|
) : (
|
|
<Redirect to={{ pathname: redirectTo }} />
|
|
);
|
|
}
|
|
|
|
export default compose(
|
|
withSubscriptions(
|
|
({ isSubscriptionsInactive }) => ({ isSubscriptionsInactive }),
|
|
'main',
|
|
),
|
|
)(EnsureSubscriptionsIsInactive);
|