forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'MDL-73470' of https://github.com/roland04/moodle
- Loading branch information
Showing
9 changed files
with
173 additions
and
23 deletions.
There are no files selected for viewing
81 changes: 81 additions & 0 deletions
81
admin/tool/componentlibrary/content/moodle/components/toggle.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
--- | ||
layout: docs | ||
title: "Toggle input" | ||
date: 2022-01-17T00:00:00+01:00 | ||
draft: false | ||
weight: 60 | ||
tags: | ||
- MDL-73470 | ||
- 4.0 | ||
--- | ||
|
||
## How to use | ||
|
||
Toggle input is rendered using a template found in lib/templates/toggle.mustache. | ||
|
||
The parameters for the template context are: | ||
* id: Unique id for the toggle input. | ||
* extraclasses: Any extra classes added to the toggle input outer container. | ||
* checked: If the initial status is checked. | ||
* disabled: If toggle input is disabled. | ||
* dataattributes: Array of name/value elements added as data-attributes. | ||
* label: Label text. | ||
* labelclasses: Any extra classes added to the label container. | ||
|
||
## Examples | ||
|
||
<div class="small"> | ||
Checked toggle and with "sr-only" label. | ||
</div> | ||
{{< mustache template="core/toggle" >}} | ||
{ | ||
"id": "example-toggle-1", | ||
"checked": true, | ||
"dataattributes": [{ | ||
"name": "action", | ||
"value": "toggle-status" | ||
}], | ||
"label": "Enable/disable status", | ||
"labelclasses": "sr-only" | ||
} | ||
{{< /mustache >}} | ||
|
||
<div class="mt-3 small"> | ||
Disabled toggle with extra classes. | ||
</div> | ||
{{< mustache template="core/toggle" >}} | ||
{ | ||
"id": "example-toggle-2", | ||
"disabled": true, | ||
"extraclasses": "mt-2 ml-2", | ||
"dataattributes": [{ | ||
"name": "action", | ||
"value": "toggle-status" | ||
}], | ||
"label": "Enable/disable status" | ||
} | ||
{{< /mustache >}} | ||
|
||
## Use toggle as a template block | ||
|
||
It is also possible to include *core/toggle* in any other template using [blocks](https://docs.moodle.org/dev/Templates#Blocks), instead of rendering it with a context. | ||
The parameters that you can define are: | ||
* id: Unique id for the toggle input. | ||
* extraclasses: Any extra classes added to the toggle input outer container. | ||
* attributes: Any attributes added to the toggle input. | ||
* data-attributes | ||
* checked | ||
* disabled | ||
* labelmarkup: Label element code block. | ||
* Should include *class="custom-control-label"*. | ||
* label: Label text. | ||
* labelclasses: Any extra classes added to the label container. | ||
|
||
<div class="small"> | ||
Example of template using toggle as a block. | ||
</div> | ||
{{< mustache template="tool_componentlibrary/examples/toggle/example" >}} | ||
{ | ||
} | ||
{{< /mustache >}} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{{! | ||
This file is part of Moodle - http://moodle.org/ | ||
Moodle is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
Moodle 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 General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with Moodle. If not, see <http://www.gnu.org/licenses/>. | ||
}} | ||
{{! | ||
@template core/toggle | ||
Template for toggle element | ||
Example context (json): | ||
{ | ||
"id": "reality-toggle-3", | ||
"checked": true, | ||
"disabled": false, | ||
"dataattributes": [{ | ||
"name": "action", | ||
"value": "toggle-reality" | ||
}], | ||
"label": "Enable/disable reality", | ||
"labelclasses": "sr-only" | ||
} | ||
}} | ||
|
||
<div class="custom-control custom-switch {{$extraclasses}}{{extraclasses}}{{/extraclasses}}"> | ||
<input type="checkbox" class="custom-control-input" id="{{$id}}{{id}}{{/id}}" | ||
{{$attributes}} | ||
{{#dataattributes}}data-{{name}}="{{value}}" {{/dataattributes}} | ||
{{#checked}}checked{{/checked}} | ||
{{#disabled}}disabled{{/disabled}} | ||
{{/attributes}}> | ||
{{$labelmarkup}} | ||
<label class="custom-control-label" for="{{$id}}{{id}}{{/id}}"> | ||
<span class="{{$labelclasses}}{{labelclasses}}{{/labelclasses}}">{{$label}}{{label}}{{/label}}</span> | ||
</label> | ||
{{/labelmarkup}} | ||
</div> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.