File size: 1,421 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
import { useContext, createContext } from '@wordpress/element';
import type { CurrentUser, HelpCenterSite } from '@automattic/data-stores';
export type HelpCenterRequiredInformation = {
locale: string;
sectionName: string;
currentUser: CurrentUser;
// some users have no sites at all.
site: HelpCenterSite | null;
hasPurchases: boolean;
primarySiteId: number;
googleMailServiceFamily: string;
onboardingUrl: string;
};
const defaultContext: HelpCenterRequiredInformation = {
locale: '',
sectionName: '',
currentUser: {
ID: 0,
display_name: '',
username: '',
email: '',
language: '',
localeSlug: '',
locale_variant: '',
localeVariant: '',
site_count: 0,
},
site: null,
hasPurchases: false,
primarySiteId: 0,
googleMailServiceFamily: '',
onboardingUrl: '',
};
const HelpCenterRequiredContext = createContext< HelpCenterRequiredInformation >( defaultContext );
export const HelpCenterRequiredContextProvider: React.FC< {
children: JSX.Element;
value: Partial< HelpCenterRequiredInformation > &
Pick< HelpCenterRequiredInformation, 'currentUser' | 'sectionName' >;
} > = function ( { children, value } ) {
return (
<HelpCenterRequiredContext.Provider
value={ {
...Object.assign( defaultContext, value ),
} }
>
{ children }
</HelpCenterRequiredContext.Provider>
);
};
export function useHelpCenterContext() {
return useContext( HelpCenterRequiredContext );
}
|