@openedx/frontend-slot-footer
v1.0.6
Published
Site footer PluginSlot utilizing Frontend Plugin Framework
Downloads
6,774
Readme
frontend-slot-footer
This package provides a wrapped version of the footer using Frontend Plugin Framework.
Slot ID: footer_slot
Description
This slot is used to replace/modify/hide the footer.
Example
The following env.config.jsx
will replace the default footer.
with a simple custom footer
import { DIRECT_PLUGIN, PLUGIN_OPERATIONS } from '@openedx/frontend-plugin-framework';
const config = {
pluginSlots: {
footer_slot: {
plugins: [
{
// Hide the default footer
op: PLUGIN_OPERATIONS.Hide,
widgetId: 'default_contents',
},
{
// Insert a custom footer
op: PLUGIN_OPERATIONS.Insert,
widget: {
id: 'custom_footer',
type: DIRECT_PLUGIN,
RenderWidget: () => (
<h1 style={{textAlign: 'center'}}>🦶</h1>
),
},
},
]
}
},
}
export default config;