All Projects → devlinb → react-native-simple-survey

devlinb / react-native-simple-survey

Licence: MIT license
Simple to use JSON based survey component for React Native

Programming Languages

javascript
184084 projects - #8 most used programming language
objective c
16641 projects - #2 most used programming language
Starlark
911 projects
java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to react-native-simple-survey

Qualtrics
Download ⬇️ Qualtrics survey data directly into R!
Stars: ✭ 151 (+169.64%)
Mutual labels:  survey
Angular Surveys
Angular survey / form builder inspired by Google Forms
Stars: ✭ 219 (+291.07%)
Mutual labels:  survey
QuestionnaireView
A simple view to be able to display question and various field (Radio, EditText, checkbox ) for answers
Stars: ✭ 34 (-39.29%)
Mutual labels:  survey
Wq
📱🌐📋 wq: a modular framework supporting web / native geographic data collection apps for mobile surveys and citizen science. Powered by Django REST Framework, Redux, React, and Material UI.
Stars: ✭ 182 (+225%)
Mutual labels:  survey
Survey Computer Vision
2020-2021年计算机视觉综述论文分方向整理
Stars: ✭ 207 (+269.64%)
Mutual labels:  survey
react-native-survey-monkey
React Native lib for Survey Monkey
Stars: ✭ 21 (-62.5%)
Mutual labels:  survey
Ml4code.github.io
Website for "A Survey of Machine Learning for Big Code and Naturalness"
Stars: ✭ 146 (+160.71%)
Mutual labels:  survey
SurveyKing
Make a better open source survey system.
Stars: ✭ 961 (+1616.07%)
Mutual labels:  survey
Bayesiandeeplearning Survey
Bayesian Deep Learning: A Survey
Stars: ✭ 214 (+282.14%)
Mutual labels:  survey
typeform-client
A friendlier Typeform Node.js API client
Stars: ✭ 15 (-73.21%)
Mutual labels:  survey
React Survey
A Survey System Created With React
Stars: ✭ 186 (+232.14%)
Mutual labels:  survey
Larapoll
A Laravel package to manage your polls
Stars: ✭ 189 (+237.5%)
Mutual labels:  survey
surveyjs vue quickstart
SurveyJS + Vue Quickstart Template
Stars: ✭ 96 (+71.43%)
Mutual labels:  survey
Srvyr
R package to add 'dplyr'-like Syntax for Summary Statistics of Survey Data
Stars: ✭ 163 (+191.07%)
Mutual labels:  survey
GeoNotes
A simple app to create georeferences notes.
Stars: ✭ 37 (-33.93%)
Mutual labels:  survey
Streetcomplete
Easy to use OpenStreetMap editor for Android
Stars: ✭ 2,456 (+4285.71%)
Mutual labels:  survey
osposurvey
Open Source Programs (OSPO) Survey
Stars: ✭ 66 (+17.86%)
Mutual labels:  survey
laravel-survey
Create and manage surveys within your Laravel app.
Stars: ✭ 146 (+160.71%)
Mutual labels:  survey
totalopenstation
Total Open Station downloads and exports survey data from your total station
Stars: ✭ 51 (-8.93%)
Mutual labels:  survey
FACIL
Framework for Analysis of Class-Incremental Learning with 12 state-of-the-art methods and 3 baselines.
Stars: ✭ 411 (+633.93%)
Mutual labels:  survey

react-native-simple-survey

TOC

Changes

About

Demo

Usage

Props

Callbacks

JSON Schema

Screenshots

Changes

3.0.0 - Breaking changes to API to fix inconsistency in orders parameters were being passed into callbacks.

  • BREAKING CHANGES
    • renderTextInput and renderNumericInput are passed placeholder as their third parameter, and onBlur as their fourth.
      • Previously renderTextInput was taking placeholder as its second parameter.
  • New Features
    • defaultValue for text and numeric inputs.
    • getAnswers() on a ref to grab whatever answers have been given so far.
  • documented onBlur for auto-advance of text and numeric input components
  • Added type fields for parameters in readme.
  • You can now pass in any object for questionText, since you have to render it anyway, have fun!
  • Updated ExampleApp to bring it in line with new features.

