class NotesController

Public Instance Methods

create() click to toggle source
# File lib/generators/jinda/templates/app/controllers/jinda_org/notes_controller.rb, line 21
def create
  @note = Note.new(
    title: $xvars["new_note"]["title"],
    body: $xvars["new_note"]["body"],
    user_id: $xvars["user_id"])
  @note.save!
  # if @note.save!
  #   format.html { redirect_to @note, notice: 'Sample was successfully created.'  }
  #   format.json { render :show, status: :created, location: @note }
  # else
  #   format.html { render :new }
  #   format.json { render json: @note.errors, status: :unprocessable_entity }
  # end
  redirect_to @note

end
delete() click to toggle source
# File lib/generators/jinda/templates/app/controllers/jinda_org/notes_controller.rb, line 51
def delete
  # called by freemind
# Tobe called from other controller:jinda
  @note_id = $xvars["select_note"] ? $xvars["select_note"]["id"] : $xvars["p"]["note_id"]
  @note = Note.find(@note_id)
  @note.destroy
end
destroy() click to toggle source
# File lib/generators/jinda/templates/app/controllers/jinda_org/notes_controller.rb, line 59
def destroy
  # called by rails menu my
  if current_ma_user.role.upcase.split(',').include?("A") || current_ma_user == @note.user
    @note.destroy
  end
  redirect_to :action=>'my'
end
edit() click to toggle source
# File lib/generators/jinda/templates/app/controllers/jinda_org/notes_controller.rb, line 16
def edit
  @note = Note.find(params[:id])
  @page_title       = 'Edit Note'
end
index() click to toggle source

before_action :xload_current_ma_user, only: [:destroy]

# File lib/generators/jinda/templates/app/controllers/jinda_org/notes_controller.rb, line 5
def index
  @notes = Note.desc(:created_at).page(params[:page]).per(10)
end
mail() click to toggle source
# File lib/generators/jinda/templates/app/controllers/jinda_org/notes_controller.rb, line 67
def mail
  NoteMailer.gmail(
                  $xvars["display_mail"]["body"],
                  $xvars["select_note"]["email"],
                  $xvars["display_mail"]["title"],
                  xload_current_ma_user.email)
end
my() click to toggle source
# File lib/generators/jinda/templates/app/controllers/jinda_org/notes_controller.rb, line 9
def my
  @notes = Note.where(user_id: current_ma_user).desc(:created_at).page(params[:page]).per(10)
end
show() click to toggle source
# File lib/generators/jinda/templates/app/controllers/jinda_org/notes_controller.rb, line 13
def show 
end
update() click to toggle source
# File lib/generators/jinda/templates/app/controllers/jinda_org/notes_controller.rb, line 39
def update
  # $xvars["select_note"] and $xvars["edit_note"]
  # These are variables.
  # They contain everything that we get their forms select_note and edit_note
  note_id = $xvars["select_note"] ? $xvars["select_note"]["id"] : $xvars["p"]["note_id"]
  @note = Note.find(note_id)
  @note.update(title: $xvars["edit_note"]["title"],
               body: $xvars["edit_note"]["body"])
  redirect_to @note

end

Private Instance Methods

load_note() click to toggle source
# File lib/generators/jinda/templates/app/controllers/jinda_org/notes_controller.rb, line 82
def load_note
  @note = Note.find(params[:id])
end
xload_current_ma_user() click to toggle source

Tobe called from other controller:jinda

# File lib/generators/jinda/templates/app/controllers/jinda_org/notes_controller.rb, line 78
def xload_current_ma_user
  @current_ma_user = User.find($xvars["user_id"])
end