types

package
v1.1.601 Latest Latest
Warning

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

Go to latest
Published: Jan 6, 2020 License: Apache-2.0 Imports: 15 Imported by: 0

Documentation

Index

Constants

View Source
const DefaultPageSize = 10

Variables

View Source
var DefaultPageSizeList = []int{10, 20, 30, 50, 100}
View Source
var JoinFieldValueDelimiter = utils.Uuid(8)

Functions

func AddGlobalDisplayProcessFn added in v1.1.4

func AddGlobalDisplayProcessFn(f DisplayProcessFn)

Types

type Action added in v1.1.4

type Action interface {
	Js() template.JS
	BtnAttribute() template.HTML
	ExtContent() template.HTML
	SetBtnId(btnId string)
}

type AlertAttribute

type AlertAttribute interface {
	SetTheme(value string) AlertAttribute
	SetTitle(value template.HTML) AlertAttribute
	SetContent(value template.HTML) AlertAttribute
	GetContent() template.HTML
}

type Attribute

type Attribute struct {
	TemplateList map[string]string
}

Attribute is the component interface of template. Every component of template should implement it.

type BoxAttribute

type BoxAttribute interface {
	SetHeader(value template.HTML) BoxAttribute
	SetBody(value template.HTML) BoxAttribute
	SetNoPadding() BoxAttribute
	SetFooter(value template.HTML) BoxAttribute
	SetTitle(value template.HTML) BoxAttribute
	WithHeadBorder() BoxAttribute
	SetHeadColor(value string) BoxAttribute
	SetTheme(value string) BoxAttribute
	SetSecondHeader(value template.HTML) BoxAttribute
	SetSecondHeadColor(value string) BoxAttribute
	WithSecondHeadBorder() BoxAttribute
	SetSecondHeaderClass(value string) BoxAttribute
	GetContent() template.HTML
}

type Button added in v1.1.4

type Button struct {
	Id        string
	Title     template.HTML
	Color     template.HTML
	TextColor template.HTML
	Action    Action
	Icon      string
}

func (Button) Content added in v1.1.4

func (b Button) Content() (template.HTML, template.JS)

type ButtonAttribute added in v1.1.4

type ButtonAttribute interface {
	SetContent(value template.HTML) ButtonAttribute
	SetOrientationRight() ButtonAttribute
	SetOrientationLeft() ButtonAttribute
	SetMarginLeft(int) ButtonAttribute
	SetMarginRight(int) ButtonAttribute
	SetThemePrimary() ButtonAttribute
	SetSmallSize() ButtonAttribute
	SetMiddleSize() ButtonAttribute
	SetHref(string) ButtonAttribute
	SetThemeWarning() ButtonAttribute
	SetTheme(value string) ButtonAttribute
	SetLoadingText(value template.HTML) ButtonAttribute
	SetThemeDefault() ButtonAttribute
	SetType(string) ButtonAttribute
	GetContent() template.HTML
}

type Buttons added in v1.1.4

type Buttons []Button

func (Buttons) Content added in v1.1.4

func (b Buttons) Content() (template.HTML, template.JS)

type ColAttribute

type ColAttribute interface {
	SetSize(value map[string]string) ColAttribute
	SetContent(value template.HTML) ColAttribute
	AddContent(value template.HTML) ColAttribute
	GetContent() template.HTML
}

type DataTableAttribute

type DataTableAttribute interface {
	GetDataTableHeader() template.HTML
	SetThead(value []map[string]string) DataTableAttribute
	SetInfoList(value []map[string]template.HTML) DataTableAttribute
	SetEditUrl(value string) DataTableAttribute
	SetDeleteUrl(value string) DataTableAttribute
	SetNewUrl(value string) DataTableAttribute
	SetPrimaryKey(value string) DataTableAttribute
	SetAction(action template.HTML) DataTableAttribute
	SetIsTab(value bool) DataTableAttribute
	SetButtons(btns template.HTML) DataTableAttribute
	SetHideFilterArea(value bool) DataTableAttribute
	SetHideRowSelector(value bool) DataTableAttribute
	SetActionJs(aj template.JS) DataTableAttribute
	SetInfoUrl(value string) DataTableAttribute
	SetDetailUrl(value string) DataTableAttribute
	SetHasFilter(hasFilter bool) DataTableAttribute
	SetExportUrl(value string) DataTableAttribute
	SetUpdateUrl(value string) DataTableAttribute
	GetContent() template.HTML
}

