aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/users/tokens-view.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/apps/users/tokens-view.js')
-rw-r--r--server/sonar-web/src/main/js/apps/users/tokens-view.js116
1 files changed, 0 insertions, 116 deletions
diff --git a/server/sonar-web/src/main/js/apps/users/tokens-view.js b/server/sonar-web/src/main/js/apps/users/tokens-view.js
deleted file mode 100644
index 9cd7a95b5a8..00000000000
--- a/server/sonar-web/src/main/js/apps/users/tokens-view.js
+++ /dev/null
@@ -1,116 +0,0 @@
-/*
- * SonarQube
- * Copyright (C) 2009-2017 SonarSource SA
- * mailto:info AT sonarsource DOT com
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser 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
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- */
-import $ from 'jquery';
-import Clipboard from 'clipboard';
-import Modal from '../../components/common/modals';
-import Template from './templates/users-tokens.hbs';
-import { getTokens, generateToken, revokeToken } from '../../api/user-tokens';
-import { translate } from '../../helpers/l10n';
-
-export default Modal.extend({
- template: Template,
-
- events() {
- return {
- ...Modal.prototype.events.apply(this, arguments),
- 'submit .js-generate-token-form': 'onGenerateTokenFormSubmit',
- 'submit .js-revoke-token-form': 'onRevokeTokenFormSubmit'
- };
- },
-
- initialize() {
- Modal.prototype.initialize.apply(this, arguments);
- this.tokens = null;
- this.newToken = null;
- this.errors = [];
- this.requestTokens();
- },
-
- requestTokens() {
- return getTokens(this.model.id).then(tokens => {
- this.tokens = tokens;
- this.render();
- });
- },
-
- onGenerateTokenFormSubmit(e) {
- e.preventDefault();
- this.errors = [];
- this.newToken = null;
- const tokenName = this.$('.js-generate-token-form input').val();
- generateToken({ name: tokenName, login: this.model.id }).then(
- response => {
- this.newToken = response;
- this.requestTokens();
- },
- () => {}
- );
- },
-
- onRevokeTokenFormSubmit(e) {
- e.preventDefault();
- const tokenName = $(e.currentTarget).data('token');
- const token = this.tokens.find(t => t.name === `${tokenName}`);
- if (token) {
- if (token.deleting) {
- revokeToken({ name: tokenName, login: this.model.id }).then(
- this.requestTokens.bind(this),
- () => {}
- );
- } else {
- token.deleting = true;
- this.render();
- }
- }
- },
-
- onRender() {
- Modal.prototype.onRender.apply(this, arguments);
- const copyButton = this.$('.js-copy-to-clipboard');
- if (copyButton.length) {
- const clipboard = new Clipboard(copyButton.get(0));
- clipboard.on('success', () => {
- copyButton
- .tooltip({
- title: translate('users.tokens.copied'),
- placement: 'bottom',
- trigger: 'manual'
- })
- .tooltip('show');
- setTimeout(() => copyButton.tooltip('hide'), 1000);
- });
- }
- this.newToken = null;
- },
-
- onDestroy() {
- this.model.collection.refresh();
- Modal.prototype.onDestroy.apply(this, arguments);
- },
-
- serializeData() {
- return {
- ...Modal.prototype.serializeData.apply(this, arguments),
- tokens: this.tokens,
- newToken: this.newToken,
- errors: this.errors
- };
- }
-});