Skip to content

chantastic/frontend-guide

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 

Repository files navigation

Frontend Guide

A Guide to PCO Frontend Tools and Techniques

  1. Interfaces
  2. InterfacesIcons
  3. minions.css
  4. Rails SJR
  5. Turbolinks

Interfaces

Interfaces is a small collection of UI elements shared between all PCO apps. Consider it a starting point, not an absolute solution.

Things you should know:

The Topbar lives in Interfaces

Topbar is one of the few responsibilities of Interfaces. All the smarts about app and user switching happens in Interfaces.

Interfaces is a starting point

Don't feel weird about "outgrowing" Interfaces. It's a starting point. In versions to come, improving extensibility is the foremost concern.

UI doesn't get developed in Interfaces

Developing in a shared/versioned/changelogged space is painful. Avoid the pain by developing and testing new UI app-side. After it's proven to be useful and stable, PR it into Interfaces.

References

InterfacesIcons

InterfacesIcons provides shared icons to PCO apps. SVG icons are made available in Rails and React variants.

Things you should know:

Not all apps are on it yet

At the time of writing only People and Check-Ins use InterfacesIcons. And Check-Ins is on an old pre-SVG version.

It's a WIP

If you find parts of it painful, let me know.

Eventually all icons will live here

SVGs are more accessible than icon-fonts. Once we've worked out the kinks, this will be the single repository for Planning Center icons.

References

minions.css

Minions are a large collection of responsive-capable utility classes. They serve to eliminate the proliferation of BEM modifiers and necessary nudges. It's literally so much jargon, who knows what it means?

Things you should know:

Load order matters

minions classes need to be last in your CSS manifest. They only have a specificity of 0,0,1,0. So, write your styles carefully.

Utility classes are a great alternative to "modifiers"

If you've used BEM for a while, you know modifiers are where the entire system gets crufty. Reach for minions before creating new modifiers.

Best-practices are TBD

Utility classes are a relatively new addition to our frontend toolset. So, it's possible to over use them. Know that we don't have any tools yet to provide data about commonly used collections of used utility-classes.

Resources

Rails SJR

Server-generated JavaScript Responses are a technique we make heavy use of in our Rails apps. It should be the first-line of defense in adding interactivity to a Rails page.

Resources

react-rails

Turbolinks

Turbolinks makes following links in your web application faster. Instead of forcing the browser to recompile the JavaScript and CSS between each page, it keeps the current page instance alive and replaces only the body (or parts of) and the title in the head.

Things you should know:

We use 2 versions of Turbolinks

Make sure you're viewing documentation for the Turbolinks version loaded in your app. These versions are very different.

Turbolinks affects jQuery and React

References

About

A Guide to PCO Frontend Tools

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published