fix environment changes within subdispatch and arrange for middleware to uplevel...
[catagits/Web-Simple.git] / lib / Web / Dispatch / Node.pm
CommitLineData
4ed4fb42 1package Web::Dispatch::Node;
2
3use Moo;
4
5with 'Web::Dispatch::ToApp';
6
7for (qw(match run)) {
8 has "_${_}" => (is => 'ro', required => 1, init_arg => $_);
9}
10
11sub call {
12 my ($self, $env) = @_;
13 if (my ($env_delta, @match) = $self->_match->($env)) {
1f4dd6f9 14 ($env_delta, $self->_curry(@match));
4ed4fb42 15 } else {
16 ()
17 }
18}
19
20sub _curry {
21 my ($self, @args) = @_;
22 my $run = $self->_run;
23 sub { $run->(@args, $_[0]) };
24}
25
261;