Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 26 additions & 34 deletions src/consts/surveyQuestions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,15 @@ export const ArtistPreSurveyQuestions: SurveyDefinition = {
questions: [
{
id: "q1",
type: "range",
question: "I am more creative than ____% of humans.",
labels: { min: "0%", max: "100%" },
type: "likertScale",
question: "I consider myself a creative person.",
options: [
{ label: "Strongly Disagree", value: 1 },
{ label: "Disagree", value: 2 },
{ label: "Neutral", value: 3 },
{ label: "Agree", value: 4 },
{ label: "Strongly Agree", value: 5 },
],
required: true,
},
{
Expand All @@ -34,7 +40,7 @@ export const ArtistPreSurveyQuestions: SurveyDefinition = {
id: "section2",
title: "SPANE-B Pre-Survey Part.1 ",
description:
"Please think about what you are doing and experiencing right now. Then report how much you experienced each of the following feelings, using the scale below.",
"Please reflect on your current, overall emotional state. Indicate the extent to which you are experiencing each of the following feelings using the scale below.",
questions: [
{
id: "q3",
Expand Down Expand Up @@ -471,16 +477,11 @@ export const ArtistPostSurveyQuestions: SurveyDefinition = {
question:
"How much control did you have over the creative decisions that shaped the final product?",
options: [
{ label: " ", value: 1 },
{ label: " ", value: 2 },
{ label: " ", value: 3 },
{ label: " ", value: 4 },
{ label: " ", value: 5 },
{ label: " ", value: 6 },
{ label: " ", value: 7 },
{ label: " ", value: 8 },
{ label: " ", value: 9 },
{ label: " ", value: 10 },
{ label: "None", value: 1 },
{ label: "A little", value: 2 },
{ label: "Some", value: 3 },
{ label: "A lot", value: 4 },
{ label: "A great deal", value: 5 }
],
removeValues: true,
required: true,
Expand All @@ -492,16 +493,11 @@ export const ArtistPostSurveyQuestions: SurveyDefinition = {
question:
"How intentional were you about the creative decisions that you made?",
options: [
{ label: " ", value: 1 },
{ label: " ", value: 2 },
{ label: " ", value: 3 },
{ label: " ", value: 4 },
{ label: " ", value: 5 },
{ label: " ", value: 6 },
{ label: " ", value: 7 },
{ label: " ", value: 8 },
{ label: " ", value: 9 },
{ label: " ", value: 10 },
{ label: "Not at all", value: 1 },
{ label: "Slightly", value: 2 },
{ label: "Moderately", value: 3 },
{ label: "Very", value: 4 },
{ label: "Extremely", value: 5 }
],
removeValues: true,
doNotCollapse: true,
Expand All @@ -512,16 +508,11 @@ export const ArtistPostSurveyQuestions: SurveyDefinition = {
type: "likertScale",
question: "How much mental effort did you put into this work?",
options: [
{ label: " ", value: 1 },
{ label: " ", value: 2 },
{ label: " ", value: 3 },
{ label: " ", value: 4 },
{ label: " ", value: 5 },
{ label: " ", value: 6 },
{ label: " ", value: 7 },
{ label: " ", value: 8 },
{ label: " ", value: 9 },
{ label: " ", value: 10 },
{ label: "None", value: 1 },
{ label: "A little", value: 2 },
{ label: "Some", value: 3 },
{ label: "A lot", value: 4 },
{ label: "A great deal", value: 5 }
],
removeValues: true,
doNotCollapse: true,
Expand Down Expand Up @@ -583,6 +574,7 @@ export const ArtistPostSurveyQuestions: SurveyDefinition = {
"I was writing the poem and the artificial intelligence was assisting me",
"the artificial intelligence was writing the poem and I was assisting",
"the artificial intelligence and I contributed to the poem equally",
"I did not use the artificial intelligence tool",
],
required: true,
},
Expand Down