@elice/material-survey 1.240715.0 → 1.240716.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import type { EliceWysiwygEditorProps } from '@elice/wysiwyg';
3
+ export declare const MarkdownEditor: ({ value, onChange, ...props }: EliceWysiwygEditorProps) => React.JSX.Element;
@@ -0,0 +1,28 @@
1
+ 'use strict';
2
+
3
+ var tslib = require('tslib');
4
+ var React = require('react');
5
+ var reactUse = require('react-use');
6
+ var wysiwyg = require('@elice/wysiwyg');
7
+
8
+ const STATE_SYNC_DEBOUNCE_TIME = 50;
9
+ const MarkdownEditor = _a => {
10
+ var {
11
+ value,
12
+ onChange
13
+ } = _a,
14
+ props = tslib.__rest(_a, ["value", "onChange"]);
15
+ const [__value, __setValue] = React.useState(value);
16
+ reactUse.useDebounce(() => __setValue(value), STATE_SYNC_DEBOUNCE_TIME, [value]);
17
+ reactUse.useDebounce(() => {
18
+ if (__value !== value && typeof onChange === 'function') {
19
+ onChange(__value !== null && __value !== void 0 ? __value : '');
20
+ }
21
+ }, STATE_SYNC_DEBOUNCE_TIME, [__value]);
22
+ return React.createElement(wysiwyg.EliceWysiwygEditor, Object.assign({
23
+ value: value,
24
+ onChange: __setValue
25
+ }, props));
26
+ };
27
+
28
+ exports.MarkdownEditor = MarkdownEditor;
@@ -6,9 +6,14 @@ var React = require('react');
6
6
  var blocks = require('@elice/blocks');
7
7
  var designTokens = require('@elice/design-tokens');
8
8
  var markdown = require('@elice/markdown');
9
+ var wysiwyg = require('@elice/wysiwyg');
10
+ var styled = require('styled-components');
9
11
  var SurveyContentBox = require('../shared/SurveyContentBox.js');
10
12
  var MaterialSurveyContext = require('./context/MaterialSurveyContext.js');
11
13
 
