The core of Local's Add-on API is the Hooks API. This API was heavily inspired by WordPress' Plugin API. If you've written WordPress themes or plugins before, you should feel right at home!
Content Hooks allow you to inject React components into various location in Local's UI. With Content Hooks you can do anything from adding additional buttons, table rows, or even new pages and routes.
Hook Name
Parameters
stylesheets
SiteInfoDatabase
SiteInfoDatabase_TableList
SiteInfoDatabase_TableList_TableListRow[Connect]:Before
SiteInfoOverview
SiteInfoOverview:Before
SiteInfoOverview_TableList
SiteInfoOverview_TableList:Before
SiteInfo_TabNav_Items
SiteInfo_Top_TopRight
SitesSidebar_SitesSidebarSites:Before
SitesSidebar_SitesSidebarSites
SiteInfoSSL
SiteInfoSSL_TableList
SiteInfoUtilities
SiteInfoUtilities_TableList
routesRoot
Accepts React Router <Route />
components
routes[main]
Accepts React Router <Route />
components
routes[site-info]
Accepts React Router <Route />
components
The following Content Hooks are meant to be used by Environments such as the Preferred and Custom Environment.
ENV_ID
and ENV_VERSION
are for illustrative purposes only and should be replaced with a static value or variable.
ENV_ID
and ENV_VERSION
are in the hook name to allow for multiple Environments to be loaded at the same time and to cut down on the number of conditionals required.
Hook Name
NewSiteEnvironment[ENV_ID][ENV_VERSION]_AddSiteContent_Inner
SaveBlueprintPage[ENV_ID][ENV_VERSION]_SettingsPane_TableList
SettingsNewSiteDefaults[ENV_ID][ENV_VERSION]
SiteInfoEnvironmentMySQL[ENV_ID][ENV_VERSION]
SiteInfoEnvironmentPHP[ENV_ID:ENV_VERSION]
SiteInfoEnvironmentWebServer[ENV_ID][ENV_VERSION]
Filters enable easily modifying data that is passed around in Local. Much like WordPress' filters, all filters in Local must return a value.
Filter Name
appMenu
Description
Allows you to add or modify items in the main app menu (top bar menu)
Callback Function Parameters
macOS Menu Template
Current Platform provided by process.platform
_____________________________________________________________
Filter Name
siteInfoMoreMenu
Description
Allows you to add menu items to the Site Info More menu inside of a single site view.
Callback Function Parameters
menuItems
Example
_____________________________________________________________
Filter Name
preferencesMenuItems
Description
Add-ons have the ability to add items to Local's preferences section by using the preferencesMenuItems
filter hook. This filter will add a new item to the left hand column of all Preferences views and allow add-ons to add their own content section.
An AddonSettingsItem
object is given to Local via the preferencesMenuItems
hook (see usage examples below). This can then render an array of PreferencesSection
's or any React component. The latter is provided mainly as an escape hatch in the case that an add-on needs more flexibility. Each PreferencesSection
then provides an optional header and a single or array of MenuContentRowItem
(s).
Props passed to
<Row />
or<Override />
components
Callback Function Parameters
preferencesMenu
Examples
"Standard" example passing in sections and sub-headers
Overriding Sections with a single React Component (allows you to render arbitrary things in the "content area")
ENV_ID
and ENV_VERSION
are for illustrative purposes only and should be replaced with a static value or variable.
Filter Name
Parameters
importBlueprintSiteSettings:ENV_ID:ENV_VERSION
Action Name
Parameters
changeSiteDomain
wordPressInstaller:standardInstall
wordPressInstaller:import
wordPressInstaller:import:includesWP
siteStarted
site
processes
siteStopped
siteCloned
siteAdded
siteDeleted
Site id
changeEnvironment:before
searchReplaceWPDatabase
site
oldDomain
newDomain
subSiteURLs
site
Plain JavaScript object containing information about the selected site.
Example:
siteStatus
String containing one of the following values:
adding
cloning
copying
deleting
exporting
exporting-db
halted
provisioning
running
saving
stopping
container-missing
provisioning-error
wordpress-install-error
pulling-downloading-backup
pulling-importing-backup
pulling-requesting-backup
pushing-packing
pushing-processing
pushing-uploading