adding teacher profiles
This commit is contained in:
59
app/controllers/teachers_controller.rb
Normal file
59
app/controllers/teachers_controller.rb
Normal file
@ -0,0 +1,59 @@
|
||||
class TeachersController < ApplicationController
|
||||
before_action :set_teacher, only: %i[ show edit update destroy ]
|
||||
|
||||
# GET /teachers
|
||||
def index
|
||||
@teachers = Teacher.all
|
||||
end
|
||||
|
||||
# GET /teachers/1
|
||||
def show
|
||||
end
|
||||
|
||||
# GET /teachers/new
|
||||
def new
|
||||
@teacher = Teacher.new
|
||||
end
|
||||
|
||||
# GET /teachers/1/edit
|
||||
def edit
|
||||
end
|
||||
|
||||
# POST /teachers
|
||||
def create
|
||||
@teacher = Teacher.new(teacher_params)
|
||||
@teacher.member = current_member
|
||||
|
||||
if @teacher.save
|
||||
redirect_to @teacher, notice: "Successfully created Teacher profile"
|
||||
else
|
||||
render :new, status: :unprocessable_entity
|
||||
end
|
||||
end
|
||||
|
||||
# PATCH/PUT /teachers/1
|
||||
def update
|
||||
if @teacher.update(teacher_params)
|
||||
redirect_to @teacher, notice: "Teacher Profile was updated."
|
||||
else
|
||||
render :edit, status: :unprocessable_entity
|
||||
end
|
||||
end
|
||||
|
||||
# DELETE /teachers/1
|
||||
def destroy
|
||||
@teacher.destroy
|
||||
redirect_to teachers_url, notice: "Teacher was successfully destroyed."
|
||||
end
|
||||
|
||||
private
|
||||
# Use callbacks to share common setup or constraints between actions.
|
||||
def set_teacher
|
||||
@teacher = Teacher.find(params[:id])
|
||||
end
|
||||
|
||||
# Only allow a list of trusted parameters through.
|
||||
def teacher_params
|
||||
params.require(:teacher).permit(:name, :bio, :picture)
|
||||
end
|
||||
end
|
2
app/helpers/teachers_helper.rb
Normal file
2
app/helpers/teachers_helper.rb
Normal file
@ -0,0 +1,2 @@
|
||||
module TeachersHelper
|
||||
end
|
@ -20,8 +20,8 @@ class Entity < ApplicationRecord
|
||||
end
|
||||
|
||||
def self.response(path = "")
|
||||
host = Rails.credentials.weather_dev
|
||||
host = Rails.credentials.weather_pro if Rails.env.production?
|
||||
host = Rails.application.credentials.weather_dev
|
||||
host = Rails.application.credentials.weather_pro if Rails.env.production?
|
||||
token = Rails.application.credentials.weather_token
|
||||
begin
|
||||
all = RestClient.get( "#{host}:8123/api/states#{path}" ,
|
||||
|
@ -7,11 +7,10 @@ class Member < ApplicationRecord
|
||||
mount_uploader :picture, PictureUploader
|
||||
|
||||
has_many :entities
|
||||
has_one :teacher
|
||||
|
||||
def admin
|
||||
true
|
||||
end
|
||||
def admin?
|
||||
true
|
||||
email == "torsten@villataika.fi"
|
||||
end
|
||||
alias :admin :admin?
|
||||
end
|
||||
|
10
app/models/teacher.rb
Normal file
10
app/models/teacher.rb
Normal file
@ -0,0 +1,10 @@
|
||||
class Teacher < ApplicationRecord
|
||||
belongs_to :member
|
||||
|
||||
validates :name , presence: true
|
||||
validates :bio , presence: true
|
||||
validates :picture , presence: true
|
||||
|
||||
mount_uploader :picture, PictureUploader
|
||||
|
||||
end
|
@ -9,7 +9,7 @@
|
||||
= f.label :name, class: "block font-bold mb-2 text-gray-700 text-sm"
|
||||
= f.text_field :name,
|
||||
autocomplete: "name",
|
||||
placeholder: "Pekka Juustonen",
|
||||
placeholder: "Joona Virtanen",
|
||||
class: "appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none shadow focus:shadow-outline"
|
||||
.mb-4
|
||||
= f.label :email, class: "block font-bold mb-2 text-gray-700 text-sm"
|
||||
|
@ -1,25 +1,16 @@
|
||||
= paginate @members
|
||||
.flex.justify-center
|
||||
|
||||
%h1 Listing members
|
||||
|
||||
%table
|
||||
%thead
|
||||
%tr
|
||||
%th Name
|
||||
%th Public
|
||||
%th
|
||||
%th
|
||||
%th
|
||||
|
||||
%tbody
|
||||
- @members.each do |member|
|
||||
%tr
|
||||
%td= member.name
|
||||
%td= member.public
|
||||
%td= link_to 'Show', member
|
||||
%td= link_to 'Edit', edit_member_path(member)
|
||||
%td= link_to 'Destroy', member, method: :delete, data: { confirm: 'Are you sure?' }
|
||||
|
||||
%br
|
||||
|
||||
= link_to 'New Member', new_member_path
|
||||
.grid.grid-cols-4
|
||||
- @members.each do |member|
|
||||
.fex.flex-col.overflow-hidden.rounded-lg.border.border-gray-100.shadow-sm.m-10
|
||||
=link_to member do
|
||||
= image_for( member , class: "h-60 w-full object-cover")
|
||||
%h3.pt-5.text-2xl.bg-gray-100.text-black.font-bold.text-center
|
||||
= member.name
|
||||
.p-2.text-xs.bg-gray-50.text-black.font-bold.text-center
|
||||
= stayed member
|
||||
%div.h-full
|
||||
.p-5.text-center
|
||||
.m-2.text-sm.leading-relaxed.line-clamp-3{ prose_classes }
|
||||
= shorten markdown(member.bio)
|
||||
|
@ -23,6 +23,15 @@
|
||||
= link_to edit_member_path(@member) do
|
||||
%button.bg-cyan-200.mr-3.inline-block.rounded-lg.px-4.py-3.text-md.font-medium.border.border-gray-400
|
||||
Edit
|
||||
- if @member.teacher
|
||||
= link_to edit_teacher_path(@member.teacher) do
|
||||
%button.bg-cyan-200.mr-3.inline-block.rounded-lg.px-4.py-3.text-md.font-medium.border.border-gray-400
|
||||
Edit teacher profile
|
||||
-else
|
||||
= link_to new_teacher_path do
|
||||
%button.bg-cyan-200.mr-3.inline-block.rounded-lg.px-4.py-3.text-md.font-medium.border.border-gray-400
|
||||
Create teacher profile
|
||||
|
||||
.grid.grid-cols-3.gap-4
|
||||
-@member.entities.each do |entity|
|
||||
%div= entity.type
|
||||
|
13
app/views/teachers/_form.html.haml
Normal file
13
app/views/teachers/_form.html.haml
Normal file
@ -0,0 +1,13 @@
|
||||
= simple_form_for @teacher do |f|
|
||||
= f.error_notification
|
||||
|
||||
= f.input :name
|
||||
= f.input :bio
|
||||
= f.input :picture , as: :file , label: (@teacher.picture.blank? ? "Add picture" : "Change picture (optional)")
|
||||
|
||||
.flex.justify-between.mt-4
|
||||
%button.bg-cyan-200{class: button_classes}
|
||||
= f.submit 'Save'
|
||||
|
||||
%button.bg-cyan-200{class: button_classes}
|
||||
= link_to 'Cancel', teachers_path
|
4
app/views/teachers/edit.html.haml
Normal file
4
app/views/teachers/edit.html.haml
Normal file
@ -0,0 +1,4 @@
|
||||
.flex.justify-center
|
||||
.column
|
||||
.text-xl.m-4 Edit your teacher profile
|
||||
= render 'form'
|
16
app/views/teachers/index.html.haml
Normal file
16
app/views/teachers/index.html.haml
Normal file
@ -0,0 +1,16 @@
|
||||
= paginate @teachers
|
||||
.flex.justify-center
|
||||
|
||||
.grid.grid-cols-4
|
||||
- @teachers.each do |teacher|
|
||||
.fex.flex-col.overflow-hidden.rounded-lg.border.border-gray-100.shadow-sm.m-10
|
||||
=link_to teacher do
|
||||
= image_for( teacher , class: "h-60 w-full object-cover")
|
||||
%h3.pt-5.text-2xl.bg-gray-100.text-black.font-bold.text-center
|
||||
= teacher.name
|
||||
.p-2.text-xs.bg-gray-50.text-black.font-bold.text-center
|
||||
= stayed teacher
|
||||
%div.h-full
|
||||
.p-5.text-center
|
||||
.m-2.text-sm.leading-relaxed.line-clamp-3{ prose_classes }
|
||||
= shorten markdown(teacher.bio)
|
4
app/views/teachers/new.html.haml
Normal file
4
app/views/teachers/new.html.haml
Normal file
@ -0,0 +1,4 @@
|
||||
.flex.justify-center
|
||||
.column
|
||||
.text-xl.m-4 Create your teacher profile
|
||||
= render 'form'
|
10
app/views/teachers/show.html.haml
Normal file
10
app/views/teachers/show.html.haml
Normal file
@ -0,0 +1,10 @@
|
||||
.px-4.py-16.mx-auto.sm:max-w-xl.md:max-w-full.lg:max-w-screen-xl.md:px-24.lg:px-8.lg:py-20
|
||||
.flex.flex-col.max-w-screen-lg.overflow-hidden.bg-white.border.rounded.shadow-sm.lg:flex-row.sm:mx-auto
|
||||
.relative{:class => "lg:w-1/2"}
|
||||
-if @teacher.picture_url
|
||||
= image_tag @teacher.picture_url, class: "object-cover w-full lg:absolute h-80 lg:h-full"
|
||||
.flex.flex-col.justify-center.p-8.lg:p-16.lg:pl-10{:class => "lg:w-1/2"}
|
||||
%h5.mb-3.text-3xl.font-extrabold.leading-none.sm:text-4xl
|
||||
= @teacher.name
|
||||
.mb-8.text-gray-800
|
||||
.prose= markdown(@teacher.bio)
|
Reference in New Issue
Block a user