WIP: Implement Admin CRUD
This commit is contained in:
@@ -3,8 +3,8 @@ import { Controller } from '@hotwired/stimulus'
|
||||
export default class extends Controller {
|
||||
static targets = [ 'form', 'title', 'content' ]
|
||||
|
||||
show({ action, title, content }) {
|
||||
this.formTarget.action = action
|
||||
show({ targetUrl, title, content }) {
|
||||
this.formTarget.action = targetUrl
|
||||
this.titleTarget.innerText = title
|
||||
this.contentTarget.innerHTML = content
|
||||
this.element.classList.remove('hidden')
|
||||
|
||||
@@ -3,18 +3,11 @@ import { Controller } from '@hotwired/stimulus'
|
||||
export default class extends Controller {
|
||||
static outlets = [ 'confirmation-modal', 'ajax-modal' ]
|
||||
|
||||
confirmation({ params: { title, action, content } }) {
|
||||
this.confirmationModalOutlet.show({
|
||||
title: title,
|
||||
action: action,
|
||||
content: content,
|
||||
})
|
||||
confirmation({ params: { title, targetUrl, content } }) {
|
||||
this.confirmationModalOutlet.show({ title, targetUrl, content })
|
||||
}
|
||||
|
||||
ajax({ params: { title, url } }) {
|
||||
this.ajaxModalOutlet.show({
|
||||
title: title,
|
||||
url: url,
|
||||
})
|
||||
this.ajaxModalOutlet.show({ title, url })
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user