spina-admin-conferences-fork 2.1.1 → 3.0.0.rc3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (133) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +40 -57
  3. data/app/assets/config/spina_admin_conferences_manifest.js +3 -3
  4. data/app/assets/javascripts/spina/admin/conferences/application.js +0 -4
  5. data/app/assets/javascripts/{controllers/spina/admin/conferences → spina/admin/conferences/controllers}/select_options_controller.js +1 -1
  6. data/app/assets/stylesheets/spina/admin/conferences/application.tailwind.css +0 -0
  7. data/app/components/spina/admin/conferences/application_component.rb +11 -0
  8. data/app/components/spina/admin/conferences/form_group_component.html.haml +4 -0
  9. data/app/components/spina/admin/conferences/form_group_component.rb +17 -0
  10. data/app/controllers/spina/admin/conferences/application_controller.rb +8 -1
  11. data/app/controllers/spina/admin/conferences/conferences_controller.rb +13 -25
  12. data/app/controllers/spina/admin/conferences/delegates_controller.rb +12 -24
  13. data/app/controllers/spina/admin/conferences/dietary_requirements_controller.rb +12 -24
  14. data/app/controllers/spina/admin/conferences/institutions_controller.rb +12 -24
  15. data/app/controllers/spina/admin/conferences/presentation_attachment_types_controller.rb +12 -24
  16. data/app/controllers/spina/admin/conferences/presentation_types_controller.rb +12 -26
  17. data/app/controllers/spina/admin/conferences/presentations_controller.rb +12 -24
  18. data/app/controllers/spina/admin/conferences/rooms_controller.rb +12 -26
  19. data/app/controllers/spina/admin/conferences/sessions_controller.rb +12 -26
  20. data/app/jobs/spina/admin/conferences/import_job.rb +2 -2
  21. data/app/models/spina/admin/conferences/conference.rb +1 -1
  22. data/app/models/spina/admin/conferences/delegate.rb +3 -3
  23. data/app/models/spina/admin/conferences/presentation.rb +1 -1
  24. data/app/views/spina/admin/conferences/application/_conferences.html.haml +10 -11
  25. data/app/views/spina/admin/conferences/application/_delegates.html.haml +9 -10
  26. data/app/views/spina/admin/conferences/application/_dietary_requirements.html.haml +7 -8
  27. data/app/views/spina/admin/conferences/application/_empty_list.html.haml +1 -1
  28. data/app/views/spina/admin/conferences/application/_institutions.html.haml +8 -9
  29. data/app/views/spina/admin/conferences/application/_presentation_attachment_types.html.haml +8 -9
  30. data/app/views/spina/admin/conferences/application/_presentation_types.html.haml +9 -10
  31. data/app/views/spina/admin/conferences/application/_presentations.html.haml +9 -10
  32. data/app/views/spina/admin/conferences/application/_rooms.html.haml +9 -10
  33. data/app/views/spina/admin/conferences/application/_sessions.html.haml +9 -10
  34. data/app/views/spina/admin/conferences/conferences/_conference.html.haml +13 -9
  35. data/app/views/spina/admin/conferences/conferences/_event_fields.html.haml +18 -25
  36. data/app/views/spina/admin/conferences/conferences/_form.html.haml +24 -22
  37. data/app/views/spina/admin/conferences/conferences/_form_conference_details.html.haml +29 -22
  38. data/app/views/spina/admin/conferences/conferences/_form_delegates.html.haml +1 -0
  39. data/app/views/spina/admin/conferences/conferences/_form_parts.html.haml +6 -7
  40. data/app/views/spina/admin/conferences/conferences/_form_presentation_types.html.haml +1 -0
  41. data/app/views/spina/admin/conferences/conferences/_form_presentations.html.haml +1 -0
  42. data/app/views/spina/admin/conferences/conferences/_form_rooms.html.haml +1 -0
  43. data/app/views/spina/admin/conferences/conferences/index.html.haml +25 -5
  44. data/app/views/spina/admin/conferences/delegates/_delegate.html.haml +10 -12
  45. data/app/views/spina/admin/conferences/delegates/_form.html.haml +23 -19
  46. data/app/views/spina/admin/conferences/delegates/_form_conferences.html.haml +1 -0
  47. data/app/views/spina/admin/conferences/delegates/_form_delegate_details.html.haml +24 -53
  48. data/app/views/spina/admin/conferences/delegates/_form_presentations.html.haml +1 -0
  49. data/app/views/spina/admin/conferences/delegates/index.html.haml +17 -11
  50. data/app/views/spina/admin/conferences/dietary_requirements/_dietary_requirement.html.haml +7 -6
  51. data/app/views/spina/admin/conferences/dietary_requirements/_form.html.haml +23 -18
  52. data/app/views/spina/admin/conferences/dietary_requirements/_form_delegates.html.haml +1 -0
  53. data/app/views/spina/admin/conferences/dietary_requirements/_form_dietary_requirement_details.html.haml +4 -8
  54. data/app/views/spina/admin/conferences/dietary_requirements/index.html.haml +9 -5
  55. data/app/views/spina/admin/conferences/institutions/_form.html.haml +23 -19
  56. data/app/views/spina/admin/conferences/institutions/_form_delegates.html.haml +1 -0
  57. data/app/views/spina/admin/conferences/institutions/_form_institution_details.html.haml +25 -25
  58. data/app/views/spina/admin/conferences/institutions/_form_rooms.html.haml +1 -0
  59. data/app/views/spina/admin/conferences/institutions/_institution.html.haml +9 -7
  60. data/app/views/spina/admin/conferences/institutions/index.html.haml +22 -5
  61. data/app/views/spina/admin/conferences/presentation_attachment_types/_form.html.haml +17 -20
  62. data/app/views/spina/admin/conferences/presentation_attachment_types/_presentation_attachment_type.html.haml +7 -6
  63. data/app/views/spina/admin/conferences/presentation_attachment_types/index.html.haml +9 -5
  64. data/app/views/spina/admin/conferences/presentation_types/_form.html.haml +23 -19
  65. data/app/views/spina/admin/conferences/presentation_types/_form_presentation_type_details.html.haml +8 -16
  66. data/app/views/spina/admin/conferences/presentation_types/_form_presentations.html.haml +1 -0
  67. data/app/views/spina/admin/conferences/presentation_types/_form_sessions.html.haml +1 -0
  68. data/app/views/spina/admin/conferences/presentation_types/_presentation_type.html.haml +11 -8
  69. data/app/views/spina/admin/conferences/presentation_types/index.html.haml +25 -5
  70. data/app/views/spina/admin/conferences/presentations/_attachment_fields.html.haml +10 -16
  71. data/app/views/spina/admin/conferences/presentations/_form.html.haml +23 -18
  72. data/app/views/spina/admin/conferences/presentations/_form_presentation_details.html.haml +56 -55
  73. data/app/views/spina/admin/conferences/presentations/_form_presenters.html.haml +1 -0
  74. data/app/views/spina/admin/conferences/presentations/_presentation.html.haml +10 -8
  75. data/app/views/spina/admin/conferences/presentations/index.html.haml +18 -11
  76. data/app/views/spina/admin/conferences/rooms/_form.html.haml +23 -18
  77. data/app/views/spina/admin/conferences/rooms/_form_presentations.html.haml +1 -0
  78. data/app/views/spina/admin/conferences/rooms/_form_room_details.html.haml +8 -16
  79. data/app/views/spina/admin/conferences/rooms/_room.html.haml +11 -8
  80. data/app/views/spina/admin/conferences/rooms/index.html.haml +22 -5
  81. data/app/views/spina/admin/conferences/sessions/_form.html.haml +23 -18
  82. data/app/views/spina/admin/conferences/sessions/_form_presentations.html.haml +1 -0
  83. data/app/views/spina/admin/conferences/sessions/_form_session_details.html.haml +14 -19
  84. data/app/views/spina/admin/conferences/sessions/_session.html.haml +11 -8
  85. data/app/views/spina/admin/conferences/sessions/index.html.haml +25 -5
  86. data/app/views/spina/admin/hooks/conferences/_head.html.haml +0 -6
  87. data/app/views/spina/admin/hooks/conferences/_primary_navigation.html.haml +25 -19
  88. data/app/views/spina/admin/hooks/conferences/_settings_secondary_navigation.html.haml +0 -6
  89. data/app/views/spina/admin/parts/admin/conferences/dates/_form.html.haml +2 -2
  90. data/app/views/spina/admin/parts/admin/conferences/email_addresses/_form.html.haml +2 -2
  91. data/app/views/spina/admin/parts/admin/conferences/times/_form.html.haml +2 -2
  92. data/app/views/spina/admin/parts/admin/conferences/urls/_form.html.haml +2 -2
  93. data/config/locales/en.yml +31 -40
  94. data/config/routes.rb +1 -4
  95. data/db/migrate/20180907141242_add_type_to_spina_pages.rb +1 -1
  96. data/db/migrate/20180907141243_create_spina_conferences_conference_page_parts.rb +1 -1
  97. data/db/migrate/20181017155705_add_dependent_option_to_foreign_keys.rb +1 -1
  98. data/db/migrate/20190408131354_change_spina_resources.rb +10 -10
  99. data/db/migrate/20190701174807_remove_spina_conference_pages.rb +15 -15
  100. data/db/migrate/20190704135524_add_constraints_to_columns.rb +1 -1
  101. data/db/migrate/20200126213718_create_spina_conferences_presentation_attachments.rb +1 -1
  102. data/db/migrate/20200802184921_create_spina_conferences_event_name_description_and_location_translations.rb +1 -1
  103. data/db/migrate/20200911161739_move_conference_parts.rb +3 -3
  104. data/db/migrate/20201002122517_remove_spina_conferences_conference_page_parts.rb +1 -1
  105. data/db/migrate/20201007125625_add_timestamps_to_spina_conferences_parts.rb +2 -2
  106. data/db/migrate/20210315164411_convert_partables_to_json.rb +10 -18
  107. data/db/migrate/20210417102513_add_locale_to_action_text_rich_texts.rb +1 -1
  108. data/lib/spina/admin/conferences/engine.rb +13 -0
  109. data/lib/spina/admin/conferences/migration/renaming.rb +4 -4
  110. data/lib/spina/admin/conferences/railtie.rb +1 -0
  111. data/lib/spina/admin/conferences/version.rb +1 -1
  112. data/lib/spina/admin/conferences.rb +1 -2
  113. metadata +65 -82
  114. data/app/assets/javascripts/controllers/spina/admin/conferences/conference_events_form_controller.js +0 -174
  115. data/app/assets/javascripts/controllers/spina/admin/conferences/presentation_attachments_form_controller.js +0 -174
  116. data/app/assets/javascripts/importmap.json.erb +0 -6
  117. data/app/assets/stylesheets/spina/admin/conferences/application.sass +0 -3
  118. data/app/controllers/spina/admin/conferences/events_controller.rb +0 -24
  119. data/app/controllers/spina/admin/conferences/presentation_attachments_controller.rb +0 -24
  120. data/app/views/layouts/spina/admin/conferences/application.html.haml +0 -6
  121. data/app/views/layouts/spina/admin/conferences/conferences.html.haml +0 -17
  122. data/app/views/layouts/spina/admin/conferences/delegates.html.haml +0 -8
  123. data/app/views/layouts/spina/admin/conferences/dietary_requirements.html.haml +0 -8
  124. data/app/views/layouts/spina/admin/conferences/institutions.html.haml +0 -15
  125. data/app/views/layouts/spina/admin/conferences/presentation_attachment_types.html.haml +0 -8
  126. data/app/views/layouts/spina/admin/conferences/presentations.html.haml +0 -8
  127. data/app/views/spina/admin/conferences/conferences/_event_row.html.haml +0 -5
  128. data/app/views/spina/admin/conferences/conferences/_form_structure.html.haml +0 -19
  129. data/app/views/spina/admin/conferences/conferences/_form_structure_item.html.haml +0 -13
  130. data/app/views/spina/admin/conferences/events/new.js.erb +0 -21
  131. data/app/views/spina/admin/conferences/presentation_attachments/new.js.erb +0 -21
  132. data/app/views/spina/admin/conferences/presentations/_attachment_row.html.haml +0 -2
  133. data/config/initializers/assets.rb +0 -13