type DeleteFn added in v1.1.4

type DeleteFn func(ids []string) error

type DisplayProcessFn added in v1.1.4

type DisplayProcessFn func(string) string

type DisplayProcessFnChains added in v1.1.4

type DisplayProcessFnChains []DisplayProcessFn

func AddLimit added in v1.1.4

func AddLimit(limit int) DisplayProcessFnChains

func AddSubstr added in v1.1.4

func AddSubstr(start int, end int) DisplayProcessFnChains

func AddToLower added in v1.1.4

func AddToLower() DisplayProcessFnChains

func AddToTitle added in v1.1.4

func AddToTitle() DisplayProcessFnChains

func AddToUpper added in v1.1.4

func AddToUpper() DisplayProcessFnChains

func AddTrimSpace added in v1.1.4

func AddTrimSpace() DisplayProcessFnChains

func AddXssFilter added in v1.1.4

func AddXssFilter() DisplayProcessFnChains

func AddXssJsFilter added in v1.1.4

func AddXssJsFilter() DisplayProcessFnChains

func (DisplayProcessFnChains) Add added in v1.1.4

func (DisplayProcessFnChains) Append added in v1.1.4

func (DisplayProcessFnChains) Copy added in v1.1.4

func (DisplayProcessFnChains) Valid added in v1.1.4

func (d DisplayProcessFnChains) Valid() bool

type Field added in v1.1.4

type Field struct {
	Head     string
	Field    string
	TypeName db.DatabaseType

	Join Join

	Width      int
	Sortable   bool
	EditAble   bool
	Fixed      bool
	Filterable bool
	Hide       bool

	EditType    table.Type
	EditOptions []map[string]string

	FilterType      form.Type
	FilterOptions   FieldOptions
	FilterOperator  FilterOperator
	FilterOptionExt template.JS
	FilterHead      string
	FilterHelpMsg   template.HTML

	FieldDisplay
}

Field is the table field.

func (Field) Exist added in v1.1.4

func (f Field) Exist() bool

func (Field) GetEditOptions added in v1.1.4

func (f Field) GetEditOptions() string

type FieldDisplay added in v1.1.4

type FieldDisplay struct {
	Display              FieldFilterFn
	DisplayProcessChains DisplayProcessFnChains
}

func (FieldDisplay) AddLimit added in v1.1.4

func (f FieldDisplay) AddLimit(limit int) DisplayProcessFnChains

func (FieldDisplay) AddSubstr added in v1.1.4

func (f FieldDisplay) AddSubstr(start int, end int) DisplayProcessFnChains

func (FieldDisplay) AddToLower added in v1.1.4

func (f FieldDisplay) AddToLower() DisplayProcessFnChains

func (FieldDisplay) AddToTitle added in v1.1.4

func (f FieldDisplay) AddToTitle() DisplayProcessFnChains

func (FieldDisplay) AddToUpper added in v1.1.4

func (f FieldDisplay) AddToUpper() DisplayProcessFnChains

func (FieldDisplay) AddTrimSpace added in v1.1.4

func (f FieldDisplay) AddTrimSpace() DisplayProcessFnChains

func (FieldDisplay) ToDisplay added in v1.1.4

func (f FieldDisplay) ToDisplay(value FieldModel) interface{}

type FieldFilterFn added in v1.1.4

type FieldFilterFn func(value FieldModel) interface{}

FieldDisplay is filter function of data.

type FieldList added in v1.1.4

type FieldList []Field

func (FieldList) GetFieldByFieldName added in v1.1.4

func (f FieldList) GetFieldByFieldName(name string) Field

type FieldModel added in v1.1.4

type FieldModel struct {
	// The primaryKey of the table.
	ID string

	// The value of the single query result.
	Value string

	// The current row data.
	Row map[string]interface{}
}

FieldModel is the single query result.

type FieldModelValue added in v1.1.4

type FieldModelValue []string

func (FieldModelValue) First added in v1.1.4

