tramway-event 1.12.3.6 → 1.12.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 240a1d98655e2d71b4901ce6602c0d7215b4e477ad2ae2cc096e8285280e2955
4
- data.tar.gz: 1e616d3af7bdd6fbae65e3e9e50b36d5a3c67f3f7663f7aca745cb6f6064104d
3
+ metadata.gz: a9da09b01fa80ca0e68c1eb99562fce606ad2a666651eda6928006a41035f67f
4
+ data.tar.gz: 7da3f0013121edc1958396e6d13dea1921e1af880c95655189cab8b80c8a3c6a
5
5
  SHA512:
6
- metadata.gz: 3aa3bb0ca75a4c35ffc9cd9fe142ddab5a4e430af45b0d95596965b8413738781bccc01ae8761de02f560506fedf9fbc065a2429ae5a608106e3958de7b78102
7
- data.tar.gz: 8ef4a9674d2cd67351a8968cfed70efb85a4f20a578c0ab0f2fd483e58e2d88a3c813d13f322c7a450eb077743a15a9e464f5ab8ffb837200687bc8a00bd6cda
6
+ metadata.gz: 71353d000dbbc4ebc2c5e15a955f001b6febaa974a0ad39a84acf4e9b763ae0b2cbfd721af778f733d7f693a532c8ed7f3dcaca50f8743526a5becc557ca47b0
7
+ data.tar.gz: 3fcc06181a67328fa4f997de517776603c043f24bcf2ff7d0fa81e831cd63debc45d14aa05d527f73293e31a3f7ba115a2c0403df46e2fc0c1a0566573899dd3
@@ -11,7 +11,7 @@ class Tramway::Event::EventDecorator < ::Tramway::Core::ApplicationDecorator
11
11
  end
12
12
 
13
13
  def show_associations
14
- %i[participant_form_fields actions]
14
+ %i[participant_form_fields actions sections]
15
15
  end
16
16
 
17
17
  def list_attributes
@@ -20,8 +20,9 @@ class Tramway::Event::EventDecorator < ::Tramway::Core::ApplicationDecorator
20
20
  end
21
21
 
22
22
  delegate :title, to: :object
23
- decorate_associations :participants, :sections, :partakings, :partnerships, :organizations
23
+ decorate_associations :participants, :partakings, :partnerships, :organizations
24
24
  decorate_association :participant_form_fields, as: :event
25
+ decorate_association :sections, as: :event
25
26
  decorate_association :actions, as: :event, state_machines: [:action_state]
26
27
 
27
28
  def background
@@ -8,6 +8,7 @@ module Tramway
8
8
  include ::FontAwesome5::Rails::IconHelper
9
9
  include ::Tramway::Collections::Helper
10
10
  include ::Tramway::Profiles::LinksHelper
11
+ include ::Tramway::Landing::ApplicationHelper
11
12
  end
12
13
  end
13
14
  end
@@ -8,11 +8,13 @@ class Tramway::Event::Event < ::Tramway::Event::ApplicationRecord
8
8
  def check_dimensions
9
9
  if photo.present?
10
10
  errors.add :photo, :too_small_image if photo.width.present? && (photo.width < 1920 || photo.height < 1080)
11
+ else
12
+ errors.add :photo, :is_not_present
11
13
  end
12
14
  end
13
15
 
14
16
  has_many :participants, class_name: 'Tramway::Event::Participant'
15
- has_many :participant_form_fields, class_name: 'Tramway::Event::ParticipantFormField'
17
+ has_many :participant_form_fields, -> { order(position: :asc) }, class_name: 'Tramway::Event::ParticipantFormField'
16
18
  has_many :sections, class_name: 'Tramway::Event::Section'
17
19
  has_many :partakings, as: :part, class_name: 'Tramway::Event::Partaking'
18
20
  has_many :partnerships, class_name: 'Tramway::Partner::Partnership', as: :partner
@@ -22,7 +24,9 @@ class Tramway::Event::Event < ::Tramway::Event::ApplicationRecord
22
24
 
23
25
  enumerize :reach, default: :open, in: %i[open closed]
24
26
 
25
- scope :actual, -> { order(:begin_date).where('end_date > ?', DateTime.now) }
27
+ scope :actual, -> do
28
+ where('begin_date > ?', DateTime.now).or(where('begin_date < ? AND end_date > ?', DateTime.now, DateTime.now)).order(begin_date: :asc)
29
+ end
26
30
  scope :past, -> { where 'end_date < ?', DateTime.now }
27
31
  scope :open, -> { where reach: :open }
28
32
  scope :closed, -> { where reach: :closed }
@@ -1,11 +1,12 @@
1
- .row.form
2
- .col-lg-12
3
- %h1.text-center
4
- = t(".request_collecting_state.#{event.request_collecting_state}")
5
- - if event.request_collecting_state == :are_being_right_now && event.participant_form_fields.any?
6
- - class_name = 'tramway_event_participant'
7
- = simple_form_for @participant_form, url: ::Tramway::Event::Engine.routes.url_helpers.participants_path, method: :post, html: { class: class_name, id: class_name } do |f|
8
- = f.input :event_id, as: :hidden, input_html: { value: event.id, class: class_name, id: "#{class_name}_event_id", name: "#{class_name}[event_id]" }
9
- - event.participant_form_fields.inputs_list.each do |field|
10
- = render 'tramway/core/shared/input_extended', field: field, class_name: class_name, f: f, value: (params[:participant].present? ? params[:participant][field.title] : '')
11
- = f.button :submit, t('.submit_form')
1
+ - unless event.request_collecting_state == :not_initialized
2
+ .row.form
3
+ .col-lg-12
4
+ %h1.text-center
5
+ = t(".request_collecting_state.#{event.request_collecting_state}")
6
+ - if event.request_collecting_state == :are_being_right_now && event.participant_form_fields.any?
7
+ - class_name = 'tramway_event_participant'
8
+ = simple_form_for @participant_form, url: ::Tramway::Event::Engine.routes.url_helpers.participants_path, method: :post, html: { class: class_name, id: class_name } do |f|
9
+ = f.input :event_id, as: :hidden, input_html: { value: event.id, class: class_name, id: "#{class_name}_event_id", name: "#{class_name}[event_id]" }
10
+ - event.participant_form_fields.inputs_list.each do |field|
11
+ = render 'tramway/core/shared/input_extended', field: field, class_name: class_name, f: f, value: (params[:participant].present? ? params[:participant][field.title] : '')
12
+ = f.button :submit, t('.submit_form')
@@ -40,6 +40,7 @@ ru:
40
40
  short_description: Краткое описание
41
41
  actions: Действие
42
42
  reach: Доступность мероприятия
43
+ sections: События
43
44
  tramway/event/participant:
44
45
  name: Имя
45
46
  list_fields: Данные
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Tramway
4
4
  module Event
5
- VERSION = '1.12.3.6'
5
+ VERSION = '1.12.4'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tramway-event
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.12.3.6
4
+ version: 1.12.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pavel Kalashnikov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-28 00:00:00.000000000 Z
11
+ date: 2020-10-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: configus