[28488] Fix creation of tickets in my page with me filter

Correctly replaces the me filter with the currently logged in user

https://community.openproject.com/wp/28488
pull/6694/head
Oliver Günther 6 years ago
parent e50bf2fafb
commit 94680619a0
No known key found for this signature in database
GPG Key ID: 88872239EB414F99
  1. 4
      frontend/src/app/components/user/current-user.service.ts
  2. 9
      frontend/src/app/components/wp-edit-form/work-package-filter-values.ts
  3. 4
      frontend/src/app/components/wp-inline-create/wp-inline-create.component.ts
  4. 4
      frontend/src/app/components/wp-new/wp-create.controller.ts
  5. 4
      frontend/src/app/modules/hal/resources/hal-resource.ts
  6. 84
      spec/features/my/assigned_to_me_embedded_table_spec.rb
  7. 8
      spec/support/pages/embedded_work_packages_table.rb
  8. 10
      spec/support/pages/work_packages_table.rb

@ -33,4 +33,8 @@ export class CurrentUserService {
public get isLoggedIn() { public get isLoggedIn() {
return jQuery('meta[name=current_user]').length; return jQuery('meta[name=current_user]').length;
} }
public get userId() {
return jQuery('meta[name=current_user]').data('id');
}
} }

@ -3,11 +3,12 @@ import {CollectionResource} from 'core-app/modules/hal/resources/collection-reso
import {FormResource} from 'core-app/modules/hal/resources/form-resource'; import {FormResource} from 'core-app/modules/hal/resources/form-resource';
import {WorkPackageChangeset} from './work-package-changeset'; import {WorkPackageChangeset} from './work-package-changeset';
import {QueryFilterInstanceResource} from 'core-app/modules/hal/resources/query-filter-instance-resource'; import {QueryFilterInstanceResource} from 'core-app/modules/hal/resources/query-filter-instance-resource';
import {all} from "@uirouter/core"; import {CurrentUserService} from "core-components/user/current-user.service";
export class WorkPackageFilterValues { export class WorkPackageFilterValues {
constructor(private changeset:WorkPackageChangeset, constructor(private currentUser:CurrentUserService,
private changeset:WorkPackageChangeset,
private filters:QueryFilterInstanceResource[], private filters:QueryFilterInstanceResource[],
private excluded:string[] = []) { private excluded:string[] = []) {
@ -63,6 +64,10 @@ export class WorkPackageFilterValues {
return value; return value;
} }
if (value instanceof HalResource && value.$href === '/api/v3/users/me' && this.currentUser.isLoggedIn) {
return value.$copy({ href: `/api/v3/users/${this.currentUser.userId}` });
}
return undefined; return undefined;
} }

@ -63,6 +63,7 @@ import {I18nService} from 'core-app/modules/common/i18n/i18n.service';
import {FocusHelperService} from 'core-app/modules/common/focus/focus-helper'; import {FocusHelperService} from 'core-app/modules/common/focus/focus-helper';
import {IWorkPackageEditingServiceToken} from "../wp-edit-form/work-package-editing.service.interface"; import {IWorkPackageEditingServiceToken} from "../wp-edit-form/work-package-editing.service.interface";
import {IWorkPackageCreateServiceToken} from "core-components/wp-new/wp-create.service.interface"; import {IWorkPackageCreateServiceToken} from "core-components/wp-new/wp-create.service.interface";
import {CurrentUserService} from "core-components/user/current-user.service";
@Component({ @Component({
selector: '[wpInlineCreate]', selector: '[wpInlineCreate]',
@ -99,6 +100,7 @@ export class WorkPackageInlineCreateComponent implements OnInit, OnChanges, OnDe
readonly I18n:I18nService, readonly I18n:I18nService,
readonly tableState:TableState, readonly tableState:TableState,
readonly wpCacheService:WorkPackageCacheService, readonly wpCacheService:WorkPackageCacheService,
readonly currentUser:CurrentUserService,
@Inject(IWorkPackageEditingServiceToken) protected wpEditing:WorkPackageEditingService, @Inject(IWorkPackageEditingServiceToken) protected wpEditing:WorkPackageEditingService,
@Inject(IWorkPackageCreateServiceToken) protected wpCreate:WorkPackageCreateService, @Inject(IWorkPackageCreateServiceToken) protected wpCreate:WorkPackageCreateService,
readonly wpTableColumns:WorkPackageTableColumnsService, readonly wpTableColumns:WorkPackageTableColumnsService,
@ -188,7 +190,7 @@ export class WorkPackageInlineCreateComponent implements OnInit, OnChanges, OnDe
const wp = this.currentWorkPackage = changeset.workPackage; const wp = this.currentWorkPackage = changeset.workPackage;
// Apply filter values // Apply filter values
const filter = new WorkPackageFilterValues(changeset, this.tableState.query.value!.filters); const filter = new WorkPackageFilterValues(this.currentUser, changeset, this.tableState.query.value!.filters);
filter.applyDefaultsFromFilters().then(() => { filter.applyDefaultsFromFilters().then(() => {
this.wpEditing.updateValue('new', changeset); this.wpEditing.updateValue('new', changeset);
this.wpCacheService.updateWorkPackage(this.currentWorkPackage!); this.wpCacheService.updateWorkPackage(this.currentWorkPackage!);

@ -48,6 +48,7 @@ import {
IWorkPackageEditingServiceToken IWorkPackageEditingServiceToken
} from "../wp-edit-form/work-package-editing.service.interface"; } from "../wp-edit-form/work-package-editing.service.interface";
import {IWorkPackageCreateServiceToken} from "core-components/wp-new/wp-create.service.interface"; import {IWorkPackageCreateServiceToken} from "core-components/wp-new/wp-create.service.interface";
import {CurrentUserService} from "core-app/components/user/current-user.service";
@Injectable() @Injectable()
@ -68,6 +69,7 @@ export class WorkPackageCreateController implements OnInit, OnDestroy {
readonly I18n:I18nService, readonly I18n:I18nService,
readonly titleService:OpTitleService, readonly titleService:OpTitleService,
readonly injector:Injector, readonly injector:Injector,
readonly currentUser:CurrentUserService,
protected wpNotificationsService:WorkPackageNotificationService, protected wpNotificationsService:WorkPackageNotificationService,
protected states:States, protected states:States,
@Inject(IWorkPackageCreateServiceToken) protected wpCreate:WorkPackageCreateService, @Inject(IWorkPackageCreateServiceToken) protected wpCreate:WorkPackageCreateService,
@ -153,7 +155,7 @@ export class WorkPackageCreateController implements OnInit, OnDestroy {
} }
return this.wpCreate.createNewTypedWorkPackage(stateParams.projectPath, type).then(changeset => { return this.wpCreate.createNewTypedWorkPackage(stateParams.projectPath, type).then(changeset => {
const filter = new WorkPackageFilterValues(changeset, this.wpTableFilters.current, ['type']); const filter = new WorkPackageFilterValues(this.currentUser, changeset, this.wpTableFilters.current, ['type']);
return filter.applyDefaultsFromFilters().then(() => changeset); return filter.applyDefaultsFromFilters().then(() => changeset);
}); });
} }

@ -112,10 +112,10 @@ export class HalResource {
* @param {HalResource} other * @param {HalResource} other
* @returns A HalResource with the identitical copied source of other. * @returns A HalResource with the identitical copied source of other.
*/ */
public $copy<T extends HalResource = HalResource>():T { public $copy<T extends HalResource = HalResource>(source:Object = {}):T {
let clone:HalResourceClass<T> = this.constructor as any; let clone:HalResourceClass<T> = this.constructor as any;
return new clone(this.injector, this.$plain(), this.$loaded, this.halInitializer, this.$halType); return new clone(this.injector, _.merge(this.$plain(), source), this.$loaded, this.halInitializer, this.$halType);
} }
public $plain():any { public $plain():any {

@ -0,0 +1,84 @@
#-- copyright
# OpenProject is a project management system.
# Copyright (C) 2012-2018 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-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.
#++
require 'spec_helper'
describe 'Assigned to me embedded query on my page', type: :feature, js: true do
let!(:type) { FactoryBot.create :type }
let!(:priority) { FactoryBot.create :default_priority }
let!(:project) { FactoryBot.create :project, types: [type] }
let!(:open_status) { FactoryBot.create :default_status }
let(:role) { FactoryBot.create(:role, permissions: %i[view_work_packages add_work_packages]) }
let(:user) do
FactoryBot.create(:user,
member_in_project: project,
member_through_role: role)
end
before do
login_as user
visit my_page_path
end
it 'can create a new ticket with correct me values (Regression test #28488)' do
expect(page).to have_selector('.widget-box--header-title', text: 'Work packages assigned to me')
embedded_table = Pages::EmbeddedWorkPackagesTable.new(find('#left'))
embedded_table.click_inline_create
subject_field = embedded_table.edit_field(nil, :subject)
subject_field.expect_active!
subject_field.set_value 'Assigned to me'
subject_field.save!
# Set project
project_field = embedded_table.edit_field(nil, :project)
project_field.expect_active!
project_field.set_value project.name
# Set type
type_field = embedded_table.edit_field(nil, :type)
type_field.expect_active!
type_field.set_value type.name
embedded_table.expect_notification(
message: 'Successful creation. Click here to open this work package in fullscreen view.'
)
wp = WorkPackage.last
expect(wp.subject).to eq('Assigned to me')
expect(wp.assigned_to_id).to eq(user.id)
embedded_table.expect_work_package_listed wp
end
end

@ -31,15 +31,15 @@ require 'support/pages/work_packages_table'
module Pages module Pages
class EmbeddedWorkPackagesTable < WorkPackagesTable class EmbeddedWorkPackagesTable < WorkPackagesTable
attr_reader :context attr_reader :container
def initialize(context, project = nil) def initialize(container, project = nil)
super(project) super(project)
@context = context @container = container
end end
def table_container def table_container
context.find('.work-package-table') container.find('.work-package-table')
end end
end end
end end

@ -112,8 +112,8 @@ module Pages
# there is a delay on travis where inline create can be clicked. # there is a delay on travis where inline create can be clicked.
sleep 3 sleep 3
find('.wp-inline-create--add-link').click container.find('.wp-inline-create--add-link').click
expect(page).to have_selector('.wp-inline-create-row', wait: 10) expect(container).to have_selector('.wp-inline-create-row', wait: 10)
end end
def create_wp_split_screen(type) def create_wp_split_screen(type)
@ -229,6 +229,12 @@ module Pages
".wp-row-#{work_package.id}" ".wp-row-#{work_package.id}"
end end
protected
def container
page
end
private private
def path def path

Loading…
Cancel
Save