mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-03-03 19:24:48 +08:00
Change behavior of repository table loading on state change [SCI-8637] (#5712)
This commit is contained in:
parent
a483699d73
commit
0d37011bba
3 changed files with 34 additions and 4 deletions
|
@ -410,6 +410,35 @@ var RepositoryDatatable = (function(global) {
|
|||
});
|
||||
}
|
||||
|
||||
function initRepositoryViewSwitcher() {
|
||||
const viewSwitch = $('.view-switch');
|
||||
const repositoryShow = $('.repository-show');
|
||||
const stateViewSwitchBtnName = $('.state-view-switch-btn-name');
|
||||
const selectedSwitchOptionClass = 'form-dropdown-state-item prevent-shrink';
|
||||
|
||||
function switchView(event, activeClass, inactiveClass) {
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
|
||||
repositoryShow.removeClass(inactiveClass).addClass(activeClass);
|
||||
|
||||
$(`.view-switch-${inactiveClass} a`).removeClass(selectedSwitchOptionClass);
|
||||
$(`.view-switch-${activeClass} a`).addClass(selectedSwitchOptionClass);
|
||||
|
||||
stateViewSwitchBtnName.text($(`.view-switch-${activeClass}`).text());
|
||||
viewSwitch.removeClass('open');
|
||||
RepositoryDatatable.reload();
|
||||
}
|
||||
|
||||
viewSwitch.on('click', '.view-switch-archived', function(event) {
|
||||
switchView(event, 'archived', 'active');
|
||||
});
|
||||
|
||||
viewSwitch.on('click', '.view-switch-active', function(event) {
|
||||
switchView(event, 'active', 'archived');
|
||||
});
|
||||
}
|
||||
|
||||
function initExportActions() {
|
||||
$(document).on('click', '#exportRepositoriesButton', function(e) {
|
||||
e.preventDefault();
|
||||
|
@ -778,6 +807,7 @@ var RepositoryDatatable = (function(global) {
|
|||
initSaveButton();
|
||||
initCancelButton();
|
||||
initBSTooltips();
|
||||
initRepositoryViewSwitcher();
|
||||
DataTableHelpers.initLengthAppearance($(TABLE_ID).closest('.dataTables_wrapper'));
|
||||
|
||||
$('.dataTables_filter').addClass('hidden');
|
||||
|
|
|
@ -60,8 +60,8 @@
|
|||
disabled: @repository.archived?,
|
||||
switchable: true,
|
||||
archived: params[:archived] || @repository.archived?,
|
||||
active_url: repository_path(@repository),
|
||||
archived_url: repository_path(@repository, archived: true),
|
||||
active_url: nil,
|
||||
archived_url: nil
|
||||
} %>
|
||||
<% end %>
|
||||
</div>
|
||||
|
|
|
@ -5,12 +5,12 @@
|
|||
</div>
|
||||
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="viewSwitchButton">
|
||||
<% if switchable %>
|
||||
<li>
|
||||
<li class="view-switch-active">
|
||||
<%= link_to active_url, class: "#{ 'form-dropdown-state-item prevent-shrink' unless archived }" do %>
|
||||
<%= t('toolbar.active_state') %>
|
||||
<% end %>
|
||||
</li>
|
||||
<li>
|
||||
<li class="view-switch-archived">
|
||||
<%= link_to archived_url, class: "#{ 'form-dropdown-state-item prevent-shrink' if archived }" do %>
|
||||
<%= t('toolbar.archived_state') %>
|
||||
<% end %>
|
||||
|
|
Loading…
Reference in a new issue