func (r FieldModelValue) First() string

func (FieldModelValue) Value added in v1.1.4

func (r FieldModelValue) Value() string

type FieldOptions added in v1.1.4

type FieldOptions []map[string]string

func (FieldOptions) SetSelected added in v1.1.4

func (fo FieldOptions) SetSelected(val interface{}, labels []string) FieldOptions

type FilterOperator added in v1.1.4

type FilterOperator string
const (
	FilterOperatorLike           FilterOperator = "like"
	FilterOperatorGreater        FilterOperator = ">"
	FilterOperatorGreaterOrEqual FilterOperator = ">="
	FilterOperatorEqual          FilterOperator = "="
	FilterOperatorNotEqual       FilterOperator = "!="
	FilterOperatorLess           FilterOperator = "<"
	FilterOperatorLessOrEqual    FilterOperator = "<="
	FilterOperatorFree           FilterOperator = "free"
)

func GetOperatorFromValue added in v1.1.4

func GetOperatorFromValue(value string) FilterOperator

func (FilterOperator) AddOrNot added in v1.1.4

func (o FilterOperator) AddOrNot() bool

func (FilterOperator) Label added in v1.1.4

func (o FilterOperator) Label() template.HTML

func (FilterOperator) String added in v1.1.4

func (o FilterOperator) String() string

func (FilterOperator) Valid added in v1.1.4

func (o FilterOperator) Valid() bool

func (FilterOperator) Value added in v1.1.4

func (o FilterOperator) Value() string

type FilterType added in v1.1.4

type FilterType struct {
	FormType form.Type
	Operator FilterOperator
	Head     string
	HelpMsg  template.HTML
}

type FormAttribute

type FormAttribute interface {
	SetHeader(value template.HTML) FormAttribute
	SetContent(value []FormField) FormAttribute
	SetTabContents(value [][]FormField) FormAttribute
	SetTabHeaders(value []string) FormAttribute
	SetFooter(value template.HTML) FormAttribute
	SetPrefix(value string) FormAttribute
	SetUrl(value string) FormAttribute
	SetPrimaryKey(value string) FormAttribute
	SetInfoUrl(value string) FormAttribute
	SetMethod(value string) FormAttribute
	SetTitle(value template.HTML) FormAttribute
	SetLayout(layout form.Layout) FormAttribute
	SetToken(value string) FormAttribute
	SetOperationFooter(value template.HTML) FormAttribute
	GetBoxHeader() template.HTML
	GetDetailBoxHeader(editUrl, deleteUrl string) template.HTML
	GetBoxHeaderNoButton() template.HTML
	GetContent() template.HTML
}

type FormField added in v1.1.4

type FormField struct {
	Field    string
	TypeName db.DatabaseType
	Head     string
	FormType form2.Type

	Default                template.HTML
	Value                  template.HTML
	Value2                 string
	Options                FieldOptions
	DefaultOptionDelimiter string
	Label                  template.HTML

	CustomContent template.HTML
	CustomJs      template.JS
	CustomCss     template.CSS

	Editable    bool
	NotAllowAdd bool
	Must        bool
	Hide        bool

	HelpMsg   template.HTML
	OptionExt template.JS

	FieldDisplay
	PostFilterFn PostFieldFilterFn
}

FormField is the form field with different options.

func (FormField) UpdateValue added in v1.1.4

func (f FormField) UpdateValue(id, val string, res map[string]interface{}) FormField

type FormFields added in v1.1.4

type FormFields []FormField

func (FormFields) Copy added in v1.1.4

func (f FormFields) Copy() FormFields

func (FormFields) FindByFieldName added in v1.1.4

func (f FormFields) FindByFieldName(field string) FormField

type FormPanel

type FormPanel struct {
	FieldList FormFields

	// Warn: may be deprecated in the future.
	TabGroups  TabGroups
	TabHeaders TabHeaders

	Table       string
	Title       string
	Description string

	Validator FormPostFn
	PostHook  FormPostFn

	BeforeInsert FormPostFn
	BeforeUpdate FormPostFn

	UpdateFn FormPostFn
	InsertFn FormPostFn

	HeaderHtml template.HTML
	FooterHtml template.HTML
	// contains filtered or unexported fields
}

