wzy
2021-04-01 d388e2788b7ef088d7cd40f901b0acdcec460bc3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
/* ============================================================
 * bootstrapSwitch v1.3 by Larentis Mattia @spiritualGuru
 * http://www.larentis.eu/switch/
 * ============================================================
 * Licensed under the Apache License, Version 2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 * ============================================================ */
 
!function ($) {
  "use strict";
 
  $.fn['bootstrapSwitch'] = function (method) {
    var methods = {
      init: function () {
        return this.each(function () {
            var $element = $(this)
              , $div
              , $switchLeft
              , $switchRight
              , $label
              , myClasses = ""
              , classes = $element.attr('class')
              , color
              , moving
              , onLabel = "ON"
              , offLabel = "OFF"
              , icon = false;
 
            $.each(['switch-mini', 'switch-small', 'switch-large'], function (i, el) {
              if (classes.indexOf(el) >= 0)
                myClasses = el;
            });
 
            $element.addClass('has-switch');
 
            if ($element.data('on') !== undefined)
              color = "switch-" + $element.data('on');
 
            if ($element.data('on-label') !== undefined)
              onLabel = $element.data('on-label');
 
            if ($element.data('off-label') !== undefined)
              offLabel = $element.data('off-label');
 
            if ($element.data('icon') !== undefined)
              icon = $element.data('icon');
 
            $switchLeft = $('<span>')
              .addClass("switch-left")
              .addClass(myClasses)
              .addClass(color)
              .html(onLabel);
 
            color = '';
            if ($element.data('off') !== undefined)
              color = "switch-" + $element.data('off');
 
            $switchRight = $('<span>')
              .addClass("switch-right")
              .addClass(myClasses)
              .addClass(color)
              .html(offLabel);
 
            $label = $('<label>')
              .html("&nbsp;")
              .addClass(myClasses)
              .attr('for', $element.find('input').attr('id'));
 
            if (icon) {
              $label.html('<i class="icon icon-' + icon + '"></i>');
            }
 
            $div = $element.find(':checkbox').wrap($('<div>')).parent().data('animated', false);
 
            if ($element.data('animated') !== false)
              $div.addClass('switch-animate').data('animated', true);
 
            $div
              .append($switchLeft)
              .append($label)
              .append($switchRight);
 
            $element.find('>div').addClass(
              $element.find('input').is(':checked') ? 'switch-on' : 'switch-off'
            );
 
            if ($element.find('input').is(':disabled'))
              $(this).addClass('deactivate');
 
            var changeStatus = function ($this) {
              $this.siblings('label').trigger('mousedown').trigger('mouseup').trigger('click');
            };
 
            $element.on('keydown', function (e) {
              if (e.keyCode === 32) {
                e.stopImmediatePropagation();
                e.preventDefault();
                changeStatus($(e.target).find('span:first'));
              }
            });
 
            $switchLeft.on('click', function (e) {
              changeStatus($(this));
            });
 
            $switchRight.on('click', function (e) {
              changeStatus($(this));
            });
 
            $element.find('input').on('change', function (e) {
              var $this = $(this)
                , $element = $this.parent()
                , thisState = $this.is(':checked')
                , state = $element.is('.switch-off');
 
              e.preventDefault();
 
              $element.css('left', '');
 
              if (state === thisState) {
 
                if (thisState)
                  $element.removeClass('switch-off').addClass('switch-on');
                else $element.removeClass('switch-on').addClass('switch-off');
 
                if ($element.data('animated') !== false)
                  $element.addClass("switch-animate");
 
                $element.parent().trigger('switch-change', {'el': $this, 'value': thisState})
              }
            });
 
            $element.find('label').on('mousedown touchstart', function (e) {
              var $this = $(this);
              moving = false;
 
              e.preventDefault();
              e.stopImmediatePropagation();
 
              $this.closest('div').removeClass('switch-animate');
 
              if ($this.closest('.has-switch').is('.deactivate'))
                $this.unbind('click');
              else {
                $this.on('mousemove touchmove', function (e) {
                  var $element = $(this).closest('.switch')
                    , relativeX = (e.pageX || e.originalEvent.targetTouches[0].pageX) - $element.offset().left
                    , percent = (relativeX / $element.width()) * 100
                    , left = 25
                    , right = 75;
 
                  moving = true;
 
                  if (percent < left)
                    percent = left;
                  else if (percent > right)
                    percent = right;
 
                  $element.find('>div').css('left', (percent - right) + "%")
                });
 
                $this.on('click touchend', function (e) {
                  var $this = $(this)
                    , $target = $(e.target)
                    , $myCheckBox = $target.siblings('input');
 
                  e.stopImmediatePropagation();
                  e.preventDefault();
 
                  $this.unbind('mouseleave');
 
                  if (moving)
                    $myCheckBox.prop('checked', !(parseInt($this.parent().css('left')) < -25));
                  else $myCheckBox.prop("checked", !$myCheckBox.is(":checked"));
 
                  moving = false;
                  $myCheckBox.trigger('change');
                });
 
                $this.on('mouseleave', function (e) {
                  var $this = $(this)
                    , $myCheckBox = $this.siblings('input');
 
                  e.preventDefault();
                  e.stopImmediatePropagation();
 
                  $this.unbind('mouseleave');
                  $this.trigger('mouseup');
 
                  $myCheckBox.prop('checked', !(parseInt($this.parent().css('left')) < -25)).trigger('change');
                });
 
                $this.on('mouseup', function (e) {
                  e.stopImmediatePropagation();
                  e.preventDefault();
 
                  $(this).unbind('mousemove');
                });
              }
            });
          }
        );
      },
      toggleActivation: function () {
        $(this).toggleClass('deactivate');
      },
      isActive: function () {
        return !$(this).hasClass('deactivate');
      },
      setActive: function (active) {
        if (active)
          $(this).removeClass('deactivate');
        else $(this).addClass('deactivate');
      },
      toggleState: function (skipOnChange) {
        var $input = $(this).find('input:checkbox');
        $input.prop('checked', !$input.is(':checked')).trigger('change', skipOnChange);
      },
      setState: function (value, skipOnChange) {
        $(this).find('input:checkbox').prop('checked', value).trigger('change', skipOnChange);
      },
      status: function () {
        return $(this).find('input:checkbox').is(':checked');
      },
      destroy: function () {
        var $div = $(this).find('div')
          , $checkbox;
 
        $div.find(':not(input:checkbox)').remove();
 
        $checkbox = $div.children();
        $checkbox.unwrap().unwrap();
 
        $checkbox.unbind('change');
 
        return $checkbox;
      }
    };
 
    if (methods[method])
      return methods[method].apply(this, Array.prototype.slice.call(arguments, 1));
    else if (typeof method === 'object' || !method)
      return methods.init.apply(this, arguments);
    else
      $.error('Method ' + method + ' does not exist!');
  };
}(jQuery);
 
$(function () {
  $('.switch')['bootstrapSwitch']();
});