rails8_db 0.0.11 → 0.0.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 012ef840d591c711d64039a67a50e31cd8b2881b0c6d80cb96e49543386cd05a
4
- data.tar.gz: 0e31a214b28c72cfd95489553f413580e150e554e22832e566f56e7874c4c3e2
3
+ metadata.gz: 3795fec896fc97941c5cdadbad40c7a12b81471a41503ac58faab7351bdc4278
4
+ data.tar.gz: 8c29d0fd0c72718d2b7768dff111f462330303c1350b03bbf2f89eb602969858
5
5
  SHA512:
6
- metadata.gz: 9a54aea2b105e9f31a53e47411a09af4573301b2ab5ef4e3797606a3bee816f4bb05cd4c02eff20d231bb69668da614d23fd91a24297b736ba23c152117a146b
7
- data.tar.gz: 55ed506e46f9baa3f6e662525cbb1a13652e6876d5fe25868c1ddffffef6268b55f5dd428ee14ca9150bc5577402d26154ddfd449d7ec6c9db228e931de9b719
6
+ metadata.gz: 462c34d659e7b04ebc37df4bf2dfde3a023cf98752a9bfa9fd6e4d12eea3d662483351cd0f12e3ab6acc5fc554b75596bb79b84a02f9285b29a7043290f55739
7
+ data.tar.gz: 80dfe544a5634004b4e5bc343d5ca6845c299f6f3590c7dc586e32da7131d7d8b41e63c63eb2fa71de51eb48a6fd7d4ce1b55b738eaf2d14102a612136fd9679
@@ -1,5 +1,5 @@
1
1
  // JS and CSS bundles
2
- //= link_tree ../javascript
2
+ //= link rails_db/application.js
3
3
  //= link rails_db/application.css
4
4
 
5
5
  // Images
@@ -1,18 +1,31 @@
1
- // Import all required JavaScript files
2
- import "../codemirror/codemirror.js"
3
- import "../codemirror/modes/sql.js"
4
- import "../codemirror/addons/hint/show-hint.js"
5
- import "../codemirror/addons/hint/sql-hint.js"
6
- import "./jquery.js"
7
- import "./jquery.cookie.js"
8
- import "./foundation.min.js"
9
- import "./rails-ujs.js"
10
- import "./search.js"
11
- import "./show_hide_columns.js"
12
- import "./sticky.js"
13
1
 
14
- // Make functions globally available
15
- window.expand_collapse = function() {
2
+ $(function(){
3
+ $(document).foundation();
4
+
5
+ jQuery.expr[":"].icontains = jQuery.expr.createPseudo(function (arg) {
6
+ return function (elem) {
7
+ return jQuery(elem).text().toUpperCase().indexOf(arg.toUpperCase()) >= 0;
8
+ };
9
+ });
10
+
11
+ $('body').on('change', '.per_page_pagination_select', function() {
12
+ $(this).parents('form').submit();
13
+ });
14
+
15
+ $('body').on('keyup', '#rails_db_tables_input', function() {
16
+ value = $(this).val();
17
+ $("#rails_db_tables a").show();
18
+ $("#rails_db_tables a:not(:icontains('" + value + "'))").hide();
19
+ });
20
+
21
+ $('body').on('click', '.expand, .collapse', function() {
22
+ expand_collapse();
23
+ save_expand_collapse();
24
+ return false;
25
+ });
26
+ });
27
+
28
+ function expand_collapse() {
16
29
  $('#main_content').toggleClass('push-3')
17
30
  $('#main_content').toggleClass('large-9')
18
31
  $('#main_content').toggleClass('large-12')
@@ -21,12 +34,13 @@ window.expand_collapse = function() {
21
34
  $('.expand').toggle();
22
35
  };
23
36
 
24
- window.save_expand_collapse = function() {
37
+ function save_expand_collapse() {
25
38
  $.removeCookie('sidebar_hidden');
26
39
  $.cookie('sidebar_hidden', !$('.expand').is(':visible'), { expires: 30, path: '/' });
27
40
  };
28
41
 
29
- window.init_sql_editor = function(mime, tables) {
42
+ // https://github.com/codemirror/CodeMirror/blob/master/mode/sql/index.html
43
+ function init_sql_editor(mime, tables) {
30
44
  var editor = CodeMirror.fromTextArea($('#sql').get(0), {
31
45
  mime: mime,
32
46
  hint: CodeMirror.hint.sql,
@@ -54,37 +68,11 @@ window.init_sql_editor = function(mime, tables) {
54
68
  editor.focus();
55
69
  };
56
70
 
57
- window.set_browser_url = function(url) {
71
+ function set_browser_url(url) {
58
72
  if (typeof (history.pushState) != "undefined") {
59
73
  window.history.pushState({"path": url}, '', url);
60
74
  }
61
- };
62
-
63
- $(function(){
64
- $(document).foundation();
65
-
66
- jQuery.expr[":"].icontains = jQuery.expr.createPseudo(function (arg) {
67
- return function (elem) {
68
- return jQuery(elem).text().toUpperCase().indexOf(arg.toUpperCase()) >= 0;
69
- };
70
- });
71
-
72
- $('body').on('change', '.per_page_pagination_select', function() {
73
- $(this).parents('form').submit();
74
- });
75
-
76
- $('body').on('keyup', '#rails_db_tables_input', function() {
77
- value = $(this).val();
78
- $("#rails_db_tables a").show();
79
- $("#rails_db_tables a:not(:icontains('" + value + "'))").hide();
80
- });
81
-
82
- $('body').on('click', '.expand, .collapse', function() {
83
- expand_collapse();
84
- save_expand_collapse();
85
- return false;
86
- });
87
- });
75
+ }
88
76
 
89
77
  $(window).bind('popstate', function(event) {
90
78
  if (typeof (history.pushState) != "undefined") {
@@ -6,6 +6,23 @@
6
6
  <%= stylesheet_link_tag "rails_db/application" %>
7
7
  <%= javascript_include_tag "rails_db/application" %>
8
8
 
9
+ <% unless ENV["RAILS_ENV"] == "test" %>
10
+ <%= javascript_include_tag(
11
+ "codemirror/codemirror.js",
12
+ "codemirror/modes/sql.js",
13
+ "codemirror/addons/hint/show-hint.js",
14
+ "codemirror/addons/hint/sql-hint.js",
15
+ "rails_db/jquery.js",
16
+ "rails_db/jquery.cookie.js",
17
+ "rails_db/rails-ujs.js",
18
+ "rails_db/foundation.min.js",
19
+ "rails_db/sticky.js",
20
+ "rails_db/show_hide_columns.js",
21
+ "rails_db/search.js"
22
+ ) %>
23
+ <%= javascript_include_tag "rails_db/application" %>
24
+ <% end %>
25
+
9
26
  <%= csrf_meta_tags %>
10
27
 
11
28
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
@@ -1,7 +1,26 @@
1
1
  module RailsDb
2
2
  class Engine < ::Rails::Engine
3
3
  isolate_namespace RailsDb
4
- config.autoload_paths += Dir["#{config.root}/lib"]
4
+ config.autoload_paths += Dir["#{config.root}/lib"] # For Ruby code, keep this
5
+
6
+ initializer "rails_db.assets" do |app|
7
+ # Check if the host app uses config.assets.paths (like Propshaft)
8
+ if app.config.respond_to?(:assets) && app.config.assets.respond_to?(:paths)
9
+ # Add the engine's app/javascript directory to the host app's asset paths
10
+ # 'config.root' here refers to the engine's root directory
11
+ app.config.assets.paths << config.root.join("app/javascript")
12
+
13
+ # Optional: You might also explicitly add app/assets if needed,
14
+ # although Rails usually adds app/assets/** from engines automatically.
15
+ # Explicitly adding might help in some edge cases or ensure precedence.
16
+ # app.config.assets.paths << config.root.join("app/assets")
17
+
18
+ # Rails.logger.debug "[RailsDb Engine] Added #{config.root.join('app/javascript')} to asset paths"
19
+ else
20
+ # Log a warning if the expected configuration isn't found
21
+ Rails.logger.warn "[RailsDb Engine] Host application's config.assets.paths not found. Cannot automatically add engine's app/javascript path."
22
+ end
23
+ end
5
24
 
6
25
  initializer 'rails_db.helpers' do
7
26
  ActiveSupport.on_load :action_view do
@@ -9,36 +28,5 @@ module RailsDb
9
28
  end
10
29
  end
11
30
 
12
- # Configure assets for Propshaft
13
- initializer 'rails_db.assets.precompile' do |app|
14
- # Add the app/javascript directory to the asset paths
15
- app.config.assets.paths << root.join('app', 'javascript')
16
-
17
- # Configure Propshaft to handle JavaScript modules
18
- if app.config.respond_to?(:assets) && app.config.assets.respond_to?(:js_compressor)
19
- app.config.assets.js_compressor = nil if app.config.assets.js_compressor == :uglifier
20
- end
21
-
22
- # Add all JavaScript files to precompile
23
- app.config.assets.precompile += %w(
24
- rails_db/application.js
25
- rails_db/jquery.js
26
- rails_db/jquery.cookie.js
27
- rails_db/foundation.min.js
28
- rails_db/rails-ujs.js
29
- rails_db/search.js
30
- rails_db/show_hide_columns.js
31
- rails_db/sticky.js
32
- codemirror/codemirror.js
33
- codemirror/modes/sql.js
34
- codemirror/addons/hint/show-hint.js
35
- codemirror/addons/hint/sql-hint.js
36
- )
37
-
38
- # Configure Propshaft to handle JavaScript modules
39
- if app.config.respond_to?(:assets) && app.config.assets.respond_to?(:source_maps)
40
- app.config.assets.source_maps = true
41
- end
42
- end
43
31
  end
44
32
  end
@@ -1,3 +1,3 @@
1
1
  module RailsDb
2
- VERSION = "0.0.11"
2
+ VERSION = "0.0.13"
3
3
  end