package EnsEMBL::Web::Component::Account::MemberDetails;
### Module to show details of a particular group that a user belongs to
use strict;
use warnings;
no warnings "uninitialized";
use base qw(EnsEMBL::Web::Component::Account);
use EnsEMBL::Web::Form;
use EnsEMBL::Web::RegObj;
use EnsEMBL::Web::Data::User;
use EnsEMBL::Web::Data::Group;
sub _init {
my $self = shift;
$self->cacheable( 0 );
$self->ajaxable( 0 );
}
sub caption {
my $self = shift;
return undef;
}
sub content {
my $self = shift;
return unless $self->object->param('id');
my $html;
my $user = $ENSEMBL_WEB_REGISTRY->get_user;
my $group = EnsEMBL::Web::Data::Group->new($self->object->param('id'));
if ($group) {
## Control panel fixes
my $dir = '/'.$ENV{'ENSEMBL_SPECIES'};
$dir = '' if $dir !~ /_/;
my $referer = ';_referer='.$self->object->param('_referer').';x_requested_with='.$self->object->param('x_requested_with');
my $creator = EnsEMBL::Web::Data::User->new($group->created_by);
$html .= '<p>Group created by '.$creator->name;
$html .= ' on '.$self->pretty_date($group->created_at).'</p>';
$html .= '<h3>Bookmarks</h3>';
if ($group->bookmarks) {
my $table = new EnsEMBL::Web::Document::SpreadSheet( [], [], {'margin' => '0px'} );
$table->add_columns(
{ 'key' => 'name', 'title' => 'Name', 'width' => '30%', 'align' => 'left' },
{ 'key' => 'desc', 'title' => 'Description', 'width' => '70%', 'align' => 'left' },
);
foreach my $bookmark ($group->bookmarks) {
my $row = {};
$row->{'name'} = sprintf(qq(<a href="%s/Account/UseBookmark?id=%s%s" title="%s" class="modal_link">%s</a>),
$dir, $bookmark->id, $referer, $bookmark->url, $bookmark->name);
$row->{'desc'} = $bookmark->description || ' ';
$table->add_row($row);
}
$html .= $table->render;
}
else {
$html .= '<p>No shared bookmarks</p>';
}
=pod
$html .= '<h3>Configurations</h3>';
if ($group->configurations) {
my $table = new EnsEMBL::Web::Document::SpreadSheet( [], [], {'margin' => '0px'} );
$table->add_columns(
{ 'key' => 'name', 'title' => 'Name', 'width' => '30%', 'align' => 'left' },
{ 'key' => 'desc', 'title' => 'Description', 'width' => '70%', 'align' => 'left' },
);
foreach my $config ($group->configurations) {
my $row = {};
$row->{'name'} = sprintf(qq(<a href="%s/Account/UseConfig?id=%s%s" class="modal_link">%s</a>),
$dir, $config->id, $referer, $config->name);
$row->{'desc'} = $config->description || ' ';
$table->add_row($row);
}
$html .= $table->render;
}
else {
$html .= '<p>No shared configurations</p>';
}
$html .= '<h3>Annotations</h3>';
if ($group->annotations) {
my $table = new EnsEMBL::Web::Document::SpreadSheet( [], [], {'margin' => '0px'} );
$table->add_columns(
{ 'key' => 'name', 'title' => 'Name', 'width' => '30%', 'align' => 'left' },
{ 'key' => 'title', 'title' => 'Title', 'width' => '70%', 'align' => 'left' },
);
foreach my $note ($group->annotations) {
my $row = {};
$row->{'name'} = sprintf(qq(<a href="/Gene/Summary?g=%s%s" class="cp-external">%s</a>),
$note->stable_id, $referer, $note->stable_id);
$row->{'title'} = $note->title || ' ';
$table->add_row($row);
}
$html .= $table->render;
}
else {
$html .= '<p>No shared annotations</p>';
}
=cut
}
return $html;
}
1;