mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-03 08:18:42 +08:00
Instead of listing the redundant commit hash, this now shows "preinstalled" for the relevant components and links to https://meta.discourse.org/t/bundling-more-popular-plugins-with-discourse-core/373574. This is accomplished by checking the URL of the plugin for `"/discourse/discourse/tree/main/plugins/"` which indicates it's part of the core Discourse repo. I've also removed the `hide_plugin` flag from existing preinstalled plugins. Now Discourse admins will have more clarity into what's included. I also made some minor layout adjustments: * Larger click area for "how to install a plugin" banner * Moved "Learn more" into a separate line for consistent positioning Before: <img width="2182" height="1192" alt="image" src="https://github.com/user-attachments/assets/b2943a7f-5212-4abd-8b80-d0d071378f06" /> After: <img width="2226" height="1184" alt="image" src="https://github.com/user-attachments/assets/0846a2c9-fc1b-435c-b51f-b966af5ade09" />
27 lines
726 B
Ruby
27 lines
726 B
Ruby
# frozen_string_literal: true
|
|
|
|
# name: discourse-lazy-videos
|
|
# about: Lazy loading for embedded videos
|
|
# version: 0.1
|
|
# authors: Jan Cernik
|
|
# url: https://github.com/discourse/discourse-lazy-videos
|
|
|
|
enabled_site_setting :lazy_videos_enabled
|
|
|
|
register_asset "stylesheets/lazy-videos.scss"
|
|
|
|
require_relative "lib/lazy-videos/lazy_youtube"
|
|
require_relative "lib/lazy-videos/lazy_vimeo"
|
|
require_relative "lib/lazy-videos/lazy_tiktok"
|
|
|
|
after_initialize do
|
|
on(:reduce_cooked) do |fragment|
|
|
fragment
|
|
.css(".lazy-video-container")
|
|
.each do |video|
|
|
title = video["data-video-title"]
|
|
href = video.at_css("a")["href"]
|
|
video.replace("<p><a href=\"#{href}\">#{title}</a></p>")
|
|
end
|
|
end
|
|
end
|