FormPanel

func NewFormPanel added in v1.1.4

func NewFormPanel() *FormPanel

func (*FormPanel) AddField added in v1.1.4

func (f *FormPanel) AddField(head, field string, filedType db.DatabaseType, formType form2.Type) *FormPanel

func (*FormPanel) AddLimitFilter added in v1.1.4

func (f *FormPanel) AddLimitFilter(limit int) *FormPanel

func (*FormPanel) AddSubstrFilter added in v1.1.4

func (f *FormPanel) AddSubstrFilter(start int, end int) *FormPanel

func (*FormPanel) AddToLowerFilter added in v1.1.4

func (f *FormPanel) AddToLowerFilter() *FormPanel

func (*FormPanel) AddToTitleFilter added in v1.1.4

func (f *FormPanel) AddToTitleFilter() *FormPanel

func (*FormPanel) AddToUpperFilter added in v1.1.4

func (f *FormPanel) AddToUpperFilter() *FormPanel

func (*FormPanel) AddTrimSpaceFilter added in v1.1.4

func (f *FormPanel) AddTrimSpaceFilter() *FormPanel

func (*FormPanel) AddXssFilter added in v1.1.4

func (f *FormPanel) AddXssFilter() *FormPanel

func (*FormPanel) AddXssJsFilter added in v1.1.4

func (f *FormPanel) AddXssJsFilter() *FormPanel

func (*FormPanel) FieldCustomContent added in v1.1.4

func (f *FormPanel) FieldCustomContent(content template.HTML) *FormPanel

func (*FormPanel) FieldCustomCss added in v1.1.4

func (f *FormPanel) FieldCustomCss(css template.CSS) *FormPanel

func (*FormPanel) FieldCustomJs added in v1.1.4

func (f *FormPanel) FieldCustomJs(js template.JS) *FormPanel

func (*FormPanel) FieldDefault added in v1.1.4

func (f *FormPanel) FieldDefault(def string) *FormPanel

func (*FormPanel) FieldDefaultOptionDelimiter added in v1.1.4

func (f *FormPanel) FieldDefaultOptionDelimiter(delimiter string) *FormPanel

func (*FormPanel) FieldDisplay added in v1.1.4

func (f *FormPanel) FieldDisplay(filter FieldFilterFn) *FormPanel

func (*FormPanel) FieldFormType added in v1.1.4

func (f *FormPanel) FieldFormType(formType form2.Type) *FormPanel

func (*FormPanel) FieldHelpMsg added in v1.1.4

func (f *FormPanel) FieldHelpMsg(s template.HTML) *FormPanel

func (*FormPanel) FieldHide added in v1.1.4

func (f *FormPanel) FieldHide() *FormPanel

func (*FormPanel) FieldLimit added in v1.1.4

func (f *FormPanel) FieldLimit(limit int) *FormPanel

func (*FormPanel) FieldMust added in v1.1.4

func (f *FormPanel) FieldMust() *FormPanel

func (*FormPanel) FieldNotAllowAdd added in v1.1.4

func (f *FormPanel) FieldNotAllowAdd() *FormPanel

func (*FormPanel) FieldNotAllowEdit added in v1.1.4

func (f *FormPanel) FieldNotAllowEdit() *FormPanel

func (*FormPanel) FieldOptionExt added in v1.1.4

func (f *FormPanel) FieldOptionExt(m map[string]interface{}) *FormPanel

func (*FormPanel) FieldOptions added in v1.1.4

func (f *FormPanel) FieldOptions(options []map[string]string) *FormPanel

func (*FormPanel) FieldPostFilterFn added in v1.1.4

func (f *FormPanel) FieldPostFilterFn(post PostFieldFilterFn) *FormPanel

func (*FormPanel) FieldSubstr added in v1.1.4

func (f *FormPanel) FieldSubstr(start int, end int) *FormPanel

func (*FormPanel) FieldToLower added in v1.1.4

func (f *FormPanel) FieldToLower() *FormPanel

func (*FormPanel) FieldToTitle added in v1.1.4

func (f *FormPanel) FieldToTitle() *FormPanel

func (*FormPanel) FieldToUpper added in v1.1.4

