|
define( [ |
|
"./core", |
|
"./core/access", |
|
"./data/var/dataPriv", |
|
"./data/var/dataUser" |
|
], function( jQuery, access, dataPriv, dataUser ) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, |
|
rmultiDash = /[A-Z]/g; |
|
|
|
function dataAttr( elem, key, data ) { |
|
var name; |
|
|
|
|
|
|
|
if ( data === undefined && elem.nodeType === 1 ) { |
|
name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); |
|
data = elem.getAttribute( name ); |
|
|
|
if ( typeof data === "string" ) { |
|
try { |
|
data = data === "true" ? true : |
|
data === "false" ? false : |
|
data === "null" ? null : |
|
|
|
|
|
+data + "" === data ? +data : |
|
rbrace.test( data ) ? jQuery.parseJSON( data ) : |
|
data; |
|
} catch ( e ) {} |
|
|
|
|
|
dataUser.set( elem, key, data ); |
|
} else { |
|
data = undefined; |
|
} |
|
} |
|
return data; |
|
} |
|
|
|
jQuery.extend( { |
|
hasData: function( elem ) { |
|
return dataUser.hasData( elem ) || dataPriv.hasData( elem ); |
|
}, |
|
|
|
data: function( elem, name, data ) { |
|
return dataUser.access( elem, name, data ); |
|
}, |
|
|
|
removeData: function( elem, name ) { |
|
dataUser.remove( elem, name ); |
|
}, |
|
|
|
|
|
|
|
_data: function( elem, name, data ) { |
|
return dataPriv.access( elem, name, data ); |
|
}, |
|
|
|
_removeData: function( elem, name ) { |
|
dataPriv.remove( elem, name ); |
|
} |
|
} ); |
|
|
|
jQuery.fn.extend( { |
|
data: function( key, value ) { |
|
var i, name, data, |
|
elem = this[ 0 ], |
|
attrs = elem && elem.attributes; |
|
|
|
|
|
if ( key === undefined ) { |
|
if ( this.length ) { |
|
data = dataUser.get( elem ); |
|
|
|
if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { |
|
i = attrs.length; |
|
while ( i-- ) { |
|
|
|
|
|
|
|
if ( attrs[ i ] ) { |
|
name = attrs[ i ].name; |
|
if ( name.indexOf( "data-" ) === 0 ) { |
|
name = jQuery.camelCase( name.slice( 5 ) ); |
|
dataAttr( elem, name, data[ name ] ); |
|
} |
|
} |
|
} |
|
dataPriv.set( elem, "hasDataAttrs", true ); |
|
} |
|
} |
|
|
|
return data; |
|
} |
|
|
|
|
|
if ( typeof key === "object" ) { |
|
return this.each( function() { |
|
dataUser.set( this, key ); |
|
} ); |
|
} |
|
|
|
return access( this, function( value ) { |
|
var data, camelKey; |
|
|
|
|
|
|
|
|
|
|
|
|
|
if ( elem && value === undefined ) { |
|
|
|
|
|
|
|
data = dataUser.get( elem, key ) || |
|
|
|
|
|
|
|
dataUser.get( elem, key.replace( rmultiDash, "-$&" ).toLowerCase() ); |
|
|
|
if ( data !== undefined ) { |
|
return data; |
|
} |
|
|
|
camelKey = jQuery.camelCase( key ); |
|
|
|
|
|
|
|
data = dataUser.get( elem, camelKey ); |
|
if ( data !== undefined ) { |
|
return data; |
|
} |
|
|
|
|
|
|
|
data = dataAttr( elem, camelKey, undefined ); |
|
if ( data !== undefined ) { |
|
return data; |
|
} |
|
|
|
|
|
return; |
|
} |
|
|
|
|
|
camelKey = jQuery.camelCase( key ); |
|
this.each( function() { |
|
|
|
|
|
|
|
var data = dataUser.get( this, camelKey ); |
|
|
|
|
|
|
|
|
|
dataUser.set( this, camelKey, value ); |
|
|
|
|
|
|
|
|
|
if ( key.indexOf( "-" ) > -1 && data !== undefined ) { |
|
dataUser.set( this, key, value ); |
|
} |
|
} ); |
|
}, null, value, arguments.length > 1, null, true ); |
|
}, |
|
|
|
removeData: function( key ) { |
|
return this.each( function() { |
|
dataUser.remove( this, key ); |
|
} ); |
|
} |
|
} ); |
|
|
|
return jQuery; |
|
} ); |
|
|