File size: 1,154 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 |
import { CATEGORY_PAGE } from 'calypso/my-sites/patterns/constants';
import { getCategoryUrlPath } from 'calypso/my-sites/patterns/paths';
import { PatternTypeFilter, Category, Pattern } from 'calypso/my-sites/patterns/types';
// We intentionally disregard grid view when generating pattern permalinks. Our assumption is that
// it will be more confusing for users to land in grid view when they have a single-pattern permalink
export function getPatternPermalink(
pattern: Pattern,
activeCategory: string,
allCategories: Category[]
) {
const categoryNames = Object.keys( pattern.categories );
// Get the first pattern category that is also included in the `usePatternCategories` data
const patternCategory = categoryNames.find( ( categorySlug ) =>
allCategories.find( ( { name } ) => name === categorySlug )
);
const patternType = categoryNames.includes( CATEGORY_PAGE )
? PatternTypeFilter.PAGES
: PatternTypeFilter.REGULAR;
const pathname = getCategoryUrlPath( activeCategory || patternCategory || '', patternType );
const url = new URL( pathname, location.origin );
url.hash = `#pattern-${ pattern.ID }`;
return url.toString();
}
|