PromucFlow_constructor/app/client/src/selectors/onboardingSelectors.tsx

11 lines
408 B
TypeScript
Raw Normal View History

2021-07-28 07:02:11 +00:00
import { AppState } from "reducers";
export const getIsOnboardingHelperVisible = (state: AppState) => {
const urlSearchParams = new URL(window.location.href).searchParams;
const isCommentModeInUrl = urlSearchParams.get("isCommentMode");
return state.ui.onBoarding.showHelper && !isCommentModeInUrl;
};
export const showWelcomeScreen = (state: AppState) =>
state.ui.onBoarding.showOnboardingLoader;