mojo-debugbar/lib/Mojo/Debugbar/Monitor.pm
package Mojo::Debugbar::Monitor;
use Mojo::Base -base;
use Mojo::JSON qw(encode_json);
use Mojo::Server;
has 'app' => sub { Mojo::Server->new->build_app('Mojo::HelloWorld') }, weak => 1;
has 'icon' => '';
has 'items' => sub { [] };
has 'name' => 'Monitor';
=head2 count
Returns the number that will be shown in the title
=cut
sub count {
return scalar(@{ shift->items });
}
=head2 inject
Inject as javascript
=cut
sub inject {
my $self = shift;
my $rows = $self->rows;
# replace "`" with "'" $rows
$rows =~ s/`/'/g;
return sprintf('$(\'table[data-debugbar-ref="%s"] tbody\').prepend(`%s`);', ref($self), $rows);
}
=head2 render
Returns the html
=cut
sub render {
return '';
}
=head2 rows
Build the rows
=cut
sub rows {
return '';
}
=head2 stop
Stop the monitor
=cut
sub stop {
shift->items([]);
}
=head2 start
Start the monitor
=cut
sub start {
}
1;