mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-05 23:17:33 +08:00
124 lines
3.4 KiB
Ruby
124 lines
3.4 KiB
Ruby
module Users
|
|
module Settings
|
|
module Account
|
|
class PreferencesController < ApplicationController
|
|
before_action :load_user, only: [
|
|
:index,
|
|
:update,
|
|
:tutorial,
|
|
:reset_tutorial,
|
|
:notifications_settings
|
|
]
|
|
|
|
def index
|
|
end
|
|
|
|
def update
|
|
respond_to do |format|
|
|
if @user.update(update_params)
|
|
flash[:notice] =
|
|
t('users.settings.account.preferences.update_flash')
|
|
format.json do
|
|
flash.keep
|
|
render json: { status: :ok }
|
|
end
|
|
else
|
|
format.json do
|
|
render json: @user.errors,
|
|
status: :unprocessable_entity
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
def tutorial
|
|
@teams =
|
|
@user
|
|
.user_teams
|
|
.includes(team: :users)
|
|
.where(role: 1..2)
|
|
.order(created_at: :asc)
|
|
.map(&:team)
|
|
@member_of = @teams.count
|
|
|
|
respond_to do |format|
|
|
format.json do
|
|
render json: {
|
|
status: :ok,
|
|
html: render_to_string(
|
|
partial: 'users/settings/account/preferences/' \
|
|
'repeat_tutorial_modal_body.html.erb'
|
|
)
|
|
}
|
|
end
|
|
end
|
|
end
|
|
|
|
def reset_tutorial
|
|
if @user.update(tutorial_status: 0) && params[:team][:id].present?
|
|
@user.update(current_team_id: params[:team][:id])
|
|
cookies.delete :tutorial_data
|
|
cookies.delete :current_tutorial_step
|
|
cookies[:repeat_tutorial_team_id] = {
|
|
value: params[:team][:id],
|
|
expires: 1.day.from_now
|
|
}
|
|
|
|
flash[:notice] = t(
|
|
'users.settings.account.preferences.tutorial.tutorial_reset_flash'
|
|
)
|
|
redirect_to root_path
|
|
else
|
|
flash[:alert] = t(
|
|
'users.settings.account.preferences.tutorial.tutorial_reset_error'
|
|
)
|
|
redirect_to :back
|
|
end
|
|
end
|
|
|
|
def notifications_settings
|
|
@user.assignments_notification =
|
|
params[:assignments_notification] ? true : false
|
|
@user.recent_notification =
|
|
params[:recent_notification] ? true : false
|
|
@user.recent_notification_email =
|
|
params[:recent_notification_email] ? true : false
|
|
@user.assignments_notification_email =
|
|
params[:assignments_notification_email] ? true : false
|
|
@user.system_message_notification_email =
|
|
params[:system_message_notification_email] ? true : false
|
|
|
|
if @user.save
|
|
respond_to do |format|
|
|
format.json do
|
|
render json: {
|
|
status: :ok
|
|
}
|
|
end
|
|
end
|
|
else
|
|
respond_to do |format|
|
|
format.json do
|
|
render json: {
|
|
status: :unprocessable_entity
|
|
}
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def load_user
|
|
@user = current_user
|
|
end
|
|
|
|
def update_params
|
|
params.require(:user).permit(
|
|
:time_zone
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|