poll: make locks clickable
This commit is contained in:
parent
b6bb576a34
commit
f434f002c4
@ -15,8 +15,6 @@ define([
|
|||||||
|
|
||||||
$(function () {
|
$(function () {
|
||||||
|
|
||||||
var unlockHTML = '<i class="fa fa-unlock" aria-hidden="true"></i>';
|
|
||||||
var lockHTML = '<i class="fa fa-lock" aria-hidden="true"></i>';
|
|
||||||
var HIDE_INTRODUCTION_TEXT = "hide_poll_text";
|
var HIDE_INTRODUCTION_TEXT = "hide_poll_text";
|
||||||
var defaultName;
|
var defaultName;
|
||||||
|
|
||||||
@ -100,12 +98,10 @@ define([
|
|||||||
// Enable the checkboxes for the user's column (committed or not)
|
// Enable the checkboxes for the user's column (committed or not)
|
||||||
$('input[disabled="disabled"][data-rt-id^="' + id + '"]').removeAttr('disabled');
|
$('input[disabled="disabled"][data-rt-id^="' + id + '"]').removeAttr('disabled');
|
||||||
$('input[type="checkbox"][data-rt-id^="' + id + '"]').addClass('enabled');
|
$('input[type="checkbox"][data-rt-id^="' + id + '"]').addClass('enabled');
|
||||||
$('[data-rt-id="' + id + '"] ~ .edit').css('visibility', 'hidden');
|
$('.lock[data-rt-id="' + id + '"]').addClass('fa-unlock').removeClass('fa-lock').attr('title', Messages.poll_unlocked);
|
||||||
$('.lock[data-rt-id="' + id + '"]').html(unlockHTML).attr('title', Messages.poll_unlocked);
|
|
||||||
|
|
||||||
if (isOwnColumnCommitted()) { return; }
|
if (isOwnColumnCommitted()) { return; }
|
||||||
$('[data-rt-id^="' + id + '"]').closest('td').addClass("uncommitted");
|
$('[data-rt-id^="' + id + '"]').closest('td').addClass("uncommitted");
|
||||||
$('td.uncommitted .remove, td.uncommitted .edit').css('visibility', 'hidden');
|
|
||||||
$('td.uncommitted .cover').addClass("uncommitted");
|
$('td.uncommitted .cover').addClass("uncommitted");
|
||||||
$('.uncommitted input[type="text"]').attr("placeholder", Messages.poll_userPlaceholder);
|
$('.uncommitted input[type="text"]').attr("placeholder", Messages.poll_userPlaceholder);
|
||||||
};
|
};
|
||||||
@ -118,8 +114,7 @@ define([
|
|||||||
APP.editable.col.forEach(function (id) {
|
APP.editable.col.forEach(function (id) {
|
||||||
$('input[disabled="disabled"][data-rt-id^="' + id + '"]').removeAttr('disabled');
|
$('input[disabled="disabled"][data-rt-id^="' + id + '"]').removeAttr('disabled');
|
||||||
$('input[type="checkbox"][data-rt-id^="' + id + '"]').addClass('enabled');
|
$('input[type="checkbox"][data-rt-id^="' + id + '"]').addClass('enabled');
|
||||||
$('span.edit[data-rt-id="' + id + '"]').css('visibility', 'hidden');
|
$('.lock[data-rt-id="' + id + '"]').addClass('fa-unlock').removeClass('fa-lock').attr('title', Messages.poll_unlocked);
|
||||||
$('.lock[data-rt-id="' + id + '"]').html(unlockHTML).attr('title', Messages.poll_unlocked);
|
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -276,7 +271,6 @@ define([
|
|||||||
switch (type) {
|
switch (type) {
|
||||||
case 'text':
|
case 'text':
|
||||||
debug("text[rt-id='%s'] [%s]", id, input.value);
|
debug("text[rt-id='%s'] [%s]", id, input.value);
|
||||||
if (!input.value) { return void debug("Hit enter?"); }
|
|
||||||
Render.setValue(object, id, input.value);
|
Render.setValue(object, id, input.value);
|
||||||
change(null, null, null, 50);
|
change(null, null, null, 50);
|
||||||
break;
|
break;
|
||||||
@ -295,12 +289,26 @@ define([
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
var hideInputs = function (target, isKeyup) {
|
||||||
|
if (!isKeyup && $(target).is('[type="text"]')) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
$('.lock[data-rt-id!="' + APP.userid + '"]').addClass('fa-lock').removeClass('fa-unlock').attr('title', Messages.poll_locked);
|
||||||
|
var $cells = APP.$table.find('thead td:not(.uncommitted), tbody td');
|
||||||
|
$cells.find('[type="text"][data-rt-id!="' + APP.userid + '"]').attr('disabled', true);
|
||||||
|
$('.edit[data-rt-id!="' + APP.userid + '"]').css('visibility', 'visible');
|
||||||
|
APP.editable.col = [APP.userid];
|
||||||
|
APP.editable.row = [];
|
||||||
|
};
|
||||||
|
|
||||||
/* Called whenever an event is fired on a span */
|
/* Called whenever an event is fired on a span */
|
||||||
var handleSpan = function (span) {
|
var handleSpan = function (span) {
|
||||||
var id = span.getAttribute('data-rt-id');
|
var id = span.getAttribute('data-rt-id');
|
||||||
var type = Render.typeofId(id);
|
var type = Render.typeofId(id);
|
||||||
var isRemove = span.className && span.className.split(' ').indexOf('remove') !== -1;
|
var isRemove = span.className && span.className.split(' ').indexOf('remove') !== -1;
|
||||||
var isEdit = span.className && span.className.split(' ').indexOf('edit') !== -1;
|
var isEdit = span.className && span.className.split(' ').indexOf('edit') !== -1;
|
||||||
|
var isLock = span.className && span.className.split(' ').indexOf('lock') !== -1;
|
||||||
|
var isLocked = span.className && span.className.split(' ').indexOf('fa-lock') !== -1;
|
||||||
if (type === 'row') {
|
if (type === 'row') {
|
||||||
if (isRemove) {
|
if (isRemove) {
|
||||||
Cryptpad.confirm(Messages.poll_removeOption, function (res) {
|
Cryptpad.confirm(Messages.poll_removeOption, function (res) {
|
||||||
@ -310,6 +318,7 @@ define([
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
} else if (isEdit) {
|
} else if (isEdit) {
|
||||||
|
hideInputs(span);
|
||||||
unlockRow(id, function () {
|
unlockRow(id, function () {
|
||||||
change(null, null, null, null, function() {
|
change(null, null, null, null, function() {
|
||||||
$('input[data-rt-id="' + id + '"]').focus();
|
$('input[data-rt-id="' + id + '"]').focus();
|
||||||
@ -324,7 +333,8 @@ define([
|
|||||||
change();
|
change();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
} else if (isEdit) {
|
} else if (isLock && isLocked) {
|
||||||
|
hideInputs(span);
|
||||||
unlockColumn(id, function () {
|
unlockColumn(id, function () {
|
||||||
change(null, null, null, null, function() {
|
change(null, null, null, null, function() {
|
||||||
$('input[data-rt-id="' + id + '"]').focus();
|
$('input[data-rt-id="' + id + '"]').focus();
|
||||||
@ -338,48 +348,34 @@ define([
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
var hideInputs = function (e, isKeyup) {
|
|
||||||
if (!isKeyup && $(e.target).is('[type="text"]')) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
$('.lock[data-rt-id!="' + APP.userid + '"]').html(lockHTML).attr('title', Messages.poll_lock);
|
|
||||||
var $cells = APP.$table.find('thead td:not(.uncommitted), tbody td');
|
|
||||||
$cells.find('[type="text"][data-rt-id!="' + APP.userid + '"]').attr('disabled', true);
|
|
||||||
$('.edit[data-rt-id!="' + APP.userid + '"]').css('visibility', 'visible');
|
|
||||||
APP.editable.col = [APP.userid];
|
|
||||||
APP.editable.row = [];
|
|
||||||
};
|
|
||||||
|
|
||||||
$(window).click(hideInputs);
|
|
||||||
|
|
||||||
var handleClick = function (e, isKeyup) {
|
var handleClick = function (e, isKeyup) {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
|
|
||||||
if (!APP.ready) { return; }
|
if (!APP.ready) { return; }
|
||||||
var target = e && e.target;
|
var target = e && e.target;
|
||||||
|
|
||||||
if (isKeyup) {
|
|
||||||
debug("Keyup!");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!target) { return void debug("NO TARGET"); }
|
if (!target) { return void debug("NO TARGET"); }
|
||||||
|
|
||||||
var nodeName = target && target.nodeName;
|
var nodeName = target && target.nodeName;
|
||||||
|
var shouldLock = $(target).hasClass('fa-unlock');
|
||||||
|
|
||||||
if (!$(target).parents('#table tbody').length || $(target).hasClass('edit')) {
|
if ((!$(target).parents('#table tbody').length && $(target).hasClass('lock'))) {
|
||||||
hideInputs(e);
|
hideInputs(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (nodeName) {
|
switch (nodeName) {
|
||||||
case 'INPUT':
|
case 'INPUT':
|
||||||
if (isKeyup && (e.keyCode === 13 || e.keyCode === 27)) {
|
if (isKeyup && (e.keyCode === 13 || e.keyCode === 27)) {
|
||||||
hideInputs(e, isKeyup);
|
hideInputs(target, isKeyup);
|
||||||
return;
|
break;
|
||||||
}
|
}
|
||||||
handleInput(target);
|
handleInput(target);
|
||||||
break;
|
break;
|
||||||
case 'SPAN':
|
case 'SPAN':
|
||||||
//case 'LABEL':
|
//case 'LABEL':
|
||||||
|
if (shouldLock) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
handleSpan(target);
|
handleSpan(target);
|
||||||
break;
|
break;
|
||||||
case undefined:
|
case undefined:
|
||||||
@ -459,7 +455,6 @@ var ready = function (info, userid, readOnly) {
|
|||||||
|
|
||||||
var $table = APP.$table = $(Render.asHTML(displayedObj, null, colsOrder, readOnly));
|
var $table = APP.$table = $(Render.asHTML(displayedObj, null, colsOrder, readOnly));
|
||||||
APP.$createRow = $('#create-option').click(function () {
|
APP.$createRow = $('#create-option').click(function () {
|
||||||
//console.error("BUTTON CLICKED! LOL");
|
|
||||||
Render.createRow(proxy, function (empty, id) {
|
Render.createRow(proxy, function (empty, id) {
|
||||||
change(null, null, null, null, function() {
|
change(null, null, null, null, function() {
|
||||||
$('.edit[data-rt-id="' + id + '"]').click();
|
$('.edit[data-rt-id="' + id + '"]').click();
|
||||||
@ -470,7 +465,7 @@ var ready = function (info, userid, readOnly) {
|
|||||||
APP.$createCol = $('#create-user').click(function () {
|
APP.$createCol = $('#create-user').click(function () {
|
||||||
Render.createColumn(proxy, function (empty, id) {
|
Render.createColumn(proxy, function (empty, id) {
|
||||||
change(null, null, null, null, function() {
|
change(null, null, null, null, function() {
|
||||||
$('.edit[data-rt-id="' + id + '"]').click();
|
$('.lock[data-rt-id="' + id + '"]').click();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@ -532,6 +527,8 @@ var ready = function (info, userid, readOnly) {
|
|||||||
.click(handleClick)
|
.click(handleClick)
|
||||||
.on('keyup', function (e) { handleClick(e, true); });
|
.on('keyup', function (e) { handleClick(e, true); });
|
||||||
|
|
||||||
|
$(window).click(hideInputs);
|
||||||
|
|
||||||
proxy
|
proxy
|
||||||
.on('change', ['info'], function (o, n, p) {
|
.on('change', ['info'], function (o, n, p) {
|
||||||
if (p[1] === 'title') {
|
if (p[1] === 'title') {
|
||||||
|
|||||||
@ -266,23 +266,37 @@ div.realtime table input[type="text"] {
|
|||||||
border: 1px solid #fff;
|
border: 1px solid #fff;
|
||||||
width: 80%;
|
width: 80%;
|
||||||
}
|
}
|
||||||
|
form.realtime table span,
|
||||||
|
div.realtime table span {
|
||||||
|
user-select: none;
|
||||||
|
-moz-user-select: none;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
-ms-user-select: none;
|
||||||
|
}
|
||||||
form.realtime table thead td,
|
form.realtime table thead td,
|
||||||
div.realtime table thead td {
|
div.realtime table thead td {
|
||||||
padding: 0px 5px;
|
padding: 0px 5px;
|
||||||
background: #aaa;
|
background: #aaa;
|
||||||
border-radius: 20px 20px 0 0;
|
border-radius: 20px 20px 0 0;
|
||||||
text-align: center;
|
}
|
||||||
|
form.realtime table thead td:nth-of-type(2),
|
||||||
|
div.realtime table thead td:nth-of-type(2) {
|
||||||
|
background: #999;
|
||||||
|
}
|
||||||
|
form.realtime table thead td:nth-of-type(2) .lock,
|
||||||
|
div.realtime table thead td:nth-of-type(2) .lock {
|
||||||
|
cursor: default;
|
||||||
}
|
}
|
||||||
form.realtime table thead td input[type="text"],
|
form.realtime table thead td input[type="text"],
|
||||||
div.realtime table thead td input[type="text"] {
|
div.realtime table thead td input[type="text"] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
padding: 1px 5px;
|
||||||
}
|
}
|
||||||
form.realtime table thead td input[type="text"][disabled],
|
form.realtime table thead td input[type="text"][disabled],
|
||||||
div.realtime table thead td input[type="text"][disabled] {
|
div.realtime table thead td input[type="text"][disabled] {
|
||||||
color: #000;
|
color: #000;
|
||||||
padding: 1px 5px;
|
border: 1px solid transparent;
|
||||||
border: none;
|
|
||||||
}
|
}
|
||||||
form.realtime table tbody .text-cell,
|
form.realtime table tbody .text-cell,
|
||||||
div.realtime table tbody .text-cell {
|
div.realtime table tbody .text-cell {
|
||||||
@ -302,10 +316,6 @@ div.realtime table tbody .text-cell .remove {
|
|||||||
float: left;
|
float: left;
|
||||||
margin: 0 0 0 10px;
|
margin: 0 0 0 10px;
|
||||||
}
|
}
|
||||||
form.realtime table tbody tr td:nth-child(2),
|
|
||||||
div.realtime table tbody tr td:nth-child(2) {
|
|
||||||
border-left: 1px solid #555;
|
|
||||||
}
|
|
||||||
form.realtime table tbody tr:not(:first-child) td:not(:first-child) label,
|
form.realtime table tbody tr:not(:first-child) td:not(:first-child) label,
|
||||||
div.realtime table tbody tr:not(:first-child) td:not(:first-child) label {
|
div.realtime table tbody tr:not(:first-child) td:not(:first-child) label {
|
||||||
border-top: 1px solid #555;
|
border-top: 1px solid #555;
|
||||||
@ -317,6 +327,13 @@ div.realtime table .edit {
|
|||||||
float: left;
|
float: left;
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
|
form.realtime table .lock,
|
||||||
|
div.realtime table .lock {
|
||||||
|
margin-left: calc(50% - 0.5em);
|
||||||
|
cursor: pointer;
|
||||||
|
width: 1em;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
form.realtime table .remove,
|
form.realtime table .remove,
|
||||||
div.realtime table .remove {
|
div.realtime table .remove {
|
||||||
float: right;
|
float: right;
|
||||||
|
|||||||
@ -2,6 +2,7 @@
|
|||||||
@import "../../customize.dist/src/less/mixins.less";
|
@import "../../customize.dist/src/less/mixins.less";
|
||||||
|
|
||||||
@poll-th-bg: #aaa;
|
@poll-th-bg: #aaa;
|
||||||
|
@poll-th-user-bg: #999;
|
||||||
@poll-td-bg: #aaa;
|
@poll-td-bg: #aaa;
|
||||||
@poll-placeholder: #666;
|
@poll-placeholder: #666;
|
||||||
@poll-border-color: #555;
|
@poll-border-color: #555;
|
||||||
@ -293,20 +294,32 @@ form.realtime, div.realtime {
|
|||||||
width: 80%;
|
width: 80%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
span {
|
||||||
|
user-select: none;
|
||||||
|
-moz-user-select: none;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
-ms-user-select: none;
|
||||||
|
}
|
||||||
thead {
|
thead {
|
||||||
td {
|
td {
|
||||||
padding: 0px 5px;
|
padding: 0px 5px;
|
||||||
background: @poll-th-bg;
|
background: @poll-th-bg;
|
||||||
border-radius: 20px 20px 0 0;
|
border-radius: 20px 20px 0 0;
|
||||||
text-align: center;
|
//text-align: center;
|
||||||
|
&:nth-of-type(2) {
|
||||||
|
background: @poll-th-user-bg;
|
||||||
|
.lock {
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
}
|
||||||
input {
|
input {
|
||||||
&[type="text"] {
|
&[type="text"] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
padding: 1px 5px;
|
||||||
&[disabled] {
|
&[disabled] {
|
||||||
color: @poll-fg;
|
color: @poll-fg;
|
||||||
padding: 1px 5px;
|
border: 1px solid transparent;
|
||||||
border: none;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -344,6 +357,12 @@ form.realtime, div.realtime {
|
|||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.lock {
|
||||||
|
margin-left: ~"calc(50% - 0.5em)";
|
||||||
|
cursor: pointer;
|
||||||
|
width: 1em;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
.remove {
|
.remove {
|
||||||
float: right;
|
float: right;
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
|
|||||||
@ -269,12 +269,8 @@ var Renderer = function (Cryptpad) {
|
|||||||
return ['SPAN', {
|
return ['SPAN', {
|
||||||
'data-rt-id': id,
|
'data-rt-id': id,
|
||||||
'title': Cryptpad.Messages.poll_locked,
|
'title': Cryptpad.Messages.poll_locked,
|
||||||
class: 'lock',
|
class: 'lock fa fa-lock',
|
||||||
}, [['i', {
|
}, []];
|
||||||
class: 'fa fa-lock',
|
|
||||||
'aria-hidden': true,
|
|
||||||
}, []]
|
|
||||||
]];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
var makeHeadingCell = Render.makeHeadingCell = function (cell, readOnly) {
|
var makeHeadingCell = Render.makeHeadingCell = function (cell, readOnly) {
|
||||||
@ -284,7 +280,6 @@ var Renderer = function (Cryptpad) {
|
|||||||
if (!readOnly) {
|
if (!readOnly) {
|
||||||
elements.unshift(makeRemoveElement(cell['data-rt-id']));
|
elements.unshift(makeRemoveElement(cell['data-rt-id']));
|
||||||
elements.unshift(makeLockElement(cell['data-rt-id']));
|
elements.unshift(makeLockElement(cell['data-rt-id']));
|
||||||
elements.unshift(makeEditElement(cell['data-rt-id']));
|
|
||||||
}
|
}
|
||||||
return ['TD', {}, elements];
|
return ['TD', {}, elements];
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user