/** * WordPress dependencies */ import { dispatch, select } from '@safe-wordpress/data'; import { render } from '@safe-wordpress/element'; /** * External dependencies */ import { store as NC_DATA } from '@nelio-content/data'; /** * Internal dependencies */ import { store as NC_ANALYTICS } from './store'; import { Layout } from './components/layout'; export function initPage( id: string ): void { const content = document.getElementById( id ); render( , content ); setCorrectSortingCriterion(); loadPostAnalytics(); } // ======= // HELPERS // ======= function setCorrectSortingCriterion() { const { isGAConnected } = select( NC_DATA ); if ( isGAConnected() ) { return; } const { sortBy } = dispatch( NC_ANALYTICS ); void sortBy( 'engagement' ); } function loadPostAnalytics() { const { loadPosts } = dispatch( NC_ANALYTICS ); void loadPosts(); }