Add initial logic to WebIDE

This commit is contained in:
Bálint Bokros 2018-01-11 16:11:01 +01:00
parent 2c211daa3c
commit fd7d3b83d6
3 changed files with 36 additions and 6 deletions

View File

@ -1,9 +1,12 @@
<div <div
ace-editor ace-editor
[(text)]="code" [(text)]="code"
[mode]="language" [(mode)]="language"
[theme]="theme" [theme]="theme"
style="min-height: 200px; width:100%; overflow: auto;" style="min-height: 200px; width:100%; overflow: auto;"
class="mt-3 mb-3"
> >
</div> </div>
<button (click)="sendCode()" type="submit" class="btn btn-primary">Save</button>

View File

@ -1,11 +1,12 @@
import { Component, OnInit } from '@angular/core'; import { Component, OnInit } from '@angular/core';
import 'brace/mode/python'; import 'brace/mode/python';
import 'brace/mode/javascript';
import 'brace/theme/monokai'; import 'brace/theme/monokai';
import { SourceCode } from '../../source-code';
import { WebSocketService } from '../websocket.service';
const defaultSourceCode = const defaultSourceCode = `alert( 'Hello, world!' );`;
`def hello():
print('Hello world!')`;
@Component({ @Component({
selector: 'app-webide', selector: 'app-webide',
@ -13,13 +14,34 @@ const defaultSourceCode =
styleUrls: ['./webide.component.scss'] styleUrls: ['./webide.component.scss']
}) })
export class WebideComponent implements OnInit { export class WebideComponent implements OnInit {
anchor_id = 'anchor_webide';
filename = 'demo.js';
code: string = defaultSourceCode; code: string = defaultSourceCode;
language = 'python'; language = 'javascript';
theme = 'monokai'; theme = 'monokai';
constructor() { } constructor(private webSocketService: WebSocketService) { }
ngOnInit() { ngOnInit() {
this.webSocketService.observeAnchor<SourceCode>(this.anchor_id).subscribe((event) => {
this.filename = event.data.filename;
this.code = event.data.content;
this.language = event.data.language;
});
this.requestCode();
}
sendCode() {
this.webSocketService.send(this.anchor_id, {
'command': 'write',
'content': this.code
});
}
requestCode() {
this.webSocketService.send(this.anchor_id, {
'command': 'read'
});
} }
} }

5
src/source-code.ts Normal file
View File

@ -0,0 +1,5 @@
export class SourceCode {
filename: string;
content: string;
language: string;
}