Compare commits

..

No commits in common. "develop" and "main" have entirely different histories.

7 changed files with 24 additions and 176 deletions

View File

@ -1,6 +1,6 @@
{
"license": "MIT",
"version": "1.2.0",
"version": "1.1.0",
"name": "@flaschengeist/users",
"author": "Ferdinand Thiessen <rpm@fthiessen.de>",
"homepage": "https://flaschengeist.dev/Flaschengeist",
@ -18,8 +18,8 @@
"lint": "eslint --ext .js,.ts,.vue ./src"
},
"devDependencies": {
"@flaschengeist/api": "^1.1.0",
"@flaschengeist/types": "^1.2.0",
"@flaschengeist/api": "^1.0.0",
"@flaschengeist/types": "^1.0.0",
"@quasar/app-webpack": "^3.7.2",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",

View File

@ -1,64 +0,0 @@
<template>
<q-card class="col-12">
<q-card-section class="fit row justify-start content-center items-center">
<div class="col-12 text-center text-h6">{{ apiKey.name }}</div>
<q-btn
class="absolute-top-right q-ma-sm"
color="negative"
icon="mdi-delete"
round
@click="deleteKey"
/>
</q-card-section>
<q-card-section
v-if="apiKey.token"
class="fit row justify-start content-center items-center q-gutter-sm"
>
<q-input class="col" outlined label="API Key" :model-value="apiKey.token" />
<div class="row justify-end content-end items-end">
<q-btn color="primary" icon="mdi-content-copy" round @click="copyApiKey" />
</div>
<q-banner class="fit bg-primary text-white" inline dense rounded>
ApiKey wird nur einmalig angezeigt. Bitte kopieren!
</q-banner>
</q-card-section>
<q-card-section class="fit row justify-start content-center items-center q-gutter-sm">
<q-input
class="fit"
type="textarea"
outlined
label="Description"
readonly
:model-value="apiKey.description"
/>
</q-card-section>
</q-card>
</template>
<script lang="ts">
import { defineComponent, PropType } from 'vue';
export default defineComponent({
name: 'ApiKey',
props: {
apiKey: {
type: Object as PropType<FG.ApiKey>,
required: true,
},
},
emits: {
delete: (apiKey: FG.ApiKey) => !!apiKey,
},
setup(props, { emit }) {
async function copyApiKey() {
await navigator.clipboard.writeText(<string>props.apiKey.token);
console.log('copying api key', props.apiKey.token);
}
function deleteKey() {
emit('delete', props.apiKey);
}
return {
deleteKey,
copyApiKey,
};
},
});
</script>

View File

@ -1,42 +0,0 @@
<template>
<q-card>
<q-card-section class="fit row justify-start content-center items-center">
<div class="col-12 text-center text-h6">API Key</div>
</q-card-section>
<q-card-section class="fit row justify-start content-center items-center q-gutter-sm">
<q-input
v-model="name"
class="fit"
outlined
label="API Key Name"
:rules="[(val) => !!val || 'API Key is required']"
/>
<q-input v-model="description" class="fit" type="textarea" outlined label="Description" />
</q-card-section>
<q-card-actions align="right">
<q-btn color="secondary" label="Abbrechen" @click="$emit('close')" />
<q-btn color="primary" label="Erstellen" @click="createApiKey" />
</q-card-actions>
</q-card>
</template>
<script lang="ts">
import { defineComponent, ref } from 'vue';
import { useApiKeyStore } from '@flaschengeist/api';
export default defineComponent({
name: 'ApiKeyForm',
emits: ['close'],
setup(_, { emit }) {
const apiKeyStore = useApiKeyStore();
const name = ref('');
const description = ref('');
async function createApiKey() {
await apiKeyStore.createApiKey({ id: -1, name: name.value, description: description.value });
name.value = '';
description.value = '';
emit('close');
}
return { name, description, createApiKey };
},
});
</script>

View File

@ -16,7 +16,7 @@
<script lang="ts">
import { computed, defineComponent, PropType, onBeforeMount, ref } from 'vue';
import { useUserStore } from '@flaschengeist/api';
import { showName } from '../utils';
import { DisplayNameMode } from '../models';
export default defineComponent({
name: 'UserSelector',
@ -68,6 +68,20 @@ export default defineComponent({
get: () => props.modelValue,
set: (value: FG.User | undefined) => (value ? emit('update:modelValue', value) : undefined),
});
function showName(user: FG.User) {
switch (userStore.userSettings.display_name) {
case DisplayNameMode.DISPLAYNAME:
return user.display_name;
case DisplayNameMode.FIRSTNAME:
return user.firstname;
case DisplayNameMode.LASTNAME:
return user.lastname;
case DisplayNameMode.FIRSTNAME_LASTNAME:
return `${user.firstname} ${user.lastname}`;
case DisplayNameMode.LASTNAME_FIRSTNAME:
return `${user.lastname}, ${user.firstname}`;
}
}
return {
selected,

View File

@ -7,8 +7,8 @@ const plugin: FG_Plugin.Plugin = {
id: 'users',
name: 'User',
innerRoutes: routes,
requiredModules: [['auth'], ['users', '2.2.0'], ['roles']],
version: '1.2.0',
requiredModules: [['auth'], ['users'], ['roles']],
version: '0.0.1',
widgets: [
{
priority: 1,
@ -29,4 +29,3 @@ const plugin: FG_Plugin.Plugin = {
export default plugin;
export { DisplayNameMode };
export * from './utils';

View File

@ -17,61 +17,30 @@
v-model="sessions[index]"
@delete="removeSession(session)"
/>
<div class="col-12 text-left text-h6">API Keys</div>
<api-key
v-for="apiKey in apiKeys"
:key="apiKey.id"
:api-key="apiKey"
@delete="deleteApiKey"
/>
<div class="fit row justify-end content-end items-end">
<q-btn
@click="showApiKeyForm = true"
class="q-mb-md"
color="primary"
icon="mdi-plus"
round
/>
</div>
<q-btn label="List Widgets" @click="listWidgets" />
</q-page>
<q-dialog v-model="showApiKeyForm" persistent>
<api-key-form @close="showApiKeyForm = false" />
</q-dialog>
</div>
</template>
<script lang="ts">
import {
useMainStore,
useUserStore,
useSessionStore,
hasPermissions,
useApiKeyStore,
} from '@flaschengeist/api';
import { useMainStore, useUserStore, useSessionStore, hasPermissions } from '@flaschengeist/api';
import MainUserSettings from '../components/settings/MainUserSettings.vue';
import { defineComponent, onBeforeMount, ref, computed, inject } from 'vue';
import UserSession from '../components/settings/UserSession.vue';
import { FG_Plugin } from '@flaschengeist/types';
import { Notify } from 'quasar';
import ApiKeyForm from '../components/ApiKeyForm.vue';
import ApiKey from '../components/ApiKey.vue';
export default defineComponent({
name: 'UserSettings',
components: { MainUserSettings, UserSession, ApiKeyForm, ApiKey },
components: { MainUserSettings, UserSession },
setup() {
const mainStore = useMainStore();
const sessionStore = useSessionStore();
const userStore = useUserStore();
const apiKeyStore = useApiKeyStore();
onBeforeMount(() => {
sessionStore.getSessions().then((s) => (sessions.value = s));
apiKeyStore.getApiKeys();
});
onBeforeMount(() => sessionStore.getSessions().then((s) => (sessions.value = s)));
const currentUser = ref(mainStore.currentUser);
const sessions = ref([] as FG.Session[]);
const apiKeys = computed(() => apiKeyStore.apiKeys);
async function updateUser(value: FG.User) {
await userStore.updateUser(value);
@ -99,13 +68,6 @@ export default defineComponent({
console.log(widgets);
}
const showApiKeyForm = ref(false);
async function deleteApiKey(apiKey: FG.ApiKey) {
console.log('deleteApiKey', apiKey);
await apiKeyStore.deleteApiKey(apiKey.id);
}
return {
currentUser,
sessions,
@ -113,9 +75,6 @@ export default defineComponent({
removeSession,
widgets,
listWidgets,
showApiKeyForm,
apiKeys,
deleteApiKey,
};
},
});

View File

@ -1,18 +0,0 @@
import { DisplayNameMode } from '../models';
import { useUserStore } from '@flaschengeist/api';
export function showName(user: FG.User) {
const userStore = useUserStore();
switch (userStore.userSettings.display_name) {
case DisplayNameMode.DISPLAYNAME:
return user.display_name;
case DisplayNameMode.FIRSTNAME:
return user.firstname;
case DisplayNameMode.LASTNAME:
return user.lastname;
case DisplayNameMode.FIRSTNAME_LASTNAME:
return `${user.firstname} ${user.lastname}`;
case DisplayNameMode.LASTNAME_FIRSTNAME:
return `${user.lastname}, ${user.firstname}`;
}
}