run method

  1. @override
void run()
override

Runs this command.

The return value is wrapped in a Future if necessary and returned by CommandRunner.runCommand.

Implementation

@override
void run() async {
  final appsName = (argResults?['apps-name'] as String? ?? '').snakeCase;
  final pathApps = join(current, 'apps', appsName);
  String featureName =
      (argResults?['feature-name'] as String? ?? '').snakeCase;
  String pathFeature = join(current, 'features', featureName);
  if (appsName.isNotEmpty) {
    pathFeature = join(pathApps, 'features', featureName);
  }
  final pageName = (argResults?['page-name'] as String? ?? '').snakeCase;
  String pathPage = join(pathFeature, 'lib', pageName);

  if (appsName.isNotEmpty && !exists(pathApps)) {
    StatusHelper.failed(
        'Apps with "$appsName" does not exists, create a new apps with "morpheme apps <apps-name>"');
  }

  if (featureName.isNotEmpty && !exists(pathFeature)) {
    StatusHelper.failed(
        'Feature with "$featureName" does not exists, create a new feature with "morpheme feature <feature-name>"');
  }

  if (pageName.isNotEmpty && !exists(pathPage)) {
    StatusHelper.failed(
        'Page with "$pageName" does not exists, create a new page with "morpheme page <apage-name> -f <feature-name>"');
  }

  final pathToFormat = [
    if (appsName.isNotEmpty && featureName.isNotEmpty && pageName.isNotEmpty)
      pathPage
    else if (appsName.isNotEmpty && featureName.isNotEmpty)
      pathFeature
    else if (appsName.isNotEmpty)
      pathApps
  ];

  await ModularHelper.format(pathToFormat);

  StatusHelper.success('morpheme format');
}