glib-web 0.5.85 → 0.5.89
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/helpers/glib/json_ui/view_builder/charts.rb +16 -0
- data/app/helpers/glib/json_ui/view_builder/panels.rb +2 -0
- data/app/views/json_ui/garage/forms/checkboxes.json.jbuilder +50 -32
- data/app/views/json_ui/garage/lists/autoload_as_needed_float_columns.json.jbuilder +28 -0
- data/app/views/json_ui/garage/lists/index.json.jbuilder +3 -0
- data/app/views/json_ui/garage/tables/horizontal_scroll.json.jbuilder +1 -1
- data/app/views/json_ui/garage/views/charts.json.jbuilder +12 -2
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5fd1d1229a145eac39a14971f7e21e343f8d0296bf2ef6cd53753d489a14b307
|
4
|
+
data.tar.gz: '0338d35ba3548e841ad96023f3b6b3af2f7f1eb4e0025797701e604afe8def19'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0b77b94e74eb173a54c8312dfe0979f366bc0bee2452b893eae25fe08d5a312375871e3b420813653a5edd8d92a69bdc299a57fbfe2c246fb9fea125613948b9
|
7
|
+
data.tar.gz: 1cfca30d4eb4eb41d90c95ddc80be4e986a90efb5e8b0cf2bbe1b803e790ca909c51299e90afbf321cc8a0f3941f7fad9b4f8f984f90a79485be27c4eaaefba3
|
@@ -1,6 +1,20 @@
|
|
1
1
|
class Glib::JsonUi::ViewBuilder
|
2
2
|
module Charts
|
3
|
+
module ReleaseDateIndicator
|
4
|
+
def lineVertical(blocks)
|
5
|
+
json.lineVertical do
|
6
|
+
blocks.each do |block|
|
7
|
+
json.child! do
|
8
|
+
block.call
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
3
15
|
class Line < View
|
16
|
+
include ReleaseDateIndicator
|
17
|
+
|
4
18
|
hash :nextPage
|
5
19
|
|
6
20
|
def dataSeries(blocks)
|
@@ -16,6 +30,8 @@ class Glib::JsonUi::ViewBuilder
|
|
16
30
|
end
|
17
31
|
|
18
32
|
class Column < View
|
33
|
+
include ReleaseDateIndicator
|
34
|
+
|
19
35
|
bool :stacked
|
20
36
|
|
21
37
|
def dataGroups(blocks)
|
@@ -4,40 +4,58 @@ page = json_ui_page json
|
|
4
4
|
render "#{@path_prefix}/nav_menu", json: json, page: page
|
5
5
|
|
6
6
|
page.scroll childViews: ->(scroll) do
|
7
|
+
scroll.panels_form \
|
8
|
+
url: json_ui_garage_url(path: 'forms/generic_post'),
|
9
|
+
method: 'post',
|
10
|
+
padding: glib_json_padding_body,
|
11
|
+
childViews: ->(form) do
|
12
|
+
form.spacer height: 20
|
13
|
+
form.h2 text: 'Check Group'
|
14
|
+
form.fields_checkGroup \
|
15
|
+
name: 'user[skills][]',
|
16
|
+
uncheckValue: 1,
|
17
|
+
childViews: ->(group) do
|
18
|
+
group.fields_check checkValue: 2, label: 'Game Development'
|
19
|
+
group.fields_check checkValue: 3, label: 'Web Development'
|
20
|
+
group.fields_check checkValue: 4, label: 'Mobile Development'
|
21
|
+
end
|
7
22
|
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
23
|
+
form.spacer height: 20
|
24
|
+
form.h2 text: 'Rating'
|
25
|
+
form.spacer height: 6
|
26
|
+
form.fields_radioGroup \
|
27
|
+
name: 'user[rating1][]',
|
28
|
+
iconOfSelected: 'star',
|
29
|
+
iconOfBeforeSelected: 'star',
|
30
|
+
iconOfAfterSelected: 'star_border',
|
31
|
+
childViews: ->(panel) do
|
32
|
+
panel.panels_horizontal childViews: ->(horizontal) do
|
33
|
+
horizontal.fields_radio value: 1
|
34
|
+
horizontal.fields_radio value: 2
|
35
|
+
horizontal.fields_radio value: 3
|
36
|
+
horizontal.fields_radio value: 4
|
37
|
+
horizontal.fields_radio value: 5
|
38
|
+
end
|
39
|
+
end
|
16
40
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
panel
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
panel.fields_radio value: 2
|
33
|
-
panel.fields_radio value: 3
|
34
|
-
panel.fields_radio value: 4
|
35
|
-
panel.fields_radio value: 5
|
36
|
-
end
|
37
|
-
end
|
41
|
+
form.fields_radioGroup \
|
42
|
+
name: 'user[rating2][]',
|
43
|
+
iconOfSelected: 'star',
|
44
|
+
iconOfBeforeSelected: 'star',
|
45
|
+
iconOfAfterSelected: 'star_border',
|
46
|
+
value: 1,
|
47
|
+
childViews: ->(panel) do
|
48
|
+
panel.panels_horizontal childViews: ->(horizontal) do
|
49
|
+
horizontal.fields_radio value: 1
|
50
|
+
horizontal.fields_radio value: 2
|
51
|
+
horizontal.fields_radio value: 3
|
52
|
+
horizontal.fields_radio value: 4
|
53
|
+
horizontal.fields_radio value: 5
|
54
|
+
end
|
55
|
+
end
|
38
56
|
|
39
|
-
|
40
|
-
|
41
|
-
|
57
|
+
form.spacer height: 20
|
58
|
+
form.button text: 'Submit', onClick: ->(action) { action.forms_submit }
|
59
|
+
end
|
42
60
|
|
43
61
|
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
|
2
|
+
page_index = params[:page].to_i
|
3
|
+
next_page = {
|
4
|
+
url: json_ui_garage_url(path: 'lists/autoload_as_needed_float_columns', page: page_index + 1, section_only: 'v1'),
|
5
|
+
autoload: 'asNeeded'
|
6
|
+
}
|
7
|
+
|
8
|
+
page = json_ui_page json
|
9
|
+
|
10
|
+
if params[:section_only].present?
|
11
|
+
sleep 1
|
12
|
+
|
13
|
+
json.nextPage next_page if page_index < 3
|
14
|
+
json.sections do
|
15
|
+
json.child! do
|
16
|
+
render 'json_ui/garage/lists/autoload_section', page: page, page_index: page_index
|
17
|
+
end
|
18
|
+
end
|
19
|
+
else
|
20
|
+
json.title 'Lists'
|
21
|
+
|
22
|
+
render "#{@path_prefix}/nav_menu", json: json, page: page
|
23
|
+
|
24
|
+
page.list nextPage: next_page, floatCols: params[:floatCols] || 2, firstSection: ->(section) do
|
25
|
+
render 'json_ui/garage/lists/autoload_section', page: page, page_index: page_index
|
26
|
+
end
|
27
|
+
|
28
|
+
end
|
@@ -29,6 +29,9 @@ json_ui_page json do |page|
|
|
29
29
|
template.thumbnail title: 'Autoload All', onClick: ->(action) do
|
30
30
|
action.windows_open url: json_ui_garage_url(path: 'lists/autoload_all')
|
31
31
|
end
|
32
|
+
template.thumbnail title: 'Autoload as Needed with Float Columns', onClick: ->(action) do
|
33
|
+
action.windows_open url: json_ui_garage_url(path: 'lists/autoload_as_needed_float_columns')
|
34
|
+
end
|
32
35
|
template.thumbnail title: 'Reordering', onClick: ->(action) do
|
33
36
|
action.windows_open url: json_ui_garage_url(path: 'lists/reordering')
|
34
37
|
end
|
@@ -11,9 +11,19 @@ else
|
|
11
11
|
json_ui_page json do |page|
|
12
12
|
render "#{@path_prefix}/nav_menu", json: json, page: page
|
13
13
|
|
14
|
-
page.scroll padding: {top: 20, left: 20, right: 20, bottom: 20}, childViews: ->(scroll) do
|
14
|
+
page.scroll padding: { top: 20, left: 20, right: 20, bottom: 20 }, childViews: ->(scroll) do
|
15
15
|
scroll.h1 text: 'Line chart'
|
16
|
-
scroll.charts_line
|
16
|
+
scroll.charts_line lineVertical: [
|
17
|
+
-> do
|
18
|
+
json.text 'A feature released'
|
19
|
+
json.x Date.new(2018, 11, 15)
|
20
|
+
end,
|
21
|
+
-> do
|
22
|
+
json.text 'A feature released'
|
23
|
+
json.x Date.new(2018, 11, 13)
|
24
|
+
end
|
25
|
+
],
|
26
|
+
dataSeries: [
|
17
27
|
-> do
|
18
28
|
json.title 'Line 1'
|
19
29
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: glib-web
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.89
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ''
|
@@ -170,6 +170,7 @@ files:
|
|
170
170
|
- app/views/json_ui/garage/lists/_autoload_section.json.jbuilder
|
171
171
|
- app/views/json_ui/garage/lists/autoload_all.json.jbuilder
|
172
172
|
- app/views/json_ui/garage/lists/autoload_as_needed.json.jbuilder
|
173
|
+
- app/views/json_ui/garage/lists/autoload_as_needed_float_columns.json.jbuilder
|
173
174
|
- app/views/json_ui/garage/lists/chat_ui.json.jbuilder
|
174
175
|
- app/views/json_ui/garage/lists/edit_actions.json.jbuilder
|
175
176
|
- app/views/json_ui/garage/lists/fab.json.jbuilder
|