koel/resources/assets/js/stores/user.ts

126 lines
2.9 KiB
TypeScript
Raw Normal View History

2022-04-15 14:24:30 +00:00
import { without } from 'lodash'
import md5 from 'blueimp-md5'
import { http } from '@/services'
import stub from '@/stubs/user'
2022-04-15 17:00:08 +00:00
import { reactive } from 'vue'
2022-04-15 14:24:30 +00:00
export interface UpdateCurrentProfileData {
2022-04-21 22:51:48 +00:00
current_password: string | null
2022-04-15 14:24:30 +00:00
name: string
email: string
new_password?: string
}
interface UserFormData {
name: string
email: string
is_admin: boolean
}
export interface CreateUserData extends UserFormData {
password: string
}
export interface UpdateUserData extends UserFormData {
password?: string
}
export const userStore = {
2022-04-15 17:00:08 +00:00
state: reactive({
2022-04-15 14:24:30 +00:00
users: [] as User[],
current: stub
2022-04-15 17:00:08 +00:00
}),
2022-04-15 14:24:30 +00:00
2022-04-21 22:51:48 +00:00
init (users: User[], currentUser: User) {
2022-04-15 14:24:30 +00:00
this.all = users
this.current = currentUser
// Set the avatar for each of the users…
this.all.forEach(user => this.setAvatar(user))
// …and the current user as well.
this.setAvatar()
},
2022-04-21 22:51:48 +00:00
get all () {
2022-04-15 14:24:30 +00:00
return this.state.users
},
set all (value: User[]) {
this.state.users = value
},
2022-04-21 22:51:48 +00:00
byId (id: number) {
return this.all.find(user => user.id === id)
2022-04-15 14:24:30 +00:00
},
get current () {
return this.state.current
},
set current (user: User) {
this.state.current = user
},
/**
* Set a user's avatar using Gravatar's service.
*
* @param {?User} user The user. If null, the current user.
*/
2022-04-21 22:51:48 +00:00
setAvatar (user?: User) {
2022-04-15 14:24:30 +00:00
user = user || this.current
user.avatar = `https://www.gravatar.com/avatar/${md5(user.email)}?s=256&d=mp`
},
2022-04-21 22:51:48 +00:00
login: async (email: string, password: string) => await http.post<User>('me', { email, password }),
logout: async () => await http.delete('me'),
getProfile: async () => await http.get<User>('me'),
2022-04-15 14:24:30 +00:00
2022-04-21 22:51:48 +00:00
async updateProfile (data: UpdateCurrentProfileData) {
2022-04-15 14:24:30 +00:00
await http.put('me', data)
this.current.name = data.name
this.current.email = data.email
this.setAvatar()
},
2022-04-21 22:51:48 +00:00
async store (data: CreateUserData) {
2022-04-15 14:24:30 +00:00
const user = await http.post<User>('user', data)
this.setAvatar(user)
this.all.unshift(user)
return user
},
2022-04-21 22:51:48 +00:00
async update (user: User, data: UpdateUserData) {
2022-04-15 14:24:30 +00:00
await http.put(`user/${user.id}`, data)
this.setAvatar(user)
;[user.name, user.email, user.is_admin] = [data.name, data.email, data.is_admin]
},
2022-04-21 22:51:48 +00:00
async destroy (user: User) {
2022-04-15 14:24:30 +00:00
await http.delete(`user/${user.id}`)
this.all = without(this.all, user)
// Mama, just killed a man
// Put a gun against his head
// Pulled my trigger, now he's dead
// Mama, life had just begun
// But now I've gone and thrown it all away
// Mama, oooh
// Didn't mean to make you cry
// If I'm not back again this time tomorrow
// Carry on, carry on, as if nothing really matters
//
// Too late, my time has come
// Sends shivers down my spine
// Body's aching all the time
// Goodbye everybody - I've got to go
// Gotta leave you all behind and face the truth
// Mama, oooh
// I don't want to die
// I sometimes wish I'd never been born at all
}
}