/** * Copyright (c) 2015-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. */ 'use strict'; const AssetModule_DEPRECATED = require('../AssetModule_DEPRECATED'); const debug = require('debug')('ReactNativePackager:DependencyGraph'); const path = require('path'); class DeprecatedAssetMap { constructor({ assetExts, helpers, platforms, files, }) { this._helpers = helpers; this._map = Object.create(null); this._assetExts = assetExts; this._platforms = platforms; files.forEach(file => this._processAsset(file)); } resolve(fromModule, toModuleName) { if (this._disabled) { return null; } const assetMatch = toModuleName.match(/^image!(.+)/); if (assetMatch && assetMatch[1]) { if (!this._map[assetMatch[1]]) { debug('WARINING: Cannot find asset:', assetMatch[1]); return null; } return this._map[assetMatch[1]]; } } _processAsset(file) { const ext = this._helpers.extname(file); if (this._assetExts.indexOf(ext) !== -1) { const name = assetName(file, ext); if (this._map[name] != null) { debug('Conflicting assets', name); } this._map[name] = new AssetModule_DEPRECATED({ file }, this._platforms); } } processFileChange(type, filePath, fstat) { const name = assetName(filePath); if (type === 'change' || type === 'delete') { delete this._map[name]; } if (type === 'change' || type === 'add') { this._processAsset(filePath); } } } function assetName(file, ext) { return path.basename(file, '.' + ext).replace(/@[\d\.]+x/, ''); } module.exports = DeprecatedAssetMap;