123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- /**
- * --------------------------------------------
- * AdminLTE TodoList.js
- * License MIT
- * --------------------------------------------
- */
- import $ from 'jquery'
- /**
- * Constants
- * ====================================================
- */
- const NAME = 'TodoList'
- const DATA_KEY = 'lte.todolist'
- const JQUERY_NO_CONFLICT = $.fn[NAME]
- const SELECTOR_DATA_TOGGLE = '[data-widget="todo-list"]'
- const CLASS_NAME_TODO_LIST_DONE = 'done'
- const Default = {
- onCheck(item) {
- return item
- },
- onUnCheck(item) {
- return item
- }
- }
- /**
- * Class Definition
- * ====================================================
- */
- class TodoList {
- constructor(element, config) {
- this._config = config
- this._element = element
- this._init()
- }
- // Public
- toggle(item) {
- item.parents('li').toggleClass(CLASS_NAME_TODO_LIST_DONE)
- if (!$(item).prop('checked')) {
- this.unCheck(item)
- return
- }
- this.check(item)
- }
- check(item) {
- this._config.onCheck(item)
- }
- unCheck(item) {
- this._config.onUnCheck(item)
- }
- // Private
- _init() {
- const $toggleSelector = this._element
- $toggleSelector.find('input:checkbox:checked').parents('li').toggleClass(CLASS_NAME_TODO_LIST_DONE)
- $toggleSelector.on('change', 'input:checkbox', event => {
- this.toggle($(event.target))
- })
- }
- // Static
- static _jQueryInterface(config) {
- return this.each(function () {
- let data = $(this).data(DATA_KEY)
- const _config = $.extend({}, Default, typeof config === 'object' ? config : $(this).data())
- if (!data) {
- data = new TodoList($(this), _config)
- $(this).data(DATA_KEY, data)
- data._init()
- } else if (typeof config === 'string') {
- if (typeof data[config] === 'undefined') {
- throw new TypeError(`No method named "${config}"`)
- }
- data[config]()
- } else if (typeof config === 'undefined') {
- data._init()
- }
- })
- }
- }
- /**
- * Data API
- * ====================================================
- */
- $(window).on('load', () => {
- TodoList._jQueryInterface.call($(SELECTOR_DATA_TOGGLE))
- })
- /**
- * jQuery API
- * ====================================================
- */
- $.fn[NAME] = TodoList._jQueryInterface
- $.fn[NAME].Constructor = TodoList
- $.fn[NAME].noConflict = function () {
- $.fn[NAME] = JQUERY_NO_CONFLICT
- return TodoList._jQueryInterface
- }
- export default TodoList
|