Skip to content

Commit

Permalink
For the styles panel, send the correct recordCount via optional prop …
Browse files Browse the repository at this point in the history
…to the footer component.

This allows us to remove the globalstyle record selector.
  • Loading branch information
ramonjd committed Nov 20, 2024
1 parent d57502e commit 7855cda
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import SidebarNavigationItem from '../sidebar-navigation-item';

export default function SidebarNavigationScreenDetailsFooter( {
record,
recordCount = 0,
...otherProps
} ) {
/*
Expand All @@ -35,9 +36,9 @@ export default function SidebarNavigationScreenDetailsFooter( {
const lastRevisionId =
record?._links?.[ 'predecessor-version' ]?.[ 0 ]?.id ?? null;
const revisionsCount =
record?._links?.[ 'version-history' ]?.[ 0 ]?.count ?? 0;
// Enable the revisions link if there is a last revision and there are more than one revisions.
if ( lastRevisionId && revisionsCount > 1 ) {
recordCount || record?._links?.[ 'version-history' ]?.[ 0 ]?.count;
// Enable the revisions link if there is a last revision and there is more than one revision.
if ( lastRevisionId && revisionsCount ) {
hrefProps.href = addQueryArgs( 'revision.php', {
revision: record?._links[ 'predecessor-version' ][ 0 ].id,
} );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,24 +48,15 @@ export function SidebarNavigationItemGlobalStyles( props ) {
export default function SidebarNavigationScreenGlobalStyles() {
const history = useHistory();
const { params } = useLocation();
const { revisions, isLoading: isLoadingRevisions } =
useGlobalStylesRevisions();
const {
revisions,
isLoading: isLoadingRevisions,
revisionsCount,
} = useGlobalStylesRevisions();
const { openGeneralSidebar } = useDispatch( editSiteStore );
const { setEditorCanvasContainerView } = unlock(
useDispatch( editSiteStore )
);
const { revisionsCount } = useSelect( ( select ) => {
const { getEntityRecord, __experimentalGetCurrentGlobalStylesId } =
select( coreStore );
const globalStylesId = __experimentalGetCurrentGlobalStylesId();
const globalStyles = globalStylesId
? getEntityRecord( 'root', 'globalStyles', globalStylesId )
: undefined;
return {
revisionsCount:
globalStyles?._links?.[ 'version-history' ]?.[ 0 ]?.count ?? 0,
};
}, [] );
const { set: setPreference } = useDispatch( preferencesStore );

const openGlobalStyles = useCallback( async () => {
Expand Down Expand Up @@ -95,10 +86,10 @@ export default function SidebarNavigationScreenGlobalStyles() {
}, [ openGlobalStyles, setEditorCanvasContainerView ] );

// If there are no revisions, do not render a footer.
const hasRevisions = revisionsCount > 0;
const modifiedDateTime = revisions?.[ 0 ]?.modified;
const shouldShowGlobalStylesFooter =
hasRevisions && ! isLoadingRevisions && modifiedDateTime;
revisionsCount && ! isLoadingRevisions && modifiedDateTime;

return (
<>
<SidebarNavigationScreen
Expand All @@ -114,6 +105,7 @@ export default function SidebarNavigationScreenGlobalStyles() {
shouldShowGlobalStylesFooter && (
<SidebarNavigationScreenDetailsFooter
record={ revisions?.[ 0 ] }
recordCount={ revisionsCount }
onClick={ openRevisions }
/>
)
Expand Down

0 comments on commit 7855cda

Please sign in to comment.