1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
|
package Chart::Clicker::Axis::DateTime;
$Chart::Clicker::Axis::DateTime::VERSION = '2.90';
use Moose;
# ABSTRACT: An X or Y Axis using DateTime
use Chart::Clicker::Data::Marker;
use DateTime;
use DateTime::Set;
use Graphics::Color::RGB;
extends 'Chart::Clicker::Axis';
has 'format' => (
is => 'rw',
isa => 'Str'
);
has 'time_zone' => (
is => 'rw',
isa => 'Str'
);
override 'prepare' => sub {
my ($self, $driver) = @_;
my ($dstart, $dend);
eval {
$dstart = DateTime->from_epoch(epoch => $self->range->lower);
$dend = DateTime->from_epoch(epoch => $self->range->upper);
};
if(!defined($dstart) || !defined($dend)) {
$dstart = DateTime->now;
$dend = DateTime->now;
}
my $dur = $dend - $dstart;
unless(defined($self->format) && length($self->format)) {
if($dur->years) {
$self->format('%b %Y');
} elsif($dur->months) {
$self->format('%d');
} elsif($dur->weeks) {
$self->format('%d');
} elsif($dur->days) {
$self->format('%m/%d %H:%M');
} else {
$self->format('%H:%M');
}
}
super;
my $clicker = shift;
if(!defined($clicker)) {
die('No clicker?')
}
# my @markers = @{ $clicker->markers };
my $set = DateTime::Span->from_datetimes(
start => $dstart, end => $dend
);
my $linecolor = Graphics::Color::RGB->new({
red => 0, green => 0, blue => 0, alpha => .35
});
my $fillcolor = Graphics::Color::RGB->new({
red => 0, green => 0, blue => 0, alpha => .10
});
# my @dmarkers;
# my $day = $set->start->truncate(to => 'day');
#
# my $dayval;
# while($day < $set->end) {
# if($set->contains($day)) {
# if(defined($dayval)) {
# push(@dmarkers,
# Chart::Clicker::Data::Marker->new({
# key => $dayval,
# key2 => $day->epoch,
# color => $linecolor,
# inside_color=> $fillcolor,
# })
# );
# $dayval = undef;
# } else {
# $dayval = $day->epoch;
# }
# }
# $day = $day->add(days => 1);
# }
# if($dayval) {
# push(@dmarkers,
# Chart::Clicker::Data::Marker->new({
# key => $dayval,
# key2 => $day->epoch,
# color => $linecolor,
# inside_color=> $fillcolor,
# })
# );
# }
#
# push(@dmarkers, @markers);
# $clicker->markers(\@dmarkers);
return 1;
};
sub format_value {
my $self = shift;
my $value = shift;
my %dtargs = (
'epoch' => $value
);
if($self->time_zone) {
$dtargs{'time_zone'} = $self->time_zone;
}
my $dt = DateTime->from_epoch(%dtargs);
return $dt->strftime($self->format);
}
__PACKAGE__->meta->make_immutable;
no Moose;
1;
__END__
=pod
=head1 NAME
Chart::Clicker::Axis::DateTime - An X or Y Axis using DateTime
=head1 VERSION
version 2.90
=head1 SYNOPSIS
my $axis = Chart::Clicker::Axis::DateTime->new;
=head1 DESCRIPTION
A temporal Axis. Requires L<DateTime> and L<DateTime::Set>. Inherits from
Axis, so check the methods there as well. Expects that times will be in
unix format.
=head1 ATTRIBUTES
=head2 format
Set/Get the formatting string used to format the DateTime. See DateTime's
strftime.
=head2 time_zone
Set/Get the time zone to use when creating DateTime objects! Accepts an
object or a string ('America/Chicago').
=head1 METHODS
=head2 format_value
Formats the value using L<DateTime>'s strftime.
=head1 AUTHOR
Cory G Watson <gphat@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2016 by Cory G Watson.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|