perf-FontAwesomeIcon check

This commit is contained in:
Huang 2022-10-12 15:05:19 +08:00
parent f8b9cdb5d7
commit 53134fbc60
3 changed files with 4725 additions and 31 deletions

View File

@ -1,13 +1,39 @@
<script lang="ts" setup> <script lang="ts" setup>
import AppProvider from '@/components/AppProvider/inedx.vue'; import AppProvider from '@/components/AppProvider/inedx.vue';
import FontAwesomeIcon from '@/components/FontAwesomeIcon/index.vue'; import FontAwesomeIcon from '@/components/FontAwesomeIcon/index.vue';
import Test from '@/components/Test/index.vue'; import { computed, reactive, ref, watch } from 'vue';
import { reactive, ref } from 'vue'; import { random } from 'lodash-es';
import {
brandIcons,
classicIcons,
} from '@/demo/example/fontAwesomeIcon/icons';
import { SetClipboardData } from '@/utils/uniapi';
const attribute = reactive({
mode: 'solid',
sharp: false,
color: '#000000',
size: '64',
rotate: '',
rotateFlip: false,
beat: false,
fade: false,
bounce: false,
flip: false,
shake: false,
spin: false,
});
const exampleIcons = computed<string[]>(() => {
return attribute.mode == 'brands' ? brandIcons : classicIcons;
});
const randomIndex = ref<number>(random(0, exampleIcons.value.length + 1));
const iconName = ref<string>(exampleIcons.value[randomIndex.value]);
const isFocus = ref(false);
const iconName = ref('house'); watch(randomIndex, (newValue, oldValue) => {
iconName.value = exampleIcons.value[newValue];
});
const modeList = ['solid', 'regular', 'light', 'thin', 'duotone', 'brands']; const modeList = ['solid', 'regular', 'light', 'thin', 'duotone', 'brands'];
const colors = [ const colors = [
{ {
color: '#000000', color: '#000000',
@ -83,20 +109,19 @@
}, },
]; ];
const attribute = reactive({ watch(
mode: 'solid', () => attribute.mode,
sharp: false, (newValue, oldValue) => {
color: '#000000', const newValueIndex = modeList.findIndex(item => item == newValue);
size: '', const oldValueIndex = modeList.findIndex(item => item == oldValue);
rotate: '', if (
rotateFlip: false, (newValueIndex == 5 && oldValueIndex < 5) ||
beat: false, (oldValueIndex == 5 && newValueIndex < 5)
fade: false, ) {
bounce: false, onRandom();
flip: false, }
shake: false, },
spin: false, );
});
const setAttribute = (e: any) => { const setAttribute = (e: any) => {
const { k: key, v: value } = e.currentTarget.dataset; const { k: key, v: value } = e.currentTarget.dataset;
@ -105,7 +130,9 @@
if (replaces.includes(key)) { if (replaces.includes(key)) {
// @ts-ignore // @ts-ignore
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 = ''; if (key == 'rotateFlip') attribute.rotate = '';
return; return;
@ -135,6 +162,18 @@
attribute[key] = num <= 0 || num > 360 ? '' : num.toString(); attribute[key] = num <= 0 || num > 360 ? '' : num.toString();
} }
}; };
const onRandom = () => {
randomIndex.value = random(0, exampleIcons.value.length + 1);
};
const onFocus = () => {
isFocus.value = true;
};
const onBlur = () => {
isFocus.value = false;
};
const copyIconName = () => {
SetClipboardData(iconName.value);
};
</script> </script>
<template> <template>
<AppProvider> <AppProvider>
@ -155,21 +194,34 @@
:spin="attribute.spin" :spin="attribute.spin"
/> />
</view> </view>
<view class="check-wrap"> <view class="check-wrap" :class="{ focus: isFocus }">
<view class="input-wrap"> <view class="input-wrap">
<input <input
placeholder="Icon Name" placeholder="Icon Name"
type="text" type="text"
@focus="onFocus"
@blur="onBlur"
v-model.trim.lazy="iconName" v-model.trim.lazy="iconName"
/> />
</view> </view>
<view class="icon-wrap"> <view class="icon-wrap">
<FontAwesomeIcon name="circle-exclamation-check" /> <FontAwesomeIcon
@click="onRandom"
name="shuffle"
mode="duotone"
color="#2F72EFFF"
/>
</view> </view>
</view> </view>
<view class="attribute-wrap"> <view class="attribute-wrap">
<view class="attribute-list">
<view class="attribute-item copy" @click="copyIconName">
<FontAwesomeIcon name="copy" mode="duotone" />
<text>Copy Icon Name</text>
</view>
</view>
<view class="mode"> <view class="mode">
<view>风格(mode): </view> <view class="label">风格(mode): </view>
<view class="attribute-list"> <view class="attribute-list">
<template v-for="(mode, index) in modeList" :key="index"> <template v-for="(mode, index) in modeList" :key="index">
<view <view
@ -198,7 +250,7 @@
</view> </view>
</view> </view>
<view class="color"> <view class="color">
<view>颜色(color): </view> <view class="label">颜色(color): </view>
<view class="attribute-list"> <view class="attribute-list">
<template v-for="(item, index) in colors" :key="index"> <template v-for="(item, index) in colors" :key="index">
<view <view
@ -216,7 +268,7 @@
</view> </view>
</view> </view>
<view class="size flex-row"> <view class="size flex-row">
<view>大小(size)[rpx]:</view> <view class="label">大小(size)[rpx]:</view>
<view class="flex-row input-wrap"> <view class="flex-row input-wrap">
<view <view
class="icon-warp minus" class="icon-warp minus"
@ -242,7 +294,7 @@
</view> </view>
</view> </view>
<view class="rotate flex-row"> <view class="rotate flex-row">
<view>旋转角度(rotate)[deg]: </view> <view class="label">旋转角度(rotate)[deg]: </view>
<view class="flex-row input-wrap"> <view class="flex-row input-wrap">
<view <view
class="icon-warp minus" class="icon-warp minus"
@ -268,7 +320,7 @@
</view> </view>
</view> </view>
<view class="color"> <view class="color">
<view>翻转(rotateFlip): </view> <view class="label">翻转(rotateFlip): </view>
<view class="attribute-list"> <view class="attribute-list">
<template v-for="(item, index) in rotateFlips" :key="index"> <template v-for="(item, index) in rotateFlips" :key="index">
<view <view
@ -289,7 +341,7 @@
</view> </view>
</view> </view>
<view class="animation"> <view class="animation">
<view>动画: </view> <view class="label">动画: </view>
<view class="attribute-list"> <view class="attribute-list">
<template v-for="(item, index) in animations" :key="index"> <template v-for="(item, index) in animations" :key="index">
<view <view
@ -333,21 +385,34 @@
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
padding: 0 36rpx; padding: 0 36rpx;
box-shadow: 0rpx 0rpx 36rpx #a3adba;
&.focus {
//border: 1rpx solid #a3adba;
}
.input-wrap { .input-wrap {
flex-grow: 1; flex-grow: 1;
input { input {
height: 64rpx; height: 64rpx;
//outline: 1rpx solid #a3adba;
} }
} }
.icon-wrap { .icon-wrap {
width: 64rpx; width: 64rpx;
text-align: right; text-align: right;
font-size: 40rpx; font-size: 40rpx;
&:hover {
color: #ff8787;
}
} }
} }
.attribute-wrap { .attribute-wrap {
font-size: 26rpx;
& > view { & > view {
margin-top: 16rpx; margin-top: 16rpx;
align-items: center;
}
.label {
font-style: oblique;
} }
margin-top: 24rpx; margin-top: 24rpx;
.attribute-list { .attribute-list {
@ -357,9 +422,18 @@
width: 30%; width: 30%;
height: 56rpx; height: 56rpx;
padding-left: 32rpx; padding-left: 32rpx;
display: flex;
align-items: center;
text { text {
margin-left: 10rpx; margin-left: 10rpx;
} }
&.copy {
width: 50%;
color: #2f72efff;
&:hover {
text-decoration: underline;
}
}
} }
} }
.attribute-input { .attribute-input {

File diff suppressed because it is too large Load Diff

View File

@ -44,7 +44,9 @@
</view> </view>
<view class="tip" style="color: #595858; margin-top: 10px"> <view class="tip" style="color: #595858; margin-top: 10px">
<view>使用方法: 在官网图标库搜索查找需要的图标,Copy Icon Name</view> <view>使用方法: 在官网图标库搜索查找需要的图标,Copy Icon Name</view>
<view class="link" @click="jumpCheck">图标不可用? Check!</view> <view class="link" @click="jumpCheck">
图标不可用? Check! <FontAwesomeIcon name="circle-exclamation-check" />
</view>
</view> </view>
<view class="title">mode-不同风格,对应相应字体</view> <view class="title">mode-不同风格,对应相应字体</view>
<view> <FontAwesomeIcon name="house" />solid (默认)</view> <view> <FontAwesomeIcon name="house" />solid (默认)</view>
@ -53,9 +55,9 @@
<view> <FontAwesomeIcon mode="light" name="house" />light</view> <view> <FontAwesomeIcon mode="light" name="house" />light</view>
<view> <FontAwesomeIcon mode="thin" name="house" />thin</view> <view> <FontAwesomeIcon mode="thin" name="house" />thin</view>
<view> <view>
<FontAwesomeIcon mode="duotone" name="trash-can-clock" />duotone <FontAwesomeIcon mode="duotone" name="trash-can-clock" />
trash-can-clock</view duotone trash-can-clock
> </view>
<view> <FontAwesomeIcon mode="duotone" name="house" />duotone house</view> <view> <FontAwesomeIcon mode="duotone" name="house" />duotone house</view>
<view class="title">sharp-直角图标,对应sharp字体</view> <view class="title">sharp-直角图标,对应sharp字体</view>
<view> <FontAwesomeIcon name="user" sharp counter="999" /> sharp </view> <view> <FontAwesomeIcon name="user" sharp counter="999" /> sharp </view>