1<?php 2 3/** 4 * webtrees: online genealogy 5 * Copyright (C) 2021 webtrees development team 6 * This program is free software: you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation, either version 3 of the License, or 9 * (at your option) any later version. 10 * This program is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * You should have received a copy of the GNU General Public License 15 * along with this program. If not, see <https://www.gnu.org/licenses/>. 16 */ 17 18declare(strict_types=1); 19 20namespace Fisharebest\Webtrees\Module; 21 22use Fisharebest\Webtrees\Fact; 23use Fisharebest\Webtrees\I18N; 24use Fisharebest\Webtrees\Individual; 25use Fisharebest\Webtrees\Services\ClipboardService; 26use Illuminate\Support\Collection; 27 28/** 29 * Class NotesTabModule 30 */ 31class NotesTabModule extends AbstractModule implements ModuleTabInterface 32{ 33 use ModuleTabTrait; 34 35 /** @var Collection A list facts for this note. */ 36 private $facts; 37 38 /** @var ClipboardService */ 39 private $clipboard_service; 40 41 /** 42 * NotesTabModule constructor. 43 * 44 * @param ClipboardService $clipboard_service 45 */ 46 public function __construct(ClipboardService $clipboard_service) 47 { 48 $this->clipboard_service = $clipboard_service; 49 } 50 51 /** 52 * How should this module be identified in the control panel, etc.? 53 * 54 * @return string 55 */ 56 public function title(): string 57 { 58 /* I18N: Name of a module */ 59 return I18N::translate('Notes'); 60 } 61 62 /** 63 * A sentence describing what this module does. 64 * 65 * @return string 66 */ 67 public function description(): string 68 { 69 /* I18N: Description of the “Notes” module */ 70 return I18N::translate('A tab showing the notes attached to an individual.'); 71 } 72 73 /** 74 * The default position for this tab. It can be changed in the control panel. 75 * 76 * @return int 77 */ 78 public function defaultTabOrder(): int 79 { 80 return 4; 81 } 82 83 /** 84 * Is this tab empty? If so, we don't always need to display it. 85 * 86 * @param Individual $individual 87 * 88 * @return bool 89 */ 90 public function hasTabContent(Individual $individual): bool 91 { 92 return $individual->canEdit() || $this->getFactsWithNotes($individual)->isNotEmpty(); 93 } 94 95 /** 96 * A greyed out tab has no actual content, but may perhaps have 97 * options to create content. 98 * 99 * @param Individual $individual 100 * 101 * @return bool 102 */ 103 public function isGrayedOut(Individual $individual): bool 104 { 105 return $this->getFactsWithNotes($individual)->isEmpty(); 106 } 107 108 /** 109 * Generate the HTML content of this tab. 110 * 111 * @param Individual $individual 112 * 113 * @return string 114 */ 115 public function getTabContent(Individual $individual): string 116 { 117 return view('modules/notes/tab', [ 118 'can_edit' => $individual->canEdit(), 119 'clipboard_facts' => $this->clipboard_service->pastableFactsOfType($individual, $this->supportedFacts()), 120 'individual' => $individual, 121 'facts' => $this->getFactsWithNotes($individual), 122 ]); 123 } 124 125 /** 126 * Get all the facts for an individual which contain notes. 127 * 128 * @param Individual $individual 129 * 130 * @return Collection<Fact> 131 */ 132 private function getFactsWithNotes(Individual $individual): Collection 133 { 134 if ($this->facts === null) { 135 $facts = $individual->facts(); 136 137 foreach ($individual->spouseFamilies() as $family) { 138 if ($family->canShow()) { 139 foreach ($family->facts() as $fact) { 140 $facts->push($fact); 141 } 142 } 143 } 144 145 $this->facts = new Collection(); 146 147 foreach ($facts as $fact) { 148 if (preg_match('/(?:^1|\n\d) NOTE/', $fact->gedcom())) { 149 $this->facts->push($fact); 150 } 151 } 152 $this->facts = Fact::sortFacts($this->facts); 153 } 154 155 return $this->facts; 156 } 157 158 /** 159 * Can this tab load asynchronously? 160 * 161 * @return bool 162 */ 163 public function canLoadAjax(): bool 164 { 165 return false; 166 } 167 168 /** 169 * This module handles the following facts - so don't show them on the "Facts and events" tab. 170 * 171 * @return Collection<string> 172 */ 173 public function supportedFacts(): Collection 174 { 175 return new Collection(['NOTE']); 176 } 177} 178