func (f *FormPanel) FieldToUpper() *FormPanel

func (*FormPanel) FieldTrimSpace added in v1.1.4

func (f *FormPanel) FieldTrimSpace() *FormPanel

func (*FormPanel) FieldValue added in v1.1.4

func (f *FormPanel) FieldValue(value string) *FormPanel

func (*FormPanel) FieldXssFilter added in v1.1.4

func (f *FormPanel) FieldXssFilter() *FormPanel

func (*FormPanel) SetBeforeInsert added in v1.1.10

func (f *FormPanel) SetBeforeInsert(po FormPostFn) *FormPanel

func (*FormPanel) SetBeforeUpdate added in v1.1.10

func (f *FormPanel) SetBeforeUpdate(po FormPostFn) *FormPanel

func (*FormPanel) SetDescription added in v1.1.4

func (f *FormPanel) SetDescription(desc string) *FormPanel

func (*FormPanel) SetFooterHtml added in v1.1.4

func (f *FormPanel) SetFooterHtml(footer template.HTML) *FormPanel

func (*FormPanel) SetHeaderHtml added in v1.1.4

func (f *FormPanel) SetHeaderHtml(header template.HTML) *FormPanel

func (*FormPanel) SetInsertFn added in v1.1.4

func (f *FormPanel) SetInsertFn(po FormPostFn) *FormPanel

func (*FormPanel) SetPostHook added in v1.1.4

func (f *FormPanel) SetPostHook(po FormPostFn) *FormPanel

func (*FormPanel) SetPostValidator added in v1.1.4

func (f *FormPanel) SetPostValidator(va FormPostFn) *FormPanel

func (*FormPanel) SetTabGroups added in v1.1.4

func (f *FormPanel) SetTabGroups(groups TabGroups) *FormPanel

func (*FormPanel) SetTabHeaders added in v1.1.4

func (f *FormPanel) SetTabHeaders(headers ...string) *FormPanel

func (*FormPanel) SetTable added in v1.1.4

func (f *FormPanel) SetTable(table string) *FormPanel

func (*FormPanel) SetTitle added in v1.1.4

func (f *FormPanel) SetTitle(title string) *FormPanel

func (*FormPanel) SetUpdateFn added in v1.1.4

func (f *FormPanel) SetUpdateFn(po FormPostFn) *FormPanel

type FormPostFn added in v1.1.4

type FormPostFn func(values form.Values) error

type GetPanelFn added in v1.1.4

type GetPanelFn func(ctx interface{}) (Panel, error)

type ImgAttribute

type ImgAttribute interface {
	SetWidth(value string) ImgAttribute
	SetHeight(value string) ImgAttribute
	WithModal() ImgAttribute
	SetSrc(value template.HTML) ImgAttribute
	GetContent() template.HTML
}

type InfoPanel

type InfoPanel struct {
	FieldList FieldList

	Table       string
	Title       string
	Description string

	// Warn: may be deprecated future.
	TabGroups  TabGroups
	TabHeaders TabHeaders

	Sort Sort

	PageSizeList    []int
	DefaultPageSize int

	IsHideNewButton    bool
	IsHideExportButton bool
	IsHideEditButton   bool
	IsHideDeleteButton bool
	IsHideFilterButton bool
	IsHideRowSelector  bool
	IsHidePagination   bool
	IsHideFilterArea   bool
	FilterFormLayout   form.Layout

	Wheres []Where

	Buttons Buttons

	DeleteHook  DeleteFn
	PreDeleteFn DeleteFn
	DeleteFn    DeleteFn

	Action     template.HTML
	HeaderHtml template.HTML
	FooterHtml template.HTML
	// contains filtered or unexported fields
}

InfoPanel

func NewInfoPanel added in v1.1.4

func NewInfoPanel() *InfoPanel

func (*InfoPanel) AddButton added in v1.1.4

func (i *InfoPanel) AddButton(title template.HTML, icon string, action Action, color ...template.HTML) *InfoPanel

func (*InfoPanel) AddField added in v1.1.4

func (i *InfoPanel) AddField(head, field string, typeName db.DatabaseType) *InfoPanel

func (*InfoPanel) AddLimitFilter added in v1.1.4

