Compare commits

8 Commits

Author SHA1 Message Date
sokol
7e1f7dd24c feat: prevent downloading empty config 2026-02-20 10:19:27 +03:00
sokol
1b3f3b3110 feat: disable Download button when no config is loaded 2026-02-20 10:16:28 +03:00
sokol
52232f6cde fix: center environment action buttons vertically 2026-02-19 23:35:38 +03:00
sokol
a6cc5a9827 refactor: complete application rewrite with modern UI 2026-02-19 22:55:26 +03:00
ssa
271b530fa1 Merge pull request 'ai' (#4) from ai into main
Reviewed-on: #4
2026-02-19 00:18:58 +03:00
ssa
81d3c51cb7 Merge pull request 'config: change external port to 11088' (#3) from ai into main
Reviewed-on: #3
2026-02-18 23:45:22 +03:00
ssa
8ca531ca98 Merge pull request 'ai' (#2) from ai into main
Reviewed-on: #2
2026-02-18 23:27:18 +03:00
ssa
22a03735d6 Merge pull request 'ai' (#1) from ai into main
Reviewed-on: #1
2026-02-18 22:44:41 +03:00
27 changed files with 3070 additions and 795 deletions

View File

@@ -4,29 +4,32 @@ import * as fs from 'fs';
test.describe('Environment Management', () => { test.describe('Environment Management', () => {
test('should not allow removing DEFAULT environment', async ({ page }) => { test('should not allow removing DEFAULT environment', async ({ page }) => {
await page.goto('/'); await page.goto('/');
await page.click('button:has-text("Create new")'); await page.click('button:has-text("New Config")');
const removeButton = page.locator('button.btn-danger[title="Remove environment"]'); await page.waitForTimeout(500);
const removeButton = page.locator('button[title="Remove environment"]');
await expect(removeButton).toBeDisabled(); await expect(removeButton).toBeDisabled();
}); });
test('should remove non-DEFAULT environment', async ({ page }) => { test('should remove non-DEFAULT environment', async ({ page }) => {
await page.goto('/'); await page.goto('/');
await page.click('button:has-text("Create new")'); await page.click('button:has-text("New Config")');
await page.waitForTimeout(500);
page.once('dialog', async dialog => { await dialog.accept('toRemove'); }); page.once('dialog', async dialog => { await dialog.accept('toRemove'); });
await page.click('button.btn-success[title="Add environment"]'); await page.click('button[title="Add environment"]');
await page.waitForTimeout(500); await page.waitForTimeout(500);
await expect(page.locator('#environments option')).toHaveCount(2); await expect(page.locator('#environments option')).toHaveCount(2);
page.once('dialog', async dialog => { await dialog.accept(); }); page.once('dialog', async dialog => { await dialog.accept(); });
await page.click('button.btn-danger[title="Remove environment"]'); await page.click('button[title="Remove environment"]');
await page.waitForTimeout(300); await page.waitForTimeout(300);
await expect(page.locator('#environments option')).toHaveCount(1); await expect(page.locator('#environments option')).toHaveCount(1);
}); });
test('should create new environment and switch without errors', async ({ page }) => { test('should create new environment and switch without errors', async ({ page }) => {
await page.goto('/'); await page.goto('/');
await page.click('button:has-text("Create new")'); await page.click('button:has-text("New Config")');
await page.waitForTimeout(500);
page.once('dialog', async dialog => { await dialog.accept('env1'); }); page.once('dialog', async dialog => { await dialog.accept('env1'); });
await page.click('button.btn-success[title="Add environment"]'); await page.click('button[title="Add environment"]');
await page.waitForTimeout(500); await page.waitForTimeout(500);
await expect(page.locator('#environments option')).toHaveCount(2); await expect(page.locator('#environments option')).toHaveCount(2);
await page.locator('#environments').selectOption({ index: 0 }); await page.locator('#environments').selectOption({ index: 0 });
@@ -38,12 +41,13 @@ test.describe('Environment Management', () => {
test('should create multiple environments and switch between them', async ({ page }) => { test('should create multiple environments and switch between them', async ({ page }) => {
await page.goto('/'); await page.goto('/');
await page.click('button:has-text("Create new")'); await page.click('button:has-text("New Config")');
await page.waitForTimeout(500);
page.once('dialog', async dialog => { await dialog.accept('env1'); }); page.once('dialog', async dialog => { await dialog.accept('env1'); });
await page.click('button.btn-success[title="Add environment"]'); await page.click('button[title="Add environment"]');
await page.waitForTimeout(500); await page.waitForTimeout(500);
page.once('dialog', async dialog => { await dialog.accept('env2'); }); page.once('dialog', async dialog => { await dialog.accept('env2'); });
await page.click('button.btn-success[title="Add environment"]'); await page.click('button[title="Add environment"]');
await page.waitForTimeout(500); await page.waitForTimeout(500);
await expect(page.locator('#environments option')).toHaveCount(3); await expect(page.locator('#environments option')).toHaveCount(3);
await page.locator('#environments').selectOption({ index: 0 }); await page.locator('#environments').selectOption({ index: 0 });
@@ -57,10 +61,11 @@ test.describe('Environment Management', () => {
test('should add params and edit template manually', async ({ page }) => { test('should add params and edit template manually', async ({ page }) => {
await page.goto('/'); await page.goto('/');
await page.click('button:has-text("Create new")'); await page.click('button:has-text("New Config")');
const nameInput = page.locator('input[placeholder="name"]').first(); await page.waitForTimeout(500);
const valueInput = page.locator('input[placeholder="value"]').first(); const nameInput = page.locator('input[placeholder="Parameter name"]').first();
const addButton = page.locator('button.btn-success').first(); const valueInput = page.locator('input[placeholder="Parameter value"]').first();
const addButton = page.locator('button[title="Add parameter"]').first();
await nameInput.fill('host'); await nameInput.fill('host');
await valueInput.fill('localhost:8080'); await valueInput.fill('localhost:8080');
await addButton.click(); await addButton.click();
@@ -69,48 +74,49 @@ test.describe('Environment Management', () => {
await valueInput.fill('9090'); await valueInput.fill('9090');
await addButton.click(); await addButton.click();
await page.waitForTimeout(500); await page.waitForTimeout(500);
await page.click('a:has-text("Content Template")'); await page.click('button:has-text("Content Template")');
await page.waitForTimeout(500); await page.waitForTimeout(500);
await expect(page.locator('button:has-text("Edit")')).toBeVisible(); await expect(page.locator('button:has-text("Edit Template")')).toBeVisible();
await page.click('button:has-text("Edit")'); await page.click('button:has-text("Edit Template")');
await page.waitForTimeout(500); await page.waitForTimeout(500);
const textarea = page.locator('textarea'); const textarea = page.locator('textarea');
await expect(textarea).toBeVisible(); await expect(textarea).toBeVisible();
await textarea.fill('{\n "!!! host": "@host@",\n "!!! port": "@port@",\n "!!! custom": "@custom@"\n}'); await textarea.fill('{\n "!!! host": "@host@",\n "!!! port": "@port@",\n "!!! custom": "@custom@"\n}');
await page.waitForTimeout(300); await page.waitForTimeout(300);
await page.click('button:has-text("Save")'); await page.click('button:has-text("Save Changes")');
await page.waitForTimeout(500); await page.waitForTimeout(500);
await expect(page.locator('button:has-text("Edit")')).toBeVisible(); await expect(page.locator('button:has-text("Edit Template")')).toBeVisible();
const pageContent = await page.content(); const pageContent = await page.content();
expect(pageContent).toContain('!!! custom'); expect(pageContent).toContain('!!! custom');
}); });
test('should not duplicate params when placeholder already exists', async ({ page }) => { test('should not duplicate params when placeholder already exists', async ({ page }) => {
await page.goto('/'); await page.goto('/');
await page.click('button:has-text("Create new")'); await page.click('button:has-text("New Config")');
const nameInput = page.locator('input[placeholder="name"]').first(); await page.waitForTimeout(500);
const valueInput = page.locator('input[placeholder="value"]').first(); const nameInput = page.locator('input[placeholder="Parameter name"]').first();
const addButton = page.locator('button.btn-success').first(); const valueInput = page.locator('input[placeholder="Parameter value"]').first();
const addButton = page.locator('button[title="Add parameter"]').first();
await nameInput.fill('host'); await nameInput.fill('host');
await valueInput.fill('localhost:8080'); await valueInput.fill('localhost:8080');
await addButton.click(); await addButton.click();
await page.waitForTimeout(500); await page.waitForTimeout(500);
await page.click('a:has-text("Content Template")'); await page.click('button:has-text("Content Template")');
await page.waitForTimeout(500); await page.waitForTimeout(500);
await page.click('button:has-text("Edit")'); await page.click('button:has-text("Edit Template")');
await page.waitForTimeout(300); await page.waitForTimeout(300);
const textarea = page.locator('textarea'); const textarea = page.locator('textarea');
await textarea.fill('{\n "!!! host": "@host@",\n "apiUrl": "http://@host@/api"\n}'); await textarea.fill('{\n "!!! host": "@host@",\n "apiUrl": "http://@host@/api"\n}');
await page.waitForTimeout(300); await page.waitForTimeout(300);
await page.click('button:has-text("Save")'); await page.click('button:has-text("Save Changes")');
await page.waitForTimeout(500); await page.waitForTimeout(500);
await page.click('a:has-text("Env")'); await page.click('button:has-text("Env")');
await page.waitForTimeout(300); await page.waitForTimeout(300);
await nameInput.fill('host'); await nameInput.fill('host');
await valueInput.fill('updated-host:9090'); await valueInput.fill('updated-host:9090');
await addButton.click(); await addButton.click();
await page.waitForTimeout(500); await page.waitForTimeout(500);
await page.click('a:has-text("Content Template")'); await page.click('button:has-text("Content Template")');
await page.waitForTimeout(500); await page.waitForTimeout(500);
const templateContent = await page.locator('.config-template-editor').textContent(); const templateContent = await page.locator('.config-template-editor').textContent();
const hostKeyCount = (templateContent.match(/!!! host/g) || []).length; const hostKeyCount = (templateContent.match(/!!! host/g) || []).length;
@@ -121,24 +127,24 @@ test.describe('Environment Management', () => {
test('should validate template with unquoted placeholders', async ({ page }) => { test('should validate template with unquoted placeholders', async ({ page }) => {
await page.goto('/'); await page.goto('/');
await page.click('button:has-text("Create new")'); await page.click('button:has-text("New Config")');
await page.waitForTimeout(500); await page.waitForTimeout(500);
// Add a parameter // Add a parameter - use first() to get the new parameter inputs
await page.click('button:has-text("✚")'); await page.click('button[title="Add parameter"]');
await page.waitForTimeout(300); await page.waitForTimeout(300);
const nameInput = page.locator('input[placeholder="name"]'); const nameInput = page.locator('input[placeholder="Parameter name"]').last();
const valueInput = page.locator('input[placeholder="value"]'); const valueInput = page.locator('input[placeholder="Parameter value"]').last();
const addButton = page.locator('button:has-text("✓")'); const addButton = page.locator('button[title="Add parameter"]').last();
await nameInput.fill('port'); await nameInput.fill('port');
await valueInput.fill('8080'); await valueInput.fill('8080');
await addButton.click(); await addButton.click();
await page.waitForTimeout(500); await page.waitForTimeout(500);
// Go to Content Template and edit with unquoted placeholder // Go to Content Template and edit with unquoted placeholder
await page.click('a:has-text("Content Template")'); await page.click('button:has-text("Content Template")');
await page.waitForTimeout(300); await page.waitForTimeout(300);
await page.click('button:has-text("Edit")'); await page.click('button:has-text("Edit Template")');
await page.waitForTimeout(300); await page.waitForTimeout(300);
// Fill template with unquoted @port@ placeholder // Fill template with unquoted @port@ placeholder
@@ -147,11 +153,11 @@ test.describe('Environment Management', () => {
await page.waitForTimeout(300); await page.waitForTimeout(300);
// Check that Save button is enabled (validation passed) // Check that Save button is enabled (validation passed)
const saveButton = page.locator('button:has-text("Save")'); const saveButton = page.locator('button:has-text("Save Changes")');
await expect(saveButton).toBeEnabled(); await expect(saveButton).toBeEnabled();
// Check that there's no JSON error // Check that there's no JSON error
const errorAlert = page.locator('.alert-danger'); const errorAlert = page.locator('.bg-red-50');
await expect(errorAlert).not.toBeVisible(); await expect(errorAlert).not.toBeVisible();
// Save the template // Save the template
@@ -159,11 +165,11 @@ test.describe('Environment Management', () => {
await page.waitForTimeout(500); await page.waitForTimeout(500);
// Verify it was saved - should be in view mode with Edit button visible // Verify it was saved - should be in view mode with Edit button visible
const editButton = page.locator('button:has-text("Edit")'); const editButton = page.locator('button:has-text("Edit Template")');
await expect(editButton).toBeVisible(); await expect(editButton).toBeVisible();
// Verify the template content is displayed correctly // Verify the template content is displayed correctly
const codeContent = page.locator('code'); const codeContent = page.locator('.hljs');
await expect(codeContent).toBeVisible(); await expect(codeContent).toBeVisible();
const content = await codeContent.textContent(); const content = await codeContent.textContent();
expect(content).toContain('@port@'); expect(content).toContain('@port@');
@@ -171,7 +177,7 @@ test.describe('Environment Management', () => {
test('should download config file with correct filename', async ({ page }) => { test('should download config file with correct filename', async ({ page }) => {
await page.goto('/'); await page.goto('/');
await page.click('button:has-text("Create new")'); await page.click('button:has-text("New Config")');
await page.waitForTimeout(500); await page.waitForTimeout(500);
const [download] = await Promise.all([ const [download] = await Promise.all([
page.waitForEvent('download'), page.waitForEvent('download'),

1193
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -13,6 +13,7 @@
}, },
"dependencies": { "dependencies": {
"bootstrap": "^5.3.3", "bootstrap": "^5.3.3",
"lucide-react": "^0.575.0",
"react": "^19.2.0", "react": "^19.2.0",
"react-dom": "^19.2.0", "react-dom": "^19.2.0",
"react-highlight": "^0.15.0" "react-highlight": "^0.15.0"
@@ -24,11 +25,14 @@
"@types/react-dom": "^18.3.5", "@types/react-dom": "^18.3.5",
"@types/react-highlight": "^0.12.8", "@types/react-highlight": "^0.12.8",
"@vitejs/plugin-react": "^4.3.4", "@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.24",
"eslint": "^9.17.0", "eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.0.0", "eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.16", "eslint-plugin-react-refresh": "^0.4.16",
"globals": "^16.5.0", "globals": "^16.5.0",
"jsdom": "^27.4.0", "jsdom": "^27.4.0",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.19",
"typescript": "~5.9.3", "typescript": "~5.9.3",
"typescript-eslint": "^8.46.4", "typescript-eslint": "^8.46.4",
"vite": "^7.2.4", "vite": "^7.2.4",

6
postcss.config.js Normal file
View File

@@ -0,0 +1,6 @@
export default {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}

View File

@@ -0,0 +1,75 @@
/* App-specific styles - most styling is done with Tailwind */
/* Smooth scrolling */
html {
scroll-behavior: smooth;
}
/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #f1f5f9;
border-radius: 4px;
}
::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}
/* Highlight.js override for better dark mode support */
.hljs {
background: #fafafa !important;
padding: 1rem !important;
border-radius: 0.5rem;
}
/* Animation utilities */
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes slideIn {
from {
transform: translateY(-10px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
.animate-fade-in {
animation: fadeIn 0.3s ease-in-out;
}
.animate-slide-in {
animation: slideIn 0.3s ease-out;
}
/* Focus visible for better accessibility */
:focus-visible {
outline: 2px solid #3b82f6;
outline-offset: 2px;
}
/* Transition utilities */
.transition-all {
transition-property: all;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 200ms;
}

View File

@@ -1,12 +1,10 @@
import { useState } from 'react' import { useState } from 'react';
import './App.css' import { File } from 'lucide-react';
import 'bootstrap/dist/css/bootstrap.css' import { Env } from './models/Env';
import { Env } from './models/Env' import { Environment } from './componets/env/Environment';
import Environment from "./componets/env" import { Content } from './componets/content/Content';
import Content from './componets/content' import { FileChooser } from './componets/FileChooser';
import { FileChooser } from './componets/FileChooser' import { Config } from './models/Config';
import { Config } from "./models/Config"
import logo from './assets/cgg.png'
class AppState { class AppState {
private constructor( private constructor(
@@ -23,7 +21,7 @@ class AppState {
// Simulate async save with 1 second delay // Simulate async save with 1 second delay
return await new Promise<number>((resolve) => { return await new Promise<number>((resolve) => {
setTimeout(() => { setTimeout(() => {
console.log("Saved env:", env.name); console.log('Saved env:', env.name);
resolve(0); resolve(0);
}, 1000); }, 1000);
}); });
@@ -41,9 +39,9 @@ function App() {
async function handleEnvChanged(env: Env) { async function handleEnvChanged(env: Env) {
// Optimistic update - update React state immediately // Optimistic update - update React state immediately
setEnvs(prevEnvs => { setEnvs((prevEnvs) => {
const newEnvs = [...prevEnvs]; const newEnvs = [...prevEnvs];
const idx = newEnvs.findIndex(x => x.id === env.id); const idx = newEnvs.findIndex((x) => x.id === env.id);
if (idx > -1) { if (idx > -1) {
newEnvs[idx] = env; newEnvs[idx] = env;
} }
@@ -51,10 +49,9 @@ function App() {
}); });
// Also update config.envs and template to keep them in sync // Also update config.envs and template to keep them in sync
setConfig(prevConfig => { setConfig((prevConfig) => {
const newConfig = new Config(); const newConfig = new Config();
newConfig.envs = prevConfig.envs.map(e => e.id === env.id ? env : e); newConfig.envs = prevConfig.envs.map((e) => (e.id === env.id ? env : e));
// Update template JSON with params from this environment
newConfig.template = prevConfig.template; newConfig.template = prevConfig.template;
newConfig.updateTemplateFromEnv(env); newConfig.updateTemplateFromEnv(env);
return newConfig; return newConfig;
@@ -70,8 +67,8 @@ function App() {
function handleEnvAdded(env: Env): number { function handleEnvAdded(env: Env): number {
const newIdx = envs.length; const newIdx = envs.length;
setEnvs(prevEnvs => [...prevEnvs, env]); setEnvs((prevEnvs) => [...prevEnvs, env]);
setConfig(prevConfig => { setConfig((prevConfig) => {
const newConfig = new Config(); const newConfig = new Config();
newConfig.envs = [...prevConfig.envs, env]; newConfig.envs = [...prevConfig.envs, env];
newConfig.template = prevConfig.template; newConfig.template = prevConfig.template;
@@ -81,63 +78,80 @@ function App() {
} }
function handleEnvRemoved(envId: number) { function handleEnvRemoved(envId: number) {
setEnvs(prevEnvs => prevEnvs.filter(e => e.id !== envId)); setEnvs((prevEnvs) => prevEnvs.filter((e) => e.id !== envId));
setConfig(prevConfig => { setConfig((prevConfig) => {
const newConfig = new Config(); const newConfig = new Config();
newConfig.envs = prevConfig.envs.filter(e => e.id !== envId); newConfig.envs = prevConfig.envs.filter((e) => e.id !== envId);
newConfig.template = prevConfig.template; newConfig.template = prevConfig.template;
return newConfig; return newConfig;
}); });
} }
function handleTemplateSaved(newContent: string) { function handleTemplateSaved(newContent: string) {
setConfig(prevConfig => { setConfig((prevConfig) => {
const newConfig = new Config(); const newConfig = new Config();
newConfig.envs = prevConfig.envs; newConfig.envs = prevConfig.envs;
newConfig.addTemplate(newContent); newConfig.setTemplate(newContent);
return newConfig; return newConfig;
}); });
} }
return ( return (
<> <div className="min-h-screen bg-gradient-to-br from-slate-50 to-slate-100">
<main className="container-fluid m-2"> <main className="container mx-auto px-4 py-6 max-w-7xl">
<div className="row mb-2"> {/* Header */}
<FileChooser onSelected={x => { <div className="mb-6">
<FileChooser
onSelected={(x) => {
AppState.Instance.loadConfig(x); AppState.Instance.loadConfig(x);
setEnvs(x.envs); setEnvs(x.envs);
setConfig(x); setConfig(x);
}} config={config} /> }}
config={config}
/>
</div> </div>
{envs.length > 0 ?
(<div className="row"> {envs.length > 0 ? (
<section id="env" className='col-4 me-1'> <div className="grid grid-cols-1 lg:grid-cols-12 gap-6">
{/* Environment Panel */}
<section className="lg:col-span-5 xl:col-span-4">
<div className="sticky top-6">
<Environment <Environment
envs={envs} envs={envs}
onChanged={async (e) => await handleEnvChanged(e)} onChanged={async (e) => await handleEnvChanged(e)}
onSelected={handleEnvSelected} onSelected={handleEnvSelected}
onAdd={handleEnvAdded} onAdd={handleEnvAdded}
onRemove={handleEnvRemoved} /> onRemove={handleEnvRemoved}
</section> />
<section id="content" className="col-8 col-xl-7 border-start ms-1">
<Content env={currentEnv} config={config} onTemplateSaved={handleTemplateSaved} />
</section>
</div>)
:
(
<div className="row justify-content-center pt-5" >
<div className="col-1 pt-5">
<img src={logo} alt="" style={{ opacity: 0.2, transform: 'scale(1.8)' }} />
</div>
</div> </div>
</section>
{/* Content Panel */}
<section className="lg:col-span-7 xl:col-span-8">
<Content
env={currentEnv}
config={config}
onTemplateSaved={handleTemplateSaved}
/>
</section>
</div>
) : (
/* Empty State */
<div className="flex flex-col items-center justify-center py-20">
<div className="w-24 h-24 bg-gradient-to-br from-blue-400 to-blue-600 rounded-2xl flex items-center justify-center mb-6 shadow-lg">
<File className="w-12 h-12 text-white opacity-80" />
</div>
<h2 className="text-2xl font-bold text-slate-700 mb-2">
No Configuration Loaded
</h2>
<p className="text-slate-500 text-center max-w-md">
Create a new configuration or upload an existing XML file to get started
</p>
</div>
)} )}
</main> </main>
</> </div>
) );
} }
export default App export default App;

View File

@@ -0,0 +1,42 @@
import { HTMLAttributes, forwardRef } from 'react';
export type BadgeVariant = 'default' | 'success' | 'warning' | 'danger' | 'info';
interface BadgeProps extends HTMLAttributes<HTMLSpanElement> {
variant?: BadgeVariant;
size?: 'sm' | 'md';
}
const variantStyles: Record<BadgeVariant, string> = {
default: 'bg-slate-100 text-slate-700',
success: 'bg-green-100 text-green-800',
warning: 'bg-yellow-100 text-yellow-800',
danger: 'bg-red-100 text-red-800',
info: 'bg-blue-100 text-blue-800',
};
const sizeStyles: Record<'sm' | 'md', string> = {
sm: 'px-1.5 py-0.5 text-xs',
md: 'px-2 py-1 text-sm',
};
export const Badge = forwardRef<HTMLSpanElement, BadgeProps>(
({ className = '', variant = 'default', size = 'sm', children, ...props }, ref) => {
return (
<span
ref={ref}
className={`
inline-flex items-center font-medium rounded-full
${variantStyles[variant]}
${sizeStyles[size]}
${className}
`}
{...props}
>
{children}
</span>
);
}
);
Badge.displayName = 'Badge';

View File

@@ -0,0 +1,71 @@
import { LucideIcon } from 'lucide-react';
import { ButtonHTMLAttributes, forwardRef } from 'react';
export type ButtonVariant = 'primary' | 'success' | 'danger' | 'secondary' | 'ghost';
export type ButtonSize = 'sm' | 'md' | 'lg';
interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
variant?: ButtonVariant;
size?: ButtonSize;
icon?: LucideIcon;
iconPosition?: 'left' | 'right';
isLoading?: boolean;
}
const variantStyles: Record<ButtonVariant, string> = {
primary: 'bg-blue-600 text-white hover:bg-blue-700 focus:ring-blue-500 shadow-md hover:shadow-lg',
success: 'bg-green-600 text-white hover:bg-green-700 focus:ring-green-500 shadow-md hover:shadow-lg',
danger: 'bg-red-600 text-white hover:bg-red-700 focus:ring-red-500 shadow-md hover:shadow-lg',
secondary: 'bg-slate-200 text-slate-700 hover:bg-slate-300 focus:ring-slate-400',
ghost: 'bg-transparent text-slate-600 hover:bg-slate-100 focus:ring-slate-400',
};
const sizeStyles: Record<ButtonSize, string> = {
sm: 'px-3 py-1.5 text-sm',
md: 'px-4 py-2 text-base',
lg: 'px-6 py-3 text-lg',
};
export const Button = forwardRef<HTMLButtonElement, ButtonProps>(
(
{
className = '',
variant = 'primary',
size = 'md',
icon: Icon,
iconPosition = 'left',
isLoading = false,
disabled,
children,
...props
},
ref
) => {
const baseStyles = `
inline-flex items-center justify-center gap-2
font-medium rounded-lg
transition-all duration-200
focus:outline-none focus:ring-2 focus:ring-offset-2
disabled:opacity-50 disabled:cursor-not-allowed
${variantStyles[variant]}
${sizeStyles[size]}
${className}
`;
return (
<button ref={ref} className={baseStyles} disabled={disabled || isLoading} {...props}>
{isLoading ? (
<svg className="animate-spin h-4 w-4" viewBox="0 0 24 24">
<circle className="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" strokeWidth="4" fill="none" />
<path className="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4z" />
</svg>
) : Icon ? (
<Icon className="w-4 h-4" />
) : null}
{children}
</button>
);
}
);
Button.displayName = 'Button';

View File

@@ -0,0 +1,85 @@
import { HTMLAttributes, forwardRef } from 'react';
interface CardProps extends HTMLAttributes<HTMLDivElement> {
variant?: 'default' | 'bordered' | 'elevated';
padding?: 'none' | 'sm' | 'md' | 'lg';
}
const variantStyles: Record<string, string> = {
default: 'bg-white',
bordered: 'bg-white border-2 border-slate-200',
elevated: 'bg-white shadow-lg',
};
const paddingStyles: Record<string, string> = {
none: '',
sm: 'p-3',
md: 'p-4',
lg: 'p-6',
};
export const Card = forwardRef<HTMLDivElement, CardProps>(
({ className = '', variant = 'default', padding = 'md', children, ...props }, ref) => {
return (
<div
ref={ref}
className={`rounded-xl overflow-hidden transition-all duration-300 ${variantStyles[variant]} ${paddingStyles[padding]} ${className}`}
{...props}
>
{children}
</div>
);
}
);
Card.displayName = 'Card';
interface CardHeaderProps extends HTMLAttributes<HTMLDivElement> {}
export const CardHeader = forwardRef<HTMLDivElement, CardHeaderProps>(
({ className = '', children, ...props }, ref) => {
return (
<div
ref={ref}
className={`px-4 py-3 border-b border-slate-200 bg-slate-50 ${className}`}
{...props}
>
{children}
</div>
);
}
);
CardHeader.displayName = 'CardHeader';
interface CardBodyProps extends HTMLAttributes<HTMLDivElement> {}
export const CardBody = forwardRef<HTMLDivElement, CardBodyProps>(
({ className = '', children, ...props }, ref) => {
return (
<div ref={ref} className={`p-4 ${className}`} {...props}>
{children}
</div>
);
}
);
CardBody.displayName = 'CardBody';
interface CardFooterProps extends HTMLAttributes<HTMLDivElement> {}
export const CardFooter = forwardRef<HTMLDivElement, CardFooterProps>(
({ className = '', children, ...props }, ref) => {
return (
<div
ref={ref}
className={`px-4 py-3 border-t border-slate-200 bg-slate-50 ${className}`}
{...props}
>
{children}
</div>
);
}
);
CardFooter.displayName = 'CardFooter';

View File

@@ -0,0 +1,49 @@
import { useState } from 'react';
import Highlight from 'react-highlight';
import 'highlight.js/styles/atom-one-light.css';
interface CodeBlockProps {
code: string;
language?: 'json' | 'xml' | 'javascript' | 'typescript' | 'css' | 'html' | 'plaintext';
showLineNumbers?: boolean;
maxHeight?: string;
className?: string;
}
export function CodeBlock({
code,
language = 'plaintext',
showLineNumbers = false,
maxHeight = 'none',
className = '',
}: CodeBlockProps) {
const [copied, setCopied] = useState(false);
const handleCopy = async () => {
await navigator.clipboard.writeText(code);
setCopied(true);
setTimeout(() => setCopied(false), 2000);
};
return (
<div className={`relative group ${className}`}>
<div className="absolute right-2 top-2 opacity-0 group-hover:opacity-100 transition-opacity">
<button
onClick={handleCopy}
className="px-2 py-1 text-xs bg-slate-800 text-white rounded hover:bg-slate-700 transition-colors"
>
{copied ? 'Copied!' : 'Copy'}
</button>
</div>
<div
className="rounded-lg overflow-hidden border border-slate-200"
style={{ maxHeight, overflow: maxHeight !== 'none' ? 'auto' : 'visible' }}
>
<Highlight className={`language-${language} text-sm ${showLineNumbers ? 'line-numbers' : ''}`}>
{code || '// Empty'}
</Highlight>
</div>
</div>
);
}

View File

@@ -0,0 +1,68 @@
import { InputHTMLAttributes, forwardRef, useState } from 'react';
interface InputProps extends InputHTMLAttributes<HTMLInputElement> {
label?: string;
error?: string;
hint?: string;
icon?: React.ReactNode;
}
export const Input = forwardRef<HTMLInputElement, InputProps>(
({ label, error, hint, icon, className = '', id, ...props }, ref) => {
const [isFocused, setIsFocused] = useState(false);
const inputId = id || label?.toLowerCase().replace(/\s+/g, '-');
const baseStyles = `
w-full px-3 py-2
border rounded-lg
transition-all duration-200
focus:outline-none focus:ring-2 focus:border-transparent
disabled:bg-slate-100 disabled:cursor-not-allowed
${error
? 'border-red-300 focus:ring-red-500 focus:border-red-500'
: 'border-slate-300 focus:ring-blue-500 focus:border-blue-500'
}
${isFocused ? 'ring-2 ring-blue-500 border-transparent bg-blue-50' : 'bg-white'}
${icon ? 'pl-10' : ''}
${className}
`;
return (
<div className="w-full">
{label && (
<label htmlFor={inputId} className="block text-sm font-medium text-slate-700 mb-1">
{label}
</label>
)}
<div className="relative">
{icon && (
<div className="absolute left-3 top-1/2 -translate-y-1/2 text-slate-400">
{icon}
</div>
)}
<input
ref={ref}
id={inputId}
className={baseStyles}
onFocus={() => setIsFocused(true)}
onBlur={() => setIsFocused(false)}
{...props}
/>
</div>
{error && (
<p className="mt-1 text-sm text-red-600">{error}</p>
)}
{hint && !error && (
<p className="mt-1 text-sm text-slate-500">{hint}</p>
)}
</div>
);
}
);
Input.displayName = 'Input';

View File

@@ -0,0 +1,55 @@
import { SelectHTMLAttributes, forwardRef } from 'react';
interface SelectProps extends SelectHTMLAttributes<HTMLSelectElement> {
label?: string;
error?: string;
options: { value: string | number; label: string; disabled?: boolean }[];
}
export const Select = forwardRef<HTMLSelectElement, SelectProps>(
({ label, error, options, className = '', id, ...props }, ref) => {
const selectId = id || label?.toLowerCase().replace(/\s+/g, '-');
const baseStyles = `
w-full px-3 py-2
border rounded-lg
bg-white cursor-pointer
transition-all duration-200
focus:outline-none focus:ring-2 focus:border-transparent
disabled:bg-slate-100 disabled:cursor-not-allowed
${error
? 'border-red-300 focus:ring-red-500'
: 'border-slate-300 focus:ring-blue-500'
}
${className}
`;
return (
<div className="w-full">
{label && (
<label htmlFor={selectId} className="block text-sm font-medium text-slate-700 mb-1">
{label}
</label>
)}
<select ref={ref} id={selectId} className={baseStyles} {...props}>
{options.map((option) => (
<option
key={option.value}
value={option.value}
disabled={option.disabled}
>
{option.label}
</option>
))}
</select>
{error && (
<p className="mt-1 text-sm text-red-600">{error}</p>
)}
</div>
);
}
);
Select.displayName = 'Select';

View File

@@ -0,0 +1,75 @@
import { HTMLAttributes } from 'react';
export interface Tab {
id: string;
label: string;
badge?: string | number;
badgeVariant?: 'default' | 'success' | 'warning' | 'danger';
}
export interface TabsProps {
tabs: Tab[];
activeTab: string;
onChange: (tabId: string) => void;
className?: string;
}
export function Tabs({ tabs, activeTab, onChange, className = '', ...props }: TabsProps) {
return (
<div className={`border-b border-slate-200 ${className}`} {...props}>
<nav className="-mb-px flex gap-2" aria-label="Tabs">
{tabs.map((tab) => {
const isActive = tab.id === activeTab;
return (
<button
key={tab.id}
onClick={() => onChange(tab.id)}
className={`
flex items-center gap-2 px-4 py-2 text-sm font-medium rounded-t-lg
border-b-2 transition-all duration-200
${isActive
? 'border-blue-500 text-blue-600 bg-white'
: 'border-transparent text-slate-500 hover:text-slate-700 hover:border-slate-300 hover:bg-slate-50'
}
`}
aria-current={isActive ? 'page' : undefined}
>
{tab.label}
{tab.badge !== undefined && (
<span
className={`
inline-flex items-center px-2 py-0.5 rounded-full text-xs font-medium
${tab.badgeVariant === 'danger' || tab.badgeVariant === 'warning'
? 'bg-red-100 text-red-800'
: 'bg-slate-100 text-slate-600'
}
`}
>
{tab.badge}
</span>
)}
</button>
);
})}
</nav>
</div>
);
}
interface TabPanelProps extends HTMLAttributes<HTMLDivElement> {
isActive: boolean;
}
export function TabPanel({ isActive, children, className = '', ...props }: TabPanelProps) {
if (!isActive) return null;
return (
<div
className={`animate-fade-in ${className}`}
{...props}
>
{children}
</div>
);
}

View File

@@ -0,0 +1,16 @@
export { Button } from './Button';
export type { ButtonVariant, ButtonSize } from './Button';
export { Input } from './Input';
export { Card, CardHeader, CardBody, CardFooter } from './Card';
export { Select } from './Select';
export { Badge } from './Badge';
export type { BadgeVariant } from './Badge';
export { Tabs, TabPanel } from './Tabs';
export type { Tab } from './Tabs';
export { CodeBlock } from './CodeBlock';

View File

@@ -1,41 +1,57 @@
import { Env } from "../models/Env"; import { useRef } from 'react';
import { ConfigReader } from "../models/ConfigReader"; import { Upload, Download, FilePlus, File } from 'lucide-react';
import { Config } from "../models/Config"; import { Button } from '../components/ui';
import { ConfigBuilder } from "../builders/ConfigBuilder"; import { Config } from '../models/Config';
import { ConfigReader } from '../models/ConfigReader';
import { ConfigBuilder } from '../builders/ConfigBuilder';
import { Env } from '../models/Env';
export function FileChooser(props: { onSelected: (x: Config) => void, config?: Config }) { interface FileChooserProps {
async function handleFile(x: React.ChangeEvent<HTMLInputElement>) { onSelected: (config: Config) => void;
let file = x.target.files![0]; config?: Config;
}
console.log(file.name, file.type, file.size, "supported:", ConfigReader.isSupportedFormat(file)); export function FileChooser({ onSelected, config }: FileChooserProps) {
let reader = new ConfigReader(); const fileInputRef = useRef<HTMLInputElement>(null);
let cfg = await reader.parseFromFile(file);
async function handleFileChange(event: React.ChangeEvent<HTMLInputElement>) {
const file = event.target.files?.[0];
if (!file) return;
console.log(file.name, file.type, file.size, 'supported:', ConfigReader.isSupportedFormat(file));
const reader = new ConfigReader();
const cfg = await reader.parseFromFile(file);
if (cfg !== null) { if (cfg !== null) {
props.onSelected(cfg); onSelected(cfg);
}
// Reset input
if (fileInputRef.current) {
fileInputRef.current.value = '';
} }
} }
function handleNew() { function handleNew() {
let cfg = new Config(); const cfg = new Config();
cfg.addEnvs([new Env(0, "DEFAULT", [])]); cfg.setEnvs([new Env(0, 'DEFAULT', [])]);
cfg.addTemplate("{}"); cfg.setTemplate('{}');
props.onSelected(cfg); onSelected(cfg);
} }
function handleDownload() { function handleDownload() {
if (!props.config) { if (!config) {
alert("No configuration loaded"); alert('No configuration loaded');
return; return;
} }
const xmlContent = ConfigBuilder.buildFullXml(props.config); const xmlContent = ConfigBuilder.buildFullXml(config);
const filename = ConfigBuilder.generateFilename(); const filename = ConfigBuilder.generateFilename();
// Create blob and download const blob = new Blob([xmlContent], { type: 'text/xml' });
const blob = new Blob([xmlContent], { type: "text/xml" });
const url = URL.createObjectURL(blob); const url = URL.createObjectURL(blob);
const link = document.createElement("a"); const link = document.createElement('a');
link.href = url; link.href = url;
link.download = filename; link.download = filename;
document.body.appendChild(link); document.body.appendChild(link);
@@ -44,26 +60,63 @@ export function FileChooser(props: { onSelected: (x: Config) => void, config?: C
URL.revokeObjectURL(url); URL.revokeObjectURL(url);
} }
return ( const hasConfig = !!config && !config.isEmpty();
<>
<div className="col-2">
<button className="btn btn-primary" onClick={handleNew} >Create new</button>
</div>
<div className="col-auto">
<button
className="btn btn-success"
onClick={handleDownload}
disabled={!props.config}
title="Download full config template"
>
Download
</button>
</div>
<div className="col-1">or</div>
<div className="col"> return (
<input className="form-control" type="file" id="formFile" onChange={handleFile} /> <div className="bg-white rounded-xl shadow-md p-4 border border-slate-200">
<div className="flex items-center gap-4 flex-wrap">
{/* Logo/Brand */}
<div className="flex items-center gap-2">
<div className="w-10 h-10 bg-gradient-to-br from-blue-500 to-blue-600 rounded-lg flex items-center justify-center">
<File className="w-6 h-6 text-white" />
</div>
<span className="font-bold text-xl text-slate-800">Configucci</span>
</div>
<div className="h-8 w-px bg-slate-200" />
{/* Action Buttons */}
<div className="flex items-center gap-2 flex-1">
<Button
variant="primary"
onClick={handleNew}
icon={FilePlus}
size="sm"
>
New Config
</Button>
<Button
variant="success"
onClick={handleDownload}
icon={Download}
size="sm"
disabled={!hasConfig}
title={hasConfig ? 'Download full config template' : 'Load or create a config first'}
>
Download
</Button>
<span className="text-slate-400 text-sm">or</span>
{/* File Upload */}
<div className="flex-1">
<label
className="flex items-center justify-center gap-2 px-4 py-2 border-2 border-dashed border-slate-300 rounded-lg cursor-pointer hover:border-blue-400 hover:bg-blue-50 transition-all duration-200"
>
<Upload className="w-4 h-4 text-slate-400" />
<span className="text-sm text-slate-600">Upload XML Config</span>
<input
ref={fileInputRef}
type="file"
className="hidden"
accept=".xml,text/xml"
onChange={handleFileChange}
/>
</label>
</div>
</div>
</div>
</div> </div>
</>
); );
} }

View File

@@ -1,29 +1,29 @@
import { useState, useEffect } from "react"; import { useState, useEffect } from 'react';
import Highlight from 'react-highlight'; import { Pencil, Save, XCircle, CheckCircle } from 'lucide-react';
import 'highlight.js/styles/far.css'; import { Button, CodeBlock, Badge } from '../../components/ui';
import { Config } from "../../models/Config"; import { Config } from '../../models/Config';
interface ConfigTemplateProps { interface ConfigTemplateEditorProps {
config: Config; config: Config;
onSaved: (newContent: string) => void; onSaved: (newContent: string) => void;
} }
export function ConfigTemplate(props: ConfigTemplateProps) { export function ConfigTemplateEditor({ config, onSaved }: ConfigTemplateEditorProps) {
const [mode, setMode] = useState<'view' | 'edit'>('view'); const [mode, setMode] = useState<'view' | 'edit'>('view');
const [draftContent, setDraftContent] = useState(props.config.template.content); const [draftContent, setDraftContent] = useState(config.template.content);
const [originalContent, setOriginalContent] = useState(props.config.template.content); const [originalContent, setOriginalContent] = useState(config.template.content);
const [jsonError, setJsonError] = useState<string | null>(null); const [jsonError, setJsonError] = useState<string | null>(null);
// Sync draft when config changes (only in view mode) // Sync draft when config changes (only in view mode)
useEffect(() => { useEffect(() => {
if (mode === 'view') { if (mode === 'view') {
setDraftContent(props.config.template.content); setDraftContent(config.template.content);
} }
}, [props.config.template.content, mode]); }, [config.template.content, mode]);
function handleEdit() { function handleEdit() {
setOriginalContent(props.config.template.content); setOriginalContent(config.template.content);
setDraftContent(props.config.template.content); setDraftContent(config.template.content);
setJsonError(null); setJsonError(null);
setMode('edit'); setMode('edit');
} }
@@ -40,7 +40,7 @@ export function ConfigTemplate(props: ConfigTemplateProps) {
const sanitizedValue = draftContent.replace(/@[^@]+@/g, '1'); const sanitizedValue = draftContent.replace(/@[^@]+@/g, '1');
JSON.parse(sanitizedValue); JSON.parse(sanitizedValue);
setJsonError(null); setJsonError(null);
props.onSaved(draftContent); onSaved(draftContent);
setMode('view'); setMode('view');
} catch (e) { } catch (e) {
setJsonError((e as Error).message); setJsonError((e as Error).message);
@@ -52,10 +52,7 @@ export function ConfigTemplate(props: ConfigTemplateProps) {
// Validate JSON on every change // Validate JSON on every change
try { try {
if (value.trim()) { if (value.trim()) {
// Replace @placeholders@ with valid JSON values for validation
// Strategy: Replace ALL @...@ patterns with "1" (valid for both string and numeric contexts)
const sanitizedValue = value.replace(/@[^@]+@/g, '1'); const sanitizedValue = value.replace(/@[^@]+@/g, '1');
JSON.parse(sanitizedValue); JSON.parse(sanitizedValue);
setJsonError(null); setJsonError(null);
} else { } else {
@@ -88,57 +85,86 @@ export function ConfigTemplate(props: ConfigTemplateProps) {
const isValidJson = jsonError === null; const isValidJson = jsonError === null;
return ( return (
<div className="config-template-editor"> <div className="config-template-editor animate-fade-in">
{mode === 'view' ? ( {mode === 'view' ? (
<> <div className="space-y-3">
<div className="mb-2"> <div className="flex items-center justify-between">
<button className="btn btn-primary btn-sm" onClick={handleEdit}> <div className="flex items-center gap-2">
Edit <Badge variant="success">View Mode</Badge>
</button>
</div> </div>
<Highlight className="language-json"> <Button
{props.config.template.content || "{}"} variant="primary"
</Highlight> size="sm"
onClick={handleEdit}
icon={Pencil}
>
Edit Template
</Button>
</div>
<CodeBlock code={config.template.content || '{}'} language="json" maxHeight="500px" />
</div>
) : (
<div className="space-y-3">
<div className="flex items-center gap-2 flex-wrap">
<Button
variant="success"
size="sm"
onClick={handleSave}
disabled={!isValidJson}
icon={Save}
>
Save Changes
</Button>
<Button
variant="secondary"
size="sm"
onClick={handleRevert}
icon={XCircle}
>
Revert
</Button>
<Badge variant={isValidJson ? 'success' : 'danger'}>
{isValidJson ? (
<>
<CheckCircle className="w-3 h-3 mr-1" />
Valid JSON
</> </>
) : ( ) : (
<> <>
<div className="mb-2 d-flex gap-2 align-items-center"> <XCircle className="w-3 h-3 mr-1" />
<button Invalid JSON
className="btn btn-success btn-sm" </>
onClick={handleSave} )}
disabled={!isValidJson} </Badge>
>
Save
</button>
<button
className="btn btn-secondary btn-sm"
onClick={handleRevert}
>
× Revert
</button>
<span className={`ms-2 ${isValidJson ? 'text-success' : 'text-danger'}`}>
{isValidJson ? 'Valid JSON' : 'Invalid JSON'}
</span>
</div> </div>
{jsonError && ( {jsonError && (
<div className="alert alert-danger py-1 px-2 mb-2" style={{ fontSize: '0.875rem' }}> <div className="bg-red-50 border border-red-200 rounded-lg p-3">
{jsonError} <p className="text-sm text-red-700 font-mono">{jsonError}</p>
</div> </div>
)} )}
<textarea <textarea
className={`form-control font-monospace ${isValidJson ? 'border-success' : 'border-danger'}`} className={`
w-full p-3 font-mono text-sm rounded-lg border-2
focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent
transition-all duration-200
${isValidJson
? 'border-green-300 bg-green-50'
: 'border-red-300 bg-red-50'
}
`}
value={draftContent} value={draftContent}
onChange={(e) => handleDraftChange(e.target.value)} onChange={(e) => handleDraftChange(e.target.value)}
onKeyDown={handleKeyDown} onKeyDown={handleKeyDown}
rows={20} rows={20}
style={{ style={{ whiteSpace: 'pre', overflowX: 'auto' }}
fontFamily: 'monospace',
whiteSpace: 'pre',
overflowX: 'auto'
}}
spellCheck={false} spellCheck={false}
/> />
</> </div>
)} )}
</div> </div>
); );

View File

@@ -1,74 +1,73 @@
import { useState } from "react"; import { useState } from 'react';
import { Env } from "../../models/Env"; import { Tabs, TabPanel, CodeBlock } from '../../components/ui';
import Highlight from 'react-highlight' import { Env } from '../../models/Env';
import 'highlight.js/styles/far.css' import { Config } from '../../models/Config';
import { Builder } from "../../builders"; import { ConfigTemplateEditor } from './ConfigTemplate';
import { Config } from "../../models/Config"; import { Builder } from '../../builders';
import { ConfigTemplate } from "./ConfigTemplate";
interface ContentProps {
config: Config;
env: Env;
onTemplateSaved: (newContent: string) => void;
}
export function Content(props: { config: Config, env: Env, onTemplateSaved: (newContent: string) => void }) { export function Content({ config, env, onTemplateSaved }: ContentProps) {
const [selectTab, setTab] = useState(ContentType.Env); const [activeTab, setActiveTab] = useState('env');
// Validate placeholders for warning badge // Validate placeholders for warning badge
const missingPlaceholders = props.config.validatePlaceholders(); const missingPlaceholders = config.validatePlaceholders();
const hasValidationWarnings = missingPlaceholders.length > 0; const hasValidationWarnings = missingPlaceholders.length > 0;
const tabs: Array<{ id: string; label: string; badge?: string | number; badgeVariant?: 'warning' | 'danger' }> = [
{ id: 'env', label: 'Env' },
{
id: 'template',
label: 'Content Template',
badge: hasValidationWarnings ? '!' : undefined,
badgeVariant: hasValidationWarnings ? 'warning' : undefined,
},
{ id: 'raw', label: 'Raw Template' },
{ id: 'test', label: 'Test-filled' },
];
return ( return (
<> <div className="bg-white rounded-xl shadow-lg border border-slate-200 overflow-hidden">
<ContentTabs onSelected={(id) => setTab(id)} selectedTab={selectTab} hasValidationWarnings={hasValidationWarnings} /> <Tabs tabs={tabs} activeTab={activeTab} onChange={setActiveTab} />
<div className="">
{selectTab == ContentType.Env ? (<ContentParams env={props.env} />) : ""} <div className="p-4">
{selectTab == ContentType.Json ? (<ConfigTemplate config={props.config} onSaved={props.onTemplateSaved} />) : ""} <TabPanel isActive={activeTab === 'env'}>
{selectTab == ContentType.Raw ? (<ContentRaw config={props.config} env={props.env} />) : ""} <ContentParams env={env} />
{selectTab == ContentType.Test ? (<ContentTest config={props.config} env={props.env} />) : ""} </TabPanel>
<TabPanel isActive={activeTab === 'template'}>
<ConfigTemplateEditor config={config} onSaved={onTemplateSaved} />
</TabPanel>
<TabPanel isActive={activeTab === 'raw'}>
<ContentRaw config={config} env={env} />
</TabPanel>
<TabPanel isActive={activeTab === 'test'}>
<ContentTest config={config} env={env} />
</TabPanel>
</div>
</div> </div>
</>
); );
} }
enum ContentType { function ContentParams({ env }: { env: Env }) {
Env = 0, const xml = Builder.getEnv(env).build();
Json = 1,
Raw = 2,
Test = 3
}
function ContentTabs(props: { onSelected: (id: ContentType) => void, selectedTab: ContentType, hasValidationWarnings: boolean }) {
function clickHandler(type: ContentType) {
props.onSelected(type);
}
function isActive(type: ContentType): string {
return type == props.selectedTab ? " active" : " ";
}
return ( return (
<ul className="nav nav-pills nav-fill"> <div className="animate-fade-in">
<li className="nav-item"> <CodeBlock code={xml} language="xml" maxHeight="500px" />
<a className={"nav-link" + isActive(ContentType.Env)} aria-current="page" href="#" onClick={() => clickHandler(ContentType.Env)}>Env</a> </div>
</li> );
<li className="nav-item">
<a className={"nav-link" + isActive(ContentType.Json)} href="#" onClick={() => clickHandler(ContentType.Json)} >
Content Template
{props.hasValidationWarnings && (
<span className="badge bg-warning text-dark ms-1">!</span>
)}
</a>
</li>
<li className="nav-item">
<a className={"nav-link" + isActive(ContentType.Raw)} href="#" onClick={() => clickHandler(ContentType.Raw)}>Raw template</a>
</li>
<li className="nav-item">
<a className={"nav-link" + isActive(ContentType.Test)} href="#" onClick={() => clickHandler(ContentType.Test)}>Test-filled template</a>
</li>
</ul>
)
} }
function ContentRaw(props: { config: Config, env: Env }) { function ContentRaw({ config }: { config: Config; env: Env }) {
const envsXml = Builder.getEnvs(props.config.envs); const envsXml = Builder.getEnvs(config.envs);
const templateContent = props.config.template.content; const templateContent = config.template.content;
const xml = `<engine> const xml = `<engine>
${envsXml} ${envsXml}
@@ -78,46 +77,48 @@ ${templateContent}
</engine>`; </engine>`;
return ( return (
<> <div className="animate-fade-in">
<Highlight className="language-xml"> <CodeBlock code={xml} language="xml" maxHeight="500px" />
{xml} </div>
</Highlight> );
</>
)
} }
function ContentTest(props: { config: Config, env: Env }) { function ContentTest({ config, env }: { config: Config; env: Env }) {
const [selectedEnvId, setSelectedEnvId] = useState(props.env.id); const [selectedEnvId, setSelectedEnvId] = useState(env.id ?? 0);
const selectedEnv = props.config.envs.find(e => e.id === selectedEnvId) ?? props.env; const selectedEnv = config.envs.find(e => e.id === selectedEnvId) ?? env;
const filledTemplate = fillTemplate(props.config, selectedEnv); const filledTemplate = fillTemplate(config, selectedEnv);
const selectOptions = config.envs.map((e) => ({
value: e.id ?? 0,
label: e.name ?? 'Unknown',
}));
return ( return (
<> <div className="animate-fade-in space-y-4">
<div className="mb-2"> <div className="flex items-center gap-2">
<label className="form-label">Select Environment:</label> <label className="text-sm font-medium text-slate-700">Select Environment:</label>
<select <select
className="form-select w-auto d-inline-block" className="px-3 py-1.5 border border-slate-300 rounded-lg text-sm focus:outline-none focus:ring-2 focus:ring-blue-500"
value={selectedEnvId} value={selectedEnvId}
onChange={(e) => setSelectedEnvId(Number(e.target.value))} onChange={(e) => setSelectedEnvId(Number(e.target.value))}
> >
{props.config.envs.map(env => ( {selectOptions.map((opt) => (
<option key={env.id} value={env.id}>{env.name}</option> <option key={opt.value} value={opt.value}>{opt.label}</option>
))} ))}
</select> </select>
</div> </div>
<Highlight className="language-json">
{filledTemplate} <CodeBlock code={filledTemplate} language="json" maxHeight="500px" />
</Highlight> </div>
</> );
)
} }
function fillTemplate(config: Config, env: Env): string { function fillTemplate(config: Config, env: Env): string {
const defaultEnv = config.envs.find(e => e.name === "DEFAULT"); const defaultEnv = config.envs.find((e) => e.name === 'DEFAULT');
const paramMap = new Map<string, string>(); const paramMap = new Map<string, string>();
// First, load DEFAULT values as fallback // Load DEFAULT values first
if (defaultEnv) { if (defaultEnv) {
for (const param of defaultEnv.params) { for (const param of defaultEnv.params) {
if (param.name && param.value !== undefined) { if (param.name && param.value !== undefined) {
@@ -126,7 +127,7 @@ function fillTemplate(config: Config, env: Env): string {
} }
} }
// Then, override with selected environment values (precedence) // Override with selected environment values
for (const param of env.params) { for (const param of env.params) {
if (param.name && param.value !== undefined) { if (param.name && param.value !== undefined) {
paramMap.set(param.name, param.value); paramMap.set(param.name, param.value);
@@ -138,20 +139,10 @@ function fillTemplate(config: Config, env: Env): string {
filledTemplate = filledTemplate.replace(placeholderRegex, (_, paramName) => { filledTemplate = filledTemplate.replace(placeholderRegex, (_, paramName) => {
if (paramName === Config.ENV_NAME_PARAM) { if (paramName === Config.ENV_NAME_PARAM) {
return env.name ?? "--NO-VALUE--"; return env.name ?? '--NO-VALUE--';
} }
return paramMap.get(paramName) ?? "--NO-VALUE--"; return paramMap.get(paramName) ?? '--NO-VALUE--';
}); });
return filledTemplate; return filledTemplate;
} }
function ContentParams(props: { env: Env }) {
const bldr = Builder.getEnv(props.env);
return (
<Highlight className="language-xml">
{bldr.build()}
</Highlight>
)
}

View File

@@ -1,125 +1,157 @@
import { useState, useEffect } from "react"; import { useState, useEffect } from 'react';
import { AddEvent, AppEvent, DelEvent, Env, UpdateEvent } from "../../models/Env"; import { Plus, Minus } from 'lucide-react';
import { EnvParam } from "../../models/EnvParam"; import { Button, Select, Card, CardBody } from '../../components/ui';
import { EnvironmentParam } from "./EnvironmentParam"; import { Env, AddEvent, RemoveEvent, UpdateEvent } from '../../models/Env';
import { EnvParam } from '../../models/EnvParam';
import { EnvironmentParam } from './EnvironmentParam';
export function Environment(props: { envs: Env[], onChanged: (env: Env) => void, onSelected: (envId: number) => void, onAdd: (env: Env) => number, onRemove: (envId: number) => void }) { interface EnvironmentProps {
const [currEnvId, setCurrEnvId] = useState(props.envs[0]?.id); envs: Env[];
onChanged: (env: Env) => void;
onSelected: (envId: number) => void;
onAdd: (env: Env) => number;
onRemove: (envId: number) => void;
}
// Sync currEnvId when props.envs changes export function Environment({ envs, onChanged, onSelected, onAdd, onRemove }: EnvironmentProps) {
const [currEnvId, setCurrEnvId] = useState<number>(envs[0]?.id ?? 0);
// Sync currEnvId when envs changes
useEffect(() => { useEffect(() => {
if (!props.envs.find(e => e.id === currEnvId)) { if (!envs.find(e => e.id === currEnvId)) {
setCurrEnvId(props.envs[0]?.id); setCurrEnvId(envs[0]?.id ?? 0);
} }
}, [props.envs, currEnvId]); }, [envs, currEnvId]);
const currEnv = props.envs.find(e => e.id === currEnvId) ?? props.envs[0]; const currEnv = envs.find(e => e.id === currEnvId) ?? envs[0];
function handleParamChanged(e: AppEvent<EnvParam>) { function handleParamChanged(event: AddEvent<EnvParam> | RemoveEvent<EnvParam> | UpdateEvent<EnvParam>) {
let newEnv: Env = currEnv;
let isChanged = false; let isChanged = false;
let env = currEnv;
if (e instanceof DelEvent) { if (event instanceof RemoveEvent) {
env = currEnv.delParam(e.payload); newEnv = currEnv.delParam(event.payload);
isChanged = true; isChanged = true;
} } else if (event instanceof AddEvent) {
newEnv = currEnv.addParams(event.payload);
if (e instanceof AddEvent) {
env = currEnv.addParams(e.payload);
isChanged = true; isChanged = true;
} } else if (event instanceof UpdateEvent) {
newEnv = currEnv.updateParams(event.payload);
if (e instanceof UpdateEvent) {
env = currEnv.updateParams(e.payload);
isChanged = true; isChanged = true;
} }
if (isChanged) { if (isChanged) {
props.onChanged(env); onChanged(newEnv);
setCurrEnvId(env.id); setCurrEnvId(newEnv.id ?? 0);
} }
} }
function handleAddEnv() { function handleAddEnv() {
const name = prompt("Enter new environment name:"); const name = prompt('Enter new environment name:');
if (!name || name.trim() === "") return; if (!name || name.trim() === '') return;
// Calculate next integer ID based on max existing ID // Calculate next integer ID based on max existing ID
const maxId = props.envs.reduce((max, e) => Math.max(max, e.id ?? 0), -1); const maxId = envs.reduce((max, e) => Math.max(max, e.id ?? 0), -1);
const newId = maxId + 1; const newId = maxId + 1;
const newEnv = new Env( const newEnv = new Env(newId, name.trim(), [...currEnv.params]);
newId, const newIdx = onAdd(newEnv);
name.trim(), setCurrEnvId(newEnv.id ?? 0);
[...currEnv.params] onSelected(newIdx);
);
// Parent synchronously adds the env and returns the index
const newIdx = props.onAdd(newEnv);
setCurrEnvId(newEnv.id);
props.onSelected(newIdx);
} }
function handleRemoveEnv() { function handleRemoveEnv() {
if (currEnv.isDefault()) { if (currEnv.isDefault()) {
alert("Cannot remove DEFAULT environment"); alert('Cannot remove DEFAULT environment');
return; return;
} }
if (!confirm(`Remove environment "${currEnv.name}"?`)) return; if (!confirm(`Remove environment "${currEnv.name}"?`)) return;
const idx = props.envs.findIndex(x => x.id === currEnv.id); const idx = envs.findIndex(x => x.id === currEnv.id);
if (idx > -1 && currEnv.id !== undefined) { if (idx > -1 && currEnv.id !== undefined) {
// Let parent handle the removal onRemove(currEnv.id);
props.onRemove(currEnv.id);
const newIdx = Math.max(0, idx - 1); const newIdx = Math.max(0, idx - 1);
const newEnv = props.envs[newIdx]; const newEnv = envs[newIdx];
if (newEnv?.id !== undefined) { if (newEnv?.id !== undefined) {
setCurrEnvId(newEnv.id); setCurrEnvId(newEnv.id);
} }
props.onSelected(newIdx); onSelected(newIdx);
} }
} }
const selectOptions = props.envs.map((x) => <option key={x.id} value={x.id} >{x.name}</option>); const selectOptions = envs.map((x) => ({
const paramCtrls = currEnv.params.map(x => value: x.id ?? 0,
<EnvironmentParam key={`${currEnv.id}-${x.id}`} label: x.name ?? 'Unknown',
}));
const paramCtrls = currEnv.params.map((x) => (
<EnvironmentParam
key={`${currEnv.id}-${x.id}`}
param={new EnvParam(x.id, x.name, x.value)} param={new EnvParam(x.id, x.name, x.value)}
onChanged={handleParamChanged} onChanged={handleParamChanged}
isNew={false} />); isNew={false}
/>
));
return ( return (
<> <Card variant="bordered" padding="none" className="h-full">
<div className="row g-0"> <CardBody className="space-y-4">
<div className="col"> {/* Environment Selector */}
<select <div className="flex gap-2">
id="environments" <div className="flex-1">
name="environments" <Select
aria-label="Environments" label="Environment"
className="form-select"
value={currEnvId} value={currEnvId}
onChange={x => { options={selectOptions}
let id = Number.parseInt(x.target.value); onChange={(e) => {
const id = Number.parseInt(e.target.value);
setCurrEnvId(id); setCurrEnvId(id);
props.onSelected(id); onSelected(id);
}}> }}
{selectOptions} id="environments"
</select> />
</div> </div>
<div className="col-auto ms-2">
<button className="btn btn-success" onClick={handleAddEnv} title="Add environment"></button> <div className="flex flex-col justify-center gap-2 pt-6">
</div> <div className="flex gap-2">
<div className="col-auto ms-2"> <Button
<button className="btn btn-danger" onClick={handleRemoveEnv} title="Remove environment" disabled={currEnv.isDefault()}></button> variant="success"
size="sm"
onClick={handleAddEnv}
title="Add environment"
icon={Plus}
/>
<Button
variant="danger"
size="sm"
onClick={handleRemoveEnv}
title="Remove environment"
icon={Minus}
disabled={currEnv.isDefault()}
/>
</div> </div>
</div> </div>
<div className="row">Params</div> </div>
{/* Parameters Section */}
<div>
<h3 className="text-sm font-semibold text-slate-700 mb-3 uppercase tracking-wide">
Parameters
</h3>
<div className="space-y-2">
{paramCtrls} {paramCtrls}
<EnvironmentParam key={`${currEnv.id}-new`}
param={new EnvParam(-1, "", "")} <EnvironmentParam
key={`${currEnv.id}-new`}
param={new EnvParam(-1, '', '')}
onChanged={handleParamChanged} onChanged={handleParamChanged}
isNew={true} isNew={true}
/> />
</> </div>
</div>
</CardBody>
</Card>
); );
} }

View File

@@ -1,67 +1,103 @@
import { useState } from "react"; import { useState } from 'react';
import { EnvParam } from "../../models/EnvParam"; import { Check, Minus } from 'lucide-react';
import { AppEvent } from "../../models/Env"; import { Button, Input } from '../../components/ui';
import { EnvParam } from '../../models/EnvParam';
import { AddEvent, RemoveEvent, UpdateEvent } from '../../models/Env';
interface EnvironmentParamProps {
param: EnvParam;
onChanged: (event: AddEvent<EnvParam> | RemoveEvent<EnvParam> | UpdateEvent<EnvParam>) => void;
isNew: boolean;
}
export function EnvironmentParam(props: { param: EnvParam; onChanged: (e: AppEvent<EnvParam>) => void, isNew: boolean }) { export function EnvironmentParam({ param, onChanged, isNew }: EnvironmentParamProps) {
const [param, setParam] = useState(props.param); const [localParam, setLocalParam] = useState(param);
const [isFocused, setIsFocused] = useState(false); const [isFocused, setIsFocused] = useState(false);
function doSet(x: string, act: (x: string) => void) { function updateParam(updates: Partial<EnvParam>) {
act(x); const updated = localParam.update(updates).markChanged(true);
setParam(param.Changed(true)); setLocalParam(updated);
} }
function handleChange() { function handleChange() {
if (!param.isChanged) if (!localParam.isChanged) return;
return;
let newParam = param.Changed(false); const savedParam = localParam.markChanged(false);
if (!props.isNew) {
props.onChanged(AppEvent.update(newParam)); if (!isNew) {
onChanged(UpdateEvent.update(savedParam));
} }
setParam(newParam); setLocalParam(savedParam);
} }
function handleAdd() { function handleAdd() {
props.onChanged(AppEvent.add(param)); onChanged(AddEvent.add(localParam));
setParam(new EnvParam(0, "", "")); setLocalParam(new EnvParam(0, '', ''));
} }
function handleKeyUp(x: React.KeyboardEvent<HTMLInputElement>) { function handleKeyUp(event: React.KeyboardEvent<HTMLInputElement>) {
if (x.key === "Enter") { handleChange(); } if (event.key === 'Enter') {
handleChange();
} }
}
const isChangedClass = localParam.isChanged ? 'ring-2 ring-yellow-400 border-yellow-400' : '';
const focusedClass = isFocused ? 'bg-blue-50' : '';
return ( return (
<div className={"row px-0" + (param.isChanged ? "border border-warning" : "")} <div
style={isFocused ? { backgroundColor: "lightskyblue", padding: "1px 0" } : { padding: "1px 0" }}> className={`
<div className="col-4 mx-0 px-0"> grid grid-cols-12 gap-2 p-2 rounded-lg transition-all duration-200
<input type="text" ${isChangedClass}
className="form-control" ${focusedClass ? 'bg-blue-50' : 'bg-white'}
style={{ backgroundColor: "rgba(170, 170, 247, 0.16)" }} hover:bg-slate-50
value={param.name} `}
onChange={x => doSet(x.target.value, (v) => param.name = v)} >
<div className="col-span-4">
<Input
value={localParam.name ?? ''}
onChange={(e) => updateParam({ name: e.target.value })}
onBlur={() => { handleChange(); setIsFocused(false); }} onBlur={() => { handleChange(); setIsFocused(false); }}
onFocus={() => setIsFocused(true)} onFocus={() => setIsFocused(true)}
onKeyUp={handleKeyUp} onKeyUp={handleKeyUp}
placeholder="name" placeholder="Parameter name"
aria-label="name" /> className="text-sm"
/>
</div> </div>
<div className="col mx-0 px-0">
<input type="text" <div className="col-span-7">
className="form-control" <Input
value={param.value} value={localParam.value ?? ''}
onChange={x => doSet(x.target.value, v => param.value = v)} onChange={(e) => updateParam({ value: e.target.value })}
onBlur={() => { handleChange(); setIsFocused(false); }} onBlur={() => { handleChange(); setIsFocused(false); }}
onFocus={() => setIsFocused(true)} onFocus={() => setIsFocused(true)}
onKeyUp={handleKeyUp} onKeyUp={handleKeyUp}
placeholder="value" placeholder="Parameter value"
aria-label="value" /> className="text-sm"
/>
</div> </div>
<div className="col-1 mx-0 px-0" >
<button className="btn btn-success" hidden={!props.isNew} onClick={handleAdd}></button> <div className="col-span-1 flex items-center justify-center">
<button className="btn btn-warning" hidden={props.isNew} onClick={() => props.onChanged(AppEvent.del(param))} tabIndex={-1}></button> {isNew ? (
<Button
variant="success"
size="sm"
onClick={handleAdd}
title="Add parameter"
icon={Check}
className="px-2"
/>
) : (
<Button
variant="secondary"
size="sm"
onClick={() => onChanged(new RemoveEvent(localParam))}
title="Remove parameter"
icon={Minus}
className="px-2 text-red-600 hover:text-red-700 hover:bg-red-50"
/>
)}
</div> </div>
</div> </div>
); );

View File

@@ -0,0 +1,139 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
body {
@apply bg-gradient-to-br from-slate-50 to-slate-100 min-h-screen;
font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
}
@layer components {
.btn {
@apply px-4 py-2 rounded-lg font-medium transition-all duration-200
focus:outline-none focus:ring-2 focus:ring-offset-2
disabled:opacity-50 disabled:cursor-not-allowed;
}
.btn-primary {
@apply btn bg-primary-600 text-white hover:bg-primary-700
focus:ring-primary-500 shadow-md hover:shadow-lg;
}
.btn-success {
@apply btn bg-success-600 text-white hover:bg-success-700
focus:ring-success-500 shadow-md hover:shadow-lg;
}
.btn-danger {
@apply btn bg-danger-600 text-white hover:bg-danger-700
focus:ring-danger-500 shadow-md hover:shadow-lg;
}
.btn-secondary {
@apply btn bg-slate-200 text-slate-700 hover:bg-slate-300
focus:ring-slate-400 shadow-sm;
}
.btn-sm {
@apply px-3 py-1.5 text-sm;
}
.btn-icon {
@apply p-2 rounded-lg transition-all duration-200
hover:bg-slate-100 focus:outline-none focus:ring-2 focus:ring-primary-500;
}
.input {
@apply w-full px-3 py-2 border border-slate-300 rounded-lg
focus:outline-none focus:ring-2 focus:ring-primary-500 focus:border-transparent
transition-all duration-200
placeholder:text-slate-400;
}
.input-focused {
@apply ring-2 ring-primary-500 border-transparent bg-primary-50;
}
.card {
@apply bg-white rounded-xl shadow-lg border border-slate-200
overflow-hidden transition-all duration-300;
}
.card-header {
@apply px-4 py-3 border-b border-slate-200 bg-slate-50;
}
.card-body {
@apply p-4;
}
.select {
@apply w-full px-3 py-2 border border-slate-300 rounded-lg
focus:outline-none focus:ring-2 focus:ring-primary-500 focus:border-transparent
bg-white cursor-pointer transition-all duration-200;
}
.tab {
@apply px-4 py-2 text-sm font-medium rounded-t-lg
transition-all duration-200 border-b-2 border-transparent
hover:bg-slate-100 cursor-pointer;
}
.tab-active {
@apply tab bg-white border-primary-500 text-primary-600;
}
.tab-inactive {
@apply tab text-slate-600;
}
.badge {
@apply inline-flex items-center px-2 py-0.5 rounded-full text-xs font-medium;
}
.badge-warning {
@apply badge bg-warning-100 text-warning-800;
}
.badge-success {
@apply badge bg-success-100 text-success-800;
}
.badge-danger {
@apply badge bg-danger-100 text-danger-800;
}
.label {
@apply block text-sm font-medium text-slate-700 mb-1;
}
}
@layer utilities {
.animate-fade-in {
animation: fadeIn 0.3s ease-in-out;
}
.animate-slide-in {
animation: slideIn 0.3s ease-out;
}
.scrollbar-thin {
scrollbar-width: thin;
scrollbar-color: #cbd5e1 transparent;
}
.scrollbar-thin::-webkit-scrollbar {
width: 6px;
}
.scrollbar-thin::-webkit-scrollbar-track {
background: transparent;
}
.scrollbar-thin::-webkit-scrollbar-thumb {
background-color: #cbd5e1;
border-radius: 3px;
}
}

View File

@@ -1,152 +1,159 @@
import { Env } from "./Env"; import { Env } from './Env';
/**
* Configuration template with placeholder support
*/
export class ConfigTemplate { export class ConfigTemplate {
public static Empty: ConfigTemplate = new ConfigTemplate(); public static readonly Empty: ConfigTemplate = new ConfigTemplate();
constructor(text: string = "") { private _contentText: string;
this._contentText = text; private _params: string[];
this.extractParams();
constructor(contentText: string = '') {
this._contentText = contentText;
this._params = this.extractParams();
} }
private _contentText: string = "";
private _params: string[] = [];
public get content(): string { public get content(): string {
return this._contentText; return this._contentText;
} }
/**
* Backward compatibility getter
*/
public get Params(): string[] { public get Params(): string[] {
return this.params;
}
public get params(): string[] {
return [...this._params]; return [...this._params];
} }
private extractParams() { /**
let regex = /@(\w+)@/g; * Extracts @placeholder@ patterns from template content
let matches; */
let paramsSet = new Set<string>(); private extractParams(): string[] {
const regex = /@(\w+)@/g;
const paramsSet = new Set<string>();
let match;
while ((matches = regex.exec(this._contentText)) !== null) { while ((match = regex.exec(this._contentText)) !== null) {
if (matches.length > 1) { paramsSet.add(match[1]);
paramsSet.add(matches[1]); }
return Array.from(paramsSet);
} }
} }
this._params = Array.from(paramsSet); /**
} * Main configuration container
*/
}
export class Config { export class Config {
public static get ENV_NAME_PARAM(): string { return "env_name" }; public static readonly ENV_NAME_PARAM = 'env_name';
public envs: Env[] = []; public envs: Env[] = [];
public template: ConfigTemplate = ConfigTemplate.Empty; public template: ConfigTemplate = ConfigTemplate.Empty;
addEnvs(envs: Env[]) { /**
* Sets environments (backward compatibility)
*/
public addEnvs(envs: Env[]): void {
this.envs = envs; this.envs = envs;
} }
addTemplate(text: string) { /**
this.template = new ConfigTemplate(text); * Sets environments
*/
public setEnvs(envs: Env[]): void {
this.envs = envs;
} }
getTemplateAsJson(): string { /**
* Sets template content (backward compatibility)
*/
public addTemplate(content: string): void {
this.setTemplate(content);
}
/**
* Sets template content
*/
public setTemplate(content: string): void {
this.template = new ConfigTemplate(content);
}
/**
* Gets template as JSON string
*/
public getTemplateAsJson(): string {
try { try {
return this.template.content; return this.template.content;
} catch (error) { } catch {
console.error("Error converting template content to JSON:", error); return '{}';
return "{}";
} }
} }
/** /**
* Updates the template JSON by adding/updating params from the given environment. * Updates template by adding placeholders for environment params
* Params are added as "!!! paramName": "@paramName@" placeholder pairs.
* If a param's @placeholder@ already exists in template, it won't be added.
* Existing template content is preserved.
*/ */
updateTemplateFromEnv(env: Env) { public updateTemplateFromEnv(env: Env): void {
let templateObj: Record<string, any> = {}; let templateObj: Record<string, any> = {};
// Try to parse existing template as JSON // Try to parse existing template
try { try {
if (this.template.content.trim()) { if (this.template.content.trim()) {
templateObj = JSON.parse(this.template.content); templateObj = JSON.parse(this.template.content);
} }
} catch (e) { } catch {
// If parsing fails, start with empty object // Start fresh if invalid JSON
console.warn("Template is not valid JSON, starting fresh");
} }
// Add/update params from the environment as placeholders // Add placeholders for params that don't exist yet
for (const param of env.params) { for (const param of env.params) {
if (param.name && param.name.trim() !== "") { if (param.name && param.name.trim()) {
const placeholderValue = `@${param.name}@`; const placeholder = `@${param.name}@`;
// Check if this placeholder already exists anywhere in the template if (!this.template.content.includes(placeholder)) {
const placeholderAlreadyExists = this.template.content.includes(placeholderValue); templateObj[`!!! ${param.name}`] = placeholder;
if (!placeholderAlreadyExists) {
const placeholderKey = `!!! ${param.name}`;
templateObj[placeholderKey] = placeholderValue;
} }
} }
} }
// Convert back to formatted JSON string this.template = new ConfigTemplate(JSON.stringify(templateObj, null, 4));
const newTemplateContent = JSON.stringify(templateObj, null, 4);
this.template = new ConfigTemplate(newTemplateContent);
}
validateParams(): string[] {
const envKeys = this.envs.map(env => env.params.map(param => param.name)).flat();
const missingParams = this.template.Params.filter(param => param != Config.ENV_NAME_PARAM && !envKeys.includes(param));
if (missingParams.length > 0) {
console.error("Template: missing parameters in environments:", missingParams);
}
return missingParams;
} }
/** /**
* Validates that all @placeholders@ in template have corresponding params. * Validates that all template placeholders have corresponding params (backward compatibility)
* Checks DEFAULT env first, then all custom envs.
* Returns array of placeholder names that are not defined.
*/ */
validatePlaceholders(): string[] { public validateParams(): string[] {
const defaultEnv = this.envs.find(e => e.name === "DEFAULT"); return this.validatePlaceholders();
const customEnvs = this.envs.filter(e => e.name !== "DEFAULT");
// Collect all param names from DEFAULT
const defaultParamNames = new Set(
defaultEnv?.params.map(p => p.name).filter(n => n && n.trim() !== "") || []
);
// Collect all param names from all custom envs
const customParamNames = new Set(
customEnvs.flatMap(e => e.params.map(p => p.name).filter(n => n && n.trim() !== ""))
);
// Extract all @placeholders@ from template
const placeholderRegex = /@(\w+)@/g;
const placeholdersInTemplate = new Set<string>();
let match;
while ((match = placeholderRegex.exec(this.template.content)) !== null) {
placeholdersInTemplate.add(match[1]);
} }
// Find placeholders that don't have matching params /**
const missingParams: string[] = []; * Validates that all template placeholders have corresponding params
for (const placeholder of placeholdersInTemplate) { */
if (placeholder === Config.ENV_NAME_PARAM) continue; // Skip built-in public validatePlaceholders(): string[] {
const defaultEnv = this.envs.find(e => e.name === 'DEFAULT');
const customEnvs = this.envs.filter(e => e.name !== 'DEFAULT');
// Collect param names from DEFAULT
const defaultParamNames = new Set(
defaultEnv?.getParamNames() || []
);
// Collect param names from all custom envs
const customParamNames = new Set(
customEnvs.flatMap(e => e.getParamNames())
);
// Find missing placeholders
const missingParams: string[] = [];
for (const placeholder of this.template.params) {
if (placeholder === Config.ENV_NAME_PARAM) continue;
// Check if exists in DEFAULT or in ANY custom env
const inDefault = defaultParamNames.has(placeholder); const inDefault = defaultParamNames.has(placeholder);
const inCustom = customParamNames.has(placeholder); const inCustom = customParamNames.has(placeholder);
// Valid if: in DEFAULT, or in at least one custom env
if (!inDefault && !inCustom) { if (!inDefault && !inCustom) {
missingParams.push(placeholder); missingParams.push(placeholder);
} }
@@ -154,5 +161,32 @@ export class Config {
return missingParams; return missingParams;
} }
/**
* Creates a deep copy of the config
*/
public clone(): Config {
const cloned = new Config();
cloned.envs = [...this.envs];
cloned.template = this.template;
return cloned;
} }
/**
* Checks if config is empty (no environments or only DEFAULT with no params and empty template)
*/
public isEmpty(): boolean {
if (this.envs.length === 0) {
return true;
}
// Check if only DEFAULT exists with no params
if (this.envs.length === 1 && this.envs[0].name === 'DEFAULT') {
const hasParams = this.envs[0].params.length > 0;
const hasTemplate = this.template.content.trim() && this.template.content !== '{}';
return !hasParams && !hasTemplate;
}
return false;
}
}

View File

@@ -1,135 +1,115 @@
import { Env } from "./Env"; import { Env } from './Env';
import { EnvParam } from "./EnvParam"; import { EnvParam } from './EnvParam';
import { Config } from "./Config"; import { Config } from './Config';
/** /**
* A utility class for parsing XML configuration files into a structured Config object. * XML Configuration Parser
* * Parses XML files into Config objects
* Supports both string-based and file-based parsing, extracting environment definitions
* and their associated parameters. The expected XML format includes:
* - Root element with tag "engine"
* - Child elements "environment" with a "name" attribute
* - Nested "parameter" elements with "name" and "value" attributes
*
* Provides validation and error handling for missing attributes.
* Includes utility method to check if a file is in the supported XML format.
*/ */
export class ConfigReader { export class ConfigReader {
private readonly rootTag = "engine"; private readonly rootTag = 'engine';
private readonly envTag = 'environment';
private readonly envTag = "environment"; private readonly envNameAttr = 'name';
private readonly envNameAttr = "name"; private readonly paramTag = 'parameter';
private readonly paramNameAttr = 'name';
private readonly paramTag = "parameter"; private readonly paramValAttr = 'value';
private readonly paramNameAttr = "name"; private readonly templateTag = 'template';
private readonly paramValAttr = "value";
private readonly templateTag = "template";
/** /**
* Parses an XML string into a Config object. * Parses XML string into Config
*
* @param xmlString - The XML content as a string
* @param fileType - The MIME type of the XML (default: 'application/xml')
* @returns A Config object containing parsed environments and parameters, or null if parsing fails
*/ */
public parseFromString(xmlString: string, fileType: DOMParserSupportedType = 'application/xml'): Config | null { public parseFromString(xmlString: string, fileType: DOMParserSupportedType = 'application/xml'): Config | null {
let parser = new DOMParser(); const parser = new DOMParser();
let xml = parser.parseFromString(xmlString, fileType); const xml = parser.parseFromString(xmlString, fileType);
this.checkTemplate(xml); this.validateTemplate(xml);
let config = new Config();
let envs = this.parseEnvs(xml.querySelectorAll(`${this.rootTag}>${this.envTag}`)); const config = new Config();
config.addEnvs(envs); const envs = this.parseEnvs(xml.querySelectorAll(`${this.rootTag}>${this.envTag}`));
config.setEnvs(envs);
let tmplElement = xml.getElementsByTagName(this.templateTag)[0]; const tmplElement = xml.getElementsByTagName(this.templateTag)[0];
let tmplText = tmplElement?.textContent?.trim(); const tmplText = tmplElement?.textContent?.trim();
if (!tmplText) { if (!tmplText) {
throw new Error(`Template content is missing or empty in <${this.templateTag}> element.`); throw new Error(`Template content is missing in <${this.templateTag}> element.`);
} }
config.setTemplate(tmplText);
config.addTemplate(tmplText);
console.log("parsed from string res:", config);
return config; return config;
} }
/** /**
* Parses an XML file into a Config object asynchronously. * Parses XML file into Config
*
* @param file - The File object representing the XML file
* @returns A Promise resolving to a Config object or null if parsing fails
*/ */
public async parseFromFile(file: File): Promise<Config | null> { public async parseFromFile(file: File): Promise<Config | null> {
let srcText = await file.text(); const srcText = await file.text();
return this.parseFromString(srcText, file.type as DOMParserSupportedType); return this.parseFromString(srcText, file.type as DOMParserSupportedType);
} }
private parseEnvs(xmlEnvs: NodeListOf<Element>): Env[] {
let res: Env[] = [];
let i = 0;
for (let xml of xmlEnvs) {
res.push(this.xmlToEnv(xml, i++));
}
return res;
}
private throwError(text: string): string {
throw new Error(text);
}
private xmlToEnv(xml: Element, id: number): Env {
let name = xml.getAttribute(this.envNameAttr) ?? this.throwError(`no attr '${this.envNameAttr}' in '${xml.tagName}'`);
let params = this.parseParams(xml);
return new Env(id, name, params);
}
private parseParams(xml: Element): EnvParam[] {
let paramElements = xml.getElementsByTagName(this.paramTag);
let params: EnvParam[] = [];
let id = 0;
for (let p of paramElements) {
params.push(this.xmlToParam(p, id++));
}
return params;
}
private xmlToParam(xmlParam: Element, id: number): EnvParam {
let name = xmlParam.getAttribute(this.paramNameAttr) ?? this.throwError(`no attr '${this.paramNameAttr}' in '${this.paramTag}'`);
let val = xmlParam.getAttribute(this.paramValAttr) ?? this.throwError(`no attr '${this.paramValAttr}' in '${this.paramTag}'`);
return new EnvParam(id, name, val);
}
/** /**
* Checks if the given file is in a supported format (text/xml). * Checks if file format is supported
*
* @param file - The File object to check
* @returns True if the file is of type 'text/xml', otherwise returns an error message string
*/ */
public static isSupportedFormat(file: File): (boolean | string) { public static isSupportedFormat(file: File): boolean | string {
if (file.type !== "text/xml") { if (file.type !== 'text/xml') {
return `file format ${file.type} not supported (or extension is't .xml)`; return `File format '${file.type}' not supported (expected text/xml)`;
} }
return true; return true;
} }
public checkTemplate(xml: Document) { /**
const templateElements = xml.getElementsByTagName(this.templateTag); * Parses environment elements
*/
if (templateElements.length === 0) { private parseEnvs(xmlEnvs: NodeListOf<Element>): Env[] {
this.throwError(`Missing required <${this.templateTag}> element in the XML.`); return Array.from(xmlEnvs).map((xml, index) => this.xmlToEnv(xml, index));
} }
if(templateElements.length > 1) { /**
this.throwError(`Multiple <${this.templateTag}> elements found. Only one is allowed.`); * Converts XML element to Env
*/
private xmlToEnv(xml: Element, id: number): Env {
const name = xml.getAttribute(this.envNameAttr);
if (!name) {
throw new Error(`Missing '${this.envNameAttr}' attribute in '${xml.tagName}'`);
}
const params = this.parseParams(xml);
return new Env(id, name, params);
}
/**
* Parses parameter elements
*/
private parseParams(xml: Element): EnvParam[] {
return Array.from(xml.getElementsByTagName(this.paramTag))
.map((p, index) => this.xmlToParam(p, index));
}
/**
* Converts XML element to EnvParam
*/
private xmlToParam(xmlParam: Element, id: number): EnvParam {
const name = xmlParam.getAttribute(this.paramNameAttr);
const value = xmlParam.getAttribute(this.paramValAttr);
if (!name) {
throw new Error(`Missing '${this.paramNameAttr}' attribute in parameter`);
}
if (value === null) {
throw new Error(`Missing '${this.paramValAttr}' attribute in parameter`);
}
return new EnvParam(id, name, value);
}
/**
* Validates template element exists
*/
private validateTemplate(xml: Document): void {
const templates = xml.getElementsByTagName(this.templateTag);
if (templates.length === 0) {
throw new Error(`Missing required <${this.templateTag}> element`);
}
if (templates.length > 1) {
throw new Error(`Multiple <${this.templateTag}> elements found. Only one allowed.`);
} }
} }
} }

View File

@@ -1,60 +1,151 @@
import { EnvParam } from "./EnvParam"; import { EnvParam } from './EnvParam';
import { NamedId } from "./NamedId"; import { NamedEntity } from './types';
/**
export class Env implements NamedId { * Environment configuration containing parameters
*/
export class Env implements NamedEntity {
constructor( constructor(
public id?: number, public id?: number,
public name?: string, public name?: string,
public params: EnvParam[] = [] public params: EnvParam[] = []
) {} ) {}
public isDefault() { /**
return this.name === "DEFAULT"; * Checks if this is the DEFAULT environment
*/
public isDefault(): boolean {
return this.name === 'DEFAULT';
} }
addParams(payload: EnvParam): Env { /**
payload.id = Math.random() * 10000; * Adds a new parameter to the environment (backward compatibility)
this.params.push(payload); */
return new Env(this.id, this.name, [...this.params]); public addParams(param: EnvParam): Env {
return this.addParam(param);
} }
delParam(param: EnvParam): Env { /**
let idx = this.params.findIndex(el => el.id === param.id); * Adds a new parameter to the environment
if (idx > -1) { */
const newP = this.params.filter(el => el.id !== param.id); public addParam(param: EnvParam): Env {
return new Env(this.id, this.name, newP); const newParam = new EnvParam(
param.id ?? this.generateId(),
param.name,
param.value,
param.isChanged
);
return new Env(this.id, this.name, [...this.params, newParam]);
} }
/**
* Removes a parameter by ID
*/
public delParam(paramIdOrParam: number | EnvParam): Env {
const paramId = typeof paramIdOrParam === 'number' ? paramIdOrParam : paramIdOrParam.id;
return this.removeParam(paramId!);
}
/**
* Removes a parameter by ID
*/
public removeParam(paramId: number): Env {
return new Env(
this.id,
this.name,
this.params.filter(p => p.id !== paramId)
);
}
/**
* Updates an existing parameter (backward compatibility)
*/
public updateParams(updatedParam: EnvParam): Env {
return this.updateParam(updatedParam);
}
/**
* Updates an existing parameter
*/
public updateParam(updatedParam: EnvParam): Env {
const index = this.params.findIndex(p => p.id === updatedParam.id);
if (index === -1) {
return this; return this;
} }
public updateParams(param: EnvParam): Env { const newParams = [...this.params];
let idx = this.params.findIndex(el => el.id === param.id); newParams[index] = updatedParam;
if (idx > -1) { return new Env(this.id, this.name, newParams);
let newP = [...this.params];
newP[idx] = param;
return new Env(this.id, this.name, newP);
} }
return this; /**
* Gets a parameter by name
*/
public getParamByName(name: string): EnvParam | undefined {
return this.params.find(p => p.name === name);
}
/**
* Gets all parameter names
*/
public getParamNames(): string[] {
return this.params.map(p => p.name).filter((n): n is string => !!n);
}
/**
* Creates a copy with updated values
*/
public update(updates: Partial<Env>): Env {
return new Env(
updates.id ?? this.id,
updates.name ?? this.name,
updates.params ?? this.params
);
}
/**
* Generates a unique ID for new parameters
*/
private generateId(): number {
return Date.now() % 100000 + Math.floor(Math.random() * 10000);
} }
} }
/**
* Base class for environment events (backward compatibility)
*/
export class AppEvent<T> { export class AppEvent<T> {
protected constructor(public payload: T) { } constructor(public payload: T) {}
public static add<T>(payload: T): AppEvent<T> { public static add<T>(payload: T): AppEvent<T> {
return new AddEvent(payload); return new AddEvent(payload);
} }
public static del<T>(payload: T): AppEvent<T> { public static del<T>(payload: T): AppEvent<T> {
return new DelEvent(payload); return new RemoveEvent(payload);
} }
public static update<T>(payload: T): AppEvent<T> { public static update<T>(payload: T): AppEvent<T> {
return new UpdateEvent(payload); return new UpdateEvent(payload);
} }
} }
/**
* Event for adding a parameter
*/
export class AddEvent<T> extends AppEvent<T> {} export class AddEvent<T> extends AppEvent<T> {}
/**
* Event for updating a parameter
*/
export class UpdateEvent<T> extends AppEvent<T> {} export class UpdateEvent<T> extends AppEvent<T> {}
/**
* Event for removing a parameter (backward compatibility)
*/
export class DelEvent<T> extends AppEvent<T> {} export class DelEvent<T> extends AppEvent<T> {}
/**
* Event for removing a parameter
*/
export class RemoveEvent<T> extends AppEvent<T> {}

View File

@@ -1,6 +1,9 @@
import { NamedId } from "./NamedId"; import { NamedEntity } from './types';
export class EnvParam implements NamedId { /**
* Environment parameter representing a key-value configuration pair
*/
export class EnvParam implements NamedEntity {
constructor( constructor(
public id?: number, public id?: number,
public name?: string, public name?: string,
@@ -8,25 +11,63 @@ export class EnvParam implements NamedId {
public isChanged: boolean = false public isChanged: boolean = false
) {} ) {}
public Changed(v: boolean = true): EnvParam { /**
return new EnvParam( * Marks the parameter as changed (backward compatibility)
this.id, */
this.name, public Changed(changed: boolean = true): EnvParam {
this.value, return this.markChanged(changed);
v);
} }
public sanitize(v?: string): string { /**
return v?.replace(/&/g, "&amp") * Marks the parameter as changed
*/
public markChanged(changed: boolean = true): EnvParam {
return new EnvParam(this.id, this.name, this.value, changed);
}
/**
* Creates a copy of this parameter with updated values
*/
public update(updates: Partial<EnvParam>): EnvParam {
return new EnvParam(
updates.id ?? this.id,
updates.name ?? this.name,
updates.value ?? this.value,
updates.isChanged ?? this.isChanged
);
}
/**
* Sanitizes HTML special characters (instance method for backward compatibility)
*/
public sanitize(value?: string): string {
const v = value ?? this.value ?? '';
return EnvParam.sanitize(v);
}
/**
* Sanitizes HTML special characters (static method)
*/
public static sanitize(value: string): string {
return value
.replace(/&/g, '&amp;')
.replace(/</g, '&lt;') .replace(/</g, '&lt;')
.replace(/>/g, '&gt;') .replace(/>/g, '&gt;')
.replace(/"/g, '&quot;') .replace(/"/g, '&quot;')
.replace(/'/g, '&apos;') .replace(/'/g, '&apos;');
?? "";
} }
public humanize(v?: string): string { /**
return v ?? ""; * Humanizes the value (backward compatibility)
} */
public humanize(value?: string): string {
return value ?? this.value ?? '';
} }
/**
* Validates that the parameter has required fields
*/
public isValid(): boolean {
return !!(this.name && this.name.trim() !== '');
}
}

13
src/models/types.ts Normal file
View File

@@ -0,0 +1,13 @@
/**
* Base interface for entities with optional ID
*/
export interface Entity {
id?: number;
}
/**
* Named entity with optional ID
*/
export interface NamedEntity extends Entity {
name?: string;
}

77
tailwind.config.js Normal file
View File

@@ -0,0 +1,77 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: {
50: '#eff6ff',
100: '#dbeafe',
200: '#bfdbfe',
300: '#93c5fd',
400: '#60a5fa',
500: '#3b82f6',
600: '#2563eb',
700: '#1d4ed8',
800: '#1e40af',
900: '#1e3a8a',
},
success: {
50: '#f0fdf4',
100: '#dcfce7',
200: '#bbf7d0',
300: '#86efac',
400: '#4ade80',
500: '#22c55e',
600: '#16a34a',
700: '#15803d',
800: '#166534',
900: '#14532d',
},
danger: {
50: '#fef2f2',
100: '#fee2e2',
200: '#fecaca',
300: '#fca5a5',
400: '#f87171',
500: '#ef4444',
600: '#dc2626',
700: '#b91c1c',
800: '#991b1b',
900: '#7f1d1d',
},
warning: {
50: '#fffbeb',
100: '#fef3c7',
200: '#fde68a',
300: '#fcd34d',
400: '#fbbf24',
500: '#f59e0b',
600: '#d97706',
700: '#b45309',
800: '#92400e',
900: '#78350f',
},
},
animation: {
'fade-in': 'fadeIn 0.3s ease-in-out',
'slide-in': 'slideIn 0.3s ease-out',
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
slideIn: {
'0%': { transform: 'translateY(-10px)', opacity: '0' },
'100%': { transform: 'translateY(0)', opacity: '1' },
},
},
},
},
plugins: [],
}

View File

@@ -1,4 +1,13 @@
{ {
"status": "passed", "status": "failed",
"failedTests": [] "failedTests": [
"2a84b67ca6571daf27b7-7e9801b0b833c50af541",
"2a84b67ca6571daf27b7-17ce5649ea02e0d09692",
"2a84b67ca6571daf27b7-46f1d47e52a9de8bb54e",
"2a84b67ca6571daf27b7-5ac3b387f0f8104531f1",
"2a84b67ca6571daf27b7-61b44892e9e54397b980",
"2a84b67ca6571daf27b7-e38411b679b6dd8a5f2c",
"2a84b67ca6571daf27b7-ca92b197b6f7ecc9f092",
"2a84b67ca6571daf27b7-0c2a356d8582be760d5f"
]
} }