feat-FontAwesomeIcon check

This commit is contained in:
h_mo 2022-10-11 21:56:52 +08:00
parent 35d5bb920d
commit f8b9cdb5d7
3 changed files with 137 additions and 68 deletions

View File

@ -17,9 +17,9 @@
(e: 'click'): void; (e: 'click'): void;
}>(); }>();
const singleBeat = ref(props.beat && !props.fade); const singleBeat = computed(() => props.beat && !props.fade);
const singleFade = ref(!props.beat && props.fade); const singleFade = computed(() => !props.beat && props.fade);
const beatFade = ref(props.beat && props.fade); const beatFade = computed(() => props.beat && props.fade);
const count = computed(() => { const count = computed(() => {
return props.counter > props.counterMax return props.counter > props.counterMax
? `${props.counterMax}+` ? `${props.counterMax}+`

View File

@ -8321,7 +8321,7 @@ $fa-icons: (
'glasses-alt': $fa-var-glasses-alt, 'glasses-alt': $fa-var-glasses-alt,
'glasses-round': $fa-var-glasses-round, 'glasses-round': $fa-var-glasses-round,
'phone-plus': $fa-var-phone-plus, 'phone-plus': $fa-var-phone-plus,
'ditto': $fa-var-ditto, //'ditto': $fa-var-ditto,
'person-seat': $fa-var-person-seat, 'person-seat': $fa-var-person-seat,
'house-medical': $fa-var-house-medical, 'house-medical': $fa-var-house-medical,
'golf-ball-tee': $fa-var-golf-ball-tee, 'golf-ball-tee': $fa-var-golf-ball-tee,

View File

@ -38,9 +38,6 @@
name: '黄色', name: '黄色',
}, },
]; ];
const sizes = ['24', '44', '64', '88'];
const rotates = [false, '45', '20', '69', '90', '180', '270', '288'];
const rotateFlips = [ const rotateFlips = [
{ {
value: false, value: false,
@ -91,7 +88,7 @@
sharp: false, sharp: false,
color: '#000000', color: '#000000',
size: '', size: '',
rotate: false, rotate: '',
rotateFlip: false, rotateFlip: false,
beat: false, beat: false,
fade: false, fade: false,
@ -102,9 +99,7 @@
}); });
const setAttribute = (e: any) => { const setAttribute = (e: any) => {
console.log(e); const { k: key, v: value } = e.currentTarget.dataset;
const key = e.currentTarget.dataset.k;
const value = e.currentTarget.dataset.v;
const replaces = ['mode', 'color', 'size', 'rotate', 'rotateFlip']; const replaces = ['mode', 'color', 'size', 'rotate', 'rotateFlip'];
if (key in attribute) { if (key in attribute) {
if (replaces.includes(key)) { if (replaces.includes(key)) {
@ -112,7 +107,7 @@
attribute[key] = value; attribute[key] = value;
if (key == 'mode') attribute.sharp = false; if (key == 'mode') attribute.sharp = false;
if (key == 'rotate') attribute.rotateFlip = false; if (key == 'rotate') attribute.rotateFlip = false;
if (key == 'rotateFlip') attribute.rotate = false; if (key == 'rotateFlip') attribute.rotate = '';
return; return;
} }
// @ts-ignore // @ts-ignore
@ -122,10 +117,28 @@
} }
} }
}; };
const onNumberChange = (e: any) => {
const { k: key, type } = e.currentTarget.dataset;
if (key in attribute) {
// @ts-ignore
let num = attribute[key] ? parseInt(attribute[key]) : 0;
switch (type) {
case 'minus':
num -= 1;
break;
case 'plus':
num += 1;
break;
}
// @ts-ignore
attribute[key] = num <= 0 || num > 360 ? '' : num.toString();
}
};
</script> </script>
<template> <template>
<AppProvider> <AppProvider>
<view class="title">Icon Check</view> <view class="check-icon-wrap">
<FontAwesomeIcon <FontAwesomeIcon
:name="iconName" :name="iconName"
:mode="attribute.mode" :mode="attribute.mode"
@ -134,11 +147,21 @@
:size="attribute.size" :size="attribute.size"
:rotate="attribute.rotate" :rotate="attribute.rotate"
:rotate-flip="attribute.rotateFlip" :rotate-flip="attribute.rotateFlip"
:beat="attribute.beat"
:fade="attribute.fade"
:bounce="attribute.bounce"
:flip="attribute.flip"
:shake="attribute.shake"
:spin="attribute.spin"
/> />
<Test :text="attribute.mode" /> </view>
<view class="check-wrap"> <view class="check-wrap">
<view class="input-wrap"> <view class="input-wrap">
<input placeholder="Icon Name" v-model.trim.lazy="iconName" /> <input
placeholder="Icon Name"
type="text"
v-model.trim.lazy="iconName"
/>
</view> </view>
<view class="icon-wrap"> <view class="icon-wrap">
<FontAwesomeIcon name="circle-exclamation-check" /> <FontAwesomeIcon name="circle-exclamation-check" />
@ -192,40 +215,56 @@
</template> </template>
</view> </view>
</view> </view>
<view class="size"> <view class="size flex-row">
<view>大小(size)[rpx]:</view> <view>大小(size)[rpx]:</view>
<view class="attribute-list"> <view class="flex-row input-wrap">
<template v-for="(item, index) in sizes" :key="index">
<view <view
class="attribute-item" class="icon-warp minus"
@click="setAttribute" @click="onNumberChange"
data-k="size" data-k="size"
:data-v="item" data-type="minus"
> >
<FontAwesomeIcon <FontAwesomeIcon name="minus" bg-color="#C3C6D1" />
mode="regular"
:name="attribute.size == item ? 'circle-dot' : 'circle'"
/><text>{{ item }}rpx</text>
</view> </view>
</template> <input
</view> class="attribute-input"
</view> type="number"
<view class="rotate"> v-model.trim.lazy="attribute.size"
<view>旋转角度(rotate)[deg]: </view> />
<view class="attribute-list">
<template v-for="(item, index) in rotates" :key="index">
<view <view
class="attribute-item" class="icon-warp plus"
@click="setAttribute" @click="onNumberChange"
data-k="rotate" data-k="size"
:data-v="item" data-type="plus"
> >
<FontAwesomeIcon <FontAwesomeIcon name="plus" bg-color="#C3C6D1" />
mode="regular" </view>
:name="attribute.rotate == item ? 'circle-dot' : 'circle'" </view>
/><text>{{ index != 0 ? item + 'deg' : '' }}</text> </view>
<view class="rotate flex-row">
<view>旋转角度(rotate)[deg]: </view>
<view class="flex-row input-wrap">
<view
class="icon-warp minus"
@click="onNumberChange"
data-k="rotate"
data-type="minus"
>
<FontAwesomeIcon name="minus" bg-color="#C3C6D1" />
</view>
<input
class="attribute-input"
type="number"
v-model.trim.lazy="attribute.rotate"
/>
<view
class="icon-warp plus"
@click="onNumberChange"
data-k="rotate"
data-type="plus"
>
<FontAwesomeIcon name="plus" bg-color="#C3C6D1" />
</view> </view>
</template>
</view> </view>
</view> </view>
<view class="color"> <view class="color">
@ -252,17 +291,6 @@
<view class="animation"> <view class="animation">
<view>动画: </view> <view>动画: </view>
<view class="attribute-list"> <view class="attribute-list">
<view
class="attribute-item"
style="width: 50%"
@click="setAttribute"
data-k="sharp"
>
<FontAwesomeIcon
:mode="attribute.sharp ? 'solid' : 'regular'"
:name="attribute.sharp ? 'square-check' : 'square'"
/><text>(sharp)</text>
</view>
<template v-for="(item, index) in animations" :key="index"> <template v-for="(item, index) in animations" :key="index">
<view <view
class="attribute-item" class="attribute-item"
@ -283,11 +311,20 @@
</template> </template>
<style lang="scss" scoped> <style lang="scss" scoped>
.title { .title {
margin: 60rpx 0 36rpx 0; margin: 20rpx 0 36rpx 0;
text-align: center; text-align: center;
font-size: 32rpx; font-size: 32rpx;
font-weight: 600; font-weight: 600;
} }
.check-icon-wrap {
height: 160rpx;
max-height: 200rpx;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
overflow: scroll;
}
.check-wrap { .check-wrap {
background-color: #ffffff; background-color: #ffffff;
height: 88rpx; height: 88rpx;
@ -309,6 +346,9 @@
} }
} }
.attribute-wrap { .attribute-wrap {
& > view {
margin-top: 16rpx;
}
margin-top: 24rpx; margin-top: 24rpx;
.attribute-list { .attribute-list {
display: flex; display: flex;
@ -321,7 +361,36 @@
margin-left: 10rpx; margin-left: 10rpx;
} }
} }
.mode { }
.attribute-input {
width: 96rpx;
}
.input-wrap {
border: 1rpx solid #c3c6d1;
border-radius: 16rpx;
//padding: 0 12rpx;
margin-left: 16rpx;
align-items: center;
justify-content: space-between;
.icon-warp {
background-color: #c3c6d1;
height: 52rpx;
line-height: 52rpx;
padding: 0 16rpx;
&.plus {
border-top-right-radius: 16rpx;
border-bottom-right-radius: 16rpx;
}
&.minus {
border-top-left-radius: 16rpx;
border-bottom-left-radius: 16rpx;
}
}
.attribute-input {
text-align: center;
flex-grow: 1;
height: 52rpx;
margin: 0 16rpx;
} }
} }
} }