users.vue 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. <style lang="scss" scoped>
  2. @import '~/assets/styles/_colors.scss';
  3. section { background-color: $backgroundLight1 !important; }
  4. section.hero div.hero-body {
  5. align-items: baseline;
  6. }
  7. div.search-container {
  8. display: flex;
  9. justify-content: center;
  10. }
  11. div.view-container {
  12. padding: 2rem;
  13. }
  14. div.album {
  15. display: flex;
  16. flex-wrap: wrap;
  17. margin-bottom: 10px;
  18. div.arrow-container {
  19. width: 2em;
  20. height: 64px;
  21. position: relative;
  22. cursor: pointer;
  23. i {
  24. border: 2px solid $defaultTextColor;
  25. border-right: 0;
  26. border-top: 0;
  27. display: block;
  28. height: 1em;
  29. position: absolute;
  30. transform: rotate(-135deg);
  31. transform-origin: center;
  32. width: 1em;
  33. z-index: 4;
  34. top: 22px;
  35. -webkit-transition: transform 0.1s linear;
  36. -moz-transition: transform 0.1s linear;
  37. -ms-transition: transform 0.1s linear;
  38. -o-transition: transform 0.1s linear;
  39. transition: transform 0.1s linear;
  40. &.active {
  41. transform: rotate(-45deg);
  42. }
  43. }
  44. }
  45. div.thumb {
  46. width: 64px;
  47. height: 64px;
  48. -webkit-box-shadow: $boxShadowLight;
  49. box-shadow: $boxShadowLight;
  50. }
  51. div.info {
  52. margin-left: 15px;
  53. h4 {
  54. font-size: 1.5rem;
  55. a {
  56. color: $defaultTextColor;
  57. font-weight: 400;
  58. &:hover { text-decoration: underline; }
  59. }
  60. }
  61. span { display: block; }
  62. span:nth-child(3) {
  63. font-size: 0.9rem;
  64. }
  65. }
  66. div.latest {
  67. flex-grow: 1;
  68. justify-content: flex-end;
  69. display: flex;
  70. margin-left: 15px;
  71. span.no-files {
  72. font-size: 1.5em;
  73. color: #b1b1b1;
  74. padding-top: 17px;
  75. }
  76. div.more {
  77. width: 64px;
  78. height: 64px;
  79. background: white;
  80. display: flex;
  81. align-items: center;
  82. padding: 10px;
  83. text-align: center;
  84. a {
  85. line-height: 1rem;
  86. color: $defaultTextColor;
  87. &:hover { text-decoration: underline; }
  88. }
  89. }
  90. }
  91. div.details {
  92. flex: 0 1 100%;
  93. padding-left: 2em;
  94. padding-top: 1em;
  95. min-height: 50px;
  96. .b-table {
  97. padding: 2em 0em;
  98. .table-wrapper {
  99. -webkit-box-shadow: $boxShadowLight;
  100. box-shadow: $boxShadowLight;
  101. }
  102. }
  103. }
  104. }
  105. div.column > h2.subtitle { padding-top: 1px; }
  106. </style>
  107. <style lang="scss">
  108. @import '~/assets/styles/_colors.scss';
  109. .b-table {
  110. .table-wrapper {
  111. -webkit-box-shadow: $boxShadowLight;
  112. box-shadow: $boxShadowLight;
  113. }
  114. }
  115. </style>
  116. <template>
  117. <section class="hero is-fullheight">
  118. <div class="hero-body">
  119. <div class="container">
  120. <div class="columns">
  121. <div class="column is-narrow">
  122. <Sidebar />
  123. </div>
  124. <div class="column">
  125. <h2 class="subtitle">Manage your users</h2>
  126. <hr>
  127. <div class="view-container">
  128. <b-table
  129. :data="users || []"
  130. :mobile-cards="true">
  131. <template slot-scope="props">
  132. <b-table-column field="id"
  133. label="Id"
  134. centered>
  135. {{ props.row.id }}
  136. </b-table-column>
  137. <b-table-column field="username"
  138. label="Username"
  139. centered>
  140. {{ props.row.username }}
  141. </b-table-column>
  142. <b-table-column field="enabled"
  143. label="Enabled"
  144. centered>
  145. <b-switch v-model="props.row.enabled"
  146. @input="changeEnabledStatus(props.row)" />
  147. </b-table-column>
  148. <b-table-column field="isAdmin"
  149. label="Admin"
  150. centered>
  151. <b-switch v-model="props.row.isAdmin"
  152. @input="changeIsAdmin(props.row)" />
  153. </b-table-column>
  154. </template>
  155. <template slot="empty">
  156. <div class="has-text-centered">
  157. <i class="icon-misc-mood-sad" />
  158. </div>
  159. <div class="has-text-centered">
  160. Nothing here
  161. </div>
  162. </template>
  163. <template slot="footer">
  164. <div class="has-text-right">
  165. {{ users.length }} users
  166. </div>
  167. </template>
  168. </b-table>
  169. </div>
  170. </div>
  171. </div>
  172. </div>
  173. </div>
  174. </section>
  175. </template>
  176. <script>
  177. import Sidebar from '../../components/sidebar/Sidebar.vue';
  178. export default {
  179. components: {
  180. Sidebar
  181. },
  182. data() {
  183. return {
  184. users: []
  185. };
  186. },
  187. computed: {
  188. config() {
  189. return this.$store.state.config;
  190. }
  191. },
  192. metaInfo() {
  193. return { title: 'Uploads' };
  194. },
  195. mounted() {
  196. this.getUsers();
  197. this.$ga.page({
  198. page: '/dashboard/users',
  199. title: 'Users',
  200. location: window.location.href
  201. });
  202. },
  203. methods: {
  204. async getUsers() {
  205. try {
  206. const response = await this.axios.get(`${this.config.baseURL}/admin/users`);
  207. this.users = response.data.users;
  208. console.log(this.users);
  209. } catch (error) {
  210. this.$onPromiseError(error);
  211. }
  212. },
  213. async changeEnabledStatus(row) {
  214. try {
  215. const response = await this.axios.post(`${this.config.baseURL}/admin/users/${row.enabled ? 'enable' : 'disable'}`, {
  216. id: row.id
  217. });
  218. this.$toast.open(response.data.message);
  219. } catch (error) {
  220. this.$onPromiseError(error);
  221. }
  222. },
  223. async changeIsAdmin(row) {
  224. try {
  225. const response = await this.axios.post(`${this.config.baseURL}/admin/users/${row.isAdmin ? 'promote' : 'demote'}`, {
  226. id: row.id
  227. });
  228. this.$toast.open(response.data.message);
  229. } catch (error) {
  230. this.$onPromiseError(error);
  231. }
  232. }
  233. }
  234. };
  235. </script>