@@ -34,51 +34,39 @@ module Spina
34
34
 
35
35
  # Creates a presentation.
36
36
  # @return [void]
37
- def create # rubocop:disable Metrics/MethodLength
37
+ def create
38
38
  @presentation = Presentation.new presentation_params
39
39
 
40
40
  if @presentation.save
41
41
  redirect_to admin_conferences_presentations_path, success: t('.saved')
42
42
  else
43
- respond_to do |format|
44
- format.html do
45
- add_breadcrumb t('.new')
46
- render :new
47
- end
48
- format.turbo_stream { render partial: 'errors', locals: { errors: @presentation.errors } }
49
- end
43
+ add_breadcrumb t('.new')
44
+ flash.now[:alert] = t('.failed')
45
+ render :new, status: :unprocessable_entity
50
46
  end
51
47
  end
52
48
 
53
49
  # Updates a presentation.
54
50
  # @return [void]
55
- def update # rubocop:disable Metrics/MethodLength
51
+ def update
56
52
  if @presentation.update(presentation_params)
57
53
  redirect_to admin_conferences_presentations_path, success: t('.saved')
58
54
  else
59
- respond_to do |format|
60
- format.html do
61
- add_breadcrumb @presentation.title
62
- render :edit
63
- end
64
- format.turbo_stream { render partial: 'errors', locals: { errors: @presentation.errors } }
65
- end
55
+ add_breadcrumb @presentation.name
56
+ flash.now[:alert] = t('.failed')
57
+ render :edit, status: :unprocessable_entity
66
58
  end
