make_single_default sub
André Walker [Mon, 11 Jul 2011 23:19:56 +0000 (20:19 -0300)]
lib/Catalyst.pm
lib/Catalyst/IOC/SubContainer.pm

index 134f5b6..ad387c0 100644 (file)
@@ -1462,7 +1462,6 @@ around components => sub {
 
         my ($type, $name) = _get_component_type_name($component);
 
-# FIXME: shouldn't the service name be $name?
         $containers->{$type}->add_service(Catalyst::IOC::BlockInjection->new( name => $name, block => sub { return $class->setup_component($component) } ));
     }
 
@@ -2382,6 +2381,9 @@ sub setup_components {
             $class->components->{ $component } = $class->setup_component($component);
         }
     }
+
+    $containers->{model}->make_single_default;
+    $containers->{view}->make_single_default;
 }
 
 sub _get_component_type_name {
index 2751268..8ebbceb 100644 (file)
@@ -30,6 +30,16 @@ sub get_component_regexp {
     return @result;
 }
 
+# FIXME: not the best name for a sub
+sub make_single_default {
+    my ( $self ) = @_;
+
+    my @complist = $self->get_service_list;
+
+    $self->default_component( shift @complist )
+        if !$self->default_component && scalar @complist == 1;
+}
+
 1;
 
 __END__
@@ -46,6 +56,8 @@ Catalyst::IOC::SubContainer - Container for models, controllers and views
 
 =head2 get_component_regexp
 
+=head2 make_single_default
+
 =head1 AUTHORS
 
 Catalyst Contributors, see Catalyst.pm