@carbon/react
Version:
React components for the Carbon Design System
29 lines (25 loc) • 783 B
JavaScript
/**
* Copyright IBM Corp. 2016, 2023
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
const popoverAlignMapping = {
'top-left': 'top-start',
'top-right': 'top-end',
'bottom-left': 'bottom-start',
'bottom-right': 'bottom-end',
'left-bottom': 'left-end',
'left-top': 'left-start',
'right-bottom': 'right-end',
'right-top': 'right-start'
};
/**
* Maps popover alignment values to their corresponding replacement values.
*
* @param align - The original align value.
* @returns The new align value based on mapping or the original align if no
* mapping exists.
*/
const mapPopoverAlign = align => popoverAlignMapping[align] ?? align;
export { mapPopoverAlign };