mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(TextEllipsis): add action
slot (#12560)
Co-authored-by: neverland <chenjiahan.jait@bytedance.com>
This commit is contained in:
parent
5cb8f3253b
commit
3f6a00ae20
@ -127,6 +127,28 @@ export default {
|
|||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Custom Action
|
||||||
|
|
||||||
|
Use `action` slots to custom action.
|
||||||
|
|
||||||
|
```html
|
||||||
|
<van-text-ellipsis :content="text">
|
||||||
|
<template #action="{ expanded }">
|
||||||
|
{{ expanded ? 'Collapse' : 'Expand' }}
|
||||||
|
</template>
|
||||||
|
</van-text-ellipsis>
|
||||||
|
```
|
||||||
|
|
||||||
|
```js
|
||||||
|
export default {
|
||||||
|
setup() {
|
||||||
|
const text =
|
||||||
|
'Take your time and be patient. Life itself will eventually answer all those questions it once raised for you.';
|
||||||
|
return { text };
|
||||||
|
},
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
## API
|
## API
|
||||||
|
|
||||||
### Props
|
### Props
|
||||||
@ -154,6 +176,12 @@ Use [ref](https://vuejs.org/guide/essentials/template-refs.html) to get TextElli
|
|||||||
| ------ | ---------------------- | -------------------- | ------------ |
|
| ------ | ---------------------- | -------------------- | ------------ |
|
||||||
| toggle | Toggle expanded status | _expanded?: boolean_ | - |
|
| toggle | Toggle expanded status | _expanded?: boolean_ | - |
|
||||||
|
|
||||||
|
### Slots
|
||||||
|
|
||||||
|
| Name | Description | SlotProps |
|
||||||
|
| --------------- | ------------- | ----------------------- |
|
||||||
|
| action `v4.8.3` | Custom action | _{ expanded: boolean }_ |
|
||||||
|
|
||||||
### Types
|
### Types
|
||||||
|
|
||||||
The component exports the following type definitions:
|
The component exports the following type definitions:
|
||||||
|
@ -124,6 +124,25 @@ export default {
|
|||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### 自定义操作内容
|
||||||
|
|
||||||
|
通过插槽 `action` 自定义操作内容。
|
||||||
|
|
||||||
|
```html
|
||||||
|
<van-text-ellipsis :content="text">
|
||||||
|
<template #action="{ expanded }">{{ expanded ? '收起' : '展开' }}</template>
|
||||||
|
</van-text-ellipsis>
|
||||||
|
```
|
||||||
|
|
||||||
|
```js
|
||||||
|
export default {
|
||||||
|
setup() {
|
||||||
|
const text = '慢慢来,不要急,生活给你出了难题,可也终有一天会给出答案。';
|
||||||
|
return { text };
|
||||||
|
},
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
## API
|
## API
|
||||||
|
|
||||||
### Props
|
### Props
|
||||||
@ -151,6 +170,12 @@ export default {
|
|||||||
| --- | --- | --- | --- |
|
| --- | --- | --- | --- |
|
||||||
| toggle | 切换文本的展开状态,传 `true` 为展开,`false` 为收起,不传参为切换 | _expanded?: boolean_ | - |
|
| toggle | 切换文本的展开状态,传 `true` 为展开,`false` 为收起,不传参为切换 | _expanded?: boolean_ | - |
|
||||||
|
|
||||||
|
### Slots
|
||||||
|
|
||||||
|
| 名称 | 说明 | 参数 |
|
||||||
|
| --------------- | ---------- | ----------------------- |
|
||||||
|
| action `v4.8.3` | 自定义操作 | _{ expanded: boolean }_ |
|
||||||
|
|
||||||
### 类型定义
|
### 类型定义
|
||||||
|
|
||||||
组件导出以下类型定义:
|
组件导出以下类型定义:
|
||||||
|
@ -37,7 +37,7 @@ export default defineComponent({
|
|||||||
|
|
||||||
emits: ['clickAction'],
|
emits: ['clickAction'],
|
||||||
|
|
||||||
setup(props, { emit }) {
|
setup(props, { emit, slots }) {
|
||||||
const text = ref('');
|
const text = ref('');
|
||||||
const expanded = ref(false);
|
const expanded = ref(false);
|
||||||
const hasAction = ref(false);
|
const hasAction = ref(false);
|
||||||
@ -196,11 +196,16 @@ export default defineComponent({
|
|||||||
emit('clickAction', event);
|
emit('clickAction', event);
|
||||||
};
|
};
|
||||||
|
|
||||||
const renderAction = () => (
|
const renderAction = () => {
|
||||||
<span class={bem('action')} onClick={onClickAction}>
|
const action = slots.action
|
||||||
{actionText.value}
|
? slots.action({ expanded: expanded.value })
|
||||||
</span>
|
: actionText.value;
|
||||||
);
|
return (
|
||||||
|
<span class={bem('action')} onClick={onClickAction}>
|
||||||
|
{action}
|
||||||
|
</span>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
onMounted(calcEllipsised);
|
onMounted(calcEllipsised);
|
||||||
|
|
||||||
|
@ -16,6 +16,7 @@ const t = useTranslate({
|
|||||||
collapsePosition: '自定义省略位置',
|
collapsePosition: '自定义省略位置',
|
||||||
collapseStart: '头部省略',
|
collapseStart: '头部省略',
|
||||||
collapseMiddle: '中部省略',
|
collapseMiddle: '中部省略',
|
||||||
|
customAction: '自定义操作内容',
|
||||||
},
|
},
|
||||||
'en-US': {
|
'en-US': {
|
||||||
text1:
|
text1:
|
||||||
@ -31,6 +32,7 @@ const t = useTranslate({
|
|||||||
collapsePosition: 'Custom Collapse Position',
|
collapsePosition: 'Custom Collapse Position',
|
||||||
collapseStart: 'Head Area Collapse Position',
|
collapseStart: 'Head Area Collapse Position',
|
||||||
collapseMiddle: 'Middle Area Collapse Position',
|
collapseMiddle: 'Middle Area Collapse Position',
|
||||||
|
customAction: 'Custom Action',
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
@ -77,6 +79,14 @@ const t = useTranslate({
|
|||||||
position="middle"
|
position="middle"
|
||||||
/>
|
/>
|
||||||
</demo-block>
|
</demo-block>
|
||||||
|
|
||||||
|
<demo-block :title="t('customAction')">
|
||||||
|
<van-text-ellipsis :content="t('text1')">
|
||||||
|
<template #action="{ expanded }">
|
||||||
|
{{ expanded ? t('collapseText') : t('expandText') }}
|
||||||
|
</template>
|
||||||
|
</van-text-ellipsis>
|
||||||
|
</demo-block>
|
||||||
</demo-block>
|
</demo-block>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -29,5 +29,10 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
<div class="van-text-ellipsis">
|
<div class="van-text-ellipsis">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div>
|
||||||
|
<!--[-->
|
||||||
|
<div class="van-text-ellipsis">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
|
@ -41,5 +41,13 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div>
|
||||||
|
<div class="van-text-ellipsis">
|
||||||
|
...
|
||||||
|
<span class="van-text-ellipsis__action">
|
||||||
|
expand
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
|
@ -1,5 +1,32 @@
|
|||||||
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
||||||
|
|
||||||
|
exports[`should render action slot correctly 1`] = `
|
||||||
|
<div class="van-text-ellipsis">
|
||||||
|
Vant is a lightweight, customizable mobile component library th...
|
||||||
|
<span class="van-text-ellipsis__action">
|
||||||
|
Collapse
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
|
||||||
|
exports[`should render action slot correctly 2`] = `
|
||||||
|
<div class="van-text-ellipsis">
|
||||||
|
Vant is a lightweight, customizable mobile component library that was open sourced in 2017. Currently Vant officially provides Vue 2 version, Vue 3 version and WeChat applet version, and the community team maintains React version and Alipay applet version.
|
||||||
|
<span class="van-text-ellipsis__action">
|
||||||
|
Expand
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
|
||||||
|
exports[`should render action slot correctly 3`] = `
|
||||||
|
<div class="van-text-ellipsis">
|
||||||
|
Vant is a lightweight, customizable mobile component library th...
|
||||||
|
<span class="van-text-ellipsis__action">
|
||||||
|
Collapse
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
|
||||||
exports[`should render content correctly 1`] = `
|
exports[`should render content correctly 1`] = `
|
||||||
<div class="van-text-ellipsis">
|
<div class="van-text-ellipsis">
|
||||||
Vant is a lightweight, customizable mobile component library th...
|
Vant is a lightweight, customizable mobile component library th...
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import { mount } from '../../../test';
|
import { mount } from '../../../test';
|
||||||
import { nextTick } from 'vue';
|
import { nextTick } from 'vue';
|
||||||
import TextEllipsis from '..';
|
import TextEllipsis, { type TextEllipsisInstance } from '..';
|
||||||
|
|
||||||
const originGetComputedStyle = window.getComputedStyle;
|
const originGetComputedStyle = window.getComputedStyle;
|
||||||
|
|
||||||
@ -32,6 +32,29 @@ afterAll(() => {
|
|||||||
window.getComputedStyle = originGetComputedStyle;
|
window.getComputedStyle = originGetComputedStyle;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('should render action slot correctly', async () => {
|
||||||
|
const wrapper = mount(TextEllipsis, {
|
||||||
|
props: {
|
||||||
|
content,
|
||||||
|
},
|
||||||
|
slots: {
|
||||||
|
action: ({ expanded }) => (expanded ? 'Expand' : 'Collapse'),
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
await nextTick();
|
||||||
|
|
||||||
|
expect(wrapper.html()).toMatchSnapshot();
|
||||||
|
|
||||||
|
(wrapper.vm as TextEllipsisInstance).toggle();
|
||||||
|
await nextTick();
|
||||||
|
expect(wrapper.html()).toMatchSnapshot();
|
||||||
|
|
||||||
|
(wrapper.vm as TextEllipsisInstance).toggle();
|
||||||
|
await nextTick();
|
||||||
|
expect(wrapper.html()).toMatchSnapshot();
|
||||||
|
});
|
||||||
|
|
||||||
test('should render content correctly', async () => {
|
test('should render content correctly', async () => {
|
||||||
const wrapper = mount(TextEllipsis, {
|
const wrapper = mount(TextEllipsis, {
|
||||||
props: {
|
props: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user