You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
roundcubemail-swipe/swipe.js

461 lines
20 KiB
JavaScript

7 years ago
/**
* Swipe plugin script
*
* @licstart The following is the entire license notice for the
* JavaScript code in this file.
*
* Copyright (C) 2018-2019 Philip Weir
7 years ago
*
* The JavaScript code in this page is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation, either version 3 of
* the License, or (at your option) any later version.
*
* @licend The above is the entire license notice
* for the JavaScript code in this file.
*/
7 years ago
rcube_webmail.prototype.swipe = {
position_target: function(obj, pos, transition, max_move) {
7 years ago
var translate = '';
7 years ago
if (pos && transition) {
if (transition == 'scale') {
pos = pos > 0 ? pos : 0;
translate = 'scale(' + pos / max_move + ')';
}
else {
translate = transition + '(' + pos + 'px)';
}
}
7 years ago
if (bw.edge && $(obj).is('tr')) { // Edge does not support transform on <tr>s
7 years ago
$(obj).children('td').css('transform', translate);
}
else {
7 years ago
$(obj).css('transform', translate);
}
7 years ago
},
7 years ago
action_callback: function(command, props) {
7 years ago
if (!props.uid)
return;
7 years ago
var prev_uid = rcmail.env.uid;
rcmail.env.uid = props.uid;
var type = null;
if (matches = command.match(/([a-z0-9_-]+)\/([a-z0-9-_]+)/)) {
type = matches[1];
command = matches[2];
}
7 years ago
if (type == 'mark') {
rcmail.mark_message(command);
}
7 years ago
else if (type == 'compose') {
rcmail.enable_command(command, true);
rcmail.command(command, '', props.obj, props.originalEvent);
}
else if (type == 'select') {
rcmail.env.swipe_list.highlight_row(props.uid, true);
7 years ago
}
else {
var prev_command = rcmail.commands[command];
rcmail.enable_command(command, true);
7 years ago
// some actions require a button click in the UI to trigger things like popovers
// rather than a direct command call
$('#' + rcmail.buttons[command][0].id).trigger('click');
7 years ago
// restore original state
rcmail.enable_command(command, prev_command);
}
7 years ago
rcmail.env.uid = prev_uid;
},
7 years ago
select_action: function(direction, obj) {
var actions = {
'archive': {
'class': rcmail.env.archive_folder ? 'archive' : null,
'text': rcmail.env.archive_folder ? 'archive.buttontext': null,
'command': rcmail.env.archive_folder ? 'plugin.archive' : null
},
'checkmail': {
'class': 'checkmail',
'text': 'refresh',
'callback': function(p) { rcmail.command('checkmail'); }
},
'delete': {
'class': 'delete',
'text': 'delete',
'command': 'delete'
},
'forward': {
'class': 'forward',
'text': 'forward',
'command': 'compose/forward'
},
'markasjunk': {
'class': !rcmail.env.markasjunk_spam_only && rcmail.env.mailbox == rcmail.env.markasjunk_spam_mailbox ? 'notjunk' : 'junk',
'text': !rcmail.env.markasjunk_spam_only && rcmail.env.mailbox == rcmail.env.markasjunk_spam_mailbox ? 'markasjunk.markasnotjunk' : 'markasjunk.markasjunk',
'command': !rcmail.env.markasjunk_spam_only && rcmail.env.mailbox == rcmail.env.markasjunk_spam_mailbox ? 'plugin.markasjunk.not_junk' : 'plugin.markasjunk.junk'
},
'move': {
'class': 'move',
'text': 'moveto',
'command': 'move'
},
'reply': {
'class': 'reply',
'text': 'reply',
'command': 'compose/reply'
},
'reply-all': {
'class': 'replyall',
'text': 'replyall',
'command': 'compose/reply-all'
},
'swipe-read': {
'class': obj && obj.hasClass('unread') ? 'read' : 'unread',
'text': obj && obj.hasClass('unread') ? 'swipe.markasread' : 'swipe.markasunread',
'command': obj && obj.hasClass('unread') ? 'mark/read' : 'mark/unread'
},
'swipe-flagged': {
'class': obj && obj.hasClass('flagged') ? 'unflagged' : 'flagged',
'text': obj && obj.hasClass('flagged') ? 'swipe.markasunflagged' : 'swipe.markasflagged',
'command': obj && obj.hasClass('flagged') ? 'mark/unflagged' : 'mark/flagged'
},
'swipe-select': {
'class': obj && obj.hasClass('selected') ? 'deselect' : 'select',
'text': obj && obj.hasClass('selected') ? 'swipe.deselect' : 'select',
'command': obj && obj.hasClass('selected') ? 'select/deselect' : 'select/select'
},
'none': {
'class': null,
'text': null,
'callback': null,
'command': null
}
};
7 years ago
ret = rcmail.triggerEvent('swipe-action', {'direction': direction, 'obj': obj});
if (ret !== undefined) {
// abort if one of the handlers returned false
return ret === false ? actions['none'] : ret;
7 years ago
}
else if (action = actions[rcmail.env.swipe_actions[direction]]) {
if (!action.callback && action.command) {
action.callback = function(p) { rcmail.swipe.action_callback(action.command, p); };
7 years ago
}
}
else {
// fall back to no action if nothing was found
action = actions['none'];
}
7 years ago
return action;
},
init: function(opts) {
var swipeevents = {
'startevent': 'pointerdown',
'moveevent': 'pointermove',
'endevent': 'pointerup',
'cancelevent': 'pointercancel',
'id': function(e) { return e.pointerId; },
'type': function(e) { return e.pointerType; },
'pos': function(e, x) { return e.originalEvent[ x ? 'pageX' : 'pageY']; },
'clearswipe': function(e) {
rcmail.swipe.position_target(opts[swipedata.axis].target_obj, 0);
7 years ago
opts[swipedata.axis].target_obj.removeClass('swipe-active');
swipedata = {};
rcmail.swipe.active = null;
// reset #swipe-action
$('#swipe-action').removeClass().hide();
$('.swipe-container').attr('class', 'swipe-container');
$('.swipe-action').attr('class', 'swipe-action');
if (opts.parent_obj)
opts.parent_obj.off(swipeevents.moveevent, rcube_event.cancel);
}
7 years ago
};
var swipedata = {};
// fallback to touch events if there is no pointer support
if (!bw.pointer) {
swipeevents.startevent = 'touchstart';
swipeevents.moveevent = 'touchmove';
swipeevents.endevent = 'touchend';
swipeevents.cancelevent = 'touchcancel';
swipeevents.id = function(e) { return e.changedTouches.length == 1 ? e.changedTouches[0].identifier : -1; };
swipeevents.type = function(e) { return 'touch'; };
swipeevents.pos = function(e, x) { return e.originalEvent.targetTouches[0][ x ? 'pageX' : 'pageY']; };
}
// swipe on list container
7 years ago
opts.source_obj
.on(swipeevents.startevent, function(e) {
if (!rcmail.swipe.active && swipeevents.type(e) == 'touch') {
swipedata.x = swipeevents.pos(e, true);
swipedata.y = swipeevents.pos(e, false);
swipedata.id = swipeevents.id(e);
swipedata.scrollable = rcmail.swipe.parent[0].offsetHeight < rcmail.swipe.parent[0].scrollHeight;
if (opts.parent_obj)
opts.parent_obj.off(swipeevents.moveevent, rcube_event.cancel);
}
})
.on(swipeevents.moveevent, function(e) {
// make sure no other swipes are active and no other pointers
if (swipedata.id != swipeevents.id(e) || swipeevents.type(e) != 'touch')
return;
var changeX = swipeevents.pos(e, true) - swipedata.x;
var changeY = swipeevents.pos(e, false) - swipedata.y;
// stop the row from sliding off the screen completely
7 years ago
changeY = opts.vertical ? Math.min(opts.vertical.maxmove, changeY) : 0;
changeX = opts.horizontal ? (changeX < 0 ? Math.max(opts.horizontal.maxmove * -1, changeX) : Math.min(opts.horizontal.maxmove, changeX)) : 0;
// use Math.abs() to ensure value is always a positive number
var min_move = 5; // the minimum amount of pointer movement required to trigger the swipe
7 years ago
var temp_axis;
if (opts.vertical && (Math.abs(changeY) > min_move || opts.vertical.target_obj.hasClass('swipe-active'))) {
7 years ago
temp_axis = 'vertical';
}
else if (opts.horizontal && (Math.abs(changeX) > min_move || opts.horizontal.target_obj.hasClass('swipe-active'))) {
7 years ago
temp_axis = 'horizontal';
}
else {
return;
}
7 years ago
7 years ago
// make sure no other swipes are active
if (!temp_axis || !opts[temp_axis] || (rcmail.swipe.active && rcmail.swipe.active != temp_axis))
return;
// do not interfere with normal list scrolling
if (temp_axis == 'vertical' && rcmail.swipe.parent.scrollTop() != 0) {
7 years ago
if (bw.pointer && swipedata.scrollable)
rcmail.swipe.parent.css('touch-action', 'pan-y');
7 years ago
if (swipedata.axis)
swipeevents.clearswipe(e);
7 years ago
return;
}
7 years ago
// save the axis info
swipedata.axis = temp_axis;
var direction = (swipedata.axis == 'vertical' ? 'down' : (changeX < 0 ? 'left' : 'right'));
var action = rcmail.swipe.select_action(direction, opts.source_obj);
// if there is no callback then abort
if (!action.callback)
return;
$('#swipe-action').attr('class', temp_axis).data('callback', action.callback);
$('.swipe-container').attr('class', 'swipe-container ' + direction);
$('.swipe-action').attr('class', 'swipe-action ' + action.class);
$('.swipe-label').text(rcmail.gettext(action.text));
7 years ago
if (!opts[swipedata.axis].target_obj.hasClass('swipe-active')) {
var action_style = opts[swipedata.axis].action_sytle(opts[swipedata.axis].target_obj);
$('#swipe-action').css({
'top': action_style.top,
'left': action_style.left,
'width': action_style.width,
'height': action_style.height
7 years ago
}).show();
opts[swipedata.axis].target_obj.addClass('swipe-active');
rcmail.swipe.active = swipedata.axis; // set the active swipe
if (opts.parent_obj)
opts.parent_obj.on(swipeevents.moveevent, rcube_event.cancel);
}
7 years ago
// the user must swipe a certain about before the action is activated, try to prevent accidental actions
// do not activate if there is no callback
if (((swipedata.axis == 'vertical' && changeY > opts[swipedata.axis].minmove) ||
(swipedata.axis == 'horizontal' && (changeX < (opts[swipedata.axis].minmove * -1) || changeX > opts[swipedata.axis].minmove))) && action.callback) {
7 years ago
$('#swipe-action').addClass(action.class);
}
else {
// reset the swipe if the user takes the row back to the start
$('#swipe-action').removeClass(action.class);
7 years ago
$('#swipe-action').data('callback', null);
}
var pos = swipedata.axis == 'vertical' ? changeY : changeX;
rcmail.swipe.position_target(opts[swipedata.axis].target_obj, pos, opts[swipedata.axis].transition, opts[swipedata.axis].maxmove);
7 years ago
})
.on(swipeevents.endevent, function(e) {
if (swipeevents.type(e) == 'touch' && swipedata.id == swipeevents.id(e) && rcmail.swipe.active &&
rcmail.swipe.active == swipedata.axis && opts[swipedata.axis].target_obj.hasClass('swipe-active')) {
var callback = null;
if (callback = $('#swipe-action').data('callback'))
callback({'uid': opts[swipedata.axis].uid, 'obj': opts[swipedata.axis].target_obj, 'originalEvent': e});
7 years ago
7 years ago
swipeevents.clearswipe(e);
}
})
.on(swipeevents.cancelevent, function(e) {
if (swipedata.axis)
swipeevents.clearswipe(e);
});
}
};
7 years ago
$(document).ready(function() {
if (window.rcmail && ((bw.touch && !bw.ie) || bw.pointer)) {
7 years ago
rcmail.addEventListener('init', function() {
rcmail.env.swipe_list = rcmail.message_list;
rcmail.env.swipe_menuname = 'messagelistmenu';
var list_container = $(rcmail.env.swipe_list.list).parent();
if (rcmail.env.swipe_list.draggable || !list_container[0].addEventListener)
7 years ago
return;
var swipe_action = $('<div>').attr('id', 'swipe-action').append(
$('<div>').addClass('swipe-container').append($('<div>').addClass('swipe-action').append($('<span>').addClass('swipe-label')))
);
rcmail.swipe.parent = list_container;
rcmail.swipe.parent.prepend(swipe_action.hide());
// down swipe on list container
var swipe_config = {
7 years ago
'source_obj': rcmail.swipe.parent,
'parent_obj': null,
'vertical': {
'minmove': $(window).height() * 0.19,
'maxmove': $(window).height() * 0.2,
'transition': 'scale',
'action_sytle': function(o) {
return {
'top': '',
'left': 0,
7 years ago
'width': rcmail.swipe.parent.width() + 'px',
'height': ''
};
},
'target_obj': $('#swipe-action'),
'uid': null
}
};
7 years ago
rcmail.swipe.init(swipe_config);
// prevent accidental list scroll when swipe active
7 years ago
rcmail.swipe.parent.on('scroll', function() {
if (!bw.pointer) {
7 years ago
if (rcmail.swipe.active)
return false;
}
else if ($(this).scrollTop() == 0) {
// allow vertical pointer events to fire (if one is configured)
7 years ago
var action = rcmail.swipe.select_action('down');
// Edge does not support pan-down, only pan-y
rcmail.swipe.parent.css('touch-action', action.callback && ! bw.edge ? 'pan-down' : 'pan-y');
}
}).trigger('scroll');
7 years ago
});
// right/left/down swipe on list
7 years ago
rcmail.addEventListener('insertrow', function(props) {
if (rcmail.env.swipe_list.draggable || !$('#' + props.row.id)[0].addEventListener)
7 years ago
return;
var row_width = $('#' + props.row.id).width();
// if no row width is available then use window width as fall back
row_width = row_width == 0 ? $(window).width() : row_width;
7 years ago
var swipe_config = {
'source_obj': $('#' + props.row.id),
7 years ago
'parent_obj': rcmail.swipe.parent,
'horizontal': {
'minmove': row_width * 0.25,
'maxmove': row_width * 0.6,
'transition': 'translatex',
'action_sytle': function(o) {
return {
'top': o.position().top,
'left': o.position().left,
'width': o.width() + 'px',
'height': (o.height() - 2) + 'px' // subtract the border
};
},
'target_obj': $('#' + props.row.id),
'uid': props.uid
}
7 years ago
};
7 years ago
rcmail.swipe.init(swipe_config);
7 years ago
});
// save swipe options
rcmail.set_list_options_core = rcmail.set_list_options;
7 years ago
rcmail.set_list_options = function(cols, sort_col, sort_order, threads, layout) {
7 years ago
var post = {};
$.each(['left', 'right', 'down'], function() {
var option_input = $('.swipeoptions-' + this).find('select,input').first();
if ($(option_input).is('input[type="radio"]')) {
selector = 'input[name="swipe_' + this + '"]:checked';
}
else if ($(option_input).is('select')) {
selector = 'select[name="swipe_' + this + '"]';
selector += $(selector).length > 1 ? ':visible' : '';
}
if ($(selector).val() != rcmail.env.swipe_actions[this]) {
rcmail.env.swipe_actions[this] = $(selector).val();
7 years ago
post['swipe_' + this] = rcmail.env.swipe_actions[this];
}
});
if (!$.isEmptyObject(post))
rcmail.http_post('plugin.swipe.save_settings', post);
rcmail.set_list_options_core(cols, sort_col, sort_order, threads, layout);
7 years ago
};
7 years ago
}
// show swipe options in the list options menu
rcmail.addEventListener('beforemenu-open', function(name) {
if (name == rcmail.env.swipe_menuname) {
var menu_obj = $('.swipe-menu');
if (!rcmail.env.swipe_list.draggable && menu_obj.find('select > option,input').length > 0) {
if (bw.edge)
menu_obj.find('.swipeoptions-down').hide();
menu_obj.show();
}
else {
menu_obj.hide();
}
}
});
// set the values swipe options menu
// done in menu-open not beforemenu-open because of Elastic's Bootstrap popovers
rcmail.addEventListener('menu-open', function(p) {
if (p.name == rcmail.env.swipe_menuname && $('.swipe-menu').is(':visible')) {
$.each(rcmail.env.swipe_actions, function(direction, action) {
var option_input = $('.swipeoptions-' + direction).find('select,input');
if (option_input.is('input[type="radio"]')) {
option_input.filter('[value="' + action + '"]').prop('checked', true);
}
else if (option_input.is('select') && option_input.first().children('option').length > 0) {
option_input.val(action);
}
else {
$('.swipeoptions-' + direction).hide();
}
});
}
});
7 years ago
});