18c2e8227SGreg Roach<?php 23976b470SGreg Roach 38c2e8227SGreg Roach/** 48c2e8227SGreg Roach * webtrees: online genealogy 58fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team 68c2e8227SGreg Roach * This program is free software: you can redistribute it and/or modify 78c2e8227SGreg Roach * it under the terms of the GNU General Public License as published by 88c2e8227SGreg Roach * the Free Software Foundation, either version 3 of the License, or 98c2e8227SGreg Roach * (at your option) any later version. 108c2e8227SGreg Roach * This program is distributed in the hope that it will be useful, 118c2e8227SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 128c2e8227SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 138c2e8227SGreg Roach * GNU General Public License for more details. 148c2e8227SGreg Roach * You should have received a copy of the GNU General Public License 158c2e8227SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 168c2e8227SGreg Roach */ 17fcfa147eSGreg Roach 18e7f56f2aSGreg Roachdeclare(strict_types=1); 19e7f56f2aSGreg Roach 2076692c8bSGreg Roachnamespace Fisharebest\Webtrees\Module; 2176692c8bSGreg Roach 220e62c4b8SGreg Roachuse Fisharebest\Webtrees\Fact; 230e62c4b8SGreg Roachuse Fisharebest\Webtrees\I18N; 24225e381fSGreg Roachuse Fisharebest\Webtrees\Individual; 252adcbd9aSGreg Roachuse Fisharebest\Webtrees\Services\ClipboardService; 268eaf8709SGreg Roachuse Illuminate\Support\Collection; 278c2e8227SGreg Roach 288c2e8227SGreg Roach/** 298c2e8227SGreg Roach * Class NotesTabModule 308c2e8227SGreg Roach */ 3137eb8894SGreg Roachclass NotesTabModule extends AbstractModule implements ModuleTabInterface 32c1010edaSGreg Roach{ 3349a243cbSGreg Roach use ModuleTabTrait; 3449a243cbSGreg Roach 358af3e5c1SGreg Roach /** @var Collection A list facts for this note. */ 368c2e8227SGreg Roach private $facts; 378c2e8227SGreg Roach 382adcbd9aSGreg Roach /** @var ClipboardService */ 392adcbd9aSGreg Roach private $clipboard_service; 402adcbd9aSGreg Roach 412adcbd9aSGreg Roach /** 422adcbd9aSGreg Roach * NotesTabModule constructor. 432adcbd9aSGreg Roach * 442adcbd9aSGreg Roach * @param ClipboardService $clipboard_service 452adcbd9aSGreg Roach */ 46713a37fbSGreg Roach public function __construct(ClipboardService $clipboard_service) 47713a37fbSGreg Roach { 482adcbd9aSGreg Roach $this->clipboard_service = $clipboard_service; 492adcbd9aSGreg Roach } 502adcbd9aSGreg Roach 51961ec755SGreg Roach /** 520cfd6963SGreg Roach * How should this module be identified in the control panel, etc.? 53961ec755SGreg Roach * 54961ec755SGreg Roach * @return string 55961ec755SGreg Roach */ 5649a243cbSGreg Roach public function title(): string 57c1010edaSGreg Roach { 58bbb76c12SGreg Roach /* I18N: Name of a module */ 59bbb76c12SGreg Roach return I18N::translate('Notes'); 608c2e8227SGreg Roach } 618c2e8227SGreg Roach 62961ec755SGreg Roach /** 63961ec755SGreg Roach * A sentence describing what this module does. 64961ec755SGreg Roach * 65961ec755SGreg Roach * @return string 66961ec755SGreg Roach */ 6749a243cbSGreg Roach public function description(): string 68c1010edaSGreg Roach { 69bbb76c12SGreg Roach /* I18N: Description of the “Notes” module */ 70bbb76c12SGreg Roach return I18N::translate('A tab showing the notes attached to an individual.'); 718c2e8227SGreg Roach } 728c2e8227SGreg Roach 7349a243cbSGreg Roach /** 7449a243cbSGreg Roach * The default position for this tab. It can be changed in the control panel. 7549a243cbSGreg Roach * 7649a243cbSGreg Roach * @return int 7749a243cbSGreg Roach */ 78cbf4b7faSGreg Roach public function defaultTabOrder(): int 79cbf4b7faSGreg Roach { 80fb7a0427SGreg Roach return 4; 818c2e8227SGreg Roach } 828c2e8227SGreg Roach 833caaa4d2SGreg Roach /** 843caaa4d2SGreg Roach * Is this tab empty? If so, we don't always need to display it. 853caaa4d2SGreg Roach * 863caaa4d2SGreg Roach * @param Individual $individual 873caaa4d2SGreg Roach * 883caaa4d2SGreg Roach * @return bool 893caaa4d2SGreg Roach */ 908f53f488SRico Sonntag public function hasTabContent(Individual $individual): bool 91c1010edaSGreg Roach { 928af3e5c1SGreg Roach return $individual->canEdit() || $this->getFactsWithNotes($individual)->isNotEmpty(); 938c2e8227SGreg Roach } 948c2e8227SGreg Roach 953caaa4d2SGreg Roach /** 963caaa4d2SGreg Roach * A greyed out tab has no actual content, but may perhaps have 973caaa4d2SGreg Roach * options to create content. 983caaa4d2SGreg Roach * 993caaa4d2SGreg Roach * @param Individual $individual 1003caaa4d2SGreg Roach * 1013caaa4d2SGreg Roach * @return bool 1023caaa4d2SGreg Roach */ 1038f53f488SRico Sonntag public function isGrayedOut(Individual $individual): bool 104c1010edaSGreg Roach { 1058af3e5c1SGreg Roach return $this->getFactsWithNotes($individual)->isEmpty(); 1068c2e8227SGreg Roach } 1078c2e8227SGreg Roach 1083caaa4d2SGreg Roach /** 1093caaa4d2SGreg Roach * Generate the HTML content of this tab. 1103caaa4d2SGreg Roach * 1113caaa4d2SGreg Roach * @param Individual $individual 1123caaa4d2SGreg Roach * 1133caaa4d2SGreg Roach * @return string 1143caaa4d2SGreg Roach */ 1159b34404bSGreg Roach public function getTabContent(Individual $individual): string 116c1010edaSGreg Roach { 117a8cd57e1SGreg Roach return view('modules/notes/tab', [ 118225e381fSGreg Roach 'can_edit' => $individual->canEdit(), 1192adcbd9aSGreg Roach 'clipboard_facts' => $this->clipboard_service->pastableFactsOfType($individual, $this->supportedFacts()), 120225e381fSGreg Roach 'individual' => $individual, 121225e381fSGreg Roach 'facts' => $this->getFactsWithNotes($individual), 122225e381fSGreg Roach ]); 1238c2e8227SGreg Roach } 1248c2e8227SGreg Roach 1258c2e8227SGreg Roach /** 1268c2e8227SGreg Roach * Get all the facts for an individual which contain notes. 1278c2e8227SGreg Roach * 128225e381fSGreg Roach * @param Individual $individual 129225e381fSGreg Roach * 130*b5c8fd7eSGreg Roach * @return Collection<Fact> 1318c2e8227SGreg Roach */ 1328af3e5c1SGreg Roach private function getFactsWithNotes(Individual $individual): Collection 133c1010edaSGreg Roach { 1348c2e8227SGreg Roach if ($this->facts === null) { 13530158ae7SGreg Roach $facts = $individual->facts(); 1368af3e5c1SGreg Roach 13739ca88baSGreg Roach foreach ($individual->spouseFamilies() as $family) { 1388c2e8227SGreg Roach if ($family->canShow()) { 13930158ae7SGreg Roach foreach ($family->facts() as $fact) { 14039ca88baSGreg Roach $facts->push($fact); 1418c2e8227SGreg Roach } 1428c2e8227SGreg Roach } 1438c2e8227SGreg Roach } 1448af3e5c1SGreg Roach 1458af3e5c1SGreg Roach $this->facts = new Collection(); 1468af3e5c1SGreg Roach 1478c2e8227SGreg Roach foreach ($facts as $fact) { 148138ca96cSGreg Roach if (preg_match('/(?:^1|\n\d) NOTE/', $fact->gedcom())) { 1498af3e5c1SGreg Roach $this->facts->push($fact); 1508c2e8227SGreg Roach } 1518c2e8227SGreg Roach } 1528af3e5c1SGreg Roach $this->facts = Fact::sortFacts($this->facts); 1538c2e8227SGreg Roach } 1548c2e8227SGreg Roach 1558c2e8227SGreg Roach return $this->facts; 1568c2e8227SGreg Roach } 1578c2e8227SGreg Roach 1583caaa4d2SGreg Roach /** 1593caaa4d2SGreg Roach * Can this tab load asynchronously? 1603caaa4d2SGreg Roach * 1613caaa4d2SGreg Roach * @return bool 1623caaa4d2SGreg Roach */ 1638f53f488SRico Sonntag public function canLoadAjax(): bool 164c1010edaSGreg Roach { 16515d603e7SGreg Roach return false; 1668c2e8227SGreg Roach } 1678eaf8709SGreg Roach 1688eaf8709SGreg Roach /** 1698eaf8709SGreg Roach * This module handles the following facts - so don't show them on the "Facts and events" tab. 1708eaf8709SGreg Roach * 171*b5c8fd7eSGreg Roach * @return Collection<string> 1728eaf8709SGreg Roach */ 1738eaf8709SGreg Roach public function supportedFacts(): Collection 1748eaf8709SGreg Roach { 1758eaf8709SGreg Roach return new Collection(['NOTE']); 1768eaf8709SGreg Roach } 1778c2e8227SGreg Roach} 178