Spaces:
Paused
Paused
File size: 6,797 Bytes
6f8b03d | 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 318 | # 🚀 INSTALLATION & INTEGRATION GUIDE
## Hvad Er Implementeret
### ✅ Neural Ascension Protocol (11 Widgets)
- Master Control Dashboard
- 10 Transformation Points (SEGA, THG, SCE, NSQI, PTAM, CDMM, APD, MSH, QEK, CCA)
### ✅ Data & Indsigter Hub (1 Widget)
- Omfattende data management interface
- Advanced search & filtering
- AI-powered insights
- Multi-source data access
---
## Step-by-Step Installation
### TRIN 1: Verificer Filer Er På Plads
Tjek at alle filer findes:
```bash
# Neural Ascension Widgets
apps/widget-board/widgets/NeuralAscension/
├── index.ts
├── MasterControl.tsx
├── SEGA.tsx
├── THG.tsx
├── SCE.tsx
├── NSQI.tsx
├── PTAM.tsx
└── RestWidgets.tsx
# Data & Indsigter
apps/widget-board/widgets/
├── DataInsightsHub.tsx
├── IntegrationExample.tsx
└── README.md
```
### TRIN 2: Import Widgets i Din App
**Option A: Brug Integration Example**
Kopier `IntegrationExample.tsx` kode til din main app:
```typescript
import { COMPLETE_WIDGET_REGISTRY, MENU_CATEGORIES, WIDGET_COMPONENTS } from './widgets/IntegrationExample';
```
**Option B: Manuel Integration**
```typescript
// I din App.tsx eller WidgeTDC_Pro.tsx
import { NeuralAscensionWidgets } from './widgets/NeuralAscension';
import DataInsightsHub from './widgets/DataInsightsHub';
// Kombiner med eksisterende widgets
const allWidgets = [
...existingWidgets,
...NeuralAscensionWidgets,
{
id: 'DataInsightsHub',
name: 'Data & Indsigter Central',
category: 'data',
// ... resten af metadata
}
];
```
### TRIN 3: Opdater Widget Registry
**Hvis du bruger WidgetRegistryContext:**
```typescript
// I WidgetRegistryContext.tsx eller lignende
import { NeuralAscensionWidgets } from './widgets/NeuralAscension';
import DataInsightsHub from './widgets/DataInsightsHub';
// Registrer widgets
NeuralAscensionWidgets.forEach(widget => {
registerWidget(widget);
});
registerWidget({
id: 'DataInsightsHub',
name: 'Data & Indsigter Central',
// ... metadata
});
```
**Hvis du bruger statisk registry:**
```typescript
// I din widgetRegistry fil
export const WIDGETS = {
// Eksisterende widgets...
// Neural Ascension
MasterControl: { /* metadata */ },
SEGA: { /* metadata */ },
THG: { /* metadata */ },
// ... osv
// Data & Indsigter
DataInsightsHub: { /* metadata */ }
};
```
### TRIN 4: Tilføj til Navigation Menu
**Eksempel navigation struktur:**
```typescript
const navigationMenu = [
{
category: 'Neural Ascension',
icon: 'Rocket',
items: [
{ id: 'MasterControl', name: 'Master Control' },
{ id: 'SEGA', name: 'Self-Evolving Graph' },
{ id: 'THG', name: 'Temporal Hypergraphs' },
{ id: 'SCE', name: 'Swarm Consciousness' },
// ... resten
]
},
{
category: 'Data & Indsigter',
icon: 'Database',
items: [
{ id: 'DataInsightsHub', name: 'Data Central' }
]
}
];
```
### TRIN 5: Test Widgets Individuelt
```bash
# Start din dev server
npm run dev
# Åbn browser og test hver widget:
# 1. Master Control → Verificer metrics vises
# 2. SEGA → Test evolution mode
# 3. THG → Test timeline navigation
# 4. SCE → Verificer model status
# 5. Data & Indsigter → Test search og filters
```
---
## Integration Patterns
### Pattern 1: Widget Selector Modal
Brug `WidgetSelectorModal` fra IntegrationExample:
```typescript
import { WidgetSelectorModal } from './widgets/IntegrationExample';
function MyApp() {
const [isOpen, setIsOpen] = useState(false);
return (
<>
<button onClick={() => setIsOpen(true)}>Add Widget</button>
<WidgetSelectorModal
isOpen={isOpen}
onClose={() => setIsOpen(false)}
onSelectWidget={(widget) => {
// Add widget to dashboard
}}
/>
</>
);
}
```
### Pattern 2: Dynamic Widget Rendering
```typescript
import { WIDGET_COMPONENTS } from './widgets/IntegrationExample';
function WidgetContainer({ widgetId }) {
const Widget = WIDGET_COMPONENTS[widgetId];
return Widget ? <Widget /> : <div>Widget not found</div>;
}
```
### Pattern 3: Category-Based Organization
```typescript
import { MENU_CATEGORIES } from './widgets/IntegrationExample';
function Sidebar() {
return (
<div>
{MENU_CATEGORIES.map(category => (
<div key={category.id}>
<h3>{category.name}</h3>
{category.widgets.map(widget => (
<button onClick={() => addWidget(widget)}>
{widget.name}
</button>
))}
</div>
))}
</div>
);
}
```
---
## Troubleshooting
### Problem: Widgets vises ikke
**Løsning:**
1. Verificer import paths er korrekte
2. Tjek console for fejl
3. Verificer widget IDs matcher mellem registry og component map
### Problem: Styling ser forkert ud
**Løsning:**
1. Tjek at TailwindCSS er konfigureret korrekt
2. Verificer gradient colors er supporteret
3. Prøv at rebuild CSS: `npm run build:css`
### Problem: TypeScript errors
**Løsning:**
1. Installer types: `npm install -D @types/react`
2. Opdater tsconfig.json med correct paths
3. Restart TypeScript server
### Problem: Icons vises ikke
**Løsning:**
1. Install lucide-react: `npm install lucide-react`
2. Verificer import statements
3. Check bundle size hvis for stor
---
## Customization
### Ændre Farver
Rediger widget filer direkte:
```typescript
// I SEGA.tsx - skift fra purple til blue
className="bg-gradient-to-br from-blue-950 via-blue-950 to-black"
```
### Tilføj Nye Metrics
```typescript
// I MasterControl.tsx
const [customMetric, setCustomMetric] = useState(0);
<MetricCard
icon={<YourIcon />}
label="Custom Metric"
value={customMetric}
trend="+10%"
color="blue"
/>
```
### Integrer Backend Data
```typescript
// Eksempel: Connect SEGA til Neo4j
useEffect(() => {
fetch('/api/neo4j/stats')
.then(res => res.json())
.then(data => setMetrics(data));
}, []);
```
---
## Deployment Checklist
- [ ] Alle widgets importeret korrekt
- [ ] Widget registry opdateret
- [ ] Navigation menu inkluderer nye kategorier
- [ ] TypeScript kompilerer uden fejl
- [ ] Ingen console errors i browser
- [ ] Widgets renderer korrekt på alle skærmstørrelser
- [ ] Performance metrics er acceptable
- [ ] Backend endpoints connected (hvis relevant)
---
## Support & Documentation
**README**: `apps/widget-board/widgets/README.md`
**Integration Example**: `apps/widget-board/widgets/IntegrationExample.tsx`
**Widget Source**: `apps/widget-board/widgets/NeuralAscension/`
**For hjælp:**
1. Tjek README.md først
2. Se IntegrationExample.tsx for kode-eksempler
3. Inspicér widget source code for detaljer
---
**Succes med integrationen! 🚀**
*Created by Claude Sonnet 4.5*
*December 14, 2025*
|