mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 12:23:45 +08:00
03818e642a
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` |
||
---|---|---|
.. | ||
api_key_fabricator.rb | ||
badge_fabricator.rb | ||
bookmark_fabricator.rb | ||
category_fabricator.rb | ||
category_group_fabricator.rb | ||
color_scheme_color_fabricator.rb | ||
color_scheme_fabricator.rb | ||
email_change_request_fabricator.rb | ||
email_log_fabricator.rb | ||
email_token_fabricator.rb | ||
embeddable_host_fabricator.rb | ||
flag_fabricator.rb | ||
group_fabricator.rb | ||
group_history_fabricator.rb | ||
group_request_fabricator.rb | ||
group_user_fabricator.rb | ||
ignored_user.rb | ||
incoming_email_fabricator.rb | ||
incoming_link_fabricator.rb | ||
invite_fabricator.rb | ||
like_fabricator.rb | ||
muted_user.rb | ||
notification_fabricator.rb | ||
optimized_image_fabricator.rb | ||
permalink_fabricator.rb | ||
post_action_fabricator.rb | ||
post_custom_field_fabricator.rb | ||
post_detail_fabricator.rb | ||
post_fabricator.rb | ||
post_reply_key_fabricator.rb | ||
post_revision_fabricator.rb | ||
published_page_fabricator.rb | ||
reviewable_claimed_topic_fabricator.rb | ||
reviewable_fabricator.rb | ||
screened_email_fabricator.rb | ||
screened_ip_address_fabricator.rb | ||
screened_url_fabricator.rb | ||
search_log_fabricator.rb | ||
shared_draft_fabricator.rb | ||
single_sign_on_record_fabricator.rb | ||
skipped_email_log_fabricator.rb | ||
tag_fabricator.rb | ||
tag_group_fabricator.rb | ||
theme_fabricator.rb | ||
topic_allowed_group_fabricator.rb | ||
topic_allowed_user_fabricator.rb | ||
topic_embed_fabricator.rb | ||
topic_fabricator.rb | ||
topic_tag_fabricator.rb | ||
topic_timer_fabricator.rb | ||
topic_user_fabricator.rb | ||
upload_fabricator.rb | ||
user_action_fabricator.rb | ||
user_api_key_fabricator.rb | ||
user_avatar_fabricator.rb | ||
user_email_fabricator.rb | ||
user_fabricator.rb | ||
user_field_fabricator.rb | ||
user_option_fabricator.rb | ||
user_profile_fabricator.rb | ||
user_second_factor_fabricator.rb | ||
user_security_key_fabricator.rb | ||
watched_word_fabricator.rb | ||
web_crawler_request_fabricator.rb | ||
web_hook_fabricator.rb |