67
59
  end
68
60
 
69
61
  # Destroys a presentation.
70
62
  # @return [void]
71
- def destroy # rubocop:disable Metrics/MethodLength
63
+ def destroy
72
64
  if @presentation.destroy
73
65
  redirect_to admin_conferences_presentations_path, success: t('.destroyed')
74
66
  else
75
- respond_to do |format|
76
- format.html do
77
- add_breadcrumb @presentation.title
78
- render :edit
79
- end
80
- format.turbo_stream { render partial: 'errors', locals: { errors: @presentation.errors } }
81
- end
67
+ add_breadcrumb @presentation.name
68
+ flash.now[:alert] = t('.failed')
69
+ render :edit, status: :unprocessable_entity
82
70
  end
83
71
  end
84
72
 
@@ -10,8 +10,6 @@ module Spina
10
10
  before_action :set_breadcrumbs
11
11
  before_action :set_tabs
12
12
 
13
- layout 'spina/admin/conferences/institutions'
14
-
15
13
  # @!group Actions
16
14
 
17
15
  # Renders a list of rooms.
@@ -35,51 +33,39 @@ module Spina
35
33
 
36
34
  # Creates a room.
37
35
  # @return [void]
38
- def create # rubocop:disable Metrics/MethodLength
36
+ def create
39
37
  @room = Room.new(room_params)
40
38
 
41
39
  if @room.save
42
40
  redirect_to admin_conferences_rooms_path, success: t('.saved')
43
41
  else
44
- respond_to do |format|
45
- format.html do
46
- add_breadcrumb t('.new')
47
- render :new
48
- end
49
- format.turbo_stream { render partial: 'errors', locals: { errors: @room.errors } }
50
- end
42
+ add_breadcrumb t('.new')
43
+ flash.now[:alert] = t('.failed')
44
+ render :new, status: :unprocessable_entity
51
45
  end
52
46
  end
53
47
 
54
48
  # Updates a room.
55
49
  # @return [void]
56
- def update # rubocop:disable Metrics/MethodLength
50
+ def update
57
51
  if @room.update(room_params)
58
52
  redirect_to admin_conferences_rooms_path, success: t('.saved')
59
53
  else
60
- respond_to do |format|
61
- format.html do
62
- add_breadcrumb @room.name
63
- render :edit
64
- end
65
- format.turbo_stream { render partial: 'errors', locals: { errors: @room.errors } }
66
- end
54
+ add_breadcrumb @room.name
55
+ flash.now[:alert] = t('.failed')
56
+ render :edit, status: :unprocessable_entity
67
57
  end
