Last active
August 7, 2017 22:14
-
-
Save saadshahd/d2a5a4b1eb163a62f8b4bc8b0b37a7bc to your computer and use it in GitHub Desktop.
Revisions
-
saadshahd revised this gist
Aug 7, 2017 . 1 changed file with 18 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ { test: /\.svg$/, exclude: /node_modules/, use: [ { loader: 'babel-loader' }, { loader: 'svg-sprite-loader', options: { runtimeGenerator: require.resolve('./svg-to-icon'), runtimeOptions: { iconModule: conf.path.src('app/components/icon.js') } } } ] } -
saadshahd created this gist
Aug 7, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,34 @@ const path = require('path'); const pascalCase = require('pascal-case'); const {stringifyRequest} = require('loader-utils'); const {stringifySymbol, stringify} = require('../../lib/utils'); module.exports = function ({symbol, config, context, loaderContext}) { const {spriteModule, symbolModule, runtimeOptions} = config; const compilerContext = loaderContext._compiler.context; const iconModulePath = path.resolve(compilerContext, runtimeOptions.iconModule); const iconModuleRequest = stringify( path.relative(path.dirname(symbol.request.file), iconModulePath) ); const spriteRequest = stringifyRequest({context}, spriteModule); const symbolRequest = stringifyRequest({context}, symbolModule); const parentComponentDisplayName = 'SpriteSymbolComponent'; const displayName = `${pascalCase(symbol.id)}${parentComponentDisplayName}`; return ` import React from 'react'; import SpriteSymbol from ${symbolRequest}; import sprite from ${spriteRequest}; import ${parentComponentDisplayName} from ${iconModuleRequest}; const symbol = new SpriteSymbol(${stringifySymbol(symbol)}); sprite.add(symbol); export default class ${displayName} extends React.Component { render() { return <${parentComponentDisplayName} glyph="${symbol.id}" {...this.props} />; } } `; };