Merge branch 'inviteUI' of github.com:xwiki-labs/cryptpad into inviteUI

This commit is contained in:
ansuz 2019-12-16 10:22:44 -05:00
commit 6686e0e841
3 changed files with 46 additions and 2 deletions

View File

@ -71,6 +71,10 @@
z-index: 100000; // alertify container
font: @colortheme_app-font;
.cp-inline-alert-text {
flex: 1;
}
&.forefront {
z-index: @max-z-index; // alertify max forefront
}

View File

@ -28,4 +28,16 @@
.cp-app-prop-content {
color: @cryptpad_text_col;
}
.cp-teams-invite-block {
display: flex;
align-items: center;
margin-bottom: 5px;
span {
flex: 1;
}
}
.cp-teams-invite-alert {
margin-top: 15px;
}
}

View File

@ -1636,7 +1636,9 @@ define([
var linkName, linkPassword, linkMessage, linkError, linkSpinText;
var linkForm, linkSpin, linkResult;
var linkWarning;
// Invite from link
var dismissButton = h('span.fa.fa-times');
var linkContent = h('div.cp-share-modal', [
h('p', 'XXX Invite link description...'), // XXX
linkError = h('div.alert.alert-danger', {style : 'display: none;'}),
@ -1645,11 +1647,21 @@ define([
placeholder: 'name...' // XXX
}),
h('br'),
h('div.cp-teams-invite-block', [
h('span', 'password protection...'), // XXX
h('a.cp-teams-help.fa.fa-question-circle', {
href: origin + '/faq.html#security-pad_password',
target: "_blank",
'data-tippy-placement': "right"
})
]), // XXX
linkPassword = UI.passwordInput({
id: 'cp-teams-invite-password',
placeholder: 'password...' // XXX
}),
h('br'),
h('div.cp-teams-invite-block',
h('span', 'add a note') // XXX
),
linkMessage = h('textarea', { // XXX ansuz hitting enter submits...
placeholder: 'note...' // XXX
})
@ -1664,8 +1676,24 @@ define([
style: 'display: none;'
}, h('textarea', {
readonly: 'readonly'
}))
})),
linkWarning = h('div.cp-teams-invite-alert.alert.alert-warning.dismissable', {
style: "display: none;"
}, [
h('span.cp-inline-alert-text', 'Warning...'),
dismissButton
]) // XXX
]);
var localStore = window.cryptpadStore;
localStore.get('hide-alert-teamInvite', function (val) {
if (val === '1') { return; }
$(linkWarning).show();
$(dismissButton).on('click', function () {
localStore.put('hide-alert-teamInvite', '1');
$(linkWarning).remove();
});
});
var $linkContent = $(linkContent);
var href;
var process = function () {