Skip to content
Snippets Groups Projects
Commit f0fbfbab authored by Timothee P's avatar Timothee P :sunflower:
Browse files

WIP:testing partial_update -> bug feature disappear + bug page number missing first one

parent b07a51e7
No related branches found
No related tags found
No related merge requests found
...@@ -83,6 +83,7 @@ ...@@ -83,6 +83,7 @@
<!-- :class="['ui checkbox', {disabled: canDeleteFeature(feature)}]" --> <!-- :class="['ui checkbox', {disabled: canDeleteFeature(feature)}]" -->
<input <input
type="checkbox" type="checkbox"
@input="storeClickedFeature(feature)"
:id="feature.id" :id="feature.id"
:value="feature.id" :value="feature.id"
v-model="checked" v-model="checked"
...@@ -254,6 +255,7 @@ export default { ...@@ -254,6 +255,7 @@ export default {
props: [ props: [
"paginatedFeatures", "paginatedFeatures",
"checkedFeatures", "checkedFeatures",
"clickedFeatures",
"featuresCount", "featuresCount",
"pagination", "pagination",
"sort", "sort",
...@@ -311,6 +313,10 @@ export default { ...@@ -311,6 +313,10 @@ export default {
}, },
methods: { methods: {
storeClickedFeature(feature) {
this.clickedFeatures.push({feature_id: feature.id, feature_type: feature.properties.feature_type.slug})
},
canDeleteFeature(feature) { canDeleteFeature(feature) {
return feature.properties.creator.username !== this.user.username && return feature.properties.creator.username !== this.user.username &&
!this.user.is_superuser && !this.user.is_superuser &&
......
...@@ -62,6 +62,21 @@ const featureAPI = { ...@@ -62,6 +62,21 @@ const featureAPI = {
} }
}, },
async updateFeature({ feature_id, feature_type__slug, project__slug, newStatus }) {
let url = `${baseUrl}features/${feature_id}/?feature_type__slug=${feature_type__slug}&project__slug=${project__slug}`
const response = await axios({
url,
method: "PATCH",
data: { id: feature_id, status: newStatus, feature_type: feature_type__slug }
})
if (response.status === 200 && response.data) {
return response;
} else {
return null;
}
},
async postComment({ featureId, comment }) { async postComment({ featureId, comment }) {
const response = await axios.post( const response = await axios.post(
`${baseUrl}features/${featureId}/comments/`, { comment } `${baseUrl}features/${featureId}/comments/`, { comment }
......
...@@ -172,7 +172,6 @@ const feature = { ...@@ -172,7 +172,6 @@ const feature = {
SEND_FEATURE({ state, rootState, commit, dispatch }, routeName) { SEND_FEATURE({ state, rootState, commit, dispatch }, routeName) {
commit("DISPLAY_LOADER", "Le signalement est en cours de création", { root: true }) commit("DISPLAY_LOADER", "Le signalement est en cours de création", { root: true })
const message = routeName === "editer-signalement" ? "Le signalement a été mis à jour" : "Le signalement a été crée";
function redirect(featureId) { function redirect(featureId) {
dispatch( dispatch(
'GET_PROJECT_FEATURE', 'GET_PROJECT_FEATURE',
...@@ -188,7 +187,7 @@ const feature = { ...@@ -188,7 +187,7 @@ const feature = {
params: { params: {
slug_type_signal: rootState.feature_type.current_feature_type_slug, slug_type_signal: rootState.feature_type.current_feature_type_slug,
slug_signal: featureId, slug_signal: featureId,
message, message: routeName === "editer-signalement" ? "Le signalement a été mis à jour" : "Le signalement a été crée"
}, },
}); });
dispatch("GET_ALL_PROJECTS", null, {root:true}) //* & refresh project list dispatch("GET_ALL_PROJECTS", null, {root:true}) //* & refresh project list
...@@ -201,30 +200,32 @@ const feature = { ...@@ -201,30 +200,32 @@ const feature = {
redirect(featureId); redirect(featureId);
} }
//* prepare feature data to send function createGeojson() { //* prepare feature data to send
let extraFormObject = {}; //* prepare an object to be flatten in properties of geojson let extraFormObject = {}; //* prepare an object to be flatten in properties of geojson
for (const field of state.extra_form) { for (const field of state.extra_form) {
extraFormObject[field.name] = field.value; extraFormObject[field.name] = field.value;
} }
const geojson = { return {
"id": state.form.feature_id, "id": state.form.feature_id,
"type": "Feature", "type": "Feature",
"geometry": state.form.geometry, "geometry": state.form.geometry,
"properties": { "properties": {
"title": state.form.title, "title": state.form.title,
"description": state.form.description.value, "description": state.form.description.value,
"status": state.form.status.value, "status": state.form.status.value,
"project": rootState.project_slug, "project": rootState.project_slug,
"feature_type": rootState.feature_type.current_feature_type_slug, "feature_type": rootState.feature_type.current_feature_type_slug,
...extraFormObject ...extraFormObject
}
} }
} }
const geojson = createGeojson();
let url = `${rootState.configuration.VUE_APP_DJANGO_API_BASE}features/` let url = `${rootState.configuration.VUE_APP_DJANGO_API_BASE}features/`
if (routeName === "editer-signalement") { if (routeName === "editer-signalement") {
url += `${state.form.feature_id}/?` + url += `${state.form.feature_id}/?
`feature_type__slug=${rootState.feature_type.current_feature_type_slug}` + feature_type__slug=${rootState.feature_type.current_feature_type_slug}
`&project__slug=${rootState.project_slug}` &project__slug=${rootState.project_slug}`
} }
return axios({ return axios({
......
...@@ -164,12 +164,14 @@ ...@@ -164,12 +164,14 @@
<SidebarLayers v-if="basemaps && map" /> <SidebarLayers v-if="basemaps && map" />
</div> </div>
<!-- | --> <!-- | -->
<!-- v-on:update:clickedFeatures="handleClickedFeatures" -->
<FeatureListTable <FeatureListTable
v-show="!showMap" v-show="!showMap"
v-on:update:page="handlePageChange" v-on:update:page="handlePageChange"
v-on:update:sort="handleSortChange" v-on:update:sort="handleSortChange"
:paginatedFeatures="paginatedFeatures" :paginatedFeatures="paginatedFeatures"
:checkedFeatures.sync="checkedFeatures" :checkedFeatures.sync="checkedFeatures"
:clickedFeatures.sync="clickedFeatures"
:featuresCount="featuresCount" :featuresCount="featuresCount"
:pagination="pagination" :pagination="pagination"
:sort="sort" :sort="sort"
...@@ -256,6 +258,7 @@ export default { ...@@ -256,6 +258,7 @@ export default {
title: null, title: null,
}, },
baseUrl: this.$store.state.configuration.BASE_URL, baseUrl: this.$store.state.configuration.BASE_URL,
clickedFeatures: [],
modalAllDeleteOpen: false, modalAllDeleteOpen: false,
map: null, map: null,
zoom: null, zoom: null,
...@@ -351,10 +354,8 @@ export default { ...@@ -351,10 +354,8 @@ export default {
); );
}, },
availableStatus() { availableStatus() { //* attente de réponse sur le ticket
return this.statusChoices.filter((status) => status) return this.statusChoices.filter((status) => status)
}, },
featureTypeChoices() { featureTypeChoices() {
...@@ -364,7 +365,8 @@ export default { ...@@ -364,7 +365,8 @@ export default {
methods: { methods: {
...mapActions('feature', [ ...mapActions('feature', [
'GET_PROJECT_FEATURES' 'GET_PROJECT_FEATURES',
'SEND_FEATURE'
]), ]),
toggleAddFeature() { toggleAddFeature() {
...@@ -382,18 +384,27 @@ export default { ...@@ -382,18 +384,27 @@ export default {
}, },
clickOutsideDropdown(e) { clickOutsideDropdown(e) {
if (!e.target.closest('#button-dropdown')) if (!e.target.closest("#button-dropdown")) {
this.showModifyStatus = false; this.showModifyStatus = false;
this.showAddFeature = false; setTimeout(() => { //* timout necessary to give time to click on link to add feature
this.showAddFeature = false;
}, 500);
}
}, },
modifyStatus(newValue) { modifyStatus(newStatus) {
console.log("newValue", newValue) console.log("newStatus", newStatus)
this.checkedFeatures.forEach((feature_id) => {
let feature_type__slug = this.clickedFeatures.find((el) => el.feature_id === feature_id).feature_type
console.log("feature_type__slug", feature_type__slug)
featureAPI.updateFeature({feature_id, feature_type__slug, project__slug: this.$route.params.slug, newStatus})
})
}, },
deleteFeature(feature_id) { deleteFeature(feature_id) {
const url = `${this.API_BASE_URL}features/${feature_id}/?project__slug=${this.project.slug}`; const url = `${this.API_BASE_URL}features/${feature_id}/?project__slug=${this.project.slug}`;
axios axios //TODO: REFACTO -> Delete function already exist in store
.delete(url, {}) .delete(url, {})
.then(() => { .then(() => {
if (!this.modalAllDeleteOpen) { if (!this.modalAllDeleteOpen) {
...@@ -415,8 +426,8 @@ export default { ...@@ -415,8 +426,8 @@ export default {
deleteAllFeatureSelection() { deleteAllFeatureSelection() {
let feature = {}; let feature = {};
this.checkedFeatures.forEach((feature_id) => { this.checkedFeatures.forEach((feature_id) => {
feature = { feature_id: feature_id }; feature = { feature_id: feature_id }; // ? Is this usefull ?
this.deleteFeature(feature.feature_id); this.deleteFeature(feature.feature_id); //? since property feature_id is directly used after...
}); });
this.modalAllDelete(); this.modalAllDelete();
}, },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment