mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-04-03 10:12:41 +00:00
Refactor editor write handler to a seperate method
This commit is contained in:
parent
0fc90126a7
commit
8f19bf3661
@ -39,8 +39,6 @@
|
|||||||
|
|
||||||
<ngx-monaco-editor [(ngModel)]="code"
|
<ngx-monaco-editor [(ngModel)]="code"
|
||||||
class="tfw-ide-editor"
|
class="tfw-ide-editor"
|
||||||
(keyup)="setCodeState(CodeState.DIRTY);
|
(keyup)="editorWriteHanlder()"
|
||||||
setDeployButtonState(DeployButtonState.TODEPLOY);
|
|
||||||
resetAutoSaveCountdown()"
|
|
||||||
[options]="editorOptions"
|
[options]="editorOptions"
|
||||||
></ngx-monaco-editor>
|
></ngx-monaco-editor>
|
||||||
|
@ -151,6 +151,12 @@ export class IdeComponent implements OnInit {
|
|||||||
this.requestCode();
|
this.requestCode();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
editorWriteHanlder() {
|
||||||
|
this.setCodeState(CodeState.DIRTY);
|
||||||
|
this.setDeployButtonState(DeployButtonState.TODEPLOY);
|
||||||
|
this.resetAutoSaveCountdown();
|
||||||
|
}
|
||||||
|
|
||||||
setCodeState(state: CodeState) {
|
setCodeState(state: CodeState) {
|
||||||
this.codeState = state;
|
this.codeState = state;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user