Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/begriffs/css-ratiocinator

because your CSS is garbage
https://github.com/begriffs/css-ratiocinator

Last synced: about 2 months ago
JSON representation

because your CSS is garbage

Awesome Lists containing this project

README

        

![Logo](illustration/githubheader.png "Logo")

The CSS Ratiocinator automatically refactors your CSS and generates a
new stylesheet for your site. It works by examining your site's live DOM
in the browser and reverse engineering a new, more elegant definition
that captures styles down to the pixel.

It addresses the problem of old CSS whose styles accumulate and
contradict each other. After a certain point all CSS seems to grow only
by internal antagonism. The Ratiocinator wipes the slate clean and
provides a harmonious new beginning.

[![Build Status](https://travis-ci.org/begriffs/css-ratiocinator.png?branch=master)](https://travis-ci.org/begriffs/css-ratiocinator)

## Usage

This program runs from the command line using the
PhantomJS headless browser.

1. Install [PhantomJS](http://phantomjs.org/)
1. Clone this repo
1. In the cloned directory, run `phantomjs ratiocinate.js URL`
1. The new CSS will appear.
1. (optionally) Feed output through [sass-convert](http://blog.derekperez.com/post/816063805/move-you-existing-stylebase-over-to-sass-or-scss)

## Faq


Does this thing clobber or remove my styles?

No. If your page renders differently after using
Ratiocinator-generated style then that's a bug. This software may move
styles around during the assessment stage of its algorithm but the
end result respects the original styles you have created. Note that it
may achieve these styles using a different combination of selectors
and inheritance than your original CSS did.

Can it work on a whole site (multiple pages)?

In principle yes, but not yet. The strategy will be to ajax the
pages together into a single page with multiple body tags. This long
assembled page will provide enough data to the Ratiocinator to create
a new style that respects everything your site does.

How is this different from other CSS tidying programs?

The Ratiocinator does not read your CSS files at all, it ignores
them completely. It relies on the live DOM to infer what your styles
want to accomplish. The thoroughness of the results you get are based
on the quality and completeness of the example DOM that you provide the
program.

Does it capture styles for the "sad path?"

It captures styles for whatever you show it, so if you have styles
for errors or form validation problems or various element states
then you'll need to include the markup to demonstrate them. The most
effective input is a living style guide for your site. You do use a
style guide, don't you?

## Mechanism

The Ratiocinator proceeds in two phases: assessment and consolidation.
During assessment it determines which nodes will need which styles,
accounting for browser defaults and cascade rules. The browser provides
a full list of computed style for every node, and our first step is to
prune redundancies from cascaded style in a depth-first process called
"lifting."

![Lifting](illustration/lift.png "Lifting")

The last step in assessment is stripping default styles. The final
style needn't specify CSS defaults, so we remove them prior to the
consolidation phase.

Next comes consolidation, where we find shared pieces of style
throughout the cleaned DOM tree and extract them to CSS declarations.

![Consolidating](illustration/consolidate.png "Consolidating")

In the diagram above, the Ratiocinator will choose to output a
declaration for the styles in red before those in blue. Although there
are more blue items than red in element `aside.foo`, there are more red
elements overall. The red has greater "volume." Hence the Ratiocinator
will extract styles for all elements with class `foo` first and then for
`aside` elements second.

Finally the Ratiocinator detects media query width breakpoints and
samples the page style between them. It analyzes the responsive
portfolio and extracts common base-style. It outputs the base-style and
each width-specific style with appropriate media queries.

## Bugs and Edge Cases

Currently, anything Phantom considers to be an invalid property, value,
or selector is discarded. This means that the following CSS...

```css
body {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
}
::selection{
background:rgba(246,55,0,0.9);
color:#fff;
}
::-moz-selection{
background:rgba(246,55,0,0.9);
color:#fff;
}
```

Is compressed to the following CSS...

```css
body {
display: -webkit-box;
}
```

This is an invalid compression. A solution is being worked on in
[issue #52][issue52].

## Contributing

It is currently very easy to contribute. Just find something that the
Ratiocinator does wrong and tell me. The best complaints are very
specific, preferably made into a new test and submitted via a pull
request. Luckily that's easy too:

1. Find some styles that the Ratiocinator is botching.
1. Think of the smallest example that will illustrate the problem.
1. Add a new test by copying `test/template.html` and filling in the blanks.
1. Save your new test in the `test/` folder.
1. Run `phantomjs test.js` and make sure it fails.
1. Submit pull request to the `bug-reports` branch.

## License

The CSS Ratiocinator is Copyright © 2012 Joe Nelson. It is free
software, and may be redistributed under the terms specified in the
LICENSE file.

[issue52]: https://github.com/begriffs/css-ratiocinator/issues/52 "Issue #52"