2.0.2 - When a default defaultSelection is set, the next and finish buttons are now properly enabled.

2.0.1 - Update README.md for NPM.

2.0 - Lots of new features!

  • autoAdvance is now supported on a per question basis for SelectionGroup and MultipleSelectionGroup
  • By default SelectionGroup and MultipleSelectionGroup items can be deselected, there is a new questionSettings field deselectionAllowed that can disable this behavior
  • SelectionGroup and MultipleSelectionGroup have a new questionSettings field defaultSelection, it is a single value for SelectionGroup and an array of numbers for MultipleSelectionGroup. The values in both cases are index(es) of element(s) that should be selected by default.

1.2.0 - MultipleSelectionGroup is now supported.

About

react-native-simple-survey is a super simple way to ask your user questions. Give it some JSON with questions and some callbacks to draw the UI and Simple Survey handles all state management for you, runs the user through your questions, and pops answers out at the end.

Demo

See a live demo at https://snack.expo.io/@devlinb/react-native-simple-survey-example-app

Usage

See the ExampleApp for a demonstration of all the features.

Feed it JSON such as

const survey = [
    {
        questionType: 'Info',
        questionText: 'Welcome to the React Native Simple Survey Example app! Tap next to continue'
    },
    {
        questionType: 'TextInput',
        questionText: 'Simple Survey supports free form text input',
        questionId: 'favoriteColor',
        placeholderText: 'Tell me your favorite color!',
    },
    {
        questionType: 'NumericInput',
        questionText: 'It also supports numeric input. Enter your favorite number here!',
        questionId: 'favoriteNumber',
        placeholderText: '',
    },
    {
        questionType: 'SelectionGroup',
        questionText: 'Simple Survey also has multiple choice questions. What is your favorite pet?',
        questionId: 'favoritePet',
        options: [
            {
                optionText: 'Dogs',
                value: 'dog'
            },
            {
                optionText: 'Cats',
                value: 'cat'
            },
            {
                optionText: 'Ferrets',
                value: 'ferret'
            },
        ]
    },
    {
        questionType: 'MultipleSelectionGroup',
        questionText:
            'Select two or three of your favorite foods!',
        questionId: 'favoriteFoods',
        questionSettings: {
            maxMultiSelect: 3,
            minMultiSelect: 2,
        },
        options: [
            {
                optionText: 'Sticky rice dumplings',
                value: 'sticky rice dumplings'
            },
            {
                optionText: 'Pad Thai',
                value: 'pad thai'
            },
            {
                optionText: 'Steak and Eggs',
                value: 'steak and eggs'
            },
            {
                optionText: 'Tofu',
                value: 'tofu'
            },
            {
                optionText: 'Ice cream!',
                value: 'ice crem'
            },
            {
                optionText: 'Injera',
                value: 'injera'
            },
            {
                optionText: 'Tamales',
                value: 'tamales'
            }
        ]
    },
];

Then use the component like this:

<SimpleSurvey
    survey={survey}
    containerStyle={styles.surveyContainer}
    selectionGroupContainerStyle={styles.selectionGroupContainer}
    navButtonContainerStyle={{ flexDirection: 'row', justifyContent: 'space-around' }}
    renderPrevious={this.renderPreviousButton.bind(this)}
    renderNext={this.renderNextButton.bind(this)}
    renderFinished={this.renderFinishedButton.bind(this)}
    renderQuestionText={this.renderQuestionText}
    renderSelector={this.renderButton.bind(this)}
    onSurveyFinished={(answers) => this.onSurveyFinished(answers)}
    onAnswerSubmitted={(answer) => this.onAnswerSubmitted(answer)}
    renderTextInput={this.renderTextBox}
    renderNumericInput={this.renderNumericInput}
    renderInfo={this.renderInfoText}
/>

Props

The below looks like a lot. To get started, you can copy/paste from the ExampleApp and change the styling. Swap out the default RN UI components for your own or for the ones in your favorite UI toolkit.

