mirror of
https://github.com/status-im/react-native.git
synced 2025-01-16 20:44:10 +00:00
1490ab12ef
Summary: Includes React Native and its dependencies Fresco, Metro, and Yoga. Excludes samples/examples/docs. find: ^(?:( *)|( *(?:[\*~#]|::))( )? *)?Copyright (?:\(c\) )?(\d{4})\b.+Facebook[\s\S]+?BSD[\s\S]+?(?:this source tree|the same directory)\.$ replace: $1$2$3Copyright (c) $4-present, Facebook, Inc.\n$2\n$1$2$3This source code is licensed under the MIT license found in the\n$1$2$3LICENSE file in the root directory of this source tree. Reviewed By: TheSavior, yungsters Differential Revision: D7007050 fbshipit-source-id: 37dd6bf0ffec0923bfc99c260bb330683f35553e
79 lines
2.0 KiB
JavaScript
79 lines
2.0 KiB
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import type {PackagerAsset} from '../../Libraries/Image/AssetRegistry';
|
|
|
|
/**
|
|
* FIXME: using number to represent discrete scale numbers is fragile in essence because of
|
|
* floating point numbers imprecision.
|
|
*/
|
|
function getAndroidAssetSuffix(scale: number): string {
|
|
switch (scale) {
|
|
case 0.75: return 'ldpi';
|
|
case 1: return 'mdpi';
|
|
case 1.5: return 'hdpi';
|
|
case 2: return 'xhdpi';
|
|
case 3: return 'xxhdpi';
|
|
case 4: return 'xxxhdpi';
|
|
}
|
|
throw new Error('no such scale');
|
|
}
|
|
|
|
// See https://developer.android.com/guide/topics/resources/drawable-resource.html
|
|
const drawableFileTypes = new Set([
|
|
'gif',
|
|
'jpeg',
|
|
'jpg',
|
|
'png',
|
|
'svg',
|
|
'webp',
|
|
'xml',
|
|
]);
|
|
|
|
function getAndroidResourceFolderName(asset: PackagerAsset, scale: number) {
|
|
if (!drawableFileTypes.has(asset.type)) {
|
|
return 'raw';
|
|
}
|
|
var suffix = getAndroidAssetSuffix(scale);
|
|
if (!suffix) {
|
|
throw new Error(
|
|
'Don\'t know which android drawable suffix to use for asset: ' +
|
|
JSON.stringify(asset)
|
|
);
|
|
}
|
|
const androidFolder = 'drawable-' + suffix;
|
|
return androidFolder;
|
|
}
|
|
|
|
function getAndroidResourceIdentifier(asset: PackagerAsset) {
|
|
var folderPath = getBasePath(asset);
|
|
return (folderPath + '/' + asset.name)
|
|
.toLowerCase()
|
|
.replace(/\//g, '_') // Encode folder structure in file name
|
|
.replace(/([^a-z0-9_])/g, '') // Remove illegal chars
|
|
.replace(/^assets_/, ''); // Remove "assets_" prefix
|
|
}
|
|
|
|
function getBasePath(asset: PackagerAsset) {
|
|
var basePath = asset.httpServerLocation;
|
|
if (basePath[0] === '/') {
|
|
basePath = basePath.substr(1);
|
|
}
|
|
return basePath;
|
|
}
|
|
|
|
module.exports = {
|
|
getAndroidAssetSuffix: getAndroidAssetSuffix,
|
|
getAndroidResourceFolderName: getAndroidResourceFolderName,
|
|
getAndroidResourceIdentifier: getAndroidResourceIdentifier,
|
|
getBasePath: getBasePath
|
|
};
|