Skip to content

Latest commit

 

History

History
99 lines (72 loc) · 4.62 KB

CONTRIBUTING.md

File metadata and controls

99 lines (72 loc) · 4.62 KB

Contributing

TL;DR: Check this list.

Please do! You could add documentation, fix bugs, add to the demos/integrate with other elm-libraries, or add components. There are opportunities for both newcomers and experienced Elm programmers: adding documentation, fixing bugs and adding missing features is a good way to get deeper into the language; for experienced programmers, every step of the way (so far) has for me been a surprisingly subtle and complex challenge in finding proper APIs.

Adding documentation

This is perhaps the easiest place to start. In some cases, documentation can be based more or less directly on the MDL documentation. In other cases, you'll need to read the code needing documentation. If you are new to Elm, this could be a good way to get deeper into the language.

See the documentation issue list

Enhancing/fixing existing components

Some components are stable but not fully featured. Adding minor features could be a good way to get started.

See the enhancement issue list.

Improving demos / Integration with other libraries

If you have some experience with other Elm packages, it'd be very interesting to see if the library interacts properly with these. Right now,

  • The Snackbar has some animation based on CSS transitions; it'd be very interesting to see if the library interacts reasonably with elm-html-animation. (Issue.)

See the demo issue list.

Contributing components

The easiest place to start is to add more CSS-only components. These require no porting of Javascript, just putting together css-classes as instructed by the MDL Component Documentation. These components invariably require serious thinking about what is an appropriate Elm API and so are usually interesting in their own right for that reason. Take a look at

Progress bars are pure CSS, and spinners seem to use Javascript only to insert auxiliary DOM-nodes on initialisation.

The remaining components, use Javascript in various ways. Toggles seem to use Javascript exclusively to insert ripple-animations and might be easy to implement using the Ripple.elm component:

The rest I haven't looked at; they may or may not be straightforward to port to Elm.

Getting started with a new component

Each component has its actual code in src/Material/NameOfComponent.elm and a demo in demo/Demo/NameOfComponent.elm. These are what you need to construct. To get started quickly, do this:

  1. Clone this repository
  2. Copy the file src/Material/Template.elm to src/Material/NameOfYourComponent.elm. Rename as appropriate in the file.
  3. Copy the file demo/Demo/Template.elm to demo/Demo/NameOfYourComponent.elm. Rename as appropriate in the file.
  4. In demo/Demo.elm, find all the places that mentions template or Template, copy those bits, and rename as appropriate.
  5. Copy the template bits in src/Material.elm.
  6. Compile and open page.html in a browser.

The last tab contains your component. Now all you need is code!

To avoid duplication of work, open an issue and let everybody know that you are working on a particular component.