perf-FontAwesomeIcon 微信小程序和阿里小程序动态远程加载字体

This commit is contained in:
Huang 2022-10-08 18:01:10 +08:00
parent 92fe301c2a
commit 60bb660b92
12 changed files with 115 additions and 12 deletions

View File

@ -3,10 +3,14 @@
import { useAuthStore } from '@/state/modules/auth'; import { useAuthStore } from '@/state/modules/auth';
import { removeInterceptor, setupInterceptors } from '@/utils/interceptors'; import { removeInterceptor, setupInterceptors } from '@/utils/interceptors';
import { useRouterStore } from '@/state/modules/router'; import { useRouterStore } from '@/state/modules/router';
import { dynamicLoadFontFace } from '@/utils/fonts';
onLaunch(() => { onLaunch(() => {
console.log('App Launch'); console.log('App Launch');
/** 微信小程序和阿里小程序动态远程加载font awesome icon 字体 **/
/* #ifdef MP-WEIXIN || MP-ALIPAY */
dynamicLoadFontFace();
/* #endif */
removeInterceptor(); removeInterceptor();
setupInterceptors(); setupInterceptors();

View File

@ -1,4 +1,5 @@
@import "scss/fontawesome"; @import "scss/fontawesome";
@import "scss/solid"; @import "scss/solid";
@import "scss/brands"; @import "scss/brands";
@import "scss/regular"; @import "scss/regular";

View File

@ -8,7 +8,7 @@ $fa-style-family : "Font Awesome 6" !default;
$fa-style-family-solid : '#{ $fa-style-family } Solid'; $fa-style-family-solid : '#{ $fa-style-family } Solid';
$fa-style-family-regular : '#{ $fa-style-family } Regular'; $fa-style-family-regular : '#{ $fa-style-family } Regular';
$fa-style-family-light : '#{ $fa-style-family } Light'; $fa-style-family-light : '#{ $fa-style-family } Light';
$fa-style-family-thin: '#{ $fa-style-family } Thin'; $fa-style-family-thin : '#{ $fa-style-family } Thin';
$fa-style-family-sharp-solid : '#{ $fa-style-family } Sharp Solid'; $fa-style-family-sharp-solid : '#{ $fa-style-family } Sharp Solid';
$fa-style-family-brands : '#{ $fa-style-family } Brands Regular'; $fa-style-family-brands : '#{ $fa-style-family } Brands Regular';
$fa-style-family-duotone : '#{ $fa-style-family } Duotone Solid'; $fa-style-family-duotone : '#{ $fa-style-family } Duotone Solid';

View File

@ -12,6 +12,7 @@
--#{$fa-css-prefix}-font-brands: normal 400 1em/1 '#{ $fa-style-family-brands }'; --#{$fa-css-prefix}-font-brands: normal 400 1em/1 '#{ $fa-style-family-brands }';
} }
/* #ifndef MP-WEIXIN || MP-ALIPAY */
@font-face { @font-face {
font-family: $fa-style-family-brands; font-family: $fa-style-family-brands;
font-style: normal; font-style: normal;
@ -28,6 +29,7 @@
// $fa-brands-400-ttf; // $fa-brands-400-ttf;
/* #endif */ /* #endif */
} }
/* #endif */
.fab, .fab,
.#{$fa-css-prefix}-brands { .#{$fa-css-prefix}-brands {

View File

@ -9,9 +9,10 @@
:root, :host { :root, :host {
--#{$fa-css-prefix}-style-family-classic: $fa-style-family-duotone; --#{$fa-css-prefix}-style-family-classic: $fa-style-family-duotone;
--#{$fa-css-prefix}-font-duotone: normal 900 1em/1 $fa-style-family-duotone; --#{$fa-css-prefix}-font-duotone: normal 900 1em/1 '#{ $fa-style-family-duotone }';
} }
/* #ifndef MP-WEIXIN || MP-ALIPAY */
@font-face { @font-face {
font-family: $fa-style-family-duotone; font-family: $fa-style-family-duotone;
font-style: normal; font-style: normal;
@ -28,6 +29,7 @@
/* #endif */ /* #endif */
} }
/* #endif */
.far, .far,
.#{$fa-css-prefix}-duotone { .#{$fa-css-prefix}-duotone {

View File

@ -9,9 +9,9 @@
:root, :host { :root, :host {
--#{$fa-css-prefix}-style-family-classic: $fa-style-family-light; --#{$fa-css-prefix}-style-family-classic: $fa-style-family-light;
--#{$fa-css-prefix}-font-light: normal 300 1em/1 '#{ $fa-style-family-light } Pro Light'; --#{$fa-css-prefix}-font-light: normal 300 1em/1 '#{ $fa-style-family-light }';
} }
/* #ifndef MP-WEIXIN || MP-ALIPAY */
@font-face { @font-face {
font-family: $fa-style-family-light; font-family: $fa-style-family-light;
font-style: normal; font-style: normal;
@ -25,9 +25,9 @@
/* #ifndef H5 */ /* #ifndef H5 */
src: $fa-light-300-woff2; src: $fa-light-300-woff2;
// $fa-light-300-ttf; // $fa-light-300-ttf;
/* #endif */ /* #endif */
} }
/* #endif */
.far, .far,
.#{$fa-css-prefix}-light { .#{$fa-css-prefix}-light {

View File

@ -11,7 +11,7 @@
--#{$fa-css-prefix}-style-family-classic: $fa-style-family-regular; --#{$fa-css-prefix}-style-family-classic: $fa-style-family-regular;
--#{$fa-css-prefix}-font-regular: normal 400 1em/1 '#{ $fa-style-family-regular }'; --#{$fa-css-prefix}-font-regular: normal 400 1em/1 '#{ $fa-style-family-regular }';
} }
/* #ifndef MP-WEIXIN || MP-ALIPAY */
@font-face { @font-face {
font-family: $fa-style-family-regular; font-family: $fa-style-family-regular;
font-style: normal; font-style: normal;
@ -28,6 +28,7 @@
/* #endif */ /* #endif */
} }
/* #endif */
.far, .far,
.#{$fa-css-prefix}-regular { .#{$fa-css-prefix}-regular {

