mirror of
https://github.com/ansible/awx.git
synced 2026-05-16 13:57:39 -02:30
support survey choices in array format
This commit is contained in:
@@ -19,17 +19,17 @@ export default function SurveyQuestionAdd({ survey, updateSurvey }) {
|
|||||||
);
|
);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
let choices = '';
|
|
||||||
let defaultAnswers = '';
|
|
||||||
if (
|
if (
|
||||||
formData.type === 'multiselect' ||
|
formData.type === 'multiselect' ||
|
||||||
formData.type === 'multiplechoice'
|
formData.type === 'multiplechoice'
|
||||||
) {
|
) {
|
||||||
|
const choices = [];
|
||||||
|
let defaultAnswers = '';
|
||||||
formData.formattedChoices.forEach(({ choice, isDefault }, i) => {
|
formData.formattedChoices.forEach(({ choice, isDefault }, i) => {
|
||||||
choices =
|
choices.push(choice);
|
||||||
i === formData.formattedChoices.length - 1
|
// i === formData.formattedChoices.length - 1
|
||||||
? choices.concat(`${choice}`)
|
// ? choices.concat(`${choice}`)
|
||||||
: choices.concat(`${choice}\n`);
|
// : choices.concat(`${choice}\n`);
|
||||||
if (isDefault) {
|
if (isDefault) {
|
||||||
defaultAnswers =
|
defaultAnswers =
|
||||||
i === formData.formattedChoices.length - 1
|
i === formData.formattedChoices.length - 1
|
||||||
@@ -38,7 +38,7 @@ export default function SurveyQuestionAdd({ survey, updateSurvey }) {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
formData.default = defaultAnswers.trim();
|
formData.default = defaultAnswers.trim();
|
||||||
formData.choices = choices.trim();
|
formData.choices = choices;
|
||||||
}
|
}
|
||||||
delete formData.formattedChoices;
|
delete formData.formattedChoices;
|
||||||
const newSpec = survey?.spec ? survey.spec.concat(formData) : [formData];
|
const newSpec = survey?.spec ? survey.spec.concat(formData) : [formData];
|
||||||
|
|||||||
@@ -58,17 +58,14 @@ export default function SurveyQuestionEdit({ survey, updateSurvey }) {
|
|||||||
if (questionIndex === -1) {
|
if (questionIndex === -1) {
|
||||||
throw new Error('Question not found in spec');
|
throw new Error('Question not found in spec');
|
||||||
}
|
}
|
||||||
let choices = '';
|
|
||||||
let defaultAnswers = '';
|
|
||||||
if (
|
if (
|
||||||
submittedData.type === 'multiselect' ||
|
submittedData.type === 'multiselect' ||
|
||||||
submittedData.type === 'multiplechoice'
|
submittedData.type === 'multiplechoice'
|
||||||
) {
|
) {
|
||||||
|
const choices = [];
|
||||||
|
let defaultAnswers = '';
|
||||||
submittedData.formattedChoices.forEach(({ choice, isDefault }, i) => {
|
submittedData.formattedChoices.forEach(({ choice, isDefault }, i) => {
|
||||||
choices =
|
choices.push(choice);
|
||||||
i === submittedData.formattedChoices.length - 1
|
|
||||||
? choices.concat(`${choice}`)
|
|
||||||
: choices.concat(`${choice}\n`);
|
|
||||||
if (isDefault) {
|
if (isDefault) {
|
||||||
defaultAnswers =
|
defaultAnswers =
|
||||||
i === submittedData.formattedChoices.length - 1
|
i === submittedData.formattedChoices.length - 1
|
||||||
@@ -77,8 +74,9 @@ export default function SurveyQuestionEdit({ survey, updateSurvey }) {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
submittedData.default = defaultAnswers.trim();
|
submittedData.default = defaultAnswers.trim();
|
||||||
submittedData.choices = choices.trim();
|
submittedData.choices = choices;
|
||||||
}
|
}
|
||||||
|
delete submittedData.formattedChoices;
|
||||||
|
|
||||||
await updateSurvey([
|
await updateSurvey([
|
||||||
...survey.spec.slice(0, questionIndex),
|
...survey.spec.slice(0, questionIndex),
|
||||||
|
|||||||
@@ -120,8 +120,14 @@ function SurveyQuestionForm({
|
|||||||
new_question: !question,
|
new_question: !question,
|
||||||
};
|
};
|
||||||
if (question?.type === 'multiselect' || question?.type === 'multiplechoice') {
|
if (question?.type === 'multiselect' || question?.type === 'multiplechoice') {
|
||||||
const newQuestions = question.choices.split('\n').map((c, i) => {
|
const choices = Array.isArray(question.choices)
|
||||||
if (question.default.split('\n').includes(c)) {
|
? question.choices
|
||||||
|
: question.choices.split('\n');
|
||||||
|
const defaults = Array.isArray(question.default)
|
||||||
|
? question.default
|
||||||
|
: question.default.split('\n');
|
||||||
|
const formattedChoices = choices.map((c, i) => {
|
||||||
|
if (defaults.includes(c)) {
|
||||||
return { choice: c, isDefault: true, id: i };
|
return { choice: c, isDefault: true, id: i };
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -136,7 +142,7 @@ function SurveyQuestionForm({
|
|||||||
variable: question?.variable || '',
|
variable: question?.variable || '',
|
||||||
min: question?.min || 0,
|
min: question?.min || 0,
|
||||||
max: question?.max || 1024,
|
max: question?.max || 1024,
|
||||||
formattedChoices: newQuestions,
|
formattedChoices,
|
||||||
new_question: !question,
|
new_question: !question,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -115,6 +115,9 @@ function SurveyReorderModal({
|
|||||||
|
|
||||||
const defaultAnswer = (q) => {
|
const defaultAnswer = (q) => {
|
||||||
let component = null;
|
let component = null;
|
||||||
|
const choices = Array.isArray(q.choices)
|
||||||
|
? q.choices
|
||||||
|
: q.choices.split('\n');
|
||||||
switch (q.type) {
|
switch (q.type) {
|
||||||
case 'password':
|
case 'password':
|
||||||
component = (
|
component = (
|
||||||
@@ -162,10 +165,10 @@ function SurveyReorderModal({
|
|||||||
ouiaId={`survey-preview-multiSelect-${q.variable}`}
|
ouiaId={`survey-preview-multiSelect-${q.variable}`}
|
||||||
noResultsFoundText={t`No results found`}
|
noResultsFoundText={t`No results found`}
|
||||||
>
|
>
|
||||||
{q.choices.length > 0 &&
|
{choices.length > 0 &&
|
||||||
q.choices
|
choices.map((option) => (
|
||||||
.split('\n')
|
<SelectOption key={option} value={option} />
|
||||||
.map((option) => <SelectOption key={option} value={option} />)}
|
))}
|
||||||
</Select>
|
</Select>
|
||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user