Spaces:
Running
Running
File size: 5,871 Bytes
3b93905 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 |
import { Component, inject, OnInit } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { ApiService, Environment } from '../../services/api.service';
@Component({
selector: 'app-environment',
standalone: true,
imports: [CommonModule, FormsModule],
template: `
<div class="environment-container">
<h2>Environment Configuration</h2>
<div class="card">
<div class="card-body">
<form (ngSubmit)="save()" #envForm="ngForm">
<div class="form-group">
<label for="workMode">Work Mode *</label>
<select
id="workMode"
name="workMode"
[(ngModel)]="environment.work_mode"
(change)="onWorkModeChange()"
required
[disabled]="loading"
>
<option value="hfcloud">HF Cloud</option>
<option value="cloud">Cloud</option>
<option value="on-premise">On-Premise</option>
</select>
</div>
<div class="form-group">
<label for="cloudToken">Cloud Token</label>
<input
type="password"
id="cloudToken"
name="cloudToken"
[(ngModel)]="environment.cloud_token"
[disabled]="loading || environment.work_mode === 'on-premise'"
placeholder="Enter cloud token"
>
<small class="text-muted">Required for HF Cloud and Cloud modes</small>
</div>
<div class="form-group">
<label for="sparkEndpoint">Spark Endpoint *</label>
<div class="input-with-button">
<input
type="url"
id="sparkEndpoint"
name="sparkEndpoint"
[(ngModel)]="environment.spark_endpoint"
required
[disabled]="loading"
placeholder="https://spark-service.example.com"
>
<button
type="button"
class="btn btn-secondary"
(click)="testConnection()"
[disabled]="loading || !environment.spark_endpoint"
>
Test Connection
</button>
</div>
</div>
@if (message) {
<div class="alert" [class.alert-success]="!isError" [class.alert-danger]="isError">
{{ message }}
</div>
}
<div class="form-actions">
<button
type="submit"
class="btn btn-primary"
[disabled]="loading || !envForm.valid"
>
@if (saving) {
<span class="spinner"></span> Saving...
} @else {
Save
}
</button>
<button
type="button"
class="btn btn-secondary"
(click)="reloadFromSpark()"
[disabled]="loading"
>
Reload from Spark
</button>
</div>
</form>
</div>
</div>
</div>
`,
styles: [`
.environment-container {
h2 {
margin-bottom: 1.5rem;
}
}
.input-with-button {
display: flex;
gap: 0.5rem;
input {
flex: 1;
}
}
.form-actions {
display: flex;
gap: 0.5rem;
margin-top: 1.5rem;
}
.text-muted {
color: #6c757d;
font-size: 0.875rem;
}
`]
})
export class EnvironmentComponent implements OnInit {
private apiService = inject(ApiService);
environment: Environment = {
work_mode: 'hfcloud',
cloud_token: '',
spark_endpoint: ''
};
loading = true;
saving = false;
message = '';
isError = false;
ngOnInit() {
this.loadEnvironment();
}
loadEnvironment() {
this.loading = true;
this.apiService.getEnvironment().subscribe({
next: (env) => {
this.environment = env;
this.loading = false;
},
error: (err) => {
this.showMessage('Failed to load environment configuration', true);
this.loading = false;
}
});
}
onWorkModeChange() {
if (this.environment.work_mode === 'on-premise') {
this.environment.cloud_token = '';
}
}
save() {
this.saving = true;
this.message = '';
this.apiService.updateEnvironment(this.environment).subscribe({
next: () => {
this.showMessage('Environment configuration saved successfully', false);
this.saving = false;
},
error: (err) => {
this.showMessage(err.error?.detail || 'Failed to save configuration', true);
this.saving = false;
}
});
}
testConnection() {
// TODO: Implement connection test
this.showMessage('Testing connection to Spark endpoint...', false);
setTimeout(() => {
this.showMessage('Connection successful!', false);
}, 1000);
}
reloadFromSpark() {
// TODO: Implement reload from Spark
this.showMessage('Reloading configuration from Spark...', false);
setTimeout(() => {
this.loadEnvironment();
this.showMessage('Configuration reloaded', false);
}, 1000);
}
private showMessage(message: string, isError: boolean) {
this.message = message;
this.isError = isError;
if (!isError) {
setTimeout(() => {
this.message = '';
}, 5000);
}
}
} |