table

package
v1.2.4 Latest Latest
Warning

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

Go to latest
Published: Mar 2, 2020 License: Apache-2.0 Imports: 30 Imported by: 128

Documentation

Index

Constants

View Source
const (
	DefaultPrimaryKeyName = "id"
	DefaultConnectionName = "default"
)

Variables

This section is empty.

Functions

func GetNewFormList

func GetNewFormList(groupHeaders []string,
	group [][]string,
	old []types.FormField) ([]types.FormField, [][]types.FormField, []string)

func SetGenerators

func SetGenerators(gens map[string]Generator)

SetGenerators update generators.

func SetServices added in v1.1.2

func SetServices(srv service.List)

Types

type Columns

type Columns []string

type Config

type Config struct {
	Driver     string
	Connection string
	CanAdd     bool
	Editable   bool
	Deletable  bool
	Exportable bool
	PrimaryKey PrimaryKey
	SourceURL  string
	GetDataFun GetDataFun
}

func DefaultConfig

func DefaultConfig() Config

func DefaultConfigWithDriver

func DefaultConfigWithDriver(driver string) Config

func DefaultConfigWithDriverAndConnection

func DefaultConfigWithDriverAndConnection(driver, conn string) Config

func (Config) SetCanAdd

func (config Config) SetCanAdd(canAdd bool) Config

func (Config) SetConnection

func (config Config) SetConnection(connection string) Config

func (Config) SetDeletable

func (config Config) SetDeletable(deletable bool) Config

func (Config) SetEditable

func (config Config) SetEditable(editable bool) Config

func (Config) SetExportable

func (config Config) SetExportable(exportable bool) Config

func (Config) SetGetDataFun added in v1.1.8

func (config Config) SetGetDataFun(fun GetDataFun) Config

func (Config) SetPrimaryKeyType

func (config Config) SetPrimaryKeyType(typ string) Config

func (Config) SetSourceURL added in v1.1.8

func (config Config) SetSourceURL(url string) Config

type DefaultTable

type DefaultTable struct {
	// contains filtered or unexported fields
}

func (DefaultTable) Copy added in v1.1.6

func (tb DefaultTable) Copy() Table

func (DefaultTable) DeleteDataFromDatabase

func (tb DefaultTable) DeleteDataFromDatabase(id string) error

DeleteDataFromDatabase delete data.

func (DefaultTable) GetCanAdd

func (tb DefaultTable) GetCanAdd() bool

func (DefaultTable) GetData added in v1.1.8

func (tb DefaultTable) GetData(params parameter.Parameters, isAll bool) (PanelInfo, error)

GetData query the data set.

func (DefaultTable) GetDataWithId added in v1.1.8

func (tb DefaultTable) GetDataWithId(id string) ([]types.FormField, [][]types.FormField, []string, string, string, error)

GetDataWithId query the single row of data.

func (DefaultTable) GetDataWithIds added in v1.1.8

func (tb DefaultTable) GetDataWithIds(params parameter.Parameters, ids []string) (PanelInfo, error)

GetDataWithIds query the data set.

func (DefaultTable) GetDeletable

func (tb DefaultTable) GetDeletable() bool

func (DefaultTable) GetDetail added in v1.1.7

func (tb DefaultTable) GetDetail() *types.InfoPanel

func (DefaultTable) GetEditable

func (tb DefaultTable) GetEditable() bool

func (DefaultTable) GetExportable

func (tb DefaultTable) GetExportable() bool

func (DefaultTable) GetForm

func (tb DefaultTable) GetForm() *types.FormPanel

func (DefaultTable) GetInfo

func (tb DefaultTable) GetInfo() *types.InfoPanel

func (DefaultTable) GetPrimaryKey

func (tb DefaultTable) GetPrimaryKey() PrimaryKey

func (DefaultTable) InsertDataFromDatabase

func (tb DefaultTable) InsertDataFromDatabase(dataList form.Values) error

InsertDataFromDatabase insert data.

func (DefaultTable) IsShowDetail added in v1.1.7

func (tb DefaultTable) IsShowDetail() bool

func (DefaultTable) UpdateDataFromDatabase

func (tb DefaultTable) UpdateDataFromDatabase(dataList form.Values) error

UpdateDataFromDatabase update data.

type Generator

type Generator func(ctx *context.Context) Table

type GeneratorList

type GeneratorList map[string]Generator

func (GeneratorList) Add

func (g GeneratorList) Add(key string, gen Generator)

func (GeneratorList) Combine added in v1.1.6

func (g GeneratorList) Combine(gg GeneratorList)

func (GeneratorList) CombineAll added in v1.1.6

func (g GeneratorList) CombineAll(ggg []GeneratorList)

func (GeneratorList) InjectRoutes added in v1.1.8

func (g GeneratorList) InjectRoutes(app *context.App, srv service.List)

type GetDataFromURLRes added in v1.1.8

type GetDataFromURLRes struct {
	Data []map[string]interface{}
	Size int
}

type GetDataFun added in v1.1.8

type GetDataFun func(path string, params parameter.Parameters, isAll bool, ids []string) ([]map[string]interface{}, int)

type PanelInfo

type PanelInfo struct {
	Thead       types.Thead
	InfoList    types.InfoList
	FormData    []types.FormField
	Paginator   types.PaginatorAttribute
	Title       string
	Description string
}

type PrimaryKey

type PrimaryKey struct {
	Type db.DatabaseType
	Name string
}

type Table

type Table interface {
	GetInfo() *types.InfoPanel
	GetDetail() *types.InfoPanel
	GetForm() *types.FormPanel

	GetCanAdd() bool
	GetEditable() bool
	GetDeletable() bool
	GetExportable() bool
	IsShowDetail() bool

	GetPrimaryKey() PrimaryKey

	GetData(params parameter.Parameters, isAll bool) (PanelInfo, error)
	GetDataWithIds(params parameter.Parameters, ids []string) (PanelInfo, error)
	GetDataWithId(id string) ([]types.FormField, [][]types.FormField, []string, string, string, error)
	UpdateDataFromDatabase(dataList form.Values) error
	InsertDataFromDatabase(dataList form.Values) error
	DeleteDataFromDatabase(id string) error

	Copy() Table
}

func Get added in v1.1.2

func Get(key string, ctx *context.Context) Table

func GetManagerTable

func GetManagerTable(ctx *context.Context) (ManagerTable Table)

func GetMenuTable

func GetMenuTable(ctx *context.Context) (MenuTable Table)

func GetNormalManagerTable added in v1.1.5

func GetNormalManagerTable(ctx *context.Context) (ManagerTable Table)

func GetOpTable

func GetOpTable(ctx *context.Context) (OpTable Table)

func GetPermissionTable

func GetPermissionTable(ctx *context.Context) (PermissionTable Table)

func GetRolesTable

func GetRolesTable(ctx *context.Context) (RolesTable Table)

func NewDefaultTable

func NewDefaultTable(cfg Config) Table

Jump to

Keyboard shortcuts

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