Last active
April 21, 2017 03:03
-
-
Save geocodinglife/b36e68a23434715a5606f79f7933803c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <%= form_with(model: user) do |f| %> | |
| <% if user.errors.any? %> | |
| <div id="error_explanation"> | |
| <h2><%= pluralize(user.errors.count, "error") %> prohibited this user from being saved:</h2> | |
| <ul> | |
| <% user.errors.full_messages.each do |message| %> | |
| <li><%= message %></li> | |
| <% end %> | |
| </ul> | |
| </div> | |
| <% end %> | |
| <div class="field"> | |
| <%= f.label :name %> | |
| <%= f.text_field :name %> | |
| </div> | |
| <div class="actions"> | |
| <%= f.submit %> | |
| </div> | |
| <% end %> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <tr> | |
| <td><%= user.name %></td> | |
| <td><%= link_to 'Show', user %></td> | |
| <td><%= link_to 'Edit', edit_user_path(user) %></td> | |
| <td><%= link_to 'Destroy', user, method: :delete, data: { confirm: 'Are you sure?' } %></td> | |
| </tr> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // var ourList = document.getElementById("users"); | |
| // var ourHeadline = document.getElementById("actions"); | |
| // var listItems = document.getElementById('users').getElementsByTagName('tr'); | |
| // var user = "<%#= j render @user %>"; | |
| document.getElementById('users').appendChild("<%= j render @user %>"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <p id="notice"><%= notice %></p> | |
| <h1 id="odeth">Users</h1> | |
| <table> | |
| <thead> | |
| <tr> | |
| <th>Name</th> | |
| <th colspan="3"></th> | |
| </tr> | |
| </thead> | |
| <tbody id="users"> | |
| <%= render @users %> | |
| </tbody> | |
| </table> | |
| <br> | |
| <%= render 'form', user: @user %> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Rails.application.routes.draw do | |
| resources :users | |
| root 'users#index' | |
| # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class UsersController < ApplicationController | |
| before_action :set_user, only: [:show, :edit, :update, :destroy] | |
| # GET /users | |
| # GET /users.json | |
| def index | |
| @user = User.new | |
| @users = User.all | |
| end | |
| # GET /users/1 | |
| # GET /users/1.json | |
| def show | |
| end | |
| # GET /users/new | |
| def new | |
| @user = User.new | |
| end | |
| # GET /users/1/edit | |
| def edit | |
| end | |
| # POST /users | |
| # POST /users.json | |
| def create | |
| @user = User.new(user_params) | |
| respond_to do |format| | |
| if @user.save | |
| format.html { redirect_to @user, notice: 'User was successfully created.' } | |
| format.json { render :show, status: :created, location: @user } | |
| format.js | |
| else | |
| format.html { render :new } | |
| format.json { render json: @user.errors, status: :unprocessable_entity } | |
| end | |
| end | |
| end | |
| # PATCH/PUT /users/1 | |
| # PATCH/PUT /users/1.json | |
| def update | |
| respond_to do |format| | |
| if @user.update(user_params) | |
| format.html { redirect_to @user, notice: 'User was successfully updated.' } | |
| format.json { render :show, status: :ok, location: @user } | |
| else | |
| format.html { render :edit } | |
| format.json { render json: @user.errors, status: :unprocessable_entity } | |
| end | |
| end | |
| end | |
| # DELETE /users/1 | |
| # DELETE /users/1.json | |
| def destroy | |
| @user.destroy | |
| respond_to do |format| | |
| format.html { redirect_to users_url, notice: 'User was successfully destroyed.' } | |
| format.json { head :no_content } | |
| end | |
| end | |
| private | |
| # Use callbacks to share common setup or constraints between actions. | |
| def set_user | |
| @user = User.find(params[:id]) | |
| end | |
| # Never trust parameters from the scary internet, only allow the white list through. | |
| def user_params | |
| params.require(:user).permit(:name) | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