14
+ const StyledMarkdownSSR = styled(markdown.MarkdownSSR).withConfig({
15
+ componentId: "sc-1b9l43w-0"
16
+ })(["", ""], wysiwyg.EliceWysiwygEditorTheme.resetMarkdownSSR);
12
17
  const MaterialSurveyInfo = () => {
13
18
  const {
14
19
  materialSurvey
@@ -34,7 +39,7 @@ const MaterialSurveyInfo = () => {
34
39
  height: '40px'
35
40
  }), React.createElement(blocks.Vspace, {
36
41
  height: 1
37
- }), materialSurvey ? React.createElement(markdown.MarkdownSSR, {
42
+ }), materialSurvey ? React.createElement(StyledMarkdownSSR, {
38
43
  children: materialSurvey.questionInfoList[0].questionDescription,
39
44
  dark: true,
40
45
  paddingx: 0,
@@ -6,9 +6,9 @@ var React = require('react');
6
6
  var reactHookForm = require('react-hook-form');
7
7
  var blocks = require('@elice/blocks');
8
8
  var intl = require('@elice/intl');
9
- var markdown = require('@elice/markdown');
10
9
  var types = require('@elice/types');
11
10
  var styled = require('styled-components');
11
+ var index = require('../markdown-editor/index.js');
12
12
  var randomId = require('./utils/randomId.js');
13
13
  var context = require('./context.js');
14
14
  var MaterialSurveyEditOptionSelect = require('./MaterialSurveyEditOptionSelect.js');
@@ -154,8 +154,7 @@ const MaterialSurveyEditContent = () => {
154
154
  name: "questionInfoList.0.questionDescription",
155
155
  render: ({
156
156
  field
157
- }) => React.createElement(markdown.MarkdownEditor, Object.assign({
158
- enableFooter: true,
157
+ }) => React.createElement(index.MarkdownEditor, Object.assign({
159
158
  placeholder: intl$1.formatMessage({
160
159
  id: 'content.description.placeholder'
161
160
  }),
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import type { EliceWysiwygEditorProps } from '@elice/wysiwyg';
3
+ export declare const MarkdownEditor: ({ value, onChange, ...props }: EliceWysiwygEditorProps) => React.JSX.Element;
@@ -0,0 +1,26 @@
1
+ import { __rest } from 'tslib';
2
+ import React from 'react';
3
+ import { useDebounce } from 'react-use';
4
+ import { EliceWysiwygEditor } from '@elice/wysiwyg';
5
+
6
+ const STATE_SYNC_DEBOUNCE_TIME = 50;
7
+ const MarkdownEditor = _a => {
8
+ var {
9
+ value,
10
+ onChange
11
+ } = _a,
12
+ props = __rest(_a, ["value", "onChange"]);
13
+ const [__value, __setValue] = React.useState(value);
14
+ useDebounce(() => __setValue(value), STATE_SYNC_DEBOUNCE_TIME, [value]);
15
+ useDebounce(() => {
16
+ if (__value !== value && typeof onChange === 'function') {
17
+ onChange(__value !== null && __value !== void 0 ? __value : '');
18
+ }
19
+ }, STATE_SYNC_DEBOUNCE_TIME, [__value]);
20
+ return React.createElement(EliceWysiwygEditor, Object.assign({
21
+ value: value,
22
+ onChange: __setValue
23
+ }, props));
24
+ };
25
+
26
+ export { MarkdownEditor };
@@ -2,9 +2,14 @@ import React from 'react';
2
2
  import { Flex, Text, Shimmer, Vspace } from '@elice/blocks';
3
3
  import { base } from '@elice/design-tokens';
4
4
  import { MarkdownSSR } from '@elice/markdown';
5
+ import { EliceWysiwygEditorTheme } from '@elice/wysiwyg';
6
+ import styled from 'styled-components';
5
7
  import SurveyContentBox from '../shared/SurveyContentBox.js';
6
8
  import { useMaterialSurveyState } from './context/MaterialSurveyContext.js';
7
9
 
10
+ const StyledMarkdownSSR = styled(MarkdownSSR).withConfig({
11
+ componentId: "sc-1b9l43w-0"
12
+ })(["", ""], EliceWysiwygEditorTheme.resetMarkdownSSR);
8
13
  const MaterialSurveyInfo = () => {
9
14
  const {
10
15
  materialSurvey
@@ -30,7 +35,7 @@ const MaterialSurveyInfo = () => {
30
35
  height: '40px'
31
36
  }), React.createElement(Vspace, {
32
37
  height: 1
33
- }), materialSurvey ? React.createElement(MarkdownSSR, {
38
+ }), materialSurvey ? React.createElement(StyledMarkdownSSR, {
34
39
  children: materialSurvey.questionInfoList[0].questionDescription,
35
40
  dark: true,
36
41
  paddingx: 0,
@@ -2,9 +2,9 @@ import React from 'react';
2
2
  import { useFormContext, Controller } from 'react-hook-form';
3
3
  import { FormInputVerticalLayout, Label, Input, Tooltip, Select, Vspace } from '@elice/blocks';
4
4
  import { useRawEliceIntl } from '@elice/intl';
5
- import { MarkdownEditor } from '@elice/markdown';
6
5
  import { enums } from '@elice/types';
7
6
  import styled from 'styled-components';
7
+ import { MarkdownEditor } from '../markdown-editor/index.js';
8
8
  import { createRandomId } from './utils/randomId.js';
9
9
  import { useMaterialSurveyEditContext } from './context.js';
10
10
  import OptionSelectOne from './MaterialSurveyEditOptionSelect.js';
@@ -151,7 +151,6 @@ const MaterialSurveyEditContent = () => {
151
151
  render: ({
152
152
  field
153
153
  }) => React.createElement(MarkdownEditor, Object.assign({
154
- enableFooter: true,
155
154
  placeholder: intl.formatMessage({
156
155
  id: 'content.description.placeholder'
157
156
  }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elice/material-survey",
3
- "version": "1.240715.0",
3
+ "version": "1.240716.1",
4
4
  "description": "User view and editing components of Elice material survey",
5
5
  "repository": "https://git.elicer.io/elice/frontend/library/elice-material",
6
6
  "license": "UNLICENSED",
@@ -34,6 +34,7 @@
34
34
  "@elice/material-shared-types": "*",
35
35
  "@elice/material-shared-utils": "*",
36
36
  "@elice/types": "^1",
37
+ "@elice/wysiwyg": "^1",
37
38
  "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
38
39
  "react-use": "^17.0.0",
39
40
  "styled-components": "^5.2.0"
@@ -52,9 +53,10 @@
52
53
  "@elice/icons-legacy": "npm:@elice/icons@0.230814.0",
53
54
  "@elice/intl": "0.240425.0-rc.2",
54
55
  "@elice/markdown": "^1.220815.0",
55
- "@elice/material-shared-types": "1.240715.0",
56
- "@elice/material-shared-utils": "1.240715.0",
56
+ "@elice/material-shared-types": "1.240716.1",
57
+ "@elice/material-shared-utils": "1.240716.1",
57
58
  "@elice/types": "^1.240619.0",
59
+ "@elice/wysiwyg": "1.240716.1",
58
60
  "@types/classnames": "^2.3.1",
59
61
  "@types/react": "~17.0.9",
60
62
  "@types/react-transition-group": "^4.4.4",
@@ -63,5 +65,5 @@
63
65
  "react-use": "^17.2.4",
64
66
  "styled-components": "^5.3.0"
65
67
  },
66
- "gitHead": "c379e8820a96c12637f75eab96edc18a06188009"
68
+ "gitHead": "241f783a1e8c8e274e5fd5ca8efb1a9c68a2e070"
67
69
  }