Skip to content

Commit

Permalink
add new type of code mirror editor
Browse files Browse the repository at this point in the history
  • Loading branch information
jpelay committed Nov 8, 2024
1 parent 6e7f8fb commit 57f0cba
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 7 deletions.
4 changes: 4 additions & 0 deletions static/css/generated.full.css
Original file line number Diff line number Diff line change
Expand Up @@ -347100,6 +347100,10 @@ div[class^="ace_incorrect_hedy_code"] {
width: 3rem;
}

.lg\:w-2\/3 {
width: 66.666667%;
}

.lg\:w-2\/4 {
width: 50%;
}
Expand Down
13 changes: 13 additions & 0 deletions static/js/appbundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -78871,6 +78871,7 @@ def note_with_error(value, err):
EditorType2[EditorType2["CHEATSHEET"] = 3] = "CHEATSHEET";
EditorType2[EditorType2["PARSONS"] = 4] = "PARSONS";
EditorType2[EditorType2["EXAMPLE"] = 5] = "EXAMPLE";
EditorType2[EditorType2["WORKBOOK"] = 6] = "WORKBOOK";
})(EditorType || (EditorType = {}));

// node_modules/@codemirror/state/dist/index.js
Expand Down Expand Up @@ -101636,6 +101637,8 @@ def note_with_error(value, err):
editorType = EditorType.CHEATSHEET;
} else if ($(preview).hasClass("parsons")) {
editorType = EditorType.PARSONS;
} else if ($(preview).hasClass("workbook")) {
editorType = EditorType.WORKBOOK;
} else {
editorType = EditorType.EXAMPLE;
}
Expand Down Expand Up @@ -101732,6 +101735,16 @@ def note_with_error(value, err):
theme2[".cm-scroller"] = { "overflow": "auto", "min-height": "3.5rem" };
extensions.push(EditorView.theme(theme2));
break;
case EditorType.WORKBOOK:
theme2["&"] = {
background: "#272822",
fontSize: "15.2px",
color: "white",
borderRadius: "4px",
marginRight: "5px"
};
extensions.push([EditorView.theme(theme2)]);
break;
case EditorType.COMMON_MISTAKES:
theme2["&"] = {
background: "#272822",
Expand Down
4 changes: 2 additions & 2 deletions static/js/appbundle.js.map

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions static/js/cm-editor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ export class HedyCodeMirrorEditorCreator implements HedyEditorCreator {
editorType = EditorType.CHEATSHEET;
} else if ($(preview).hasClass('parsons')) {
editorType = EditorType.PARSONS;
} else if ($(preview).hasClass('workbook')){
editorType = EditorType.WORKBOOK
} else {
editorType = EditorType.EXAMPLE;
}
Expand Down Expand Up @@ -169,6 +171,16 @@ export class HedyCodeMirrorEditor implements HedyEditor {
theme[".cm-scroller"] = { "overflow": "auto", "min-height": "3.5rem" }
extensions.push(EditorView.theme(theme));
break;
case EditorType.WORKBOOK:
theme["&"] = {
background: '#272822',
fontSize: '15.2px',
color: 'white',
borderRadius: '4px',
marginRight: '5px'
}
extensions.push([EditorView.theme(theme)])
break;
case EditorType.COMMON_MISTAKES:
theme["&"] = {
background: '#272822',
Expand Down
3 changes: 2 additions & 1 deletion static/js/editor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ export enum EditorType {
COMMON_MISTAKES,
CHEATSHEET,
PARSONS,
EXAMPLE
EXAMPLE,
WORKBOOK
}

type EditorEventEmitter = EventEmitter<EditorEvent>;
Expand Down
8 changes: 4 additions & 4 deletions templates/workbooks.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
{% for exercise in workbook.exercises %}
{% if exercise.contents %}
<p>{{ exercise.contents|commonmark }}</p>
<!-- contents kan ook nog een code blok hebben --!>
<!-- contents kan ook nog een code blok hebben -->
{% if exercise.code %}
<div class="w-full lg:w-1/2 turn-pre-into-ace my-5">
<pre class="common-mistakes" level="{{ workbook.level }}" style="font-size: 0.95em;">{{ exercise.code }}</pre>
<pre class="workbook" level="{{ workbook.level }}" style="font-size: 0.95em;">{{ exercise.code }}</pre>
</div>
{% endif %}

Expand All @@ -33,8 +33,8 @@ <h4 id="{{exercise.title|slugify}}">{{ exercise.icon}} {{ exercise.title }}</h4>
<tr>
<td width='5000px'>
{% if exercise.code %}
<div class="w-full lg:w-1/2 turn-pre-into-ace my-5">
<pre class="common-mistakes" level="{{ workbook.level }}" style="font-size: 0.95em;">{{ exercise.code }}</pre>
<div class="w-full lg:w-2/3 turn-pre-into-ace my-5">
<pre class="workbook" level="{{ workbook.level }}" style="font-size: 0.95em;">{{ exercise.code }}</pre>
</div>
{% endif %}
</td>
Expand Down

0 comments on commit 57f0cba

Please sign in to comment.