react 0.7.1 → 0.10.0-rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -231
- package/addons.js +1 -0
- package/lib/AutoFocusMixin.js +32 -0
- package/lib/CSSCore.js +115 -0
- package/lib/CSSProperty.js +121 -0
- package/lib/CSSPropertyOperations.js +97 -0
- package/lib/ChangeEventPlugin.js +387 -0
- package/lib/ClientReactRootIndex.js +30 -0
- package/lib/CompositionEventPlugin.js +260 -0
- package/lib/DOMChildrenOperations.js +171 -0
- package/lib/DOMProperty.js +270 -0
- package/lib/DOMPropertyOperations.js +181 -0
- package/lib/Danger.js +187 -0
- package/lib/DefaultDOMPropertyConfig.js +196 -0
- package/lib/DefaultEventPluginOrder.js +44 -0
- package/lib/EnterLeaveEventPlugin.js +145 -0
- package/lib/EventConstants.js +76 -0
- package/lib/EventListener.js +69 -0
- package/lib/EventPluginHub.js +295 -0
- package/lib/EventPluginRegistry.js +281 -0
- package/lib/EventPluginUtils.js +214 -0
- package/lib/EventPropagators.js +143 -0
- package/lib/ExecutionEnvironment.js +44 -0
- package/lib/LinkedStateMixin.js +46 -0
- package/lib/LinkedValueUtils.js +160 -0
- package/lib/MobileSafariClickEventPlugin.js +63 -0
- package/lib/PooledClass.js +119 -0
- package/lib/React.js +97 -0
- package/lib/ReactBrowserComponentMixin.js +42 -0
- package/lib/ReactCSSTransitionGroup.js +65 -0
- package/lib/ReactCSSTransitionGroupChild.js +138 -0
- package/lib/ReactChildren.js +132 -0
- package/lib/ReactComponent.js +595 -0
- package/lib/ReactComponentBrowserEnvironment.js +124 -0
- package/lib/ReactCompositeComponent.js +1587 -0
- package/lib/ReactContext.js +67 -0
- package/lib/ReactCurrentOwner.js +39 -0
- package/lib/ReactDOM.js +207 -0
- package/lib/ReactDOMButton.js +69 -0
- package/lib/ReactDOMComponent.js +416 -0
- package/lib/ReactDOMForm.js +62 -0
- package/lib/ReactDOMIDOperations.js +218 -0
- package/lib/ReactDOMImg.js +61 -0
- package/lib/ReactDOMInput.js +182 -0
- package/lib/ReactDOMOption.js +55 -0
- package/lib/ReactDOMSelect.js +180 -0
- package/lib/ReactDOMSelection.js +189 -0
- package/lib/ReactDOMTextarea.js +144 -0
- package/lib/ReactDefaultBatchingStrategy.js +75 -0
- package/lib/ReactDefaultInjection.js +125 -0
- package/lib/ReactDefaultPerf.js +244 -0
- package/lib/ReactDefaultPerfAnalysis.js +199 -0
- package/lib/ReactErrorUtils.js +37 -0
- package/lib/ReactEventEmitter.js +339 -0
- package/lib/ReactEventEmitterMixin.js +57 -0
- package/lib/ReactEventTopLevelCallback.js +149 -0
- package/lib/ReactInjection.js +43 -0
- package/lib/ReactInputSelection.js +141 -0
- package/lib/ReactInstanceHandles.js +338 -0
- package/lib/ReactLink.js +54 -0
- package/lib/ReactMarkupChecksum.js +53 -0
- package/lib/ReactMount.js +649 -0
- package/lib/ReactMountReady.js +95 -0
- package/lib/ReactMultiChild.js +432 -0
- package/lib/ReactMultiChildUpdateTypes.js +38 -0
- package/lib/ReactOwner.js +159 -0
- package/lib/ReactPerf.js +85 -0
- package/lib/ReactPropTransferer.js +147 -0
- package/lib/ReactPropTypeLocationNames.js +31 -0
- package/lib/ReactPropTypeLocations.js +29 -0
- package/lib/ReactPropTypes.js +359 -0
- package/lib/ReactPutListenerQueue.js +61 -0
- package/lib/ReactReconcileTransaction.js +182 -0
- package/lib/ReactRootIndex.js +36 -0
- package/lib/ReactServerRendering.js +89 -0
- package/lib/ReactServerRenderingTransaction.js +116 -0
- package/lib/ReactStateSetters.js +111 -0
- package/lib/ReactTestUtils.js +394 -0
- package/lib/ReactTextComponent.js +121 -0
- package/lib/ReactTransitionChildMapping.js +106 -0
- package/lib/ReactTransitionEvents.js +97 -0
- package/lib/ReactTransitionGroup.js +187 -0
- package/lib/ReactUpdates.js +148 -0
- package/lib/ReactWithAddons.js +53 -0
- package/lib/SelectEventPlugin.js +200 -0
- package/lib/ServerReactRootIndex.js +36 -0
- package/lib/SimpleEventPlugin.js +413 -0
- package/lib/SyntheticClipboardEvent.js +51 -0
- package/lib/SyntheticCompositionEvent.js +51 -0
- package/lib/SyntheticDragEvent.js +44 -0
- package/lib/SyntheticEvent.js +164 -0
- package/lib/SyntheticFocusEvent.js +44 -0
- package/lib/SyntheticKeyboardEvent.js +58 -0
- package/lib/SyntheticMouseEvent.js +85 -0
- package/lib/SyntheticTouchEvent.js +50 -0
- package/lib/SyntheticUIEvent.js +45 -0
- package/lib/SyntheticWheelEvent.js +66 -0
- package/lib/Transaction.js +276 -0
- package/lib/ViewportMetrics.js +37 -0
- package/lib/accumulate.js +54 -0
- package/lib/adler32.js +39 -0
- package/lib/cloneWithProps.js +59 -0
- package/lib/containsNode.js +49 -0
- package/lib/copyProperties.js +54 -0
- package/lib/createArrayFrom.js +91 -0
- package/lib/createFullPageComponent.js +63 -0
- package/lib/createNodesFromMarkup.js +93 -0
- package/lib/createObjectFrom.js +61 -0
- package/lib/cx.js +44 -0
- package/lib/dangerousStyleValue.js +57 -0
- package/lib/emptyFunction.js +43 -0
- package/lib/emptyObject.js +27 -0
- package/lib/escapeTextForBrowser.js +47 -0
- package/lib/flattenChildren.js +57 -0
- package/lib/focusNode.js +33 -0
- package/lib/forEachAccumulated.js +36 -0
- package/lib/getActiveElement.js +34 -0
- package/lib/getEventKey.js +85 -0
- package/lib/getEventTarget.js +36 -0
- package/lib/getMarkupWrap.js +118 -0
- package/lib/getNodeForCharacterOffset.js +80 -0
- package/lib/getReactRootElementInContainer.js +40 -0
- package/lib/getTextContentAccessor.js +42 -0
- package/lib/getUnboundedScrollPosition.js +45 -0
- package/lib/hyphenate.js +35 -0
- package/lib/instantiateReactComponent.js +70 -0
- package/lib/invariant.js +62 -0
- package/lib/isEventSupported.js +70 -0
- package/lib/isNode.js +33 -0
- package/lib/isTextInputElement.js +49 -0
- package/lib/isTextNode.js +30 -0
- package/lib/joinClasses.js +44 -0
- package/lib/keyMirror.js +58 -0
- package/lib/keyOf.js +41 -0
- package/lib/memoizeStringOnly.js +39 -0
- package/lib/merge.js +37 -0
- package/lib/mergeHelpers.js +136 -0
- package/lib/mergeInto.js +45 -0
- package/lib/mixInto.js +34 -0
- package/lib/monitorCodeUse.js +37 -0
- package/lib/objMap.js +47 -0
- package/lib/objMapKeyVal.js +47 -0
- package/lib/onlyChild.js +43 -0
- package/lib/performanceNow.js +42 -0
- package/lib/shallowEqual.js +49 -0
- package/lib/shouldUpdateReactComponent.js +61 -0
- package/lib/toArray.js +75 -0
- package/lib/traverseAllChildren.js +190 -0
- package/lib/update.js +159 -0
- package/lib/warning.js +48 -0
- package/package.json +33 -31
- package/react.js +1 -0
- package/.npmignore +0 -7
- package/.travis.yml +0 -7
- package/Jakefile.js +0 -39
- package/LICENSE +0 -19
- package/browser-test/dist.html +0 -90
- package/browser-test/index.html +0 -86
- package/browser-test/min.html +0 -90
- package/dist/react.js +0 -3141
- package/dist/react.min.js +0 -22
- package/doc/advanced.md +0 -175
- package/doc/color-def.graffle +0 -938
- package/doc/color-def.png +0 -0
- package/doc/simple.dot +0 -25
- package/doc/simple.png +0 -0
- package/examples/longer-example.js +0 -41
- package/examples/simple.js +0 -45
- package/examples/using-ast-directly.js +0 -30
- package/examples/using-events1.js +0 -79
- package/examples/using-log-events.js +0 -43
- package/lib/base-task.js +0 -120
- package/lib/cb-task.js +0 -84
- package/lib/core.js +0 -138
- package/lib/dsl.js +0 -138
- package/lib/error.js +0 -55
- package/lib/event-collector.js +0 -81
- package/lib/event-manager.js +0 -89
- package/lib/eventemitter.js +0 -20
- package/lib/finalcb-first-task.js +0 -68
- package/lib/finalcb-task.js +0 -65
- package/lib/id.js +0 -22
- package/lib/input-parser.js +0 -56
- package/lib/log-events.js +0 -101
- package/lib/parse.js +0 -41
- package/lib/promise-resolve.js +0 -50
- package/lib/promise-task.js +0 -93
- package/lib/react.js +0 -59
- package/lib/ret-task.js +0 -71
- package/lib/sprintf.js +0 -18
- package/lib/status.js +0 -14
- package/lib/task.js +0 -251
- package/lib/track-tasks.js +0 -74
- package/lib/validate.js +0 -159
- package/lib/vcon.js +0 -113
- package/lib/when-task.js +0 -84
- package/src/dist.build.requirejs +0 -20
- package/test/ast.mocha.js +0 -136
- package/test/cb-task.mocha.js +0 -220
- package/test/core-deferred.mocha.js +0 -143
- package/test/core-when.mocha.js +0 -96
- package/test/core.mocha.js +0 -589
- package/test/dsl.mocha.js +0 -352
- package/test/event-manager.mocha.js +0 -119
- package/test/exec-options.mocha.js +0 -48
- package/test/finalcb-task.mocha.js +0 -58
- package/test/input-parser.mocha.js +0 -86
- package/test/log-events.mocha.js +0 -88
- package/test/mocha.opts +0 -2
- package/test/module-use.mocha.js +0 -164
- package/test/promise-auto-resolve.mocha.js +0 -68
- package/test/ret-task.mocha.js +0 -220
- package/test/task.mocha.js +0 -42
- package/test/validate-cb-task.mocha.js +0 -100
- package/test/validate-ret-task.mocha.js +0 -110
- package/test/validate.mocha.js +0 -324
- package/test/vcon.mocha.js +0 -193
- package/vendor/chai/chai.js +0 -4251
- package/vendor/jquery/jquery-1.7.1.js +0 -9266
- package/vendor/jquery/jquery-1.7.1.min.js +0 -4
- package/vendor/node/util.js +0 -531
- package/vendor/requirejs/require.js +0 -2045
- package/vendor/requirejs/require.min.js +0 -36
package/lib/Danger.js
ADDED
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2013-2014 Facebook, Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*
|
|
16
|
+
* @providesModule Danger
|
|
17
|
+
* @typechecks static-only
|
|
18
|
+
*/
|
|
19
|
+
|
|
20
|
+
/*jslint evil: true, sub: true */
|
|
21
|
+
|
|
22
|
+
"use strict";
|
|
23
|
+
|
|
24
|
+
var ExecutionEnvironment = require("./ExecutionEnvironment");
|
|
25
|
+
|
|
26
|
+
var createNodesFromMarkup = require("./createNodesFromMarkup");
|
|
27
|
+
var emptyFunction = require("./emptyFunction");
|
|
28
|
+
var getMarkupWrap = require("./getMarkupWrap");
|
|
29
|
+
var invariant = require("./invariant");
|
|
30
|
+
|
|
31
|
+
var OPEN_TAG_NAME_EXP = /^(<[^ \/>]+)/;
|
|
32
|
+
var RESULT_INDEX_ATTR = 'data-danger-index';
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* Extracts the `nodeName` from a string of markup.
|
|
36
|
+
*
|
|
37
|
+
* NOTE: Extracting the `nodeName` does not require a regular expression match
|
|
38
|
+
* because we make assumptions about React-generated markup (i.e. there are no
|
|
39
|
+
* spaces surrounding the opening tag and there is at least one attribute).
|
|
40
|
+
*
|
|
41
|
+
* @param {string} markup String of markup.
|
|
42
|
+
* @return {string} Node name of the supplied markup.
|
|
43
|
+
* @see http://jsperf.com/extract-nodename
|
|
44
|
+
*/
|
|
45
|
+
function getNodeName(markup) {
|
|
46
|
+
return markup.substring(1, markup.indexOf(' '));
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
var Danger = {
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Renders markup into an array of nodes. The markup is expected to render
|
|
53
|
+
* into a list of root nodes. Also, the length of `resultList` and
|
|
54
|
+
* `markupList` should be the same.
|
|
55
|
+
*
|
|
56
|
+
* @param {array<string>} markupList List of markup strings to render.
|
|
57
|
+
* @return {array<DOMElement>} List of rendered nodes.
|
|
58
|
+
* @internal
|
|
59
|
+
*/
|
|
60
|
+
dangerouslyRenderMarkup: function(markupList) {
|
|
61
|
+
("production" !== process.env.NODE_ENV ? invariant(
|
|
62
|
+
ExecutionEnvironment.canUseDOM,
|
|
63
|
+
'dangerouslyRenderMarkup(...): Cannot render markup in a Worker ' +
|
|
64
|
+
'thread. This is likely a bug in the framework. Please report ' +
|
|
65
|
+
'immediately.'
|
|
66
|
+
) : invariant(ExecutionEnvironment.canUseDOM));
|
|
67
|
+
var nodeName;
|
|
68
|
+
var markupByNodeName = {};
|
|
69
|
+
// Group markup by `nodeName` if a wrap is necessary, else by '*'.
|
|
70
|
+
for (var i = 0; i < markupList.length; i++) {
|
|
71
|
+
("production" !== process.env.NODE_ENV ? invariant(
|
|
72
|
+
markupList[i],
|
|
73
|
+
'dangerouslyRenderMarkup(...): Missing markup.'
|
|
74
|
+
) : invariant(markupList[i]));
|
|
75
|
+
nodeName = getNodeName(markupList[i]);
|
|
76
|
+
nodeName = getMarkupWrap(nodeName) ? nodeName : '*';
|
|
77
|
+
markupByNodeName[nodeName] = markupByNodeName[nodeName] || [];
|
|
78
|
+
markupByNodeName[nodeName][i] = markupList[i];
|
|
79
|
+
}
|
|
80
|
+
var resultList = [];
|
|
81
|
+
var resultListAssignmentCount = 0;
|
|
82
|
+
for (nodeName in markupByNodeName) {
|
|
83
|
+
if (!markupByNodeName.hasOwnProperty(nodeName)) {
|
|
84
|
+
continue;
|
|
85
|
+
}
|
|
86
|
+
var markupListByNodeName = markupByNodeName[nodeName];
|
|
87
|
+
|
|
88
|
+
// This for-in loop skips the holes of the sparse array. The order of
|
|
89
|
+
// iteration should follow the order of assignment, which happens to match
|
|
90
|
+
// numerical index order, but we don't rely on that.
|
|
91
|
+
for (var resultIndex in markupListByNodeName) {
|
|
92
|
+
if (markupListByNodeName.hasOwnProperty(resultIndex)) {
|
|
93
|
+
var markup = markupListByNodeName[resultIndex];
|
|
94
|
+
|
|
95
|
+
// Push the requested markup with an additional RESULT_INDEX_ATTR
|
|
96
|
+
// attribute. If the markup does not start with a < character, it
|
|
97
|
+
// will be discarded below (with an appropriate console.error).
|
|
98
|
+
markupListByNodeName[resultIndex] = markup.replace(
|
|
99
|
+
OPEN_TAG_NAME_EXP,
|
|
100
|
+
// This index will be parsed back out below.
|
|
101
|
+
'$1 ' + RESULT_INDEX_ATTR + '="' + resultIndex + '" '
|
|
102
|
+
);
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
// Render each group of markup with similar wrapping `nodeName`.
|
|
107
|
+
var renderNodes = createNodesFromMarkup(
|
|
108
|
+
markupListByNodeName.join(''),
|
|
109
|
+
emptyFunction // Do nothing special with <script> tags.
|
|
110
|
+
);
|
|
111
|
+
|
|
112
|
+
for (i = 0; i < renderNodes.length; ++i) {
|
|
113
|
+
var renderNode = renderNodes[i];
|
|
114
|
+
if (renderNode.hasAttribute &&
|
|
115
|
+
renderNode.hasAttribute(RESULT_INDEX_ATTR)) {
|
|
116
|
+
|
|
117
|
+
resultIndex = +renderNode.getAttribute(RESULT_INDEX_ATTR);
|
|
118
|
+
renderNode.removeAttribute(RESULT_INDEX_ATTR);
|
|
119
|
+
|
|
120
|
+
("production" !== process.env.NODE_ENV ? invariant(
|
|
121
|
+
!resultList.hasOwnProperty(resultIndex),
|
|
122
|
+
'Danger: Assigning to an already-occupied result index.'
|
|
123
|
+
) : invariant(!resultList.hasOwnProperty(resultIndex)));
|
|
124
|
+
|
|
125
|
+
resultList[resultIndex] = renderNode;
|
|
126
|
+
|
|
127
|
+
// This should match resultList.length and markupList.length when
|
|
128
|
+
// we're done.
|
|
129
|
+
resultListAssignmentCount += 1;
|
|
130
|
+
|
|
131
|
+
} else if ("production" !== process.env.NODE_ENV) {
|
|
132
|
+
console.error(
|
|
133
|
+
"Danger: Discarding unexpected node:",
|
|
134
|
+
renderNode
|
|
135
|
+
);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
// Although resultList was populated out of order, it should now be a dense
|
|
141
|
+
// array.
|
|
142
|
+
("production" !== process.env.NODE_ENV ? invariant(
|
|
143
|
+
resultListAssignmentCount === resultList.length,
|
|
144
|
+
'Danger: Did not assign to every index of resultList.'
|
|
145
|
+
) : invariant(resultListAssignmentCount === resultList.length));
|
|
146
|
+
|
|
147
|
+
("production" !== process.env.NODE_ENV ? invariant(
|
|
148
|
+
resultList.length === markupList.length,
|
|
149
|
+
'Danger: Expected markup to render %s nodes, but rendered %s.',
|
|
150
|
+
markupList.length,
|
|
151
|
+
resultList.length
|
|
152
|
+
) : invariant(resultList.length === markupList.length));
|
|
153
|
+
|
|
154
|
+
return resultList;
|
|
155
|
+
},
|
|
156
|
+
|
|
157
|
+
/**
|
|
158
|
+
* Replaces a node with a string of markup at its current position within its
|
|
159
|
+
* parent. The markup must render into a single root node.
|
|
160
|
+
*
|
|
161
|
+
* @param {DOMElement} oldChild Child node to replace.
|
|
162
|
+
* @param {string} markup Markup to render in place of the child node.
|
|
163
|
+
* @internal
|
|
164
|
+
*/
|
|
165
|
+
dangerouslyReplaceNodeWithMarkup: function(oldChild, markup) {
|
|
166
|
+
("production" !== process.env.NODE_ENV ? invariant(
|
|
167
|
+
ExecutionEnvironment.canUseDOM,
|
|
168
|
+
'dangerouslyReplaceNodeWithMarkup(...): Cannot render markup in a ' +
|
|
169
|
+
'worker thread. This is likely a bug in the framework. Please report ' +
|
|
170
|
+
'immediately.'
|
|
171
|
+
) : invariant(ExecutionEnvironment.canUseDOM));
|
|
172
|
+
("production" !== process.env.NODE_ENV ? invariant(markup, 'dangerouslyReplaceNodeWithMarkup(...): Missing markup.') : invariant(markup));
|
|
173
|
+
("production" !== process.env.NODE_ENV ? invariant(
|
|
174
|
+
oldChild.tagName.toLowerCase() !== 'html',
|
|
175
|
+
'dangerouslyReplaceNodeWithMarkup(...): Cannot replace markup of the ' +
|
|
176
|
+
'<html> node. This is because browser quirks make this unreliable ' +
|
|
177
|
+
'and/or slow. If you want to render to the root you must use ' +
|
|
178
|
+
'server rendering. See renderComponentToString().'
|
|
179
|
+
) : invariant(oldChild.tagName.toLowerCase() !== 'html'));
|
|
180
|
+
|
|
181
|
+
var newChild = createNodesFromMarkup(markup, emptyFunction)[0];
|
|
182
|
+
oldChild.parentNode.replaceChild(newChild, oldChild);
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
};
|
|
186
|
+
|
|
187
|
+
module.exports = Danger;
|
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2013-2014 Facebook, Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*
|
|
16
|
+
* @providesModule DefaultDOMPropertyConfig
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
/*jslint bitwise: true*/
|
|
20
|
+
|
|
21
|
+
"use strict";
|
|
22
|
+
|
|
23
|
+
var DOMProperty = require("./DOMProperty");
|
|
24
|
+
|
|
25
|
+
var MUST_USE_ATTRIBUTE = DOMProperty.injection.MUST_USE_ATTRIBUTE;
|
|
26
|
+
var MUST_USE_PROPERTY = DOMProperty.injection.MUST_USE_PROPERTY;
|
|
27
|
+
var HAS_BOOLEAN_VALUE = DOMProperty.injection.HAS_BOOLEAN_VALUE;
|
|
28
|
+
var HAS_SIDE_EFFECTS = DOMProperty.injection.HAS_SIDE_EFFECTS;
|
|
29
|
+
var HAS_POSITIVE_NUMERIC_VALUE =
|
|
30
|
+
DOMProperty.injection.HAS_POSITIVE_NUMERIC_VALUE;
|
|
31
|
+
|
|
32
|
+
var DefaultDOMPropertyConfig = {
|
|
33
|
+
isCustomAttribute: RegExp.prototype.test.bind(
|
|
34
|
+
/^(data|aria)-[a-z_][a-z\d_.\-]*$/
|
|
35
|
+
),
|
|
36
|
+
Properties: {
|
|
37
|
+
/**
|
|
38
|
+
* Standard Properties
|
|
39
|
+
*/
|
|
40
|
+
accept: null,
|
|
41
|
+
accessKey: null,
|
|
42
|
+
action: null,
|
|
43
|
+
allowFullScreen: MUST_USE_ATTRIBUTE | HAS_BOOLEAN_VALUE,
|
|
44
|
+
allowTransparency: MUST_USE_ATTRIBUTE,
|
|
45
|
+
alt: null,
|
|
46
|
+
async: HAS_BOOLEAN_VALUE,
|
|
47
|
+
autoComplete: null,
|
|
48
|
+
// autoFocus is polyfilled/normalized by AutoFocusMixin
|
|
49
|
+
// autoFocus: HAS_BOOLEAN_VALUE,
|
|
50
|
+
autoPlay: HAS_BOOLEAN_VALUE,
|
|
51
|
+
cellPadding: null,
|
|
52
|
+
cellSpacing: null,
|
|
53
|
+
charSet: MUST_USE_ATTRIBUTE,
|
|
54
|
+
checked: MUST_USE_PROPERTY | HAS_BOOLEAN_VALUE,
|
|
55
|
+
className: MUST_USE_PROPERTY,
|
|
56
|
+
cols: MUST_USE_ATTRIBUTE | HAS_POSITIVE_NUMERIC_VALUE,
|
|
57
|
+
colSpan: null,
|
|
58
|
+
content: null,
|
|
59
|
+
contentEditable: null,
|
|
60
|
+
contextMenu: MUST_USE_ATTRIBUTE,
|
|
61
|
+
controls: MUST_USE_PROPERTY | HAS_BOOLEAN_VALUE,
|
|
62
|
+
crossOrigin: null,
|
|
63
|
+
data: null, // For `<object />` acts as `src`.
|
|
64
|
+
dateTime: MUST_USE_ATTRIBUTE,
|
|
65
|
+
defer: HAS_BOOLEAN_VALUE,
|
|
66
|
+
dir: null,
|
|
67
|
+
disabled: MUST_USE_ATTRIBUTE | HAS_BOOLEAN_VALUE,
|
|
68
|
+
download: null,
|
|
69
|
+
draggable: null,
|
|
70
|
+
encType: null,
|
|
71
|
+
form: MUST_USE_ATTRIBUTE,
|
|
72
|
+
formNoValidate: HAS_BOOLEAN_VALUE,
|
|
73
|
+
frameBorder: MUST_USE_ATTRIBUTE,
|
|
74
|
+
height: MUST_USE_ATTRIBUTE,
|
|
75
|
+
hidden: MUST_USE_ATTRIBUTE | HAS_BOOLEAN_VALUE,
|
|
76
|
+
href: null,
|
|
77
|
+
hrefLang: null,
|
|
78
|
+
htmlFor: null,
|
|
79
|
+
httpEquiv: null,
|
|
80
|
+
icon: null,
|
|
81
|
+
id: MUST_USE_PROPERTY,
|
|
82
|
+
label: null,
|
|
83
|
+
lang: null,
|
|
84
|
+
list: null,
|
|
85
|
+
loop: MUST_USE_PROPERTY | HAS_BOOLEAN_VALUE,
|
|
86
|
+
max: null,
|
|
87
|
+
maxLength: MUST_USE_ATTRIBUTE,
|
|
88
|
+
mediaGroup: null,
|
|
89
|
+
method: null,
|
|
90
|
+
min: null,
|
|
91
|
+
multiple: MUST_USE_PROPERTY | HAS_BOOLEAN_VALUE,
|
|
92
|
+
muted: MUST_USE_PROPERTY | HAS_BOOLEAN_VALUE,
|
|
93
|
+
name: null,
|
|
94
|
+
noValidate: HAS_BOOLEAN_VALUE,
|
|
95
|
+
pattern: null,
|
|
96
|
+
placeholder: null,
|
|
97
|
+
poster: null,
|
|
98
|
+
preload: null,
|
|
99
|
+
radioGroup: null,
|
|
100
|
+
readOnly: MUST_USE_PROPERTY | HAS_BOOLEAN_VALUE,
|
|
101
|
+
rel: null,
|
|
102
|
+
required: HAS_BOOLEAN_VALUE,
|
|
103
|
+
role: MUST_USE_ATTRIBUTE,
|
|
104
|
+
rows: MUST_USE_ATTRIBUTE | HAS_POSITIVE_NUMERIC_VALUE,
|
|
105
|
+
rowSpan: null,
|
|
106
|
+
sandbox: null,
|
|
107
|
+
scope: null,
|
|
108
|
+
scrollLeft: MUST_USE_PROPERTY,
|
|
109
|
+
scrollTop: MUST_USE_PROPERTY,
|
|
110
|
+
seamless: MUST_USE_ATTRIBUTE | HAS_BOOLEAN_VALUE,
|
|
111
|
+
selected: MUST_USE_PROPERTY | HAS_BOOLEAN_VALUE,
|
|
112
|
+
size: MUST_USE_ATTRIBUTE | HAS_POSITIVE_NUMERIC_VALUE,
|
|
113
|
+
span: HAS_POSITIVE_NUMERIC_VALUE,
|
|
114
|
+
spellCheck: null,
|
|
115
|
+
src: null,
|
|
116
|
+
srcDoc: MUST_USE_PROPERTY,
|
|
117
|
+
srcSet: null,
|
|
118
|
+
step: null,
|
|
119
|
+
style: null,
|
|
120
|
+
tabIndex: null,
|
|
121
|
+
target: null,
|
|
122
|
+
title: null,
|
|
123
|
+
type: null,
|
|
124
|
+
value: MUST_USE_PROPERTY | HAS_SIDE_EFFECTS,
|
|
125
|
+
width: MUST_USE_ATTRIBUTE,
|
|
126
|
+
wmode: MUST_USE_ATTRIBUTE,
|
|
127
|
+
|
|
128
|
+
/**
|
|
129
|
+
* Non-standard Properties
|
|
130
|
+
*/
|
|
131
|
+
autoCapitalize: null, // Supported in Mobile Safari for keyboard hints
|
|
132
|
+
autoCorrect: null, // Supported in Mobile Safari for keyboard hints
|
|
133
|
+
property: null, // Supports OG in meta tags
|
|
134
|
+
|
|
135
|
+
/**
|
|
136
|
+
* SVG Properties
|
|
137
|
+
*/
|
|
138
|
+
cx: MUST_USE_ATTRIBUTE,
|
|
139
|
+
cy: MUST_USE_ATTRIBUTE,
|
|
140
|
+
d: MUST_USE_ATTRIBUTE,
|
|
141
|
+
fill: MUST_USE_ATTRIBUTE,
|
|
142
|
+
fx: MUST_USE_ATTRIBUTE,
|
|
143
|
+
fy: MUST_USE_ATTRIBUTE,
|
|
144
|
+
gradientTransform: MUST_USE_ATTRIBUTE,
|
|
145
|
+
gradientUnits: MUST_USE_ATTRIBUTE,
|
|
146
|
+
offset: MUST_USE_ATTRIBUTE,
|
|
147
|
+
points: MUST_USE_ATTRIBUTE,
|
|
148
|
+
r: MUST_USE_ATTRIBUTE,
|
|
149
|
+
rx: MUST_USE_ATTRIBUTE,
|
|
150
|
+
ry: MUST_USE_ATTRIBUTE,
|
|
151
|
+
spreadMethod: MUST_USE_ATTRIBUTE,
|
|
152
|
+
stopColor: MUST_USE_ATTRIBUTE,
|
|
153
|
+
stopOpacity: MUST_USE_ATTRIBUTE,
|
|
154
|
+
stroke: MUST_USE_ATTRIBUTE,
|
|
155
|
+
strokeLinecap: MUST_USE_ATTRIBUTE,
|
|
156
|
+
strokeWidth: MUST_USE_ATTRIBUTE,
|
|
157
|
+
textAnchor: MUST_USE_ATTRIBUTE,
|
|
158
|
+
transform: MUST_USE_ATTRIBUTE,
|
|
159
|
+
version: MUST_USE_ATTRIBUTE,
|
|
160
|
+
viewBox: MUST_USE_ATTRIBUTE,
|
|
161
|
+
x1: MUST_USE_ATTRIBUTE,
|
|
162
|
+
x2: MUST_USE_ATTRIBUTE,
|
|
163
|
+
x: MUST_USE_ATTRIBUTE,
|
|
164
|
+
y1: MUST_USE_ATTRIBUTE,
|
|
165
|
+
y2: MUST_USE_ATTRIBUTE,
|
|
166
|
+
y: MUST_USE_ATTRIBUTE
|
|
167
|
+
},
|
|
168
|
+
DOMAttributeNames: {
|
|
169
|
+
className: 'class',
|
|
170
|
+
gradientTransform: 'gradientTransform',
|
|
171
|
+
gradientUnits: 'gradientUnits',
|
|
172
|
+
htmlFor: 'for',
|
|
173
|
+
spreadMethod: 'spreadMethod',
|
|
174
|
+
stopColor: 'stop-color',
|
|
175
|
+
stopOpacity: 'stop-opacity',
|
|
176
|
+
strokeLinecap: 'stroke-linecap',
|
|
177
|
+
strokeWidth: 'stroke-width',
|
|
178
|
+
textAnchor: 'text-anchor',
|
|
179
|
+
viewBox: 'viewBox'
|
|
180
|
+
},
|
|
181
|
+
DOMPropertyNames: {
|
|
182
|
+
autoCapitalize: 'autocapitalize',
|
|
183
|
+
autoComplete: 'autocomplete',
|
|
184
|
+
autoCorrect: 'autocorrect',
|
|
185
|
+
autoFocus: 'autofocus',
|
|
186
|
+
autoPlay: 'autoplay',
|
|
187
|
+
encType: 'enctype',
|
|
188
|
+
hrefLang: 'hreflang',
|
|
189
|
+
radioGroup: 'radiogroup',
|
|
190
|
+
spellCheck: 'spellcheck',
|
|
191
|
+
srcDoc: 'srcdoc',
|
|
192
|
+
srcSet: 'srcset'
|
|
193
|
+
}
|
|
194
|
+
};
|
|
195
|
+
|
|
196
|
+
module.exports = DefaultDOMPropertyConfig;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2013-2014 Facebook, Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*
|
|
16
|
+
* @providesModule DefaultEventPluginOrder
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
"use strict";
|
|
20
|
+
|
|
21
|
+
var keyOf = require("./keyOf");
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* Module that is injectable into `EventPluginHub`, that specifies a
|
|
25
|
+
* deterministic ordering of `EventPlugin`s. A convenient way to reason about
|
|
26
|
+
* plugins, without having to package every one of them. This is better than
|
|
27
|
+
* having plugins be ordered in the same order that they are injected because
|
|
28
|
+
* that ordering would be influenced by the packaging order.
|
|
29
|
+
* `ResponderEventPlugin` must occur before `SimpleEventPlugin` so that
|
|
30
|
+
* preventing default on events is convenient in `SimpleEventPlugin` handlers.
|
|
31
|
+
*/
|
|
32
|
+
var DefaultEventPluginOrder = [
|
|
33
|
+
keyOf({ResponderEventPlugin: null}),
|
|
34
|
+
keyOf({SimpleEventPlugin: null}),
|
|
35
|
+
keyOf({TapEventPlugin: null}),
|
|
36
|
+
keyOf({EnterLeaveEventPlugin: null}),
|
|
37
|
+
keyOf({ChangeEventPlugin: null}),
|
|
38
|
+
keyOf({SelectEventPlugin: null}),
|
|
39
|
+
keyOf({CompositionEventPlugin: null}),
|
|
40
|
+
keyOf({AnalyticsEventPlugin: null}),
|
|
41
|
+
keyOf({MobileSafariClickEventPlugin: null})
|
|
42
|
+
];
|
|
43
|
+
|
|
44
|
+
module.exports = DefaultEventPluginOrder;
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2013-2014 Facebook, Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*
|
|
16
|
+
* @providesModule EnterLeaveEventPlugin
|
|
17
|
+
* @typechecks static-only
|
|
18
|
+
*/
|
|
19
|
+
|
|
20
|
+
"use strict";
|
|
21
|
+
|
|
22
|
+
var EventConstants = require("./EventConstants");
|
|
23
|
+
var EventPropagators = require("./EventPropagators");
|
|
24
|
+
var SyntheticMouseEvent = require("./SyntheticMouseEvent");
|
|
25
|
+
|
|
26
|
+
var ReactMount = require("./ReactMount");
|
|
27
|
+
var keyOf = require("./keyOf");
|
|
28
|
+
|
|
29
|
+
var topLevelTypes = EventConstants.topLevelTypes;
|
|
30
|
+
var getFirstReactDOM = ReactMount.getFirstReactDOM;
|
|
31
|
+
|
|
32
|
+
var eventTypes = {
|
|
33
|
+
mouseEnter: {
|
|
34
|
+
registrationName: keyOf({onMouseEnter: null}),
|
|
35
|
+
dependencies: [
|
|
36
|
+
topLevelTypes.topMouseOut,
|
|
37
|
+
topLevelTypes.topMouseOver
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
mouseLeave: {
|
|
41
|
+
registrationName: keyOf({onMouseLeave: null}),
|
|
42
|
+
dependencies: [
|
|
43
|
+
topLevelTypes.topMouseOut,
|
|
44
|
+
topLevelTypes.topMouseOver
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
var extractedEvents = [null, null];
|
|
50
|
+
|
|
51
|
+
var EnterLeaveEventPlugin = {
|
|
52
|
+
|
|
53
|
+
eventTypes: eventTypes,
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* For almost every interaction we care about, there will be both a top-level
|
|
57
|
+
* `mouseover` and `mouseout` event that occurs. Only use `mouseout` so that
|
|
58
|
+
* we do not extract duplicate events. However, moving the mouse into the
|
|
59
|
+
* browser from outside will not fire a `mouseout` event. In this case, we use
|
|
60
|
+
* the `mouseover` top-level event.
|
|
61
|
+
*
|
|
62
|
+
* @param {string} topLevelType Record from `EventConstants`.
|
|
63
|
+
* @param {DOMEventTarget} topLevelTarget The listening component root node.
|
|
64
|
+
* @param {string} topLevelTargetID ID of `topLevelTarget`.
|
|
65
|
+
* @param {object} nativeEvent Native browser event.
|
|
66
|
+
* @return {*} An accumulation of synthetic events.
|
|
67
|
+
* @see {EventPluginHub.extractEvents}
|
|
68
|
+
*/
|
|
69
|
+
extractEvents: function(
|
|
70
|
+
topLevelType,
|
|
71
|
+
topLevelTarget,
|
|
72
|
+
topLevelTargetID,
|
|
73
|
+
nativeEvent) {
|
|
74
|
+
if (topLevelType === topLevelTypes.topMouseOver &&
|
|
75
|
+
(nativeEvent.relatedTarget || nativeEvent.fromElement)) {
|
|
76
|
+
return null;
|
|
77
|
+
}
|
|
78
|
+
if (topLevelType !== topLevelTypes.topMouseOut &&
|
|
79
|
+
topLevelType !== topLevelTypes.topMouseOver) {
|
|
80
|
+
// Must not be a mouse in or mouse out - ignoring.
|
|
81
|
+
return null;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
var win;
|
|
85
|
+
if (topLevelTarget.window === topLevelTarget) {
|
|
86
|
+
// `topLevelTarget` is probably a window object.
|
|
87
|
+
win = topLevelTarget;
|
|
88
|
+
} else {
|
|
89
|
+
// TODO: Figure out why `ownerDocument` is sometimes undefined in IE8.
|
|
90
|
+
var doc = topLevelTarget.ownerDocument;
|
|
91
|
+
if (doc) {
|
|
92
|
+
win = doc.defaultView || doc.parentWindow;
|
|
93
|
+
} else {
|
|
94
|
+
win = window;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
var from, to;
|
|
99
|
+
if (topLevelType === topLevelTypes.topMouseOut) {
|
|
100
|
+
from = topLevelTarget;
|
|
101
|
+
to =
|
|
102
|
+
getFirstReactDOM(nativeEvent.relatedTarget || nativeEvent.toElement) ||
|
|
103
|
+
win;
|
|
104
|
+
} else {
|
|
105
|
+
from = win;
|
|
106
|
+
to = topLevelTarget;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
if (from === to) {
|
|
110
|
+
// Nothing pertains to our managed components.
|
|
111
|
+
return null;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
var fromID = from ? ReactMount.getID(from) : '';
|
|
115
|
+
var toID = to ? ReactMount.getID(to) : '';
|
|
116
|
+
|
|
117
|
+
var leave = SyntheticMouseEvent.getPooled(
|
|
118
|
+
eventTypes.mouseLeave,
|
|
119
|
+
fromID,
|
|
120
|
+
nativeEvent
|
|
121
|
+
);
|
|
122
|
+
leave.type = 'mouseleave';
|
|
123
|
+
leave.target = from;
|
|
124
|
+
leave.relatedTarget = to;
|
|
125
|
+
|
|
126
|
+
var enter = SyntheticMouseEvent.getPooled(
|
|
127
|
+
eventTypes.mouseEnter,
|
|
128
|
+
toID,
|
|
129
|
+
nativeEvent
|
|
130
|
+
);
|
|
131
|
+
enter.type = 'mouseenter';
|
|
132
|
+
enter.target = to;
|
|
133
|
+
enter.relatedTarget = from;
|
|
134
|
+
|
|
135
|
+
EventPropagators.accumulateEnterLeaveDispatches(leave, enter, fromID, toID);
|
|
136
|
+
|
|
137
|
+
extractedEvents[0] = leave;
|
|
138
|
+
extractedEvents[1] = enter;
|
|
139
|
+
|
|
140
|
+
return extractedEvents;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
};
|
|
144
|
+
|
|
145
|
+
module.exports = EnterLeaveEventPlugin;
|