Spaces:
Running
Running
File size: 8,955 Bytes
8f934bf 8fef57d 8f934bf 8fef57d 8f934bf 8fef57d 8f934bf 8fef57d 8f934bf 8fef57d 8f934bf 8fef57d 8f934bf 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 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 |
import { Component, inject, OnInit } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { MatCardModule } from '@angular/material/card';
import { MatFormFieldModule } from '@angular/material/form-field';
import { MatInputModule } from '@angular/material/input';
import { MatSelectModule } from '@angular/material/select';
import { MatButtonModule } from '@angular/material/button';
import { MatIconModule } from '@angular/material/icon';
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
import { MatSnackBar, MatSnackBarModule } from '@angular/material/snack-bar';
import { MatExpansionModule } from '@angular/material/expansion';
import { ApiService, Environment } from '../../services/api.service';
@Component({
selector: 'app-environment',
standalone: true,
imports: [
CommonModule,
FormsModule,
MatCardModule,
MatFormFieldModule,
MatInputModule,
MatSelectModule,
MatButtonModule,
MatIconModule,
MatProgressSpinnerModule,
MatSnackBarModule,
MatExpansionModule
],
template: `
<div class="environment-container">
<mat-card>
<mat-card-header>
<mat-card-title>
<mat-icon>settings</mat-icon>
Environment Configuration
</mat-card-title>
</mat-card-header>
<mat-card-content>
<form (ngSubmit)="save()" #envForm="ngForm">
<mat-form-field appearance="outline" class="full-width">
<mat-label>Work Mode</mat-label>
<mat-select
name="workMode"
[(ngModel)]="environment.work_mode"
(selectionChange)="onWorkModeChange()"
required
[disabled]="loading"
>
<mat-option value="hfcloud">HF Cloud</mat-option>
<mat-option value="cloud">Cloud</mat-option>
<mat-option value="on-premise">On-Premise</mat-option>
</mat-select>
<mat-icon matPrefix>cloud</mat-icon>
</mat-form-field>
<mat-form-field appearance="outline" class="full-width">
<mat-label>Cloud Token</mat-label>
<input
matInput
type="password"
name="cloudToken"
[(ngModel)]="environment.cloud_token"
[disabled]="loading || environment.work_mode === 'on-premise'"
placeholder="Enter cloud token"
>
<mat-icon matPrefix>vpn_key</mat-icon>
<mat-hint>Required for HF Cloud and Cloud modes</mat-hint>
</mat-form-field>
<mat-form-field appearance="outline" class="full-width">
<mat-label>Spark Endpoint</mat-label>
<input
matInput
type="url"
name="sparkEndpoint"
[(ngModel)]="environment.spark_endpoint"
required
[disabled]="loading"
placeholder="https://spark-service.example.com"
>
<mat-icon matPrefix>link</mat-icon>
<button
mat-icon-button
matSuffix
type="button"
(click)="testConnection()"
[disabled]="loading || !environment.spark_endpoint"
matTooltip="Test Connection"
>
<mat-icon>wifi_tethering</mat-icon>
</button>
</mat-form-field>
<mat-expansion-panel class="prompt-panel">
<mat-expansion-panel-header>
<mat-panel-title>
<mat-icon>psychology</mat-icon>
Internal System Prompt
</mat-panel-title>
<mat-panel-description>
Advanced configuration for Spark LLM
</mat-panel-description>
</mat-expansion-panel-header>
<mat-form-field appearance="outline" class="full-width">
<mat-label>Internal Prompt</mat-label>
<textarea
matInput
name="internalPrompt"
[(ngModel)]="environment.internal_prompt"
[disabled]="loading"
rows="10"
placeholder="Enter internal system prompt for Spark..."
></textarea>
<mat-hint>This prompt will be prepended to all project prompts</mat-hint>
</mat-form-field>
</mat-expansion-panel>
<div class="form-actions">
<button
mat-raised-button
color="primary"
type="submit"
[disabled]="loading || !envForm.valid || saving"
>
@if (saving) {
<mat-spinner diameter="20"></mat-spinner>
Saving...
} @else {
<mat-icon>save</mat-icon>
Save
}
</button>
<button
mat-raised-button
type="button"
(click)="reloadFromSpark()"
[disabled]="loading"
>
<mat-icon>refresh</mat-icon>
Reload from Spark
</button>
</div>
</form>
</mat-card-content>
</mat-card>
</div>
`,
styles: [`
.environment-container {
max-width: 800px;
margin: 0 auto;
}
mat-card-header {
margin-bottom: 24px;
mat-card-title {
display: flex;
align-items: center;
gap: 8px;
font-size: 24px;
mat-icon {
font-size: 28px;
width: 28px;
height: 28px;
}
}
}
.full-width {
width: 100%;
margin-bottom: 20px;
}
.prompt-panel {
margin-bottom: 20px;
mat-expansion-panel-header {
mat-panel-title {
display: flex;
align-items: center;
gap: 8px;
mat-icon {
color: #666;
}
}
}
}
.form-actions {
display: flex;
gap: 16px;
margin-top: 24px;
padding-top: 24px;
border-top: 1px solid #e0e0e0;
button {
display: flex;
align-items: center;
gap: 8px;
mat-spinner {
margin-right: 8px;
}
}
}
::ng-deep {
.mat-mdc-form-field-icon-prefix {
padding-right: 12px;
}
.mat-mdc-progress-spinner {
--mdc-circular-progress-active-indicator-color: white;
}
.mat-expansion-panel-body {
padding: 16px 0 !important;
}
}
`]
})
export class EnvironmentComponent implements OnInit {
private apiService = inject(ApiService);
private snackBar = inject(MatSnackBar);
environment: Environment = {
work_mode: 'hfcloud',
cloud_token: '',
spark_endpoint: '',
internal_prompt: ''
};
loading = true;
saving = false;
ngOnInit() {
this.loadEnvironment();
}
loadEnvironment() {
this.loading = true;
this.apiService.getEnvironment().subscribe({
next: (env) => {
this.environment = env;
this.loading = false;
},
error: (err) => {
this.snackBar.open('Failed to load environment configuration', 'Close', {
duration: 5000,
panelClass: 'error-snackbar'
});
this.loading = false;
}
});
}
onWorkModeChange() {
if (this.environment.work_mode === 'on-premise') {
this.environment.cloud_token = '';
}
}
save() {
this.saving = true;
this.apiService.updateEnvironment(this.environment).subscribe({
next: () => {
this.snackBar.open('Environment configuration saved successfully', 'Close', {
duration: 3000
});
this.saving = false;
},
error: (err) => {
this.snackBar.open(
err.error?.detail || 'Failed to save configuration',
'Close',
{ duration: 5000, panelClass: 'error-snackbar' }
);
this.saving = false;
}
});
}
testConnection() {
this.snackBar.open('Testing connection to Spark endpoint...', undefined, {
duration: 2000
});
// TODO: Implement actual connection test
setTimeout(() => {
this.snackBar.open('Connection successful!', 'Close', {
duration: 3000
});
}, 2000);
}
reloadFromSpark() {
this.snackBar.open('Reloading configuration from Spark...', undefined, {
duration: 2000
});
setTimeout(() => {
this.loadEnvironment();
this.snackBar.open('Configuration reloaded', 'Close', {
duration: 3000
});
}, 1000);
}
} |