Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { useRef } from 'react';
import { shouldUseStepContainerV2 } from 'calypso/landing/stepper/declarative-flow/helpers/should-use-step-container-v2';
import { DEFAULT_FLOW, getFlowFromURL } from 'calypso/landing/stepper/utils/get-flow-from-url';
import { isWpMobileApp } from 'calypso/lib/mobile-app';
let lastScrollPosition = 0; // Used for calculating scroll direction.
let sidebarTop = 0; // Current sidebar top position.
let pinnedSidebarTop = true; // We pin sidebar to the top by default.
let pinnedSidebarBottom = false;
let ticking = false; // Used for Scroll event throttling.
export function shouldLoadInlineHelp( sectionName: string, currentRoute: string ) {
if ( isWpMobileApp() ) {
return false;
}
const exemptedSections = [ 'jetpack-connect', 'devdocs', 'help', 'home' ];
const exemptedRoutes = [ '/log-in/jetpack' ];
const exemptedRoutesStartingWith = [
'/start/p2',
'/start/setup-site',
'/start/newsletter',
'/plugins/domain',
'/plugins/marketplace/setup',
];
return (
! exemptedSections.includes( sectionName ) &&
! exemptedRoutes.includes( currentRoute ) &&
! exemptedRoutesStartingWith.some( ( startsWithString ) =>
currentRoute.startsWith( startsWithString )
)
);
}
export const handleScroll = ( event: React.UIEvent< HTMLElement > ): void => {
// Do not run until next requestAnimationFrame or if running out of browser context.
if ( ticking ) {
return;
}
const windowHeight = window.innerHeight;
const contentEl = document.getElementById( 'content' );
const contentHeight = contentEl?.scrollHeight;
const secondaryEl = document.getElementById( 'secondary' ); // Or referred as sidebar.
const secondaryElHeight = secondaryEl?.scrollHeight;
const masterbarHeight = document.getElementById( 'header' )?.getBoundingClientRect().height;
// Check whether we need to adjust content height so that scroll events are triggered.
// Sidebar has overflow: initial and position:fixed, so content is our only chance for scroll events.
if ( contentEl && contentHeight && masterbarHeight && secondaryElHeight ) {
if ( contentHeight < secondaryElHeight ) {
// Adjust the content height so that it matches the sidebar + masterbar vertical scroll estate.
contentEl.style.minHeight = secondaryElHeight + masterbarHeight + 'px';
}
if (
windowHeight >= secondaryElHeight + masterbarHeight &&
contentEl &&
secondaryEl &&
( contentEl.style.minHeight !== 'initial' || secondaryEl.style.position )
) {
// In case that window is taller than the sidebar we reinstate the content min-height. CSS code: client/layout/style.scss:30.
contentEl.style.minHeight = 'initial';
// In case that window is taller than the sidebar after resize we need to clean up any previously set inline styles
secondaryEl.removeAttribute( 'style' );
}
}
if (
secondaryEl &&
secondaryElHeight !== undefined &&
masterbarHeight !== undefined &&
( secondaryElHeight + masterbarHeight > windowHeight || 'resize' === event.type ) // Only run when sidebar & masterbar are taller than window height OR we have a resize event
) {
// Throttle scroll event
window.requestAnimationFrame( function () {
const maxScroll = secondaryElHeight + masterbarHeight - windowHeight; // Max sidebar inner scroll.
const scrollY = -document.body.getBoundingClientRect().top; // Get current scroll position.
// Check for overscrolling, this happens when swiping up at the top of the document in modern browsers.
if ( scrollY < 0 ) {
// Stick the sidebar to the top.
if ( ! pinnedSidebarTop ) {
pinnedSidebarTop = true;
pinnedSidebarBottom = false;
secondaryEl.style.position = 'fixed';
secondaryEl.style.top = '0';
secondaryEl.style.bottom = '0';
}
ticking = false;
return;
} else if ( scrollY + windowHeight > document.body.scrollHeight - 1 ) {
// When overscrolling at the bottom, stick the sidebar to the bottom.
if ( ! pinnedSidebarBottom ) {
pinnedSidebarBottom = true;
pinnedSidebarTop = false;
secondaryEl.style.position = 'fixed';
secondaryEl.style.top = 'inherit';
secondaryEl.style.bottom = '0';
}
ticking = false;
return;
}
if ( scrollY >= lastScrollPosition ) {
// When a down scroll has been detected.
if ( pinnedSidebarTop ) {
pinnedSidebarTop = false;
sidebarTop = masterbarHeight;
if ( scrollY > maxScroll ) {
//In case we have already passed the available scroll of the sidebar, add the current scroll
sidebarTop += scrollY;
}
secondaryEl.style.position = 'absolute';
secondaryEl.style.top = `${ sidebarTop }px`;
secondaryEl.style.bottom = 'inherit';
} else if (
! pinnedSidebarBottom &&
scrollY + masterbarHeight > maxScroll + secondaryEl.offsetTop
) {
// Pin it to the bottom.
pinnedSidebarBottom = true;
secondaryEl.style.position = 'fixed';
secondaryEl.style.top = 'inherit';
secondaryEl.style.bottom = '0';
}
} else if ( scrollY < lastScrollPosition ) {
// When a scroll up is detected.
// If it was pinned to the bottom, unpin and calculate relative scroll.
if ( pinnedSidebarBottom ) {
pinnedSidebarBottom = false;
// Calculate new offset position.
sidebarTop = Math.max( 0, scrollY + masterbarHeight - maxScroll );
if ( contentHeight === secondaryElHeight + masterbarHeight ) {
// When content is originally shorter than the sidebar and
// we have already made it equal to the sidebar + masterbar
// the offset will always be the masterbar height (top position).
sidebarTop = masterbarHeight;
}
secondaryEl.style.position = 'absolute';
secondaryEl.style.top = `${ sidebarTop }px`;
secondaryEl.style.bottom = 'inherit';
} else if ( ! pinnedSidebarTop && scrollY + masterbarHeight < sidebarTop ) {
// Pin it to the top.
pinnedSidebarTop = true;
sidebarTop = masterbarHeight;
secondaryEl.style.position = 'fixed';
secondaryEl.style.top = `${ sidebarTop }px`;
secondaryEl.style.bottom = 'inherit';
}
}
lastScrollPosition = scrollY;
ticking = false;
} );
ticking = true;
}
};
const isRedirectingToStepContainerV2Flow = ( redirectTo: string ) => {
const { pathname, search } = new URL( redirectTo, 'http://example.com' );
return shouldUseStepContainerV2( getFlowFromURL( pathname, search ) );
};
const isMarketplaceThankYouRedirect = ( redirectTo: string ) => {
const { pathname, searchParams } = new URL( redirectTo, 'http://example.com' );
return pathname.startsWith( '/marketplace' ) && searchParams.has( 'onboarding' );
};
/**
* Returns whether to display the StepContainerV2 features from up in the tree.
* This can be used, for example, to determine if we should show
* the StepContainerV2 loader or hide the masterbar.
*/
export const isInStepContainerV2FlowContext = ( pathname: string, query: string ) => {
if ( pathname.startsWith( '/setup' ) ) {
return shouldUseStepContainerV2( getFlowFromURL( pathname, query ) || DEFAULT_FLOW );
}
if ( pathname.startsWith( '/checkout' ) ) {
// The checkout isn't technically part of a stepper flow, but we can infer what stepper
// flow it came from (if any) by inspecting the redirect_to query param (in the case
// of the onboarding flow).
const params = new URLSearchParams( query );
const redirectTo = params.get( 'redirect_to' ) ?? '';
const cancelTo = params.get( 'cancel_to' ) ?? '';
if ( isRedirectingToStepContainerV2Flow( redirectTo ) ) {
return true;
}
if ( isRedirectingToStepContainerV2Flow( cancelTo ) ) {
return true;
}
if ( isMarketplaceThankYouRedirect( redirectTo ) ) {
return true;
}
}
if ( pathname.startsWith( '/marketplace' ) ) {
const params = new URLSearchParams( query );
if ( params.has( 'onboarding' ) ) {
return true;
}
const redirectTo = params.get( 'redirect_to' ) ?? '';
return isMarketplaceThankYouRedirect( redirectTo );
}
return false;
};
export const useInitialIsInStepContainerV2FlowContext = () => {
const ref = useRef(
isInStepContainerV2FlowContext( window.location.pathname, window.location.search )
);
return ref.current;
};