24 lines
447 B
JavaScript
24 lines
447 B
JavaScript
function isActive(current, index, disabled) {
|
|
if (disabled) {
|
|
return false;
|
|
}
|
|
return (current || []).indexOf(index) >= 0;
|
|
}
|
|
|
|
function getStyleHeight(index, contentHeight, disabled) {
|
|
if (disabled) {
|
|
return 'height: 0px';
|
|
}
|
|
const height = contentHeight[index];
|
|
if (height === '') {
|
|
return '';
|
|
}
|
|
if (height) {
|
|
return `height: ${height}`;
|
|
}
|
|
return 'height: 0px';
|
|
}
|
|
|
|
|
|
export default { isActive, getStyleHeight };
|