View File

@ -11,7 +11,7 @@
--#{$fa-css-prefix}-style-family-sharp: $fa-style-family-sharp-solid; --#{$fa-css-prefix}-style-family-sharp: $fa-style-family-sharp-solid;
--#{$fa-css-prefix}-font-sharp-solid: normal 900 1em/1 '#{ $fa-style-family-sharp-solid }'; --#{$fa-css-prefix}-font-sharp-solid: normal 900 1em/1 '#{ $fa-style-family-sharp-solid }';
} }
/* #ifndef MP-WEIXIN || MP-ALIPAY */
@font-face { @font-face {
font-family: $fa-style-family-sharp-solid; font-family: $fa-style-family-sharp-solid;
font-style: normal; font-style: normal;
@ -27,6 +27,7 @@
// $fa-sharp-solid-900-ttf; // $fa-sharp-solid-900-ttf;
/* #endif */ /* #endif */
} }
/* #endif */
.far, .far,
.#{$fa-css-prefix}-sharp-solid { .#{$fa-css-prefix}-sharp-solid {

View File

@ -12,6 +12,7 @@
--#{$fa-css-prefix}-font-solid: normal 900 1em/1 '#{ $fa-style-family-solid }'; --#{$fa-css-prefix}-font-solid: normal 900 1em/1 '#{ $fa-style-family-solid }';
} }
/* #ifndef MP-WEIXIN || MP-ALIPAY */
@font-face { @font-face {
font-family: $fa-style-family-solid ; font-family: $fa-style-family-solid ;
font-style: normal; font-style: normal;
@ -27,6 +28,7 @@
// $fa-solid-900-ttf; // $fa-solid-900-ttf;
/* #endif */ /* #endif */
} }
/* #endif */
.fas, .fas,
.#{$fa-css-prefix}-solid { .#{$fa-css-prefix}-solid {

View File

@ -11,7 +11,7 @@
--#{$fa-css-prefix}-style-family-classic: $fa-style-family-thin; --#{$fa-css-prefix}-style-family-classic: $fa-style-family-thin;
--#{$fa-css-prefix}-font-thin: normal 100 1em/1 '#{ $fa-style-family-thin }'; --#{$fa-css-prefix}-font-thin: normal 100 1em/1 '#{ $fa-style-family-thin }';
} }
/* #ifndef MP-WEIXIN || MP-ALIPAY */
@font-face { @font-face {
font-family: $fa-style-family-thin; font-family: $fa-style-family-thin;
font-style: normal; font-style: normal;
@ -27,6 +27,7 @@
// $fa-thin-100-ttf; // $fa-thin-100-ttf;
/* #endif */ /* #endif */
} }
/* #endif */
.far, .far,
.#{$fa-css-prefix}-thin { .#{$fa-css-prefix}-thin {