68
58
  end
69
59
 
70
60
  # Destroys a room.
71
61
  # @return [void]
72
- def destroy # rubocop:disable Metrics/MethodLength
62
+ def destroy
73
63
  if @room.destroy
74
64
  redirect_to admin_conferences_rooms_path, success: t('.destroyed')
75
65
  else
76
- respond_to do |format|
77
- format.html do
78
- add_breadcrumb @room.name
79
- render :edit
80
- end
81
- format.turbo_stream { render partial: 'errors', locals: { errors: @room.errors } }
82
- end
66
+ add_breadcrumb @room.name
67
+ flash.now[:alert] = t('.failed')
68
+ render :edit, status: :unprocessable_entity
83
69
  end
84
70
  end
85
71
 
@@ -11,8 +11,6 @@ module Spina
11
11
  before_action :set_tabs
12
12
  before_action :set_conferences, :set_institutions, only: %i[new edit]
13
13
 
14
- layout 'spina/admin/conferences/conferences'
15
-
16
14
  # @!group Actions
17
15
 
18
16
  # Renders a list of sessions.
@@ -36,51 +34,39 @@ module Spina
36
34
 
37
35
  # Creates a session.
38
36
  # @return [void]
39
- def create # rubocop:disable Metrics/MethodLength
37
+ def create
40
38
  @session = Session.new(session_params)
41
39
 
42
40
  if @session.save
43
41
  redirect_to admin_conferences_sessions_path, success: t('.saved')
44
42
  else
45
- respond_to do |format|
46
- format.html do
47
- add_breadcrumb t('.new')
48
- render :new
49
- end
50
- format.turbo_stream { render partial: 'errors', locals: { errors: @session.errors } }
51
- end
43
+ add_breadcrumb t('.new')
44
+ flash.now[:alert] = t('.failed')
45
+ render :new, status: :unprocessable_entity
52
46
  end
53
47
  end
54
48
 
55
49
  # Updates a session.
56
50
  # @return [void]
57
- def update # rubocop:disable Metrics/MethodLength
51
+ def update
58
52
  if @session.update(session_params)
59
53
  redirect_to admin_conferences_sessions_path, success: t('.saved')
60
54
  else
61
- respond_to do |format|
62
- format.html do
63
- add_breadcrumb @session.name
64
- render :edit
65
- end
66
- format.turbo_stream { render partial: 'errors', locals: { errors: @session.errors } }
67
- end
55
+ add_breadcrumb @session.name
56
+ flash.now[:alert] = t('.failed')
57
+ render :edit, status: :unprocessable_entity
68
58
  end
69
59
  end
70
60
 
71
61
  # Destroys a session.
72
62
  # @return [void]
73
- def destroy # rubocop:disable Metrics/MethodLength
63
+ def destroy
74
64
  if @session.destroy
75
65
  redirect_to admin_conferences_sessions_path, success: t('.destroyed')
76
66
  else
77
- respond_to do |format|
78
- format.html do
79
- add_breadcrumb @session.name
80
- render :edit
81
- end
82
- format.turbo_stream { render partial: 'errors', locals: { errors: @session.errors } }
83
- end
67
+ add_breadcrumb @session.name
68
+ flash.now[:alert] = t('.failed')
69
+ render :edit, status: :unprocessable_entity
84
70
  end
85
71
  end
86
72
 
@@ -16,9 +16,9 @@ module Spina
16
16
  # Performs the job.
17
17
  # @param file [String] the UTF-8-encoded string to parse as a CSV
18
18
  # @yieldparam row [Hash] the current row of the CSV
19
- def import(file)
19
+ def import(file, &block)
20
20
  csv_rows = CSV.parse file, encoding: 'UTF-8', headers: true, header_converters: :symbol, converters: [:json]
21
- csv_rows.each { |row| yield(row) }
21
+ csv_rows.each(&block)
22
22
  end
23
23
  end
24
24
  end
@@ -184,7 +184,7 @@ module Spina
184
184
  end
185
185
 
186
186
  # @return [Icalendar::Event] the conference as an iCal event
187
- def to_event # rubocop:disable Metrics/AbcSize, Metrics/MethodLength
187
+ def to_event # rubocop:disable Metrics/AbcSize
188
188
  event = Icalendar::Event.new
189
189
  return event if invalid?
190
190
 
@@ -32,17 +32,17 @@ module Spina
32
32
  # @return [ActiveRecord::Relation] directly associated conferences
33
33
  # @see Conference
34
34
  has_and_belongs_to_many :conferences, -> { includes(:translations) }, foreign_key: :spina_conferences_delegate_id, # rubocop:disable Rails/HasAndBelongsToMany
35
- association_foreign_key: :spina_conferences_conference_id
35
+ association_foreign_key: :spina_conferences_conference_id
36
36
  # @!attribute [rw] presentations
37
37
  # @return [ActiveRecord::Relation] directly associated presentations
38
38
  # @see Presentation
39
39
  has_and_belongs_to_many :presentations, -> { includes(:translations) }, foreign_key: :spina_conferences_delegate_id, # rubocop:disable Rails/HasAndBelongsToMany
40
- association_foreign_key: :spina_conferences_presentation_id
40
+ association_foreign_key: :spina_conferences_presentation_id
41
41
  # @!attribute [rw] dietary_requirements
