mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-21 23:37:55 +00:00
50 lines
1.5 KiB
JavaScript
50 lines
1.5 KiB
JavaScript
import selectDropdown from '@baserow/modules/database/mixins/selectDropdown'
|
|
import availableCollaborators from '@baserow/modules/database/mixins/availableCollaborators'
|
|
|
|
export default {
|
|
mixins: [selectDropdown, availableCollaborators],
|
|
methods: {
|
|
/**
|
|
* Removes the provided ID from the current values list and emits an update
|
|
* event with the new values list.
|
|
*/
|
|
removeValue(event, currentValues, itemIdToRemove) {
|
|
const vals = currentValues.filter((item) => item.id !== itemIdToRemove)
|
|
this.$emit('update', vals, currentValues)
|
|
},
|
|
/**
|
|
* Checks if the new value is valid for the field and if
|
|
* so will add it to a new values list. If this new list of values is unequal
|
|
* to the old list of values an update event will be emitted which will result
|
|
* in an API call in order to persist the new value to the field.
|
|
*/
|
|
updateValue(newId, oldValue) {
|
|
if (!oldValue) {
|
|
oldValue = []
|
|
}
|
|
|
|
const workspaceUser =
|
|
this.workspaceCollaborators.find(
|
|
(workspaceUser) => workspaceUser.user_id === newId
|
|
) || null
|
|
|
|
let newOption = null
|
|
if (workspaceUser) {
|
|
newOption = {
|
|
id: workspaceUser.user_id,
|
|
name: workspaceUser.name,
|
|
}
|
|
}
|
|
|
|
const newValue = [...oldValue]
|
|
if (newOption) {
|
|
newValue.push(newOption)
|
|
}
|
|
|
|
if (JSON.stringify(newValue) !== JSON.stringify(oldValue)) {
|
|
this.$emit('update', newValue, oldValue)
|
|
}
|
|
},
|
|
},
|
|
}
|