mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(Image): add crossorigin
& referrerpolicy
props (#12641)
This commit is contained in:
parent
41bbe5b0f8
commit
09941e54ff
@ -11,6 +11,7 @@ import {
|
|||||||
type PropType,
|
type PropType,
|
||||||
type CSSProperties,
|
type CSSProperties,
|
||||||
type ExtractPropTypes,
|
type ExtractPropTypes,
|
||||||
|
type ImgHTMLAttributes,
|
||||||
} from 'vue';
|
} from 'vue';
|
||||||
|
|
||||||
// Utils
|
// Utils
|
||||||
@ -49,6 +50,8 @@ export const imageProps = {
|
|||||||
iconPrefix: String,
|
iconPrefix: String,
|
||||||
showLoading: truthProp,
|
showLoading: truthProp,
|
||||||
loadingIcon: makeStringProp('photo'),
|
loadingIcon: makeStringProp('photo'),
|
||||||
|
crossorigin: String as PropType<ImgHTMLAttributes['crossorigin']>,
|
||||||
|
referrerpolicy: String as PropType<ImgHTMLAttributes['referrerpolicy']>,
|
||||||
};
|
};
|
||||||
|
|
||||||
export type ImageProps = ExtractPropTypes<typeof imageProps>;
|
export type ImageProps = ExtractPropTypes<typeof imageProps>;
|
||||||
@ -154,6 +157,8 @@ export default defineComponent({
|
|||||||
objectFit: props.fit,
|
objectFit: props.fit,
|
||||||
objectPosition: props.position,
|
objectPosition: props.position,
|
||||||
},
|
},
|
||||||
|
crossorigin: props.crossorigin,
|
||||||
|
referrerpolicy: props.referrerpolicy,
|
||||||
};
|
};
|
||||||
|
|
||||||
if (props.lazyLoad) {
|
if (props.lazyLoad) {
|
||||||
|
@ -109,6 +109,8 @@ app.use(Lazyload);
|
|||||||
| loading-icon | Loading icon | _string_ | `photo` |
|
| loading-icon | Loading icon | _string_ | `photo` |
|
||||||
| icon-size | Icon size | _number \| string_ | `32px` |
|
| icon-size | Icon size | _number \| string_ | `32px` |
|
||||||
| icon-prefix | Icon className prefix | _string_ | `van-icon` |
|
| icon-prefix | Icon className prefix | _string_ | `van-icon` |
|
||||||
|
| crossorigin | same as [crossorigin](https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement/crossOrigin) | _string_ | - |
|
||||||
|
| referrerpolicy | same as [referrerpolicy](https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement/referrerPolicy) | _string_ | - |
|
||||||
|
|
||||||
### fit optional value
|
### fit optional value
|
||||||
|
|
||||||
|
@ -135,6 +135,8 @@ app.use(Lazyload);
|
|||||||
| loading-icon | 加载时提示的图标名称或图片链接,等同于 Icon 组件的 [name 属性](#/zh-CN/icon#props) | _string_ | `photo` |
|
| loading-icon | 加载时提示的图标名称或图片链接,等同于 Icon 组件的 [name 属性](#/zh-CN/icon#props) | _string_ | `photo` |
|
||||||
| icon-size | 加载图标和失败图标的大小 | _number \| string_ | `32px` |
|
| icon-size | 加载图标和失败图标的大小 | _number \| string_ | `32px` |
|
||||||
| icon-prefix | 图标类名前缀,等同于 Icon 组件的 [class-prefix 属性](#/zh-CN/icon#props) | _string_ | `van-icon` |
|
| icon-prefix | 图标类名前缀,等同于 Icon 组件的 [class-prefix 属性](#/zh-CN/icon#props) | _string_ | `van-icon` |
|
||||||
|
| crossorigin | 等同于原生的 [crossorigin](https://developer.mozilla.org/zh-CN/docs/Web/API/HTMLImageElement/crossOrigin) 属性 | _string_ | - |
|
||||||
|
| referrerpolicy | 等同于原生的 [referrerpolicy](https://developer.mozilla.org/zh-CN/docs/Web/API/HTMLImageElement/referrerPolicy) 属性 | _string_ | - |
|
||||||
|
|
||||||
### 图片填充模式
|
### 图片填充模式
|
||||||
|
|
||||||
|
@ -25,6 +25,17 @@ exports[`should emit load event after image loaded 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
exports[`should pass props to img 1`] = `
|
||||||
|
<div class="van-image">
|
||||||
|
<img
|
||||||
|
src="https://img.com"
|
||||||
|
class="van-image__img"
|
||||||
|
crossorigin="anonymous"
|
||||||
|
referrerpolicy="no-referrer"
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
|
||||||
exports[`should render default slot correctly 1`] = `
|
exports[`should render default slot correctly 1`] = `
|
||||||
<div class="van-image">
|
<div class="van-image">
|
||||||
<img
|
<img
|
||||||
|
@ -18,6 +18,19 @@ test('should emit load event after image loaded', async () => {
|
|||||||
expect(wrapper.html()).toMatchSnapshot();
|
expect(wrapper.html()).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('should pass props to img', async () => {
|
||||||
|
const wrapper = mount(VanImage, {
|
||||||
|
props: {
|
||||||
|
src: IMAGE_URL,
|
||||||
|
referrerpolicy: 'no-referrer',
|
||||||
|
crossorigin: 'anonymous',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
await wrapper.find('img').trigger('load');
|
||||||
|
expect(wrapper.html()).toMatchSnapshot();
|
||||||
|
});
|
||||||
|
|
||||||
test('should watch src and reset', async () => {
|
test('should watch src and reset', async () => {
|
||||||
const wrapper = mount(VanImage, {
|
const wrapper = mount(VanImage, {
|
||||||
props: {
|
props: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user