mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
157 lines
6 KiB
Text
157 lines
6 KiB
Text
<%
|
|
# How to use this modal:
|
|
# 1. Render it in the page (HTML) of your choice
|
|
# 2. Add an element (e.g. <a href>) with following attributes:
|
|
# * data-trigger="invite-users",
|
|
# * data-modal-id="modal-id",
|
|
#
|
|
# Modal parameters:
|
|
# * modal_id: unique id so the JS works if multiple modals are present
|
|
# on the same page
|
|
# * type:
|
|
# * 'invite_to_team' => params: team
|
|
# * 'invite_to_team_with_role' => params: team, role
|
|
# * 'invite',
|
|
# * 'invite_with_team_selector',
|
|
# * 'invite_with_team_selector_and_role' => params: role
|
|
# * team: invite users to the specified team
|
|
# * role: all users are invited as the specified role
|
|
# * (optional) text_title: custom title text for modal
|
|
# * (optional) text_invite_heading: custom invite heading text for modal
|
|
%>
|
|
<%
|
|
text_title ||= nil
|
|
text_invite_heading ||= nil
|
|
invite_to_team = type.in?(%w(invite_to_team invite_to_team_with_role))
|
|
%>
|
|
<div
|
|
class="modal modal-invite-users"
|
|
tabindex="-1"
|
|
role="dialog"
|
|
aria-labelledby="invite-users-modal-label"
|
|
data-id="<%= modal_id %>"
|
|
data-role="invite-users-modal"
|
|
data-type="<%= type %>"
|
|
data-url="<%= invite_users_path %>"
|
|
data-backdrop="static"
|
|
data-keyboard="false"
|
|
data-max-tags="<%= Constants::INVITE_USERS_LIMIT %>"
|
|
<%= "data-team-id=#{team.id}" if invite_to_team %>
|
|
<%= "data-team-role=#{role}" if type.in?(%w(invite_to_team_with_role invite_with_team_selector_and_role)) %>
|
|
>
|
|
<div class="modal-dialog" role="document">
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
|
<h4 class="modal-title">
|
|
<% if text_title %>
|
|
<%= text_title %>
|
|
<% else %>
|
|
<% if invite_to_team %>
|
|
<%= t('invite_users.to_team.title', team: team.name) %>
|
|
<% else %>
|
|
<%= t('invite_users.no_team.title') %>
|
|
<% end %>
|
|
<% end %>
|
|
</h4>
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
<div data-role="step-form">
|
|
<p>
|
|
<% if text_invite_heading %>
|
|
<%= text_invite_heading %>
|
|
<% else %>
|
|
<% if invite_to_team %>
|
|
<%= t('invite_users.to_team.heading', team: team.name) %>
|
|
<% else %>
|
|
<%= t('invite_users.no_team.heading') %>
|
|
<% end %>
|
|
<% end %>
|
|
</p>
|
|
|
|
<select class="emails-input" multiple data-role="tags-input" name="emails[]">
|
|
</select>
|
|
<br />
|
|
<em><%= t('invite_users.input_subtitle') %></em>
|
|
|
|
<% if current_user && type.in?(['invite_with_team_selector', 'invite_with_team_selector_and_role']) %>
|
|
<% # Only allow inviting to teams where user is admin %>
|
|
<% teams = current_user.teams
|
|
.joins(:user_teams)
|
|
.where('user_teams.role': UserTeam.roles[:admin])
|
|
.select { |team| can_invite_team_users?(team) } %>
|
|
<% if teams.any? %>
|
|
<div class="team-selector">
|
|
<div class="heading">
|
|
<input type="checkbox" data-role="team-selector-checkbox" />
|
|
<span><%= t('invite_users.invite_to_team_heading') %></span>
|
|
</div>
|
|
<%= select_tag('team-select',
|
|
options_for_select(teams.pluck(:name, :id)),
|
|
{ class: 'form-control selectpicker',
|
|
'data-role' => 'team-selector-dropdown',
|
|
disabled: 'disabled' }) %>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|
|
<% if ENV['ENABLE_RECAPTCHA'] == 'true' %>
|
|
<div id="recaptcha-service" class="g-recaptcha"
|
|
data-callback="recaptchaCallback"
|
|
data-sitekey=<%= ENV['RECAPTCHA_SITE_KEY'] %>></div>
|
|
<input type="hidden" id="recaptcha-invite-modal" value="">
|
|
<div class="form-group has-error hidden" id="recaptcha-error-msg" >
|
|
<span class="has-error help-block"></span>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
<div class="results-container" data-role="step-results" data-clear="true">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
<div data-role="step-form">
|
|
<button type="button" class="btn btn-secondary" data-dismiss="modal">
|
|
<%= t('general.cancel') %>
|
|
</button>
|
|
|
|
<!-- Invite buttons -->
|
|
<button type="button" class="btn btn-primary"
|
|
data-role="invite-btn" data-action="invite"
|
|
disabled="disabled">
|
|
<%= t('invite_users.invite_btn') %>
|
|
</button>
|
|
|
|
<div class="btn-group" data-role="invite-with-role-div">
|
|
<button type="button" class="btn btn-primary dropdown-toggle"
|
|
data-toggle="dropdown" data-id="invite-btn" aria-haspopup="true"
|
|
aria-expanded="false" data-role="invite-with-role-btn"
|
|
disabled="disabled">
|
|
<%= t('invite_users.invite_btn') %>
|
|
|
|
<span class="caret"></span>
|
|
</button>
|
|
<ul class="dropdown-menu">
|
|
<li>
|
|
<%= link_to t('invite_users.invite_guest'), '#', data: { action: 'invite', 'team-role' => 'guest', remote: true } %>
|
|
</li>
|
|
<li>
|
|
<%= link_to t('invite_users.invite_user'), '#', data: { action: 'invite', 'team-role' => 'normal_user', remote: true } %>
|
|
</li>
|
|
<li>
|
|
<%= link_to t('invite_users.invite_admin'), '#', data: { action: 'invite', 'team-role' => 'admin', remote: true } %>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div data-role="step-results">
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">
|
|
<%= t('general.close') %>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|