mumuki-laboratory 9.0.3 → 9.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/mumuki_laboratory/application/codemirror.js +10 -2
- data/app/assets/javascripts/mumuki_laboratory/application/discussions.js +49 -8
- data/app/assets/javascripts/mumuki_laboratory/application/gamification.js +3 -3
- data/app/assets/javascripts/mumuki_laboratory/application/kids.js +11 -7
- data/app/assets/javascripts/mumuki_laboratory/application/kindergarten.js +3 -3
- data/app/assets/javascripts/mumuki_laboratory/application/messages.js +3 -3
- data/app/assets/javascripts/mumuki_laboratory/application/mu-modal-carrousel.js +4 -4
- data/app/assets/javascripts/mumuki_laboratory/application/multiple-files.js +18 -5
- data/app/assets/javascripts/mumuki_laboratory/application/multiple-scenarios.js +1 -1
- data/app/assets/javascripts/mumuki_laboratory/application/organization.js +32 -0
- data/app/assets/javascripts/mumuki_laboratory/application/primary.js +4 -4
- data/app/assets/javascripts/mumuki_laboratory/application/profile.js +0 -6
- data/app/assets/javascripts/mumuki_laboratory/application/progress.js +1 -1
- data/app/assets/javascripts/mumuki_laboratory/application/speech-bubble-renderer.js +1 -1
- data/app/assets/javascripts/mumuki_laboratory/application/submission.js +4 -3
- data/app/assets/javascripts/mumuki_laboratory/application/submissions-store.js +1 -1
- data/app/assets/javascripts/mumuki_laboratory/application/toast.js +3 -0
- data/app/assets/javascripts/mumuki_laboratory/application/tooltip.js +1 -1
- data/app/assets/javascripts/mumuki_laboratory/application/upload.js +2 -2
- data/app/assets/javascripts/mumuki_laboratory/application/user.js +34 -1
- data/app/assets/stylesheets/mumuki_laboratory/application.scss +0 -1
- data/app/assets/stylesheets/mumuki_laboratory/application/_errors.scss +1 -1
- data/app/assets/stylesheets/mumuki_laboratory/application/_layout.scss +1 -27
- data/app/assets/stylesheets/mumuki_laboratory/application/_modules.scss +1 -2
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_activity.scss +14 -0
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_avatar.scss +5 -0
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_breadcrumb.scss +2 -2
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_datepicker.scss +0 -4
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_discussion.scss +49 -59
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_editor.scss +16 -18
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_exercise_assignment.scss +2 -11
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_exercise_results.scss +1 -7
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_faqs.scss +3 -3
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_flash.scss +7 -46
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_kids.scss +19 -4
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_kids_results.scss +18 -23
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_kindergarten.scss +1 -9
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_overlap.scss +1 -1
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_progress_bar.scss +5 -5
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_terms.scss +3 -2
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_timer.scss +1 -3
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_user_menu.scss +14 -7
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_user_profile.scss +1 -2
- data/app/controllers/application_controller.rb +4 -2
- data/app/controllers/discussions_messages_controller.rb +9 -3
- data/app/controllers/users_controller.rb +13 -0
- data/app/helpers/application_helper.rb +5 -5
- data/app/helpers/assignment_result_helper.rb +3 -2
- data/app/helpers/assistance_box_helper.rb +1 -1
- data/app/helpers/concerns/with_student_path_navigation.rb +8 -3
- data/app/helpers/concerns/with_student_path_navigation/continue_navigation.rb +1 -1
- data/app/helpers/concerns/with_student_path_navigation/finish_navigation.rb +1 -1
- data/app/helpers/concerns/with_student_path_navigation/next_parent_navigation.rb +7 -0
- data/app/helpers/concerns/with_student_path_navigation/revisit_navigation.rb +1 -1
- data/app/helpers/discussions_helper.rb +64 -23
- data/app/helpers/editor_tabs_helper.rb +10 -6
- data/app/helpers/email_helper.rb +2 -2
- data/app/helpers/exercise_input_helper.rb +2 -3
- data/app/helpers/links_helper.rb +12 -9
- data/app/helpers/menu_bar_helper.rb +1 -1
- data/app/helpers/messages_helper.rb +1 -1
- data/app/helpers/multiple_file_editor_helper.rb +2 -1
- data/app/helpers/overlapped_buttons_helper.rb +22 -12
- data/app/helpers/profile_helper.rb +3 -3
- data/app/helpers/toast_helper.rb +27 -0
- data/app/helpers/user_activity_helper.rb +48 -0
- data/app/helpers/user_menu_helper.rb +4 -0
- data/app/views/book/show.html.erb +2 -2
- data/app/views/certificates/verify.html.erb +1 -1
- data/app/views/chapters/show.html.erb +2 -2
- data/app/views/discussions/_description_message.html.erb +1 -1
- data/app/views/discussions/_message.html.erb +32 -7
- data/app/views/discussions/_new_message.html.erb +13 -2
- data/app/views/discussions/index.html.erb +8 -10
- data/app/views/discussions/new.html.erb +2 -2
- data/app/views/discussions/show.html.erb +20 -12
- data/app/views/exam_registrations/show.html.erb +10 -11
- data/app/views/exercise_solutions/_assistant_rules_box.html.erb +1 -1
- data/app/views/exercise_solutions/_contextualization_results_body.html.erb +1 -1
- data/app/views/exercise_solutions/_contextualization_results_container.html.erb +1 -1
- data/app/views/exercise_solutions/_kids_results_button.html.erb +2 -2
- data/app/views/exercise_solutions/_results.html.erb +1 -1
- data/app/views/exercises/_exercise_assignment.html.erb +2 -2
- data/app/views/exercises/_exercise_skipped.html.erb +1 -1
- data/app/views/exercises/_read_only.html.erb +108 -105
- data/app/views/exercises/show.html.erb +7 -7
- data/app/views/guides/_guide.html.erb +1 -1
- data/app/views/guides/_guide_container.html.erb +4 -4
- data/app/views/invitations/_invitation_form.html.erb +5 -4
- data/app/views/layouts/_authoring.html.erb +1 -1
- data/app/views/layouts/_discussions.html.erb +7 -7
- data/app/views/layouts/_kids.html.erb +5 -5
- data/app/views/layouts/_kindergarten.html.erb +10 -6
- data/app/views/layouts/_main.html.erb +10 -10
- data/app/views/layouts/_organizations_listing.html.erb +2 -2
- data/app/views/layouts/_progress_bar.html.erb +2 -0
- data/app/views/layouts/_submission_result_error.html.erb +1 -1
- data/app/views/layouts/_test_results.html.erb +1 -1
- data/app/views/layouts/_timer.html.erb +1 -1
- data/app/views/layouts/_user_menu.html.erb +4 -3
- data/app/views/layouts/application.html.erb +39 -42
- data/app/views/layouts/exercise_inputs/editors/_code.html.erb +4 -4
- data/app/views/layouts/exercise_inputs/editors/_free_form.html.erb +1 -1
- data/app/views/layouts/exercise_inputs/editors/_multiple_choice.html.erb +7 -9
- data/app/views/layouts/exercise_inputs/editors/_multiple_files.html.erb +10 -10
- data/app/views/layouts/exercise_inputs/editors/_single_choice.html.erb +6 -8
- data/app/views/layouts/exercise_inputs/editors/_text.html.erb +2 -3
- data/app/views/layouts/exercise_inputs/editors/_upload.html.erb +5 -5
- data/app/views/layouts/exercise_inputs/forms/_form.html.erb +1 -1
- data/app/views/layouts/exercise_inputs/forms/_interactive_form.html.erb +2 -2
- data/app/views/layouts/exercise_inputs/forms/_kids_form.html.erb +1 -1
- data/app/views/layouts/exercise_inputs/forms/_playground_form.html.erb +2 -2
- data/app/views/layouts/exercise_inputs/forms/_problem_form.html.erb +13 -9
- data/app/views/layouts/exercise_inputs/layouts/_input_primary.html.erb +2 -2
- data/app/views/layouts/exercise_inputs/layouts/_input_right.html.erb +2 -2
- data/app/views/layouts/exercise_inputs/read_only_editors/_code.html.erb +1 -1
- data/app/views/layouts/exercise_inputs/read_only_editors/_free_form.html.erb +1 -1
- data/app/views/layouts/exercise_inputs/read_only_editors/_multiple_choice.html.erb +4 -4
- data/app/views/layouts/exercise_inputs/read_only_editors/_multiple_files.html.erb +2 -2
- data/app/views/layouts/exercise_inputs/read_only_editors/_single_choice.html.erb +4 -4
- data/app/views/layouts/exercise_inputs/read_only_editors/_text.erb +1 -1
- data/app/views/layouts/modals/_avatar_picker.html.erb +2 -5
- data/app/views/layouts/modals/_guide_corollary.html.erb +4 -8
- data/app/views/layouts/modals/_kids_context.html.erb +7 -5
- data/app/views/layouts/modals/_kids_results.html.erb +2 -2
- data/app/views/layouts/modals/_kids_results_aborted.html.erb +2 -2
- data/app/views/layouts/modals/_kindergarten_context.html.erb +3 -3
- data/app/views/layouts/modals/_kindergarten_results.html.erb +3 -3
- data/app/views/layouts/modals/_kindergarten_results_aborted.html.erb +2 -2
- data/app/views/layouts/modals/_level_up.html.erb +2 -5
- data/app/views/layouts/modals/_new_message.html.erb +5 -5
- data/app/views/notifications/_dropdown.html.erb +3 -3
- data/app/views/users/_activity_indicator.html.erb +17 -0
- data/app/views/users/_edit_user_form.html.erb +6 -6
- data/app/views/users/_profile_fields.html.erb +6 -6
- data/app/views/users/_user_form.html.erb +2 -2
- data/app/views/users/activity.html.erb +37 -0
- data/app/views/users/certificates.html.erb +26 -24
- data/app/views/users/discussions.html.erb +23 -21
- data/app/views/users/messages.html.erb +22 -20
- data/app/views/users/show.html.erb +5 -3
- data/app/views/users/terms.html.erb +4 -2
- data/config/initializers/inflections.rb +3 -0
- data/config/routes.rb +3 -0
- data/lib/mumuki/laboratory.rb +1 -1
- data/lib/mumuki/laboratory/extensions.rb +1 -0
- data/lib/mumuki/laboratory/extensions/date_and_time.rb +11 -0
- data/lib/mumuki/laboratory/locales/en.yml +28 -2
- data/lib/mumuki/laboratory/locales/es-CL.yml +33 -4
- data/lib/mumuki/laboratory/locales/es.yml +33 -4
- data/lib/mumuki/laboratory/locales/pt.yml +34 -3
- data/lib/mumuki/laboratory/version.rb +1 -1
- data/spec/capybara_helper.rb +1 -0
- data/spec/controllers/discussions_messages_controller_spec.rb +84 -3
- data/spec/dummy/db/schema.rb +23 -3
- data/spec/features/discussion_flow_spec.rb +22 -2
- data/spec/features/exercise_flow_spec.rb +1 -1
- data/spec/features/guide_reset_spec.rb +1 -1
- data/spec/features/terms_flow_spec.rb +1 -2
- data/spec/features/user_activity_flow_spec.rb +65 -0
- data/spec/helpers/breadcrumbs_helper_spec.rb +2 -2
- data/spec/helpers/user_activity_helper_spec.rb +32 -0
- data/spec/helpers/with_navigation_spec.rb +36 -13
- data/spec/javascripts/editors-spec.js +3 -3
- data/spec/javascripts/kids-button-spec.js +2 -2
- data/spec/javascripts/upload-spec.js +8 -8
- metadata +133 -123
- data/app/assets/stylesheets/mumuki_laboratory/application/hovers.scss +0 -12
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_checkboxes.scss +0 -34
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_guide_corollary.scss +0 -9
@@ -40,7 +40,7 @@ module MenuBarHelper
|
|
40
40
|
end
|
41
41
|
|
42
42
|
def menu_item(icon, name, url, translation_params = {})
|
43
|
-
link_to fixed_fa_icon(icon, text: t(name, translation_params)), url, role: 'menuitem', tabindex: '-1'
|
43
|
+
link_to fixed_fa_icon(icon, text: t(name, translation_params)), url, role: 'menuitem', tabindex: '-1', class: 'dropdown-item'
|
44
44
|
end
|
45
45
|
|
46
46
|
def any_menu_bar_links?
|
@@ -9,6 +9,7 @@ module MultipleFileEditorHelper
|
|
9
9
|
|
10
10
|
def multifile_hidden_inputs
|
11
11
|
hidden_field_tag('highlight-modes', highlight_modes.to_json) +
|
12
|
-
hidden_field_tag('multifile-locales', multifile_locales.to_json)
|
12
|
+
hidden_field_tag('multifile-locales', multifile_locales.to_json) +
|
13
|
+
hidden_field_tag('multifile-default-content', @files.to_json)
|
13
14
|
end
|
14
15
|
end
|
@@ -1,25 +1,35 @@
|
|
1
1
|
module OverlappedButtonsHelper
|
2
2
|
def expand_icon
|
3
|
-
|
3
|
+
overlapped_link :fullscreen, :expand, class: 'editor-resize'
|
4
4
|
end
|
5
5
|
|
6
|
-
def
|
7
|
-
|
6
|
+
def format_icon
|
7
|
+
overlapped_link :format, :indent, class: 'editor-format'
|
8
8
|
end
|
9
9
|
|
10
|
-
def
|
11
|
-
|
10
|
+
def restart_icon(source='console', **options)
|
11
|
+
overlapped_link :restart, :undo, class: "#{source}-reset submission-reset", **options
|
12
12
|
end
|
13
13
|
|
14
14
|
def restart_guide_link(guide)
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
15
|
+
all_options = tooltip_options(:restart).merge!(
|
16
|
+
{class: 'mu-content-toolbar-item mu-restart-guide',
|
17
|
+
data: {confirm: t(:confirm_restart)}, method: :delete, 'data-bs-placement': 'top'})
|
18
|
+
|
19
|
+
link_to overlapped_button_icon(:undo), guide_progress_path(guide), all_options
|
20
|
+
end
|
21
|
+
|
22
|
+
private
|
23
|
+
|
24
|
+
def overlapped_link(key, icon, **options)
|
25
|
+
content_tag :a, overlapped_button_icon(icon), tooltip_options(key).merge!(options)
|
26
|
+
end
|
27
|
+
|
28
|
+
def overlapped_button_icon(icon)
|
29
|
+
fa_icon icon, class: 'fa-fw', role: 'button'
|
20
30
|
end
|
21
31
|
|
22
|
-
def
|
23
|
-
|
32
|
+
def tooltip_options(key)
|
33
|
+
{title: t(key), 'aria-label': t(key), 'data-bs-toggle': 'tooltip', 'data-bs-placement': 'left'}
|
24
34
|
end
|
25
35
|
end
|
@@ -1,13 +1,13 @@
|
|
1
1
|
module ProfileHelper
|
2
2
|
def edit_profile_button
|
3
|
-
link_to t(:edit_profile), :edit_user, class: 'btn btn-
|
3
|
+
link_to t(:edit_profile), :edit_user, class: 'btn btn-complementary'
|
4
4
|
end
|
5
5
|
|
6
6
|
def cancel_edit_profile_button
|
7
|
-
link_to t(:cancel), :user, class: 'btn btn-
|
7
|
+
link_to t(:cancel), :user, class: 'btn btn-secondary' if current_user.profile_completed?
|
8
8
|
end
|
9
9
|
|
10
10
|
def save_edit_profile_button(form)
|
11
|
-
form.submit t(:save), disabled: true, class: 'btn btn-
|
11
|
+
form.submit t(:save), disabled: true, class: 'btn btn-complementary mu-edit-profile-btn'
|
12
12
|
end
|
13
13
|
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
module ToastHelper
|
2
|
+
def toast_notice(text)
|
3
|
+
toast_for('success', 'check-circle', text)
|
4
|
+
end
|
5
|
+
|
6
|
+
def toast_alert(text)
|
7
|
+
toast_for('error', 'times-circle', text)
|
8
|
+
end
|
9
|
+
|
10
|
+
def toast_info(text)
|
11
|
+
toast_for('info', 'info-circle', text)
|
12
|
+
end
|
13
|
+
|
14
|
+
private
|
15
|
+
|
16
|
+
def toast_for(type, icon, text)
|
17
|
+
"<div class='toast mu-toast-#{type}' role='alert'>
|
18
|
+
<div class='toast-body'>
|
19
|
+
<div class='d-flex align-items-center'>
|
20
|
+
#{fa_icon icon, class: 'fa-lg me-3'}
|
21
|
+
<span class='flex-grow-1 text-break'>#{text}</span>
|
22
|
+
<button type='button' class='btn-close btn-close-white mx-2 flex-shrink-0' data-bs-dismiss='toast' aria-label='Close'></button>
|
23
|
+
</div>
|
24
|
+
</div>
|
25
|
+
</div>".html_safe
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,48 @@
|
|
1
|
+
module UserActivityHelper
|
2
|
+
def activity_selector_week_range_for(organization = Organization.current)
|
3
|
+
start = organization.activity_start_date min_week
|
4
|
+
(start.prev_occurring(:monday) + 1..Date.today)
|
5
|
+
.step(7)
|
6
|
+
.to_a
|
7
|
+
.reverse
|
8
|
+
.map { |it| [it, it + 7.days] }
|
9
|
+
end
|
10
|
+
|
11
|
+
def mark_period_if_active(period_start)
|
12
|
+
active_period?(period_start) ? 'nav-link active' : 'nav-link'
|
13
|
+
end
|
14
|
+
|
15
|
+
def solved_exercises_percentage
|
16
|
+
percentage = @activity[:exercises][:solved_count].to_f / @activity[:exercises][:count] * 100
|
17
|
+
"#{percentage.ceil}%"
|
18
|
+
end
|
19
|
+
|
20
|
+
def exercises_activity_stats
|
21
|
+
solved_count = {
|
22
|
+
name: t(:solved_exercises_count, count: @activity[:exercises][:solved_count]),
|
23
|
+
value: @activity[:exercises][:solved_count] }
|
24
|
+
solved_percentage = {
|
25
|
+
name: t(:solved_exercises_percentage),
|
26
|
+
value: solved_exercises_percentage }
|
27
|
+
|
28
|
+
@date_from ? [solved_count] : [solved_count, solved_percentage]
|
29
|
+
end
|
30
|
+
|
31
|
+
def messages_activity_stats
|
32
|
+
count = @activity[:messages][:count]
|
33
|
+
approved = @activity[:messages][:approved]
|
34
|
+
|
35
|
+
[{name: t(:messages_pluralized, count: count), value: count},
|
36
|
+
{name: t(:approved_messages, count: approved), value: approved}]
|
37
|
+
end
|
38
|
+
|
39
|
+
private
|
40
|
+
|
41
|
+
def active_period?(period_start)
|
42
|
+
period_start ? @date_from == period_start : !@date_from
|
43
|
+
end
|
44
|
+
|
45
|
+
def min_week
|
46
|
+
8.week.ago.to_date
|
47
|
+
end
|
48
|
+
end
|
@@ -19,6 +19,10 @@ module UserMenuHelper
|
|
19
19
|
user_menu_item t(:discussions), discussions_user_path, 'discussions' if current_user&.can_discuss_here?
|
20
20
|
end
|
21
21
|
|
22
|
+
def activity_user_menu_link
|
23
|
+
user_menu_item t(:activity), activity_user_path, 'activity'
|
24
|
+
end
|
25
|
+
|
22
26
|
def certificates_user_menu_link
|
23
27
|
user_menu_item t(:certificates), certificates_user_path, 'certificates'
|
24
28
|
end
|
@@ -2,12 +2,12 @@
|
|
2
2
|
<%= header_breadcrumbs(link_for_organization: false) %>
|
3
3
|
<% end %>
|
4
4
|
|
5
|
-
<div class="col-
|
5
|
+
<div class="col-lg-8 offset-lg-2">
|
6
6
|
<%= render partial: 'book/header' %>
|
7
7
|
|
8
8
|
<% @book.next_lesson_for(current_user).try do |lesson| %>
|
9
9
|
<div class="actions">
|
10
|
-
<a href="<%= lesson_path(lesson) %>" class="btn btn-
|
10
|
+
<a href="<%= lesson_path(lesson) %>" class="btn btn-complementary">
|
11
11
|
<%= t book_practice_key_for(current_user) %>
|
12
12
|
</a>
|
13
13
|
</div>
|
@@ -22,7 +22,7 @@
|
|
22
22
|
<a href="<%= linkedin_post_url @certificate %>" target="_blank">
|
23
23
|
<img src="https://download.linkedin.com/desktop/add2profile/buttons/<%= t :linkedin_profile_button_locale %>.png" alt="LinkedIn Add to Profile button">
|
24
24
|
</a>
|
25
|
-
<a class="btn btn-
|
25
|
+
<a class="btn btn-complementary mu-certificate-download-btn pull-right" href="<%= download_certificate_path @certificate.code %>" target="_blank">
|
26
26
|
<i class="fas fa-fw fa-lg fa-download mu-certificate-download-btn-icon"></i>
|
27
27
|
<span class="mu-certificate-download-btn-text"><%= t :certificate %></span>
|
28
28
|
</a>
|
@@ -4,8 +4,8 @@
|
|
4
4
|
|
5
5
|
<div class="row">
|
6
6
|
<div class="mu-inline-block-left">
|
7
|
-
<h1 class="
|
8
|
-
<h1 class="
|
7
|
+
<h1 class="d-none d-sm-block"><%= full_title_for @chapter %></h1>
|
8
|
+
<h1 class="d-block d-sm-none"><%= short_title_for @chapter %></h1>
|
9
9
|
|
10
10
|
<% if @chapter.monolesson? %>
|
11
11
|
<%= render partial: 'guides/guide_title_icons' %>
|
@@ -2,7 +2,7 @@
|
|
2
2
|
<div class="discussion-message-bubble">
|
3
3
|
<div class="discussion-message-bubble-header">
|
4
4
|
<div class="discussion-message-bubble-title">
|
5
|
-
<%= discussion.initiator
|
5
|
+
<%= discussion_user_name(discussion.initiator) %>
|
6
6
|
<span class="message-date">
|
7
7
|
<%= t(:time_since, time: time_ago_in_words(discussion.created_at)) %>
|
8
8
|
</span>
|
@@ -2,7 +2,7 @@
|
|
2
2
|
<div class="discussion-message-bubble">
|
3
3
|
<div class="discussion-message-bubble-header">
|
4
4
|
<div class="discussion-message-bubble-title">
|
5
|
-
<%= user
|
5
|
+
<%= discussion_user_name user %>
|
6
6
|
<% if user.moderator_here? %>
|
7
7
|
<span class="moderator-badge"><%= t(:moderation) %></span>
|
8
8
|
<% end %>
|
@@ -10,22 +10,28 @@
|
|
10
10
|
<%= t(:time_since, time: time_ago_in_words(message.created_at)) %>
|
11
11
|
</span>
|
12
12
|
<span class="actions">
|
13
|
-
<% if message.authorized?
|
13
|
+
<% if message.authorized?(current_user) && !message.deleted? %>
|
14
14
|
<% if current_user&.moderator_here? %>
|
15
|
-
<a class="discussion-message-approved <%= 'selected' if message.approved? %>"
|
15
|
+
<a class="discussion-message-approved <%= 'selected' if message.approved? %>"
|
16
|
+
onclick="mumuki.Forum.discussionMessageToggleApprove('<%= approve_discussion_message_url(@discussion, message) %>', $(this))">
|
16
17
|
<%= fa_icon(:check, class: 'fa-lg') %>
|
17
18
|
</a>
|
18
19
|
<% if message.from_initiator? %>
|
19
|
-
<a class="discussion-message-not-actually-a-question <%= 'selected' if message.not_actually_a_question? %>"
|
20
|
+
<a class="discussion-message-not-actually-a-question <%= 'selected' if message.not_actually_a_question? %>"
|
21
|
+
onclick="mumuki.Forum.discussionMessageToggleNotActuallyAQuestion('<%= question_discussion_message_url(@discussion, message) %>', $(this))">
|
20
22
|
<%= fa_icon('question-circle', type: 'regular', class: 'fa-lg') %>
|
21
23
|
</a>
|
22
24
|
<% end %>
|
23
25
|
<% end %>
|
24
|
-
|
26
|
+
<% if message.from_user? current_user %>
|
27
|
+
<%= discussion_delete_message_link @discussion, message %>
|
28
|
+
<% else %>
|
29
|
+
<%= discussion_delete_message_dropdown @discussion, message %>
|
30
|
+
<% end %>
|
25
31
|
<% end %>
|
26
32
|
<% if should_show_approved_for?(current_user, message) %>
|
27
33
|
<span class="discussion-message-approved selected">
|
28
|
-
<%= fa_icon(:check, class: 'fa-lg', 'data-toggle': 'tooltip', title: (t :approved_message)) %>
|
34
|
+
<%= fa_icon(:check, class: 'fa-lg', 'data-bs-toggle': 'tooltip', title: (t :approved_message)) %>
|
29
35
|
</span>
|
30
36
|
<% end %>
|
31
37
|
</span>
|
@@ -33,7 +39,26 @@
|
|
33
39
|
</div>
|
34
40
|
<div class="discussion-message-bubble-content">
|
35
41
|
<div class="discussion-message-content">
|
36
|
-
|
42
|
+
<% if message.deleted? %>
|
43
|
+
<em><%= message_deleted_text message %></em>
|
44
|
+
<% if message.from_user? current_user %>
|
45
|
+
<p><%= t :deleted_message_warning %></p>
|
46
|
+
<% end %>
|
47
|
+
<% if current_user&.moderator_here? %>
|
48
|
+
<hr>
|
49
|
+
<%= t :deleted_by, deleter: message.deleted_by.name %>
|
50
|
+
<%= t(:time_since, time: time_ago_in_words(message.deleted_at)) %>.
|
51
|
+
<a href='<%= "#deletedMessage#{message.id}" %>' data-bs-toggle="collapse">
|
52
|
+
<%= t :show_message %>
|
53
|
+
</a>
|
54
|
+
<div id='<%= "deletedMessage#{message.id}" %>' class="collapse">
|
55
|
+
<hr>
|
56
|
+
<%= message.content_html %>
|
57
|
+
</div>
|
58
|
+
<% end %>
|
59
|
+
<% else %>
|
60
|
+
<%= message.content_html %>
|
61
|
+
<% end %>
|
37
62
|
</div>
|
38
63
|
</div>
|
39
64
|
</div>
|
@@ -10,12 +10,23 @@
|
|
10
10
|
<div class="container-fluid">
|
11
11
|
<div class="row">
|
12
12
|
<div class="discussion-new-message-content">
|
13
|
-
<%= f.editor :content, '', { id: 'new-
|
13
|
+
<%= f.editor :content, '', { id: 'discussion-new-message', class: 'form-control', placeholder: t(:message) } %>
|
14
14
|
</div>
|
15
|
+
<div class="discussion-message-content d-none" id="discussion-new-message-preview"></div>
|
15
16
|
</div>
|
16
17
|
</div>
|
17
18
|
</div>
|
18
19
|
</div>
|
19
|
-
<
|
20
|
+
<div class="discussion-new-message-buttons">
|
21
|
+
<% if user.moderator_here? %>
|
22
|
+
<button class="btn btn-secondary discussion-new-message-preview-button preview" type="button" error-text="<%= t :preview_error %>"
|
23
|
+
onclick="mumuki.Forum.discussionMessagePreview('<%= preview_discussion_message_url %>')"> <%= fa_icon('eye', text: t(:preview)) %> </button>
|
24
|
+
<button class="btn btn-secondary discussion-new-message-preview-button edit d-none" type="button"
|
25
|
+
onclick="mumuki.Forum.hidePreviewAndShowEditor()"> <%= fa_icon('pencil-alt', text: t(:edit_message)) %> </button>
|
26
|
+
<% end %>
|
27
|
+
<%= button_tag type: 'submit', class: 'btn btn-complementary discussion-new-message-button', data: { disable: true } do %>
|
28
|
+
<%= fa_icon('comment', text: t(:comment)) %>
|
29
|
+
<% end %>
|
30
|
+
</div>
|
20
31
|
<% end %>
|
21
32
|
<% end %>
|
@@ -3,22 +3,20 @@
|
|
3
3
|
<% end %>
|
4
4
|
|
5
5
|
<div class="row">
|
6
|
-
<
|
7
|
-
<h1><%= t :forum %></h1>
|
8
|
-
</div>
|
6
|
+
<h1><%= t :forum %></h1>
|
9
7
|
</div>
|
10
|
-
<div class="
|
11
|
-
<% if @debatable.respond_to? :language %>
|
12
|
-
<div class="mu-inline-block-right hidden-xs">
|
13
|
-
<h3><%= language_icon @debatable.language %></h3>
|
14
|
-
</div>
|
15
|
-
<% end %>
|
8
|
+
<div class="d-flex">
|
16
9
|
<div class="mu-inline-block-left">
|
17
10
|
<h3>
|
18
|
-
<span class="
|
11
|
+
<span class="d-none d-sm-inline"><%= t("#{@debatable_class.downcase}_number", number: @debatable.number) %>: </span>
|
19
12
|
<span><%= @debatable.name %></span>
|
20
13
|
</h3>
|
21
14
|
</div>
|
15
|
+
<% if @debatable.respond_to? :language %>
|
16
|
+
<div class="d-none d-sm-block ms-3">
|
17
|
+
<h3><%= language_icon @debatable.language %></h3>
|
18
|
+
</div>
|
19
|
+
<% end %>
|
22
20
|
</div>
|
23
21
|
|
24
22
|
<% if @discussions.empty? %>
|
@@ -22,12 +22,12 @@
|
|
22
22
|
<div class="container-fluid">
|
23
23
|
<div class="row">
|
24
24
|
<div class="discussion-new-message-content">
|
25
|
-
<%= f.editor :description, '', {id: 'new-
|
25
|
+
<%= f.editor :description, '', {id: 'discussion-new-message', class: 'form-control', placeholder: t(:discussion_description_placeholder)} %>
|
26
26
|
</div>
|
27
27
|
</div>
|
28
28
|
</div>
|
29
29
|
</div>
|
30
30
|
</div>
|
31
|
-
<%= f.submit t(:save), class: 'btn btn-
|
31
|
+
<%= f.submit t(:save), class: 'btn btn-complementary w-100 discussion-new-message-button' %>
|
32
32
|
<% end %>
|
33
33
|
<% end %>
|
@@ -11,16 +11,24 @@
|
|
11
11
|
<% if @discussion.has_messages? || @discussion.commentable_by?(current_user) %>
|
12
12
|
<hr class="message-divider">
|
13
13
|
|
14
|
-
<div>
|
15
|
-
<h3>
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
<
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
14
|
+
<div class="d-flex flex-wrap">
|
15
|
+
<h3 class="flex-grow-1 me-3"><%= t :messages %></h3>
|
16
|
+
<% if current_user && @discussion.persisted? %>
|
17
|
+
<span class="d-flex">
|
18
|
+
<% if @discussion.subscribable? %>
|
19
|
+
<div class="discussion-subscription me-1">
|
20
|
+
<%= btn_toggle subscription_icon, unsubscription_icon, current_user.subscribed_to?(@discussion), class: 'btn-sm',
|
21
|
+
onclick: "mumuki.Forum.discussionSubscription('#{subscription_discussion_url(@discussion)}')" %>
|
22
|
+
</div>
|
23
|
+
<% end %>
|
24
|
+
<% if @discussion.solved? %>
|
25
|
+
<div class="discussion-upvote">
|
26
|
+
<%= btn_toggle upvote_icon, undo_upvote_icon, current_user.upvoted?(@discussion), class: 'btn-sm',
|
27
|
+
onclick: "mumuki.Forum.discussionUpvote('#{upvote_discussion_url(@discussion)}')" %>
|
28
|
+
</div>
|
29
|
+
<% end %>
|
30
|
+
</span>
|
31
|
+
<% end %>
|
24
32
|
</div>
|
25
33
|
|
26
34
|
<% if @discussion.has_messages? %>
|
@@ -28,8 +36,8 @@
|
|
28
36
|
<% if @discussion.description.present? %>
|
29
37
|
<%= render partial: 'discussions/description_message', locals: {discussion: @discussion} %>
|
30
38
|
<% end %>
|
31
|
-
<% @discussion.
|
32
|
-
|
39
|
+
<% @discussion.visible_messages.each do |message| %>
|
40
|
+
<%= render partial: 'discussions/message', locals: {user: message.sender_user, message: message} %>
|
33
41
|
<% end %>
|
34
42
|
<% if @discussion.commentable_by?(current_user) %>
|
35
43
|
<hr class="message-divider">
|
@@ -20,18 +20,17 @@
|
|
20
20
|
<%= t :exam_registration_explanation_html, date: l(@registration.end_time, format: :long) %>
|
21
21
|
</p>
|
22
22
|
</div>
|
23
|
-
<%= form_for @authorization_request do |f| %>
|
23
|
+
<%= form_for @authorization_request, html: {class: 'mu-form'} do |f| %>
|
24
24
|
<%= f.hidden_field :exam_registration_id, value: @registration.id %>
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
</
|
34
|
-
<button class="btn btn-success"> <%= t :save %> </button>
|
25
|
+
<%= f.label :exam_id, t(:exam_registration_choose_exam) %>
|
26
|
+
<% @registration.exams.each do |exam| %>
|
27
|
+
<div class="form-check">
|
28
|
+
<%= f.radio_button(:exam_id, exam.id, id: exam.id, required: true, class: 'form-check-input mu-read-only-input',
|
29
|
+
checked: @authorization_request.exam_id == exam.id) %>
|
30
|
+
<%= label_tag exam.id, l(exam.start_time, format: :long), class: 'form-check-label' %>
|
31
|
+
</div>
|
32
|
+
<% end %>
|
33
|
+
<button class="btn btn-complementary"> <%= t :save %> </button>
|
35
34
|
<% end %>
|
36
35
|
</div>
|
37
36
|
</div>
|