David Taylor
03818e642a
FEATURE: Include optimized thumbnails for topics ( #9215 )
...
This introduces new APIs for obtaining optimized thumbnails for topics. There are a few building blocks required for this:
- Introduces new `image_upload_id` columns on the `posts` and `topics` table. This replaces the old `image_url` column, which means that thumbnails are now restricted to uploads. Hotlinked thumbnails are no longer possible. In normal use (with pull_hotlinked_images enabled), this has no noticeable impact
- A migration attempts to match existing urls to upload records. If a match cannot be found then the posts will be queued for rebake
- Optimized thumbnails are generated during post_process_cooked. If thumbnails are missing when serializing a topic list, then a sidekiq job is queued
- Topic lists and topics now include a `thumbnails` key, which includes all the available images:
```
"thumbnails": [
{
"max_width": null,
"max_height": null,
"url": "//example.com/original-image.png",
"width": 1380,
"height": 1840
},
{
"max_width": 1024,
"max_height": 1024,
"url": "//example.com/optimized-image.png",
"width": 768,
"height": 1024
}
]
```
- Themes can request additional thumbnail sizes by using a modifier in their `about.json` file:
```
"modifiers": {
"topic_thumbnail_sizes": [
[200, 200],
[800, 800]
],
...
```
Remember that these are generated asynchronously, so your theme should include logic to fallback to other available thumbnails if your requested size has not yet been generated
- Two new raw plugin outlets are introduced, to improve the customisability of the topic list. `topic-list-before-columns` and `topic-list-before-link`
2020-05-05 09:07:50 +01:00
..
2020-05-05 10:34:25 +10:00
2020-04-23 20:54:26 +05:30
2020-03-31 14:40:58 +11:00
2020-04-09 15:42:24 +03:00
2019-12-03 10:05:53 +01:00
2020-01-09 15:11:31 +01:00
2020-05-05 13:46:57 +10:00
2020-04-16 12:13:13 +01:00
2020-05-05 13:46:57 +10:00
2019-11-25 10:23:18 +01:00
2020-04-30 16:48:53 +10:00
2020-04-30 16:41:02 -04:00
2020-02-25 11:43:17 +01:00
2020-04-27 14:51:25 -03:00
2019-01-21 10:12:23 +01:00
2019-10-02 14:01:53 +10:00
2019-05-13 09:31:32 +08:00
2020-04-17 14:59:54 -07:00
2020-03-27 12:06:14 -04:00
2020-04-02 16:44:44 +01:00
2020-04-30 16:48:53 +10:00
2020-05-05 13:46:57 +10:00
2020-04-29 21:40:21 +03:00
2020-03-04 10:11:08 +11:00
2019-05-13 09:31:32 +08:00
2020-05-05 13:46:57 +10:00
2018-10-12 17:03:47 +11:00
2019-11-06 10:32:15 -05:00
2019-05-27 16:39:56 +08:00
2019-12-03 10:05:53 +01:00
2020-03-09 10:07:03 +01:00
2020-04-08 12:52:36 -04:00
2020-04-25 13:12:56 +10:00
2020-05-05 13:46:57 +10:00
2020-03-10 13:20:11 -04:00
2019-12-16 14:13:47 -05:00
2020-04-30 16:48:53 +10:00
2020-01-15 11:27:12 +01:00
2020-04-20 08:31:43 -05:00
2019-12-03 10:05:53 +01:00
2019-10-02 14:01:53 +10:00
2020-03-10 08:56:42 -03:00
2019-05-13 09:31:32 +08:00
2019-05-13 09:31:32 +08:00
2020-02-07 17:32:35 +00:00
2019-05-13 09:31:32 +08:00
2020-04-01 18:04:43 +02:00
2020-04-30 16:48:53 +10:00
2020-03-27 12:41:06 +11:00
2020-04-30 16:48:53 +10:00
2020-04-28 16:19:25 +10:00
2020-05-01 16:14:20 +10:00
2020-04-30 16:48:53 +10:00
2019-08-09 11:58:15 +03:00
2019-12-03 10:05:53 +01:00
2019-05-13 09:31:32 +08:00
2019-05-13 09:31:32 +08:00
2019-05-13 09:31:32 +08:00
2019-10-21 12:08:20 +01:00
2019-05-13 09:31:32 +08:00
2019-05-13 09:31:32 +08:00
2020-03-19 19:54:42 +00:00
2020-05-05 09:07:50 +01:00
2019-06-03 12:13:32 +10:00
2019-08-13 01:13:08 +01:00
2019-05-13 09:31:32 +08:00
2019-05-13 09:31:32 +08:00
2019-05-13 09:31:32 +08:00
2020-03-30 20:16:10 +02:00
2019-05-13 09:31:32 +08:00
2019-05-13 09:31:32 +08:00
2020-05-05 13:46:57 +10:00
2019-05-13 09:31:32 +08:00
2019-12-03 10:05:53 +01:00
2020-01-05 22:08:13 +11:00
2020-05-01 15:19:19 -04:00
2020-02-18 13:37:39 +02:00
2020-03-11 09:43:55 -04:00
2019-08-20 22:09:52 +05:30
2020-04-30 16:48:53 +10:00
2020-02-14 12:15:29 -05:00
2019-12-03 10:05:53 +01:00
2020-04-30 16:48:53 +10:00
2020-02-20 15:15:53 +11:00
2018-10-15 15:01:45 -04:00
2020-03-09 17:37:49 +01:00
2020-02-03 14:54:50 +00:00
2019-05-13 09:31:32 +08:00
2019-12-03 10:05:53 +01:00
2019-10-02 14:01:53 +10:00
2020-02-20 13:42:57 +10:00
2019-10-02 14:01:53 +10:00
2019-05-13 09:31:32 +08:00
2019-05-13 09:31:32 +08:00
2019-05-13 09:31:32 +08:00
2020-05-01 10:03:40 +05:30
2019-05-13 09:31:32 +08:00
2019-05-13 09:31:32 +08:00
2020-02-21 13:08:01 +10:00
2019-05-13 09:31:32 +08:00
2019-12-12 12:49:21 +10:00
2019-09-12 13:21:33 -03:00
2019-05-13 09:31:32 +08:00
2019-05-13 09:31:32 +08:00
2019-05-13 09:31:32 +08:00
2020-04-08 12:52:36 -04:00
2019-05-13 09:31:32 +08:00
2019-04-29 16:41:35 +08:00
2019-05-13 09:31:32 +08:00
2020-04-30 16:48:53 +10:00
2020-04-30 12:21:25 +02:00
2019-05-13 09:31:32 +08:00
2020-04-17 14:59:54 -07:00
2020-02-12 12:11:28 +02:00
2020-04-01 15:42:45 -04:00
2019-05-13 09:31:32 +08:00
2019-11-05 19:16:38 +01:00
2019-05-22 17:39:44 +03:00
2019-05-13 09:31:32 +08:00
2019-05-13 09:31:32 +08:00
2019-05-13 09:31:32 +08:00
2020-02-18 15:13:19 +11:00
2019-05-13 09:31:32 +08:00
2020-05-04 09:42:41 +01:00
2019-05-13 09:31:32 +08:00
2020-01-21 11:12:00 -05:00
2019-11-29 09:30:54 -05:00
2019-05-13 09:31:32 +08:00
2020-05-05 13:46:57 +10:00
2019-10-11 03:50:37 -04:00
2019-05-13 09:31:32 +08:00
2019-05-13 09:31:32 +08:00
2019-05-13 09:31:32 +08:00
2020-04-30 16:48:53 +10:00
2019-05-13 09:31:32 +08:00
2019-10-06 20:47:33 +02:00
2020-03-03 14:56:37 -10:00
2019-10-02 14:01:53 +10:00
2019-05-13 09:31:32 +08:00
2020-04-30 16:48:53 +10:00
2020-03-11 14:03:20 +02:00
2020-05-01 08:33:57 +10:00
2019-05-13 09:31:32 +08:00
2019-05-13 09:31:32 +08:00
2020-05-05 13:46:57 +10:00
2020-05-05 13:46:57 +10:00
2019-05-13 09:31:32 +08:00
2019-11-14 15:10:51 -05:00
2020-05-05 13:46:57 +10:00
2020-02-18 15:08:58 +10:00
2019-12-03 10:05:53 +01:00
2019-05-06 16:07:49 +02:00
2020-05-05 13:46:57 +10:00
2019-05-13 09:31:32 +08:00
2019-11-26 15:01:37 -05:00
2020-04-30 12:12:00 -03:00
2020-01-31 11:02:44 +01:00
2019-05-13 09:31:32 +08:00
2019-05-13 09:31:32 +08:00
2020-05-05 09:07:50 +01:00
2019-12-03 10:05:53 +01:00
2019-10-02 14:01:53 +10:00
2020-04-28 16:06:35 +10:00
2019-05-13 09:31:32 +08:00
2020-04-30 16:48:53 +10:00
2019-12-17 10:34:20 +10:00
2019-05-13 09:31:32 +08:00
2020-04-27 13:03:57 +08:00
2019-05-13 09:31:32 +08:00
2019-10-02 14:01:53 +10:00
2019-05-13 09:31:32 +08:00
2019-10-02 14:01:53 +10:00
2019-10-02 14:01:53 +10:00
2019-05-20 13:47:20 +02:00
2019-05-13 09:31:32 +08:00
2020-03-11 09:43:55 -04:00
2020-03-12 16:35:28 +00:00
2020-04-15 18:34:02 +05:30
2019-05-13 09:31:32 +08:00
2019-05-13 09:31:32 +08:00
2019-05-13 09:31:32 +08:00
2019-05-13 09:31:32 +08:00
2020-03-10 15:35:40 +01:00
2019-05-13 09:31:32 +08:00
2020-03-05 11:13:43 -08:00
2019-08-15 13:41:06 -04:00
2018-06-07 14:21:33 +10:00
2020-05-05 09:07:50 +01:00
2020-04-20 14:17:13 -04:00
2019-05-13 09:31:32 +08:00
2020-01-23 12:01:10 +10:00
2020-04-16 09:20:44 +10:00
2019-11-01 09:19:43 +10:00
2019-10-02 14:01:53 +10:00
2019-08-29 12:41:14 +01:00
2020-04-30 16:48:53 +10:00
2019-11-14 15:10:51 -05:00
2020-04-10 18:16:47 +05:30
2019-05-13 09:31:32 +08:00
2019-10-02 14:01:53 +10:00
2019-10-02 14:57:36 +10:00
2020-03-26 07:16:02 +10:00
2020-02-03 14:22:35 +10:00
2019-11-28 13:13:29 +11:00
2020-05-04 11:44:42 -04:00
2020-04-30 16:48:53 +10:00
2020-04-01 08:36:50 -05:00