2022-06-27 18:52:48 +02:00
|
|
|
class CCPOutputWidgetEditorController extends HTMLElement {
|
|
|
|
|
|
|
|
#output = null
|
|
|
|
#index = null
|
|
|
|
#type = null
|
|
|
|
|
|
|
|
#delete_icon = `
|
|
|
|
<svg style="width:24px;height:24px;pointer-events: none;" viewBox="0 0 24 24">
|
|
|
|
<path d="M19,4H15.5L14.5,3H9.5L8.5,4H5V6H19M6,19A2,2 0 0,0 8,21H16A2,2 0 0,0 18,19V7H6V19Z" />
|
|
|
|
</svg>
|
|
|
|
`
|
|
|
|
|
|
|
|
constructor(){
|
|
|
|
super()
|
|
|
|
}
|
|
|
|
|
|
|
|
connectedCallback(controller){
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
get index(){
|
|
|
|
return this.#index
|
|
|
|
}
|
|
|
|
|
|
|
|
render(output, i){
|
|
|
|
this.#index = i
|
|
|
|
this.#output = output
|
|
|
|
this.#type = output.schema.enum ? "enum" : "string"
|
|
|
|
this.innerHTML = `
|
|
|
|
<details>
|
|
|
|
<summary class="mb-3">
|
2022-07-18 18:08:53 +02:00
|
|
|
<input class="form-control" style="width:auto;display:inline" required="required" name="id" value="${this.#output.id}" title="Id of output"/>
|
2022-06-27 18:52:48 +02:00
|
|
|
<button data-index="${this.#index}" name="delete-output" title="Delete" class="btn btn-danger ccp-toolbar-button">
|
|
|
|
${this.#delete_icon}
|
|
|
|
</button>
|
|
|
|
</summary>
|
|
|
|
<div style="padding-left: 1rem;border-left: 1px solid gray;">
|
|
|
|
<div class="row mb-3">
|
|
|
|
<div class="col">
|
2022-07-18 18:08:53 +02:00
|
|
|
<div class="form-field" title="Title">
|
2022-06-27 18:52:48 +02:00
|
|
|
<input name="title" class="form-control" placeholder="title" value="${this.#output.title}" required="required"/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="mb-3">
|
2022-07-18 18:08:53 +02:00
|
|
|
<div class="form-field" title="Description">
|
2023-12-13 19:17:04 +01:00
|
|
|
<textarea rows="1" name="description" class="form-control" placeholder="description" required="required">${this.#output.description}</textarea>
|
2022-06-27 18:52:48 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row mb-3">
|
|
|
|
<div class="col">
|
2022-07-18 18:08:53 +02:00
|
|
|
<div class="form-field" title="Mininum cardinality">
|
2022-06-27 18:52:48 +02:00
|
|
|
<input value="${this.#output.minOccurs}" type="number" min="0" step="1" name="minOccurs" class="form-control" placeholder="minOccurs"/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col">
|
2022-07-18 18:08:53 +02:00
|
|
|
<div class="form-field" title="Maximum cardinality">
|
2022-06-27 18:52:48 +02:00
|
|
|
<input value="${this.#output.maxOccurs}" type="number" min="0" step="1" name="maxOccurs" class="form-control" placeholder="maxOccurs"/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row mb-3">
|
|
|
|
<div class="col-3">
|
2022-07-18 18:08:53 +02:00
|
|
|
<div class="form-field" title="Type">
|
2022-06-27 18:52:48 +02:00
|
|
|
<select name="type" class="form-control" placeholder="type">
|
|
|
|
<option value="string">String</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-09-13 15:12:26 +02:00
|
|
|
<div class="col-3">
|
2022-07-18 18:08:53 +02:00
|
|
|
<div class="form-field" title="Mime type">
|
2022-06-27 18:52:48 +02:00
|
|
|
<input value="${this.#output.schema.contentMediaType}" name="contentMediaType" class="form-control" placeholder="mime"/>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-09-13 15:12:26 +02:00
|
|
|
${this.renderMetadata()}
|
2022-06-27 18:52:48 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</details>
|
|
|
|
`
|
2022-09-13 15:12:26 +02:00
|
|
|
|
|
|
|
this.addEventListener("input", ev=>{
|
|
|
|
const val = ev.target.value
|
|
|
|
const ename = ev.target.getAttribute("name")
|
|
|
|
if(ename === "id"){
|
|
|
|
this.#output.id = val
|
|
|
|
}
|
|
|
|
else if(ename === "title"){
|
|
|
|
this.#output.title = val
|
|
|
|
}
|
|
|
|
else if(ename === "description"){
|
|
|
|
this.#output.description = val
|
|
|
|
}
|
|
|
|
else if(ename === "minOccurs"){
|
|
|
|
this.#output.minOccurs = val
|
|
|
|
}
|
|
|
|
else if(ename === "maxOccurs"){
|
|
|
|
this.#output.maxOccurs = val
|
|
|
|
}
|
|
|
|
else if(ename === "contentMediaType"){
|
|
|
|
this.#output.schema.contentMediaType = val
|
|
|
|
}
|
|
|
|
else if(ename === "href"){
|
|
|
|
this.#output.metadata[0].href = val
|
|
|
|
this.#output.metadata[0].title = val
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
renderMetadata(output){
|
|
|
|
if(this.#output.metadata && this.#output.metadata.length > 0){
|
|
|
|
return `
|
|
|
|
<div class="col">
|
|
|
|
<div class="form-field" title="File path">
|
2023-05-23 19:55:04 +02:00
|
|
|
<input value="${this.#output.metadata[0].href}" name="href" class="form-control" placeholder="file path"/>
|
2022-09-13 15:12:26 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
`
|
|
|
|
}else return ""
|
|
|
|
|
2022-06-27 18:52:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
window.customElements.define('d4s-ccp-output-editor', CCPOutputWidgetEditorController);
|