diff --git a/munstackA/src/app/sgmm-level-view/sgmm-level0-overview/sgmm-level0-overview.component.ts b/munstackA/src/app/sgmm-level-view/sgmm-level0-overview/sgmm-level0-overview.component.ts index f0fc4e5..b21f8e4 100644 --- a/munstackA/src/app/sgmm-level-view/sgmm-level0-overview/sgmm-level0-overview.component.ts +++ b/munstackA/src/app/sgmm-level-view/sgmm-level0-overview/sgmm-level0-overview.component.ts @@ -20,29 +20,31 @@ import { SharedStateService } from 'src/app/shared-state.service';
Management
-
Environment
-
Organization
Environmental Spheres
Stakeholders
Processes
Development Modes
@@ -57,16 +59,9 @@ import { SharedStateService } from 'src/app/shared-state.service'; imports: [CommonModule], }) export class SgmmLevel0OverviewComponent implements OnInit { - currentLevel = 0; // local property if you need to display or use it - constructor(private sharedState: SharedStateService) {} + constructor() {} - ngOnInit(): void { - // Observe the shared "currentLevel" in real time - this.sharedState.currentLevel$.subscribe(level => { - this.currentLevel = level; - console.log('Level changed to:', level); - // or do any other logic you need here - }); - } + ngOnInit(): void {} + @Output() zoomIn = new EventEmitter(); } diff --git a/munstackA/src/app/sgmm-level-view/sgmm-level3-interactions/sgmm-level3-interactions.component.html b/munstackA/src/app/sgmm-level-view/sgmm-level3-interactions/sgmm-level3-interactions.component.html new file mode 100644 index 0000000..847486c --- /dev/null +++ b/munstackA/src/app/sgmm-level-view/sgmm-level3-interactions/sgmm-level3-interactions.component.html @@ -0,0 +1,39 @@ + +
+
1,000 ft View
+

Interaction Issues

+
+
+

Resources

+

For {{ selectedDimensions.maturity }} companies:

+
    +
  • Financial resources
  • +
  • Human capital acquisition
  • +
  • Technology integration
  • +
+
+
+

Norms and Values

+

Relevant for {{ selectedDimensions.persona }}:

+
    +
  • Leadership principles
  • +
  • Corporate social responsibility
  • +
  • Ethical frameworks
  • +
+
+
+
+
+

Concerns and Interests

+

For {{ selectedDimensions.size }} enterprises in {{ selectedDimensions.market }} markets:

+
+
Growth strategies
+
Regulatory compliance
+
Competitive positioning
+
Digital transformation
+
Stakeholder management
+
Risk mitigation
+
+
+
+
\ No newline at end of file diff --git a/munstackA/src/app/sgmm-level-view/sgmm-level3-interactions/sgmm-level3-interactions.component.scss b/munstackA/src/app/sgmm-level-view/sgmm-level3-interactions/sgmm-level3-interactions.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/munstackA/src/app/sgmm-level-view/sgmm-level3-interactions/sgmm-level3-interactions.component.spec.ts b/munstackA/src/app/sgmm-level-view/sgmm-level3-interactions/sgmm-level3-interactions.component.spec.ts new file mode 100644 index 0000000..6d952ff --- /dev/null +++ b/munstackA/src/app/sgmm-level-view/sgmm-level3-interactions/sgmm-level3-interactions.component.spec.ts @@ -0,0 +1,22 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; + +import { SgmmLevel3InteractionsComponent } from './sgmm-level3-interactions.component'; + +describe('SgmmLevel3InteractionsComponent', () => { + let component: SgmmLevel3InteractionsComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + imports: [SgmmLevel3InteractionsComponent], + }).compileComponents(); + + fixture = TestBed.createComponent(SgmmLevel3InteractionsComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + })); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/munstackA/src/app/sgmm-level-view/sgmm-level3-interactions/sgmm-level3-interactions.component.ts b/munstackA/src/app/sgmm-level-view/sgmm-level3-interactions/sgmm-level3-interactions.component.ts new file mode 100644 index 0000000..40850ef --- /dev/null +++ b/munstackA/src/app/sgmm-level-view/sgmm-level3-interactions/sgmm-level3-interactions.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-sgmm-level3-interactions', + templateUrl: './sgmm-level3-interactions.component.html', + styleUrls: ['./sgmm-level3-interactions.component.scss'], + standalone: true, +}) +export class SgmmLevel3InteractionsComponent implements OnInit { + + constructor() { } + + ngOnInit() {} + +}