From fc5daabb7312b9903c8627dddc5232e959369698 Mon Sep 17 00:00:00 2001 From: zmagod Date: Tue, 16 Jan 2018 10:54:11 +0100 Subject: [PATCH] fix(addon_loader): make symlink to target addon/client Signed-off-by: zmagod --- config/initializers/addon_loader.rb | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/config/initializers/addon_loader.rb b/config/initializers/addon_loader.rb index b322fe1e2..0e0ec2e35 100644 --- a/config/initializers/addon_loader.rb +++ b/config/initializers/addon_loader.rb @@ -1,7 +1,7 @@ # This code fetch the components from the addons but only in the root of the # addon/**/client folder. -TARGET_ROOT = "#{Dir.pwd}/app/javascript/src/react-hijack/addons".freeze +TARGET_ROOT = "#{Dir.pwd}/app/javascript/src/componentLoader/components".freeze begin # clear previous build @@ -10,16 +10,11 @@ FileUtils.rm_f Dir.glob("#{TARGET_ROOT}/*") Dir.foreach('addons/') do |path| addons_client_root = "addons/#{path}/client" next unless Dir.exist? addons_client_root - all_files = Dir.glob("#{addons_client_root}/*\.*") - all_files.each do |component| - new_path = component.gsub("#{addons_client_root}/", '') - File.symlink("#{Dir.pwd}/#{component}", "#{TARGET_ROOT}/#{new_path}") - end + File.symlink("#{Dir.pwd}/#{addons_client_root}", "#{TARGET_ROOT}/#{path}") end # handles error on the platforms that does not support symlink # http://ruby-doc.org/core-2.2.0/File.html#symlink-method -rescue NotImplemented => error +rescue puts '[sciNote] Unable to load React components from addons!' puts '[sciNote] Your system does not support symlink!' - puts "[sciNote] #{error.message}" end