UNPKG

doevisualizations

Version:

Data Visualization Library based on RequireJS and D3.js (v4+)

118 lines (116 loc) 5.11 kB
steal('jquery', function($) { /** * @function jQuery.cookie jQuery.cookie * @parent jquerypp * @plugin jquerypp/dom/cookie * @author Klaus Hartl/klaus.hartl@stilbuero.de * * @signature `jQuery.cookie(name, [value, ] [options])` * @param {String} [name] The name of the cookie. * @param {String} [value] The value of the cookie. * @param {{}} [options] An object literal containing key/value pairs to provide optional cookie attributes. Values can be: * @option {Integer|Date} expires Either an integer specifying the expiration date from now on in days or a Date object. If a negative value is specified (e.g. a date in the past), the cookie will be deleted. If set to null or omitted, the cookie will be a session cookie and will not be retained when the the browser exits. * @option {String} domain The domain name * @option {String} path The value of the path atribute of the cookie (default: path of page that created the cookie). * @option {Boolean} secure If true, the secure attribute of the cookie will be set and the cookie transmission will require a secure protocol (like HTTPS). * * @return {String} the value of the cookie or {undefined} when setting the cookie. * * @body * * `jQuery.cookie(name, [value], [options])` lets you create, read and remove cookies. It is the * [jQuery cookie plugin](https://github.com/carhartl/jquery-cookie) written by [Klaus Hartl](http://www.dasstilbuero.de/) * and dual licensed under the [MIT](http://www.opensource.org/licenses/mit-license.php) * and [GPL](http://www.gnu.org/licenses/gpl.html) licenses. * * ## Examples * * Set the value of a cookie. * * $.cookie('the_cookie', 'the_value'); * * Create a cookie with all available options. * * $.cookie('the_cookie', 'the_value', { * expires: 7, * path: '/', * domain: 'jquery.com', * secure: true * }); * * Create a session cookie. * * $.cookie('the_cookie', 'the_value'); * * Delete a cookie by passing null as value. Keep in mind that you have to use the same path and domain * used when the cookie was set. * * $.cookie('the_cookie', null); * * Get the value of a cookie. * * $.cookie('the_cookie'); * */ $.cookie = function(name, value, options) { if (typeof value != 'undefined') { // name and value given, set cookie options = options || {}; if (value === null) { value = ''; options.expires = -1; } // convert value to JSON string if (typeof value == 'object' && JSON.stringify) { value = JSON.stringify(value); } var expires = ''; // Set expiry if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) { var date; if (typeof options.expires == 'number') { date = new Date(); date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000)); } else { date = options.expires; } expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE } // CAUTION: Needed to parenthesize options.path and options.domain // in the following expressions, otherwise they evaluate to undefined // in the packed version for some reason... var path = options.path ? '; path=' + (options.path) : ''; var domain = options.domain ? '; domain=' + (options.domain) : ''; var secure = options.secure ? '; secure' : ''; // Set the cookie name=value;expires=;path=;domain=;secure- document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join(''); } else { // only name given, get cookie var cookieValue = null; if (document.cookie && document.cookie != '') { var cookies = document.cookie.split(';'); for (var i = 0; i < cookies.length; i++) { var cookie = $.trim(cookies[i]); // Does this cookie string begin with the name we want? if (cookie.substring(0, name.length + 1) == (name + '=')) { // Get the cookie value cookieValue = decodeURIComponent(cookie.substring(name.length + 1)); break; } } } // Parse JSON from the cookie into an object if (cookieValue && cookieValue.match(/^\s*\{/)) { try { cookieValue = JSON.parse(cookieValue); } catch (e) { } } return cookieValue; } }; return $; });