aboutsummaryrefslogtreecommitdiff
path: root/design-notes.md
diff options
context:
space:
mode:
authorpacien2022-10-17 00:03:05 +0200
committerpacien2022-10-17 00:03:05 +0200
commitfd8cca4a00d90f3d51b38379107e463d028a9244 (patch)
tree11cecab72733b0263a56a5754088fd1a4ae0db7a /design-notes.md
parent8349be992b46b77dee921f484cfbff8b758ff756 (diff)
downloadldgallery-fd8cca4a00d90f3d51b38379107e463d028a9244.tar.gz
devdoc: move design notes to proper directory
Diffstat (limited to 'design-notes.md')
-rw-r--r--design-notes.md239
1 files changed, 0 insertions, 239 deletions
diff --git a/design-notes.md b/design-notes.md
deleted file mode 100644
index 0d7b5c1..0000000
--- a/design-notes.md
+++ /dev/null
@@ -1,239 +0,0 @@
1# ldgallery design notes
2
3_ldgallery_ consists of two main components that are packaged and distributed together, but are otherwise functionally independent:
4
5* a __compiler__ which turns a collection of pictures and sidecar metadata files into their compressed/normalised and aggregated versions respectively, and
6* a web __viewer__ in the form of a single-page application, rendering the output of the compiler as a searchable picture gallery.
7
8
9## Gallery compiler
10
11### Input
12
13#### Directory structure
14
15The compiler takes a source directory as input which shall contain item resource files and associated metadata sidecar files. Those items may be recursively grouped into multiple levels of sub-directories.
16
17Example source directory structure:
18
19```
20example-gallery-source
21├── _DSC8808-1.jpg -- a picture
22├── _DSC8808-1.jpg.yaml -- its associated sidecar metadata file
23└── Glacier 3000 -- a directory grouping gallery items
24 ├── thumbnail.jpg -- optional directory thumbnail
25 ├── _DSC5475.jpg
26 ├── _DSC5475.jpg.yaml
27 ├── _DSC5542.jpg
28 └── _DSC5542.jpg.yaml
29```
30
31
32#### Metadata sidecar file
33
34Metadata associated to items are stored in YAML sidecar files of the same name, with the `.yaml` extension appended. The use of plain text sidecar files allow for easier editing without any special tool in a unified manner for multiple types of files (pictures, videos, ebooks, ...). The metadata contained within item files are simply ignored.
35
36Tags are given with a group hierarchy separated by `.`, which allows generic searches as well as implicit disambiguation.
37
38Example metadata sidecar file:
39
40```yaml
41title: Some title
42
43date: 2019-12-20T16:51:52+00:00
44
45description: >
46 Some multiline description
47 that may contain some markdown later.
48
49tags:
50 - photographer.someone
51 - location.france.paris
52 - monochromatic
53```
54
55Possible evolutions:
56
57* Fallback values may later be defined for each field, making them optional.
58* The description field could be allowed to contain markdown-formatted content, which would be rendered by the __viewer__ app.
59* Other keys could be added to allow the definition of specific transform/compilation/displaying parameters on a particular file.
60* Metadata sidecar files could be added for directories as well in some `index.yaml` file.
61
62
63#### Gallery configuration file
64
65The gallery YAML configuration file contains the __compiler__'s and the __viewer__'s settings in two different sections.
66
67Proposed configuration file, named `gallery.yaml` at the root of the source directory:
68
69```yaml
70compiler:
71 galleryName: My Little Gallery
72 ignoreFiles: .*\.txt # to ignore text files
73 implicitDirectoryTag: false # default
74
75 thumbnailMaxResolution:
76 width: 400 # default
77 height: 400 # default
78
79 pictureMaxResolution: # or unspecified to copy files as is
80 width: 1024
81 height: 768
82
83 # format normalisation?
84 # item compression?
85
86
87viewer:
88 # TODO: configuration options to be defined
89 # separately shown tags and their colours
90 # use hash in URL (useful for use without webserver url rewrite)?
91```
92
93
94### Output
95
96#### Directory structure
97
98```
99data
100├── items -- original/normalised item directory
101│ ├── _DSC8808-1.jpg
102│ └── Glacier 3000
103│ ├── _DSC5475.jpg
104│ └── _DSC5542.jpg
105├── thumbnails -- item thumbnails directory
106│ ├── _DSC8808-1.jpg
107│ └── Glacier 3000
108│ ├── thumbnail.jpg
109│ ├── _DSC5475.jpg
110│ └── _DSC5542.jpg
111├── index.json -- content index file
112└── viewer.json -- viewer configuration file
113```
114
115
116#### Viewer configuration file
117
118The content of the `viewer` section of the gallery configuration file is used, without any transformation by the __compiler__, to generate the `viewer.json` file located at the root of the output directory.
119
120
121#### Gallery items index
122
123The __compiler__ generates a global index file `index.json` aggregating the metadata of all the source sidecar files as a tree of items as described below. Its root node is a directory item. The type of each property node is marked by its `type` field.
124
125Directory items aggregate their tags from the items below it in order to be displayed in search results.
126
127Resource paths are rooted with respect to the data output directory which serves as the base path.
128
129Serialised item structure:
130
131```json
132{
133 "_comment": "common fields",
134
135 "title": "Some title",
136 "date": "2019-12-20T16:51:52+00:00",
137 "description": "Some multiline description\nthat may contain some markdown later.",
138
139 "tags": [
140 "photographer.someone",
141 "location.france.paris",
142 "monochromatic"
143 ],
144
145 "path": "[resource path]",
146
147 "thumbnail": null | {
148 "resource": "[resource path]",
149 "resolution": {
150 "width": 400,
151 "height": 200
152 }
153 },
154
155
156 "_comment": "type-dependent",
157
158 "properties": {
159 "type": "picture",
160 "resource": "[resource url]"
161 },
162
163 "properties": {
164 "type": "other",
165 "resource": "[resource url]"
166 },
167
168 "properties": {
169 "type": "directory",
170 "items": [ { "_comment": "item objects..." } ]
171 }
172}
173```
174
175
176#### Normalised items and thumbnails
177
178Gallery items are normalised and made available in the `items` sub-directory of the data output directory. Normalisation consists of optional transcoding and other transforms as configured by the user in the compiler part of the `gallery.yaml` configuration file.
179
180Thumbnails are also generated for those items and are placed in the `thumbnails` sub-directory. Thumbnails of pictures in particular are resized using ~~Lanczos~~ (not available) bilinear resampling. Directory thumbnails may later be generated by picking or assembling one or multiple of its items, or defined explicitely by the user.
181
182The structure of the input directory is kept in both those output sub-directories. Input item files and directories also keep their original names.
183
184
185## Gallery viewer
186
187The __viewer__ is a single-page web application which displays the gallery's content.
188
189It runs fully on the client's side and remains usable without any back-end. It renders the compiled resources from the `data` directory, placed at its root, generated by the __compiler__.
190
191
192### URL anchor
193
194The page anchor is updated and used by the application to reflect the state of its current state in such a way that any view can be shared and loaded back by copying the URL and its anchor. It should in particular contain the current directory or item, as well as the filtering query.
195
196
197### Directory/collection/grid view
198
199The application starts by showing a grid view of the root directory of the gallery.
200
201This combined view offers the possiblity to the user to navigate to other items and to search recursively through the current directory.
202
203
204#### Directory breadcrumbs
205
206The directory view displays the current directory path, with links allowing the user to navigate into parent ones.
207
208```
209Gallery / Some directory / Sub-directory
210```
211
212
213#### Filering query
214
215A query field allows the user to search through and filter the items of the current directory and its sibling items recursively. This search field allows restriction on tags in a hierarchical manner. It should feature some sort of autocompletion, as well as an adjacent list of tags that are available for filtering. Positive as well as negative filtering should be possible, allowing the user to exclude some tags from the search results.
216
217For instance, the query `france -chessy` should match an item tagged with `location.france.paris`, but not `location.france.chessy`.
218
219The search is performed on the client side, either by scanning the item tree or with the use on some client-side indexer such as [Elasticlunr].
220
221In addition to tag-based filtering, full-text search on the `title` and `description` could later be added by leveraging such indexer.
222
223[Elasticlunr]: http://elasticlunr.com/
224
225
226#### Thumbnail grid
227
228The content of a directory are displayed as a grid of thumbnails which allows to navigate through sub-directories and to view items.
229
230By default, the content is rendered in the same ordered as listed in `index.json`. The user could later be presented with a menu allowing to sort those items by name, date for example.
231
232
233### Item view
234
235Items other than directories are displayed by this view, making use of most of the screen space to render the element.
236
237This view should as well display the title, description, date, tags and other information associated to the item. Tags in particular are displayed in a grouped manner as determined in `index.json`.
238
239It should be possible to navigate between items of the same directory as the current one through a thumbnail reel and previous/next links.