* Extract clean project name from various formats
(projectValue: string)
| 607 | * Extract clean project name from various formats |
| 608 | */ |
| 609 | private extractProjectName(projectValue: string): string | null { |
| 610 | if (!projectValue) return null; |
| 611 | const displayName = getProjectDisplayName(projectValue, this.plugin?.app); |
| 612 | return displayName || null; |
| 613 | } |
| 614 | |
| 615 | private isArchivedProjectReference(projectValue: string): boolean { |
| 616 | return this.getProjectReferenceTask(projectValue)?.archived === true; |
no test coverage detected