Compare commits
No commits in common. "4b099bacc4131f4e844360c803d65dd81e3ae1eb" and "a70c65669032630a8f23625f4a712c8660c23392" have entirely different histories.
4b099bacc4
...
a70c656690
13 changed files with 0 additions and 196 deletions
|
@ -2,12 +2,6 @@
|
|||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
.msg-notice {
|
||||
@apply bg-green-300 text-green-900;
|
||||
}
|
||||
.msg-alert {
|
||||
@apply bg-red-300 text-red-900;
|
||||
}
|
||||
/*
|
||||
|
||||
@layer components {
|
||||
|
|
|
@ -1,40 +0,0 @@
|
|||
class SessionsController < ApplicationController
|
||||
# GET /sessions/new
|
||||
def new
|
||||
@session = Session.new
|
||||
end
|
||||
|
||||
# POST /sessions or /sessions.json
|
||||
def create
|
||||
@session = Session.new(session_params)
|
||||
|
||||
respond_to do |format|
|
||||
if @session.save
|
||||
session[:current_user_id] = @session.user_id
|
||||
Rails.logger.info("ID: #{@session.user_id}")
|
||||
|
||||
format.html { redirect_to root_url, notice: "Session was successfully created." }
|
||||
format.json { render :show, status: :created, location: @session }
|
||||
else
|
||||
format.html { render :new, status: :unprocessable_entity, alert: @session.errors }
|
||||
format.json { render json: @session.errors, status: :unprocessable_entity }
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
# DELETE /sessions/1 or /sessions/1.json
|
||||
def destroy
|
||||
session[:current_user_id] = nil
|
||||
|
||||
respond_to do |format|
|
||||
format.html { redirect_to root_url, notice: "Session was successfully destroyed." }
|
||||
format.json { head :no_content }
|
||||
end
|
||||
end
|
||||
|
||||
private
|
||||
# Only allow a list of trusted parameters through.
|
||||
def session_params
|
||||
params.require(:session).permit(:email, :password)
|
||||
end
|
||||
end
|
|
@ -1,2 +0,0 @@
|
|||
module SessionsHelper
|
||||
end
|
|
@ -1,22 +0,0 @@
|
|||
class Session
|
||||
include ActiveModel::Model
|
||||
|
||||
include ActiveModel::Attributes
|
||||
include ActiveModel::Validations
|
||||
|
||||
attr_accessor :user_id
|
||||
|
||||
attribute :email, :string
|
||||
attribute :password, :string
|
||||
|
||||
validates :email, presence: true
|
||||
validates :password, presence: true
|
||||
|
||||
def save
|
||||
user = User.authenticate_by(email: email, password: password)
|
||||
|
||||
@user_id = user && user.id
|
||||
|
||||
user.present? && self || nil
|
||||
end
|
||||
end
|
|
@ -19,18 +19,9 @@
|
|||
<li class="mr-6"><%= link_to "Credit Card Bills", credit_card_bills_path, class: "text-white" %></li>
|
||||
<li class="mr-6"><%= link_to "Incomes", incomes_path, class: "text-white" %></li>
|
||||
<li class="mr-6"><%= link_to "Members", members_path, class: "text-white" %></li>
|
||||
<li class="mr-6"><%= link_to "Log out", session_path, data: {turbo_method: :delete}, class: "text-white" %></li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<% if flash.any? %>
|
||||
<% flash.each do |type, msg| %>
|
||||
<div class="py-2 px-4 font-bold msg-<%= type %>">
|
||||
<%= msg %>
|
||||
</div>
|
||||
<% end %>
|
||||
<% end %>
|
||||
|
||||
<main class="container mx-auto mt-28 px-5 flex">
|
||||
<%= yield %>
|
||||
</main>
|
||||
|
|
|
@ -1,27 +0,0 @@
|
|||
<%= form_with(model: session, class: "contents") do |form| %>
|
||||
<% if session.errors.any? %>
|
||||
<div id="error_explanation" class="bg-red-50 text-red-500 px-3 py-2 font-medium rounded-lg mt-3">
|
||||
<h2><%= pluralize(session.errors.count, "error") %> prohibited this session from being saved:</h2>
|
||||
|
||||
<ul>
|
||||
<% session.errors.each do |error| %>
|
||||
<li><%= error.full_message %></li>
|
||||
<% end %>
|
||||
</ul>
|
||||
</div>
|
||||
<% end %>
|
||||
|
||||
<div class="my-5">
|
||||
<%= form.label :email %>
|
||||
<%= form.text_field :email, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
|
||||
</div>
|
||||
|
||||
<div class="my-5">
|
||||
<%= form.label :password %>
|
||||
<%= form.password_field :password, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
|
||||
</div>
|
||||
|
||||
<div class="inline">
|
||||
<%= form.submit class: "rounded-lg py-3 px-5 bg-blue-600 text-white inline-block font-medium cursor-pointer" %>
|
||||
</div>
|
||||
<% end %>
|
|
@ -1,2 +0,0 @@
|
|||
<div id="<%= dom_id session %>">
|
||||
</div>
|
|
@ -1,2 +0,0 @@
|
|||
json.extract! session, :id, :created_at, :updated_at
|
||||
json.url session_url(session, format: :json)
|
|
@ -1,7 +0,0 @@
|
|||
<div class="mx-auto md:w-2/3 w-full">
|
||||
<h1 class="font-bold text-4xl">New session</h1>
|
||||
|
||||
<%= render "form", session: @session %>
|
||||
|
||||
<%= link_to "Back to sessions", sessions_path, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
|
||||
</div>
|
|
@ -1,6 +1,4 @@
|
|||
Rails.application.routes.draw do
|
||||
resources :sessions, only: %i[new create]
|
||||
resource :session, only: :destroy
|
||||
resources :users
|
||||
resources :credit_card_bills
|
||||
resource :dashboard, only: :show
|
||||
|
|
|
@ -1,27 +0,0 @@
|
|||
require "test_helper"
|
||||
|
||||
class SessionsControllerTest < ActionDispatch::IntegrationTest
|
||||
test "should get new" do
|
||||
get new_session_url
|
||||
assert_response :success
|
||||
end
|
||||
|
||||
test "should create session" do
|
||||
user = users(:one)
|
||||
params = {
|
||||
session: {
|
||||
email: user.email,
|
||||
password: "secret"
|
||||
}
|
||||
}
|
||||
post sessions_url, params: params
|
||||
|
||||
assert_redirected_to root_url
|
||||
end
|
||||
|
||||
test "should destroy session" do
|
||||
delete session_url(@session)
|
||||
|
||||
assert_redirected_to root_url
|
||||
end
|
||||
end
|
|
@ -1,25 +0,0 @@
|
|||
require "test_helper"
|
||||
|
||||
class SessionTest < ActiveSupport::TestCase
|
||||
def test_save_when_exists
|
||||
user = users(:one)
|
||||
|
||||
session = Session.new(email: user.email, password: "secret")
|
||||
|
||||
assert session.save
|
||||
end
|
||||
|
||||
def test_save_when_not_exists
|
||||
session = Session.new(email: "fake@example.org", password: "secret")
|
||||
|
||||
refute session.save
|
||||
end
|
||||
|
||||
def test_save_when_password_incorrect
|
||||
user = users(:one)
|
||||
|
||||
session = Session.new(email: user.email, password: "bad_password")
|
||||
|
||||
refute session.save
|
||||
end
|
||||
end
|
|
@ -1,25 +0,0 @@
|
|||
require "application_system_test_case"
|
||||
|
||||
class SessionsTest < ApplicationSystemTestCase
|
||||
setup do
|
||||
@user = users(:one)
|
||||
end
|
||||
|
||||
test "should create session" do
|
||||
visit new_session_url
|
||||
|
||||
fill_in "Email", with: @user.email
|
||||
fill_in "Password", with: "secret"
|
||||
|
||||
click_on "Create Session"
|
||||
|
||||
assert_text "Session was successfully created"
|
||||
end
|
||||
|
||||
test "should destroy Session" do
|
||||
visit root_url
|
||||
click_on "Log out", match: :first
|
||||
|
||||
assert_text "Session was successfully destroyed"
|
||||
end
|
||||
end
|
Loading…
Add table
Reference in a new issue