@codecademy/codebytes 1.0.10-alpha.e553ea803e.0 → 1.0.10-alpha.e7df7dd1a4.0
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.
- package/dist/MonacoEditor/index.js +26 -21
- package/dist/codeByteEditor.js +50 -42
- package/dist/drawers.js +80 -66
- package/dist/editor.js +46 -34
- package/dist/languageSelection.js +16 -12
- package/package.json +2 -2
|
@@ -6,6 +6,9 @@ import ReactMonacoEditor from '@monaco-editor/react';
|
|
|
6
6
|
import React, { useCallback, useRef } from 'react';
|
|
7
7
|
import ResizeObserver from 'react-resize-observer';
|
|
8
8
|
import { dark } from './theme';
|
|
9
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
10
|
+
import { Fragment as _Fragment } from "react/jsx-runtime";
|
|
11
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
9
12
|
export var SimpleMonacoEditor = function SimpleMonacoEditor(_ref) {
|
|
10
13
|
var value = _ref.value,
|
|
11
14
|
language = _ref.language,
|
|
@@ -16,27 +19,29 @@ export var SimpleMonacoEditor = function SimpleMonacoEditor(_ref) {
|
|
|
16
19
|
monaco.editor.defineTheme('dark', dark);
|
|
17
20
|
monaco.editor.setTheme('dark');
|
|
18
21
|
}, []);
|
|
19
|
-
return /*#__PURE__*/
|
|
20
|
-
|
|
21
|
-
|
|
22
|
+
return /*#__PURE__*/_jsxs(_Fragment, {
|
|
23
|
+
children: [/*#__PURE__*/_jsx(ResizeObserver, {
|
|
24
|
+
onResize: function onResize(_ref2) {
|
|
25
|
+
var _editorRef$current;
|
|
22
26
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
}
|
|
30
|
-
}), /*#__PURE__*/React.createElement(ReactMonacoEditor, {
|
|
31
|
-
onMount: editorWillMount,
|
|
32
|
-
onChange: onChange,
|
|
33
|
-
options: {
|
|
34
|
-
minimap: {
|
|
35
|
-
enabled: false
|
|
27
|
+
var height = _ref2.height,
|
|
28
|
+
width = _ref2.width;
|
|
29
|
+
(_editorRef$current = editorRef.current) === null || _editorRef$current === void 0 ? void 0 : _editorRef$current.layout({
|
|
30
|
+
height: height,
|
|
31
|
+
width: width
|
|
32
|
+
});
|
|
36
33
|
}
|
|
37
|
-
},
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
34
|
+
}), /*#__PURE__*/_jsx(ReactMonacoEditor, {
|
|
35
|
+
onMount: editorWillMount,
|
|
36
|
+
onChange: onChange,
|
|
37
|
+
options: {
|
|
38
|
+
minimap: {
|
|
39
|
+
enabled: false
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
theme: "vs-dark",
|
|
43
|
+
value: value,
|
|
44
|
+
language: language
|
|
45
|
+
})]
|
|
46
|
+
});
|
|
42
47
|
};
|
package/dist/codeByteEditor.js
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
import _styled from "@emotion/styled/base";
|
|
2
2
|
var _excluded = ["text", "language", "hideCopyButton", "snippetsBaseUrl", "onEdit", "onLanguageChange", "copyFormatter", "trackingData", "trackFirstEdit"];
|
|
3
3
|
|
|
4
|
-
function
|
|
4
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
5
|
+
|
|
6
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
7
|
+
|
|
8
|
+
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
5
9
|
|
|
6
10
|
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
7
11
|
|
|
@@ -29,6 +33,8 @@ import { trackClick } from './helpers';
|
|
|
29
33
|
import { useEverInView } from './helpers/useEverInView';
|
|
30
34
|
import { LanguageSelection } from './languageSelection';
|
|
31
35
|
import { trackUserImpression } from './libs/eventTracking';
|
|
36
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
37
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
32
38
|
var editorBaseStyles = system.css({
|
|
33
39
|
border: 1,
|
|
34
40
|
borderColor: 'gray-900',
|
|
@@ -91,51 +97,53 @@ export var CodeByteEditor = function CodeByteEditor(_ref) {
|
|
|
91
97
|
});
|
|
92
98
|
}
|
|
93
99
|
}, [everInView, trackingData]);
|
|
94
|
-
return /*#__PURE__*/
|
|
100
|
+
return /*#__PURE__*/_jsxs(EditorContainer, _objectSpread(_objectSpread({
|
|
95
101
|
bg: "black",
|
|
96
102
|
maxWidth: "43rem"
|
|
97
|
-
}, rest, {
|
|
103
|
+
}, rest), {}, {
|
|
98
104
|
overflow: "hidden",
|
|
99
|
-
ref: ref
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
language
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
105
|
+
ref: ref,
|
|
106
|
+
children: [/*#__PURE__*/_jsx(Box, {
|
|
107
|
+
borderBottom: 1,
|
|
108
|
+
borderColor: "gray-900",
|
|
109
|
+
py: 4,
|
|
110
|
+
pl: 8,
|
|
111
|
+
children: /*#__PURE__*/_jsx(IconButton, {
|
|
112
|
+
icon: FaviconIcon,
|
|
113
|
+
variant: "secondary",
|
|
114
|
+
href: "https://www.codecademy.com/",
|
|
115
|
+
target: "_blank",
|
|
116
|
+
rel: "noreferrer",
|
|
117
|
+
"aria-label": "visit codecademy.com",
|
|
118
|
+
onClick: function onClick() {
|
|
119
|
+
return trackClick('logo', trackingData);
|
|
120
|
+
}
|
|
121
|
+
})
|
|
122
|
+
}), language ? /*#__PURE__*/_jsx(Editor, {
|
|
123
|
+
language: language,
|
|
124
|
+
text: text,
|
|
125
|
+
hideCopyButton: hideCopyButton,
|
|
126
|
+
onChange: function onChange(newText) {
|
|
127
|
+
setText(newText);
|
|
128
|
+
onEdit === null || onEdit === void 0 ? void 0 : onEdit(newText, language);
|
|
129
|
+
|
|
130
|
+
if (trackFirstEdit && hasBeenEdited === false) {
|
|
131
|
+
setHasBeenEdited(true);
|
|
132
|
+
trackClick('edit', trackingData);
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
snippetsBaseUrl: snippetsBaseUrl,
|
|
136
|
+
copyFormatter: copyFormatter,
|
|
137
|
+
trackingData: trackingData
|
|
138
|
+
}) : /*#__PURE__*/_jsx(LanguageSelection, {
|
|
139
|
+
onChange: function onChange(newLanguage) {
|
|
140
|
+
var newText = text || (newLanguage ? helloWorld[newLanguage] : '');
|
|
141
|
+
setLanguage(newLanguage);
|
|
142
|
+
setText(newText);
|
|
143
|
+
trackClick('lang_select', trackingData);
|
|
144
|
+
onLanguageChange === null || onLanguageChange === void 0 ? void 0 : onLanguageChange(newText, newLanguage);
|
|
126
145
|
}
|
|
127
|
-
}
|
|
128
|
-
snippetsBaseUrl: snippetsBaseUrl,
|
|
129
|
-
copyFormatter: copyFormatter,
|
|
130
|
-
trackingData: trackingData
|
|
131
|
-
}) : /*#__PURE__*/React.createElement(LanguageSelection, {
|
|
132
|
-
onChange: function onChange(newLanguage) {
|
|
133
|
-
var newText = text || (newLanguage ? helloWorld[newLanguage] : '');
|
|
134
|
-
setLanguage(newLanguage);
|
|
135
|
-
setText(newText);
|
|
136
|
-
trackClick('lang_select', trackingData);
|
|
137
|
-
onLanguageChange === null || onLanguageChange === void 0 ? void 0 : onLanguageChange(newText, newLanguage);
|
|
138
|
-
}
|
|
146
|
+
})]
|
|
139
147
|
}));
|
|
140
148
|
};
|
|
141
149
|
export default CodeByteEditor;
|
package/dist/drawers.js
CHANGED
|
@@ -17,6 +17,9 @@ function _EMOTION_STRINGIFIED_CSS_ERROR__() { return "You have tried to stringif
|
|
|
17
17
|
import { FlexBox, IconButton } from '@codecademy/gamut';
|
|
18
18
|
import { ArrowChevronLeftIcon, ArrowChevronRightIcon } from '@codecademy/gamut-icons';
|
|
19
19
|
import React, { useState } from 'react';
|
|
20
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
21
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
22
|
+
import { Fragment as _Fragment } from "react/jsx-runtime";
|
|
20
23
|
|
|
21
24
|
var DrawerLabel = /*#__PURE__*/_styled("span", {
|
|
22
25
|
target: "e1keub6a2",
|
|
@@ -80,70 +83,81 @@ export var Drawers = function Drawers(_ref2) {
|
|
|
80
83
|
isRightOpen = true;
|
|
81
84
|
}
|
|
82
85
|
|
|
83
|
-
return /*#__PURE__*/
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
86
|
+
return /*#__PURE__*/_jsxs(_Fragment, {
|
|
87
|
+
children: [/*#__PURE__*/_jsxs(FlexBox, {
|
|
88
|
+
children: [/*#__PURE__*/_jsxs(Drawer, {
|
|
89
|
+
open: !isRightOpen,
|
|
90
|
+
alignItems: "center",
|
|
91
|
+
flexWrap: "nowrap",
|
|
92
|
+
textAlign: "left",
|
|
93
|
+
borderRight: 1,
|
|
94
|
+
borderColor: "gray-900",
|
|
95
|
+
px: 8,
|
|
96
|
+
children: [/*#__PURE__*/_jsx(IconButton, {
|
|
97
|
+
icon: LeftDrawerIcon,
|
|
98
|
+
variant: "secondary",
|
|
99
|
+
size: "small",
|
|
100
|
+
onClick: function onClick() {
|
|
101
|
+
return setOpen(function (state) {
|
|
102
|
+
return state === 'both' ? 'right' : 'both';
|
|
103
|
+
});
|
|
104
|
+
},
|
|
105
|
+
"aria-label": ariaLabelCodeButton,
|
|
106
|
+
"aria-controls": "code-drawer",
|
|
107
|
+
"aria-expanded": !isRightOpen
|
|
108
|
+
}), /*#__PURE__*/_jsx(DrawerLabel, {
|
|
109
|
+
id: "code-drawer-label",
|
|
110
|
+
children: "Code"
|
|
111
|
+
})]
|
|
112
|
+
}), /*#__PURE__*/_jsxs(Drawer, {
|
|
113
|
+
open: !isLeftOpen,
|
|
114
|
+
alignItems: "center",
|
|
115
|
+
flexWrap: "nowrap",
|
|
116
|
+
justifyContent: "flex-end",
|
|
117
|
+
px: 8,
|
|
118
|
+
children: [/*#__PURE__*/_jsx(DrawerLabel, {
|
|
119
|
+
id: "output-drawer-label",
|
|
120
|
+
children: "hello"
|
|
121
|
+
}), /*#__PURE__*/_jsx(IconButton, {
|
|
122
|
+
icon: RightDrawerIcon,
|
|
123
|
+
variant: "secondary",
|
|
124
|
+
size: "small",
|
|
125
|
+
onClick: function onClick() {
|
|
126
|
+
return setOpen(function (state) {
|
|
127
|
+
return state === 'both' ? 'left' : 'both';
|
|
128
|
+
});
|
|
129
|
+
},
|
|
130
|
+
"aria-label": ariaLabelOutputButton,
|
|
131
|
+
"aria-controls": "output-drawer",
|
|
132
|
+
"aria-expanded": !isLeftOpen
|
|
133
|
+
})]
|
|
134
|
+
})]
|
|
135
|
+
}), /*#__PURE__*/_jsxs(FlexBox, {
|
|
136
|
+
flexGrow: 1,
|
|
137
|
+
borderY: 1,
|
|
138
|
+
borderColor: "gray-900",
|
|
139
|
+
alignItems: "stretch",
|
|
140
|
+
overflow: "hidden",
|
|
141
|
+
children: [/*#__PURE__*/_jsx(Drawer, {
|
|
142
|
+
hideOnClose: true,
|
|
143
|
+
id: "code-drawer",
|
|
144
|
+
"aria-labelledby": "code-drawer-label",
|
|
145
|
+
open: !isRightOpen,
|
|
146
|
+
flexGrow: 0,
|
|
147
|
+
overflow: "hidden",
|
|
148
|
+
borderColor: "gray-900",
|
|
149
|
+
borderStyleRight: "solid",
|
|
150
|
+
borderWidthRight: "thin",
|
|
151
|
+
children: leftChild
|
|
152
|
+
}), /*#__PURE__*/_jsx(Drawer, {
|
|
153
|
+
hideOnClose: true,
|
|
154
|
+
id: "output-drawer",
|
|
155
|
+
"aria-labelledby": "output-drawer-label",
|
|
156
|
+
role: "region",
|
|
157
|
+
open: !isLeftOpen,
|
|
158
|
+
overflow: "hidden",
|
|
159
|
+
children: rightChild
|
|
160
|
+
})]
|
|
161
|
+
})]
|
|
162
|
+
});
|
|
149
163
|
};
|
package/dist/editor.js
CHANGED
|
@@ -29,6 +29,9 @@ import { postSnippet } from './api';
|
|
|
29
29
|
import { Drawers } from './drawers';
|
|
30
30
|
import { trackClick } from './helpers';
|
|
31
31
|
import { SimpleMonacoEditor } from './MonacoEditor';
|
|
32
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
33
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
34
|
+
import { Fragment as _Fragment } from "react/jsx-runtime";
|
|
32
35
|
|
|
33
36
|
var Output = /*#__PURE__*/_styled("pre", {
|
|
34
37
|
target: "e1lzxy8e1",
|
|
@@ -157,38 +160,47 @@ export var Editor = function Editor(_ref2) {
|
|
|
157
160
|
};
|
|
158
161
|
}();
|
|
159
162
|
|
|
160
|
-
return /*#__PURE__*/
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
163
|
+
return /*#__PURE__*/_jsxs(_Fragment, {
|
|
164
|
+
children: [/*#__PURE__*/_jsx(Drawers, {
|
|
165
|
+
leftChild: /*#__PURE__*/_jsx(SimpleMonacoEditor, {
|
|
166
|
+
value: text,
|
|
167
|
+
language: language,
|
|
168
|
+
onChange: onChange
|
|
169
|
+
}),
|
|
170
|
+
rightChild: /*#__PURE__*/_jsx(Output, {
|
|
171
|
+
hasError: status === 'error',
|
|
172
|
+
"aria-live": "polite",
|
|
173
|
+
children: output
|
|
174
|
+
})
|
|
175
|
+
}), /*#__PURE__*/_jsxs(FlexBox, {
|
|
176
|
+
justifyContent: hideCopyButton ? 'flex-end' : 'space-between',
|
|
177
|
+
pl: 8,
|
|
178
|
+
children: [!hideCopyButton ? /*#__PURE__*/_jsx(ToolTip, {
|
|
179
|
+
id: "codebyte-copied",
|
|
180
|
+
alignment: "top-right",
|
|
181
|
+
target: /*#__PURE__*/_jsxs(TextButton, {
|
|
182
|
+
variant: "secondary",
|
|
183
|
+
onClick: onCopyClick,
|
|
184
|
+
onBlur: function onBlur() {
|
|
185
|
+
return setIsCodeByteCopied(false);
|
|
186
|
+
},
|
|
187
|
+
"data-testid": "copy-codebyte-btn",
|
|
188
|
+
children: [/*#__PURE__*/_jsx(CopyIconStyled, {
|
|
189
|
+
"aria-hidden": "true"
|
|
190
|
+
}), " Copy Codebyte"]
|
|
191
|
+
}),
|
|
192
|
+
children: isCodeByteCopied ? /*#__PURE__*/_jsx("span", {
|
|
193
|
+
"data-testid": "copy-confirmation-tooltip",
|
|
194
|
+
role: "alert",
|
|
195
|
+
children: "Copied!"
|
|
196
|
+
}) : /*#__PURE__*/_jsx("span", {
|
|
197
|
+
"data-testid": "copy-prompt-tooltip",
|
|
198
|
+
children: "Copy to your clipboard"
|
|
199
|
+
})
|
|
200
|
+
}) : null, /*#__PURE__*/_jsx(FillButton, {
|
|
201
|
+
onClick: handleSubmit,
|
|
202
|
+
children: status === 'waiting' ? /*#__PURE__*/_jsx(Spinner, {}) : 'Run'
|
|
203
|
+
})]
|
|
204
|
+
})]
|
|
205
|
+
});
|
|
194
206
|
};
|
|
@@ -2,21 +2,25 @@ import { Select, Text } from '@codecademy/gamut';
|
|
|
2
2
|
import { ColorMode } from '@codecademy/gamut-styles';
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { LanguageOptions } from './consts';
|
|
5
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
6
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
5
7
|
export var LanguageSelection = function LanguageSelection(_ref) {
|
|
6
8
|
var _onChange = _ref.onChange;
|
|
7
|
-
return /*#__PURE__*/
|
|
9
|
+
return /*#__PURE__*/_jsxs(ColorMode, {
|
|
8
10
|
mode: "dark",
|
|
9
11
|
flex: 1,
|
|
10
12
|
px: 16,
|
|
11
|
-
pt: 48
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
13
|
+
pt: 48,
|
|
14
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
15
|
+
mb: 16,
|
|
16
|
+
children: "Which language do you want to code in?"
|
|
17
|
+
}), /*#__PURE__*/_jsx(Select, {
|
|
18
|
+
id: "language-select",
|
|
19
|
+
"aria-label": "Select a language",
|
|
20
|
+
options: LanguageOptions,
|
|
21
|
+
onChange: function onChange(e) {
|
|
22
|
+
return _onChange(e.target.value);
|
|
23
|
+
}
|
|
24
|
+
})]
|
|
25
|
+
});
|
|
22
26
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codecademy/codebytes",
|
|
3
3
|
"description": "Codebytes Editor",
|
|
4
|
-
"version": "1.0.10-alpha.
|
|
4
|
+
"version": "1.0.10-alpha.e7df7dd1a4.0",
|
|
5
5
|
"author": "Codecademy Engineering <dev@codecademy.com>",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@codecademy/tracking": "^1.0.7",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"dist/**/[A-Z]**/[A-Z]*.js",
|
|
40
40
|
"dist/**/[A-Z]**/index.js"
|
|
41
41
|
],
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "61a0197c464694724746d106b4c490d15a273794"
|
|
43
43
|
}
|