Skip to content

Commit

Permalink
Merge pull request opf#17258 from opf/bug/59572-hierarchy-items-not-c…
Browse files Browse the repository at this point in the history
…orrectly-displayed-if-custom-field-is-shown-in-wp-table

[#59572] fixed rendering of hierarchy values in wp table views
  • Loading branch information
Kharonus authored Nov 27, 2024
2 parents 90bf7d3 + 556fe4a commit b5dac41
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/models/custom_value/hierarchy_strategy.rb
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ def ar_object(value)
item = CustomField::Hierarchy::Item.find_by(id: value.to_s)
if item.nil?
"#{value} #{I18n.t(:label_not_found)}"
elsif item.short.present?
"#{item.label} (#{item.short})"
else
item.label
end
Expand Down
35 changes: 35 additions & 0 deletions frontend/src/app/core/state/is-array-of.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
//-- copyright
// OpenProject is an open source project management software.
// Copyright (C) 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-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 COPYRIGHT and LICENSE files for more details.
//++

export default function isArrayOf<T>(array:unknown, type:new (...args:never[]) => T):array is T[] {
if (!Array.isArray(array)) {
return false;
}

return array.every((item):item is T => item instanceof type);
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,22 @@
//++

import { DisplayField } from 'core-app/shared/components/fields/display/display-field.module';
import { HalResource } from 'core-app/features/hal/resources/hal-resource';
import isArrayOf from 'core-app/core/state/is-array-of';

export class TextDisplayField extends DisplayField {
public get valueString():string {
// render a text representation for the assigned attribute, independent of the attribute being a resource,
// an array of resources or a single text value.

if (this.value instanceof HalResource) {
return this.value.name;
}

if (isArrayOf(this.value, HalResource)) {
return this.value.map((r) => r.name).join(', ');
}

return this.value as string;
}
}

0 comments on commit b5dac41

Please sign in to comment.