Skip to content

A client side framework for Beach Fe style guide and components

Notifications You must be signed in to change notification settings

beachio/beach-fe-framework

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BeachFe

$feStore

Inside BeachFe we have a store $feStore. This is a secondary store that should be used for communicating with Beach Api Core.

Application

type params description
application/setTheme action "dark" or "light" set main theme
application/loaded action set application as loaded
application/theme getter returns main theme
application/loaded getter returns true or false if app is loaded or not

Sidebar

type params description
sidebar/open action open sidebar
sidebar/close action close sidebar
sidebar/toggle action toggle sidebar
sidebar/opened getter true or false if sidebar opened or not

Authorization

type params description
authorization/login action {email, password} returns a promise that resolves a Bearer token
authorization/register action {email, password, username} create new account. Returns a promise that resolves a Bearer token
authorization/signOut action destroy session
authorization/token getter Bearer token

User

type params description
user/fetch action returns a promise that resolves current_user
user/set action {user} set current user
user/current getter get current user

Organisation

type params description
organisation/fetchAll action returns a promise that resolves a list of available organisations
organisation/setList action Array of organisations set available organisations to store
organisation/setCurrent action Organisation set organisation context
organisation/fetchCurrent action returns a promist that resolves an organisation context
organisation/create action {name} create new organisation. Returns a promist that resolves created organisation. Will add this organisation to list
organisation/list getter returns organisations list
organisation/current getter returns current organisation context

Components

1. Form Controls and Elements

FeLabel

Slots: default

FeButton

Slots: default

Props Type default description
color String "white" Can be one of white, gray, blue
size String "small" Can be one of large, small

FeTextField

Slots: none

Props Type default description
v-model String
type String "text" type of input
label String
placeholder String

FeTextArea

Slots: none

Props Type default description
v-model String
label String
placeholder String

FeSelect

Slots: none

Props Type default description
v-model Array [] Array of selected ids
options Array [] [{id: ..., name: ...}, ...]
Instead of name can be used title or text fields
multiple Boolean false
placeholder String

FeList

Slots: none

Props Type default description
v-model Array [] Array of selected ids
options Array [] [{id: ..., name: ...}, ...]
Instead of name can be used title or text fields
multiple Boolean false

FeCheckbox

Slots: default

Props Type default description
v-model Boolean false

FeRadio

Slots: default

Props Type default description
v-model Any
name String Uniq name for radio group

FeFormRow

Slots: default

Props Type default description
justify String "normal" justify-content

FeSortableList

Slots: none

Props Type default description
v-model Array [] sorted array

2. Layout

FeApp

Root wrapper for BeachFe application

Slots: default

FeHeader

Header wrapper

Slots: default

FeHeaderSection

Header Section. Use this component inside FeHeader

Slots: default

FeHeaderNav

Header Nav. Use this component inside FeHeaderSection

Slots: none

Props Type default description
items Array [] Array of NavItems
[{title, route},...]

FeHeaderActions

Actions Section. Use this component inside FeHeaderSection

Slots: default

FeHeaderAction

Action inside Actions Section. Use this component inside FeHeaderActions

Slots: default

FeHeaderActionDropdown

Action as a dropdown. Use this component inside FeHeaderAction

Slots: default and main

Props Type default description
position String left left, right, center

FeHeaderActionProfile

Profile Dropdown Component. Use this component inside FeHeaderAction

Slots: default

FeHeaderActionDropdownItem

Use this component inside FeHeaderActionDropdown or FeHeaderActionProfile

Slots: default

FeSidebar

Slots: default

FeSidebarLogo

Slots: default

FeSidebarNav

Slots: default

Props Type default description
items Array [] Array of NavItem

NavItem:

{
  title: String[HTML-content],
  rightSide: String[HTML-content],
  leftSide: String[HTML-content],
  opened: Boolean(false),
  bold: Boolean(false),
  click: () => {},
  route: String
  noMargin: Boolean(false),
  items: [...NavItems...]
}

FeSidebarFooter

Slots: default

FeContent

Slots: default

FeIcon

Slots: none

Props Type default description
size Number, String 16
name String icon name

About

A client side framework for Beach Fe style guide and components

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published