LoginSignup
0
0

More than 3 years have passed since last update.

chat-spaceを作ろう②

Posted at

TOPページを作成する

コントローラーを作成し、ルートを設定する

ターミナル
rails g controller messages
messagesコントロラーと、views/messagesディレクトリが作成される
controller/messages_controller.rb
def index
end
topページ用のindexアクションを定義する
routes.rb
root "messages#index"
とりあえず、TOPページを表示する為のルートを設定する

ビューファイルを作成する

views/messagesディレクトリ内に以下のファイルを作成する

  • index.html.haml (indexアクションに対応したビューファイル)
  • _side_bar.html.haml (TOPページの左サイド部分)
  • _main_chat.html.haml (TOPページのメイン部分)
views/messages/index.html.haml
.wrapper
side_barmain_chatの要素を囲むコンテナ(特に意味はない)
  = render "shared/side_bar.html.haml"
  = render "main_chat.html.haml"
  部分テンプレートを呼び出す

今日ここまで
次回はアイコンを使用できる様にします
見本サイト

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0