kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
113 lines
3.2 KiB
113 lines
3.2 KiB
#-- copyright
|
|
# OpenProject is a project management system.
|
|
# Copyright (C) 2012-2015 the OpenProject Foundation (OPF)
|
|
#
|
|
# 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-2013 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 doc/COPYRIGHT.rdoc for more details.
|
|
#++
|
|
|
|
require 'support/pages/page'
|
|
require 'support/work_packages/inline_edit_field'
|
|
|
|
module Pages
|
|
class WorkPackagesTable < Page
|
|
attr_reader :project
|
|
|
|
def initialize(project = nil)
|
|
@project = project
|
|
end
|
|
|
|
def expect_work_package_listed(work_package)
|
|
within(table_container) do
|
|
expect(page).to have_content(work_package.subject)
|
|
end
|
|
end
|
|
|
|
def click_inline_create
|
|
find('.wp-inline-create--add-link').click
|
|
expect(page).to have_selector('.wp--row.-new')
|
|
end
|
|
|
|
def open_split_view(work_package)
|
|
|
|
# Hover row to show split screen button
|
|
row_element = row(work_package)
|
|
row_element.hover
|
|
|
|
split_page = SplitWorkPackage.new(work_package, project)
|
|
|
|
row_element.find('.wp-table--details-link').click
|
|
|
|
split_page
|
|
end
|
|
|
|
def open_full_screen_by_doubleclick(work_package)
|
|
|
|
loading_indicator_saveguard
|
|
page.driver.browser.mouse.double_click(row(work_package).native)
|
|
|
|
FullWorkPackage.new(work_package)
|
|
end
|
|
|
|
def open_full_screen_by_button(work_package)
|
|
row(work_package).check(I18n.t('js.description_select_work_package',
|
|
id: work_package.id))
|
|
|
|
|
|
click_button(I18n.t('js.label_activate') + ' ' + I18n.t('js.button_show_view'))
|
|
|
|
FullWorkPackage.new(work_package)
|
|
end
|
|
|
|
def open_full_screen_by_link(work_package)
|
|
row(work_package).click_link(work_package.id)
|
|
end
|
|
|
|
def row(work_package)
|
|
table_container.find("#work-package-#{work_package.id}")
|
|
end
|
|
|
|
def edit_field(work_package, attribute)
|
|
context =
|
|
if work_package.nil?
|
|
table_container.find('.wp--row.-new')
|
|
else
|
|
row(work_package)
|
|
end
|
|
super(attribute, context)
|
|
end
|
|
|
|
private
|
|
|
|
def row_selector(work_package)
|
|
end
|
|
|
|
def path
|
|
project ? project_work_packages_path(project) : work_packages_path
|
|
end
|
|
|
|
def table_container
|
|
find('#content .work-package-table--container')
|
|
end
|
|
end
|
|
end
|
|
|