Added array operations
This commit is contained in:
parent
77d458eb13
commit
6d0b2ccdf6
@ -22,11 +22,11 @@ component InputTags(id string, value []string, label string)
|
||||
.widget-section
|
||||
label(for=id)= label + ":"
|
||||
.tags(id=id)
|
||||
each tag in value
|
||||
for index, tag := range value
|
||||
.tag
|
||||
span.tag-title= tag
|
||||
.tag-remove.action(data-action="removeTag", data-trigger="click", data-tag=tag) x
|
||||
.tag-remove.action(data-action="arrayRemove", data-trigger="click", data-field=id, data-index=index) x
|
||||
|
||||
button.tag-add
|
||||
button.tag-add.action(data-action="arrayAppend", data-trigger="click", data-field=id)
|
||||
RawIcon("plus")
|
||||
|
@ -5,6 +5,7 @@ import (
|
||||
"fmt"
|
||||
"net/http"
|
||||
"reflect"
|
||||
"strconv"
|
||||
"strings"
|
||||
|
||||
"github.com/animenotifier/notify.moe/components"
|
||||
@ -88,9 +89,14 @@ func RenderField(b *bytes.Buffer, v *reflect.Value, field reflect.StructField, i
|
||||
arrayObj := fieldValue.Index(sliceIndex).Interface()
|
||||
arrayIDPrefix := fmt.Sprintf("%s[%d].", field.Name, sliceIndex)
|
||||
RenderObject(b, arrayObj, arrayIDPrefix)
|
||||
|
||||
// Remove button
|
||||
b.WriteString(`<div class="buttons"><button class="action" data-action="arrayRemove" data-trigger="click" data-field="` + field.Name + `" data-index="`)
|
||||
b.WriteString(strconv.Itoa(sliceIndex))
|
||||
b.WriteString(`">` + utils.RawIcon("trash") + `</button></div>`)
|
||||
}
|
||||
|
||||
b.WriteString(`<div class="buttons"><button>` + utils.Icon("plus") + `Add ` + field.Name + `</button></div>`)
|
||||
b.WriteString(`<div class="buttons"><button class="action" data-action="arrayAppend" data-trigger="click" data-field="` + field.Name + `">` + utils.Icon("plus") + `Add ` + field.Name + `</button></div>`)
|
||||
default:
|
||||
panic("No edit form implementation for " + idPrefix + field.Name + " with type " + field.Type.String())
|
||||
}
|
||||
|
@ -365,13 +365,26 @@ export function buyItem(arn: AnimeNotifier, button: HTMLElement) {
|
||||
.then(() => arn.loading(false))
|
||||
}
|
||||
|
||||
// Remove tag
|
||||
export function removeTag(arn: AnimeNotifier, element: HTMLElement) {
|
||||
let tag = element.dataset.tag
|
||||
// Append new element to array
|
||||
export function arrayAppend(arn: AnimeNotifier, element: HTMLElement) {
|
||||
let field = element.dataset.field
|
||||
let object = element.dataset.object ? JSON.parse(element.dataset.object) : {}
|
||||
let apiEndpoint = arn.findAPIEndpoint(element)
|
||||
|
||||
// arn.loading(true)
|
||||
arn.post(apiEndpoint + "/field/" + field + "/append", object)
|
||||
.then(() => arn.reloadContent())
|
||||
.catch(err => arn.statusMessage.showError(err))
|
||||
}
|
||||
|
||||
alert("Remove " + tag)
|
||||
// Remove element from array
|
||||
export function arrayRemove(arn: AnimeNotifier, element: HTMLElement) {
|
||||
let field = element.dataset.field
|
||||
let index = element.dataset.index
|
||||
let apiEndpoint = arn.findAPIEndpoint(element)
|
||||
|
||||
arn.post(apiEndpoint + "/field/" + field + "/remove/" + index, "")
|
||||
.then(() => arn.reloadContent())
|
||||
.catch(err => arn.statusMessage.showError(err))
|
||||
}
|
||||
|
||||
// Chrome extension installation
|
||||
|
Loading…
Reference in New Issue
Block a user