Iceberg is a full-stack web framework in crystal-lang. It aims to serve as a MVC framework for developers to quickly create a functional website or software.
NOTE: It is in its very earlier stage and should not be used in production environment. However, feel free to try it out, request features, or report bugs.
At least Crystal 0.8.0 installed.
$ crystal init app project_name
dependencies:
iceberg:
github: adlerhsieh/icebergIt creates the necessary config files for you.
Check src/controllers/app_controller.cr. There should be an index action.
# This is default.
class AppController < Iceberg::Controller
def index
view :index
end
endAnd the same in src/views/app/index.cr.
# This is default.
class AppIndexView < Iceberg::View
def process
end
html :app, :index
endNo need to change anything above for our first app.
Now, go to src/routes.cr and route root to AppController:
Iceberg::Router.draw do
# Add this
get "/", :app
endAnd add the following to src/views/app/html/index.ecr.
Hello World!
Finally:
- Run
./servercommand in root directory. - Go to
http://localhost:2000. - You will see
Hello World. - Yay!
Route mapping is in src/routes.cr file. Available syntax:
Iceberg::Router.draw do
get "/", :app #=> route "/" to AppController#index
get "/app", "app#index" #=> ditto
get "/new_app", "app#new" #=> route "/new_app" to AppController#new action
post "/new_app", "app#new" #=> ditto, but with POST request
endController receives http request and decides what to process. It is designed to handle only http requests so don't put any business logic here. Leave it to view classes.
Current functionality:
The controller passes the action to View and handles all operations there.
A View returns a string of HTML that will respond to the browser.
The syntax is view :action, where Iceberg looks for a view class name contains both
Controller name and Action name. For example:
class MyController < Iceberg::Controller
def index
# this action looks for MyIndexView in `views` directory
view :index
end
endYou can either specify another view file.
class MyController < Iceberg::Controller
def index
# this action looks for MyAppView in `views` directory
view :app
end
endHowever, it is recommended to pair the names of a view and controller action together.
View is where your logic is. It uses ECR library to embed Crystal into HTML text.
The most important part is that it brings instance variables into HTML, like ERB in Ruby.
Check ECR library usage
in Crystal official repo.
One view class renders one file. This is a little different from Rails in which view is defined
in a controller action. The process action is necessary since Iceberg takes it as the main function
in this class, like func main in Golang.
It works like this:
class AppIndexView < Iceberg::View
def process
@name = "John"
end
html :app, :index
endAnd in your index.ecr file:
Hello, <%= @name %>You will see Hello, John in browser.
In addition, it is recommended to organize your view folder structure like:
src
|--views
|--app
|--index.cr
|--html
|--index.ecr
Under the views directory, app is the name of a controller class, and index is its action. The html folder contains all ecr files.
Everything is still in progress. It will be officially released once it's ready!
- Fork it ( https://github.com/adlerhsieh/iceberg/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request