42
42
  # @return [ActiveRecord::Relation] directly associated dietary requirements
43
43
  # @see DietaryRequirement
44
44
  has_and_belongs_to_many :dietary_requirements, -> { includes(:translations) }, foreign_key: :spina_conferences_delegate_id, # rubocop:disable Rails/HasAndBelongsToMany
45
- association_foreign_key: :spina_conferences_dietary_requirement_id
45
+ association_foreign_key: :spina_conferences_dietary_requirement_id # rubocop:disable Layout/LineLength
46
46
 
47
47
  validates :first_name, :last_name, presence: true
48
48
  validates :email_address, 'spina/admin/conferences/email_address': true
@@ -89,7 +89,7 @@ module Spina
89
89
  # @return [void]
90
90
  # @see PresentationImportJob#perform
91
91
  def self.import(file)
92
- PresentationImportJob.perform_later IO.read(file)
92
+ PresentationImportJob.perform_later File.read(file)
93
93
  end
94
94
 
95
95
  # @return [Date, nil] the start date of the presentation. Nil if the presentation has no start date and time
@@ -1,12 +1,11 @@
1
- .well
2
- .table-container
3
- %table.table
4
- %thead
5
- %tr
6
- %th= Spina::Admin::Conferences::Conference.human_attribute_name :name
7
- %th= Spina::Admin::Conferences::Conference.human_attribute_name :year
8
- %th= Spina::Admin::Conferences::Conference.human_attribute_name :start_date
9
- %th= Spina::Admin::Conferences::Conference.human_attribute_name :finish_date
10
- %th
1
+ .my-6.md:m-8.bg-white.md:rounded-lg.border-l-0.border-r-0.border.md:border-r.md:border-l.border-gray-200.border-b-0.shadow-sm
2
+ %table.table-fixed.w-full
3
+ %thead
4
+ %tr.border-b.text-left
5
+ %th.font-semibold.text-sm.p-4= Spina::Admin::Conferences::Conference.human_attribute_name :name
6
+ %th.font-semibold.text-sm.p-4= Spina::Admin::Conferences::Conference.human_attribute_name :year
7
+ %th.font-semibold.text-sm.p-4= Spina::Admin::Conferences::Conference.human_attribute_name :start_date
8
+ %th.font-semibold.text-sm.p-4= Spina::Admin::Conferences::Conference.human_attribute_name :finish_date
9
+ %th
11
10
 
12
- %tbody= render conferences.presence || 'empty_list', message: t('.no_conferences')
11
+ %tbody= render conferences.presence || 'empty_list', message: t('.no_conferences')
@@ -1,11 +1,10 @@
1
- .well
2
- .table-container
3
- %table.table
4
- %thead
5
- %tr
6
- %th= Spina::Admin::Conferences::Delegate.human_attribute_name :name
7
- %th= Spina::Admin::Conferences::Delegate.human_attribute_name :email_address
8
- %th= Spina::Admin::Conferences::Delegate.human_attribute_name :institution
9
- %th
1
+ .my-6.md:m-8.bg-white.md:rounded-lg.border-l-0.border-r-0.border.md:border-r.md:border-l.border-gray-200.border-b-0.shadow-sm
2
+ %table.table-fixed.w-full
3
+ %thead
4
+ %tr.border-b.text-left
5
+ %th.font-semibold.text-sm.p-4= Spina::Admin::Conferences::Delegate.human_attribute_name :name
6
+ %th.font-semibold.text-sm.p-4= Spina::Admin::Conferences::Delegate.human_attribute_name :email_address
7
+ %th.font-semibold.text-sm.p-4= Spina::Admin::Conferences::Delegate.human_attribute_name :institution
8
+ %th
10
9
 
11
- %tbody= render delegates.presence || 'empty_list', message: t('.no_delegates')
10
+ %tbody= render delegates.presence || 'empty_list', message: t('.no_delegates')
@@ -1,9 +1,8 @@
1
- .well
2
- .table-container
3
- %table.table
4
- %thead
5
- %tr
6
- %th= Spina::Admin::Conferences::DietaryRequirement.human_attribute_name :name
7
- %th
1
+ .my-6.md:m-8.bg-white.md:rounded-lg.border-l-0.border-r-0.border.md:border-r.md:border-l.border-gray-200.border-b-0.shadow-sm
2
+ %table.table-fixed.w-full
3
+ %thead
4
+ %tr.border-b.text-left
5
+ %th.font-semibold.text-sm.p-4= Spina::Admin::Conferences::DietaryRequirement.human_attribute_name :name
6
+ %th
8
7
 
9
- %tbody= render dietary_requirements.presence || 'empty_list', message: t('.no_dietary_requirements')
8
+ %tbody= render dietary_requirements.presence || 'empty_list', message: t('.no_dietary_requirements')
@@ -1,3 +1,3 @@
1
1
  %tr
2
- %td.align-center{ colspan: 1000 }
2
+ %td.text-center.text-lg.text-medium.text-gray-700.py-8{ colspan: 10 }
3
3
  %em= message
@@ -1,10 +1,9 @@
1
- .well
2
- .table-container
3
- %table.table
4
- %thead
5
- %tr
6
- %th= Spina::Admin::Conferences::Institution.human_attribute_name :name
7
- %th= Spina::Admin::Conferences::Institution.human_attribute_name :city
8
- %th
1
+ .my-6.md:m-8.bg-white.md:rounded-lg.border-l-0.border-r-0.border.md:border-r.md:border-l.border-gray-200.border-b-0.shadow-sm
2
+ %table.table-fixed.w-full
3
+ %thead
4
+ %tr.border-b.text-left
5
+ %th.font-semibold.text-sm.p-4= Spina::Admin::Conferences::Institution.human_attribute_name :name
6
+ %th.font-semibold.text-sm.p-4= Spina::Admin::Conferences::Institution.human_attribute_name :city
7
+ %th
9
8
 
