Added fisheye javascript (from MikeH) to My Tasks template

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5562 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Kevin Roast
2007-04-26 14:23:22 +00:00
parent 2cb70d18e7
commit fcb38bcef5
3 changed files with 211 additions and 24 deletions

View File

@@ -0,0 +1,101 @@
var MyTasks = {
start: function()
{
if ($('taskPanel'))
{
MyTasks.parseTaskPanels();
}
},
parseTaskPanels: function()
{
var tasks = $$('#taskPanel .taskRow');
var items = $$('#taskPanel .taskItem');
var infos = $$('#taskPanel .taskInfo');
var details = $$('#taskPanel .taskDetail');
var fxDetail = new Fx.Elements(details, {wait: false, duration: 500, transition: Fx.Transitions.linear});
var fxInfo = new Fx.Elements(infos, {wait: false, duration: 500, transition: Fx.Transitions.linear});
tasks.each(function(task, i)
{
var item = items[i];
var info = infos[i];
var detail = details[i];
// animated elements defaults
item.defBColor = (item.getStyle('background-color') == 'transparent') ? '' : item.getStyle('background-color');
detail.defHeight = 0;
detail.setStyle('opacity', 0);
detail.setStyle('display', 'block');
detail.setStyle('height', 0);
info.setStyle('opacity', 0);
// register 'mouseenter' (subclassed mouseover) event for each task
task.addEvent('mouseenter', function(e)
{
var animInfo = {},
animDetail = {};
// highlight the item title
task.addClass('taskItemSelected');
// fade in the info button
animInfo[i] = {'opacity': [0, 1]};
// slide and fade in the details panel
animDetail[i] = {
'height': [detail.getStyle('height').toInt(), detail.defHeight + 100],
'opacity': [detail.getStyle('opacity'), 1]};
// reset styles on all other tasks
tasks.each(function(otherTask, j)
{
var otherItem = items[j];
var otherInfo = infos[j];
var otherDetail = details[j];
if (otherTask != task)
{
// reset selected class?
otherTask.removeClass('taskItemSelected');
// does this task detail panel need resetting back to it's default height?
var h = otherDetail.getStyle('height').toInt();
if (h != otherDetail.defHeight)
{
animDetail[j] = {
'height': [h, otherDetail.defHeight],
'opacity': [otherDetail.getStyle('opacity'), 0]};
}
// does the info button need fading out
var o = otherInfo.getStyle('opacity');
if (o != 0)
{
animInfo[j] = {'opacity': [o, 0]};
}
}
});
fxInfo.start(animInfo);
fxDetail.start(animDetail);
});
});
$('taskPanel').addEvent('mouseleave', function(e)
{
// handler for mouse leaving the entire task panel
var animInfo = {},
animDetail = {};
tasks.each(function(task, i)
{
var item = items[i];
var detail = details[i];
task.removeClass('taskItemSelected');
animDetail[i] = {
'height': [detail.getStyle('height').toInt(), detail.defHeight],
'opacity': [detail.getStyle('opacity'), 0]};
animInfo[i] = {'opacity': [infos[i].getStyle('opacity'), 0]};
});
fxInfo.start(animInfo);
fxDetail.start(animDetail);
});
}
};
window.addEvent('load', MyTasks.start);