@codecademy/codebytes 0.1.1-alpha.db68a2.0 → 0.2.1-alpha.1ed659.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/CHANGELOG.md CHANGED
@@ -3,7 +3,7 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- ### [0.1.1-alpha.db68a2.0](https://github.com/Codecademy/client-modules/compare/@codecademy/codebytes@0.1.0...@codecademy/codebytes@0.1.1-alpha.db68a2.0) (2021-12-21)
6
+ ### [0.2.1-alpha.1ed659.0](https://github.com/Codecademy/client-modules/compare/@codecademy/codebytes@0.2.0...@codecademy/codebytes@0.2.1-alpha.1ed659.0) (2022-01-11)
7
7
 
8
8
  **Note:** Version bump only for package @codecademy/codebytes
9
9
 
@@ -11,6 +11,15 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
11
11
 
12
12
 
13
13
 
14
+ ## [0.2.0](https://github.com/Codecademy/client-modules/compare/@codecademy/codebytes@0.1.0...@codecademy/codebytes@0.2.0) (2022-01-04)
15
+
16
+
17
+ ### Features
18
+
19
+ * **Codebytes:** add editor and drawers disc 351 ([#14](https://github.com/Codecademy/client-modules/issues/14)) ([e84e265](https://github.com/Codecademy/client-modules/commit/e84e265e4cf4bf8360830ebf2dbea930ab503c9c))
20
+
21
+
22
+
14
23
  ## 0.1.0 (2021-12-17)
15
24
 
16
25
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@codecademy/codebytes",
3
3
  "description": "Codebytes Code Editor",
4
- "version": "0.1.1-alpha.db68a2.0",
4
+ "version": "0.2.1-alpha.1ed659.0",
5
5
  "author": "Codecademy Engineering <dev@codecademy.com>",
6
6
  "sideEffects": [
7
7
  "**/*.css",
@@ -23,8 +23,13 @@
23
23
  "@codecademy/gamut": "*",
24
24
  "@codecademy/gamut-icons": "*",
25
25
  "@codecademy/gamut-styles": "*",
26
+ "@codecademy/variance": "*",
26
27
  "@emotion/react": "^11.4.0",
27
- "@emotion/styled": "^11.3.0"
28
+ "@emotion/styled": "^11.3.0",
29
+ "@loadable/component": "^5.13.1",
30
+ "@monaco-editor/react": "4.3.1",
31
+ "monaco-editor": ">= 0.25.0 < 1",
32
+ "react-resize-observer": "1.1.1"
28
33
  },
29
34
  "scripts": {
30
35
  "verify": "tsc --noEmit",
@@ -38,10 +43,12 @@
38
43
  "devDependencies": {
39
44
  "@emotion/jest": "^11.3.0",
40
45
  "@testing-library/dom": "^7.31.2",
41
- "@testing-library/react": "^11.0.4"
46
+ "@testing-library/react": "^11.0.4",
47
+ "@types/loadable__component": "^5.13.2",
48
+ "monaco-editor-webpack-plugin": "1.9.1"
42
49
  },
43
50
  "publishConfig": {
44
51
  "access": "public"
45
52
  },
46
- "gitHead": "0418b8a6fda0efc860f1b0f454957fca092213ea"
53
+ "gitHead": "5c0a6862f2dd7bfdddcb8dea391effd169be29bc"
47
54
  }
@@ -0,0 +1,54 @@
1
+ // DO NOT CHANGE ANYTHING HERE
2
+ // This file is part of the Codebytes MVP and only includes basic configuration around theming for the SimpleMonacoEditor component
3
+ // We are working on a monaco package in client-modules that has more configuration around themes and languages
4
+ // Monaco as a shared package RFC https://www.notion.so/codecademy/Monaco-editor-as-a-shared-package-1f4484db165b4abc8394c3556451ef6a
5
+
6
+ import { colors, editorColors } from '@codecademy/gamut-styles';
7
+
8
+ const darkTheme = {
9
+ blue: editorColors.blue,
10
+ deepPurple: editorColors.deepPurple,
11
+ gray: editorColors.gray,
12
+ green: editorColors.green,
13
+ orange: editorColors.orange,
14
+ purple: editorColors.purple,
15
+ red: editorColors.red,
16
+ white: colors.white,
17
+ yellow: editorColors.yellow,
18
+ };
19
+
20
+ export const syntax = {
21
+ attribute: darkTheme.green,
22
+ annotation: darkTheme.red,
23
+ atom: darkTheme.deepPurple,
24
+ basic: darkTheme.white,
25
+ comment: darkTheme.gray,
26
+ constant: darkTheme.orange,
27
+ decoration: darkTheme.red,
28
+ invalid: darkTheme.red,
29
+ key: darkTheme.blue,
30
+ keyword: darkTheme.purple,
31
+ number: darkTheme.red,
32
+ operator: darkTheme.red,
33
+ predefined: darkTheme.white,
34
+ property: darkTheme.red,
35
+ regexp: darkTheme.green,
36
+ string: darkTheme.yellow,
37
+ tag: darkTheme.red,
38
+ text: darkTheme.orange,
39
+ value: darkTheme.yellow,
40
+ variable: darkTheme.green,
41
+ };
42
+
43
+ export const ui = {
44
+ background: '#211E2F',
45
+ text: darkTheme.white,
46
+ indent: {
47
+ active: '#393b41',
48
+ inactive: '#494b51',
49
+ },
50
+ };
51
+
52
+ export type SyntaxColors = typeof syntax;
53
+
54
+ export type UIColors = typeof ui;
@@ -0,0 +1,59 @@
1
+ // DO NOT CHANGE ANYTHING HERE
2
+ // This component is part of the Codebytes MVP and only includes basic configuration around theming
3
+ // We are working on a monaco package in client-modules that has more configuration around themes and languages
4
+ // Monaco as a shared package RFC https://www.notion.so/codecademy/Monaco-editor-as-a-shared-package-1f4484db165b4abc8394c3556451ef6a
5
+
6
+ import loadable from '@loadable/component';
7
+ import { OnMount } from '@monaco-editor/react';
8
+ import { editor } from 'monaco-editor/esm/vs/editor/editor.api';
9
+ import React, { useCallback, useRef } from 'react';
10
+ import ResizeObserver from 'react-resize-observer';
11
+
12
+ import { dark } from './theme';
13
+ import { Monaco } from './types';
14
+
15
+ const ReactMonacoEditor = loadable(() => import('@monaco-editor/react'));
16
+
17
+ export type SimpleMonacoEditorProps = {
18
+ value: string;
19
+ language: string;
20
+ onChange?: (value: string) => void;
21
+ };
22
+
23
+ type ThemedEditor = Parameters<OnMount>[0];
24
+
25
+ export const SimpleMonacoEditor: React.FC<SimpleMonacoEditorProps> = ({
26
+ value,
27
+ language,
28
+ onChange,
29
+ }) => {
30
+ const editorRef = useRef<editor.IStandaloneCodeEditor | null>(null);
31
+ const editorWillMount = useCallback(
32
+ (editor: ThemedEditor, monaco: Monaco) => {
33
+ editorRef.current = editor;
34
+ monaco.editor.defineTheme('dark', dark);
35
+ monaco.editor.setTheme('dark');
36
+ },
37
+ []
38
+ );
39
+ return (
40
+ <>
41
+ <ResizeObserver
42
+ onResize={({ height, width }) => {
43
+ editorRef.current?.layout({
44
+ height,
45
+ width,
46
+ });
47
+ }}
48
+ />
49
+ <ReactMonacoEditor
50
+ onMount={editorWillMount}
51
+ onChange={onChange}
52
+ options={{ minimap: { enabled: false } }}
53
+ theme="vs-dark"
54
+ value={value}
55
+ language={language}
56
+ />
57
+ </>
58
+ );
59
+ };
@@ -0,0 +1,64 @@
1
+ // DO NOT CHANGE ANYTHING HERE
2
+ // This file is part of the Codebytes MVP and only includes basic configuration around theming for the SimpleMonacoEditor component
3
+ // We are working on a monaco package in client-modules that has more configuration around themes and languages
4
+ // Monaco as a shared package RFC https://www.notion.so/codecademy/Monaco-editor-as-a-shared-package-1f4484db165b4abc8394c3556451ef6a
5
+
6
+ import type * as monaco from 'monaco-editor';
7
+
8
+ import * as darkColors from './colorsDark';
9
+
10
+ const c = (color: string) => color.substr(1);
11
+
12
+ const theme = ({
13
+ ui,
14
+ syntax,
15
+ }: {
16
+ ui: darkColors.UIColors;
17
+ syntax: darkColors.SyntaxColors;
18
+ }): monaco.editor.IStandaloneThemeData => ({
19
+ base: 'vs-dark',
20
+ inherit: true,
21
+ rules: [
22
+ // Base
23
+ { token: '', foreground: c(syntax.basic) },
24
+ { token: 'regexp', foreground: c(syntax.regexp) },
25
+ { token: 'annotation', foreground: c(syntax.annotation) },
26
+ { token: 'type', foreground: c(syntax.annotation) },
27
+ { token: 'doctype', foreground: c(syntax.comment) },
28
+ { token: 'delimiter', foreground: c(syntax.decoration) },
29
+ { token: 'invalid', foreground: c(syntax.invalid) },
30
+ { token: 'emphasis', fontStyle: 'italic' },
31
+ { token: 'strong', fontStyle: 'bold' },
32
+ { token: 'variable', foreground: c(syntax.variable) },
33
+ { token: 'variable.predefined', foreground: c(syntax.variable) },
34
+ { token: 'constant', foreground: c(syntax.constant) },
35
+ { token: 'comment', foreground: c(syntax.comment) },
36
+ { token: 'number', foreground: c(syntax.number) },
37
+ { token: 'number.hex', foreground: c(syntax.number) },
38
+ { token: 'keyword.directive', foreground: c(syntax.comment) },
39
+ { token: 'include', foreground: c(syntax.comment) },
40
+ { token: 'key', foreground: c(syntax.property) },
41
+ { token: 'attribute.name', foreground: c(syntax.attribute) },
42
+ { token: 'attribute.name-numeric', foreground: c(syntax.string) },
43
+ { token: 'attribute.value', foreground: c(syntax.property) },
44
+ { token: 'attribute.value.number', foreground: c(syntax.number) },
45
+ { token: 'string', foreground: c(syntax.string) },
46
+ { token: 'string.yaml', foreground: c(syntax.string) },
47
+ { token: 'tag', foreground: c(syntax.tag) },
48
+ { token: 'tag.id.jade', foreground: c(syntax.tag) },
49
+ { token: 'tag.class.jade', foreground: c(syntax.tag) },
50
+ { token: 'metatag', foreground: c(syntax.comment) },
51
+ { token: 'attribute.value.unit', foreground: c(syntax.string) },
52
+ { token: 'keyword', foreground: c(syntax.keyword) },
53
+ { token: 'keyword.flow', foreground: c(syntax.keyword) },
54
+ ],
55
+ colors: {
56
+ 'editor.background': ui.background,
57
+ 'editor.foreground': ui.text,
58
+ 'editorIndentGuide.background': ui.indent.inactive,
59
+ 'editorIndentGuide.activeBackground': ui.indent.active,
60
+ 'editorWhitespace.foreground': syntax.comment,
61
+ },
62
+ });
63
+
64
+ export const dark = theme(darkColors);
@@ -0,0 +1 @@
1
+ export type Monaco = typeof import('monaco-editor');
package/src/api.ts ADDED
@@ -0,0 +1,28 @@
1
+ import type { languageOption } from './consts';
2
+
3
+ interface Response {
4
+ stderr: string;
5
+ stdout: string;
6
+ exit_code: number;
7
+ }
8
+
9
+ interface PostSnippetData {
10
+ language: languageOption;
11
+ code: string;
12
+ }
13
+
14
+ export const postSnippet = async (
15
+ data: PostSnippetData,
16
+ snippetsBaseUrl?: string
17
+ ): Promise<Response> => {
18
+ const snippetsEndpoint = `https://${snippetsBaseUrl}/snippets`;
19
+
20
+ const response = await fetch(snippetsEndpoint, {
21
+ method: 'POST',
22
+ body: JSON.stringify(data),
23
+ headers: {
24
+ 'x-codecademy-user-id': 'codebytes-anon-user',
25
+ },
26
+ });
27
+ return response.json();
28
+ };
package/src/consts.ts CHANGED
@@ -1,15 +1,15 @@
1
1
  // key = language param to send to snippets service
2
2
  // val = label in language selection drop down
3
3
  export const languageOptions = {
4
- '': 'Select your language',
5
- cpp: 'C++',
6
- csharp: 'C#',
7
- golang: 'Go',
8
- javascript: 'JavaScript',
9
- php: 'PHP',
10
- python: 'Python 3',
11
- ruby: 'Ruby',
12
- scheme: 'Scheme',
13
- };
14
-
15
- export type languageOption = keyof typeof languageOptions;
4
+ '': 'Select your language',
5
+ cpp: 'C++',
6
+ csharp: 'C#',
7
+ golang: 'Go',
8
+ javascript: 'JavaScript',
9
+ php: 'PHP',
10
+ python: 'Python 3',
11
+ ruby: 'Ruby',
12
+ scheme: 'Scheme',
13
+ };
14
+
15
+ export type languageOption = keyof typeof languageOptions;
package/src/drawers.tsx CHANGED
@@ -19,7 +19,7 @@ const Drawer = styled(FlexBox)<{ open?: boolean; hideOnClose?: boolean }>`
19
19
  position: relative;
20
20
  ${({ open, hideOnClose }) => `
21
21
  flex-basis: ${open ? '100%' : '0%'};
22
- ${!open && hideOnClose ? 'visibility: hidden;' : ''}
22
+ visibility: ${!open && hideOnClose ? 'hidden' : 'visible'};
23
23
  transition: flex-basis 0.2s ${
24
24
  open ? 'ease-out' : 'ease-in, visibility 0s 0.2s'
25
25
  };
@@ -36,48 +36,52 @@ export type DrawersProps = {
36
36
  };
37
37
 
38
38
  export const Drawers: React.FC<DrawersProps> = ({ leftChild, rightChild }) => {
39
- const [show, setShow] = useState<'left' | 'right' | 'both'>('both');
39
+ const [open, setOpen] = useState<'left' | 'right' | 'both'>('both');
40
40
 
41
- let buttonLabelL = 'hide code';
42
- let buttonLabelR = 'hide output';
41
+ let ariaLabelCodeButton = 'hide code';
42
+ let ariaLabelOutputButton = 'hide output';
43
+ let isLeftOpen = false;
44
+ let isRightOpen = false;
43
45
 
44
- if (show === 'left') {
45
- buttonLabelL = buttonLabelR = 'show output';
46
- } else if (show === 'right') {
47
- buttonLabelL = buttonLabelR = 'show code';
46
+ if (open === 'left') {
47
+ ariaLabelCodeButton = ariaLabelOutputButton = 'show output';
48
+ isLeftOpen = true;
49
+ } else if (open === 'right') {
50
+ ariaLabelCodeButton = ariaLabelOutputButton = 'show code';
51
+ isRightOpen = true;
48
52
  }
49
53
 
50
54
  return (
51
55
  <>
52
56
  <FlexBox>
53
57
  <Drawer
54
- open={show !== 'right'}
58
+ open={!isRightOpen}
55
59
  alignItems="center"
56
60
  flexWrap="nowrap"
57
61
  textAlign="left"
58
- borderRight="1"
62
+ borderRight={1}
59
63
  borderColor="gray-900"
60
- px="8"
64
+ px={8}
61
65
  >
62
66
  <IconButton
63
67
  icon={LeftDrawerIcon}
64
68
  variant="secondary"
65
69
  size="small"
66
70
  onClick={() =>
67
- setShow((state) => (state === 'both' ? 'right' : 'both'))
71
+ setOpen((state) => (state === 'both' ? 'right' : 'both'))
68
72
  }
69
- aria-label={buttonLabelL}
73
+ aria-label={ariaLabelCodeButton}
70
74
  aria-controls="code-drawer"
71
- aria-expanded={show !== 'right'}
75
+ aria-expanded={!isRightOpen}
72
76
  />
73
77
  <DrawerLabel id="code-drawer-label">Code</DrawerLabel>
74
78
  </Drawer>
75
79
  <Drawer
76
- open={show !== 'left'}
80
+ open={!isLeftOpen}
77
81
  alignItems="center"
78
82
  flexWrap="nowrap"
79
83
  justifyContent="flex-end"
80
- px="8"
84
+ px={8}
81
85
  >
82
86
  <DrawerLabel id="output-drawer-label">Output</DrawerLabel>
83
87
  <IconButton
@@ -85,17 +89,17 @@ export const Drawers: React.FC<DrawersProps> = ({ leftChild, rightChild }) => {
85
89
  variant="secondary"
86
90
  size="small"
87
91
  onClick={() =>
88
- setShow((state) => (state === 'both' ? 'left' : 'both'))
92
+ setOpen((state) => (state === 'both' ? 'left' : 'both'))
89
93
  }
90
- aria-label={buttonLabelR}
94
+ aria-label={ariaLabelOutputButton}
91
95
  aria-controls="output-drawer"
92
- aria-expanded={show !== 'left'}
96
+ aria-expanded={!isLeftOpen}
93
97
  />
94
98
  </Drawer>
95
99
  </FlexBox>
96
100
  <FlexBox
97
101
  flexGrow={1}
98
- borderY="1"
102
+ borderY={1}
99
103
  borderColor="gray-900"
100
104
  alignItems="stretch"
101
105
  overflow="hidden"
@@ -104,7 +108,7 @@ export const Drawers: React.FC<DrawersProps> = ({ leftChild, rightChild }) => {
104
108
  hideOnClose
105
109
  id="code-drawer"
106
110
  aria-labelledby="code-drawer-label"
107
- open={show !== 'right'}
111
+ open={!isRightOpen}
108
112
  flexGrow={0}
109
113
  overflow="hidden"
110
114
  borderColor="gray-900"
@@ -117,7 +121,7 @@ export const Drawers: React.FC<DrawersProps> = ({ leftChild, rightChild }) => {
117
121
  hideOnClose
118
122
  id="output-drawer"
119
123
  aria-labelledby="output-drawer-label"
120
- open={show !== 'left'}
124
+ open={!isLeftOpen}
121
125
  overflow="hidden"
122
126
  >
123
127
  {rightChild}
package/src/editor.tsx CHANGED
@@ -6,24 +6,26 @@ import {
6
6
  ToolTip,
7
7
  } from '@codecademy/gamut';
8
8
  import { CopyIcon } from '@codecademy/gamut-icons';
9
- import { theme } from '@codecademy/gamut-styles';
9
+ import { colors } from '@codecademy/gamut-styles';
10
10
  import styled from '@emotion/styled';
11
11
  import React, { useState } from 'react';
12
12
 
13
+ import { postSnippet } from './api';
13
14
  import type { languageOption } from './consts';
14
15
  import { Drawers } from './drawers';
16
+ import { SimpleMonacoEditor } from './MonacoEditor';
15
17
 
16
18
  const Output = styled.pre<{ hasError: boolean }>`
17
19
  width: 100%;
18
- height: 20rem;
20
+ height: 100%;
19
21
  margin: 0;
20
22
  padding: 0 1rem;
21
23
  font-family: Monaco;
22
24
  font-size: 0.875rem;
23
25
  overflow: auto;
24
- ${({ hasError }) => `
26
+ ${({ hasError, theme }) => `
25
27
  color: ${hasError ? theme.colors.orange : theme.colors.white};
26
- background-color: ${theme.colors['gray-900']};
28
+ background-color: ${colors['gray-900']};
27
29
  `}
28
30
  `;
29
31
 
@@ -37,22 +39,18 @@ type EditorProps = {
37
39
  hideCopyButton: boolean;
38
40
  language: languageOption;
39
41
  text: string;
40
- // eslint-disable-next-line react/no-unused-prop-types
41
- onChange: (text: string) => void /* Will use in upcoming pr */;
42
+ onChange: (text: string) => void;
42
43
  onCopy?: (text: string, language: string) => void;
44
+ snippetsBaseUrl?: string;
43
45
  };
44
46
 
45
- interface Response {
46
- stderr: string;
47
- stdout: string;
48
- exit_code: number;
49
- }
50
-
51
47
  export const Editor: React.FC<EditorProps> = ({
52
48
  language,
53
49
  text,
54
50
  hideCopyButton,
55
51
  onCopy,
52
+ onChange,
53
+ snippetsBaseUrl,
56
54
  }) => {
57
55
  const [output, setOutput] = useState('');
58
56
  const [status, setStatus] = useState<'ready' | 'waiting' | 'error'>('ready');
@@ -63,10 +61,7 @@ export const Editor: React.FC<EditorProps> = ({
63
61
  .writeText(text)
64
62
  // eslint-disable-next-line no-console
65
63
  .catch(() => console.error('Failed to copy'));
66
- onCopy?.(
67
- text,
68
- language
69
- ); /* TODO: pass in onCopyBBCodeblock behavior from static sites */
64
+ onCopy?.(text, language);
70
65
  setIsCodeByteCopied(true);
71
66
  }
72
67
  };
@@ -76,7 +71,7 @@ export const Editor: React.FC<EditorProps> = ({
76
71
  setStatus('error');
77
72
  };
78
73
 
79
- const handleSubmit = () => {
74
+ const handleSubmit = async () => {
80
75
  if (text.trim().length === 0) {
81
76
  return;
82
77
  }
@@ -87,40 +82,35 @@ export const Editor: React.FC<EditorProps> = ({
87
82
  setStatus('waiting');
88
83
  setOutput('');
89
84
 
90
- const snippetsEndpoint =
91
- 'https://' + process.env.GATSBY_CONTAINER_API_BASE + '/snippets';
92
-
93
- fetch(snippetsEndpoint, {
94
- method: 'POST',
95
- body: JSON.stringify(data),
96
- headers: {
97
- 'x-codecademy-user-id': 'codebytes-anon-user',
98
- },
99
- })
100
- .then((res) => res.json())
101
- .then((response: Response) => {
102
- if (response.stderr.length > 0) {
103
- setErrorStatusAndOutput(response.stderr);
104
- } else if (response.exit_code === DOCKER_SIGTERM) {
105
- setErrorStatusAndOutput(
106
- 'Your code took too long to return a result. Double check your code for any issues and try again!'
107
- );
108
- } else if (response.exit_code !== 0) {
109
- setErrorStatusAndOutput('An unknown error occured.');
110
- } else {
111
- setOutput(response.stdout);
112
- setStatus('ready');
113
- }
114
- })
115
- .catch((error) => {
116
- setErrorStatusAndOutput('Error: ' + error);
117
- });
85
+ try {
86
+ const response = await postSnippet(data, snippetsBaseUrl);
87
+ if (response.stderr.length > 0) {
88
+ setErrorStatusAndOutput(response.stderr);
89
+ } else if (response.exit_code === DOCKER_SIGTERM) {
90
+ setErrorStatusAndOutput(
91
+ 'Your code took too long to return a result. Double check your code for any issues and try again!'
92
+ );
93
+ } else if (response.exit_code !== 0) {
94
+ setErrorStatusAndOutput('An unknown error occured.');
95
+ } else {
96
+ setOutput(response.stdout);
97
+ setStatus('ready');
98
+ }
99
+ } catch (error) {
100
+ setErrorStatusAndOutput('Error: ' + error);
101
+ }
118
102
  };
119
103
 
120
104
  return (
121
105
  <>
122
106
  <Drawers
123
- leftChild={<div>{text}</div>}
107
+ leftChild={
108
+ <SimpleMonacoEditor
109
+ value={text}
110
+ language={language}
111
+ onChange={onChange}
112
+ />
113
+ }
124
114
  rightChild={
125
115
  <Output hasError={status === 'error'} aria-live="polite">
126
116
  {output}
@@ -129,7 +119,7 @@ export const Editor: React.FC<EditorProps> = ({
129
119
  />
130
120
  <FlexBox
131
121
  justifyContent={hideCopyButton ? 'flex-end' : 'space-between'}
132
- pl="8"
122
+ pl={8}
133
123
  >
134
124
  {!hideCopyButton ? (
135
125
  <ToolTip
package/src/index.tsx CHANGED
@@ -1,6 +1,7 @@
1
1
  import { Box, IconButton } from '@codecademy/gamut';
2
2
  import { FaviconIcon } from '@codecademy/gamut-icons';
3
- import { Background, system } from '@codecademy/gamut-styles';
3
+ import { Background, states, system } from '@codecademy/gamut-styles';
4
+ import { StyleProps } from '@codecademy/variance';
4
5
  import styled from '@emotion/styled';
5
6
  import React, { useState } from 'react';
6
7
 
@@ -11,49 +12,68 @@ export interface CodeByteEditorProps {
11
12
  text: string;
12
13
  language: languageOption;
13
14
  hideCopyButton: boolean;
15
+ onCopy?: (text: string, language: string) => void;
16
+ isIFrame?: boolean;
17
+ snippetsBaseUrl?: string /* TODO in DISC-353: Determine best way to host and include snippets endpoint for both staging and production in both the monolith and next.js repo. */;
18
+ onTextChange?: (text: string) => void;
14
19
  }
15
20
 
16
- const EditorContainer = styled(Background)(
17
- system.css({
18
- border: '1',
19
- borderColor: 'gray-900',
20
- display: 'flex',
21
- flexDirection: 'column',
22
- height: '400px',
23
- width: '688px',
24
- overflow: 'hidden',
25
- })
21
+ const editorStates = states({
22
+ isIFrame: { height: '100vh' },
23
+ });
24
+
25
+ const editorBaseStyles = system.css({
26
+ border: 1,
27
+ borderColor: 'gray-900',
28
+ display: 'flex',
29
+ flexDirection: 'column',
30
+ height: '25rem',
31
+ width: '43rem',
32
+ overflow: 'hidden',
33
+ });
34
+ export interface EditorStyleProps
35
+ extends StyleProps<typeof editorBaseStyles>,
36
+ StyleProps<typeof editorStates> {}
37
+
38
+ const EditorContainer = styled(Background)<EditorStyleProps>(
39
+ editorBaseStyles,
40
+ editorStates
26
41
  );
27
42
 
28
43
  export const CodeByteEditor: React.FC<CodeByteEditorProps> = ({
29
44
  text: initialText,
30
45
  language,
31
46
  hideCopyButton,
47
+ onCopy,
48
+ isIFrame = false,
49
+ snippetsBaseUrl = '',
50
+ onTextChange,
32
51
  }) => {
33
52
  const [text, setText] = useState<string>(initialText);
34
53
  return (
35
- <>
36
- <EditorContainer bg="black" as="main">
37
- <Box borderBottom="1" borderColor="gray-900" py="4" pl="8">
38
- <IconButton
39
- icon={FaviconIcon}
40
- variant="secondary"
41
- href="https://www.codecademy.com/"
42
- target="_blank"
43
- rel="noreferrer"
44
- aria-label="visit codecademy.com"
45
- />
46
- </Box>
47
- <Editor
48
- text={text}
49
- onChange={(newText: string) => {
50
- setText(newText);
51
- }}
52
- hideCopyButton={hideCopyButton}
53
- language={language}
54
+ <EditorContainer bg="black" as="main" isIFrame={isIFrame}>
55
+ <Box borderBottom={1} borderColor="gray-900" py={4} pl={8}>
56
+ <IconButton
57
+ icon={FaviconIcon}
58
+ variant="secondary"
59
+ href="https://www.codecademy.com/"
60
+ target="_blank"
61
+ rel="noreferrer"
62
+ aria-label="visit codecademy.com"
54
63
  />
55
- </EditorContainer>
56
- </>
64
+ </Box>
65
+ <Editor
66
+ language={language}
67
+ text={text}
68
+ hideCopyButton={hideCopyButton}
69
+ onChange={(newText: string) => {
70
+ setText(newText);
71
+ onTextChange?.(newText);
72
+ }}
73
+ onCopy={onCopy}
74
+ snippetsBaseUrl={snippetsBaseUrl}
75
+ />
76
+ </EditorContainer>
57
77
  );
58
78
  };
59
79
 
package/src/theme.d.ts ADDED
@@ -0,0 +1,4 @@
1
+ import { CoreTheme } from '@codecademy/gamut-styles';
2
+ declare module '@emotion/react' {
3
+ export interface Theme extends CoreTheme {}
4
+ }
package/tsconfig.json CHANGED
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "extends": "../../tsconfig.json",
3
3
  "include": ["../../typings/*.d.ts", "./src/**/*.ts", "./src/**/*.tsx"]
4
- }
4
+ }