forked from vueComponent/ant-design-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(divider): refactor with ts (vueComponent#2928)
* refactor(divider): refactor with ts * refactor(divider): add default value for dashed prop * style(divider): remove unuse import
- Loading branch information
Showing
3 changed files
with
52 additions
and
45 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
import { App, computed, defineComponent, inject, PropType, unref } from 'vue'; | ||
import { defaultConfigProvider } from '../config-provider'; | ||
|
||
const Divider = defineComponent({ | ||
name: 'ADivider', | ||
props: { | ||
prefixCls: String, | ||
type: { | ||
type: String as PropType<'horizontal' | 'vertical' | ''>, | ||
default: 'horizontal', | ||
}, | ||
dashed: { | ||
type: Boolean, | ||
default: false, | ||
}, | ||
orientation: { | ||
type: String as PropType<'left' | 'right' | 'center'>, | ||
default: 'center', | ||
}, | ||
}, | ||
setup(props, { slots }) { | ||
const { getPrefixCls } = inject('configProvider', defaultConfigProvider); | ||
const prefixCls = computed(() => getPrefixCls('divider', props.prefixCls)); | ||
|
||
const classString = computed(() => { | ||
const { type, dashed, orientation } = props; | ||
const orientationPrefix = orientation.length > 0 ? '-' + orientation : orientation; | ||
const prefixClsRef = unref(prefixCls); | ||
return { | ||
[prefixClsRef]: true, | ||
[`${prefixClsRef}-${type}`]: true, | ||
[`${prefixClsRef}-with-text${orientationPrefix}`]: slots.default, | ||
[`${prefixClsRef}-dashed`]: !!dashed, | ||
}; | ||
}); | ||
|
||
return () => { | ||
return ( | ||
<div class={classString.value} role="separator"> | ||
<span class={`${prefixCls.value}-inner-text`}>{slots.default?.()}</span> | ||
</div> | ||
); | ||
}; | ||
}, | ||
}); | ||
|
||
/* istanbul ignore next */ | ||
Divider.install = function(app: App) { | ||
app.component(Divider.name, Divider); | ||
}; | ||
|
||
export default Divider; |
File renamed without changes.