2018-11-05 05:06:39 -05:00
|
|
|
/* eslint-disable
|
|
|
|
max-len,
|
|
|
|
no-undef,
|
|
|
|
*/
|
|
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
|
|
// Fix any style issues and re-enable lint.
|
|
|
|
/*
|
|
|
|
* decaffeinate suggestions:
|
|
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
|
|
*/
|
2020-04-06 07:45:56 -04:00
|
|
|
define(['../../../base'], App =>
|
2018-11-05 05:06:39 -05:00
|
|
|
App.directive('toggleSwitch', () => ({
|
|
|
|
restrict: 'E',
|
|
|
|
scope: {
|
|
|
|
description: '@',
|
|
|
|
labelFalse: '@',
|
|
|
|
labelTrue: '@',
|
|
|
|
ngModel: '='
|
|
|
|
},
|
|
|
|
template: `\
|
|
|
|
<fieldset class="toggle-switch">
|
2018-04-16 04:36:10 -04:00
|
|
|
<legend class="sr-only">{{description}}</legend>
|
|
|
|
|
|
|
|
<input
|
|
|
|
type="radio"
|
2018-08-29 05:20:40 -04:00
|
|
|
name="toggle-switch-{{$id}}"
|
2018-04-16 04:36:10 -04:00
|
|
|
class="toggle-switch-input"
|
|
|
|
id="toggle-switch-false-{{$id}}"
|
|
|
|
ng-value="false"
|
|
|
|
ng-model="ngModel"
|
|
|
|
>
|
|
|
|
<label for="toggle-switch-false-{{$id}}" class="toggle-switch-label">{{labelFalse}}</label>
|
|
|
|
|
|
|
|
<input
|
|
|
|
type="radio"
|
|
|
|
class="toggle-switch-input"
|
2018-08-29 05:20:40 -04:00
|
|
|
name="toggle-switch-{{$id}}"
|
2018-04-16 04:36:10 -04:00
|
|
|
id="toggle-switch-true-{{$id}}"
|
|
|
|
ng-value="true"
|
|
|
|
ng-model="ngModel"
|
|
|
|
>
|
|
|
|
<label for="toggle-switch-true-{{$id}}" class="toggle-switch-label">{{labelTrue}}</label>
|
|
|
|
|
2018-04-16 05:07:46 -04:00
|
|
|
<span class="toggle-switch-selection" aria-hidden="true"></span>
|
2018-11-05 05:06:39 -05:00
|
|
|
</fieldset>\
|
|
|
|
`
|
|
|
|
})))
|