Workspace Footer Apps
Learn how to create workspace footer apps that provide persistent status information and contextual data in workspace environments.
Workspace Footer Apps provide persistent status information and contextual data in the workspace footer area. They offer a non-intrusive way to display important information that remains visible while users work with workspace content.
Purpose
Footer Apps provide:
Persistent status information visible while editing
Contextual data related to the current entity
Non-intrusive monitoring without taking up the main workspace space
Real-time updates through workspace context integration
Manifest
{
type: 'workspaceFooterApp',
alias: 'example.workspaceFooterApp.counterStatus',
name: 'Counter Status Footer App',
element: () => import('./counter-status-footer-app.element.js'),
weight: 900,
conditions: [
{
alias: UMB_WORKSPACE_CONDITION_ALIAS,
match: 'Umb.Workspace.Document',
},
],
}Key Properties
element- Points to the Lit element implementationweight- Controls positioning within footer areaconditions- Determines workspace availability
Implementation
Implement your workspace footer app as a Lit element that extends UmbElementMixin. This provides access to workspace contexts and reactive state management:
Footer App Lifecycle
Initialization
Footer apps initialize when the workspace loads
Context consumption happens during construction
Apps persist for the workspace lifetime
Updates
Use
observe()for reactive updates from workspace contextsApps update automatically when observed state changes
Efficient rendering keeps footer responsive
Common Patterns
Status Indicators
Live Counters
Validation Summary
Best Practices
Performance
Keep footer apps lightweight for responsive workspace interaction.
Information Density
Display only essential information. Footer space is limited.
Context Dependencies
Always check that the context is available before accessing its properties.
Responsive Design
Ensure footer apps work across different workspace sizes.
Visual Consistency
Use Umbraco's design system for consistent styling.
Last updated
Was this helpful?