-
-
Notifications
You must be signed in to change notification settings - Fork 539
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Jack Sleight <jacksleight@gmail.com>
- Loading branch information
1 parent
89466b6
commit 089a76f
Showing
6 changed files
with
242 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
160 changes: 160 additions & 0 deletions
160
resources/js/components/field-actions/FieldActionModal.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,160 @@ | ||
<template> | ||
|
||
<div> | ||
<confirmation-modal | ||
:title="title" | ||
:danger="dangerous" | ||
:buttonText="buttonText" | ||
:busy="resolving || processing" | ||
@confirm="confirm" | ||
@cancel="cancel" | ||
> | ||
<div class="min-h-20"> | ||
|
||
<div v-if="confirmationText" v-text="confirmationText" :class="{ 'mb-4': warningText || showDirtyWarning || hasFields }" /> | ||
|
||
<div v-if="warningText" v-text="warningText" class="text-red-500" :class="{ 'mb-4': showDirtyWarning || hasFields }" /> | ||
|
||
<div v-if="showDirtyWarning" v-text="dirtyText" class="text-red-500" :class="{ 'mb-4': hasFields }" /> | ||
|
||
<publish-container | ||
v-if="hasFields && !resolving" | ||
name="confirm-action" | ||
:blueprint="fieldset" | ||
:values="values" | ||
:meta="meta" | ||
:errors="errors" | ||
@updated="values = $event" | ||
> | ||
<publish-fields | ||
slot-scope="{ setFieldValue, setFieldMeta }" | ||
:fields="fieldset.tabs[0].fields" | ||
@updated="setFieldValue" | ||
@meta-updated="setFieldMeta" | ||
/> | ||
</publish-container> | ||
|
||
</div> | ||
</confirmation-modal> | ||
</div> | ||
|
||
</template> | ||
|
||
<script> | ||
export default { | ||
props: { | ||
fields: { | ||
type: Object, | ||
}, | ||
title: { | ||
type: String, | ||
}, | ||
buttonText: { | ||
type: String, | ||
}, | ||
confirmationText: { | ||
type: String, | ||
}, | ||
warningText: { | ||
type: String, | ||
}, | ||
dirtyText: { | ||
type: String, | ||
}, | ||
dirtyWarningText: { | ||
type: String, | ||
}, | ||
dangerous: { | ||
type: Boolean, | ||
default: false, | ||
}, | ||
bypassesDirtyWarning: { | ||
type: Boolean, | ||
default: false, | ||
}, | ||
keepOpen: { | ||
type: Boolean, | ||
default: false, | ||
}, | ||
}, | ||
data() { | ||
return { | ||
resolving: this.hasFields, | ||
processing: false, | ||
fieldset: [], | ||
values: {}, | ||
meta: {}, | ||
error: null, | ||
errors: {}, | ||
isDirty: false, | ||
} | ||
}, | ||
mounted() { | ||
this.initialize() | ||
}, | ||
computed: { | ||
hasFields() { | ||
return Object.keys(this.fields).length > 0; | ||
}, | ||
showDirtyWarning() { | ||
return this.isDirty && this.dirtyWarningText && ! this.bypassesDirtyWarning; | ||
}, | ||
}, | ||
methods: { | ||
initialize() { | ||
if (!this.hasFields) { | ||
return; | ||
} | ||
this.resolving = true; | ||
this.$axios.post(cp_url(`field-action-modal/resolve`), { | ||
fields: this.fields, | ||
}).then(response => { | ||
this.fieldset = { tabs: [{ fields: response.data.fieldset }]}; | ||
this.values = response.data.values; | ||
this.meta = response.data.meta; | ||
this.resolving = false; | ||
}); | ||
}, | ||
confirm() { | ||
if (!this.hasFields) { | ||
return; | ||
} | ||
this.processing = true; | ||
this.$axios.post(cp_url('field-action-modal/process'), { | ||
fields: this.fields, | ||
values: this.values, | ||
}).then(response => { | ||
this.processing = this.keepOpen; | ||
this.$emit('confirm', response.data); | ||
}).catch(e => { | ||
this.processing = false; | ||
if (e.response && e.response.status === 422) { | ||
const { message, errors } = e.response.data; | ||
this.error = message; | ||
this.errors = errors; | ||
this.$toast.error(message); | ||
} else if (e.response) { | ||
this.$toast.error(e.response.data.message); | ||
} else { | ||
this.$toast.error(__('Something went wrong')); | ||
} | ||
}); | ||
}, | ||
cancel() { | ||
this.$emit('cancel') | ||
}, | ||
}, | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<?php | ||
|
||
namespace Statamic\Http\Controllers\CP; | ||
|
||
use Illuminate\Http\Request; | ||
use Statamic\Fields\Fields; | ||
|
||
class FieldActionModalController extends CpController | ||
{ | ||
public function resolve(Request $request) | ||
{ | ||
$fields = $this->getFields($request->fields) | ||
->preProcess(); | ||
|
||
return [ | ||
'fieldset' => $fields->toPublishArray(), | ||
'values' => $fields->values(), | ||
'meta' => $fields->meta(), | ||
]; | ||
} | ||
|
||
public function process(Request $request) | ||
{ | ||
$fields = $this->getFields($request->fields) | ||
->addValues($request->values); | ||
|
||
$fields->validate(); | ||
|
||
$raw = $fields->process()->values(); | ||
|
||
$fields->preProcess(); | ||
|
||
return [ | ||
'values' => $fields->values(), | ||
'meta' => $fields->meta(), | ||
'raw' => $raw, | ||
]; | ||
} | ||
|
||
protected function getFields($fieldItems) | ||
{ | ||
$fields = collect($fieldItems)->map(function ($field, $handle) { | ||
return compact('handle', 'field'); | ||
}); | ||
|
||
return new Fields($fields); | ||
} | ||
} |