Prop Description
survey JSON formatted as show in Usage all valid fields are show in the example app, the schema is defined in JSON Schema
renderSelector Returns a component that is used to render the UI for multiple choice questions. Should be a UI component that supports single selection, such as a button or radio button. Other creative element types are also possible.
containerStyle Style object for the the SimpleSurvey's wrapping view
selectionGroupContainerStyle Style for the view that will wrap the selection group options, as rendered by renderSelector.
navButtonContainerStyle Wrapping view for the navigation buttons, previous, next, and finished. If not passed in, nav buttons will be wrapped by regular a View with no styling.
renderPrevious Function that returns a component following the specifications as laid out in the Callbacks section. Most often a some type of <TouchableOpacity> or your favorite flavor of <Button>
renderNext Function that returns a component following the specifications as laid out in the Callbacks section.
renderFinished Function that returns a component following the specifications as laid out in the Callbacks section.
renderQuestionText Function that returns a component following the specifications as laid out in the Callbacks section. Typically this will return a <Text> element
onSurveyFinished This function receives answers the user typed/selected as the parameter answers, see the Callbacks section.
onAnswerSubmitted This function is called everytime the user navigates to the next screen, see the Callbacks section.
renderTextInput Function that returns the component used for user text input, see the Callbacks section.
renderNumericInput Returns the component used for numeric input, see the Callbacks section.
renderInfo Returns the component used to render info screens, see the Callbacks section.

Props that you don't use are always optional. e.g. if you don't have numeric questions, no need to pass in renderNumericInput. Corrolary of this is that SimpleSurvey will throw exceptions if you do pass in a questionType: 'NumericInput' without having defined renderNumericInput.

Ref Functions

Function Description
getAnswers() Returns JSON for all answers the user has submitted so far. defaultValue for questions the user has seen but not proceeded past will also be returned. Unanswered questions will not be present in the JSON. Info questions are filtered from the returned JSON.

Callbacks

The majority of callbacks will return a component that Simple Survey then renders for you. This means you completely customize how Simple Survey looks. You don't even have to use buttons for your UI, Simple Survey handles the state management and lets you render whatever you want.

onSurveyFinished and onAnswerSubmitted are the only callbacks that don't return a component.

Navigation Callbacks

The props renderPrevious, renderNext, renderFinished all have the same form.

Parameter Type Description
onPress Callback (void) Must be called when this component is activated (tapped, swiped, clicked, etc)
enabled boolean Indicates if this component should be enabled.

The onPress equivalent (feel free to have fun, so long as the user indicates something) has to call the onPress lambda that is passed in. At its most boring this looks like

const renderNext = (onPress, enabled) => {
  return(<Button
    color={GREEN}
    onPress={onPress}
    disabled={!enabled}
    backgroundColor={GREEN}
    title={'Next'}
  />);
}

enabled tells you if the button should be enabled or not.

renderQuestionText

Must returns a component. This is the text shown above above each question.

Parameter Type Description
questionText string||object Typically text of the question as specified in the JSON for this question. Since this is passed into your own rendering function, feel free to define an object in your JSON for more advanced scenarios.

Sample usage

const renderQuestionText = (questionText) => {
    return (<Text>{questionText}</Text>); 
}

renderSelector

Must return a component. This is the UI element that will be shown for each option of a SelectionGroup and MultipleSelectionGroup, Buttons, radio buttons, sliders, whatever you want, so long as onPress gets called when the user has selected something.

Variable Type Description
data any A complete copy of the 'value' field defined in the JSON object for this SelectionGroup. See example below.
index number Index of this option in the array of options that was passed to the SelectionGroup. Useful as key on your component.
isSelected boolean Indicates if the user has selected this option.
onPress Callback (selection handler interface as defined in react-native-selection-group) Must be called when the user has selected this component as their choice.

Sample usage

const renderSelector = (data, index, isSelected, onPress) => {
  return (<Button
      title={data.optionText}
      onPress={onPress}
      color={isSelected ? GREEN : PURPLE}
      key={`button_${index}`}
  />);
}

onSurveyFinished

Called after the user activates the component passed in to renderFinished

Parameter Type Description
answers Array Array of JSON values as described below.

This is passed a JSON array of the form

