You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
192 lines
5.0 KiB
192 lines
5.0 KiB
![]()
10 years ago
|
# Lemonldap::NG::Manager forms
|
||
|
|
||
|
This files contains the form used to expose configuration attributes. The form
|
||
|
is chosen by looking at the *type* property of the current data.
|
||
|
|
||
![]()
10 years ago
|
This property is defined in `Lemonldap::NG::Manager::Build::Attributes` package.
|
||
![]()
10 years ago
|
By default, it is set to *text*.
|
||
|
|
||
![]()
10 years ago
|
`Lemonldap::NG::Manager::Build::Attributes` is compiled into JSON/JS files by
|
||
![]()
10 years ago
|
`jsongenerator.pl`script.
|
||
|
|
||
|
## 1. Form file architecture
|
||
|
|
||
|
Form files must be called `<type>.json` where *<type>* is the declared type of
|
||
|
configuration property to display.
|
||
|
|
||
|
Form files must contain only HTML that will be included in the manager DOM
|
||
|
*(in `#form` div)*. It **must** consist of two blocks:
|
||
|
|
||
|
* a `<div class="panel panel-default">` div that contains the form,
|
||
![]()
9 years ago
|
* a `<script type="text/menu">` script that defines which item to display
|
||
![]()
10 years ago
|
in context menu.
|
||
|
|
||
|
Basic example:
|
||
|
|
||
|
<div class="panel panel-default">
|
||
![]()
10 years ago
|
<div class="panel-heading">
|
||
![]()
10 years ago
|
<h3 class="panel-title">{{translate(currentNode)}}</h3>
|
||
|
</div>
|
||
![]()
10 years ago
|
<div class="panel-body">
|
||
![]()
10 years ago
|
<div class="input-group">
|
||
![]()
9 years ago
|
<label class="input-group-addon" for="textinput" trspan="value"></label>
|
||
![]()
10 years ago
|
<input id="textinput" class="form-control" ng-model="currentNode.data"/>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
![]()
9 years ago
|
<script type="text/menu">
|
||
|
[{
|
||
![]()
10 years ago
|
"title": "cancel"
|
||
![]()
9 years ago
|
}]
|
||
![]()
10 years ago
|
</script>
|
||
|
|
||
|
## 2. Form main div
|
||
|
|
||
|
Based on bootstrap CSS, the main div part may look like:
|
||
|
|
||
|
If configuration item name is read-only:
|
||
|
|
||
|
<div class="panel panel-default">
|
||
![]()
10 years ago
|
<div class="panel-heading">
|
||
![]()
10 years ago
|
<h3 class="panel-title">{{translate(currentNode)}}</h3>
|
||
|
</div>
|
||
![]()
10 years ago
|
<div class="panel-body">
|
||
![]()
10 years ago
|
__ FORM INPUTS __
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
If configuration item name may be modified:
|
||
|
|
||
|
<div class="panel panel-default">
|
||
![]()
10 years ago
|
<div class="panel-heading"> <!-- optional -->
|
||
![]()
9 years ago
|
<h3 class="panel-title" trspan="OptionalTitle"></h3>
|
||
![]()
10 years ago
|
</div>
|
||
![]()
10 years ago
|
<div class="panel-body">
|
||
![]()
10 years ago
|
__ FORM INPUTS __
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
> Note that keywords to translate must be set in all `languages/*.json` files.
|
||
|
|
||
|
### 2.1. AngularJS bindings
|
||
|
|
||
|
Some AngularJS variables are available :
|
||
|
|
||
|
* `currentNode`: the data subnode corresponding to the selected tree item
|
||
|
* `currentScope`: the AngularJS scope corresponding to the selected tree item
|
||
|
|
||
|
You can simply used them as follow:
|
||
|
|
||
|
<input class="form-control" ng-model="currentNode.data"/>
|
||
|
|
||
|
## 3. Script part
|
||
|
|
||
|
Form div **must** define which item menu to display. It is done via the script part
|
||
|
of the file:
|
||
|
|
||
|
Empty context menu:
|
||
|
|
||
![]()
9 years ago
|
<script type="text/menu">
|
||
|
[]
|
||
![]()
10 years ago
|
</script>
|
||
|
|
||
|
Else:
|
||
|
|
||
![]()
9 years ago
|
<script type="text/menu">
|
||
|
[
|
||
![]()
10 years ago
|
{<menu item1>},
|
||
|
{<menu item2>},
|
||
|
{<menu item3>}
|
||
|
]
|
||
|
</script>
|
||
|
|
||
|
### 3.1. Menu item
|
||
|
|
||
|
#### 3.1.1. Simple case
|
||
|
|
||
|
Menu item is a javascript object with at least the key `title`.
|
||
|
|
||
![]()
9 years ago
|
<script type="text/menu">
|
||
|
[
|
||
![]()
10 years ago
|
{ "title": "cancel" }
|
||
|
]
|
||
|
</script>
|
||
|
|
||
|
In this case, the item will be displayed using the translation of *cancel*. It
|
||
|
will launch the function `$scope.cancel()` declared in AngularJS controller
|
||
|
*(`js/manager.js` file)* without any argument: functions in the controller can
|
||
|
access to controller properties and methods.
|
||
|
|
||
|
#### 3.1.2. Dropdown item
|
||
|
|
||
|
You can have sub items simply using `buttons` key which must then be an array
|
||
|
of menu items.
|
||
|
|
||
![]()
9 years ago
|
<script type="text/menu">
|
||
|
[{
|
||
![]()
10 years ago
|
"title": "textToTranslate",
|
||
|
"buttons": [
|
||
|
{ "title": "cancel" },
|
||
|
{ "other": "item" }
|
||
|
]
|
||
|
}]
|
||
|
</script>
|
||
|
|
||
|
#### 3.1.3. Specify function to use
|
||
|
|
||
![]()
9 years ago
|
<script type="text/menu">
|
||
|
[{
|
||
![]()
10 years ago
|
"title": "addVirtualHost",
|
||
|
"action": "addVhost"
|
||
|
}]
|
||
|
</script>
|
||
|
|
||
![]()
10 years ago
|
Same as below except that it will launch `$scope.addVhost()`.
|
||
![]()
10 years ago
|
|
||
|
##### Tips
|
||
|
|
||
|
You can access to the parent using this:
|
||
|
|
||
|
* `currentScope.$parentNodeScope` for the parent scope
|
||
|
* `currentScope.$parentNodeScope.$modelValue` for the parent node
|
||
|
|
||
![]()
10 years ago
|
#### 3.1.5 Icons
|
||
|
|
||
![]()
9 years ago
|
<script type="text/menu">
|
||
|
[{
|
||
![]()
10 years ago
|
"title": "addVirtualHost",
|
||
|
"action": "addVhost",
|
||
|
"icon": "plus-sign",
|
||
|
}]
|
||
|
</script>
|
||
|
|
||
|
The field `icon` can be set to define the Bootstrap glyphicon to use.
|
||
|
|
||
![]()
10 years ago
|
## 4. Modal window
|
||
|
|
||
|
You can use a modal window to display a choice (look at forms/portalSkin.html
|
||
|
for a complete example):
|
||
|
|
||
|
<button class="btn btn-info" ng-click="showModal('portalSkinChoice.html')">
|
||
|
|
||
|
A modal window will be displayed using `portalSkinChoice.html` template. This
|
||
|
template must be declared in the file:
|
||
|
|
||
|
<script type="text/ng-template" id="portalSkinChoice.html">
|
||
|
<div class="modal-header">
|
||
![]()
9 years ago
|
<h3 class="modal-title" trspan="chooseSkin"></h3>
|
||
![]()
10 years ago
|
</div>
|
||
|
<div class="modal-body">
|
||
|
<div class="btn-group">
|
||
|
<button class="btn" ng-repeat="b in currentNode.select" ng-click="ok(currentNode.data=b.k)">
|
||
|
{{b.v}}
|
||
|
</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="modal-footer">
|
||
|
<button class="btn btn-primary" ng-click="ok()" trspan="ok"></button>
|
||
|
<button class="btn btn-warning" ng-click="cancel()" trspan="cancel"></button>
|
||
|
</div>
|
||
|
</script>
|
||
|
|