vuecssuiant-designantdreactantantd-vueenterprisefrontendui-designvue-antdvue-antd-uivue3vuecomponent
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.
39 lines
1.1 KiB
39 lines
1.1 KiB
import type { ExtractPropTypes, FunctionalComponent, PropType } from 'vue'; |
|
import omit from '../_util/omit'; |
|
import { tupleNum } from '../_util/type'; |
|
import warning from '../_util/warning'; |
|
import Base, { baseProps } from './Base'; |
|
|
|
const TITLE_ELE_LIST = tupleNum(1, 2, 3, 4, 5); |
|
|
|
export const titleProps = () => ({ |
|
...omit(baseProps(), ['component', 'strong']), |
|
level: Number as PropType<(typeof TITLE_ELE_LIST)[number]>, |
|
}); |
|
|
|
export type TitleProps = Partial<ExtractPropTypes<ReturnType<typeof titleProps>>>; |
|
|
|
const Title: FunctionalComponent<TitleProps> = (props, { slots, attrs }) => { |
|
const { level = 1, ...restProps } = props; |
|
let component: string; |
|
if (TITLE_ELE_LIST.includes(level)) { |
|
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 = titleProps(); |
|
|
|
export default Title;
|
|
|