mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
[improvement] Icon: reduce setData (#1009)
This commit is contained in:
parent
5064c0c397
commit
4303aa34b5
@ -10,7 +10,7 @@ const postcss = require('gulp-postcss');
|
|||||||
const isProduction = process.env.NODE_ENV === 'production';
|
const isProduction = process.env.NODE_ENV === 'production';
|
||||||
const src = path.join(__dirname, '../packages');
|
const src = path.join(__dirname, '../packages');
|
||||||
const dist = path.join(__dirname, isProduction ? '../dist' : '../example/dist');
|
const dist = path.join(__dirname, isProduction ? '../dist' : '../example/dist');
|
||||||
const ext = ['ts', 'less', 'json', 'wxml'];
|
const ext = ['ts', 'less', 'json', 'wxml', 'wxs'];
|
||||||
|
|
||||||
function copy(ext) {
|
function copy(ext) {
|
||||||
return gulp.src([src + '/**/*.' + ext]).pipe(gulp.dest(dist));
|
return gulp.src([src + '/**/*.' + ext]).pipe(gulp.dest(dist));
|
||||||
@ -45,6 +45,7 @@ gulp.task('compile-ts', () =>
|
|||||||
})
|
})
|
||||||
.pipe(gulp.dest(dist))
|
.pipe(gulp.dest(dist))
|
||||||
);
|
);
|
||||||
|
gulp.task('compile-wxs', () => copy('wxs'));
|
||||||
gulp.task('compile-json', () => copy('json'));
|
gulp.task('compile-json', () => copy('json'));
|
||||||
gulp.task('compile-wxml', () => copy('wxml'));
|
gulp.task('compile-wxml', () => copy('wxml'));
|
||||||
gulp.task('build', ext.map(ext => 'compile-' + ext));
|
gulp.task('build', ext.map(ext => 'compile-' + ext));
|
||||||
|
@ -11,13 +11,8 @@ function isNumber(value) {
|
|||||||
return /^\d+$/.test(value);
|
return /^\d+$/.test(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
function isSrc(url) {
|
|
||||||
return /^(https?:)?\/\/|data:image/.test(url);
|
|
||||||
}
|
|
||||||
|
|
||||||
export {
|
export {
|
||||||
isObj,
|
isObj,
|
||||||
isDef,
|
isDef,
|
||||||
isSrc,
|
|
||||||
isNumber
|
isNumber
|
||||||
};
|
};
|
||||||
|
5
packages/common/utils.wxs
Normal file
5
packages/common/utils.wxs
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
function isSrc(url) {
|
||||||
|
return url.indexOf('http') === 0 || url.indexOf('data:image') === 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports.isSrc = isSrc;
|
@ -1,4 +1,3 @@
|
|||||||
import { isSrc } from '../common/utils';
|
|
||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
|
|
||||||
VantComponent({
|
VantComponent({
|
||||||
@ -14,12 +13,6 @@ VantComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
computed: {
|
|
||||||
isSrc() {
|
|
||||||
return isSrc(this.data.name);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
onClick() {
|
onClick() {
|
||||||
this.$emit('click');
|
this.$emit('click');
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<view
|
<view
|
||||||
class="custom-class {{ classPrefix }} {{ isSrc ? 'van-icon--image' : classPrefix + '-' + name }}"
|
class="custom-class {{ classPrefix }} {{ utils.isSrc(name) ? 'van-icon--image' : classPrefix + '-' + name }}"
|
||||||
style="{{ color ? 'color: ' + color + ';' : '' }}{{ size ? 'font-size: ' + size + ';' : '' }}{{ customStyle }}"
|
style="{{ color ? 'color: ' + color + ';' : '' }}{{ size ? 'font-size: ' + size + ';' : '' }}{{ customStyle }}"
|
||||||
bind:tap="onClick"
|
bind:tap="onClick"
|
||||||
>
|
>
|
||||||
@ -10,7 +10,9 @@
|
|||||||
{{ info }}
|
{{ info }}
|
||||||
</view>
|
</view>
|
||||||
<image
|
<image
|
||||||
wx:if="{{ isSrc }}"
|
wx:if="{{ utils.isSrc(name) }}"
|
||||||
src="{{ name }}"
|
src="{{ name }}"
|
||||||
/>
|
/>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
|
<wxs src="../common/utils.wxs" module="utils" />
|
||||||
|
Loading…
x
Reference in New Issue
Block a user