db-gui 0.0.4 → 0.1.0

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: e8036df4dccc81646a039ae1f596d9337146eb11d8c797db665baec7720af497
4
- data.tar.gz: d3b32fe1f26b471a278c0c120f1bd4ddf1e48d8d3c914454527df3814eb34ad5
3
+ metadata.gz: b070cff693f1d1416c8b30af8e004ef0c11832b498825f7cabbda62e15f553f6
4
+ data.tar.gz: 219ad78e67ea7a7fc9fcb10e26daadfe4f58ffd797a6eee6983492128b656c6c
5
5
  SHA512:
6
- metadata.gz: d74eb9ca5bcd71c75e0588f5f94f80277402066ebf26a2e49619c1f22fcc831c76fdf7c1f8707ea776ee9b7f88aee94550b3aa197d58823cc431c1bfbdb2e66b
7
- data.tar.gz: f1154b733b50e78dcb388ffdfc3415562ba07a1541cc40e527560ac1e44f3d2c1b9ffabad22484acdf3fa18f8486bb9ff0f526c80d8d0eb6303f8adb17e88a98
6
+ metadata.gz: 04ac2266301b0bfb854d698b82ccb5f29e0aff6d23d882140975a4234840b85c3fdd996c1c80c18d89c4473ee4055ebcf169bc51ae560b211cf083c9c6cd4c9a
7
+ data.tar.gz: 138346868157342145069c35d60b1773e21a86b8b503b615705387e2bc51fb245cfc2d51ba19c99c10ae3bf081c042131b1ed908af1e6fedc12460dc01638a8b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.1.0
4
+
5
+ - Save last DB command
6
+ - Move saved configuration from ~/.db_gui as a file to ~/.db_gui as a directory with multiple files underneath: ~/.db_gui/.db_configs & ~/.db_gui/.db_commands
7
+
3
8
  ## 0.0.4
4
9
 
5
10
  - Make SQL command entry a non_wrapping_multiline_entry
data/README.md CHANGED
@@ -1,8 +1,7 @@
1
- # DB GUI (Database Graphical User Interface) 0.0.4
1
+ # DB GUI (Database Graphical User Interface) 0.1.0
2
2
  ## [<img src="https://raw.githubusercontent.com/AndyObtiva/glimmer/master/images/glimmer-logo-hi-res.png" height=40 /> Glimmer DSL for LibUI Application](https://github.com/AndyObtiva/glimmer-dsl-libui)