View File

@ -8,7 +8,6 @@
const onCopyLink = () => { const onCopyLink = () => {
SetClipboardData(iconLink.value); SetClipboardData(iconLink.value);
console.log('的反馈了高考历史电饭锅');
}; };
</script> </script>
<template> <template>
@ -16,8 +15,13 @@
<view class="h2"> FontAwesomeIcon 图标组件基于font awesome icon v6.20</view> <view class="h2"> FontAwesomeIcon 图标组件基于font awesome icon v6.20</view>
<view class="tip"> <view class="tip">
Tip: 由于字体文件太大,共7种风格图标, 7个字体文件, Tip: 由于字体文件太大,共7种风格图标, 7个字体文件,
在微信小程序中请不要引用全部字体,在组件目录index.scss中配置, 已测试: 支持H5, APP(安卓), <!-- #ifdef MP-WEIXIN || MP-ALIPAY -->
微信小程序 微信小程序和阿里小程序动态远程加载font awesome icon 字体, \src\utils\fonts.ts中配置,
<!-- #endif -->
<!-- #ifndef MP-WEIXIN || MP-ALIPAY-->
在组件目录index.scss中配置引入字体,
<!-- #endif -->
已测试: 支持H5, APP(安卓), 微信小程序
</view> </view>
<view class="tip"> <view class="tip">
全部icon请查看: 全部icon请查看:

85
src/utils/fonts.ts Normal file
View File

@ -0,0 +1,85 @@
import { getBaseUrl } from '@/utils/env';
const fa_style_family = 'Font Awesome 6';
const fa_style_family_solid = `${fa_style_family} Solid`;
const fa_style_family_regular = `${fa_style_family} Regular`;
const fa_style_family_light = `${fa_style_family} Light`;
const fa_style_family_thin = `${fa_style_family} Thin`;
const fa_style_family_sharp_solid = `${fa_style_family} Sharp Solid`;
const fa_style_family_brands = `${fa_style_family} Brands Regular`;
const fa_style_family_duotone = `${fa_style_family} Duotone Solid`;
const BASE_URL = getBaseUrl();
/* 实际项目中替换为自己服务器的url */
const LOAD_FONT_FACE_URL = `${BASE_URL}/fonts`;
const fontFamilyList = [
{
family: fa_style_family_solid,
source: `${LOAD_FONT_FACE_URL}/fa-solid-900.woff2`,
weight: '900',
},
{
family: fa_style_family_regular,
source: `${LOAD_FONT_FACE_URL}/fa-regular-400.woff2`,
weight: '400',
},
{
family: fa_style_family_light,
source: `${LOAD_FONT_FACE_URL}/fa-light-300.woff2`,
weight: '300',
},
{
family: fa_style_family_thin,
source: `${LOAD_FONT_FACE_URL}/fa-thin-100.woff2`,
weight: '100',
},
{
family: fa_style_family_sharp_solid,
source: `${LOAD_FONT_FACE_URL}/fa-sharp-solid-900.woff2`,
weight: '900',
},
{
family: fa_style_family_duotone,
source: `${LOAD_FONT_FACE_URL}/fa-duotone-900.woff2`,
weight: '900',
},
{
family: fa_style_family_brands,
source: `${LOAD_FONT_FACE_URL}/fa-brands-400.woff2`,
weight: '400',
},
];
function LoadFontFace(data: UniApp.LoadFontFaceOptions & { weight?: string; global?: boolean }) {
return new Promise((resolve, reject) => {
uni.loadFontFace({
global: true,
...data,
desc: {
style: 'normal',
weight: data.weight ?? 'normal',
variant: 'normal',
},
success: (res) => {
resolve(res);
},
fail: (err) => {
reject(err);
},
});
});
}
export function dynamicLoadFontFace() {
fontFamilyList.forEach((fontFamily) => {
LoadFontFace(fontFamily)
.then((res: any) => {
console.log(fontFamily.family, res.errMsg);
})
.catch((err) => {
console.error(fontFamily.family, err.errMsg);
});
});
}