Skip to content

su-docker/Strut

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Strut

GUI / Authoring Tool for ImpressJS

This project intends to create an extensible, maintainable, and clean editor for authoring ImpressJS presentations. I hope this project can also serve as an example of a browser based rich client as the project matures.

Don't know what ImpressJS is? Check out the ImpressJS demo presentation: http://bartaz.github.com/impress.js/#/bored And here is a video of the very first version of Strut: http://www.youtube.com/watch?v=zA5s8wwme44

Strut live preview (Firefox, Chrome and Safari only): http://tantaman.github.com/Strut/web-dist/index.html

Preview

A github hosted preview is available at: http://tantaman.github.com/Strut/web-dist/index.html (Firefox, Chrome and Safari only)

The preview currently points to the development version of Strut.

Mailing List

strut-presentation-editor@googlegroups.com

Building

Note: You can get pre-built versions of Strut here: https://github.com/tantaman/Strut/downloads

You'll need CoffeeScript and Handlebars installed in order to build Strut.

  • Install CoffeeScript (sudo npm install -g coffee-script)
  • Install HandleBars (sudo npm install -g handlebars)
  • Install listen (sudo gem install listen)

To build everything in one shot, run: rake devbuild

A task to build a minified version suitable for production deployment is being added.

You can compile CoffeeScript whenever there is a change by running rake coffee[w]

A rake devbuild[w] which will watch templates, coffee, resource and js files is also in the works.

Running

Strut can run entirely from your local filesystem.
Just point your browser to file:///path/to/Strut/web/index.html to view Strut.

Contributing

Strut uses a Maven directory layout so code and resource will be found in src/main

In Strut there is an object for each major component. The Slides, SlidePreviews, TransitionEditor, SlideEditor, etc. all have their own objects so it's easy to track down and make changes to a component. Strut uses RequireJS to keep source files small and focused. BackboneJS is used for Strut's data model and serialization as well as for binding events in the view layers.

In addition to having organized code, the markup for Strut is also split up by component and placed in HandlebarsJS template files.

Here is the basic layout of the source:

  • Presentation Model: src/model/presentation
  • Editor UI Layer: src/ui/editor
  • Model -> ImpressJS Rendering: src/ui/impress_renderer

templates for UI components are contained in src/ui/COMPONENT_NAME/res/templates in order to package related markup and backing UI (not model) code into modules.

Acknowledgements

About

Strut - An ImpressJS GUI / Authoring Tool

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 87.6%
  • CoffeeScript 11.6%
  • Ruby 0.8%