Add built local::lib
[catagits/Gitalist.git] / local-lib5 / lib / perl5 / Catalyst / View / Component / SubInclude / SubRequest.pm
CommitLineData
3fea05b9 1package Catalyst::View::Component::SubInclude::SubRequest;
2use Moose;
3use Carp qw/croak/;
4use MooseX::Types::Moose qw/ Bool /;
5use namespace::clean -except => 'meta';
6
7=head1 NAME
8
9Catalyst::View::Component::SubInclude::SubRequest - Sub-requests plugin for C::V::Component::SubInclude
10
11=head1 VERSION
12
13Version 0.07_03
14
15=cut
16
17our $VERSION = '0.07_03';
18$VERSION = eval $VERSION;
19
20=head1 SYNOPSIS
21
22In your application class:
23
24 package MyApp;
25
26 use Catalyst qw/
27 ConfigLoader
28 Static::Simple
29 ...
30 SubRequest
31 /;
32
33In your view class:
34
35 package MyApp::View::TT;
36 use Moose;
37
38 extends 'Catalyst::View::TT';
39 with 'Catalyst::View::Component::SubInclude';
40
41 __PACKAGE__->config( subinclude_plugin => 'SubRequest' );
42
43Then, somewhere in your templates:
44
45 [% subinclude('/my/widget') %]
46
47=head1 DESCRIPTION
48
49C<Catalyst::View::Component::SubInclude::SubRequest> uses Catalyst sub-requests
50to render the subinclude contents.
51
52It requires L<Catalyst::Plugin::SubRequest>.
53
54=head1 CLASS METHODS
55
56=head2 C<generate_subinclude( $c, $path, @args )>
57
58This will make a sub-request call to the action specified by C<$path>. Note that
59C<$path> should be the private action path - translation to the public path is
60handled internally.
61
62So, after path translation, the call will be (roughly) equivalent to:
63
64 $c->sub_request( $translated_path, {}, @args );
65
66Notice that the stash will always be empty. This behavior could be configurable
67in the future through an additional switch - for now, this behavior guarantees a
68common interface for all plugins.
69
70=cut
71
72has keep_stash => (
73 isa => Bool,
74 is => 'ro',
75 default => 0,
76);
77
78sub generate_subinclude {
79 my ($self, $c, $path, @params) = @_;
80 my $stash = $self->keep_stash ? { %{ $c->stash } } : {};
81
82 croak "subincludes through subrequests require Catalyst::Plugin::SubRequest"
83 unless $c->can('sub_request');
84
85 my $query = ref $params[-1] eq 'HASH' ? pop @params : {};
86
87 my $action = blessed($path)
88 ? $path
89 : $c->dispatcher->get_action_by_path($path);
90
91 my $uri = $c->uri_for( $action, @params );
92
93 $c->sub_request( $uri->path, $stash, $query );
94}
95
96=head1 SEE ALSO
97
98L<Catalyst::View::Component::SubInclude|Catalyst::View::Component::SubInclude>,
99L<Catalyst::Plugin::SubRequest|Catalyst::Plugin::SubRequest>
100
101=head1 AUTHOR
102
103Nilson Santos Figueiredo Junior, C<< <nilsonsfj at cpan.org> >>
104
105=head1 SPONSORSHIP
106
107Development sponsored by Ionzero LLC L<http://www.ionzero.com/>.
108
109=head1 COPYRIGHT & LICENSE
110
111Copyright (C) 2009 Nilson Santos Figueiredo Junior.
112
113Copyright (C) 2009 Ionzero LLC.
114
115This program is free software; you can redistribute it and/or modify it
116under the same terms as Perl itself.
117
118=cut
119
120__PACKAGE__->meta->make_immutable;
1211;