aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/services/navigation.ts
blob: fb01169b08541c6b2e5f3c35d59e3db67d4c1669 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/* ldgallery - A static generator which turns a collection of tagged
--             pictures into a searchable web gallery.
--
-- Copyright (C) 2019-2022  Guillaume FOUET
--
-- This program is free software: you can redistribute it and/or modify
-- it under the terms of the GNU Affero General Public License as
-- published by the Free Software Foundation, either version 3 of the
-- License, or (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-- GNU Affero General Public License for more details.
--
-- You should have received a copy of the GNU Affero General Public License
-- along with this program.  If not, see <https://www.gnu.org/licenses/>.
*/

import { DirectoryItem, DownloadableItem, Item } from '@/@types/gallery';
import { ItemType } from '@/@types/itemType';
import {
  faFile,
  faFileAlt,
  faFileAudio,
  faFilePdf,
  faBook,
  faFileVideo,
  faFolder,
  faHome,
  faImage,
  IconDefinition,
} from '@fortawesome/free-solid-svg-icons';
import { isDirectory } from './itemGuards';

const ICON_BY_TYPE: Record<ItemType, IconDefinition> = {
  directory: faFolder,
  picture: faImage,
  plaintext: faFileAlt,
  markdown: faFileAlt,
  pdf: faFilePdf,
  epub: faBook,
  video: faFileVideo,
  audio: faFileAudio,
  other: faFile,
};

// ---

export const useNavigation = () => {
  // Searches for an item by path from a root item (navigation)
  function searchCurrentItemPath(root: Item, path: string): Item[] {
    if (path === root.path) return [root];
    if (isDirectory(root) && path.startsWith(root.path)) {
      const itemChain = root.properties.items
        .map(item => searchCurrentItemPath(item, path))
        .find(itemChain => itemChain.length > 0);
      if (itemChain) return [root, ...itemChain];
    }
    return [];
  }

  // Normalize a string to lowercase, no-accents
  function normalize(value: string) {
    return value
      .normalize('NFD')
      .replace(/[\u0300-\u036f]/g, '')
      .toLowerCase();
  }

  function getLastDirectory(itemPath: Item[]): DirectoryItem {
    for (let idx = itemPath.length - 1; idx >= 0; idx--) {
      const item = itemPath[idx];
      if (isDirectory(item)) return item;
    }
    throw new Error('No directory found');
  }

  // Get the icon for an item
  function getIcon(item: Item): IconDefinition {
    if (item.path.length <= 1) return faHome;
    return ICON_BY_TYPE[item.properties.type];
  }

  // Get the file name of an item, without its cache timestamp
  function getFileName(item: Item): string {
    if (isDirectory(item)) return item.title;
    const timeStamped = (item as DownloadableItem).properties.resource.split('/').pop() ?? '';
    return timeStamped.split('?')[0];
  }

  return {
    searchCurrentItemPath,
    normalize,
    getLastDirectory,
    getIcon,
    getFileName,
  };
};