khunjeong-survey
v0.0.2
Published
React 설문 모듈입니다.
Readme
Survey Component
React 설문 모듈입니다.
설문 내용을 생성하는 Editor와 생성된 내용을 기반으로 동작하여 내용을 채워주는 Viewer가 포함되어 있습니다.

Installation
npm install khunjeong-survey
# or
yarn add khunjeong-survey
How to use?
import { useState } from 'react';
import { Editor, Viewer, EditorType } from 'khunjeong-survey';
const View = () => {
const [survey, setSurvey] = useState<EditorType.ISurveyResult>();
return (
<>
<Editor onSubmit={survey => setSurvey(survey)} />
{survey && (
<Viewer
survey={survey}
onSubmit={result => {
console.log(result);
}}
/>
)}
</>
);
};
export default View;@import url(https://cdn.syncfusion.com/ej2/material.css);Feature
Editor
| property | required | value | | ------------------- | -------- | ------------------------------------------ | | submitButtonOptions | N | { text: string; visible: boolean; } | | defaultValue | N | {}: EditorType.ISurveyResult | | onChange | N | (result: EditorType.ISurveyResult) => void | | onSubmit | N | (result: EditorType.ISurveyResult) => void |
Viewer
| property | required | value | | ------------------- | -------- | ------------------------------------------ | | survey | Y | EditorType.ISurveyResult | | submitButtonOptions | N | { text: string; visible: boolean; } | | onSubmit | N | (result: EditorType.ISurveyResult) => void |
