File size: 1,106 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 |
import { apiFetch } from '@wordpress/data-controls';
import { canAccessWpcomApis } from 'wpcom-proxy-request';
import { wpcomRequest } from '../wpcom-request-controls';
import { setHelpCenterRouterHistory } from './actions';
import type { APIFetchOptions } from './types';
import type { Location } from 'history';
export function* isHelpCenterShown() {
try {
const preferences: {
help_center_open: boolean;
help_center_router_history: {
entries: Location[];
index: number;
};
} = canAccessWpcomApis()
? yield wpcomRequest( {
path: '/me/preferences',
apiNamespace: 'wpcom/v2',
} )
: yield apiFetch( {
global: true,
path: '/help-center/open-state',
} as APIFetchOptions );
if ( preferences.help_center_router_history ) {
yield setHelpCenterRouterHistory( preferences.help_center_router_history );
}
// We only want to auto-open, we don't want to auto-close (and potentially overrule the user's action).
if ( preferences.help_center_open ) {
return {
type: 'HELP_CENTER_SET_SHOW',
show: true,
} as const;
}
} catch {}
}
|