From 9131d5de2c955040ad9391736147f26d2cde2d81 Mon Sep 17 00:00:00 2001
From: Huang <596417202@qq.com>
Date: Thu, 29 Sep 2022 17:11:29 +0800
Subject: [PATCH] =?UTF-8?q?wip-font-awesome-icon=E7=A4=BA=E4=BE=8B?=
=?UTF-8?q?=E7=BB=84=E4=BB=B6=E9=83=A8=E5=88=86=E5=B1=9E=E6=80=A7?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/assets/style/auxiliary.scss | 6 +-
src/components/AppProvider/inedx.vue | 8 +-
src/components/FontAwesomeIcon/index.vue | 57 +++++++---
src/components/FontAwesomeIcon/props.ts | 124 ++++++++++++++++++++-
src/demo/example/fontAwesomeIcon/index.vue | 61 ++++++++++
src/pages.json | 11 ++
src/pages/demo/index.vue | 8 +-
7 files changed, 251 insertions(+), 24 deletions(-)
create mode 100644 src/demo/example/fontAwesomeIcon/index.vue
diff --git a/src/assets/style/auxiliary.scss b/src/assets/style/auxiliary.scss
index 38a6b9d..629375c 100644
--- a/src/assets/style/auxiliary.scss
+++ b/src/assets/style/auxiliary.scss
@@ -68,8 +68,8 @@ web-view,
// 历遍生成4个方向的底部安全区
@each $d in top, right, bottom, left {
.safe-area-inset-#{$d} {
- padding-#{$d}: 0;
- padding-#{$d}: constant(safe-area-inset-#{$d});
- padding-#{$d}: env(safe-area-inset-#{$d});
+ padding-#{$d}: 0 !important;
+ padding-#{$d}: constant(safe-area-inset-#{$d}) !important;
+ padding-#{$d}: env(safe-area-inset-#{$d}) !important;
}
}
diff --git a/src/components/AppProvider/inedx.vue b/src/components/AppProvider/inedx.vue
index 8b575c8..ad56ce2 100644
--- a/src/components/AppProvider/inedx.vue
+++ b/src/components/AppProvider/inedx.vue
@@ -1,7 +1,11 @@
-
+
-
+
diff --git a/src/components/FontAwesomeIcon/index.vue b/src/components/FontAwesomeIcon/index.vue
index 2f96b48..eeca57a 100644
--- a/src/components/FontAwesomeIcon/index.vue
+++ b/src/components/FontAwesomeIcon/index.vue
@@ -1,29 +1,56 @@
- solid
- regular
- light
- thin
-
- duotone
- brands
- sharp
+
+
+
diff --git a/src/components/FontAwesomeIcon/props.ts b/src/components/FontAwesomeIcon/props.ts
index 5761f1e..8e98978 100644
--- a/src/components/FontAwesomeIcon/props.ts
+++ b/src/components/FontAwesomeIcon/props.ts
@@ -1,3 +1,123 @@
-const FontAwesomeIconProps = {
- // is,
+type StyleType = 'solid' | 'regular' | 'light' | 'thin' | 'duotone' | 'brands' | 'sharp';
+
+export const FontAwesomeIconProps = {
+ /** icon name
+ * @link: https://fontawesome.com/icons
+ */
+ name: {
+ type: String,
+ required: true,
+ },
+ /** icon 风格
+ * 不同风格对应不同的css, 使用时请加载相应的css
+ */
+ mode: {
+ type: String,
+ default: 'solid',
+ validator(value: string) {
+ // The value must match one of these strings
+ return ['solid', 'regular', 'light', 'thin', 'duotone', 'brands'].includes(value);
+ },
+ },
+ /** icon sharp
+ * 对应sharp css
+ */
+ sharp: {
+ type: Boolean,
+ default: false,
+ },
+ /**
+ * icon sizing
+ * @description 2xs-xs-sm-lg-xl-2xl 1-10x
+ */
+ frameSize: {
+ type: String,
+ },
+ /**
+ * icon size
+ * @description 大小 单位 rpx
+ */
+ size: {
+ type: Number,
+ },
+ /**
+ * icon color
+ * @description 图标颜色
+ */
+ color: {
+ type: String,
+ },
+ /**
+ * icon color
+ * @description 背景色
+ */
+ bgColor: {
+ type: String,
+ },
+ /** icon border
+ * @description 边框
+ */
+ border: {
+ type: Boolean,
+ default: false,
+ },
+ /** icon rotate
+ * @description 旋转角度
+ */
+ rotate: {
+ type: Number,
+ default: 0,
+ },
+ /** icon flip
+ * @description 翻转
+ */
+ flip: {
+ type: String,
+ validator(value: string) {
+ // The value must match one of these strings
+ return ['horizontal', 'vertical', 'both'].includes(value);
+ },
+ },
+ /**
+ * icon beat
+ * @description 跳动动画
+ * @param duration Number 时间 s
+ * @param scale Number 比例
+ */
+ beat: {
+ type: Boolean,
+ default: false,
+ },
+ /**
+ * icon duration
+ * @description 动画持续时间(所有动画使用) s
+ */
+ duration: {
+ type: Number,
+ default: 1,
+ },
+ /**
+ * icon scale
+ * @description 动画比例(跳动动画使用)
+ */
+ scale: {
+ type: Number,
+ default: 1.25,
+ },
+ /**
+ * icon fade
+ * @description 淡入淡出动画
+ */
+ fade: {
+ type: Boolean,
+ default: false,
+ },
+ /**
+ * icon opacity
+ * @description 透明度值 (淡入淡出动画使用)
+ */
+ opacity: {
+ type: Number,
+ default: 0.6,
+ },
};
diff --git a/src/demo/example/fontAwesomeIcon/index.vue b/src/demo/example/fontAwesomeIcon/index.vue
new file mode 100644
index 0000000..14ee1c7
--- /dev/null
+++ b/src/demo/example/fontAwesomeIcon/index.vue
@@ -0,0 +1,61 @@
+
+
+
+ mode-不同风格
+ solid
+ regular
+ light
+ thin
+ duotone
+ sharp-直角图标
+ sharp
+
+ mode(brands)-品牌logo
+ bilibili
+ alipay
+
+ color-颜色
+ solid
+ regular
+ light
+ brands
+
+ size-大小
+ light 24rpx
+ thin 44rpx
+ duotone 64rpx
+ bgColor-背景色
+ solid
+ regular
+ rotate-旋转角度
+ duotone 63
+ duotone 58
+ flip-翻转
+ duotone 正常
+
+ duotone 水平翻转
+
+
+ duotone 垂直翻转
+
+
+ duotone 垂直水平翻转
+
+ beat-跳动动画
+
+
+ duration-动画持续时间
+
+ scale-动画比例
+
+ fade-淡入淡出动画
+
+ opacity-透明度值
+
+
+
+
+
diff --git a/src/pages.json b/src/pages.json
index b9907bd..8e483f1 100644
--- a/src/pages.json
+++ b/src/pages.json
@@ -82,6 +82,17 @@
"ignoreAuth": true
}
}]
+ },{
+ "root": "demo/example",
+ "pages": [{
+ "path": "fontAwesomeIcon/index",
+ "style": {
+ "navigationBarTitleText": "FontAwesomeIcon-Demo"
+ },
+ "meta": {
+ "ignoreAuth": true
+ }
+ }]
}],
"globalStyle": {
"navigationBarTextStyle": "black",
diff --git a/src/pages/demo/index.vue b/src/pages/demo/index.vue
index 8929b46..33a2121 100644
--- a/src/pages/demo/index.vue
+++ b/src/pages/demo/index.vue
@@ -1,13 +1,15 @@
@@ -16,7 +18,9 @@
List1 →
-
+
+ FontAwesomeIcon →
+