123456789101112131415161718192021222324252627282930313233343536373839 |
- 'use strict';
-
- var defineProperty = require('./defineProperty-ba7cd53d.js');
-
- var IMAGE_PROCESS = '?x-oss-process=image/resize,h_350';
- var IMAGE_PROCESS_SMALL = '?x-oss-process=image/resize,h_100';
- var IMAGE_PROCESS_LARGE = '?x-oss-process=image/resize,h_500';
- function addImageProcess(url) {
- var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {
- width: '36px',
- height: '36px'
- };
-
- if (url && url.indexOf('x-oss-process') > -1) {
- return url;
- }
-
- if (options.small) {
- return url + IMAGE_PROCESS_SMALL;
- }
-
- if (options.large) {
- return url + IMAGE_PROCESS_LARGE;
- }
-
- if (options.custom) {
- return "".concat(url, "?x-oss-process=image/resize,limit_0,m_fill,w_").concat(options.width, ",h_").concat(options.height);
- }
-
- return url + IMAGE_PROCESS;
- }
- function exportStyleSizeClass(styles, size) {
- return defineProperty._defineProperty({}, styles[size], true);
- }
-
- exports.addImageProcess = addImageProcess;
- exports.exportStyleSizeClass = exportStyleSizeClass;
- //# sourceMappingURL=utils-b800dc99.js.map
|