{"version":3,"sources":["src/app/pages/internal/incidents/components/incident-priority-switch/incident-priority-switch.component.ts","src/app/pages/internal/incidents/components/incident-priority-switch/incident-priority-switch.component.html","src/app/pages/internal/incidents/components/incident-state-switch/incident-state-switch.component.ts","src/app/pages/internal/incidents/components/incident-state-switch/incident-state-switch.component.html","src/app/core/components/chip/chip.component.ts","src/app/core/components/chip/chip.component.html"],"sourcesContent":["import { Component, inject, Input, OnChanges } from '@angular/core';\nimport { Store } from '@ngxs/store';\nimport {\n VDropdownButtonComponent,\n VDropdownButtonItem,\n} from 'src/app/core/components/ui-kit/dropdown-button/dropdown-button.component';\nimport { VDropdownSize } from 'src/app/core/components/ui-kit/select-button/select-button.component';\nimport { SharedModule } from 'src/app/core/shared.module';\nimport { Incident } from 'src/app/models/incident';\nimport {\n UpdateIncidentPriorityAction,\n UpdateSelectedIncidentPriority,\n} from '../../../../../store/incidents/incidents.actions';\n\n@Component({\n imports: [VDropdownButtonComponent, SharedModule],\n selector: 'app-incident-priority-switch',\n templateUrl: './incident-priority-switch.component.html',\n styleUrls: ['./incident-priority-switch.component.scss'],\n})\nexport class IncidentPrioritySwitchComponent implements OnChanges {\n private store = inject(Store);\n\n @Input({ required: true }) incident!: Incident;\n @Input() size: VDropdownSize = 'md';\n @Input() context: 'global' | 'details' = 'details';\n\n ngOnChanges(): void {\n this.generateMenuEntries();\n }\n\n isUpdating = false;\n availableDropdownItems: VDropdownButtonItem[] = [];\n\n get currentIncidentState(): VDropdownButtonItem {\n return {\n id: this.incident?.priority.id || '',\n label: this.incident?.priority.name || '',\n bgColor: this.incident?.priority.color || '',\n image: this.incident?.priority.icon,\n };\n }\n\n generateMenuEntries() {\n if (!this.incident) return;\n\n this.availableDropdownItems = this.incident.schemaVersion.priorities.map(\n priority => {\n return {\n id: priority.id,\n label: priority.name,\n bgColor: priority.color,\n image: priority.icon,\n };\n }\n );\n }\n\n async onIncidentPriorityChange(item: VDropdownButtonItem) {\n if (!this.incident) return;\n\n const priority = this.incident.schemaVersion.priorities.find(\n s => s.id === item.id\n );\n\n if (!priority) return;\n\n let action: any;\n\n if (this.context === 'global') {\n action = new UpdateIncidentPriorityAction(this.incident.id, priority.id);\n } else {\n action = new UpdateSelectedIncidentPriority(priority.id);\n }\n\n this.store.dispatch(action).subscribe({\n complete: () => {\n this.isUpdating = false;\n },\n error: () => {\n this.isUpdating = false;\n },\n });\n }\n}\n","