HTML::ScriptLoader - Perl extension for loading scripts on a web page


HTML-ScriptLoader documentation Contained in the HTML-ScriptLoader distribution.

Index


Code Index:

NAME

Top

HTML::ScriptLoader - Perl extension for loading scripts on a web page

SYNOPSIS

Top

    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>




DESCRIPTION

Top

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.

EXPORT

None by default.

METHODS

Top

new(\%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.

add_script(@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.

is_loaded($script)

This method checks if a script has already been loaded.

_find_dependencies($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.

scripts

This method returns an ARRAYREF of all scripts that have been loaded. It will add all the query parameters to the URI's.

loaded

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.

available

This is an accessor for a HASHREF of scripts that is available for this object. Dependencies have not been resolved.

AUTHOR

Top

Knut-Olav Hoven, <knut-olav@hoven.ws>

COPYRIGHT AND LICENSE

Top


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__