3

我用我的基本模型 Article 很好地设置了Paper Trail Gemtext ,它有一个名为body. 但是,在我为我的应用程序实现Action Textbody并从 Article 模型中删除该列之后,我无法让 Paper Trail 跟踪关联body列中的更改。我怎样才能让它工作?

免责声明:我是 Rails 的新手。

文章.rb

...
  has_rich_text :body
  has_paper_trail
...

文章架构(删除 :body 列后)

  create_table "articles", force: :cascade do |t|
    t.string "title"
    t.string "slug"
    t.datetime "archived_at"
    t.datetime "published_at"
    ...
  end

动作文本架构

create_table "action_text_rich_texts", force: :cascade do |t|
    t.string "name", null: false
    t.text "body"
    t.string "record_type", null: false
    t.bigint "record_id", null: false
    t.datetime "created_at", null: false
    t.datetime "updated_at", null: false
    t.index ["record_type", "record_id", "name"], name: "index_action_text_rich_texts_uniqueness", unique: true
  end

我很想将与以前相同的功能返回给应用程序,在那里我能够看到文章正文中所做的更改。例如,某人添加了一个句子,删除了一个单词等。

4

5 回答 5

4

结合对我有用的答案:

# frozen_string_literal: true

ActiveSupport.on_load(:action_text_rich_text) do
  ActionText::RichText.class_eval do
    has_paper_trail
  end
end

lib/rich_text_paper_trail.rb确保已加载此文件!例如通过明确要求它:require 'rich_text_paper_trail'

于 2020-04-29T10:32:25.687 回答
2

尝试添加一个config/initializers/rich_text_paper_trail.rb文件:

ActiveSupport.on_load(:action_text_rich_text) do
  has_paper_trail
end
于 2019-05-08T12:47:57.203 回答
2

在尝试了这里提供的所有选项之后,我对这个解决方法有了一个想法,最终效果非常好。

我所做的只是用纯Trix 编辑器版本替换了动作文本,因此我能够保留:body在我的 article.rb 模型中,保存整个对象的版本并显示差异。耶!

于 2019-05-12T19:58:39.153 回答
0

Ruby 允许您(无论好坏)动态地对事物进行修改。

把它放在一个初始化器中:

ActionText::RichText.class_eval do 
  has_paper_trail
end 
于 2019-04-06T02:14:06.450 回答
0

我们在 Rails 5.2 上使用活动文本的存档版本做了类似的事情。

宝石文件

gem 'actiontext', git: 'https://github.com/kobaltz/actiontext.git', branch: 'archive', require: 'action_text'

模型/文章.rb

class Article < ApplicationRecord
  has_paper_tail
  serialize :body, ActionText::Content
  ...
end

助手/trix_editor_helper.rb

require 'action_view/helpers/tags/placeholderable'

module TrixEditorHelper
  mattr_accessor(:id, instance_accessor: false) { 0 }

# Returns a +trix-editor+ tag that instantiates the Trix JavaScript editor as well as a hidden field
# that Trix will write to on changes, so the content will be sent on form submissions.
#
# ==== Options
# * <tt>:class</tt> - Defaults to "trix-content" which ensures default styling is applied.
#
# ==== Example
#
#   rich_text_area_tag "content", message.content
#   # <input type="hidden" name="content" id="trix_input_post_1">
#   # <trix-editor id="content" input="trix_input_post_1" class="trix-content" ...></trix-editor>

  def trix_editor_tag(name, value = nil, options = {})
    options = options.symbolize_keys

    options[:input] ||= "trix_input_#{TrixEditorHelper.id += 1}"
    options[:class] ||= "trix-content"

    options[:data] ||= {}
    options[:data][:direct_upload_url] = main_app.rails_direct_uploads_url
    options[:data][:blob_url_template] = main_app.rails_service_blob_url(":signed_id", ":filename")

    editor_tag = content_tag("trix-editor", "", options)
    input_tag = hidden_field_tag(name, value, id: options[:input])

    input_tag + editor_tag
  end
end

module ActionView::Helpers
  class Tags::TrixEditor < Tags::Base
    include Tags::Placeholderable
    delegate :dom_id, to: ActionView::RecordIdentifier

    def render
      options = @options.stringify_keys
      add_default_name_and_id(options)
      options['input'] ||= dom_id(object, [options['id'], :trix_input].compact.join('_')) if object
      @template_object.trix_editor_tag(options.delete("name"), editable_value, options)
    end

    def editable_value
      value&.try(:to_trix_html)
    end
  end

  module FormHelper
    def trix_editor(object_name, method, options = {})
      Tags::TrixEditor.new(object_name, method, self, options).render
    end
  end

  class FormBuilder
    def trix_editor(method, options = {})
      @template.trix_editor(@object_name, method, objectify_options(options))
    end
  end
end

然后我们从 cdn 安装了 trix 版本 1.1 并使用了标准的 trix-attachments.js 和直接上传。

如果可能,希望升级到 Rails 6 并保留这个概念。

于 2020-07-06T19:44:01.690 回答