3
3
  [![Gem Version](https://badge.fury.io/rb/db-gui.svg)](http://badge.fury.io/rb/db-gui)
4
4
 
5
-
6
5
  This is an early alpha database graphical user interface that enables interaction with a relational SQL database.
7
6
 
8
7
  It currently supports PostgreSQL as a start, with the potential of supporting many other databases in the future.
@@ -13,7 +12,7 @@ It currently supports PostgreSQL as a start, with the potential of supporting ma
13
12
 
14
13
  Run:
15
14
  ```
16
- gem install db-gui -v0.0.4
15
+ gem install db-gui -v0.1.0
17
16
  ```
18
17
 
19
18
  ## Usage
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.4
1
+ 0.1.0
@@ -1,10 +1,14 @@
1
+ require 'fileutils'
1
2
  require 'timeout'
2
3
 
3
4
  class DbGui
4
5
  module Model
5
- # TODO consider renaming to DB connection
6
- DbConfig = Struct.new(:host, :port, :dbname, :username, :password, keyword_init: true) do
7
- FILE_DB_CONFIG = File.expand_path(File.join('~', '.db_gui'))
6
+ Db = Struct.new(:host, :port, :dbname, :username, :password, keyword_init: true) do
7
+ DIR_DB_GUI = File.expand_path(File.join('~', '.db_gui'))
8
+ FileUtils.rm(DIR_DB_GUI) if File.file?(DIR_DB_GUI)
9
+ FileUtils.mkdir_p(DIR_DB_GUI)
10
+ FILE_DB_CONFIGS = File.expand_path(File.join(DIR_DB_GUI, '.db_configs'))
11
+ FILE_DB_COMMANDS = File.expand_path(File.join(DIR_DB_GUI, '.db_commands'))
8
12
 
9
13
  attr_accessor :connected
10
14
  alias connected? connected
@@ -17,7 +21,8 @@ class DbGui
17
21
  self.db_command_result = ''
18
22
  self.db_command_timeout = (ENV['DB_COMMAND_TIMEOUT_IN_MILLISECONDS'] || 300).to_i
19
23
  load_db_config
20
- connect if to_a.none? {|value| value.nil? || (value.respond_to?(:empty?) && value.empty?) }
24
+ load_db_command
25
+ connect if to_h.except(:password).none? {|value| value.nil? || (value.respond_to?(:empty?) && value.empty?) }
21
26
  end
22
27
 
23
28
  def toggle_connection
@@ -58,6 +63,7 @@ class DbGui
58
63
 
59
64
  def run_db_command
60
65
  run_io_command(db_command)
66
+ save_db_command
61
67
  end
62
68
 
63
69
  def db_command_result_count
@@ -86,18 +92,34 @@ class DbGui
86
92
 
87
93
  def save_db_config
88
94
  db_config_hash = to_h
89
- db_config_file_content = YAML.dump(db_config_hash)
90
- File.write(FILE_DB_CONFIG, db_config_file_content)
95
+ db_configs_array = [db_config_hash] # TODO in the future, support storing multiple DB configs
96
+ db_configs_file_content = YAML.dump(db_configs_array)
97
+ File.write(FILE_DB_CONFIGS, db_configs_file_content)
91
98
  end
92
99
 
93
100
  def load_db_config
94
- db_config_file_content = File.read(FILE_DB_CONFIG)
95
- db_config_hash = YAML.load(db_config_file_content)
101
+ db_configs_file_content = File.read(FILE_DB_CONFIGS)
102
+ db_configs_array = [YAML.load(db_configs_file_content)].flatten
103
+ db_config_hash = db_configs_array.first # TODO in the future, support loading multiple DB configs
96
104
  db_config_hash.each do |attribute, value|
97
105
  self.send("#{attribute}=", value)
98
106
  end
99
107
  rescue => e
100
- puts "No database configuration is stored yet. #{e.message}"
108
+ puts "No database configurations stored yet. #{e.message}"
109
+ end
110
+
111
+ def save_db_command
112
+ db_commands_array = [db_command] # TODO in the future, support storing multiple DB configs
113
+ db_commands_file_content = YAML.dump(db_commands_array)
114
+ File.write(FILE_DB_COMMANDS, db_commands_file_content)
115
+ end
116
+
117
+ def load_db_command
118
+ db_commands_file_content = File.read(FILE_DB_COMMANDS)
119
+ db_commands_array = YAML.load(db_commands_file_content)
120
+ self.db_command = db_commands_array.first
121
+ rescue => e
122
+ puts "No database commands stored yet. #{e.message}"
101
123
  end
102
124
 
103
125
  def io_gets
@@ -1,4 +1,4 @@
1
- require 'db_gui/model/db_config'
1
+ require 'db_gui/model/db'
2
2
 
3
3
  class DbGui
4
4
  module View
@@ -7,12 +7,12 @@ class DbGui
7
7
 
8
8
  TIMEOUT_MAX_IN_MILLISECONDS = (ENV['TIMEOUT_MAX_IN_MILLISECONDS'] || 60*60*1000).to_i
9
9
 
10
- option :db_config
10
+ option :db
11
11
 
12
12
  body {
13
13
  vertical_box {
14
14
  non_wrapping_multiline_entry {
15
- text <=> [db_config, :db_command]
15
+ text <=> [db, :db_command]
16
16
  }
17
17
 
18
18
  horizontal_box {
@@ -20,7 +20,7 @@ class DbGui
20
20
 
21
21
  button('Run') {
22
22
  on_clicked do
23
- db_config.run_db_command
23
+ db.run_db_command
24
24
  end
25
25
  }
26
26
 
@@ -29,7 +29,7 @@ class DbGui
29
29
  }
30
30
  spinbox(0, TIMEOUT_MAX_IN_MILLISECONDS) {
31
31
  stretchy false
32
- value <=> [db_config, :db_command_timeout]
32
+ value <=> [db, :db_command_timeout]
33
33
  }
34
34
 
35
35
  label('Row(s): ') {
@@ -37,7 +37,7 @@ class DbGui
37
37
  }
38
38
  label {
39
39
  stretchy false
40
- text <= [db_config, :db_command_result_count, computed_by: :db_command_result, on_read: :to_s]
40
+ text <= [db, :db_command_result_count, computed_by: :db_command_result, on_read: :to_s]
41
41
  }
42
42
  }
43
43
  }
@@ -1,22 +1,22 @@
1
- require 'db_gui/model/db_config'
1
+ require 'db_gui/model/db'
2
2
 
3
3
  class DbGui
4
4
  module View
5
5
  class DbCommandResultTable
6
6
  include Glimmer::LibUI::CustomControl
7
7
 
8
- option :db_config
8
+ option :db
9
9
 
10
10
  body {
11
11
  vertical_box {
12
- content(db_config, :db_command_result) {
13
- if db_config.db_command_result_count > 0
12
+ content(db, :db_command_result) {
13
+ if db.db_command_result_count > 0
14
14
  table {
15
- db_config.db_command_result_headers.each do |header|
15
+ db.db_command_result_headers.each do |header|
16
16
  text_column(header)
17
17
  end
18
18
 
19
- cell_rows db_config.db_command_result_rows
19
+ cell_rows db.db_command_result_rows
20
20
  }
21
21
  else
22
22
  label('No data')
@@ -1,52 +1,52 @@
1
- require 'db_gui/model/db_config'
1
+ require 'db_gui/model/db'
2
2
 
3
3
  class DbGui
4
4
  module View
5
5
  class DbConfigForm
6
6
  include Glimmer::LibUI::CustomControl
7
7
 
8
- option :db_config
8
+ option :db
9
9
 
10
10
  body {
11
11
  vertical_box {
12
12
  form {
13
13
  entry {
14
14
  label 'Host:'
15
- text <=> [db_config, :host]
16
- enabled <= [db_config, :connected, on_read: :!]
15
+ text <=> [db, :host]
16
+ enabled <= [db, :connected, on_read: :!]
17
17
  }
18
18
 
19
19
  spinbox(0, 1_000_000) {
20
20
  label 'Port:'
21
- value <=> [db_config, :port]
22
- enabled <= [db_config, :connected, on_read: :!]
21
+ value <=> [db, :port]
22
+ enabled <= [db, :connected, on_read: :!]
23
23
  }
24
24
 
25
25
  entry {
26
26
  label 'Database Name:'
27
- text <=> [db_config, :dbname]
28
- enabled <= [db_config, :connected, on_read: :!]
27
+ text <=> [db, :dbname]
28
+ enabled <= [db, :connected, on_read: :!]
29
29
  }
30
30
 
31
31
  entry {
32
32
  label 'Username:'
33
- text <=> [db_config, :username]
34
- enabled <= [db_config, :connected, on_read: :!]
33
+ text <=> [db, :username]
34
+ enabled <= [db, :connected, on_read: :!]
35
35
  }
36
36
 
37
37
  password_entry {
38
38
  label 'Password:'
39
- text <=> [db_config, :password]
40
- enabled <= [db_config, :connected, on_read: :!]
39
+ text <=> [db, :password]
40
+ enabled <= [db, :connected, on_read: :!]
41
41
  }
42
42
  }
43
43
 
44
44
  button {
45
45
  stretchy false
46
- text <= [db_config, :connected, on_read: -> (connected) { connected ? 'Disconnect (currently connected)' : 'Connect (currently disconnected)' }]
46
+ text <= [db, :connected, on_read: -> (connected) { connected ? 'Disconnect (currently connected)' : 'Connect (currently disconnected)' }]
47
47
 
48
48
  on_clicked do
49
- db_config.toggle_connection
49
+ db.toggle_connection
50
50
  end
51
51
  }
52
52
  }
@@ -1,4 +1,4 @@
1
- require 'db_gui/presenter/db_gui_presenter'
1
+ require 'db_gui/model/db'
2
2
 
3
3
  require 'db_gui/view/db_config_form'
4
4
  require 'db_gui/view/db_command_form'
@@ -9,10 +9,10 @@ class DbGui
9
9
  class DbGuiApplication
10
10
  include Glimmer::LibUI::Application
11
11
 
12
- attr_reader :presenter
12
+ attr_reader :db
13
13
 
14
14
  before_body do
15
- @presenter = Presenter::DbGuiPresenter.new
15
+ @db = Model::Db.new
16
16
  # menu_bar # TODO implement
17
17
  end
18
18
 
@@ -24,13 +24,13 @@ class DbGui
24
24
  margined true
25
25
 
26
26
  vertical_box {
27
- db_config_form(db_config: presenter.db_config) {
27
+ db_config_form(db:) {
28
28
  stretchy false
29
29
  }
30
30
 
31
- db_command_form(db_config: presenter.db_config)
31
+ db_command_form(db:)
32
32
 
33
- db_command_result_table(db_config: presenter.db_config)
33
+ db_command_result_table(db:)
34
34
  }
35
35
  }
36
36
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: db-gui
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andy Maleh
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-21 00:00:00.000000000 Z
11
+ date: 2025-03-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: glimmer-dsl-libui
@@ -86,8 +86,7 @@ files:
86
86
  - VERSION
87
87
  - app/db-gui.rb
88
88
  - app/db_gui/launch.rb
89
- - app/db_gui/model/db_config.rb
90
- - app/db_gui/presenter/db_gui_presenter.rb
89
+ - app/db_gui/model/db.rb
91
90
  - app/db_gui/view/db_command_form.rb
92
91
  - app/db_gui/view/db_command_result_table.rb
93
92
  - app/db_gui/view/db_config_form.rb
@@ -1,13 +0,0 @@
1
- require 'db_gui/model/db_config'
2
-
3
- class DbGui
4
- module Presenter
5
- class DbGuiPresenter
6
- attr_reader :db_config
7
-
8
- def initialize
9
- @db_config = Model::DbConfig.new
10
- end
11
- end
12
- end
13
- end