mirror of
				https://github.com/NativeScript/NativeScript.git
				synced 2025-11-04 12:58:38 +08:00 
			
		
		
		
	BREAKING CHANGES:
`Application.orientation` is no longer a function.
Migration: Remove `()` from the `Application.orientation()` call:
```diff
import { Application } from "@nativescript/core";
-console.log(Application.orientation());
+console.log(Application.orientation);
```
`Application.systemAppearance` is no longer a function.
Migration: Remove `()` from the `Application.systemAppearance()` call:
```diff
import { Application } from "@nativescript/core";
-console.log(Application.systemAppearance());
+console.log(Application.systemAppearance);
```
		
	
		
			
				
	
	
		
			102 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			102 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { Screen, Device } from '../platform';
 | 
						|
import { PlatformContext, findMatch, stripQualifiers } from './qualifier-matcher';
 | 
						|
import { registerModulesFromFileSystem } from './non-bundle-workflow-compat';
 | 
						|
import { Trace } from '../trace';
 | 
						|
import { Application } from '../application';
 | 
						|
 | 
						|
export type { PlatformContext } from './qualifier-matcher';
 | 
						|
 | 
						|
export type ModuleListProvider = () => string[];
 | 
						|
 | 
						|
export class ModuleNameResolver {
 | 
						|
	private _cache = {};
 | 
						|
 | 
						|
	constructor(private context: PlatformContext, private moduleListProvider: ModuleListProvider = global.getRegisteredModules) {
 | 
						|
		Application.on('livesync', (args) => clearCache());
 | 
						|
		Application.on('orientationChanged', (args) => {
 | 
						|
			resolverInstance = undefined;
 | 
						|
		});
 | 
						|
	}
 | 
						|
 | 
						|
	public resolveModuleName(path: string, ext: string): string {
 | 
						|
		const key = path + ext;
 | 
						|
		let result: string = this._cache[key];
 | 
						|
		if (result === undefined) {
 | 
						|
			result = this.resolveModuleNameImpl(path, ext);
 | 
						|
			this._cache[key] = result;
 | 
						|
		}
 | 
						|
 | 
						|
		if (Trace.isEnabled()) {
 | 
						|
			Trace.write(`path: '${path}' with ext: '${ext}' resolved: '${result}'`, Trace.categories.ModuleNameResolver);
 | 
						|
		}
 | 
						|
 | 
						|
		return result;
 | 
						|
	}
 | 
						|
 | 
						|
	public clearCache(): void {
 | 
						|
		this._cache = {};
 | 
						|
	}
 | 
						|
 | 
						|
	private resolveModuleNameImpl(path: string, ext: string): string {
 | 
						|
		let result: string = null;
 | 
						|
		ext = ext ? '.' + ext : '';
 | 
						|
 | 
						|
		// This call will return a clean path without qualifiers
 | 
						|
		path = stripQualifiers(path);
 | 
						|
 | 
						|
		const candidates = this.getCandidates(path, ext);
 | 
						|
		result = findMatch(path, ext, candidates, this.context);
 | 
						|
 | 
						|
		return result;
 | 
						|
	}
 | 
						|
 | 
						|
	private getCandidates(path: string, ext: string): Array<string> {
 | 
						|
		const candidates = this.moduleListProvider().filter((moduleName) => moduleName.startsWith(path) && (!ext || moduleName.endsWith(ext)));
 | 
						|
 | 
						|
		return candidates;
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
let resolverInstance: ModuleNameResolver;
 | 
						|
 | 
						|
export function resolveModuleName(path: string, ext: string): string {
 | 
						|
	if (global.__snapshot) {
 | 
						|
		return resolveModuleSnapshot(path, ext);
 | 
						|
	}
 | 
						|
 | 
						|
	if (!resolverInstance) {
 | 
						|
		resolverInstance = new ModuleNameResolver({
 | 
						|
			width: Screen.mainScreen.widthDIPs,
 | 
						|
			height: Screen.mainScreen.heightDIPs,
 | 
						|
			os: Device.os,
 | 
						|
			deviceType: Device.deviceType,
 | 
						|
		});
 | 
						|
	}
 | 
						|
 | 
						|
	return resolverInstance.resolveModuleName(path, ext);
 | 
						|
}
 | 
						|
 | 
						|
function resolveModuleSnapshot(path, ext) {
 | 
						|
	Trace.write(`Resolving module in SNAPSHOT context - path: '${path}' with ext: '${ext}'`, Trace.categories.ModuleNameResolver);
 | 
						|
 | 
						|
	// Platform module when in snapshot. So resolve modules with default android phone.
 | 
						|
	// NB: The only module name that should ever be resolved while in snapshot is app.css, because it is
 | 
						|
	// applied explicitly in the snapshot by [NativeScriptSnapshotPlugin](https://github.com/NativeScript/nativescript-dev-webpack/blob/48b26f412fd70c19dc0b9c7763e08e9505a0ae11/plugins/NativeScriptSnapshotPlugin/index.js#L48-L56)
 | 
						|
	return new ModuleNameResolver({
 | 
						|
		width: 400,
 | 
						|
		height: 800,
 | 
						|
		os: 'Android',
 | 
						|
		deviceType: 'Phone',
 | 
						|
	}).resolveModuleName(path, ext);
 | 
						|
}
 | 
						|
 | 
						|
export function clearCache() {
 | 
						|
	if (resolverInstance) {
 | 
						|
		resolverInstance.clearCache();
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
export function _setResolver(resolver: ModuleNameResolver) {
 | 
						|
	resolverInstance = resolver;
 | 
						|
}
 |