crudview

package
v0.0.15 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 17, 2026 License: MIT Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func GenerateCSS

func GenerateCSS() *Stylesheet

func IconSvg

func IconSvg() *sprite.Sprite

IconSvg returns the sprite with the captured Pa100T icons. Captured paths from Pa100T v3.0.1 (base64 SVGs in IE_MODULE_CONTENT.md §2).

Types

type Config added in v0.0.11

type Config struct {
	// ParentID is the DOM id the form mounts under.
	ParentID string
	// Presenter is built by the module via view.New(...). Required.
	Presenter view.Presenter
}

Config is what a renderer needs to draw a view.Presenter — nothing about ops, transport, or codec: that is ALL inside the Presenter already. The module builds the Presenter via view.New(...) (importing view+model+router, never layout) and hands it here.

type CrudView

type CrudView struct {
	Element // value embed — NEVER *dom.Element

	Title     string
	Form      Component
	Presenter view.Presenter

	OnSelect func(it view.Item)
	OnNew    func()
	OnSave   func(done func(err error))
	OnDelete func(id string, done func(err error))
	OnCancel func()

	SearchPlaceholder string
	// contains filtered or unexported fields
}

func New added in v0.0.11

func New(cfg Config) (*CrudView, error)

New builds the renderer around an already-constructed Presenter. It generates the form from Presenter.Record().Schema(), and wires save/delete to sync the form INTO Record() before calling Presenter.Save/Delete — crudview never talks to a Caller directly anymore.

func (*CrudView) Init

func (v *CrudView) Init(ctx Ctx)

func (*CrudView) Reload

func (v *CrudView) Reload() error

func (*CrudView) Render

func (v *CrudView) Render() *Element

func (*CrudView) Select

func (v *CrudView) Select(id string)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL