svg-icons-2.9.3.0: Svg Icons and more
Safe HaskellSafe-Inferred
LanguageHaskell2010

SvgIcons.Core.Render

Synopsis

Documentation

renderSvgFiles :: FilePath -> [(FilePath, Svg)] -> IO () Source #

renderSvgFiles renders svg code to .svg files.

Takes a folder path in your computer and a list of pairs (String, Svg) and renders the svg code of every second element into a svg file named as the first element. You should not write the .svg file extension in the first element. This function also adds the correct DOCTYPE and xml:ns

Example use:

renderSvgFiles
  "./assets/img/"
  [ (,) "moonCrescent"  moonCrescent
  , (,) "moonHalf"      moonHalf
  , (,) "sun"          (sun 14)
  ]

This will create 3 files inside the ./assets/svg/ folder, namely sun.svg, moonHalf.svg and moonCrescent.svg

renderSvgReact :: FilePath -> [(FilePath, Svg)] -> IO () Source #

renderSvgReact renders svg code to .jsx files (React.js files)

Works as the previous function but creates .jsx files instead of .svg files. This function does not prepend the svg DOCTYPE but it does prepend the React import and an export line.

Example use:

myCancelIcon :: Svg
myCancelIcon =
  svg
    ! viewbox "-1 -1 2 2"
    $ cancel
      ! fill "deeppink"

renderSvgReact
  "./assets/svg/"
  [ (,) "cancel" myCancelIcon
  ]

This call will create a cancel.jsx file inside the ./assets/svg/ folder with the following code inside:

import React from 'react';

export const cancel =
<svg viewBox="-1 -1 2 2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
    <g fill="deeppink">
        <path d="M 0.1,-0.1 L 0.1,-0.8 A 0.1,0.1 0.0 1,0 -0.1,-0.8 L -0.1,-0.1 L -0.8,-0.1 A 0.1,0.1 0.0 1,0 -0.8,0.1 L -0.1,0.1 L -0.1,0.8 A 0.1,0.1 0.0 1,0 0.1,0.8 L 0.1,0.1 L 0.8,0.1 A 0.1,0.1 0.0 1,0 0.8,-0.1 Z" transform="rotate(45,0,0)" />
    </g>
</svg>

svgToReact :: String -> Svg -> String Source #

svgToReact is internally used in the previous function so you don't have to call it manually.

This function writes the import React from react; line and the export line. And more importantly, changes all hyphen-joined attributes to camelCase, because React will complain otherwise. For example, stroke-width changes to strokeWidth and text-anchor changes to textAnchor.

IMPORTANT: This function does not currently aim to be exhaustive, which means that you may encounter some hyphen-joined attribute which is not converted to camelCase and raises a React error. You can ask for an update in this function if you have such problem.