2015-02-18 12:51:12 -08:00
|
|
|
library angular2.src.transform;
|
2015-02-17 08:38:54 -08:00
|
|
|
|
|
|
|
import 'package:path/path.dart' as path;
|
|
|
|
|
2015-02-19 12:00:09 -08:00
|
|
|
/// Provides information necessary to transform an Angular2 app.
|
2015-02-17 08:38:54 -08:00
|
|
|
class TransformerOptions {
|
2015-02-19 12:00:09 -08:00
|
|
|
/// The file where the application's call to [bootstrap] is.
|
|
|
|
// TODO(kegluenq): Allow multiple bootstrap entry points.
|
|
|
|
final String bootstrapEntryPoint;
|
|
|
|
|
|
|
|
/// The Dart entry point, that is, where the initial call to [main] occurs.
|
2015-02-17 08:38:54 -08:00
|
|
|
final String entryPoint;
|
2015-02-19 12:00:09 -08:00
|
|
|
|
|
|
|
/// The path where we should generate code.
|
2015-02-17 08:38:54 -08:00
|
|
|
final String newEntryPoint;
|
2015-02-19 12:00:09 -08:00
|
|
|
|
|
|
|
/// The html file that includes [entryPoint].
|
2015-02-17 08:38:54 -08:00
|
|
|
final String htmlEntryPoint;
|
|
|
|
|
2015-02-19 12:00:09 -08:00
|
|
|
TransformerOptions(this.bootstrapEntryPoint, this.entryPoint,
|
|
|
|
this.newEntryPoint, this.htmlEntryPoint);
|
2015-02-17 08:38:54 -08:00
|
|
|
|
|
|
|
bool inSameTopLevelDir() {
|
|
|
|
var expectedDir = path.split(htmlEntryPoint)[0];
|
|
|
|
return (expectedDir == path.split(entryPoint)[0] &&
|
|
|
|
expectedDir == path.split(newEntryPoint)[0]);
|
|
|
|
}
|
|
|
|
}
|