Last active
November 16, 2016 15:23
A partial (re)implementation of jQuery API as a polyfill for learning and teaching purposes
This file contains hidden or 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
/** | |
* not-jquery | |
* | |
* A partial (re)implementation of jQuery API as a polyfill for learning and | |
* teaching purposes. | |
* | |
* https://gist.github.com/gabmontes/535a7b3b059b2a301a55b43e90ee0101 | |
*/ | |
// eslint-disable-next-line no-extra-semi | |
;(function (global) { | |
const jqMethods = { | |
// $().append() | |
append: function (content) { | |
this._elements.forEach(function (elem) { | |
content.each(function () { | |
elem.appendChild(this) | |
}) | |
}) | |
return this | |
}, | |
// $().click() | |
click: function (handler) { | |
this._elements.forEach(function (elem) { | |
elem.addEventListener('click', handler) | |
}) | |
return this | |
}, | |
// $().css() | |
css: function (properties) { | |
this._elements.forEach(function (elem) { | |
Object.keys(properties).forEach(function (prop) { | |
elem.style[prop] = properties[prop] | |
}) | |
}) | |
return this | |
}, | |
// $().each() | |
each: function (iterator) { | |
this._elements.forEach(function (elem, i) { | |
iterator.call(elem, i) | |
}) | |
return this | |
}, | |
// $().html() | |
html: function (html) { | |
this._elements.forEach(function (elem) { | |
elem.innerHTML = html | |
}) | |
return this | |
}, | |
// $().text() | |
text: function (text) { | |
this._elements.forEach(function (elem) { | |
elem.textContent = text | |
}) | |
return this | |
}, | |
// $().toggleClass() | |
toggleClass: function (className) { | |
this._elements.forEach(function (elem) { | |
elem.classList.toggle(className) | |
}) | |
return this | |
} | |
} | |
function wrap(elements) { | |
var wrapped = Object.create(jqMethods) | |
wrapped._elements = elements | |
return wrapped | |
} | |
// $(handler|html|selector) | |
global.$ = global.$ || function (arg) { | |
if (typeof arg === 'function') { | |
// handler to execute on DOM ready | |
const fn = arg | |
if (document.readyState !== 'loading') { | |
fn() | |
} else { | |
document.addEventListener('DOMContentLoaded', fn) | |
} | |
return this | |
} | |
let elements | |
if (arg.trim().charAt(0) === '<') { | |
// html string | |
const html = arg | |
const parent = document.createElement('div') | |
parent.innerHTML = html | |
elements = parent.children | |
} else { | |
// selector | |
const selector = arg | |
elements = document.querySelectorAll(selector) | |
} | |
return wrap([...elements]) | |
} | |
// $.getJSON() | |
global.$.getJSON = global.$.getJSON || function (url, callback) { | |
if (global.fetch) { | |
fetch(url) | |
.then(response => response.json()) | |
.then(callback) | |
} else { | |
const request = new XMLHttpRequest() | |
request.open('GET', url, true) | |
request.onload = function () { | |
if (request.status >= 200 && request.status < 400) { | |
callback(JSON.parse(request.responseText)) | |
} | |
} | |
request.send() | |
} | |
} | |
})(this) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment