Revert "DEV: Switch to new API to render into plugin outlet (#36)" (#38)

This reverts commit a77a6143ba.
This commit is contained in:
Kris 2023-10-11 12:39:35 -04:00 committed by GitHub
parent a77a6143ba
commit 53828160af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 7 additions and 34 deletions

View File

@ -1,4 +1,3 @@
< 3.2.0.beta2-dev: 2951c995fe669d87f157e5a1072fe548a98ae30e
3.1.999: eeeb391c88bc2226070bf479b8c58e1275e46cd2
3.1.0.beta2: a950a7fec2dafc77a54420034d6615400dd3fb7a
2.9.0.beta3: c3a26b198d64050dfc1553bb364a5e1769145101

View File

@ -3,16 +3,8 @@ import { logSearchLinkClick } from "discourse/lib/search";
import { iconNode } from "discourse-common/lib/icon-library";
import { h } from "virtual-dom";
import I18n from "I18n";
import SearchBanner from "../components/search-banner";
export default apiInitializer("1.14.0", (api) => {
api.renderInOutlet(
settings.plugin_outlet === "above-main-container"
? "above-main-container"
: "below-site-header",
SearchBanner
);
export default apiInitializer("0.8", (api) => {
// Simplified version of header search theme component
const searchMenuWidget = api.container.factoryFor("widget:search-menu");
const corePanelContents = searchMenuWidget.class.prototype["panelContents"];

View File

@ -0,0 +1,3 @@
{{#if (eq (theme-setting "plugin_outlet") "above-main-container")}}
<SearchBanner />
{{/if}}

View File

@ -0,0 +1,3 @@
{{#if (eq (theme-setting "plugin_outlet") "below-site-header")}}
<SearchBanner />
{{/if}}

View File

@ -1,24 +0,0 @@
# frozen_string_literal: true
RSpec.describe "Viewing the search banner", type: :system do
fab!(:theme) { upload_theme_component }
it "should display the search banner below the site header when `plugin_outlet` theme setting is set to `below-site-header`" do
theme.update_setting(:plugin_outlet, "below-site-header")
theme.save!
visit("/")
expect(page).to have_css(".custom-search-banner")
expect(page).to_not have_css("#main-outlet .custom-search-banner")
end
it "should display the search banner above the main container when `plugin_outlet` theme setting is set to `above-main-container`" do
theme.update_setting(:plugin_outlet, "above-main-container")
theme.save!
visit("/")
expect(page).to have_css("#main-outlet .custom-search-banner")
end
end