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.
79 lines
2.4 KiB
79 lines
2.4 KiB
// import '../../style/index.less';
|
|
// import './index.less';
|
|
|
|
// // style dependencies
|
|
// // deps-lint-skip: tree, form
|
|
// import '../../select/style';
|
|
// import '../../empty/style';
|
|
|
|
// deps-lint-skip-all
|
|
import type { GenerateStyle, FullToken } from '../../_util/theme';
|
|
import { genComponentStyleHook, mergeToken } from '../../_util/theme';
|
|
import { getStyle as getCheckboxStyle } from '../../checkbox/style';
|
|
import { genTreeStyle } from '../../tree/style';
|
|
|
|
interface TreeSelectToken extends FullToken<'TreeSelect'> {
|
|
treePrefixCls: string;
|
|
}
|
|
|
|
// =============================== Base ===============================
|
|
const genBaseStyle: GenerateStyle<TreeSelectToken> = token => {
|
|
const { componentCls, treePrefixCls } = token;
|
|
const treeCls = `.${treePrefixCls}`;
|
|
|
|
return [
|
|
// ======================================================
|
|
// == Dropdown ==
|
|
// ======================================================
|
|
{
|
|
[`${componentCls}-dropdown`]: [
|
|
{
|
|
padding: `${token.paddingXS}px ${token.paddingXS / 2}px`,
|
|
},
|
|
|
|
// ====================== Tree ======================
|
|
genTreeStyle(treePrefixCls, token),
|
|
{
|
|
[treeCls]: {
|
|
borderRadius: 0,
|
|
'&-list-holder-inner': {
|
|
alignItems: 'stretch',
|
|
|
|
[`${treeCls}-treenode`]: {
|
|
[`${treeCls}-node-content-wrapper`]: {
|
|
flex: 'auto',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
|
|
// ==================== Checkbox ====================
|
|
getCheckboxStyle(`${treePrefixCls}-checkbox`, token),
|
|
|
|
// ====================== RTL =======================
|
|
{
|
|
'&-rtl': {
|
|
direction: 'rtl',
|
|
|
|
[`${treeCls}-switcher${treeCls}-switcher_close`]: {
|
|
[`${treeCls}-switcher-icon svg`]: {
|
|
transform: 'rotate(90deg)',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
],
|
|
},
|
|
];
|
|
};
|
|
|
|
// ============================== Export ==============================
|
|
export default function useTreeSelectStyle(prefixCls: string, treePrefixCls: string) {
|
|
return genComponentStyleHook('TreeSelect', token => {
|
|
const treeSelectToken = mergeToken<TreeSelectToken>(token, {
|
|
treePrefixCls,
|
|
});
|
|
return [genBaseStyle(treeSelectToken)];
|
|
})(prefixCls);
|
|
}
|
|
|