func (i *InfoPanel) AddLimitFilter(limit int) *InfoPanel

func (*InfoPanel) AddSubstrFilter added in v1.1.4

func (i *InfoPanel) AddSubstrFilter(start int, end int) *InfoPanel

func (*InfoPanel) AddToLowerFilter added in v1.1.4

func (i *InfoPanel) AddToLowerFilter() *InfoPanel

func (*InfoPanel) AddToTitleFilter added in v1.1.4

func (i *InfoPanel) AddToTitleFilter() *InfoPanel

func (*InfoPanel) AddToUpperFilter added in v1.1.4

func (i *InfoPanel) AddToUpperFilter() *InfoPanel

func (*InfoPanel) AddTrimSpaceFilter added in v1.1.4

func (i *InfoPanel) AddTrimSpaceFilter() *InfoPanel

func (*InfoPanel) AddXssFilter added in v1.1.4

func (i *InfoPanel) AddXssFilter() *InfoPanel

func (*InfoPanel) AddXssJsFilter added in v1.1.4

func (i *InfoPanel) AddXssJsFilter() *InfoPanel

func (*InfoPanel) FieldDisplay added in v1.1.4

func (i *InfoPanel) FieldDisplay(filter FieldFilterFn) *InfoPanel

func (*InfoPanel) FieldEditAble added in v1.1.4

func (i *InfoPanel) FieldEditAble(editType ...table.Type) *InfoPanel

func (*InfoPanel) FieldEditOptions added in v1.1.4

func (i *InfoPanel) FieldEditOptions(options []map[string]string) *InfoPanel

func (*InfoPanel) FieldFilterOptionExt added in v1.1.4

func (i *InfoPanel) FieldFilterOptionExt(m map[string]interface{}) *InfoPanel

func (*InfoPanel) FieldFilterOptions added in v1.1.4

func (i *InfoPanel) FieldFilterOptions(options []map[string]string) *InfoPanel

func (*InfoPanel) FieldFilterable added in v1.1.4

func (i *InfoPanel) FieldFilterable(filterType ...FilterType) *InfoPanel

func (*InfoPanel) FieldFixed added in v1.1.4

func (i *InfoPanel) FieldFixed() *InfoPanel

func (*InfoPanel) FieldHide added in v1.1.4

func (i *InfoPanel) FieldHide() *InfoPanel

func (*InfoPanel) FieldJoin added in v1.1.4

func (i *InfoPanel) FieldJoin(join Join) *InfoPanel

func (*InfoPanel) FieldLimit added in v1.1.4

func (i *InfoPanel) FieldLimit(limit int) *InfoPanel

func (*InfoPanel) FieldSortable added in v1.1.4

func (i *InfoPanel) FieldSortable() *InfoPanel

func (*InfoPanel) FieldSubstr added in v1.1.4

func (i *InfoPanel) FieldSubstr(start int, end int) *InfoPanel

func (*InfoPanel) FieldToLower added in v1.1.4

func (i *InfoPanel) FieldToLower() *InfoPanel

func (*InfoPanel) FieldToTitle added in v1.1.4

func (i *InfoPanel) FieldToTitle() *InfoPanel

func (*InfoPanel) FieldToUpper added in v1.1.4

func (i *InfoPanel) FieldToUpper() *InfoPanel

func (*InfoPanel) FieldTrimSpace added in v1.1.4

func (i *InfoPanel) FieldTrimSpace() *InfoPanel

func (*InfoPanel) FieldWidth added in v1.1.4

func (i *InfoPanel) FieldWidth(width int) *InfoPanel

func (*InfoPanel) FieldXssFilter added in v1.1.4

func (i *InfoPanel) FieldXssFilter() *InfoPanel

func (*InfoPanel) GetPageSizeList added in v1.1.4

func (i *InfoPanel) GetPageSizeList() []string

func (*InfoPanel) GetSort added in v1.1.4

func (i *InfoPanel) GetSort() string

func (*InfoPanel) HideDeleteButton added in v1.1.4

func (i *InfoPanel) HideDeleteButton() *InfoPanel

func (*InfoPanel) HideEditButton added in v1.1.4

func (i *InfoPanel) HideEditButton() *InfoPanel

