rails8_db 0.0.9 → 0.0.11
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 +4 -4
- data/app/assets/config/manifest.js +1 -1
- data/app/javascript/rails_db/application.js +36 -36
- data/lib/rails_db/engine.rb +28 -1
- data/lib/rails_db/version.rb +1 -1
- data/test/dummy/log/test.log +1482 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 012ef840d591c711d64039a67a50e31cd8b2881b0c6d80cb96e49543386cd05a
|
4
|
+
data.tar.gz: 0e31a214b28c72cfd95489553f413580e150e554e22832e566f56e7874c4c3e2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9a54aea2b105e9f31a53e47411a09af4573301b2ab5ef4e3797606a3bee816f4bb05cd4c02eff20d231bb69668da614d23fd91a24297b736ba23c152117a146b
|
7
|
+
data.tar.gz: 55ed506e46f9baa3f6e662525cbb1a13652e6876d5fe25868c1ddffffef6268b55f5dd428ee14ca9150bc5577402d26154ddfd449d7ec6c9db228e931de9b719
|
@@ -1,8 +1,8 @@
|
|
1
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"
|
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
6
|
import "./jquery.js"
|
7
7
|
import "./jquery.cookie.js"
|
8
8
|
import "./foundation.min.js"
|
@@ -11,33 +11,8 @@ import "./search.js"
|
|
11
11
|
import "./show_hide_columns.js"
|
12
12
|
import "./sticky.js"
|
13
13
|
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
jQuery.expr[":"].icontains = jQuery.expr.createPseudo(function (arg) {
|
18
|
-
return function (elem) {
|
19
|
-
return jQuery(elem).text().toUpperCase().indexOf(arg.toUpperCase()) >= 0;
|
20
|
-
};
|
21
|
-
});
|
22
|
-
|
23
|
-
$('body').on('change', '.per_page_pagination_select', function() {
|
24
|
-
$(this).parents('form').submit();
|
25
|
-
});
|
26
|
-
|
27
|
-
$('body').on('keyup', '#rails_db_tables_input', function() {
|
28
|
-
value = $(this).val();
|
29
|
-
$("#rails_db_tables a").show();
|
30
|
-
$("#rails_db_tables a:not(:icontains('" + value + "'))").hide();
|
31
|
-
});
|
32
|
-
|
33
|
-
$('body').on('click', '.expand, .collapse', function() {
|
34
|
-
expand_collapse();
|
35
|
-
save_expand_collapse();
|
36
|
-
return false;
|
37
|
-
});
|
38
|
-
});
|
39
|
-
|
40
|
-
function expand_collapse() {
|
14
|
+
// Make functions globally available
|
15
|
+
window.expand_collapse = function() {
|
41
16
|
$('#main_content').toggleClass('push-3')
|
42
17
|
$('#main_content').toggleClass('large-9')
|
43
18
|
$('#main_content').toggleClass('large-12')
|
@@ -46,13 +21,12 @@ function expand_collapse() {
|
|
46
21
|
$('.expand').toggle();
|
47
22
|
};
|
48
23
|
|
49
|
-
function
|
24
|
+
window.save_expand_collapse = function() {
|
50
25
|
$.removeCookie('sidebar_hidden');
|
51
26
|
$.cookie('sidebar_hidden', !$('.expand').is(':visible'), { expires: 30, path: '/' });
|
52
27
|
};
|
53
28
|
|
54
|
-
|
55
|
-
function init_sql_editor(mime, tables) {
|
29
|
+
window.init_sql_editor = function(mime, tables) {
|
56
30
|
var editor = CodeMirror.fromTextArea($('#sql').get(0), {
|
57
31
|
mime: mime,
|
58
32
|
hint: CodeMirror.hint.sql,
|
@@ -80,11 +54,37 @@ function init_sql_editor(mime, tables) {
|
|
80
54
|
editor.focus();
|
81
55
|
};
|
82
56
|
|
83
|
-
function
|
57
|
+
window.set_browser_url = function(url) {
|
84
58
|
if (typeof (history.pushState) != "undefined") {
|
85
59
|
window.history.pushState({"path": url}, '', url);
|
86
60
|
}
|
87
|
-
}
|
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
|
+
});
|
88
88
|
|
89
89
|
$(window).bind('popstate', function(event) {
|
90
90
|
if (typeof (history.pushState) != "undefined") {
|
data/lib/rails_db/engine.rb
CHANGED
@@ -9,9 +9,36 @@ module RailsDb
|
|
9
9
|
end
|
10
10
|
end
|
11
11
|
|
12
|
-
#
|
12
|
+
# Configure assets for Propshaft
|
13
13
|
initializer 'rails_db.assets.precompile' do |app|
|
14
|
+
# Add the app/javascript directory to the asset paths
|
14
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
|
15
42
|
end
|
16
43
|
end
|
17
44
|
end
|
data/lib/rails_db/version.rb
CHANGED