#-- copyright # OpenProject is an open source project management software. # Copyright (C) 2012-2020 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. # # OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: # Copyright (C) 2006-2017 Jean-Philippe Lang # Copyright (C) 2010-2013 the ChiliProject Team # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # See docs/COPYRIGHT.rdoc for more details. #++ module Components module WorkPackages class Columns include Capybara::DSL include RSpec::Matchers include ::Components::NgSelectAutocompleteHelpers attr_accessor :trigger_parent def initialize(trigger_parent = nil) self.trigger_parent = trigger_parent end def column_autocompleter find('.columns-modal--content .draggable-autocomplete--input') end def close_autocompleter find('.columns-modal--content .draggable-autocomplete--input input').send_keys :escape end def column_item(name) find('.draggable-autocomplete--item', text: name) end def expect_column_not_available(name) modal_open? or open_modal column_autocompleter.click expect(page).to have_no_selector('.ng-option', text: name, visible: :all) close_autocompleter end def expect_column_available(name) modal_open? or open_modal column_autocompleter.click expect(page).to have_selector('.ng-option', text: name, visible: :all) close_autocompleter end def add(name, save_changes: true) modal_open? or open_modal select_autocomplete column_autocompleter, results_selector: '.ng-dropdown-panel-items', query: name apply if save_changes end def remove(name, save_changes: true) modal_open? or open_modal within_modal do container = column_item(name) container.find('.draggable-autocomplete--remove-item').click end apply if save_changes end def expect_checked(name) within_modal do expect(page).to have_selector('.draggable-autocomplete--item', text: name) end end def uncheck_all(save_changes: true) modal_open? or open_modal within_modal do expect(page).to have_selector('.draggable-autocomplete--item', minimum: 1) page.all('.draggable-autocomplete--remove-item').each do |el| el.click sleep 1 end end apply if save_changes end def apply @opened = false click_button('Apply') end def open_modal @opened = true ::Components::WorkPackages::TableConfigurationModal.new(trigger_parent).open_and_switch_to 'Columns' end def assume_opened @opened = true end private def within_modal page.within('.wp-table--configuration-modal') do yield end end def modal_open? !!@opened end end end end