All Projects → gadfly361 → re-surface

gadfly361 / re-surface

Licence: MIT license
Add structure to a reagent or re-frame application at the page level (sticky header, sidebar, modal, etc.)

Programming Languages

clojure
4091 projects
HTML
75241 projects

Re-surface

This library is an attempt to provide structure to a reagent application at the page level (which we will be calling a surface).

Demo

To use re-surface, add the following to the :dependencies vector in your project.clj file:

[re-surface "0.2.0-alpha2"]

Note: This is very much a work in progress and subject to sweeping changes.

The problem

Should this be position fixed or absolute? If this is position fixed, then do I need to add margin to that? Why isn't the z-index working ... shouldn't this be higher than that?

When I first start an application, I am excited and eager to get going. Generally, I just start barreling forward writing clojurescript without much concern for writing quality CSS.

In particular, the CSS regarding the page structure is a mess. It isn't until I am asked to add a sidebar or to make a sticky header that I even give my CSS a real thought. However, by that time, I have already been using some haphazard convention, and, well ... since there is already a lot of momentum, I just hack together something that works. Something that will specifically add that sidebar or that sticky header, but not something that I am proud of. You know, when you add a lot of control flow logic or disaggregated state or when you just close your eyes and add new classes to the bottom of an ever-growing stylesheet and hope that no one judges you.

Re-surface's solution

Re-surface exposes a single reagent component, surface, which provides a reasonable page structure for 80% of applications.

surface component

A surface takes a hash-map of the following:

key type default required?
:app-state reagent.core/atom no (1)
:component-registry component-registry yes
:surface-config surface-config no
:surface-key keyword yes
:surface-registry surface-registry yes

(1) The :app-state value will get passed to the components of a surface. This is useful if you are using vanilla reagent. However, if you are using re-frame, you can go ahead and ignore this.

component-registry

A component-registry is a hash-map of the following keys:

  • :header
  • :header-dropdown
  • :navbar
  • :navbar-dropdown
  • :body
  • :footer
  • :dimmer
  • :sidebar-left
  • :sidebar-right
  • :modal
  • :modal-fullscreen

The value of each of these is a hash-map where:

  • the key is the :key used in the surface-registry, and
  • the value is a reagent-component that takes a single parameter, app-state.

An example component-registry could look like this:

{:header {:default (fn [app-state]
                     [:h1 "Header"])}

 :body {:home (fn [app-state]
                [:div
                 [:h1 "This is the home page"]])

        :about (fn [app-state]
                 [:div
                  [:h1 "This is the about page"]])}}

surface-registry

An example surface-registry could look like this:

{:home-page
 {:header {:key    :default
           :height 100}

  :body {:key :home}}

 :about-page
 {:header {:key    :default
           :height 100}

  :body {:key :about}}}

A surface-registry is a hash-map.

  • The keys are used by surface-key to lookup which surface to render.
  • The values are a hash-map of the following:

:header / :navbar / :footer

:header, :navbar, and :footer take a hash-map of the following:

key type default required?
:background-color string "white" no
:fixed? boolean false no (2)
:height int no (2)
:key keyword yes
  • :key is used to lookup a component from the component-registry

(2) If you use fixed?, then you must use height.

:header-dropdown / :navbar-dropdown

:header-dropdown and :navbar-dropdown take a hash-map of the following:

key type default required?
:active? boolean false no
:background-color string "white" no
:bottom int no
:full-width? int false no (3)
:height int no
:key keyword no
:left int no
:right int no
:top int no
:width int no (3)
  • If the header and navbar have height's then their respective dropowns will start where they are. However, if header and navbar don't have heights, then you'll need to make up for it using :top.

(3) If you use full-width?, then width will be ignored.

:body

:body takes a hash-map of the following:

key type default required?
:background-color string "white" no
:key keyword yes

:dimmer

:dimmer takes a hash-map of the following:

key type default required?
:key keyword yes

If a dimmer is defined for a given surface, it will show if any of the following are active: header-dropdown, navbar-dropdown, sidebar-left, sidebar-right, modal, modal-fullscreen.

:sidebar-left / :sidebar-right

:sidebar-left and :sidebar-right take a hash-map of the following:

key type default required?
:active? boolean false no
:background-color string "white" no
:fixed? boolean false no
:key keyword yes
:width int yes

:modal

:modal takes a hash-map of the following:

key type default required?
:active? boolean false no
:background-color string "white" no
:height int no
:key keyword no
:width int yes

:modal-fullscreen

:modal-fullscreen takes a hash-map of the following:

key type default required?
:active? boolean false no
:background-color string "white" no
:key keyword no

surface-config

:surface-config takes a hash-map of the following:

key type default required?
:debug? boolean false no
:spec? boolean true no
:style-component (fn [opts] [:style ...]) no
:z-indicies z-indicies no
  • :debug? can be used if you'd like to see a background color on each of the elements during development. This was used when creating the demo.
  • :spec? can be used to turn on/off cljs.spec assertions.
  • :style-component really shouldn't be used. This is an escape-hatch to override the CSS provided by re-surface if you absolutely needed to.
  • :z-indicies really shouldn't be used. This is an escape-hatch to override the z-indicies used for each element.

What's next?

The following things are on my mind:

  • notifications
  • snackbar / toast

Questions

If you have questions, I can usually be found hanging out in the clojurians #reagent slack channel (my handle is @gadfly361).

License

The MIT License (MIT)

Copyright © 2017 Matthew Jaoudi

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].