mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-15 22:22:51 +00:00
48 lines
1.4 KiB
TypeScript
48 lines
1.4 KiB
TypeScript
import { Component, isValidElement } from 'react';
|
|
import classNames from 'classnames';
|
|
import EmbedTip from '../tip/embed-tip';
|
|
import './title.less';
|
|
import { createIcon } from '../../utils';
|
|
import { TitleContent, isI18nData } from '../../types';
|
|
import { intl } from '../../intl';
|
|
|
|
export class Title extends Component<{ title: TitleContent; className?: string; onClick?: () => void }> {
|
|
render() {
|
|
let { title, className, onClick } = this.props;
|
|
if (isValidElement(title)) {
|
|
return title;
|
|
}
|
|
if (typeof title === 'string' || isI18nData(title)) {
|
|
title = { label: title };
|
|
}
|
|
|
|
const icon = title.icon ? createIcon(title.icon) : null;
|
|
|
|
let tip: any = null;
|
|
if (title.tip) {
|
|
if (isValidElement(title.tip) && title.tip.type === EmbedTip) {
|
|
tip = title.tip;
|
|
} else {
|
|
const tipProps =
|
|
typeof title.tip === 'object' && !(isValidElement(title.tip) || isI18nData(title.tip))
|
|
? title.tip
|
|
: { children: title.tip };
|
|
tip = <EmbedTip direction="top" theme="black" {...tipProps} />;
|
|
}
|
|
}
|
|
|
|
return (
|
|
<span
|
|
className={classNames('lc-title', className, title.className, {
|
|
'has-tip': !!tip,
|
|
})}
|
|
onClick={onClick}
|
|
>
|
|
{icon ? <b className="lc-title-icon">{icon}</b> : null}
|
|
{title.label ? intl(title.label) : null}
|
|
{tip}
|
|
</span>
|
|
);
|
|
}
|
|
}
|