10
- %tbody= render institutions.presence || 'empty_list', message: t('.no_institutions')
9
+ %tbody= render institutions.presence || 'empty_list', message: t('.no_institutions')
@@ -1,10 +1,9 @@
1
- .well
2
- .table-container
3
- %table.table
4
- %thead
5
- %tr
6
- %th= Spina::Admin::Conferences::DietaryRequirement.human_attribute_name :name
7
- %th
1
+ .my-6.md:m-8.bg-white.md:rounded-lg.border-l-0.border-r-0.border.md:border-r.md:border-l.border-gray-200.border-b-0.shadow-sm
2
+ %table.table-fixed.w-full
3
+ %thead
4
+ %tr.border-b.text-left
5
+ %th.font-semibold.text-sm.p-4= Spina::Admin::Conferences::DietaryRequirement.human_attribute_name :name
6
+ %th
8
7
 
9
- %tbody
10
- = render presentation_attachment_types.presence || 'empty_list', message: t('.no_presentation_attachment_types')
8
+ %tbody
9
+ = render presentation_attachment_types.presence || 'empty_list', message: t('.no_presentation_attachment_types')
@@ -1,11 +1,10 @@
1
- .well
2
- .table-container
3
- %table.table
4
- %thead
5
- %tr
6
- %th= Spina::Admin::Conferences::PresentationType.human_attribute_name :conference
7
- %th= Spina::Admin::Conferences::PresentationType.human_attribute_name :name
8
- %th= Spina::Admin::Conferences::PresentationType.human_attribute_name :duration
9
- %th
1
+ .my-6.md:m-8.bg-white.md:rounded-lg.border-l-0.border-r-0.border.md:border-r.md:border-l.border-gray-200.border-b-0.shadow-sm
2
+ %table.table-fixed.w-full
3
+ %thead
4
+ %tr.border-b.text-left
5
+ %th.font-semibold.text-sm.p-4= Spina::Admin::Conferences::PresentationType.human_attribute_name :conference
6
+ %th.font-semibold.text-sm.p-4= Spina::Admin::Conferences::PresentationType.human_attribute_name :name
7
+ %th.font-semibold.text-sm.p-4= Spina::Admin::Conferences::PresentationType.human_attribute_name :duration
8
+ %th
10
9
 
11
- %tbody= render presentation_types.presence || 'empty_list', message: t('.no_presentation_types')
10
+ %tbody= render presentation_types.presence || 'empty_list', message: t('.no_presentation_types')
@@ -1,11 +1,10 @@
1
- .well
2
- .table-container
3
- %table.table
4
- %thead
5
- %tr
6
- %th= Spina::Admin::Conferences::Presentation.human_attribute_name :conference
7
- %th= Spina::Admin::Conferences::Presentation.human_attribute_name :title
8
- %th= Spina::Admin::Conferences::Presentation.human_attribute_name :presenters
9
- %th
1
+ .my-6.md:m-8.bg-white.md:rounded-lg.border-l-0.border-r-0.border.md:border-r.md:border-l.border-gray-200.border-b-0.shadow-sm
2
+ %table.table-fixed.w-full
3
+ %thead
4
+ %tr.border-b.text-left
5
+ %th.font-semibold.text-sm.p-4= Spina::Admin::Conferences::Presentation.human_attribute_name :conference
6
+ %th.font-semibold.text-sm.p-4= Spina::Admin::Conferences::Presentation.human_attribute_name :title
7
+ %th.font-semibold.text-sm.p-4= Spina::Admin::Conferences::Presentation.human_attribute_name :presenters
8
+ %th
10
9
 
11
- %tbody= render presentations.presence || 'empty_list', message: t('.no_presentations')
10
+ %tbody= render presentations.presence || 'empty_list', message: t('.no_presentations')
@@ -1,11 +1,10 @@
1
- .well
2
- .table-container
3
- %table.table
4
- %thead
5
- %tr
6
- %th= Spina::Admin::Conferences::Room.human_attribute_name :institution
7
- %th= Spina::Admin::Conferences::Room.human_attribute_name :building
8
- %th= Spina::Admin::Conferences::Room.human_attribute_name :number
9
- %th
1
+ .my-6.md:m-8.bg-white.md:rounded-lg.border-l-0.border-r-0.border.md:border-r.md:border-l.border-gray-200.border-b-0.shadow-sm
2
+ %table.table-fixed.w-full
3
+ %thead
4
+ %tr.border-b.text-left
5
+ %th.font-semibold.text-sm.p-4= Spina::Admin::Conferences::Room.human_attribute_name :institution
6
+ %th.font-semibold.text-sm.p-4= Spina::Admin::Conferences::Room.human_attribute_name :building
7
+ %th.font-semibold.text-sm.p-4= Spina::Admin::Conferences::Room.human_attribute_name :number
8
+ %th
10
9
 
