scinote-web/app/models/repository_text_value.rb

48 lines
1.3 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-06-23 21:19:08 +08:00
class RepositoryTextValue < ApplicationRecord
belongs_to :created_by, foreign_key: :created_by_id,
class_name: 'User',
inverse_of: :created_repository_text_values
belongs_to :last_modified_by, foreign_key: :last_modified_by_id,
class_name: 'User',
inverse_of: :modified_repository_text_values
has_one :repository_cell, as: :value, dependent: :destroy
accepts_nested_attributes_for :repository_cell
validates :repository_cell, presence: true
2020-01-10 18:09:47 +08:00
validates :data, presence: true, length: { maximum: Constants::TEXT_MAX_LENGTH }
2017-06-06 23:35:29 +08:00
SORTABLE_COLUMN_NAME = 'repository_text_values.data'
SORTABLE_VALUE_INCLUDE = :repository_text_value
PRELOAD_INCLUDE = :repository_text_value
2017-06-06 23:35:29 +08:00
def formatted
data
end
def data_changed?(new_data)
new_data != data
end
def update_data!(new_data, user)
self.data = new_data
self.last_modified_by = user
save!
end
def self.new_with_payload(payload, attributes)
value = new(attributes)
value.data = payload
value
end
2020-01-10 16:29:20 +08:00
2020-03-05 21:34:31 +08:00
def self.import_from_text(text, attributes, _options = {})
return nil if text.blank?
new(attributes.merge(data: text.truncate(Constants::TEXT_MAX_LENGTH)))
end
2020-01-10 16:29:20 +08:00
alias export_formatted formatted
end