func (*InfoPanel) HideExportButton added in v1.1.4

func (i *InfoPanel) HideExportButton() *InfoPanel

func (*InfoPanel) HideFilterArea added in v1.1.4

func (i *InfoPanel) HideFilterArea() *InfoPanel

func (*InfoPanel) HideFilterButton added in v1.1.4

func (i *InfoPanel) HideFilterButton() *InfoPanel

func (*InfoPanel) HideNewButton added in v1.1.4

func (i *InfoPanel) HideNewButton() *InfoPanel

func (*InfoPanel) HidePagination added in v1.1.4

func (i *InfoPanel) HidePagination() *InfoPanel

func (*InfoPanel) HideRowSelector added in v1.1.4

func (i *InfoPanel) HideRowSelector() *InfoPanel

func (*InfoPanel) SetAction added in v1.1.4

func (i *InfoPanel) SetAction(action template.HTML) *InfoPanel

func (*InfoPanel) SetDefaultPageSize added in v1.1.4

func (i *InfoPanel) SetDefaultPageSize(defaultPageSize int) *InfoPanel

func (*InfoPanel) SetDeleteFn added in v1.1.4

func (i *InfoPanel) SetDeleteFn(fn DeleteFn) *InfoPanel

func (*InfoPanel) SetDeleteHook added in v1.1.4

func (i *InfoPanel) SetDeleteHook(fn DeleteFn) *InfoPanel

func (*InfoPanel) SetDescription added in v1.1.4

func (i *InfoPanel) SetDescription(desc string) *InfoPanel

func (*InfoPanel) SetFilterFormLayout added in v1.1.4

func (i *InfoPanel) SetFilterFormLayout(layout form.Layout) *InfoPanel

func (*InfoPanel) SetFooterHtml added in v1.1.4

func (i *InfoPanel) SetFooterHtml(footer template.HTML) *InfoPanel

func (*InfoPanel) SetHeaderHtml added in v1.1.4

func (i *InfoPanel) SetHeaderHtml(header template.HTML) *InfoPanel

func (*InfoPanel) SetPageSizeList added in v1.1.4

func (i *InfoPanel) SetPageSizeList(pageSizeList []int) *InfoPanel

func (*InfoPanel) SetPreDeleteFn added in v1.1.4

func (i *InfoPanel) SetPreDeleteFn(fn DeleteFn) *InfoPanel

func (*InfoPanel) SetSortAsc added in v1.1.4

func (i *InfoPanel) SetSortAsc() *InfoPanel

func (*InfoPanel) SetSortDesc added in v1.1.4

func (i *InfoPanel) SetSortDesc() *InfoPanel

func (*InfoPanel) SetTabGroups added in v1.1.4

func (i *InfoPanel) SetTabGroups(groups TabGroups) *InfoPanel

func (*InfoPanel) SetTabHeaders added in v1.1.4

func (i *InfoPanel) SetTabHeaders(headers ...string) *InfoPanel

func (*InfoPanel) SetTable added in v1.1.4

func (i *InfoPanel) SetTable(table string) *InfoPanel

func (*InfoPanel) SetTitle added in v1.1.4

func (i *InfoPanel) SetTitle(title string) *InfoPanel

func (*InfoPanel) Where added in v1.1.15

func (i *InfoPanel) Where(field string, operator string, arg interface{}) *InfoPanel

type Join added in v1.1.4

type Join struct {
	Table     string
	Field     string
	JoinField string
}

func (Join) Valid added in v1.1.4

func (j Join) Valid() bool

type LabelAttribute

type LabelAttribute interface {
	SetContent(value template.HTML) LabelAttribute
	SetColor(value template.HTML) LabelAttribute
	SetType(value string) LabelAttribute
	GetContent() template.HTML
}

type Page

