Note: This package is not maintained for uses outside Buildbot.
Implements generic application base for angular.js, ui.router and bootstrap3, with less, and coffeescript.
To use:
bower install guanlecoja-ui
- Include
scripts.js
andstyles.css
to your page. - Include boostrap3, and font-awesome css.
- Make your app depend on
guanlecoja.ui
angular module.
Directives and services are prefixed with gl
Implements styles and behaviour for a menu with following features:
- Menu appears from left side, when mouse over
- Supports 1 level of sub-menus
- Menus icon from Font-Awesome
- Programmatic declaration, integrated with ui-router. Extracts menu from $state
- Supports pin for always expanded menu
The directive takes no argument and is configured via glMenuServiceProvider
and $stateProvider
Implements styles and behaviour for widget centralizing your app's notifications:
- Listens for $http errors, and automatically shows them as notification
- associated service for other components to broadcast notification
The directive takes no argument and is configured via glNotificationService
Implements a topbar holding the page's title and breadcrumb as well as optional contextual widgets. It automatically calculate the breadcrumb from $state, with menu group information.
The directive takes no argument and is configured via glBreadcrumbService
, $stateProvider
and glMenuServiceProvider
The directive is transcluded. The childrens are included inside bootstrap3's ul.nav.navbar-nav.pull-right. It is made for contextual widgets like glNotification, or an authentication menu (not included).
Implements buttons on the topbar for implementing contextual actions. It automatically generate buttons given the configuration. The configuration is reset at each $state change.
The directive takes no argument and is configured via glTopbarContextualActionsService
Configuration entrypoint for the sidebar menu
Declare a group in the menu. takes on object with the following attributes:
name
: Name of the menu, identifier for reference in menu itemscaption
: Text of the menu, as shown in the UIicon
: Icon name from font-awesome. E.gbug
will use thefa-bug
class for the iconorder
: The menu is reordered according to this key. This allows to declare menus in different modules, without caring about the module load order.
Declare a group to be the default group. Can be used directly after the addGroup(group)
call.
Declare the menu footer links. The menu contains up to three footer button, that can be used for arbitrary external links. footer_items
is a list of objects with following attributes:
caption
: text of the buttonhref
: link of the button
Specify the application title. The text is shown in either the side menu, and in the topBar
Menu items are defined in $stateProvider.state
's data. glMenuService scans the list of states to find the menu items. You can use state.data
for the usage you want, but glMenuService will look at the following attributes:
group
: name of the group to which append this menu-itemcaption
: text of the menu-item
Set the breadcrumbs of glTopMenu. In some cases, the automated breadcrumb from glTopMenu is unsuitable. In this case, you can use glBreadcrumbService to override it.
breadcrumb_list is a list of objects containing following attributes:
caption
: text of the breadcrumb itemhref
: optional href for the breadcrumbsref
: optional sref for the breadcrumb. see ui.router's doc for more information about sref format.
Dont put both sref
and href
argument, this does not make sense and is not supported.
Set the contextual actions of glTopMenuContextualActions. You must instantiate the gl-topbar-contextual-actions directive inside a gl-topbar
action_list is a list of objects containing following attributes:
caption
: text of the button itemhelp
: text for the help tooltipicon
: optional icon for the buttonaction
: function called when the button is clicked
API for storing notifications. glNotification directive uses this service to display the notifications.
adds a notification to the notification system. notification is an object with following attributes:
title
: Title of the notificationmsg
: Longer message for the notificationgroup
: glNotificationService supports grouping several notification of the same group together.
Messages of the same group will be concatenated with carriage return, and share the same title (only first title is kept, other titles are ignored)
shortcut for notify
with title to be Error
.
Shortcut for notify
with title to be Network Error
, and group to be Network
Remove a notification from the list.
The stored list of notifications.
- 2.0.0: This package is not maintained for use outside Buildbot. Rewrite the package from CoffeeScript to plain JavaScript.
- 1.8.0: body is no more height:100%, in order to make full height page, user need to use height: 100vh. left-bar pinned preference is now stored in the browser.
- 1.7.0: topbar is now responsive. It will collapse on mobile.
- 1.6.3: Adds setDefaultGroup(group) to glMenuServiceProvider. This option allows to expand a menu by default
- 1.6.2: Fix width issues of content which push some content off-screen for certain monitor size
- 1.6.1: rebuilt with guanlecoja 1.7.2, which populates the BOWERDEPS metadata
- 1.6.0: Massive upgrade of dependencies:
- jquery 2.1 -> 2.2.
- Angular 1.4 -> 1.5.
- Lodash -> 4.11.
- Drop underscore.string as lodash got most important string utils.
- angular-ui-bootstrap 0.11 -> 1.3.2: Most important change is that ui-bootstrap directives are now prefixed with "uib-" e.g: in jade: ".dropdown-toggle" -> ".dropdown-toggle(uib-dropdown-toggle)" This makes the markup more complicated, but the old 0.11 documentation is not even available anymore, so its best to upgrade.
- 1.5.0: Switch to angularJS 1.4.3
- 1.4.2: fix the sidebar when screen is > 800px
- 1.4.1: bump ui-router version to 0.2.13
- 1.4.0: add topbar-contextual-actions directive and associated service
- 1.3.1: Fix auto scrollbar on sidebar menu
- 1.3.0: Switch to angularJS 1.3.1
- 1.2.3: Initial Release
Original Design by Elliot Hesp: https://github.com/Ehesp/Responsive-Dashboard