11
- %tbody= render rooms.presence || 'empty_list', message: t('.no_rooms')
10
+ %tbody= render rooms.presence || 'empty_list', message: t('.no_rooms')
@@ -1,11 +1,10 @@
1
- .well
2
- .table-container
3
- %table.table
4
- %thead
5
- %tr
6
- %th= Spina::Admin::Conferences::Session.human_attribute_name :name
7
- %th= Spina::Admin::Conferences::Session.human_attribute_name :presentation_type
8
- %th= Spina::Admin::Conferences::Session.human_attribute_name :room
9
- %th
1
+ .my-6.md:m-8.bg-white.md:rounded-lg.border-l-0.border-r-0.border.md:border-r.md:border-l.border-gray-200.border-b-0.shadow-sm
2
+ %table.table-fixed.w-full
3
+ %thead
4
+ %tr.border-b.text-left
5
+ %th.font-semibold.text-sm.p-4= Spina::Admin::Conferences::Session.human_attribute_name :name
6
+ %th.font-semibold.text-sm.p-4= Spina::Admin::Conferences::Session.human_attribute_name :presentation_type
7
+ %th.font-semibold.text-sm.p-4= Spina::Admin::Conferences::Session.human_attribute_name :room
8
+ %th
10
9
 
11
- %tbody= render sessions.presence || 'empty_list', message: t('.no_sessions')
10
+ %tbody= render sessions.presence || 'empty_list', message: t('.no_sessions')
@@ -1,9 +1,13 @@
1
- %tr{ data: { conference_id: conference.id } }
2
- %td= link_to conference.name, edit_admin_conferences_conference_path(conference)
3
- %td= conference.year
4
- %td= time_tag conference.start_date, l(conference.start_date, format: :long)
5
- %td= time_tag conference.finish_date, l(conference.finish_date, format: :long)
6
- %td.align-right
7
- = link_to edit_admin_conferences_conference_path(conference), class: %w[button button-small button-link] do
8
- = icon 'pencil-outline'
9
- = t 'spina.edit'
1
+ %tr.border-b{ data: { conference_id: conference.id } }
2
+ %td= link_to conference.name, edit_admin_conferences_conference_path(conference), class: 'block text-spina font-medium text-sm p-4 hover:text-spina-dark'
3
+ %td
4
+ .block.font-light.text-sm.p-4= conference.year
5
+ %td
6
+ .block.font-light.text-sm.p-4= time_tag conference.start_date, l(conference.start_date, format: :long)
7
+ %td
8
+ .block.font-light.text-sm.p-4= time_tag conference.finish_date, l(conference.finish_date, format: :long)
9
+ %td
10
+ = link_to edit_admin_conferences_conference_path(conference), class: 'btn btn-default mx-4 w-max' do
11
+ .flex.flex-nowrap.items-center.px-8.py-1
12
+ = heroicon 'pencil-alt', style: :outline, class: 'w-4 h-4'
13
+ .ml-2= t 'spina.edit'
@@ -1,31 +1,24 @@
1
- .structure-form-pane{ class: ('active' if (local_assigns[:active] == true) || (f.index == 0)), id: "structure_form_pane_#{f.index}",
2
- data: { 'spina--admin--conferences--conference_events_form': { target: 'formPane' } } }
3
- .structure-form-part
4
- .page-form-label= Spina::Admin::Conferences::Event.human_attribute_name :name
5
- .page-form-control= f.text_field :name, placeholder: Spina::Admin::Conferences::Event.human_attribute_name(:name), required: true
1
+ %div{ data: { 'part-id': "#{f.object.object_id}", 'tabs-target': 'pane' }, id: "pane_#{f.object.object_id}" }
2
+ = f.hidden_field :id
6
3
 
7
- .structure-form-part
8
- .page-form-label= Spina::Admin::Conferences::Event.human_attribute_name :start_datetime
9
- .page-form-control= f.datetime_field :start_datetime,
10
- placeholder: Spina::Admin::Conferences::Event.human_attribute_name(:start_datetime), required: true
4
+ = render Spina::Admin::Conferences::FormGroupComponent.new(label: Spina::Admin::Conferences::Event.human_attribute_name(:name)) do
5
+ = render Spina::Forms::TextFieldComponent.new(f, :name)
6
+ = render Spina::Admin::Conferences::FormGroupComponent.new(label: Spina::Admin::Conferences::Event.human_attribute_name(:start_datetime)) do
7
+ = f.datetime_field :start_datetime, class: 'form-input'
8
+ = render Spina::Admin::Conferences::FormGroupComponent.new(label: Spina::Admin::Conferences::Event.human_attribute_name(:finish_datetime)) do
9
+ = f.datetime_field :finish_datetime, class: 'form-input'
10
+ = render Spina::Admin::Conferences::FormGroupComponent.new(label: Spina::Admin::Conferences::Event.human_attribute_name(:location)) do
11
+ = render Spina::Forms::TextFieldComponent.new(f, :location)
11
12
 
12
- .structure-form-part
13
- .page-form-label= Spina::Admin::Conferences::Event.human_attribute_name :finish_datetime
14
- .page-form-control= f.datetime_field :finish_datetime,
15
- placeholder: Spina::Admin::Conferences::Event.human_attribute_name(:finish_datetime), required: true
13
+ = render Spina::Admin::Conferences::FormGroupComponent.new(label: Spina::Admin::Conferences::Event.human_attribute_name(:description)) do
14
+ .mt-1.relative
15
+ = f.hidden_field :description, id: "#{f.object.object_id}_input"
16
16
 
