circles/js/circles.app.results.links.js
Maxence Lange 2b25002084 small syntax fix
Signed-off-by: Maxence Lange <maxence@nextcloud.com>
2017-06-14 15:56:08 -01:00

88 lines
2.3 KiB
JavaScript

/*
* Circles - Bring cloud-users closer together.
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
*
* @author Maxence Lange <maxence@pontapreta.net>
* @copyright 2017
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
/** global: OC */
/** global: OCA */
/** global: Notyf */
/** global: actions */
/** global: nav */
/** global: elements */
/** global: curr */
/** global: api */
/** global: define */
var resultLinks = {
linkCircleResult: function (result) {
if (result.status !== 1) {
OCA.notification.onFail(
t('circles', "A link to <b>{remote}</b> could not be initiated", {
remote: result.remote
}) + ': ' +
((result.error) ? result.error : t('circles', 'no error message')));
return;
}
if (result.link.status === define.linkRequestSent) {
OCA.notification.onSuccess(
t('circles', "A link to <b>{remote}</b> has been requested.", {
remote: result.remote
}));
}
if (result.link.status === define.linkUp) {
OCA.notification.onSuccess(
t('circles', "the link to <b>{remote}</b> is now up and running.", {
remote: result.remote
}));
}
curr.circleLinks = result.links;
nav.displayLinks('');
},
linkStatusResult: function (result) {
if (result.status !== 1) {
OCA.notification.onFail(
t('circles', "The status of the link could not be updated") + ': ' +
((result.error) ? result.error : t('circles', 'no error message')));
} else {
OCA.notification.onSuccess(t('circles', "The status of the link has been updated"));
curr.circleLinks = result.links;
}
nav.displayLinks('');
}
}
;