-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add members #40
base: development_2.0.0
Are you sure you want to change the base?
Add members #40
Changes from 9 commits
814183b
2979965
f0b1832
78d3090
1db5db6
cf549d2
e935a6a
dedfb89
45ce05a
1b47dd6
4f8decf
7b46a93
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,23 @@ | ||
import axios, { AxiosInstance } from 'axios'; | ||
import axios, { AxiosInstance } from 'axios' | ||
|
||
const AuthClient: AxiosInstance = axios.create({ | ||
baseURL: import.meta.env.VITE_APP_ENDPOINT, | ||
baseURL: import.meta.env.VITE_APP_ENDPOINT, | ||
timeout: 1000, | ||
headers: { | ||
'Content-Type': 'application/json', | ||
'Authorization': 'Bearer ' + localStorage.getItem("token"), | ||
Authorization: 'Bearer ' + localStorage.getItem('token'), | ||
}, | ||
}); | ||
}) | ||
|
||
const BaseClient: AxiosInstance = axios.create({ | ||
baseURL: import.meta.env.VITE_APP_ENDPOINT, | ||
timeout: 1000, | ||
}); | ||
}) | ||
|
||
export { AuthClient, BaseClient }; | ||
async function Search (searchInput:any) { | ||
return await AuthClient.get(`/members/search/${searchInput}`) | ||
} | ||
async function getProjectMembers (projectId:any) { | ||
return await AuthClient.get(`/members/project/${projectId}/members/`) | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. use members without projects, should be |
||
export default { AuthClient, BaseClient, Search } |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,191 @@ | ||||||||||||||||||||||||||||||||||||||
<template> | ||||||||||||||||||||||||||||||||||||||
<div style="margin-left: 7cm; margin-right: 7cm;"> | ||||||||||||||||||||||||||||||||||||||
<v-container> | ||||||||||||||||||||||||||||||||||||||
<v-row> | ||||||||||||||||||||||||||||||||||||||
Comment on lines
+2
to
+4
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You need to load the navbar here |
||||||||||||||||||||||||||||||||||||||
<p class="mt-2 text-h4 text-blue-darken-4" variant="h5">ALL MEMBERS</p> | ||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||
<v-spacer /> | ||||||||||||||||||||||||||||||||||||||
<v-btn | ||||||||||||||||||||||||||||||||||||||
color="primary" | ||||||||||||||||||||||||||||||||||||||
@click="addMemberDialog=true" | ||||||||||||||||||||||||||||||||||||||
> | ||||||||||||||||||||||||||||||||||||||
INVITE MEMBERS | ||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||
</v-btn> | ||||||||||||||||||||||||||||||||||||||
</v-row> | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
<v-dialog v-model="addMemberDialog" max-width="600px"> | ||||||||||||||||||||||||||||||||||||||
<v-card> | ||||||||||||||||||||||||||||||||||||||
<v-form> | ||||||||||||||||||||||||||||||||||||||
<v-card-title> | ||||||||||||||||||||||||||||||||||||||
<br> | ||||||||||||||||||||||||||||||||||||||
<v-divider /> | ||||||||||||||||||||||||||||||||||||||
</v-card-title> | ||||||||||||||||||||||||||||||||||||||
<v-card-text> | ||||||||||||||||||||||||||||||||||||||
<v-text-field | ||||||||||||||||||||||||||||||||||||||
v-model="inviteNewMember.first_name" | ||||||||||||||||||||||||||||||||||||||
density="compact" | ||||||||||||||||||||||||||||||||||||||
placeholder="First Name" | ||||||||||||||||||||||||||||||||||||||
prepend-inner-icon="mdi-account-outline" | ||||||||||||||||||||||||||||||||||||||
variant="outlined" | ||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add the validation rules, and apply it to all inputs |
||||||||||||||||||||||||||||||||||||||
/> | ||||||||||||||||||||||||||||||||||||||
<v-text-field | ||||||||||||||||||||||||||||||||||||||
v-model="inviteNewMember.last_name" | ||||||||||||||||||||||||||||||||||||||
density="compact" | ||||||||||||||||||||||||||||||||||||||
placeholder="Last Name" | ||||||||||||||||||||||||||||||||||||||
prepend-inner-icon="mdi-account-outline" | ||||||||||||||||||||||||||||||||||||||
variant="outlined" | ||||||||||||||||||||||||||||||||||||||
/> | ||||||||||||||||||||||||||||||||||||||
<v-text-field | ||||||||||||||||||||||||||||||||||||||
v-model="inviteNewMember.email" | ||||||||||||||||||||||||||||||||||||||
density="compact" | ||||||||||||||||||||||||||||||||||||||
placeholder="Email" | ||||||||||||||||||||||||||||||||||||||
prepend-inner-icon="mdi-email-outline" | ||||||||||||||||||||||||||||||||||||||
variant="outlined" | ||||||||||||||||||||||||||||||||||||||
/> | ||||||||||||||||||||||||||||||||||||||
<p>Permission</p> | ||||||||||||||||||||||||||||||||||||||
<v-select | ||||||||||||||||||||||||||||||||||||||
:items="['Full access', 'Admin access']" | ||||||||||||||||||||||||||||||||||||||
label="Select" | ||||||||||||||||||||||||||||||||||||||
/> | ||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
also, use an enum to normalizre the value, the backend require an exact pattern see the enum there class PERMISSION_CHOICES(models.TextChoices):
FULL_ACCESS = "full_access", "Full access"
ADMIN_ACCESS = "admin_access", "Admin access" so you need to send the
Suggested change
|
||||||||||||||||||||||||||||||||||||||
<v-divider /> | ||||||||||||||||||||||||||||||||||||||
<v-card-actions> | ||||||||||||||||||||||||||||||||||||||
<v-spacer /> | ||||||||||||||||||||||||||||||||||||||
<v-btn color="info" @click="addMemberDialog = false">Close</v-btn> | ||||||||||||||||||||||||||||||||||||||
<v-btn color="success" :disabled="loadingAdd" :loading="loadingAdd" @click="addMember">ADD+</v-btn> | ||||||||||||||||||||||||||||||||||||||
</v-card-actions> | ||||||||||||||||||||||||||||||||||||||
</v-card-text> | ||||||||||||||||||||||||||||||||||||||
</v-form> | ||||||||||||||||||||||||||||||||||||||
</v-card> | ||||||||||||||||||||||||||||||||||||||
</v-dialog> | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
<v-row> | ||||||||||||||||||||||||||||||||||||||
<p class="mt-2 text-h6 text-grey-darken-2 mb-8" variant="h6">There are {{ count }} members registered</p> | ||||||||||||||||||||||||||||||||||||||
</v-row> | ||||||||||||||||||||||||||||||||||||||
<br> | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
<v-row> | ||||||||||||||||||||||||||||||||||||||
<h4 class="mb-2">Search Members</h4> | ||||||||||||||||||||||||||||||||||||||
</v-row> | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
<v-row> | ||||||||||||||||||||||||||||||||||||||
<v-text-field v-model="searchText" label="Search" variant="outlined" /> | ||||||||||||||||||||||||||||||||||||||
<v-btn color="primary" style="height: 56px; width:80px; padding: 0; margin: 0;" variant="outlined" @click="SearchMember">Search</v-btn> | ||||||||||||||||||||||||||||||||||||||
</v-row> | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
<v-row> | ||||||||||||||||||||||||||||||||||||||
<v-col | ||||||||||||||||||||||||||||||||||||||
v-for="member in members" | ||||||||||||||||||||||||||||||||||||||
:key="member.email" | ||||||||||||||||||||||||||||||||||||||
cols="12" | ||||||||||||||||||||||||||||||||||||||
md="4" | ||||||||||||||||||||||||||||||||||||||
sm="6" | ||||||||||||||||||||||||||||||||||||||
> | ||||||||||||||||||||||||||||||||||||||
<v-card class="ma-2" outlined> | ||||||||||||||||||||||||||||||||||||||
<!-- implement viewMember --> | ||||||||||||||||||||||||||||||||||||||
<v-card-subtitle>{{ member.full_name }}</v-card-subtitle> | ||||||||||||||||||||||||||||||||||||||
<v-card-actions> | ||||||||||||||||||||||||||||||||||||||
<v-btn @click="viewMember(member.id)">View Details</v-btn> | ||||||||||||||||||||||||||||||||||||||
</v-card-actions> | ||||||||||||||||||||||||||||||||||||||
</v-card> | ||||||||||||||||||||||||||||||||||||||
</v-col> | ||||||||||||||||||||||||||||||||||||||
</v-row> | ||||||||||||||||||||||||||||||||||||||
</v-container> | ||||||||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||||||||
</template> | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
<script> | ||||||||||||||||||||||||||||||||||||||
import { defineProps, ref } from 'vue' | ||||||||||||||||||||||||||||||||||||||
import axios from '@/api/axios' | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
export default { | ||||||||||||||||||||||||||||||||||||||
setup () { | ||||||||||||||||||||||||||||||||||||||
const props = defineProps({ | ||||||||||||||||||||||||||||||||||||||
count: { | ||||||||||||||||||||||||||||||||||||||
type: Number, | ||||||||||||||||||||||||||||||||||||||
required: true, | ||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||
members: { | ||||||||||||||||||||||||||||||||||||||
type: Array, | ||||||||||||||||||||||||||||||||||||||
required: true, | ||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||
project_id: { | ||||||||||||||||||||||||||||||||||||||
type: string, | ||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please use |
||||||||||||||||||||||||||||||||||||||
required: true, | ||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
const inviteNewMember = ref({ | ||||||||||||||||||||||||||||||||||||||
first_name: '', | ||||||||||||||||||||||||||||||||||||||
last_name: '', | ||||||||||||||||||||||||||||||||||||||
email: '', | ||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Better to define an interface for the data |
||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
const addMemberDialog = ref(false) | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
const searchText = ref('') | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
const loadingAdd = ref(false) | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
const addMember = () => { | ||||||||||||||||||||||||||||||||||||||
loadingAdd.value = true | ||||||||||||||||||||||||||||||||||||||
try { | ||||||||||||||||||||||||||||||||||||||
notifier.notify({ | ||||||||||||||||||||||||||||||||||||||
title: 'success', | ||||||||||||||||||||||||||||||||||||||
description: 'member added successfully', | ||||||||||||||||||||||||||||||||||||||
showProgressBar: true, | ||||||||||||||||||||||||||||||||||||||
timeout: 7_000, | ||||||||||||||||||||||||||||||||||||||
type: 'success', | ||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The message will be returned from the backend |
||||||||||||||||||||||||||||||||||||||
} catch (error) { | ||||||||||||||||||||||||||||||||||||||
console.error(error) | ||||||||||||||||||||||||||||||||||||||
notifier.notify({ | ||||||||||||||||||||||||||||||||||||||
title: 'Fail', | ||||||||||||||||||||||||||||||||||||||
description: 'cannot add member', | ||||||||||||||||||||||||||||||||||||||
showProgressBar: true, | ||||||||||||||||||||||||||||||||||||||
timeout: 7_000, | ||||||||||||||||||||||||||||||||||||||
type: 'error', | ||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||
} finally { | ||||||||||||||||||||||||||||||||||||||
loadingAdd.value = false | ||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
const SearchMember = async () => { | ||||||||||||||||||||||||||||||||||||||
try { | ||||||||||||||||||||||||||||||||||||||
members.value = await axios.Search(searchText.value) | ||||||||||||||||||||||||||||||||||||||
} catch (error) { | ||||||||||||||||||||||||||||||||||||||
console.error(error) | ||||||||||||||||||||||||||||||||||||||
notifier.notify({ | ||||||||||||||||||||||||||||||||||||||
title: 'Fail', | ||||||||||||||||||||||||||||||||||||||
description: 'no member found', | ||||||||||||||||||||||||||||||||||||||
showProgressBar: true, | ||||||||||||||||||||||||||||||||||||||
timeout: 7_000, | ||||||||||||||||||||||||||||||||||||||
type: 'error', | ||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
async function getMembers () { | ||||||||||||||||||||||||||||||||||||||
try { | ||||||||||||||||||||||||||||||||||||||
members = await axios.getProjectMembers(project_id) | ||||||||||||||||||||||||||||||||||||||
} catch (error) { | ||||||||||||||||||||||||||||||||||||||
console.error(error) | ||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
onMounted(() => { | ||||||||||||||||||||||||||||||||||||||
getMembers() | ||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
return { | ||||||||||||||||||||||||||||||||||||||
props, | ||||||||||||||||||||||||||||||||||||||
SearchMember, | ||||||||||||||||||||||||||||||||||||||
searchText, | ||||||||||||||||||||||||||||||||||||||
inviteNewMember, | ||||||||||||||||||||||||||||||||||||||
addMemberDialog, | ||||||||||||||||||||||||||||||||||||||
addMember, | ||||||||||||||||||||||||||||||||||||||
loadingAdd, | ||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||
</script> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"dependencies": { | ||
"vuetify": "3.7.0-beta.1" | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Load it from the window instead