17
- .structure-form-part
18
- .page-form-label= Spina::Admin::Conferences::Event.human_attribute_name :location
19
- .page-form-control= f.text_field :location, placeholder: Spina::Admin::Conferences::Event.human_attribute_name(:location),
20
- required: true
17
+ .relative.form-textarea.p-4.pt-0.shadow-sm.max-w-5xl(data-controller='trix' id="insert_#{f.object.object_id}_trix-toolbar" data-action='media-picker:done->trix#insertAttachment')
18
+ = render Spina::Forms::TrixToolbarComponent.new("#{f.object.object_id}_trix-toolbar")
21
19
 
22
- .structure-form-part
23
- .page-form-label= Spina::Admin::Conferences::Event.human_attribute_name :description
24
- .page-form-content
25
- .page-form-rich-text= f.rich_text_area :description
20
+ %trix-editor(class='prose prose-sm focus:outline-none max-w-3xl xl:border-r border-dashed border-gray-200 pr-3' toolbar="#{f.object.object_id}_trix-toolbar" input="#{f.object.object_id}_input" data-trix-target='editor' data-action='trix-file-accept->trix#preventDefault')
26
21
 
27
- = f.hidden_field :id
22
+ .text-right
23
+ = button_tag t('spina.ui.delete'), type: :button, class: 'btn btn-default bg-transparent hover:bg-white hover:text-red-500 h-8 px-3 inline-block mt-3', data: { action: 'repeater#removeFields', id: "pane_#{f.object.object_id}" }
28
24
 
29
- = f.hidden_field :_destroy, data: { 'spina--admin--conferences--conference_events_form_target': 'destroyField' }
30
- = button_tag t('spina.delete'), type: 'button', class: %w[button button-mini button-link pull-right],
31
- data: { action: 'spina--admin--conferences--conference-events-form#removeForm' }
@@ -1,27 +1,29 @@
1
- - if @conference.errors.any?
2
- - content_for :notifications do
3
- = render 'errors', errors: @conference.errors
1
+ %div{ data: { controller: 'tabs',
2
+ tabs: { active: 'cursor-default text-gray-900 bg-spina-dark bg-opacity-10',
3
+ inactive: 'cursor-pointer bg-transparent text-gray-400 border-transparent' } } }
4
+ = render Spina::UserInterface::HeaderComponent.new do |header|
5
+ - header.actions do
6
+ - if @conference.persisted?
7
+ = render Spina::UserInterface::DropdownComponent.new do |dropdown|
8
+ - dropdown.button(classes: "btn btn-default px-3") do
9
+ = heroicon('dots-horizontal', style: :solid, class: "w-5 h-5 text-gray-600")
4
10
 
5
- = form_for [:admin_conferences, @conference], html: { autocomplete: 'off' } do |f|
6
- %header#header
7
- = render partial: 'spina/admin/shared/breadcrumbs'
11
+ - dropdown.menu do
12
+ = button_to t('spina.permanently_delete'), admin_conferences_conference_path(@conference), method: :delete, class: "block w-full text-left px-4 py-2 text-sm leading-5 font-medium text-red-500 cursor-pointer bg-white hover:bg-red-100 hover:bg-opacity-50 hover:text-red-500 focus:outline-none focus:bg-gray-100 focus:text-gray-900", form: {data: { controller: 'confirm', confirm_message: t('.delete_confirmation', conference: @conference.name) } }
8
13
 
9
- #header_actions
10
- %button.button.button-primary{ type: 'submit' }
11
- = icon('check')
14
+ = button_tag type: :submit, form: dom_id(@conference), class: 'btn btn-primary', data: { controller: 'button', action: 'button#loading', loading_message: t('spina.ui.saving')} do
15
+ = heroicon('check', style: :solid, class: 'w-5 h-5 mr-1 -ml-2')
12
16
  = t '.save'
13
17
 
14
- = link_to t('spina.cancel'), admin_conferences_conferences_path, class: 'button', style: 'margin-right: 0'
18
+ - header.navigation do
19
+ %nav.-mb-3.mt-4
20
+ %ul.inline-flex.w-auto.rounded-md.bg-white
21
+ - @tabs.each do |tab|
22
+ %button.block.px-3.leading-relaxed.py-1.hover:text-gray-800.rounded-md.text-gray-400.font-medium.text-sm.flex.items-center.whitespace-nowrap{ type: 'button', data: { action: 'tabs#show', 'tabs-target': 'button', 'pane-id': "#{tab}" } }
23
+ = t ".#{tab}"
15
24
 
16
- %nav#secondary.tabs
17
- %ul
18
- - @tabs.each_with_index do |tab, i|
19
- %li{ class: ('active' if i == 0) }
20
- = link_to t(".#{tab}"), "##{tab}"
21
-
22
- #conference_details.tab-content.active= render 'form_conference_details', f: f
23
- #parts.tab-content= render 'form_parts', f: f
24
- #rooms.tab-content= render partial: 'rooms', object: @conference.rooms
25
- #presentation_types.tab-content= render partial: 'presentation_types', object: @conference.presentation_types
26
- #delegates.tab-content= render partial: 'delegates', object: @conference.delegates
27
- #presentations.tab-content= render partial: 'presentations', object: @conference.presentations
25
+ .p-4.md:p-8
26
+ = form_with model: [spina, :admin_conferences, @conference], id: dom_id(@conference), html: { autocomplete: 'off' } do |f|
27
+ - @tabs.each_with_index do |tab, i|
28
+ %div{ 'data-tabs-target': 'pane', id: tab, hidden: i != 0 }
29
+ .max-w-5xl= render "form_#{tab}", f: f