123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482 |
- <template>
- <div>
- <page-metadata title="Admin | Users" />
- <div class="container">
- <h2>Data Requests</h2>
- <advanced-table
- :column-default="dataRequests.columnDefault"
- :columns="dataRequests.columns"
- :filters="dataRequests.filters"
- data-action="dataRequests.getData"
- name="admin-data-requests"
- max-width="1200"
- :query="false"
- >
- <template #column-options="slotProps">
- <div class="row-options">
- <quick-confirm
- placement="right"
- @confirm="resolveDataRequest(slotProps.item._id)"
- :disabled="slotProps.item.removed"
- >
- <button
- class="
- button
- is-success
- icon-with-button
- material-icons
- "
- content="Resolve Data Request"
- v-tippy
- >
- done_all
- </button>
- </quick-confirm>
- </div>
- </template>
- <template #column-type="slotProps">
- <span
- :title="
- slotProps.item.type
- ? 'Remove all associated data'
- : slotProps.item.type
- "
- >{{
- slotProps.item.type
- ? "Remove all associated data"
- : slotProps.item.type
- }}</span
- >
- </template>
- <template #column-userId="slotProps">
- <span :title="slotProps.item.userId">{{
- slotProps.item.userId
- }}</span>
- </template>
- <template #column-_id="slotProps">
- <span :title="slotProps.item._id">{{
- slotProps.item._id
- }}</span>
- </template>
- </advanced-table>
- <h1 id="page-title">Users</h1>
- <advanced-table
- :column-default="users.columnDefault"
- :columns="users.columns"
- :filters="users.filters"
- data-action="users.getData"
- name="admin-users"
- max-width="1200"
- >
- <template #column-options="slotProps">
- <div class="row-options">
- <button
- class="
- button
- is-primary
- icon-with-button
- material-icons
- "
- @click="edit(slotProps.item._id)"
- :disabled="slotProps.item.removed"
- content="Edit User"
- v-tippy
- >
- edit
- </button>
- </div>
- </template>
- <template #column-profilePicture="slotProps">
- <profile-picture
- :avatar="slotProps.item.avatar"
- :name="
- slotProps.item.name
- ? slotProps.item.name
- : slotProps.item.username
- "
- />
- </template>
- <template #column-name="slotProps">
- <span :title="slotProps.item.name">{{
- slotProps.item.name
- }}</span>
- </template>
- <template #column-username="slotProps">
- <span :title="slotProps.item.username">{{
- slotProps.item.username
- }}</span>
- </template>
- <template #column-_id="slotProps">
- <span :title="slotProps.item._id">{{
- slotProps.item._id
- }}</span>
- </template>
- <template #column-githubId="slotProps">
- <span
- v-if="slotProps.item.services.github"
- :title="slotProps.item.services.github.id"
- >{{ slotProps.item.services.github.id }}</span
- >
- </template>
- <!-- <template #column-hasPassword="slotProps">
- <span :title="slotProps.item.hasPassword">{{
- slotProps.item.hasPassword
- }}</span>
- </template> -->
- <template #column-role="slotProps">
- <span :title="slotProps.item.role">{{
- slotProps.item.role
- }}</span>
- </template>
- <template #column-emailAddress="slotProps">
- <span :title="slotProps.item.email.address">{{
- slotProps.item.email.address
- }}</span>
- </template>
- <template #column-emailVerified="slotProps">
- <span :title="slotProps.item.email.verified">{{
- slotProps.item.email.verified
- }}</span>
- </template>
- <template #column-songsRequested="slotProps">
- <span :title="slotProps.item.statistics.songsRequested">{{
- slotProps.item.statistics.songsRequested
- }}</span>
- </template>
- </advanced-table>
- </div>
- <edit-user
- v-if="modals.editUser"
- :user-id="editingUserId"
- sector="admin"
- />
- </div>
- </template>
- <script>
- import { mapState, mapActions, mapGetters } from "vuex";
- import { defineAsyncComponent } from "vue";
- import Toast from "toasters";
- import AdvancedTable from "@/components/AdvancedTable.vue";
- import ProfilePicture from "@/components/ProfilePicture.vue";
- import QuickConfirm from "@/components/QuickConfirm.vue";
- // import ws from "@/ws";
- export default {
- components: {
- EditUser: defineAsyncComponent(() =>
- import("@/components/modals/EditUser.vue")
- ),
- AdvancedTable,
- ProfilePicture,
- QuickConfirm
- },
- data() {
- return {
- editingUserId: "",
- dataRequests: {
- columnDefault: {
- sortable: true,
- hidable: true,
- defaultVisibility: "shown",
- draggable: true,
- resizable: true,
- minWidth: 150,
- maxWidth: 600
- },
- columns: [
- {
- name: "options",
- displayName: "Edit",
- properties: ["_id"],
- sortable: false,
- hidable: false,
- resizable: false,
- minWidth: 51,
- defaultWidth: 51
- },
- {
- name: "type",
- displayName: "Type",
- properties: ["type"],
- sortProperty: "type"
- },
- {
- name: "userId",
- displayName: "User ID",
- properties: ["userId"],
- sortProperty: "userId"
- },
- {
- name: "_id",
- displayName: "Request ID",
- properties: ["_id"],
- sortProperty: "_id"
- }
- ],
- filters: [
- {
- name: "_id",
- displayName: "Request ID",
- property: "_id",
- filterTypes: ["exact"],
- defaultFilterType: "exact"
- },
- {
- name: "userId",
- displayName: "User ID",
- property: "userId",
- filterTypes: ["contains", "exact", "regex"],
- defaultFilterType: "contains"
- },
- {
- name: "type",
- displayName: "Type",
- property: "type",
- filterTypes: ["contains", "exact", "regex"],
- defaultFilterType: "contains"
- }
- ]
- },
- users: {
- columnDefault: {
- sortable: true,
- hidable: true,
- defaultVisibility: "shown",
- draggable: true,
- resizable: true,
- minWidth: 150,
- maxWidth: 600
- },
- columns: [
- {
- name: "options",
- displayName: "Edit",
- properties: ["_id"],
- sortable: false,
- hidable: false,
- resizable: false,
- minWidth: 51,
- defaultWidth: 51
- },
- {
- name: "profilePicture",
- displayName: "Image",
- properties: ["avatar", "name", "username"],
- sortable: false,
- resizable: false,
- minWidth: 71,
- defaultWidth: 71
- },
- {
- name: "name",
- displayName: "Display Name",
- properties: ["name"],
- sortProperty: "name"
- },
- {
- name: "username",
- displayName: "Username",
- properties: ["username"],
- sortProperty: "username"
- },
- {
- name: "_id",
- displayName: "User ID",
- properties: ["_id"],
- sortProperty: "_id",
- minWidth: 230,
- defaultWidth: 230
- },
- {
- name: "githubId",
- displayName: "GitHub ID",
- properties: ["services.github.id"],
- sortProperty: "services.github.id",
- minWidth: 115,
- defaultWidth: 115
- },
- // {
- // name: "hasPassword",
- // displayName: "Has Password",
- // properties: ["hasPassword"],
- // sortProperty: "hasPassword"
- // }
- {
- name: "role",
- displayName: "Role",
- properties: ["role"],
- sortProperty: "role",
- minWidth: 90,
- defaultWidth: 90
- },
- {
- name: "emailAddress",
- displayName: "Email Address",
- properties: ["email.address"],
- sortProperty: "email.address",
- defaultVisibility: "hidden"
- },
- {
- name: "emailVerified",
- displayName: "Email Verified",
- properties: ["email.verified"],
- sortProperty: "email.verified",
- defaultVisibility: "hidden",
- minWidth: 140,
- defaultWidth: 140
- },
- {
- name: "songsRequested",
- displayName: "Songs Requested",
- properties: ["statistics.songsRequested"],
- sortProperty: "statistics.songsRequested",
- minWidth: 170,
- defaultWidth: 170
- }
- ],
- filters: [
- {
- name: "_id",
- displayName: "User ID",
- property: "_id",
- filterTypes: ["exact"],
- defaultFilterType: "exact"
- },
- {
- name: "name",
- displayName: "Display Name",
- property: "name",
- filterTypes: ["contains", "exact", "regex"],
- defaultFilterType: "contains"
- },
- {
- name: "username",
- displayName: "Username",
- property: "username",
- filterTypes: ["contains", "exact", "regex"],
- defaultFilterType: "contains"
- },
- {
- name: "githubId",
- displayName: "GitHub ID",
- property: "services.github.id",
- filterTypes: ["contains", "exact", "regex"],
- defaultFilterType: "contains"
- },
- // {
- // name: "hasPassword",
- // displayName: "Has Password",
- // property: "hasPassword",
- // filterTypes: ["contains", "exact", "regex"],
- // defaultFilterType: "contains"
- // },
- {
- name: "role",
- displayName: "Role",
- property: "role",
- filterTypes: ["array", "regex"],
- defaultFilterType: "array",
- filterValues: ["admin", "default"]
- },
- {
- name: "emailAddress",
- displayName: "Email Address",
- property: "email.address",
- filterTypes: ["contains", "exact", "regex"],
- defaultFilterType: "contains"
- },
- {
- name: "emailVerified",
- displayName: "Email Verified",
- property: "email.verified",
- filterTypes: ["contains", "exact", "regex"],
- defaultFilterType: "contains"
- },
- {
- name: "songsRequested",
- displayName: "Songs Requested",
- property: "statistics.songsRequested",
- filterTypes: [
- "numberLesser",
- "numberGreater",
- "numberEquals",
- "exact",
- "regex"
- ],
- defaultFilterType: "numberLesser"
- }
- ]
- }
- };
- },
- computed: {
- ...mapState("modalVisibility", {
- modals: state => state.modals
- }),
- ...mapGetters({
- socket: "websockets/getSocket"
- })
- },
- mounted() {
- if (this.$route.query.userId) this.edit(this.$route.query.userId);
- // ws.onConnect(this.init);
- // this.socket.on("event:admin.dataRequests.created", res =>
- // this.dataRequests.push(res.data.request)
- // );
- // this.socket.on("event:admin.dataRequests.resolved", res => {
- // this.dataRequests = this.dataRequests.filter(
- // request => request._id !== res.data.dataRequestId
- // );
- // });
- // this.socket.on("event:user.removed", res => {
- // this.users = this.users.filter(
- // user => user._id !== res.data.userId
- // );
- // });
- },
- methods: {
- edit(userId) {
- this.editingUserId = userId;
- this.openModal("editUser");
- },
- // init() {
- // this.socket.dispatch("apis.joinAdminRoom", "users", () => {});
- // },
- resolveDataRequest(id) {
- this.socket.dispatch("dataRequests.resolve", id, res => {
- if (res.status === "success") new Toast(res.message);
- });
- },
- ...mapActions("modalVisibility", ["openModal"])
- }
- };
- </script>
- <style lang="scss" scoped>
- #page-title {
- margin: 30px 0;
- }
- h2 {
- font-size: 30px;
- text-align: center;
- @media only screen and (min-width: 700px) {
- font-size: 35px;
- }
- }
- .profile-picture {
- max-width: 50px !important;
- max-height: 50px !important;
- }
- /deep/ .profile-picture.using-initials span {
- font-size: 20px; // 2/5th of .profile-picture height/width
- }
- </style>
|