You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.0 KiB
36 lines
1.0 KiB
import Omit from 'omit.js';
|
|
import { FunctionalComponent } from 'vue';
|
|
import { tupleNum } from '../_util/type';
|
|
import PropTypes from '../_util/vue-types';
|
|
import warning from '../_util/warning';
|
|
import Base, { baseProps, BlockProps } from './Base';
|
|
|
|
const TITLE_ELE_LIST = tupleNum(1, 2, 3, 4, 5);
|
|
|
|
export type TitleProps = Omit<BlockProps & { level?: typeof TITLE_ELE_LIST[number] }, 'strong'>;
|
|
|
|
const Title: FunctionalComponent<TitleProps> = (props, { slots, attrs }) => {
|
|
const { level = 1, ...restProps } = props;
|
|
let component: string;
|
|
if (TITLE_ELE_LIST.indexOf(level) !== -1) {
|
|
component = `h${level}`;
|
|
} else {
|
|
warning(false, 'Typography', 'Title only accept `1 | 2 | 3 | 4 | 5` as `level` value.');
|
|
component = 'h1';
|
|
}
|
|
|
|
const titleProps = {
|
|
...restProps,
|
|
component,
|
|
...attrs,
|
|
};
|
|
|
|
return <Base {...titleProps} v-slots={slots}></Base>;
|
|
};
|
|
|
|
Title.displayName = 'ATypographyTitle';
|
|
Title.inheritAttrs = false;
|
|
Title.props = Omit({ ...baseProps(), level: PropTypes.number }, ['component', 'strong']);
|
|
|
|
export default Title;
|