GithubHelp home page GithubHelp logo

isabella232 / elm-css-modules-loader Goto Github PK

View Code? Open in Web Editor NEW

This project forked from cultureamp/elm-css-modules-loader

0.0 0.0 0.0 1.46 MB

Reference CSS modules in Elm source files with Webpack

License: BSD 3-Clause "New" or "Revised" License

CSS 1.25% Elm 53.08% JavaScript 41.41% HTML 2.08% Dockerfile 2.18%

elm-css-modules-loader's Introduction

CSS Modules for Elm

A Webpack loader that enables you to reference CSS modules in Elm source files.

Hat tip to NoRedInk and its elm-assets-loader, which formed the technical basis for this package.

Overview

Start with a CSS file that can be imported by Webpack using css-loader:

.something {
  ⋮
}

.anotherThing {
  ⋮
}

In any Elm module, reference this stylesheet and the classes you want to use in it:

module Main exposing (..)

import CssModules exposing (css)


styles =
    css "./stylesheet.css" -- relative to main Elm source directory
        { something = "something" -- string value should match CSS class name 
        , anotherThing = "anotherThing"
        }

Then use the returned functions to use the class names in your view:

view : Html Msg
view =
    div
        [ styles.class .something ]
        [ text "this is a div"]

Note: the .something syntax may be confusing at first. This is just standard Elm syntax for a function that reaches into a record and returns the value of the something key. Because the Elm compiler will only let you reference class names that exist in your CSS Module declaration, you get a bit of type safety to guard against typing mistakes.

Why does this exist?

We wanted to use the same style sheets for the standard components in our application (buttons, form fields, etc.) across two different implementations of these components (React and Elm). We love the namespacing and composition features of CSS Modules; this project seeks to make them usable within Elm views.

Note: elm-css is the de facto standard for writing styles for HTML interfaces written in Elm. If you are working on an all-Elm application, you should probably use that.

How to use

To get this working, you need to set up a combination of a Webpack loader and and Elm package.

Webpack Loader

Add the elm-css-modules-loader NPM package to your project, then configure Webpack to chain it with elm-webpack-loader:

Webpack 2+

module.exports = {
  
  module: {
    rules: [
      {
        test: /\.elm$/,
        use: [
          {
            loader: 'elm-css-modules-loader',
          },
          {
            loader: 'elm-webpack',
          }
        ],
      },
      
    ],
  },
};

Webpack 1.x

module.exports = {
  
  module: {
    loaders: [
      {
        test: /\.elm$/,
        loaders: [
          'elm-css-modules-loader',
          'elm-webpack',
        ],
      },
      
    ],
  },
};

Note the following configuration options are available for the loader. If you’re using the original version of this package, the defaults should work fine.

package – (default: cultureamp/elm-css-modules-loader) The Elm package in which the CssModule type is defined. If you forked the Elm package for your own development, you’ll need to specify the full package name that you have released it under with this option.

module – (default: CssModules) The name of the Elm module in which the tagger function is defined.

tagger – (default: css) The name of the Elm factory function that is used to declare CssModules in your code.

Note: Don't set noParse on .elm files. Otherwise, the JavaScript requires that this loader adds to your compiled Elm modules won't be processed by Webpack.

Elm Package

Install the cultureamp/elm-css-modules-loader package in your Elm project, then use the CssModule constructor for referencing CSS modules.

Under the hood

Let’s walk through what happens when this Elm code is processed by Webpack:

styles =
    css "./stylesheet.css"
        { something = "something"
        , anotherThing = "anotherThing"
        }

This will be compiled to JavaScript by elm-webpack-loader:

var user$project$Styles$styles = A2(
  cultureamp$elm_css_modules_loader$CssModules$css,
  './stylesheet.css',
  {
    aC: 'something',
    aD: 'anotherThing'
  }
);

elm-css-modules-loader replaces the hard-coded JSON object with a require of your stylesheet:

var user$project$Styles$styles = A2(
  cultureamp$elm_css_modules_loader$CssModules$css,
  './stylesheet.css',
  {
    aC: require('./stylesheet.css')["something"],
    aD: require('./stylesheet.css')["anotherThing"]
  }
);

webpack parses this require call, processes the stylesheet with css-loader, and replaces the require with a reference to the CSS module:

var user$project$Styles$styles = A2(
  cultureamp$elm_css_modules_loader$CssModules$css,
  './stylesheet.css',
  {
    aC: __webpack_require__(42)["something"],
    aD: __webpack_require__(42)["anotherThing"]
  }
);

The CSS module loaded by __webpack_require__(42) contains the actual class names that your Elm app will now consume:

42:
function(module, exports) {
  module.exports = {
    something: 'something-abc123',
    anotherThing: 'anotherThing-abc123'
  };
}

Changelog

Our release history is tracked on the Github Releases page.

Note that the NPM package and the Elm package will have different version numbers, as changes to the Elm API may happen indepently of changes to the NPM API, and Elm does not allow you to bump the version number without changes to the Elm API. When viewing the releases page, NPM releases are tagged with a "v" - v2.1.0. While Elm releases are tagged with no leading "v" - 2.0.3.

For release history prior to 2.0.2, you can view our old CHANGELOG .


Elm CSS Modules Loader is maintained by the Front End Capability Team at Culture Amp.

elm-css-modules-loader's People

Contributors

asaayers avatar jasononeil avatar michaeljones avatar semantic-release-bot avatar sentience avatar zioroboco avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.