[
{questionId: string, value: any},
{questionId: string, value: any},
// ...
]

where value is the answer the user selected or entered. Selection Group is more flexible, value is the entirity of the object passed into option, meaning Selection Group questions can actually do some pretty fun stuff. An example of this

{ 
  questionId: "favoritePet", 
  value: { 
    optionText: "Dogs",
    value: "dog"
  }
}

Navigation to leave or close out SimpleSurvey should go here.

Info questions are automatically removed from the returned array, only questions that have non-null answers will be returned. Questions with an assigned defaultValue in the JSON that the user has only viewed will also be returned.

onQuestionAnswered

Called after the user activates the renderNext component.

Parameter Type Description
answers string || object See description below

answer is the user input for Numeric and Text inputs, it is the entire Option object as specified in your JSON for a SelectionGroup.

As an example, from the sample JSON up above, if the user selected Dogs, onQuestionAnswered would receive

{ 
  optionText: "Dogs",
  value: "dog"
}

renderTextInput

Must return a component. Renders input component for questions of type TextInput.

Parameter Type Description
onChange Callback (string) Must be called for every character input by the user
value String Current value of this field
placeHolder String Placeholder text as indicated in the JSON, will be null if not specified in the JSON
onBlur Callback (void) Function to be called when the text input field is blurred, used for auto-advancing, not needed if you are not enabling autoadvance.

Example:

const renderTextInput = (onChange, value, placeholder, onBlur) {
  return (<TextInput
    onChangeText={text => onChange(text)}
    value={value}
    placeholder={placeholder}
    onBlur={onBlur}
  />);
}

See the ExampleApp for a better styled, more functional, example.

renderNumericInput

Must return a component. Renders input component for questions of type NumericInput.

Parameter Type Description
onChange Callback (string) Must be called for every character input by the user
value string Current value of this field, empty string if the field is empty
placeholder String Placeholder text as indicated in the JSON, will be null if not specified in the JSON
onBlur Callback (void) Function to be called when the numeric input field is blurred, used for auto-advancing, not needed if you are not using autoadvance.

Example:

const renderNumericInput = (onChange, value, placeholder, onBlur) {
  return (<TextInput 
    style={styles.numericInput}
    onChangeText={text => { onChange(text); }}
    underlineColorAndroid={'white'}
    placeholderTextColor={'rgba(184,184,184,1)'}
    placeholder={placeHolder}
    value={String(value)}
    keyboardType={'numeric'}
    maxLength={3}
    onBlur={onBlur}
  />);
}

renderInfo

Must return a component. Renders text on questionType: 'Info' Screens.

Parameter Description
infoText String as passed in the JSON field questionText for questionType: "Info"

Example:

const renderInfoText = (infoText) {
  return (<Text style={styles.infoText}>{infoText}</Text>);
}

JSON Schema

(in Typescript)

survey : Array<Info|TextInput|NumericInput|SelectionGroup|MultipleSelectionGroup>

interface Info: {
    questionType: "Info",
    questionText: string || object
}

interface TextInput: {
    questionType: "TextInput",
    questionText: string || object,
    questionId: string,
    placeholderText?: string,
    defaultValue?: string
}

interface NumericInput: {
    questionType: "NumericInput",
    questionText: string || object,
    questionId: string,
    placeholderText?: string || number,
    defaultValue?: string || number
}

interface SelectionGroupOption: {
    optionText: string,
    value: any
}

interface SelectionGroup: {
    questionType: "SelectionGroup",
    questionText: string || object,
    questionId: string,
    questionSettings: {
        autoAdvance: boolean,
        allowDeselection: boolean,
        defaultSelection: number,
    },
    options: SelectionGroupOption[]
    
}

interface MultipleSelectionGroup: {
    questionType: "MultipleSelectionGroup",
    questionText: string || object,
    questionId: string,
    questionSettings: {
        autoAdvance: boolean,
        allowDeselection: boolean,
        maxMultiSelect: number,
        minMultiSelect?: number,
        defaultSelection: Array<number>,
    },
    options: SelectionGroupOption[]
}

Screenshot

image

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].