()
| 82 | } |
| 83 | |
| 84 | getComponent() { |
| 85 | switch (this.windowState.app.id) { |
| 86 | case 'about': |
| 87 | return AboutComponent; |
| 88 | case 'projects': |
| 89 | return ProjectsComponent; |
| 90 | case 'skills': |
| 91 | return SkillsComponent; |
| 92 | case 'contact': |
| 93 | return ContactComponent; |
| 94 | case 'terminal': |
| 95 | return TerminalComponent; |
| 96 | case 'settings': |
| 97 | return SettingsComponent; |
| 98 | case 'chrome': |
| 99 | return ChromeComponent; |
| 100 | case 'trash': |
| 101 | return TrashComponent; |
| 102 | case 'vscode': |
| 103 | return VscodeComponent; |
| 104 | default: |
| 105 | return null; |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | onHeaderMouseDown(event: MouseEvent) { |
| 110 | if (this.windowState.isMaximized) { |
nothing calls this directly
no outgoing calls
no test coverage detected