2019-07-01 16:14:16 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# rubocop:disable Style/ClassAndModuleChildren
|
|
|
|
|
|
|
|
class Reports::Docx
|
|
|
|
include ActionView::Helpers::TextHelper
|
|
|
|
include ActionView::Helpers::UrlHelper
|
|
|
|
include ApplicationHelper
|
|
|
|
include InputSanitizeHelper
|
|
|
|
include TeamsHelper
|
|
|
|
include GlobalActivitiesHelper
|
|
|
|
|
|
|
|
Dir[File.join(File.dirname(__FILE__), 'docx') + '**/*.rb'].each do |file|
|
|
|
|
include_module = File.basename(file).gsub('.rb', '').split('_').map(&:capitalize).join
|
2019-09-17 16:50:01 +08:00
|
|
|
include "Reports::Docx::#{include_module}".constantize
|
2019-07-01 16:14:16 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def initialize(json, docx, options)
|
|
|
|
@json = JSON.parse(json)
|
|
|
|
@docx = docx
|
|
|
|
@user = options[:user]
|
|
|
|
@report_team = options[:team]
|
|
|
|
@link_style = {}
|
|
|
|
@color = {}
|
|
|
|
@scinote_url = options[:scinote_url][0..-2]
|
|
|
|
end
|
|
|
|
|
|
|
|
def draw
|
|
|
|
initial_document_load
|
|
|
|
|
|
|
|
@json.each do |subject|
|
|
|
|
public_send("draw_#{subject['type_of']}", subject)
|
|
|
|
end
|
|
|
|
@docx
|
|
|
|
end
|
2019-07-09 15:35:43 +08:00
|
|
|
|
|
|
|
def self.link_prepare(scinote_url, link)
|
|
|
|
link[0] == '/' ? scinote_url + link : link
|
|
|
|
end
|
2019-07-01 16:14:16 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
# rubocop:enable Style/ClassAndModuleChildren
|