module Motor::Dashboards::Persistance

Constants

TitleAlreadyExists

Public Instance Methods

archive_with_existing_name(dashboard) click to toggle source
# File lib/motor/dashboards/persistance.rb, line 59
def archive_with_existing_name(dashboard)
  Motor::Dashboard.where(['title = ? AND id != ?', dashboard.title, dashboard.id])
                  .update_all(deleted_at: Time.current)
end
assign_attributes(dashboard, params) click to toggle source
# File lib/motor/dashboards/persistance.rb, line 52
def assign_attributes(dashboard, params)
  dashboard.assign_attributes(params.slice(:title, :description, :preferences))
  dashboard.updated_at = [params[:updated_at], Time.current].min if params[:updated_at].present?

  Motor::Tags.assign_tags(dashboard, params[:tags])
end
build_from_params(params, current_user = nil) click to toggle source
# File lib/motor/dashboards/persistance.rb, line 10
def build_from_params(params, current_user = nil)
  dashboard = assign_attributes(Dashboard.new, params)

  dashboard.author = current_user

  dashboard
end
create_from_params!(params, current_user = nil) click to toggle source
# File lib/motor/dashboards/persistance.rb, line 18
def create_from_params!(params, current_user = nil)
  raise TitleAlreadyExists if Dashboard.exists?(title: params[:title])

  dashboard = build_from_params(params, current_user)

  ApplicationRecord.transaction do
    dashboard.save!
  end

  dashboard
rescue ActiveRecord::RecordNotUnique
  retry
end
title_already_exists?(dashboard) click to toggle source
# File lib/motor/dashboards/persistance.rb, line 64
def title_already_exists?(dashboard)
  if dashboard.new_record?
    Motor::Dashboard.exists?(title: dashboard.title)
  else
    Motor::Dashboard.exists?(['title = ? AND id != ?', dashboard.title, dashboard.id])
  end
end
update_from_params!(dashboard, params, force_replace: false) click to toggle source
# File lib/motor/dashboards/persistance.rb, line 32
def update_from_params!(dashboard, params, force_replace: false)
  tag_ids = dashboard.tags.ids

  dashboard = assign_attributes(dashboard, params)

  raise TitleAlreadyExists if !force_replace && title_already_exists?(dashboard)

  ApplicationRecord.transaction do
    archive_with_existing_name(dashboard) if force_replace

    dashboard.save!
  end

  dashboard.touch if tag_ids.sort != dashboard.tags.reload.ids.sort && params[:updated_at].blank?

  dashboard
rescue ActiveRecord::RecordNotUnique
  retry
end