constructor-core 0.7.2 → 0.7.3

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
  SHA1:
3
- metadata.gz: 4eae1551bac830196d4492d037655cd90d309008
4
- data.tar.gz: da22a7f841a4dd633c4c5a8c8eb578187f231e5c
3
+ metadata.gz: 9102123bee93e7f71e4d809e57c3bf93feeff872
4
+ data.tar.gz: 123265b3943235c4082e1faa1d1c5dd3b4b1fbb3
5
5
  SHA512:
6
- metadata.gz: 76c77d3065c08a97912dd06387cead8f1a78582d105fdfc1dafde14ef51581b1154ed4aa1f5cbf11581fc2d286f6b7202a1f95e22fdf3fbb5e4f5887e718126b
7
- data.tar.gz: 9d046b9ec0353caf2230b6513cdd28e4d01a0a196a5e3cf9d725a84b4f638da9bb60b50c9d2e9d2ac5ac5b1af757a3c710f6ff035362131ab3c21e5fcdfbbdab
6
+ metadata.gz: 0b332b5052cc57374fc63452d3ea10c671fa8323ba4d922f5e43e78c243ee05d66badc47c8001a9b41cf4eaf25061e342d093cc0ccd6bafd8cacf3f369fed776
7
+ data.tar.gz: 6c1330cfcd55d39811a86646046ed879b6cfaab4508c2c0cd4e20303a5e8382700dfbf10a7864f192ffe5156368e0dc9405a94b00fd80146a1566076bde89c7a
@@ -2,6 +2,7 @@
2
2
 
3
3
  module ConstructorCore
4
4
  class ApplicationController < ::ApplicationController
5
+ layout 'constructor_core/application_core'
5
6
  before_filter :authenticate_user!, :except => [:show]
6
7
 
7
8
  helper_method :current_user
@@ -31,10 +31,11 @@
31
31
  %span.icon-bar
32
32
  .nav-collapse
33
33
  %ul.nav
34
- %li
35
- = link_to '/admin/dashboard' do
36
- %i.icon-dashboard
37
- =t :dashboard
34
+ /
35
+ %li
36
+ = link_to '/admin/dashboard' do
37
+ %i.icon-dashboard
38
+ =t :dashboard
38
39
  %li
39
40
  = link_to '/admin/pages' do
40
41
  %i.icon-sitemap
@@ -43,14 +44,15 @@
43
44
  = link_to '/admin/templates' do
44
45
  %i.icon-film
45
46
  =t :templates
46
- %li
47
- = link_to '/admin/users' do
48
- %i.icon-group
49
- =t :users
50
- %li
51
- = link_to '/admin/settings' do
52
- %i.icon-cogs
53
- =t :settings
47
+ /
48
+ %li
49
+ = link_to '/admin/users' do
50
+ %i.icon-group
51
+ =t :users
52
+ %li
53
+ = link_to '/admin/settings' do
54
+ %i.icon-cogs
55
+ =t :settings
54
56
 
55
57
  - if current_user
56
58
  %ul.nav.pull-right
@@ -59,7 +61,7 @@
59
61
  = image_tag gravatar_icon(current_user.email, 48), width: 24, height: 24, class: 'avatar'
60
62
  %span= current_user.email
61
63
  %li
62
- = link_to '/admin/help' do
64
+ = link_to 'http://ivanzotov.github.io/constructor/' do
63
65
  %i.icon-question-sign
64
66
  =t :help
65
67
  %li
@@ -1,3 +1,3 @@
1
1
  module ConstructorCore
2
- VERSION = '0.7.2'
2
+ VERSION = '0.7.3'
3
3
  end
@@ -2,6 +2,8 @@
2
2
 
3
3
  module ConstructorPages
4
4
  class PagesController < ApplicationController
5
+ layout 'constructor_core/application_core', except: [:show, :search]
6
+
5
7
  movable :page
6
8
 
7
9
  before_filter {@roots, @template_exists = Page.roots, Template.count > 0}
@@ -13,84 +15,43 @@ module ConstructorPages
13
15
  def new
14
16
  redirect_to pages_path and return unless @template_exists
15
17
  @page, @template_id, @multipart = Page.new, Template.first.id, false
16
-
17
- if params[:page] and (@page.parent = Page.find(params[:page]))
18
- @template_id = @page.parent.template.child.id
19
- end
18
+ @template_id = @page.parent.template.child.id if params[:page] and (@page.parent = Page.find(params[:page]))
20
19
  end
21
20
 
22
21
  def show
23
22
  @page = Page.find_by_request_or_first("/#{params[:all]}")
24
-
25
23
  error_404 and return if @page.nil? or !@page.active?
26
-
27
24
  redirect_to @page.link if @page.redirect?
28
-
29
25
  _code_name = @page.template.code_name.to_s
30
-
31
26
  instance_variable_set('@'+_code_name, @page)
32
-
33
27
  respond_to do |format|
34
28
  format.html { render template: "html_templates/#{_code_name}" }
35
29
  format.json {
36
30
  _template = render_to_string partial: "json_templates/#{_code_name}.json.erb", layout: false, locals: {_code_name.to_sym => @page, page: @page}
37
31
  _js = render_to_string partial: "js_partials/#{_code_name}.js"
38
-
39
32
  render json: @page, self_and_ancestors: @page.self_and_ancestors.map(&:id), template: _template.gsub(/\n/, '\\\\n'), js: _js
40
33
  }
