Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Synopsis
- renderSvgFiles :: FilePath -> [(FilePath, Svg)] -> IO ()
- renderSvgReact :: FilePath -> [(FilePath, Svg)] -> IO ()
- svgToReact :: String -> Svg -> String
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 > ".assetsimg/" > [ (,) "sun" (sun 14) > , (,) "moon" moon > , (,) "crescent" crescent > ] This will create 3 files inside the .assetssvg/ folder, namely sun.svg, moon.svg and crescent.svg
renderSvgReact :: FilePath -> [(FilePath, Svg)] -> IO () Source #
renderSvgReact
renders svg code to .jsx 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
> ".assetssvg/"
> [ (,) "cancel" myCancelIcon
> ]
This call will create a cancel.jsx file inside the .assetssvg/ folder
with the following code inside:
>import React from react
;
>
>export const cancel =
>viewBox="-1 -1 2 2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
> fill="deeppink"
> 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.