2012-12-05 22:48:15 +01:00
|
|
|
var invite = (function () {
|
|
|
|
|
|
|
|
var exports = {};
|
|
|
|
|
|
|
|
function update_subscription_checkboxes() {
|
|
|
|
// TODO: If we were more clever, we would only do this if the
|
|
|
|
// stream list has actually changed; that way, the settings of the
|
|
|
|
// checkboxes are saved from invocation to invocation (which is
|
|
|
|
// nice if I want to invite a bunch of people at once)
|
2013-02-07 02:15:12 +01:00
|
|
|
var streams = [];
|
2013-08-15 21:11:07 +02:00
|
|
|
_.each(stream_data.subscribed_streams(), function (value) {
|
|
|
|
streams.push({name: value, invite_only: stream_data.get_invite_only(value)});
|
2013-02-07 02:15:12 +01:00
|
|
|
});
|
2013-02-16 10:45:32 +01:00
|
|
|
$('#streams_to_add').html(templates.render('invite_subscription', {streams: streams}));
|
2012-12-05 22:48:15 +01:00
|
|
|
}
|
|
|
|
|
2013-01-31 17:09:18 +01:00
|
|
|
function reset_error_messages() {
|
|
|
|
var invite_status = $('#invite_status');
|
|
|
|
var invitee_emails = $("#invitee_emails");
|
|
|
|
var invitee_emails_group = invitee_emails.closest('.control-group');
|
|
|
|
|
|
|
|
invite_status.hide().text('').removeClass('alert-error alert-warning alert-success');
|
|
|
|
invitee_emails_group.removeClass('warning error');
|
|
|
|
}
|
|
|
|
|
|
|
|
function prepare_form_to_be_shown() {
|
2013-04-09 19:01:00 +02:00
|
|
|
$("#invitee_emails").val("");
|
2013-01-31 17:09:18 +01:00
|
|
|
update_subscription_checkboxes();
|
|
|
|
reset_error_messages();
|
|
|
|
}
|
|
|
|
|
2012-12-05 22:48:15 +01:00
|
|
|
exports.initialize = function () {
|
|
|
|
var invite_status = $('#invite_status');
|
|
|
|
var invitee_emails = $("#invitee_emails");
|
|
|
|
var invitee_emails_group = invitee_emails.closest('.control-group');
|
|
|
|
|
2013-01-31 17:23:34 +01:00
|
|
|
$('#submit-invitation').button();
|
2013-01-31 17:09:18 +01:00
|
|
|
$('#invite-user').on('show', prepare_form_to_be_shown);
|
2013-04-09 19:11:58 +02:00
|
|
|
$('#invite-user').on('shown', function () {
|
|
|
|
invitee_emails.focus().autosize();
|
|
|
|
});
|
|
|
|
|
2012-12-05 22:48:15 +01:00
|
|
|
$("#invite_user_form").ajaxForm({
|
|
|
|
dataType: 'json',
|
2013-07-05 17:43:56 +02:00
|
|
|
beforeSubmit: function (arr, $form, options) {
|
2013-01-31 17:09:18 +01:00
|
|
|
reset_error_messages();
|
2012-12-05 22:48:15 +01:00
|
|
|
// TODO: You could alternatively parse the textarea here, and return errors to
|
|
|
|
// the user if they don't match certain constraints (i.e. not real email addresses,
|
|
|
|
// aren't in the right domain, etc.)
|
|
|
|
//
|
|
|
|
// OR, you could just let the server do it. Probably my temptation.
|
2013-01-31 17:23:34 +01:00
|
|
|
$('#submit-invitation').button('loading');
|
2012-12-05 22:48:15 +01:00
|
|
|
return true;
|
|
|
|
},
|
|
|
|
success: function (resp, statusText, xhr, form) {
|
2013-01-31 17:23:34 +01:00
|
|
|
$('#submit-invitation').button('reset');
|
2013-02-07 02:18:00 +01:00
|
|
|
$('#invitee_emails').val('');
|
2012-12-05 22:48:15 +01:00
|
|
|
invite_status.text('Users invited successfully.')
|
|
|
|
.addClass('alert-success')
|
|
|
|
.show();
|
|
|
|
},
|
|
|
|
error: function (xhr, error_type, xhn) {
|
2013-01-31 17:23:34 +01:00
|
|
|
$('#submit-invitation').button('reset');
|
2012-12-05 22:48:15 +01:00
|
|
|
var arr = $.parseJSON(xhr.responseText);
|
|
|
|
if (arr.errors === undefined) {
|
|
|
|
// There was a fatal error, no partial processing occurred.
|
|
|
|
invite_status.text(arr.msg)
|
|
|
|
.addClass('alert-error')
|
|
|
|
.show();
|
|
|
|
} else {
|
|
|
|
// Some users were not invited.
|
|
|
|
var error_list = $('<ul>');
|
2013-07-30 00:35:44 +02:00
|
|
|
_.each(arr.errors, function (value) {
|
2012-12-05 22:48:15 +01:00
|
|
|
error_list.append($('<li>').text(value.join(': ')));
|
|
|
|
});
|
|
|
|
|
|
|
|
invite_status.addClass('alert-warning')
|
|
|
|
.empty()
|
|
|
|
.append($('<p>').text(arr.msg))
|
|
|
|
.append(error_list)
|
|
|
|
.show();
|
|
|
|
invitee_emails_group.addClass('warning');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2013-04-02 20:47:18 +02:00
|
|
|
$(document).on('click', '.invite_check_all_button', function (e) {
|
|
|
|
$('#streams_to_add :checkbox').attr('checked', true);
|
|
|
|
e.preventDefault();
|
|
|
|
});
|
|
|
|
|
|
|
|
$(document).on('click', '.invite_uncheck_all_button', function (e) {
|
|
|
|
$('#streams_to_add :checkbox').attr('checked', false);
|
|
|
|
e.preventDefault();
|
|
|
|
});
|
2012-12-05 22:48:15 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
return exports;
|
|
|
|
|
|
|
|
}());
|