type Page struct {
	// User is the login user.
	User models.UserModel

	// Menu is the left side menu of the template.
	Menu menu.Menu

	// Panel is the main content of template.
	Panel Panel

	// System contains some system info.
	System SystemInfo

	// UrlPrefix is the prefix of url.
	UrlPrefix string

	// Title is the title of the web page.
	Title string

	Logo template.HTML

	MiniLogo template.HTML

	// ColorScheme is the color scheme of the template.
	ColorScheme string

	// IndexUrl is the home page url of the site.
	IndexUrl string

	// AssetUrl is the cdn link of assets
	CdnUrl string

	// Custom html in the tag head.
	CustomHeadHtml template.HTML

	// Custom html after body.
	CustomFootHtml template.HTML

	// Components assets
	AssetsList template.HTML
}

Page used in the template as a top variable.

func NewPage added in v1.1.4

func NewPage(user models.UserModel, menu menu.Menu, panel Panel, cfg config.Config, assetsList template.HTML) Page

type PaginatorAttribute

type PaginatorAttribute interface {
	SetCurPageStartIndex(value string) PaginatorAttribute
	SetCurPageEndIndex(value string) PaginatorAttribute
	SetTotal(value string) PaginatorAttribute
	SetPreviousClass(value string) PaginatorAttribute
	SetPreviousUrl(value string) PaginatorAttribute
	SetPages(value []map[string]string) PaginatorAttribute
	SetPageSizeList(value []string) PaginatorAttribute
	SetNextClass(value string) PaginatorAttribute
	SetNextUrl(value string) PaginatorAttribute
	SetOption(value map[string]template.HTML) PaginatorAttribute
	SetUrl(value string) PaginatorAttribute
	SetExtraInfo(value template.HTML) PaginatorAttribute
	GetContent() template.HTML
}

type Panel

type Panel struct {
	Content     template.HTML
	Title       string
	Description string
	Url         string
}

Panel contains the main content of the template which used as pjax.

type PopupAttribute added in v1.1.4

type PopupAttribute interface {
	SetID(value string) PopupAttribute
	SetTitle(value template.HTML) PopupAttribute
	SetFooter(value template.HTML) PopupAttribute
	SetBody(value template.HTML) PopupAttribute
	SetSize(value string) PopupAttribute
	GetContent() template.HTML
}

type PostFieldFilterFn added in v1.1.4

type PostFieldFilterFn func(value PostFieldModel) string

PostFieldFilterFn is filter function of data.

type PostFieldModel added in v1.1.4

type PostFieldModel struct {
	ID    string
	Value FieldModelValue
	Row   map[string]interface{}
}

PostFieldModel contains ID and value of the single query result and the current row data.

type RowAttribute

type RowAttribute interface {
	SetContent(value template.HTML) RowAttribute
	AddContent(value template.HTML) RowAttribute
	GetContent() template.HTML
}

type Sort added in v1.1.4

type Sort uint8
const (
	SortDesc Sort = iota
	SortAsc
)

type SystemInfo

type SystemInfo struct {
	Version string
}

SystemInfo contains basic info of system.

type TabGroups added in v1.1.4

type TabGroups [][]string

func NewTabGroups added in v1.1.4

func NewTabGroups(items ...string) TabGroups

func (TabGroups) AddGroup added in v1.1.4

func (t TabGroups) AddGroup(items ...string) TabGroups

func (TabGroups) Valid added in v1.1.4

func (t TabGroups) Valid() bool

type TabHeaders added in v1.1.4

type TabHeaders []string

func (TabHeaders) Add added in v1.1.4

func (t TabHeaders) Add(header string) TabHeaders

type TableAttribute

type TableAttribute interface {
	SetThead(value []map[string]string) TableAttribute
	SetInfoList(value []map[string]template.HTML) TableAttribute
	SetType(value string) TableAttribute
	SetMinWidth(value int) TableAttribute
	GetContent() template.HTML
}

type TabsAttribute

type TabsAttribute interface {
	SetData(value []map[string]template.HTML) TabsAttribute
	GetContent() template.HTML
}

type TreeAttribute

type TreeAttribute interface {
	SetTree(value []menu.Item) TreeAttribute
	SetEditUrl(value string) TreeAttribute
	SetOrderUrl(value string) TreeAttribute
	SetUrlPrefix(value string) TreeAttribute
	SetDeleteUrl(value string) TreeAttribute
	GetContent() template.HTML
	GetTreeHeader() template.HTML
}

type Where added in v1.1.15

type Where struct {
	Field    string
	Operator string
	Arg      interface{}
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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