您好,登錄后才能下訂單哦!
本篇內容介紹了“React怎么封裝SvgIcon組件”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
相信使用過vue
的伙伴們,或多或少都接觸或使用過vue-element-admin
,其中許多封裝都不禁讓人拍案叫絕,因為本人之前是vue
入門前端的,所以對vue-element-admin
許多封裝印象深刻,現在從vue
轉react
之后,一直想把vue-element-admin
里面的封裝組件復刻到react
當中使用,這次是SvgIcon
組件的react
封裝版本;
npm 安裝
npm i svg-sprite-loader -D
yarn 安裝
yarn add svg-sprite-loader -D
{ test: /.svg$/, loader: "svg-sprite-loader", include: path.resolve(__dirname, "../src/icons"), options: { symbolId: "icon-[name]" } }, { test: /.(eot|woff2?|ttf|svg)$/, exclude: path.resolve(__dirname, "../src/icons"), // 不處理 svg類型文件 use: [ { loader: "url-loader", options: { name: "[name]-[hash:5].min.[ext]", limit: 10000, outputPath: "font", publicPath: "font" } } ] },
index.ts中方法
const requireAll = (requireContext: __WebpackModuleApi.RequireContext) => requireContext.keys().map(requireContext) const req = require.context('./svg', false, /.svg$/) requireAll(req) export {} // 默認到處,ts如若不導出,會警告
import React from 'react' import PropTypes from 'prop-types' import './index.scss' const SvgIcon = (props: { iconClass: string; svgClass: string; fill: string ;click: MouseEventHandler<HTMLElement>}) => { const { iconClass, fill, svgClass,click } = props return ( <i aria-hidden="true" onClick={click}> <svg className={`svg-class ${svgClass}`}> <use xlinkHref={'#icon-' + iconClass} fill={fill} /> </svg> </i> ) } SvgIcon.propTypes = { // svg名字 iconClass: PropTypes.string.isRequired, // 自定義類名 svgClass: PropTypes.string, //自定義方法 click: PropTypes.func, // 填充顏色 fill: PropTypes.string, } SvgIcon.defaultProps = { fill: 'currentColor', svgClass: '', click: () => {}, } export default SvgIcon
import React from 'react' import SvgIcon from '@/components/SvgIcon' const Index = () => { return ( <div> <SvgIcon iconClass="礦泉水" /> </div> ) } export default Index
最終效果:
如果按照以上步驟操作的話,圖表還是不出來,有可能是webpack中的配置出來問題;
一般來說打印requireAll(req)
出現以下一個數組才算成功,如果不是,你需要檢查下你的webpack是否將svg進行其他操作,導致無法正常解析;
出現以下情況,可能你在你的webpack中配置了一些配置項將svg進行base64轉碼了,導致svg無法正常解析;
此時檢查你的webpack:
“React怎么封裝SvgIcon組件”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。