Skip to content

Commit f4280bc

Browse files
committed
Adds support to multi value fields
1 parent dea0e61 commit f4280bc

File tree

4 files changed

+29
-7
lines changed

4 files changed

+29
-7
lines changed

app/models/types/pattern_resolver.rb

+2
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ def stringify(value)
5656
case value
5757
when Date, Time, DateTime
5858
value.strftime("%Y-%m-%d")
59+
when Array
60+
value.join(", ")
5961
when NilClass
6062
"NA"
6163
else

app/models/types/patterns/token_property_mapper.rb

+1-3
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ class TokenPropertyMapper
3737
context.public_send(key.to_sym)
3838
end.curry
3939

40-
# Parent ID <- Is tagged as Parent
41-
4240
TOKEN_PROPERTY_MAP = IceNine.deep_freeze(
4341
{
4442
id: { fn: ->(wp) { wp.id }, label: -> { WorkPackage.human_attribute_name(:id) } },
@@ -118,7 +116,7 @@ def work_package_cfs_for(type)
118116
end
119117

120118
def all_work_package_cfs
121-
WorkPackageCustomField.where(multi_value: false).where.not(field_format: %w[text bool link empty]).order(:name)
119+
WorkPackageCustomField.where.not(field_format: %w[text bool link empty]).order(:name)
122120
end
123121

124122
def project_attributes

spec/models/types/pattern_resolver_spec.rb

+12-3
Original file line numberDiff line numberDiff line change
@@ -61,23 +61,32 @@
6161

6262
context "when the pattern has custom fields" do
6363
let(:custom_field) { create(:string_wp_custom_field) }
64-
let(:type) { create(:type, custom_fields: [custom_field]) }
65-
let(:project) { create(:project, types: [type], work_package_custom_fields: [custom_field]) }
64+
let(:multi_value_field) { create(:multi_list_wp_custom_field) }
65+
let(:type) { create(:type, custom_fields: [custom_field, multi_value_field]) }
66+
let(:project) { create(:project, types: [type], work_package_custom_fields: [custom_field, multi_value_field]) }
6667
let(:project_custom_field) { create(:project_custom_field, projects: [project], field_format: "string") }
6768

6869
let(:subject_pattern) do
6970
"{{project_custom_field_#{project_custom_field.id}}} A custom field value: {{custom_field_#{custom_field.id}}}"
7071
end
7172

7273
let(:work_package) do
73-
create(:work_package, type:, project:, custom_values: { custom_field.id => "Important Information" })
74+
create(:work_package, type:, project:,
75+
custom_values: { custom_field.id => "Important Information",
76+
multi_value_field.id => multi_value_field.possible_values.take(2) })
7477
end
7578

7679
before do
7780
project.public_send :"custom_field_#{project_custom_field.id}=", "PROSPEC"
7881
project.save
7982
end
8083

84+
it "multi value fields are joined by comma" do
85+
subject_pattern = "MCF: {{custom_field_#{multi_value_field.id}}}"
86+
resolver = described_class.new(subject_pattern)
87+
expect(resolver.resolve(work_package)).to eq("MCF: A, B")
88+
end
89+
8190
it "resolves the pattern" do
8291
User.current = SystemUser.first
8392

spec/models/types/patterns/token_property_mapper_spec.rb

+14-1
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,16 @@
5353
create(:string_wp_custom_field).tap do |custom_field|
5454
project.work_package_custom_fields << custom_field
5555
work_package.type.custom_fields << custom_field
56+
end
57+
end
58+
59+
shared_let(:mult_list_custom_field) do
60+
create(:multi_list_wp_custom_field).tap do
61+
project.work_package_custom_fields << it
62+
work_package.type.custom_fields << it
5663

57-
create(:work_package_custom_value, custom_field:, customized: work_package, value: "test")
64+
work_package.send(:"custom_field_#{it.id}=", it.possible_values.take(2))
65+
work_package.save
5866
end
5967
end
6068

@@ -65,6 +73,11 @@
6573
end
6674
end
6775

76+
it "multi value fields are supported" do
77+
function = described_class.new.fetch :"custom_field_#{mult_list_custom_field.id}"
78+
expect(function.call(work_package)).to eq(%w[A B])
79+
end
80+
6881
it "returns all possible tokens" do
6982
cf = string_custom_field
7083
tokens = described_class.new.tokens_for_type(work_package.type)

0 commit comments

Comments
 (0)