mirror of
				https://github.com/avatao-content/frontend-tutorial-framework
				synced 2025-11-04 06:22:56 +00:00 
			
		
		
		
	Implement tab switching saving files
This commit is contained in:
		@@ -3,7 +3,7 @@
 | 
			
		||||
          class="btn btn-secondary"
 | 
			
		||||
          [class.active]="filename === file"
 | 
			
		||||
          [class.disabled]="filename === file"
 | 
			
		||||
          (click)="selectCode(file); requestCode()"
 | 
			
		||||
          (click)="sendCodeContents(); selectCode(file); requestCode()"
 | 
			
		||||
          [disabled]="filename === file">
 | 
			
		||||
    {{file}}
 | 
			
		||||
  </button>
 | 
			
		||||
 
 | 
			
		||||
@@ -85,12 +85,16 @@ export class WebideComponent implements OnInit {
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  sendCode() {
 | 
			
		||||
    this.sendCodeContents();
 | 
			
		||||
    this.saveButtonState = 'SAVING';
 | 
			
		||||
    this.processManagerService.restartProcess('login');
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  sendCodeContents() {
 | 
			
		||||
    this.webSocketService.send(this.key_id, {
 | 
			
		||||
      'command': 'write',
 | 
			
		||||
      'content': this.code
 | 
			
		||||
    });
 | 
			
		||||
    this.saveButtonState = 'SAVING';
 | 
			
		||||
    this.processManagerService.restartProcess('login');
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  requestCode() {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user