events extension for bonfire, used for learning purposes
A template for creating custom extensions for Bonfire
/extensions
foldercd extensions
git clone https://github.com/bonfire-networks/bonfire_gatherings.git {your-extension-name-here}
cd {your-extension-name-here}
bonfire_gatherings.exs
config file to match your extension name bonfire_your_extension_name.exs
rm -rf .git
git init
git add .
git commit -m "first commit"
git branch -M main
git remote add origin {your-remote-repository}
git push -u origin main
use_if_enabled(Bonfire.Gatherings.Web.Routes)
in your app's Router
moduleWarning
The following pattern is likely to change in the coming period.
Each extension can specify it's own navbar in a quite flexible way, leveraging on 2 macro: declare_extension
and declare_nav_link
.
declare_extension
macro, specifying the extension name, its icon (that will be mostly used to list the extension with the other active ones) and the default_nav.declare_extension(
"ExtensionTemplate",
icon: "bi:app",
default_nav: [
Bonfire.Gatherings.Web.HomeLive,
Bonfire.Gatherings.Web.AboutLive
])
The views you will include in the default_nav
section, will be the ones that will be shown on the navigation sidebar.
The last step is to call declare_nav_link
on each of those view/components already specified in declare_extension.
declare_nav_link(l("About"),
page: "About",
href: "/bonfire_gatherings/about",
icon: "typcn:info-large"
)
Copyright (c) 2020 Bonfire, VoxPublica, and CommonsPub Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public
License along with this program. If not, see https://www.gnu.org/licenses/.