Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
20 lines
No EOL
548 B
Text
20 lines
No EOL
548 B
Text
import uniqBy from 'lodash/uniqBy';
|
|
import isFunction from 'lodash/isFunction';
|
|
|
|
/**
|
|
* This is configuration option that decides how to filter for unique values only:
|
|
*
|
|
* - `false` means "no filter"
|
|
* - `true` means "use recharts default filter"
|
|
* - function means "use return of this function as the default key"
|
|
*/
|
|
|
|
export function getUniqPayload(payload, option, defaultUniqBy) {
|
|
if (option === true) {
|
|
return uniqBy(payload, defaultUniqBy);
|
|
}
|
|
if (isFunction(option)) {
|
|
return uniqBy(payload, option);
|
|
}
|
|
return payload;
|
|
} |