All Downloads are FREE. Search and download functionalities are using the official Maven repository.

components.widgets.Table.cells.StatusCell.StatusCell.jsx Maven / Gradle / Ivy

The newest version!
import React from 'react'
import PropTypes from 'prop-types'
import get from 'lodash/get'

import { StatusText } from '../../../../snippets/StatusText/StatusText'
import withTooltip from '../../withTooltip'

/**
 * Ячейка таблицы типа статус
 * @reactProps {string} id
 * @reactProps {object} model - модель данных
 * @reactProps {string} fieldKey - ключ модели для этой ячейки
 * @reactProps {string} color - цветовая схема бейджа(["primary", "secondary", "success", "danger", "warning", "info", "light", "dark", "white"])
 * @example
 * 
 */

function StatusCell({
    id,
    className,
    visible,
    color,
    model,
    fieldKey,
    textPosition,
    forwardedRef,
}) {
    if (!visible) { return null }

    const statusText = get(model, fieldKey || id)

    return (
        
) } StatusCell.propTypes = { /** * ID ячейки */ id: PropTypes.string, /** * Класс */ className: PropTypes.string, /** * Ключ значения в данных */ fieldKey: PropTypes.string, /** * Модель данных */ model: PropTypes.object, /** * Цвет стаутуса */ color: PropTypes.oneOf([ 'primary', 'secondary', 'success', 'danger', 'warning', 'info', 'light', 'dark', 'white', ]), /** * Флаг видимости */ visible: PropTypes.bool, textPosition: PropTypes.string, } StatusCell.defaultProps = { visible: true, model: {}, color: '', } export default withTooltip(StatusCell)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy