summaryrefslogtreecommitdiffstats
path: root/apps/oauth2/js-src/components/OAuthItem.vue
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2018-06-08 09:52:27 +0200
committerRoeland Jago Douma <roeland@famdouma.nl>2018-06-19 11:42:41 +0200
commitd2d1e8e3750eb1c5f8049aa5d0e7326f8b49a659 (patch)
treed47b15245bfe9b238ca02ac97bd2a5e794f8af6c /apps/oauth2/js-src/components/OAuthItem.vue
parent7b8063a2424ea9f9d87493a23074b62afdd57854 (diff)
downloadnextcloud-server-d2d1e8e3750eb1c5f8049aa5d0e7326f8b49a659.tar.gz
nextcloud-server-d2d1e8e3750eb1c5f8049aa5d0e7326f8b49a659.zip
Migrate OAuth Admin settings to vue
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/oauth2/js-src/components/OAuthItem.vue')
-rw-r--r--apps/oauth2/js-src/components/OAuthItem.vue66
1 files changed, 66 insertions, 0 deletions
diff --git a/apps/oauth2/js-src/components/OAuthItem.vue b/apps/oauth2/js-src/components/OAuthItem.vue
new file mode 100644
index 00000000000..0ae37157487
--- /dev/null
+++ b/apps/oauth2/js-src/components/OAuthItem.vue
@@ -0,0 +1,66 @@
+<!--
+ - @copyright Copyright (c) 2018 Roeland Jago Douma <roeland@famdouma.nl>
+ -
+ - @author Roeland Jago Douma <roeland@famdouma.nl>
+ -
+ - @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/>.
+ -
+ -->
+<template>
+ <tr>
+ <td>{{name}}</td>
+ <td>{{redirectUri}}</td>
+ <td><code>{{clientId}}</code></td>
+ <td><code>{{renderedSecret}}</code><a class='icon-toggle has-tooltip' :title="t('oauth2', 'Show client secret')" @click="toggleSecret">SHOW SECRET</a></td>
+ <td class="action-column"><span><a class="icon-delete has-tooltip" :title="t('oauth2', 'Delete')" @click="$emit('delete', id)">DELETE</a></span></td>
+ </tr>
+</template>
+
+<script>
+export default {
+ name: 'OAuthItem',
+ props: {
+ client: {
+ type: Object,
+ required: true
+ }
+ },
+ data: function() {
+ return {
+ id: this.client.id,
+ name: this.client.name,
+ redirectUri: this.client.redirectUri,
+ clientId: this.client.clientId,
+ clientSecret: this.client.clientSecret,
+ renderSecret: false,
+ };
+ },
+ computed: {
+ renderedSecret: function() {
+ if (this.renderSecret) {
+ return this.clientSecret;
+ } else {
+ return '****';
+ }
+ }
+ },
+ methods: {
+ toggleSecret() {
+ this.renderSecret = !this.renderSecret;
+ }
+ }
+}
+</script>