mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-04-03 11:52:40 +00:00
Implement language autodetection (take that brace)
This commit is contained in:
parent
3a46f3e465
commit
39707c3aed
@ -30,6 +30,7 @@ export const config = {
|
|||||||
showDeployButton: true,
|
showDeployButton: true,
|
||||||
reloadIframeOnDeploy: true,
|
reloadIframeOnDeploy: true,
|
||||||
showConsoleOnDeploy: true,
|
showConsoleOnDeploy: true,
|
||||||
|
autoDetectFileLanguage: true
|
||||||
},
|
},
|
||||||
terminal: {
|
terminal: {
|
||||||
route: 'shell'
|
route: 'shell'
|
||||||
|
@ -9,6 +9,7 @@ import { ProcessManagerService } from '../services/processmanager.service';
|
|||||||
import { DeploymentNotificationService } from '../services/deployment-notification.service';
|
import { DeploymentNotificationService } from '../services/deployment-notification.service';
|
||||||
import { config } from '../config';
|
import { config } from '../config';
|
||||||
import { CommandMessage } from '../message-types/command-message';
|
import { CommandMessage } from '../message-types/command-message';
|
||||||
|
import { LanguageMap } from './language-map';
|
||||||
|
|
||||||
|
|
||||||
enum DeployButtonState {
|
enum DeployButtonState {
|
||||||
@ -45,10 +46,9 @@ export class IdeComponent implements OnInit {
|
|||||||
showDeployButton: boolean = config.ide.showDeployButton;
|
showDeployButton: boolean = config.ide.showDeployButton;
|
||||||
autosave = null;
|
autosave = null;
|
||||||
|
|
||||||
language: string = config.ide.defaultLanguage;
|
|
||||||
editorOptions = {
|
editorOptions = {
|
||||||
theme: 'vs-dark',
|
theme: 'vs-dark',
|
||||||
language: 'python',
|
language: config.ide.defaultLanguage,
|
||||||
glyphMargin: false,
|
glyphMargin: false,
|
||||||
minimap: {enabled: false}
|
minimap: {enabled: false}
|
||||||
};
|
};
|
||||||
@ -128,6 +128,9 @@ export class IdeComponent implements OnInit {
|
|||||||
if (this.codeState === CodeState.SAVED) {
|
if (this.codeState === CodeState.SAVED) {
|
||||||
this.updateFileData(data);
|
this.updateFileData(data);
|
||||||
}
|
}
|
||||||
|
if (config.ide.autoDetectFileLanguage) {
|
||||||
|
this.autoDetectEditorLanguage(data.filename);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
writeHandler(data: CommandMessage) {
|
writeHandler(data: CommandMessage) {
|
||||||
@ -138,6 +141,21 @@ export class IdeComponent implements OnInit {
|
|||||||
this.updateFileData(data);
|
this.updateFileData(data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
autoDetectEditorLanguage(filename: string) {
|
||||||
|
const extension = filename.substr(filename.lastIndexOf('.') + 1);
|
||||||
|
let language = LanguageMap[extension];
|
||||||
|
language = (language === undefined) ? 'text' : language;
|
||||||
|
this.setEditorLanguage(language);
|
||||||
|
}
|
||||||
|
|
||||||
|
setEditorLanguage(lang: string) {
|
||||||
|
this.editorOptions = Object.assign(
|
||||||
|
{},
|
||||||
|
this.editorOptions,
|
||||||
|
{ language: lang }
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
resetAutoSaveCountdown() {
|
resetAutoSaveCountdown() {
|
||||||
if (this.autosave) {
|
if (this.autosave) {
|
||||||
clearInterval(this.autosave);
|
clearInterval(this.autosave);
|
||||||
|
36
src/app/ide/language-map.ts
Normal file
36
src/app/ide/language-map.ts
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
|
||||||
|
// All Rights Reserved. See LICENSE file for details.
|
||||||
|
|
||||||
|
export const LanguageMap: { [extension: string]: string; } = {
|
||||||
|
bat: 'bat',
|
||||||
|
clje: 'clojure',
|
||||||
|
coffee: 'coffee',
|
||||||
|
c: 'cpp',
|
||||||
|
h: 'cpp',
|
||||||
|
cpp: 'cpp',
|
||||||
|
hpp: 'cpp',
|
||||||
|
cs: 'csharp',
|
||||||
|
fs: 'fsharp',
|
||||||
|
go: 'go',
|
||||||
|
html: 'html',
|
||||||
|
java: 'java',
|
||||||
|
js: 'javascript',
|
||||||
|
ts: 'typescript',
|
||||||
|
lua: 'lua',
|
||||||
|
md: 'markdown',
|
||||||
|
m: 'objective-c',
|
||||||
|
mm: 'objective-c',
|
||||||
|
php: 'php',
|
||||||
|
py: 'python',
|
||||||
|
r: 'r',
|
||||||
|
rb: 'ruby',
|
||||||
|
rs: 'rust',
|
||||||
|
rlib: 'rust',
|
||||||
|
sql: 'sql',
|
||||||
|
swift: 'swift',
|
||||||
|
xml: 'xml',
|
||||||
|
yml: 'yaml',
|
||||||
|
css: 'css',
|
||||||
|
less: 'less',
|
||||||
|
scss: 'scss'
|
||||||
|
};
|
Loading…
x
Reference in New Issue
Block a user