npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

space-view

v0.3.0

Published

SpacePen minus jQuery

Downloads

3

Readme

Space View

This library currently has an element builder with the same DSL as SpacePen, but it returns a raw DOM element rather than a jQuery fragment.

View = require 'space-view'

class TestView extends View
  @content: (params={}, otherArg) ->
    @div keydown: 'viewClicked', class: 'rootDiv', =>
      @h1 { outlet: 'header' }, params.title + " " + otherArg
      @list()
      @subview 'subview', new Subview(title: "Subview", 43)

  @list: ->
    @ol =>
      @li outlet: 'li1', click: 'li1Clicked', class: 'foo', "one"
      @li outlet: 'li2', keypress:'li2Keypressed', class: 'bar', "two"

Write markup on the final frontier

SpaceView is a powerful but minimalistic client-side view framework for CoffeeScript. It combines the "view" and "controller" into a single object, whose markup is expressed with an embedded DSL similar to Markaby for Ruby.

The space-view API is like space-pen but remove the jQuery integration.

Basics

View objects extend from the View class and have a @content class method where you express their HTML contents with an embedded markup DSL:

class Spacecraft extends View
  @content: ->
    @div =>
      @h1 "Spacecraft"
      @ol =>
        @li "Apollo"
        @li "Soyuz"
        @li "Space Shuttle"

You can visit the view's DOM element by view.element.

view = new Spacecraft
view.find('ol').appendChild View.buildDOMFromHTML('<li>Star Destroyer</li>')

view.on 'click', ->
  alert "They clicked on #{$(this).text()}"

You can also pass arguments on construction, which get passed to both the @content method and the view's constructor.

class Spacecraft extends View
  @content: (params) ->
    @div =>
      @h1 params.title
      @ol =>
        @li name for name in params.spacecraft

view = new Spacecraft(title: "Space Weapons", spacecraft: ["TIE Fighter", "Death Star", "Warbird"])

If you override the View class's constructor, ensure you call super. Alternatively, you can define an initialize method, which the constructor will call for you automatically with the constructor's arguments.

class Spacecraft extends View
  @content: -> ...

  initialize: (params) ->
    @title = params.title

Outlets and Events

SpaceView will automatically create named reference for any element with an outlet attribute. For example, if the ol element has an attribute outlet=list, the view object will have a list entry pointing to a jQuery wrapper for the ol element.

class Spacecraft extends View
  @content: ->
    @div =>
      @h1 "Spacecraft"
      @ol outlet: "list", =>
        @li "Apollo"
        @li "Soyuz"
        @li "Space Shuttle"

  addSpacecraft: (name) ->
    @list.appendChild View.buildDOMFromHTML("<li>#{name}</li>")

Elements can also have event name attributes whose value references a custom method. For example, if a button element has an attribute click=launchSpacecraft, then SpaceView will invoke the launchSpacecraft method on the button's parent view when it is clicked:

class Spacecraft extends View
  @content: ->
    @div =>
      @h1 "Spacecraft"
      @ol =>
        @li click: 'launchSpacecraft', "Saturn V"

  launchSpacecraft: (event, element) ->
    console.log "Preparing #{element.name} for launch!"

Markup DSL Details

Tag Methods (@div, @h1, etc.)

As you've seen so far, the markup DSL is pretty straightforward. From the @content class method or any method it calls, just invoke instance methods named for the HTML tags you want to generate. There are 3 types of arguments you can pass to a tag method:

  • Strings: The string will be HTML-escaped and used as the text contents of the generated tag.

  • Hashes: The key-value pairs will be used as the attributes of the generated tag.

  • Functions (bound with =>): The function will be invoked in-between the open and closing tag to produce the HTML element's contents.

If you need to emit a non-standard tag, you can use the @tag(name, args...) method to name the tag with a string:

@tag 'bubble', type: "speech", => ...

Text Methods

  • @text(string): Emits the HTML-escaped string as text wherever it is called.

  • @raw(string): Passes the given string through unescaped. Use this when you need to emit markup directly that was generated beforehand.

Subviews

Subviews are a great way to make your view code more modular. The @subview(name, view) method takes a name and another view object. The view object will be inserted at the location of the call, and a reference with the given name will be wired to it from the parent view. A parentView reference will be created on the subview pointing at the parent.

class Spacecraft extends View
  @content: (params) ->
    @div =>
      @subview 'launchController', new LaunchController(countdown: params.countdown)
      @h1 "Spacecraft"
      ...

Freeform Markup Generation

You don't need a View class to use the SpaceView markup DSL. Call View.render with an unbound function (->, not =>) that calls tag methods, and it will return a document fragment for ad-hoc use. This method is also assigned to the $$ global variable for convenience.

view.list.append $$ ->
  @li =>
    @text "Starship"
    @em "Enterprise"

API

The 'View' class has the following class methods.

  • render: function(callback)

    This function render the content specified by callback, return the root element.

  • renderHtml: function(callback)

    Just like render but return the HTML string.

The View class has the following instance methods.

  • find: function(selector)

    Find the child nodes in the element tree by css selector.

  • findAll: function(selector)

    Find all of the child nodes by css selector.

  • on: function(eventName, callback)

    Add event listener callback for the eventName event.

  • off: function(eventName, callback)

    Remove event listener callback for the eventName event.

  • once: function(eventName, callback)

    Add event listener just like on, but after the event has trigger, the event callback will remove automatically.

Also, View has many html builder static method, such as div, image. Otherwise the HTML tag method, the following static method is included.

  • text: function(string)

    Build the text node. The particular character will escaped.

  • raw: function(string)

    Build the text node and the text will retain.

  • tag: function(tagName, args...)

    Build the tagName tag node.

  • subview: function(name, view)

    Integrate the sub view into this view.