
Catalyst::Plugin::StatusMessage - Handle passing of status (success and error) messages between screens of a web application.

In MyApp.pm:
use Catalyst qr/
StatusMessage
/;
In controller where you want to save a message for display on the next page (here, once the "delete" action taken is complete, we are redirecting to a "list" page to show the status [we don't want to leave the delete action in the browser URL]):
$c->response->redirect($c->uri_for($self->action_for('list'),
{mid => $c->set_status_msg("Deleted widget")}));
Or, to save an error message:
$c->response->redirect($c->uri_for($self->action_for('list'),
{mid => $c->set_error_msg("Error deleting widget")}));
Then, in the controller action that corresponds to the redirect above:
sub list :Path {
my ($self, $c) = @_;
...
$c->load_status_msgs;
...
}
And, to display the output (here using Template Toolkit):
...
<span class="message">[% status_msg %]</span>
<span class="error">[% error_msg %]</span>
...

There are a number of ways people commonly use to pass "status messages" between screens in a web application.
This plugin attempts to address these issues through the following mechanisms:
$c->session so that the application is free to redirect to the appropriate URL after an action is taken.
Load both messages that match the token parameter on the URL (e.g., http://myserver.com/widgits/list?mid=1234567890) into the stash for display by the viewer.
In general, you will want to include this in an auto or "base" (if using Chained dispatch) controller action. Then, if you have a "template wrapper page" that displays both "status_msg" and "error_msg", you can automatically and safely send status messages to any related controller action.

The location inside $c->session where messages will be stored. Defaults to "status_msg".
The name of the URL param that holds the token on the page where you want to retrieve/display the status message. Defaults to "mid".
The name of the stash key where "success" status messages are loaded when $c->load_status_msgs is called. Defaults to status_msg.
The name of the stash key where error messages are loaded when $c->load_status_msgs is called. Defaults to error_msg.
Here is a quick example showing how Catalyst::Plugin::StatusMessage can be configured in
# Configure Catalyst::Plugin::StatusMessage
__PACKAGE__->config(
'Plugin::StatusMessage' => {
session_prefix => 'my_status_msg',
token_param => 'my_mid',
status_msg_stash_key => 'my_status_msg',
error_msg_stash_key => 'my_error_msg',
}
);

Note: You normally shouldn't need any of the information in this section to use Catalyst::Plugin::StatusMessage.
A dynamically generated accessor to retrieve saved error messages
A dynamically generated accessor to retrieve saved status messages
A dynamically generated accessor to save error messages
A dynamically generated accessor to save status messages
Subref that handles default values and lets them be overriden from the MyApp configuration.
Fetch the requested message type from the user's session
Save a message to the user's session
Load both messages that match the token param (mid=###) into the stash for display by the view.
Called at startup to install getters and setters for each type of message (status & error)

Kennedy Clark, hkclark@cpan.org
With many thanks to Matt Trout (MST) for coaching on the details of Catalyst Plugins and for most of the magic behind the current implementation.

This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself.