mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
272 lines
7.7 KiB
Vue
272 lines
7.7 KiB
Vue
<template>
|
|
<div>
|
|
<div v-if="update">add: slug, location, tiptap editor in description</div>
|
|
<ds-container>
|
|
<ds-form
|
|
class="group-form"
|
|
ref="groupForm"
|
|
v-model="formData"
|
|
:schema="formSchema"
|
|
@submit="submit"
|
|
>
|
|
<ds-input
|
|
v-model="formData.name"
|
|
:label="$t('group.groupName')"
|
|
:placeholder="`${$t('group.groupName')}…`"
|
|
></ds-input>
|
|
|
|
<ds-input
|
|
v-if="update"
|
|
v-model="formData.slug"
|
|
:label="$t('users.table.columns.slug')"
|
|
:placeholder="`${$t('group.groupName')}…`"
|
|
></ds-input>
|
|
|
|
<ds-select
|
|
icon="user"
|
|
v-model="formData.groupType"
|
|
:label="$t('group.type')"
|
|
:options="['public', 'closed', 'hidden']"
|
|
placeholder="Status ..."
|
|
></ds-select>
|
|
|
|
<ds-input
|
|
v-model="formData.about"
|
|
:label="$t('group.goal')"
|
|
rows="3"
|
|
></ds-input>
|
|
|
|
<ds-input
|
|
v-model="formData.description"
|
|
:label="$t('group.description')"
|
|
type="textarea"
|
|
rows="3"
|
|
></ds-input>
|
|
<ds-space margin-top="large">
|
|
<ds-select
|
|
id="city"
|
|
v-model="formData.locationName"
|
|
icon="map-marker"
|
|
:options="cities"
|
|
:label="$t('settings.data.labelCity')"
|
|
:placeholder="$t('settings.data.labelCity')"
|
|
:loading="loadingGeo"
|
|
@input.native="handleCityInput"
|
|
/>
|
|
</ds-space>
|
|
<ds-space margin-top="large">
|
|
<ds-select
|
|
icon="card"
|
|
v-model="formData.actionRadius"
|
|
:label="$t('group.actionRadius')"
|
|
:options="['regional', 'national', 'continental', 'global']"
|
|
:placeholder="`${$t('group.actionRadius')} …`"
|
|
></ds-select>
|
|
</ds-space>
|
|
<ds-space margin-top="large">
|
|
<categories-select
|
|
v-if="categoriesActive"
|
|
model="categoryIds"
|
|
:existingCategoryIds="formData.categoryIds"
|
|
/>
|
|
</ds-space>
|
|
<ds-space margin-top="large">
|
|
<ds-button @click.prevent="reset()">{{ $t('group.reset-form') }}</ds-button>
|
|
<ds-button
|
|
type="submit"
|
|
@click.prevent="submit()"
|
|
icon="save"
|
|
:disabled="update ? submitDisableEdit : submitDisable"
|
|
primary
|
|
>
|
|
{{ update ? $t('group.update') : $t('group.save') }}
|
|
</ds-button>
|
|
</ds-space>
|
|
</ds-form>
|
|
<ds-space centered v-show="!update">
|
|
<nuxt-link to="/my-groups">{{ $t('group.back') }}</nuxt-link>
|
|
</ds-space>
|
|
</ds-container>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import CategoriesSelect from '~/components/CategoriesSelect/CategoriesSelect'
|
|
import { CATEGORIES_MIN, CATEGORIES_MAX } from '~/constants/categories.js'
|
|
import { NAME_LENGTH_MIN, NAME_LENGTH_MAX } from '~/constants/groups.js'
|
|
import { queryLocations } from '~/graphql/location'
|
|
|
|
let timeout
|
|
|
|
export default {
|
|
name: 'GroupForm',
|
|
components: {
|
|
CategoriesSelect,
|
|
},
|
|
props: {
|
|
update: {
|
|
type: Boolean,
|
|
required: false,
|
|
default: false,
|
|
},
|
|
group: {
|
|
type: Object,
|
|
required: false,
|
|
default: () => ({}),
|
|
},
|
|
},
|
|
data() {
|
|
const { name, slug, groupType, about, description, actionRadius, locationName, categories } =
|
|
this.group
|
|
return {
|
|
categoriesActive: this.$env.CATEGORIES_ACTIVE,
|
|
disabled: false,
|
|
loadingGeo: false,
|
|
cities: [],
|
|
formData: {
|
|
name: name || '',
|
|
slug: slug || '',
|
|
groupType: groupType || '',
|
|
about: about || '',
|
|
description: description || '',
|
|
locationName: locationName || '',
|
|
actionRadius: actionRadius || '',
|
|
categoryIds: categories ? categories.map((category) => category.id) : [],
|
|
},
|
|
formSchema: {
|
|
name: { required: true, min: NAME_LENGTH_MIN, max: NAME_LENGTH_MAX },
|
|
slug: { required: false },
|
|
groupType: { required: true },
|
|
about: { required: true },
|
|
description: { required: true },
|
|
actionRadius: { required: true },
|
|
locationName: { required: false },
|
|
categoryIds: {
|
|
type: 'array',
|
|
required: this.categoriesActive,
|
|
validator: (_, value = []) => {
|
|
if (
|
|
this.categoriesActive &&
|
|
(value.length < CATEGORIES_MIN || value.length > CATEGORIES_MAX)
|
|
) {
|
|
return [new Error(this.$t('common.validations.categories'))]
|
|
}
|
|
return []
|
|
},
|
|
},
|
|
},
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
submit() {
|
|
const { name, about, description, groupType, actionRadius, locationName, categoryIds } =
|
|
this.formData
|
|
const variables = {
|
|
name,
|
|
about,
|
|
description,
|
|
groupType,
|
|
actionRadius,
|
|
locationName: locationName.label,
|
|
categoryIds,
|
|
}
|
|
this.update
|
|
? this.$emit('updateGroup', {
|
|
...variables,
|
|
id: this.group.id,
|
|
})
|
|
: this.$emit('createGroup', variables)
|
|
},
|
|
handleCityInput(value) {
|
|
clearTimeout(timeout)
|
|
timeout = setTimeout(() => this.requestGeoData(value), 500)
|
|
},
|
|
processLocationsResult(places) {
|
|
if (!places.length) {
|
|
return []
|
|
}
|
|
const result = []
|
|
places.forEach((place) => {
|
|
result.push({
|
|
label: place.place_name,
|
|
value: place.place_name,
|
|
id: place.id,
|
|
})
|
|
})
|
|
|
|
return result
|
|
},
|
|
async requestGeoData(e) {
|
|
const value = e.target ? e.target.value.trim() : ''
|
|
if (value === '') {
|
|
this.cities = []
|
|
return
|
|
}
|
|
this.loadingGeo = true
|
|
|
|
const place = encodeURIComponent(value)
|
|
const lang = this.$i18n.locale()
|
|
|
|
const {
|
|
data: { queryLocations: res },
|
|
} = await this.$apollo.query({ query: queryLocations(), variables: { place, lang } })
|
|
|
|
this.cities = this.processLocationsResult(res)
|
|
this.loadingGeo = false
|
|
},
|
|
reset() {
|
|
alert('reset')
|
|
},
|
|
},
|
|
computed: {
|
|
submitDisable() {
|
|
if (
|
|
this.formData.name !== '' &&
|
|
this.formData.groupType !== '' &&
|
|
this.formData.about !== '' &&
|
|
this.formData.description !== '' &&
|
|
this.formData.actionRadius !== '' &&
|
|
this.formData.locationName !== '' &&
|
|
this.formData.categoryIds.length > 0
|
|
) {
|
|
return false
|
|
}
|
|
return true
|
|
},
|
|
submitDisableEdit() {
|
|
if (
|
|
this.formData.name !== this.group.name ||
|
|
this.formData.groupType !== this.group.groupType ||
|
|
this.formData.about !== this.group.about ||
|
|
this.formData.description !== this.group.description ||
|
|
this.formData.actionRadius !== this.group.actionRadius ||
|
|
this.formData.locationName !== this.group.locationName ||
|
|
this.formData.categoryIds.length === 0 ||
|
|
!this.sameCategories
|
|
) {
|
|
return false
|
|
}
|
|
return true
|
|
},
|
|
sameCategories() {
|
|
const formDataCategories = this.formData.categoryIds.map((categoryIds) => categoryIds)
|
|
const groupDataCategories = this.group.categories.map((category) => category.id)
|
|
let result
|
|
let each = true
|
|
|
|
if (formDataCategories.length !== groupDataCategories.length) return false
|
|
|
|
if (JSON.stringify(formDataCategories) !== JSON.stringify(groupDataCategories)) {
|
|
formDataCategories.forEach((element) => {
|
|
result = groupDataCategories.filter((groupCategorieId) => groupCategorieId === element)
|
|
if (result.length === 0) each = false
|
|
})
|
|
return each
|
|
}
|
|
return true
|
|
},
|
|
},
|
|
}
|
|
</script>
|