UNPKG

@lowdefy/blocks-antd

Version:

Lowdefy Ant Design Blocks

103 lines (99 loc) 4.43 kB
/* Copyright 2020-2026 Lowdefy, Inc Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ import { type } from '@lowdefy/helpers'; import classNames from 'classnames'; import getWrapperCol from './getWrapperCol.js'; import getLabelCol from './getLabelCol.js'; const labelLogic = ({ blockId, blockClassNames = {}, content, properties = {}, required = false, styles = {}, validation = { messages: [], status: null } })=>{ const wrapperCol = getWrapperCol(properties, properties.inline); const labelCol = getLabelCol(properties, properties.inline); // render label priority order: content.label area -> properties.title -> blockId and do not render an empty label let label = content.label ? content.label() : !type.isString(properties.title) ? blockId : properties.title; label = label === '' ? null : label; // trim colon when colon is set, and the user inputs a colon, because antd class renders a colon if (type.isString(label) && properties.colon && label.trim() !== '') { label = label.replace(/[:|:]\s*$/u, ''); } const rowClassName = classNames('ant-form-item', { 'ant-form-item-has-error': validation.status === 'error', 'ant-form-item-has-warning': validation.status === 'warning' }); const rowStyle = { flexWrap: properties.inline ? 'inherit' : undefined, marginBottom: 0 }; const labelColClassName = classNames({ 'ant-form-item-label': true, 'ant-form-item-label-left': properties.align === 'left' || !properties.align }); const labelColStyle = { overflow: properties.inline ? 'inherit' : undefined, whiteSpace: !properties.inline ? 'normal' : undefined, marginBottom: properties.size === 'small' ? 0 : 8 }; const labelClassName = classNames({ 'ant-form-item-required': required, 'ant-form-item-no-colon': properties.colon === false }, blockClassNames.label); const labelStyle = { height: 'fit-content', minHeight: properties.inline ? properties.size === 'large' ? 40 : properties.size === 'small' ? 24 : 32 : undefined, ...styles.label }; const extraClassName = classNames('ant-form-item-explain', 'ant-form-item-extra', blockClassNames.extra); const extraStyle = { marginTop: properties.size === 'small' ? -4 : 0, ...styles.extra }; const feedbackClassName = classNames({ 'ant-form-item-explain-success': validation.status === 'success', 'ant-form-item-explain-warning': validation.status === 'warning', 'ant-form-item-explain-error': validation.status === 'error', 'ant-form-item-explain-validating': validation.status === 'validating' }, blockClassNames.feedback); const feedbackStyle = { marginTop: properties.size === 'small' ? -4 : 0, ...styles.feedback }; const iconClassName = classNames({ 'ant-form-item-feedback-icon': true, 'ant-form-item-feedback-icon-success': validation.status === 'success', 'ant-form-item-feedback-icon-warning': validation.status === 'warning', 'ant-form-item-feedback-icon-error': validation.status === 'error', 'ant-form-item-feedback-icon-validating': validation.status === 'validating', 'ldf-feedback-icon': true }); const showExtra = !!properties.extra && (!validation.status || validation.status === 'success'); const showFeedback = validation.status === 'warning' || validation.status === 'error'; return { extraClassName, extraStyle, feedbackClassName, feedbackStyle, iconClassName, label: !properties.disabled && label, labelClassName, labelCol, labelColClassName, labelColStyle, labelStyle, rowClassName, rowStyle, showExtra, showFeedback, wrapperCol }; }; export default labelLogic;