working on making the file upload work over websocket and json
This commit is contained in:
10
goTorrentWebUI/node_modules/material-ui-upload/node_modules/material-ui/utils/autoPrefix.js
generated
vendored
Normal file
10
goTorrentWebUI/node_modules/material-ui-upload/node_modules/material-ui/utils/autoPrefix.js
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = {
|
||||
set: function set(style, key, value) {
|
||||
style[key] = value;
|
||||
}
|
||||
};
|
79
goTorrentWebUI/node_modules/material-ui-upload/node_modules/material-ui/utils/autoprefixer.js
generated
vendored
Normal file
79
goTorrentWebUI/node_modules/material-ui-upload/node_modules/material-ui/utils/autoprefixer.js
generated
vendored
Normal file
@@ -0,0 +1,79 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
|
||||
exports.default = function (muiTheme) {
|
||||
var isClient = typeof navigator !== 'undefined';
|
||||
var userAgent = muiTheme.userAgent;
|
||||
|
||||
if (userAgent === undefined && isClient) {
|
||||
userAgent = navigator.userAgent;
|
||||
}
|
||||
|
||||
if (userAgent === undefined && !hasWarnedAboutUserAgent) {
|
||||
process.env.NODE_ENV !== "production" ? (0, _warning2.default)(false, 'Material-UI: userAgent should be supplied in the muiTheme context\n for server-side rendering.') : void 0;
|
||||
|
||||
hasWarnedAboutUserAgent = true;
|
||||
}
|
||||
|
||||
var prefixAll = (0, _createPrefixer2.default)(_autoprefixerStatic2.default);
|
||||
|
||||
if (userAgent === false) {
|
||||
// Disabled autoprefixer
|
||||
return null;
|
||||
} else if (userAgent === 'all' || userAgent === undefined) {
|
||||
// Prefix for all user agent
|
||||
return function (style) {
|
||||
var isFlex = ['flex', 'inline-flex'].indexOf(style.display) !== -1;
|
||||
var stylePrefixed = prefixAll(style);
|
||||
|
||||
if (isFlex) {
|
||||
var display = stylePrefixed.display;
|
||||
if (isClient) {
|
||||
// We can't apply this join with react-dom:
|
||||
// #https://github.com/facebook/react/issues/6467
|
||||
stylePrefixed.display = display[display.length - 1];
|
||||
} else {
|
||||
stylePrefixed.display = display.join('; display: ');
|
||||
}
|
||||
}
|
||||
|
||||
return stylePrefixed;
|
||||
};
|
||||
} else {
|
||||
var Prefixer = (0, _createPrefixer4.default)(_autoprefixerDynamic2.default, prefixAll);
|
||||
var prefixer = new Prefixer({
|
||||
userAgent: userAgent
|
||||
});
|
||||
|
||||
return function (style) {
|
||||
return prefixer.prefix(style);
|
||||
};
|
||||
}
|
||||
};
|
||||
|
||||
var _createPrefixer = require('inline-style-prefixer/static/createPrefixer');
|
||||
|
||||
var _createPrefixer2 = _interopRequireDefault(_createPrefixer);
|
||||
|
||||
var _createPrefixer3 = require('inline-style-prefixer/dynamic/createPrefixer');
|
||||
|
||||
var _createPrefixer4 = _interopRequireDefault(_createPrefixer3);
|
||||
|
||||
var _autoprefixerDynamic = require('./autoprefixerDynamic');
|
||||
|
||||
var _autoprefixerDynamic2 = _interopRequireDefault(_autoprefixerDynamic);
|
||||
|
||||
var _autoprefixerStatic = require('./autoprefixerStatic');
|
||||
|
||||
var _autoprefixerStatic2 = _interopRequireDefault(_autoprefixerStatic);
|
||||
|
||||
var _warning = require('warning');
|
||||
|
||||
var _warning2 = _interopRequireDefault(_warning);
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
var hasWarnedAboutUserAgent = false;
|
40
goTorrentWebUI/node_modules/material-ui-upload/node_modules/material-ui/utils/autoprefixerDynamic.js
generated
vendored
Normal file
40
goTorrentWebUI/node_modules/material-ui-upload/node_modules/material-ui/utils/autoprefixerDynamic.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
40
goTorrentWebUI/node_modules/material-ui-upload/node_modules/material-ui/utils/autoprefixerStatic.js
generated
vendored
Normal file
40
goTorrentWebUI/node_modules/material-ui-upload/node_modules/material-ui/utils/autoprefixerStatic.js
generated
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
|
||||
var _calc = require('inline-style-prefixer/static/plugins/calc');
|
||||
|
||||
var _calc2 = _interopRequireDefault(_calc);
|
||||
|
||||
var _flex = require('inline-style-prefixer/static/plugins/flex');
|
||||
|
||||
var _flex2 = _interopRequireDefault(_flex);
|
||||
|
||||
var _flexboxIE = require('inline-style-prefixer/static/plugins/flexboxIE');
|
||||
|
||||
var _flexboxIE2 = _interopRequireDefault(_flexboxIE);
|
||||
|
||||
var _flexboxOld = require('inline-style-prefixer/static/plugins/flexboxOld');
|
||||
|
||||
var _flexboxOld2 = _interopRequireDefault(_flexboxOld);
|
||||
|
||||
var _gradient = require('inline-style-prefixer/static/plugins/gradient');
|
||||
|
||||
var _gradient2 = _interopRequireDefault(_gradient);
|
||||
|
||||
var _sizing = require('inline-style-prefixer/static/plugins/sizing');
|
||||
|
||||
var _sizing2 = _interopRequireDefault(_sizing);
|
||||
|
||||
var _transition = require('inline-style-prefixer/static/plugins/transition');
|
||||
|
||||
var _transition2 = _interopRequireDefault(_transition);
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
exports.default = {
|
||||
plugins: [_calc2.default, _flex2.default, _flexboxIE2.default, _flexboxOld2.default, _gradient2.default, _sizing2.default, _transition2.default],
|
||||
prefixMap: { "transform": ["Webkit", "ms"], "transformOrigin": ["Webkit", "ms"], "transformOriginX": ["Webkit", "ms"], "transformOriginY": ["Webkit", "ms"], "backfaceVisibility": ["Webkit"], "perspective": ["Webkit"], "perspectiveOrigin": ["Webkit"], "transformStyle": ["Webkit"], "transformOriginZ": ["Webkit"], "animation": ["Webkit"], "animationDelay": ["Webkit"], "animationDirection": ["Webkit"], "animationFillMode": ["Webkit"], "animationDuration": ["Webkit"], "animationIterationCount": ["Webkit"], "animationName": ["Webkit"], "animationPlayState": ["Webkit"], "animationTimingFunction": ["Webkit"], "appearance": ["Webkit", "Moz"], "userSelect": ["Webkit", "Moz", "ms"], "fontKerning": ["Webkit"], "textEmphasisPosition": ["Webkit"], "textEmphasis": ["Webkit"], "textEmphasisStyle": ["Webkit"], "textEmphasisColor": ["Webkit"], "boxDecorationBreak": ["Webkit"], "clipPath": ["Webkit"], "maskImage": ["Webkit"], "maskMode": ["Webkit"], "maskRepeat": ["Webkit"], "maskPosition": ["Webkit"], "maskClip": ["Webkit"], "maskOrigin": ["Webkit"], "maskSize": ["Webkit"], "maskComposite": ["Webkit"], "mask": ["Webkit"], "maskBorderSource": ["Webkit"], "maskBorderMode": ["Webkit"], "maskBorderSlice": ["Webkit"], "maskBorderWidth": ["Webkit"], "maskBorderOutset": ["Webkit"], "maskBorderRepeat": ["Webkit"], "maskBorder": ["Webkit"], "maskType": ["Webkit"], "textDecorationStyle": ["Webkit", "Moz"], "textDecorationSkip": ["Webkit", "Moz"], "textDecorationLine": ["Webkit", "Moz"], "textDecorationColor": ["Webkit", "Moz"], "filter": ["Webkit"], "fontFeatureSettings": ["Webkit", "Moz"], "breakAfter": ["Webkit", "Moz", "ms"], "breakBefore": ["Webkit", "Moz", "ms"], "breakInside": ["Webkit", "Moz", "ms"], "columnCount": ["Webkit", "Moz"], "columnFill": ["Webkit", "Moz"], "columnGap": ["Webkit", "Moz"], "columnRule": ["Webkit", "Moz"], "columnRuleColor": ["Webkit", "Moz"], "columnRuleStyle": ["Webkit", "Moz"], "columnRuleWidth": ["Webkit", "Moz"], "columns": ["Webkit", "Moz"], "columnSpan": ["Webkit", "Moz"], "columnWidth": ["Webkit", "Moz"], "flex": ["Webkit", "ms"], "flexBasis": ["Webkit"], "flexDirection": ["Webkit", "ms"], "flexGrow": ["Webkit"], "flexFlow": ["Webkit", "ms"], "flexShrink": ["Webkit"], "flexWrap": ["Webkit", "ms"], "alignContent": ["Webkit"], "alignItems": ["Webkit"], "alignSelf": ["Webkit"], "justifyContent": ["Webkit"], "order": ["Webkit"], "transitionDelay": ["Webkit"], "transitionDuration": ["Webkit"], "transitionProperty": ["Webkit"], "transitionTimingFunction": ["Webkit"], "backdropFilter": ["Webkit"], "scrollSnapType": ["Webkit", "ms"], "scrollSnapPointsX": ["Webkit", "ms"], "scrollSnapPointsY": ["Webkit", "ms"], "scrollSnapDestination": ["Webkit", "ms"], "scrollSnapCoordinate": ["Webkit", "ms"], "shapeImageThreshold": ["Webkit"], "shapeImageMargin": ["Webkit"], "shapeImageOutside": ["Webkit"], "hyphens": ["Webkit", "Moz", "ms"], "flowInto": ["Webkit", "ms"], "flowFrom": ["Webkit", "ms"], "regionFragment": ["Webkit", "ms"], "boxSizing": ["Moz"], "textAlignLast": ["Moz"], "tabSize": ["Moz"], "wrapFlow": ["ms"], "wrapThrough": ["ms"], "wrapMargin": ["ms"], "touchAction": ["ms"], "gridTemplateColumns": ["ms"], "gridTemplateRows": ["ms"], "gridTemplateAreas": ["ms"], "gridTemplate": ["ms"], "gridAutoColumns": ["ms"], "gridAutoRows": ["ms"], "gridAutoFlow": ["ms"], "grid": ["ms"], "gridRowStart": ["ms"], "gridColumnStart": ["ms"], "gridRowEnd": ["ms"], "gridRow": ["ms"], "gridColumn": ["ms"], "gridColumnEnd": ["ms"], "gridColumnGap": ["ms"], "gridRowGap": ["ms"], "gridArea": ["ms"], "gridGap": ["ms"], "textSizeAdjust": ["Webkit", "ms"], "borderImage": ["Webkit"], "borderImageOutset": ["Webkit"], "borderImageRepeat": ["Webkit"], "borderImageSlice": ["Webkit"], "borderImageSource": ["Webkit"], "borderImageWidth": ["Webkit"] }
|
||||
}; /* eslint-disable */
|
26
goTorrentWebUI/node_modules/material-ui-upload/node_modules/material-ui/utils/callOnce.js
generated
vendored
Normal file
26
goTorrentWebUI/node_modules/material-ui-upload/node_modules/material-ui/utils/callOnce.js
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = callOnce;
|
||||
|
||||
var _warning = require('warning');
|
||||
|
||||
var _warning2 = _interopRequireDefault(_warning);
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
var CALLED_ONCE = 'muiPrepared';
|
||||
|
||||
function callOnce() {
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
return function (style) {
|
||||
if (style[CALLED_ONCE]) {
|
||||
process.env.NODE_ENV !== "production" ? (0, _warning2.default)(false, 'Material-UI: You cannot call prepareStyles() on the same style object more than once.') : void 0;
|
||||
}
|
||||
style[CALLED_ONCE] = true;
|
||||
return style;
|
||||
};
|
||||
}
|
||||
}
|
26
goTorrentWebUI/node_modules/material-ui-upload/node_modules/material-ui/utils/childUtils.js
generated
vendored
Normal file
26
goTorrentWebUI/node_modules/material-ui-upload/node_modules/material-ui/utils/childUtils.js
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.extendChildren = extendChildren;
|
||||
|
||||
var _react = require('react');
|
||||
|
||||
var _react2 = _interopRequireDefault(_react);
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
function extendChildren(children, extendedProps, extendedChildren) {
|
||||
return _react2.default.Children.map(children, function (child) {
|
||||
if (!_react2.default.isValidElement(child)) {
|
||||
return child;
|
||||
}
|
||||
|
||||
var newProps = typeof extendedProps === 'function' ? extendedProps(child) : extendedProps;
|
||||
|
||||
var newChildren = typeof extendedChildren === 'function' ? extendedChildren(child) : extendedChildren ? extendedChildren : child.props.children;
|
||||
|
||||
return _react2.default.cloneElement(child, newProps, newChildren);
|
||||
});
|
||||
}
|
242
goTorrentWebUI/node_modules/material-ui-upload/node_modules/material-ui/utils/colorManipulator.js
generated
vendored
Normal file
242
goTorrentWebUI/node_modules/material-ui-upload/node_modules/material-ui/utils/colorManipulator.js
generated
vendored
Normal file
@@ -0,0 +1,242 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.convertColorToString = convertColorToString;
|
||||
exports.convertHexToRGB = convertHexToRGB;
|
||||
exports.decomposeColor = decomposeColor;
|
||||
exports.getContrastRatio = getContrastRatio;
|
||||
exports.getLuminance = getLuminance;
|
||||
exports.emphasize = emphasize;
|
||||
exports.fade = fade;
|
||||
exports.darken = darken;
|
||||
exports.lighten = lighten;
|
||||
|
||||
var _warning = require('warning');
|
||||
|
||||
var _warning2 = _interopRequireDefault(_warning);
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
/**
|
||||
* Returns a number whose value is limited to the given range.
|
||||
*
|
||||
* @param {number} value The value to be clamped
|
||||
* @param {number} min The lower boundary of the output range
|
||||
* @param {number} max The upper boundary of the output range
|
||||
* @returns {number} A number in the range [min, max]
|
||||
*/
|
||||
function clamp(value, min, max) {
|
||||
if (value < min) {
|
||||
return min;
|
||||
}
|
||||
if (value > max) {
|
||||
return max;
|
||||
}
|
||||
return value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Converts a color object with type and values to a string.
|
||||
*
|
||||
* @param {object} color - Decomposed color
|
||||
* @param {string} color.type - One of, 'rgb', 'rgba', 'hsl', 'hsla'
|
||||
* @param {array} color.values - [n,n,n] or [n,n,n,n]
|
||||
* @returns {string} A CSS color string
|
||||
*/
|
||||
function convertColorToString(color) {
|
||||
var type = color.type,
|
||||
values = color.values;
|
||||
|
||||
|
||||
if (type.indexOf('rgb') > -1) {
|
||||
// Only convert the first 3 values to int (i.e. not alpha)
|
||||
for (var i = 0; i < 3; i++) {
|
||||
values[i] = parseInt(values[i]);
|
||||
}
|
||||
}
|
||||
|
||||
var colorString = void 0;
|
||||
|
||||
if (type.indexOf('hsl') > -1) {
|
||||
colorString = color.type + '(' + values[0] + ', ' + values[1] + '%, ' + values[2] + '%';
|
||||
} else {
|
||||
colorString = color.type + '(' + values[0] + ', ' + values[1] + ', ' + values[2];
|
||||
}
|
||||
|
||||
if (values.length === 4) {
|
||||
colorString += ', ' + color.values[3] + ')';
|
||||
} else {
|
||||
colorString += ')';
|
||||
}
|
||||
|
||||
return colorString;
|
||||
}
|
||||
|
||||
/**
|
||||
* Converts a color from CSS hex format to CSS rgb format.
|
||||
*
|
||||
* @param {string} color - Hex color, i.e. #nnn or #nnnnnn
|
||||
* @returns {string} A CSS rgb color string
|
||||
*/
|
||||
function convertHexToRGB(color) {
|
||||
if (color.length === 4) {
|
||||
var extendedColor = '#';
|
||||
for (var i = 1; i < color.length; i++) {
|
||||
extendedColor += color.charAt(i) + color.charAt(i);
|
||||
}
|
||||
color = extendedColor;
|
||||
}
|
||||
|
||||
var values = {
|
||||
r: parseInt(color.substr(1, 2), 16),
|
||||
g: parseInt(color.substr(3, 2), 16),
|
||||
b: parseInt(color.substr(5, 2), 16)
|
||||
};
|
||||
|
||||
return 'rgb(' + values.r + ', ' + values.g + ', ' + values.b + ')';
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns an object with the type and values of a color.
|
||||
*
|
||||
* Note: Does not support rgb % values and color names.
|
||||
*
|
||||
* @param {string} color - CSS color, i.e. one of: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla()
|
||||
* @returns {{type: string, values: number[]}} A MUI color object
|
||||
*/
|
||||
function decomposeColor(color) {
|
||||
if (color.charAt(0) === '#') {
|
||||
return decomposeColor(convertHexToRGB(color));
|
||||
}
|
||||
|
||||
var marker = color.indexOf('(');
|
||||
|
||||
process.env.NODE_ENV !== "production" ? (0, _warning2.default)(marker !== -1, 'Material-UI: The ' + color + ' color was not parsed correctly,\n because it has an unsupported format (color name or RGB %). This may cause issues in component rendering.') : void 0;
|
||||
|
||||
var type = color.substring(0, marker);
|
||||
var values = color.substring(marker + 1, color.length - 1).split(',');
|
||||
values = values.map(function (value) {
|
||||
return parseFloat(value);
|
||||
});
|
||||
|
||||
return { type: type, values: values };
|
||||
}
|
||||
|
||||
/**
|
||||
* Calculates the contrast ratio between two colors.
|
||||
*
|
||||
* Formula: http://www.w3.org/TR/2008/REC-WCAG20-20081211/#contrast-ratiodef
|
||||
*
|
||||
* @param {string} foreground - CSS color, i.e. one of: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla()
|
||||
* @param {string} background - CSS color, i.e. one of: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla()
|
||||
* @returns {number} A contrast ratio value in the range 0 - 21 with 2 digit precision.
|
||||
*/
|
||||
function getContrastRatio(foreground, background) {
|
||||
var lumA = getLuminance(foreground);
|
||||
var lumB = getLuminance(background);
|
||||
var contrastRatio = (Math.max(lumA, lumB) + 0.05) / (Math.min(lumA, lumB) + 0.05);
|
||||
|
||||
return Number(contrastRatio.toFixed(2)); // Truncate at two digits
|
||||
}
|
||||
|
||||
/**
|
||||
* The relative brightness of any point in a color space,
|
||||
* normalized to 0 for darkest black and 1 for lightest white.
|
||||
*
|
||||
* Formula: https://www.w3.org/WAI/GL/wiki/Relative_luminance
|
||||
*
|
||||
* @param {string} color - CSS color, i.e. one of: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla()
|
||||
* @returns {number} The relative brightness of the color in the range 0 - 1
|
||||
*/
|
||||
function getLuminance(color) {
|
||||
color = decomposeColor(color);
|
||||
|
||||
if (color.type.indexOf('rgb') > -1) {
|
||||
var rgb = color.values.map(function (val) {
|
||||
val /= 255; // normalized
|
||||
return val <= 0.03928 ? val / 12.92 : Math.pow((val + 0.055) / 1.055, 2.4);
|
||||
});
|
||||
return Number((0.2126 * rgb[0] + 0.7152 * rgb[1] + 0.0722 * rgb[2]).toFixed(3)); // Truncate at 3 digits
|
||||
} else if (color.type.indexOf('hsl') > -1) {
|
||||
return color.values[2] / 100;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Darken or lighten a colour, depending on its luminance.
|
||||
* Light colors are darkened, dark colors are lightened.
|
||||
*
|
||||
* @param {string} color - CSS color, i.e. one of: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla()
|
||||
* @param {number} coefficient=0.15 - multiplier in the range 0 - 1
|
||||
* @returns {string} A CSS color string. Hex input values are returned as rgb
|
||||
*/
|
||||
function emphasize(color) {
|
||||
var coefficient = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0.15;
|
||||
|
||||
return getLuminance(color) > 0.5 ? darken(color, coefficient) : lighten(color, coefficient);
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the absolute transparency of a color.
|
||||
* Any existing alpha values are overwritten.
|
||||
*
|
||||
* @param {string} color - CSS color, i.e. one of: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla()
|
||||
* @param {number} value - value to set the alpha channel to in the range 0 -1
|
||||
* @returns {string} A CSS color string. Hex input values are returned as rgb
|
||||
*/
|
||||
function fade(color, value) {
|
||||
color = decomposeColor(color);
|
||||
value = clamp(value, 0, 1);
|
||||
|
||||
if (color.type === 'rgb' || color.type === 'hsl') {
|
||||
color.type += 'a';
|
||||
}
|
||||
color.values[3] = value;
|
||||
|
||||
return convertColorToString(color);
|
||||
}
|
||||
|
||||
/**
|
||||
* Darkens a color.
|
||||
*
|
||||
* @param {string} color - CSS color, i.e. one of: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla()
|
||||
* @param {number} coefficient - multiplier in the range 0 - 1
|
||||
* @returns {string} A CSS color string. Hex input values are returned as rgb
|
||||
*/
|
||||
function darken(color, coefficient) {
|
||||
color = decomposeColor(color);
|
||||
coefficient = clamp(coefficient, 0, 1);
|
||||
|
||||
if (color.type.indexOf('hsl') > -1) {
|
||||
color.values[2] *= 1 - coefficient;
|
||||
} else if (color.type.indexOf('rgb') > -1) {
|
||||
for (var i = 0; i < 3; i++) {
|
||||
color.values[i] *= 1 - coefficient;
|
||||
}
|
||||
}
|
||||
return convertColorToString(color);
|
||||
}
|
||||
|
||||
/**
|
||||
* Lightens a color.
|
||||
*
|
||||
* @param {string} color - CSS color, i.e. one of: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla()
|
||||
* @param {number} coefficient - multiplier in the range 0 - 1
|
||||
* @returns {string} A CSS color string. Hex input values are returned as rgb
|
||||
*/
|
||||
function lighten(color, coefficient) {
|
||||
color = decomposeColor(color);
|
||||
coefficient = clamp(coefficient, 0, 1);
|
||||
|
||||
if (color.type.indexOf('hsl') > -1) {
|
||||
color.values[2] += (100 - color.values[2]) * coefficient;
|
||||
} else if (color.type.indexOf('rgb') > -1) {
|
||||
for (var i = 0; i < 3; i++) {
|
||||
color.values[i] += (255 - color.values[i]) * coefficient;
|
||||
}
|
||||
}
|
||||
|
||||
return convertColorToString(color);
|
||||
}
|
22
goTorrentWebUI/node_modules/material-ui-upload/node_modules/material-ui/utils/deprecatedExport.js
generated
vendored
Normal file
22
goTorrentWebUI/node_modules/material-ui-upload/node_modules/material-ui/utils/deprecatedExport.js
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
|
||||
var _warning = require('warning');
|
||||
|
||||
var _warning2 = _interopRequireDefault(_warning);
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
var getName = function getName(object) {
|
||||
return object.displayName ? object.displayName + ' ' : object.muiName ? object.muiName + ' ' : '';
|
||||
};
|
||||
|
||||
function deprecatedExport(object, deprecatedPath, supportedPath) {
|
||||
process.env.NODE_ENV !== "production" ? (0, _warning2.default)(false, 'Importing ' + getName(object) + 'from \'' + deprecatedPath + '\' has been deprecated, use \'' + supportedPath + '\' instead.') : void 0;
|
||||
return object;
|
||||
}
|
||||
|
||||
exports.default = deprecatedExport;
|
38
goTorrentWebUI/node_modules/material-ui-upload/node_modules/material-ui/utils/deprecatedPropType.js
generated
vendored
Normal file
38
goTorrentWebUI/node_modules/material-ui-upload/node_modules/material-ui/utils/deprecatedPropType.js
generated
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = deprecated;
|
||||
|
||||
var _warning = require('warning');
|
||||
|
||||
var _warning2 = _interopRequireDefault(_warning);
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
var warned = {}; /**
|
||||
* This module is taken from https://github.com/react-bootstrap/react-prop-types.
|
||||
* It's not a dependency to reduce build size / install time.
|
||||
* It should be pretty stable.
|
||||
*/
|
||||
function deprecated(validator, reason) {
|
||||
return function validate(props, propName, componentName, location, propFullName) {
|
||||
var componentNameSafe = componentName || '<<anonymous>>';
|
||||
var propFullNameSafe = propFullName || propName;
|
||||
|
||||
if (props[propName] != null) {
|
||||
var messageKey = componentName + '.' + propName;
|
||||
|
||||
process.env.NODE_ENV !== "production" ? (0, _warning2.default)(warned[messageKey], 'The ' + location + ' `' + propFullNameSafe + '` of ' + ('`' + componentNameSafe + '` is deprecated. ' + reason)) : void 0;
|
||||
|
||||
warned[messageKey] = true;
|
||||
}
|
||||
|
||||
for (var _len = arguments.length, args = Array(_len > 5 ? _len - 5 : 0), _key = 5; _key < _len; _key++) {
|
||||
args[_key - 5] = arguments[_key];
|
||||
}
|
||||
|
||||
return validator.apply(undefined, [props, propName, componentName, location, propFullName].concat(args));
|
||||
};
|
||||
}
|
24
goTorrentWebUI/node_modules/material-ui-upload/node_modules/material-ui/utils/dom.js
generated
vendored
Normal file
24
goTorrentWebUI/node_modules/material-ui-upload/node_modules/material-ui/utils/dom.js
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = {
|
||||
isDescendant: function isDescendant(parent, child) {
|
||||
var node = child.parentNode;
|
||||
|
||||
while (node !== null) {
|
||||
if (node === parent) return true;
|
||||
node = node.parentNode;
|
||||
}
|
||||
|
||||
return false;
|
||||
},
|
||||
offset: function offset(el) {
|
||||
var rect = el.getBoundingClientRect();
|
||||
return {
|
||||
top: rect.top + document.body.scrollTop,
|
||||
left: rect.left + document.body.scrollLeft
|
||||
};
|
||||
}
|
||||
};
|
39
goTorrentWebUI/node_modules/material-ui-upload/node_modules/material-ui/utils/events.js
generated
vendored
Normal file
39
goTorrentWebUI/node_modules/material-ui-upload/node_modules/material-ui/utils/events.js
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = {
|
||||
once: function once(el, type, callback) {
|
||||
var typeArray = type ? type.split(' ') : [];
|
||||
var recursiveFunction = function recursiveFunction(event) {
|
||||
event.target.removeEventListener(event.type, recursiveFunction);
|
||||
return callback(event);
|
||||
};
|
||||
|
||||
for (var i = typeArray.length - 1; i >= 0; i--) {
|
||||
this.on(el, typeArray[i], recursiveFunction);
|
||||
}
|
||||
},
|
||||
on: function on(el, type, callback) {
|
||||
if (el.addEventListener) {
|
||||
el.addEventListener(type, callback);
|
||||
} else {
|
||||
// IE8+ Support
|
||||
el.attachEvent('on' + type, function () {
|
||||
callback.call(el);
|
||||
});
|
||||
}
|
||||
},
|
||||
off: function off(el, type, callback) {
|
||||
if (el.removeEventListener) {
|
||||
el.removeEventListener(type, callback);
|
||||
} else {
|
||||
// IE8+ Support
|
||||
el.detachEvent('on' + type, callback);
|
||||
}
|
||||
},
|
||||
isKeyboard: function isKeyboard(event) {
|
||||
return ['keydown', 'keypress', 'keyup'].indexOf(event.type) !== -1;
|
||||
}
|
||||
};
|
35
goTorrentWebUI/node_modules/material-ui-upload/node_modules/material-ui/utils/propTypes.js
generated
vendored
Normal file
35
goTorrentWebUI/node_modules/material-ui-upload/node_modules/material-ui/utils/propTypes.js
generated
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
|
||||
var _propTypes = require('prop-types');
|
||||
|
||||
var _propTypes2 = _interopRequireDefault(_propTypes);
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
var horizontal = _propTypes2.default.oneOf(['left', 'middle', 'right']);
|
||||
var vertical = _propTypes2.default.oneOf(['top', 'center', 'bottom']);
|
||||
|
||||
exports.default = {
|
||||
|
||||
corners: _propTypes2.default.oneOf(['bottom-left', 'bottom-right', 'top-left', 'top-right']),
|
||||
|
||||
horizontal: horizontal,
|
||||
|
||||
vertical: vertical,
|
||||
|
||||
origin: _propTypes2.default.shape({
|
||||
horizontal: horizontal,
|
||||
vertical: vertical
|
||||
}),
|
||||
|
||||
cornersAndCenter: _propTypes2.default.oneOf(['bottom-center', 'bottom-left', 'bottom-right', 'top-center', 'top-left', 'top-right']),
|
||||
|
||||
stringOrNumber: _propTypes2.default.oneOfType([_propTypes2.default.string, _propTypes2.default.number]),
|
||||
|
||||
zDepth: _propTypes2.default.oneOf([0, 1, 2, 3, 4, 5])
|
||||
|
||||
};
|
97
goTorrentWebUI/node_modules/material-ui-upload/node_modules/material-ui/utils/rtl.js
generated
vendored
Normal file
97
goTorrentWebUI/node_modules/material-ui-upload/node_modules/material-ui/utils/rtl.js
generated
vendored
Normal file
@@ -0,0 +1,97 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
|
||||
var _keys = require('babel-runtime/core-js/object/keys');
|
||||
|
||||
var _keys2 = _interopRequireDefault(_keys);
|
||||
|
||||
exports.default = rtl;
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
var reTranslate = /((^|\s)translate(3d|X)?\()(\-?[\d]+)/;
|
||||
var reSkew = /((^|\s)skew(x|y)?\()\s*(\-?[\d]+)(deg|rad|grad)(,\s*(\-?[\d]+)(deg|rad|grad))?/;
|
||||
|
||||
/**
|
||||
* This function ensures that `style` supports both ltr and rtl directions by
|
||||
* checking `styleConstants` in `muiTheme` and replacing attribute keys if
|
||||
* necessary.
|
||||
*/
|
||||
function rtl(muiTheme) {
|
||||
if (muiTheme.isRtl) {
|
||||
return function (style) {
|
||||
if (style.directionInvariant === true) {
|
||||
return style;
|
||||
}
|
||||
|
||||
var flippedAttributes = {
|
||||
// Keys and their replacements.
|
||||
right: 'left',
|
||||
left: 'right',
|
||||
marginRight: 'marginLeft',
|
||||
marginLeft: 'marginRight',
|
||||
paddingRight: 'paddingLeft',
|
||||
paddingLeft: 'paddingRight',
|
||||
borderRight: 'borderLeft',
|
||||
borderLeft: 'borderRight'
|
||||
};
|
||||
|
||||
var newStyle = {};
|
||||
|
||||
(0, _keys2.default)(style).forEach(function (attribute) {
|
||||
var value = style[attribute];
|
||||
var key = attribute;
|
||||
|
||||
if (flippedAttributes.hasOwnProperty(attribute)) {
|
||||
key = flippedAttributes[attribute];
|
||||
}
|
||||
|
||||
switch (attribute) {
|
||||
case 'float':
|
||||
case 'textAlign':
|
||||
if (value === 'right') {
|
||||
value = 'left';
|
||||
} else if (value === 'left') {
|
||||
value = 'right';
|
||||
}
|
||||
break;
|
||||
|
||||
case 'direction':
|
||||
if (value === 'ltr') {
|
||||
value = 'rtl';
|
||||
} else if (value === 'rtl') {
|
||||
value = 'ltr';
|
||||
}
|
||||
break;
|
||||
|
||||
case 'transform':
|
||||
if (!value) break;
|
||||
var matches = void 0;
|
||||
if (matches = value.match(reTranslate)) {
|
||||
value = value.replace(matches[0], matches[1] + -parseFloat(matches[4]));
|
||||
}
|
||||
if (matches = value.match(reSkew)) {
|
||||
value = value.replace(matches[0], matches[1] + -parseFloat(matches[4]) + matches[5] + matches[6] ? ', ' + (-parseFloat(matches[7]) + matches[8]) : '');
|
||||
}
|
||||
break;
|
||||
|
||||
case 'transformOrigin':
|
||||
if (!value) break;
|
||||
if (value.indexOf('right') > -1) {
|
||||
value = value.replace('right', 'left');
|
||||
} else if (value.indexOf('left') > -1) {
|
||||
value = value.replace('left', 'right');
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
newStyle[key] = value;
|
||||
});
|
||||
|
||||
return newStyle;
|
||||
};
|
||||
}
|
||||
}
|
145
goTorrentWebUI/node_modules/material-ui-upload/node_modules/material-ui/utils/withWidth.js
generated
vendored
Normal file
145
goTorrentWebUI/node_modules/material-ui-upload/node_modules/material-ui/utils/withWidth.js
generated
vendored
Normal file
@@ -0,0 +1,145 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.LARGE = exports.MEDIUM = exports.SMALL = undefined;
|
||||
|
||||
var _extends2 = require('babel-runtime/helpers/extends');
|
||||
|
||||
var _extends3 = _interopRequireDefault(_extends2);
|
||||
|
||||
var _getPrototypeOf = require('babel-runtime/core-js/object/get-prototype-of');
|
||||
|
||||
var _getPrototypeOf2 = _interopRequireDefault(_getPrototypeOf);
|
||||
|
||||
var _classCallCheck2 = require('babel-runtime/helpers/classCallCheck');
|
||||
|
||||
var _classCallCheck3 = _interopRequireDefault(_classCallCheck2);
|
||||
|
||||
var _createClass2 = require('babel-runtime/helpers/createClass');
|
||||
|
||||
var _createClass3 = _interopRequireDefault(_createClass2);
|
||||
|
||||
var _possibleConstructorReturn2 = require('babel-runtime/helpers/possibleConstructorReturn');
|
||||
|
||||
var _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2);
|
||||
|
||||
var _inherits2 = require('babel-runtime/helpers/inherits');
|
||||
|
||||
var _inherits3 = _interopRequireDefault(_inherits2);
|
||||
|
||||
exports.default = withWidth;
|
||||
|
||||
var _react = require('react');
|
||||
|
||||
var _react2 = _interopRequireDefault(_react);
|
||||
|
||||
var _reactEventListener = require('react-event-listener');
|
||||
|
||||
var _reactEventListener2 = _interopRequireDefault(_reactEventListener);
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
var SMALL = exports.SMALL = 1;
|
||||
var MEDIUM = exports.MEDIUM = 2;
|
||||
var LARGE = exports.LARGE = 3;
|
||||
|
||||
function withWidth() {
|
||||
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
||||
var _options$largeWidth = options.largeWidth,
|
||||
largeWidth = _options$largeWidth === undefined ? 992 : _options$largeWidth,
|
||||
_options$mediumWidth = options.mediumWidth,
|
||||
mediumWidth = _options$mediumWidth === undefined ? 768 : _options$mediumWidth,
|
||||
_options$resizeInterv = options.resizeInterval,
|
||||
resizeInterval = _options$resizeInterv === undefined ? 166 : _options$resizeInterv;
|
||||
|
||||
|
||||
return function (MyComponent) {
|
||||
return function (_Component) {
|
||||
(0, _inherits3.default)(WithWidth, _Component);
|
||||
|
||||
function WithWidth() {
|
||||
var _ref;
|
||||
|
||||
var _temp, _this, _ret;
|
||||
|
||||
(0, _classCallCheck3.default)(this, WithWidth);
|
||||
|
||||
for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {
|
||||
args[_key] = arguments[_key];
|
||||
}
|
||||
|
||||
return _ret = (_temp = (_this = (0, _possibleConstructorReturn3.default)(this, (_ref = WithWidth.__proto__ || (0, _getPrototypeOf2.default)(WithWidth)).call.apply(_ref, [this].concat(args))), _this), _this.state = {
|
||||
width: null
|
||||
}, _this.handleResize = function () {
|
||||
clearTimeout(_this.deferTimer);
|
||||
_this.deferTimer = setTimeout(function () {
|
||||
_this.updateWidth();
|
||||
}, resizeInterval);
|
||||
}, _temp), (0, _possibleConstructorReturn3.default)(_this, _ret);
|
||||
}
|
||||
|
||||
(0, _createClass3.default)(WithWidth, [{
|
||||
key: 'componentDidMount',
|
||||
value: function componentDidMount() {
|
||||
this.updateWidth();
|
||||
}
|
||||
}, {
|
||||
key: 'componentWillUnmount',
|
||||
value: function componentWillUnmount() {
|
||||
clearTimeout(this.deferTimer);
|
||||
}
|
||||
}, {
|
||||
key: 'updateWidth',
|
||||
value: function updateWidth() {
|
||||
var innerWidth = window.innerWidth;
|
||||
var width = void 0;
|
||||
|
||||
if (innerWidth >= largeWidth) {
|
||||
width = LARGE;
|
||||
} else if (innerWidth >= mediumWidth) {
|
||||
width = MEDIUM;
|
||||
} else {
|
||||
// innerWidth < 768
|
||||
width = SMALL;
|
||||
}
|
||||
|
||||
if (width !== this.state.width) {
|
||||
this.setState({
|
||||
width: width
|
||||
});
|
||||
}
|
||||
}
|
||||
}, {
|
||||
key: 'render',
|
||||
value: function render() {
|
||||
var width = this.state.width;
|
||||
|
||||
/**
|
||||
* When rendering the component on the server,
|
||||
* we have no idea about the screen width.
|
||||
* In order to prevent blinks and help the reconciliation
|
||||
* we are not rendering the component.
|
||||
*
|
||||
* A better alternative would be to send client hints.
|
||||
* But the browser support of this API is low:
|
||||
* http://caniuse.com/#search=client%20hint
|
||||
*/
|
||||
if (width === null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return _react2.default.createElement(
|
||||
_reactEventListener2.default,
|
||||
{ target: 'window', onResize: this.handleResize },
|
||||
_react2.default.createElement(MyComponent, (0, _extends3.default)({
|
||||
width: width
|
||||
}, this.props))
|
||||
);
|
||||
}
|
||||
}]);
|
||||
return WithWidth;
|
||||
}(_react.Component);
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user