| HTML-ScriptLoader documentation | Contained in the HTML-ScriptLoader distribution. |
HTML::ScriptLoader - Perl extension for loading scripts on a web page
use HTML::ScriptLoader;
my $scripts = HTML::ScriptLoader->new(
{
'other-script' => {
'uri' => 'http://example.com/other-script.js'
},
'myscript' => {
'uri' => '/static/js/myscript.js',
'deps' => ['other-script'],
'params' => {
'apikey' => 'very-secret',
},
},
}
);
$scripts->add_script('myscript');
$ttvars->{'javascripts'} = $scripts->scripts;
# In your templates (TT)
<head>
[% FOREACH js IN javascripts %]
<script type="text/javascript" src="[% js.url %]" />
[% END %]
<!-- ... -->
</head>
This package handles script loading with dependency support.
The available scripts can be setup in a configuration file and added on runtime. When a script is needed, you call on add_script, and the script and all its dependencies will be loaded, in order of dependency.
Recursive dependencies are not allowed and will throw an exception.
None by default.
\%attrs)Constructor.
It will return the reference to a blessed object of this package.
The \%attrs parameter should contain a HASHREF
with the scripts you want to use for your site.
@scripts)This prepares a script, or a list of scripts, for use on a web page. It will resolve all dependencies, ready for use in a template.
$script)This method checks if a script has already been loaded.
$script)This takes the name of a script as a parameter and looks up all dependencies that this script depends on.
The list of dependencies is returned.
This method returns an ARRAYREF of all scripts that have been loaded. It will add all the query parameters to the URI's.
This is an accessor for an ARRAY of scripts that has been loaded and ready for use on a web site, with all dependencies resolved.
This is an accessor for a HASHREF of scripts that is available for this object. Dependencies have not been resolved.
Knut-Olav Hoven, <knut-olav@hoven.ws>
Copyright (C) 2008 by Knut-Olav Hoven
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.
| HTML-ScriptLoader documentation | Contained in the HTML-ScriptLoader distribution. |
package HTML::ScriptLoader; use 5.008008; use strict; use warnings; require Exporter; use AutoLoader qw(AUTOLOAD); use Carp; use URI::Escape;
our @ISA = qw(Exporter); # Items to export into callers namespace by default. Note: do not export # names by default without a very good reason. Use EXPORT_OK instead. # Do not simply export all your public functions/methods/constants. # This allows declaration use HTML::ScriptLoader ':all'; # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK # will save memory. our %EXPORT_TAGS = ( 'all' => [ qw( ) ] ); our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } ); our @EXPORT = qw( ); our $VERSION = '1.01';
sub new { my ( $class, $scripts ) = @_; $class = ref $class || $class; $scripts ||= {}; my %self = ( '_scripts' => $scripts, '_loaded' => [], ); my $self = bless \%self, $class; return $self; }
sub add_script { my ( $self, @scripts ) = @_; for my $script (@scripts) { next if $self->is_loaded($script); croak("No script named $script exists") unless $self->available->{$script}; my @deps = $self->_find_dependencies($script); croak( "We do not allow recursive dependencies between scripts" ) if grep { $script eq $_ } @deps; # Add dependencies $self->add_script(@deps); # Add it to the loaded stack push @{ $self->{'_loaded'} }, $script; } }
sub is_loaded { my ( $self, $script ) = @_; return unless $self->loaded; croak "Missing script parameter" unless $script; return 1 if grep { $script eq $_ } $self->loaded; return; }
sub _find_dependencies { my ( $self, $script ) = @_; my $scriptconf = $self->available->{$script}; my @deps = @{ $scriptconf->{'deps'} || [] }; return @deps; }
sub scripts { my ( $self ) = @_; my @scripts = (); for my $scriptname ($self->loaded) { my $script = $self->available->{$scriptname}; $script->{'name'} = $scriptname; my $url = $script->{'uri'}; my %params = %{ $script->{'params'} || {} }; my @params = (); while (my ($key, $val) = each %params) { push @params, sprintf("%s=%s", uri_escape($key), uri_escape($val) ); } my $strparams = join '&', @params; $url = "$url?$strparams" if $strparams; $script->{'url'} = $url; push @scripts, $script; } return \@scripts; }
sub loaded { my ( $self ) = @_; return @{ $self->{'_loaded'} }; }
sub available { my ( $self ) = @_; return $self->{'_scripts'}; }
1; __END__