Skip to content

feat(site): allow any file extension on template editor #12000

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 20 commits into from
Feb 7, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use same editor bg
  • Loading branch information
BrunoQuaresma committed Feb 5, 2024
commit 98aa0544c0674486bbb4486fdad365dc4f86a9c0
3 changes: 3 additions & 0 deletions site/src/components/SyntaxHighlighter/SyntaxHighlighter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { type ComponentProps, type FC } from "react";
import Editor, { DiffEditor, loader } from "@monaco-editor/react";
import * as monaco from "monaco-editor";
import { useCoderTheme } from "./coderTheme";
import { useTheme } from "@emotion/react";

loader.config({ monaco });

Expand All @@ -20,6 +21,7 @@ export const SyntaxHighlighter: FC<SyntaxHighlighterProps> = ({
editorProps,
}) => {
const hasDiff = compareWith && value !== compareWith;
const theme = useTheme();
const coderTheme = useCoderTheme();
const commonProps = {
language,
Expand All @@ -45,6 +47,7 @@ export const SyntaxHighlighter: FC<SyntaxHighlighterProps> = ({
css={{
padding: "8px 0",
height: "100%",
backgroundColor: theme.monaco.colors["editor.background"],
}}
>
{hasDiff ? (
Expand Down
1 change: 1 addition & 0 deletions site/src/modules/templates/TemplateFiles/TemplateFiles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ const styles = {
filePanel: (theme) => ({
borderRadius: 8,
border: `1px solid ${theme.palette.divider}`,
overflow: "hidden",
}),

fileHeader: (theme) => ({
Expand Down