41
34
  end
42
35
  end
43
36
 
44
- =begin
45
37
  def search
46
- if params[:all].nil?
47
- @page = Page.first
48
- else
49
- @request = '/' + params[:all]
50
- @page = Page.where(:full_url => @request).first
51
- end
52
-
53
- instance_variable_set('@'+@page.template.code_name.to_s, @page)
54
-
55
- what_search = params[:what_search]
56
- params_selection = request.query_parameters
57
-
58
- template = Template.find_by_code_name(what_search.singularize)
59
-
60
- if template.nil?
61
- render :action => "error_404", :layout => false
62
- return
63
- end
38
+ @page = Page.find_by_request_or_first("/#{params[:all]}")
64
39
 
65
- @pages = @page.descendants.where(:template_id => template.id)
66
-
67
- params_selection.each_pair do |code_name, value|
68
- if value.numeric?
69
- value = value.to_f
70
- elsif value.boolean?
71
- value = value.to_bool
72
- end
73
-
74
- @pages = @pages.select do |page|
75
- if code_name == 'name'
76
- page.name == value
77
- else
78
- page.field(code_name) == value
79
- end
80
- end
81
- end
40
+ _params = request.query_parameters
41
+ _params.each_pair {|k,v| v || (_params.delete(k); next)
42
+ _params[k] = v.numeric? ? v.to_f : (v.to_bool if v.boolean?)}
82
43
 
83
- instance_variable_set('@'+template.code_name.pluralize, @pages)
44
+ @pages = Page.in(@page).by(_params).search(params[:what_search])
84
45
 
85
- render :template => "templates/#{template.code_name}_search"
46
+ instance_variable_set('@'+@page.template.code_name.pluralize, @pages)
47
+ instance_variable_set('@'+@page.template.code_name.singularize, @page)
48
+ render :template => "html_templates/#{@page.template.code_name}_search"
86
49
  end
87
- =end
88
50
 
89
51
  def edit
90
52
  @page = Page.find(params[:id])
91
53
  @page.template ||= Template.first
92
54
  @template_id = @page.template.id
93
-
94
55
  @multipart = @page.fields.map{|f| f.type_value == 'image'}.include?(true) ? true : false
95
56
  end
96
57
 
@@ -39,10 +39,8 @@ module ConstructorPages
39
39
  # When missing method Page find field or page in branch with plural and singular code_name so
40
40
  # field and template code_name should be uniqueness for page methods
41
41
  def check_code_name(code_name)
42
- [code_name, code_name.pluralize, code_name.singularize].each do |name|
43
- return false if Page.instance_methods.include?(name.to_sym)
44
- end
45
-
42
+ [code_name, code_name.pluralize, code_name.singularize].each {|name|
43
+ return false if Page.instance_methods.include?(name.to_sym)}
46
44
  true
47
45
  end
48
46
 
@@ -0,0 +1,10 @@
1
+ !!!
2
+ %html
3
+ %head
4
+ %title Dummy
5
+ = stylesheet_link_tag 'application', media: 'all'
6
+ = javascript_include_tag 'application'
7
+ = csrf_meta_tags
8
+
9
+ %body
10
+ = yield
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: constructor-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.2
4
+ version: 0.7.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ivan Zotov
@@ -129,7 +129,7 @@ files:
129
129
  - core/app/views/constructor_core/devise/unlocks/new.html.haml
130
130
  - core/app/views/constructor_core/sessions/new.html.haml
131
131
  - core/app/views/constructor_core/users/profile.haml
132
- - core/app/views/layouts/constructor_core/application.haml
132
+ - core/app/views/layouts/constructor_core/application_core.haml
133
133
  - core/config/environments/production.rb
134
134
  - core/config/initializers/devise.rb
135
135
  - core/config/locales/devise.en.yml
@@ -391,7 +391,7 @@ files:
391
391
  - spec/dummy/app/mailers/.gitkeep
392
392
  - spec/dummy/app/models/.gitkeep
393
393
  - spec/dummy/app/views/html_templates/page.haml
394
- - spec/dummy/app/views/layouts/application.html.erb
394
+ - spec/dummy/app/views/layouts/application.haml
395
395
  - spec/dummy/bin/bundle
396
396
  - spec/dummy/bin/rails
397
397
  - spec/dummy/bin/rake
@@ -457,7 +457,7 @@ test_files:
457
457
  - spec/dummy/app/mailers/.gitkeep
458
458
  - spec/dummy/app/models/.gitkeep
459
459
  - spec/dummy/app/views/html_templates/page.haml
460
- - spec/dummy/app/views/layouts/application.html.erb
460
+ - spec/dummy/app/views/layouts/application.haml
461
461
  - spec/dummy/bin/bundle
462
462
  - spec/dummy/bin/rails
463
463
  - spec/dummy/bin/rake
@@ -1,14 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>Dummy</title>
5
- <%= stylesheet_link_tag "application", :media => "all" %>
6
- <%= javascript_include_tag "application" %>
7
- <%= csrf_meta_tags %>
8
- </head>
9
- <body>
10
-
11
- <%= yield %>
12
-
13
- </body>
14
- </html>