You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I have a behaviours script that will hide options in a multi-select field based upon what component is selected.
My question is can I generate a map of options if two components or more are selected? (the third else if statement is my attempt ;( )
Below is the part of the code I need help on:
if (componentImpl?.getName()?.equals("component1")) {
def optionsMap = options.findAll {
it.value in ["option4","option6"] // list of options you want to show
}.collectEntries {
[
(it.optionId.toString()): it.value
]
}
selectList.setFieldOptions(optionsMap)
}
else if (componentImpl?.getName()?.equals("Component2")) {
def optionsMap = options.findAll {
it.value in ["option1","option2","option3","option4"] // list of options you want to show
}.collectEntries {
[
(it.optionId.toString()): it.value
]
}
selectList.setFieldOptions(optionsMap)
}
else if ((componentImpl?.getName()?.equals("Component2")) && (componentImpl?.getName()?.equals("component1"))){
def optionsMap = options.findAll {
it.value in ["option1","option2","option3","option4","option4","option6"] // list of options you want to show
}.collectEntries {
[
(it.optionId.toString()): it.value
]
}
selectList.setFieldOptions(optionsMap)
}
Try this logic on the last else if: componentImpl?.size()>1
This is assuming that the componentImpl holds the actual value of the Component System Field as an array.
What if you have more than 2 components and they have different options in the select list? The example would definitely work for two components, but not sure it would work with more than 2.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I would create multiple Lists (groovy object) to solve this. The first would be a cumulative List of options that will ultimately be rendered.
The other Lists would be options for each Component -- assuming they all could bring in different available options. Then, I would iterate through each Component entity value and use a Switch Statement to add the Component's option List if applicable to my cumulative List. At the end, toss out duplicates from your cumulative List. And eventually that cumulative List as my options to be displayed.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.