diff --git a/packages/icon/index.tsx b/packages/icon/index.tsx index 67fe55de3..10869f100 100644 --- a/packages/icon/index.tsx +++ b/packages/icon/index.tsx @@ -1,7 +1,6 @@ import { use } from '../utils'; import { inherit } from '../utils/functional'; import Info from '../info'; -import { isSrc } from '../utils/validate/src'; // Types import { CreateElement, RenderContext } from 'vue/types'; @@ -22,13 +21,17 @@ export type IconEvents = { const [sfc] = use('icon'); +function isImage(name?: string): boolean { + return name ? name.indexOf('/') !== -1 : false; +} + function Icon( h: CreateElement, props: IconProps, slots: DefaultSlots, ctx: RenderContext ) { - const urlIcon = isSrc(props.name); + const urlIcon = isImage(props.name); return ( `; +exports[`render icon with local image 1`] = ` + + +`; + exports[`render icon with url name 1`] = ` diff --git a/packages/icon/test/index.spec.js b/packages/icon/test/index.spec.js index 70e587753..206f9e8eb 100644 --- a/packages/icon/test/index.spec.js +++ b/packages/icon/test/index.spec.js @@ -19,6 +19,15 @@ test('render icon with url name', () => { expect(wrapper).toMatchSnapshot(); }); +test('render icon with local image', () => { + const wrapper = mount(Icon, { + propsData: { + name: '/assets/icon.jpg' + } + }); + expect(wrapper).toMatchSnapshot(); +}); + test('render icon default slot', () => { const wrapper = mount({ render(h) { diff --git a/packages/utils/test/index.spec.js b/packages/utils/test/index.spec.js index 2d46e14e7..66153a462 100644 --- a/packages/utils/test/index.spec.js +++ b/packages/utils/test/index.spec.js @@ -2,7 +2,6 @@ import { deepClone } from '../deep-clone'; import { isAndroid, isDef, camelize, get } from '..'; import { raf, cancel } from '../raf'; import { later } from '../../../test/utils'; -import { isSrc } from '../validate/src'; import { isEmail } from '../validate/email'; import { isMobile } from '../validate/mobile'; import { isNumber } from '../validate/number'; @@ -77,16 +76,3 @@ test('is-number', () => { expect(isNumber('abc')).toBeFalsy(); expect(isNumber('1b2')).toBeFalsy(); }); - -test('is-src', () => { - expect(isSrc('http://img.cdn.com')).toBeTruthy(); - expect(isSrc('https://img.cdn.com')).toBeTruthy(); - expect(isSrc('//img.cdn.com')).toBeTruthy(); - expect(isSrc('data:image/jpeg;base64,/9j/4AAQSkZ')).toBeTruthy(); - expect(isSrc('img.cdn.com')).toBeFalsy(); - expect(isSrc('name')).toBeFalsy(); - expect(isSrc('')).toBeFalsy(); - expect(isSrc('blob:http://img.cdn.com')).toBeTruthy(); - expect(isSrc('blob:https://img.cdn.com')).toBeTruthy(); - expect(isSrc('xdata:image/jpeg;base64,/9j/4AAQSkZ')).toBeFalsy(); -}); diff --git a/packages/utils/validate/src.ts b/packages/utils/validate/src.ts deleted file mode 100644 index 7f07f4321..000000000 --- a/packages/utils/validate/src.ts +++ /dev/null @@ -1,6 +0,0 @@ -/** - * Is image source - */ -export function isSrc(url: string): boolean { - return /^(((blob:)?https?:)?\/\/|data:image)/.test(url); -}