Commit 43e2343b authored by PDuarte's avatar PDuarte

adding layout playlists

parent f5a9620e
...@@ -29,6 +29,12 @@ export default [ ...@@ -29,6 +29,12 @@ export default [
title: 'layout details', title: 'layout details',
icon: <Briefcase />, icon: <Briefcase />,
navLink: '/screens/layoutdetails' navLink: '/screens/layoutdetails'
},
{
id: 'layoutplaylistsDash',
title: 'layout playlists',
icon: <Briefcase />,
navLink: '/screens/layoutplaylists'
} }
] ]
} }
......
...@@ -97,6 +97,31 @@ const ScreensRoutes = [ ...@@ -97,6 +97,31 @@ const ScreensRoutes = [
{ {
path: '/screens/layoutdetails', path: '/screens/layoutdetails',
component: lazy(() => import('../../views/screens/layoutdetails')) component: lazy(() => import('../../views/screens/layoutdetails'))
},
// layout playlists
{
path: '/screens/layoutplaylists/edit',
exact: true,
component: () => <Redirect to='/screens/layoutplaylists/edit/1' />
},
{
path: '/screens/layoutplaylists/add',
component: lazy(() => import('../../views/screens/layoutplaylists/add')),
meta: {
navLink: '/screens/layoutplaylists/add'
}
},
{
path: '/screens/layoutplaylists/edit/:id',
component: lazy(() => import('../../views/screens/layoutplaylists/edit')),
meta: {
navLink: '/screens/layoutplaylists/edit'
}
},
{
path: '/screens/layoutplaylists',
component: lazy(() => import('../../views/screens/layoutplaylists'))
} }
] ]
......
// ** React Imports
import { Fragment } from 'react'
import { Link } from 'react-router-dom'
// ** Store & Actions
import { addlayoutPlaylists } from '../../store/actions'
import { useDispatch } from 'react-redux'
// ** Custom Components
import Breadcrumbs from '@components/breadcrumbs'
// ** Third Party Components
import { Row, Col } from 'reactstrap'
// module settings
import moduleSettings from '../module'
// ** Tables
import ElementCard from '../card'
// ** Styles
import '@styles/react/libs/tables/react-dataTable-component.scss'
const Tables = () => {
const dispatch = useDispatch()
const onSubmitHandler = values => {
dispatch(
addlayoutPlaylists({
name: values.name,
slug: values.slug,
view_all: values.view_all,
search: values.search,
seasons_carousel: values.seasons_carousel,
episodes_carousel: values.episodes_carousel,
related_movies: values.related_movies,
related_series: values.related_series,
player_related: values.player_related,
live_TV: values.live_TV,
my_stuff: values.my_stuff,
pages: values.pages,
platforms: values.platforms
})
)
}
return (
<Fragment>
<Breadcrumbs breadCrumbTitle='Screens' breadCrumbParent='Screens' breadCrumbActive={moduleSettings.mainTitle} />
<Row>
<Col sm='12'>
<Link to={moduleSettings.baseURL}>Back to {moduleSettings.mainTitle}</Link>
</Col>
</Row>
<Row>
<Col sm='12'>
<div className="card">
<div className="card-header">
<h4 className="card-title">New {moduleSettings.mainTitleSingle}</h4>
</div>
<div className="card-body">
<ElementCard selectedElement={{
id: '<generate>',
name: '',
slug: '',
platforms: []
}}
onSubmitHandler={onSubmitHandler}
/>
</div>
</div>
</Col>
</Row>
</Fragment>
)
}
export default Tables
This diff is collapsed.
import { Fragment, useState, useEffect, useRef, memo } from 'react'
import {Media, Button, Label, Form, FormGroup, Input, Table, CustomInput, Card, CardBody, Row, Col, Nav, NavItem, NavLink, TabContent, TabPane, Alert, UncontrolledButtonDropdown } from 'reactstrap'
// ** Store & Actions
import { useDispatch } from 'react-redux'
// ** Store & Actions
import { getData_platforms } from '../../../settings/store/actions'
import { Lock, Edit, Trash2 } from 'react-feather'
import { useForm } from 'react-hook-form'
import classnames from 'classnames'
import { circle } from 'leaflet'
import moduleSettings from '../module'
const ElementPlatform = ({dataElement, setElement, store}) => {
const dispatch = useDispatch(),
{ register, errors, handleSubmit } = useForm()
const [plataforms, setPlataforms] = useState(null),
[selectedOption, setSelectedOption] = useState(null),
platformsIDs = [0]
// console.log(dataElement)
// console.log(store)
// ** Function to get user on mount
useEffect(() => {
if (!store.allDataPlatforms || store.allDataPlatforms.length < 1) {
dispatch(getData_platforms({
start: 1,
length: 1000,
q: null
}))
}
}, [dispatch])
useEffect(() => {
setPlataforms(store.allDataPlatforms)
}, [store.allDataPlatforms])
const handleGridChange = (value, index, field) => {
// console.log([value, index, field])
const newData = dataElement.platforms.map((platform, i) => {
if (i === index) platform.pivot[field] = value
// if (i === index) {
// if (field === 'type') platform.pivot.type = value
// if (field === 'slug') platform.pivot.slug = value
// }
})
setElement(
{
...dataElement
})
}
return !!dataElement ? (
<div clssName='permissions border mt-1'>
<h6 className='py-1 mx-1 mb-0 font-medium-2'>
<Lock size={18} className='mr-25' />
<span className='align-middle'>Platforms</span>
</h6>
<Table borderless striped responsive>
<thead className='thead-light'>
<tr>
<th>plataform</th>
{
Object.keys(moduleSettings.newElement).map(name => {
return (
<th>{name.split('_').join(' ')}</th>
)
})
}
</tr>
</thead>
<tbody>
{
!!dataElement && !!dataElement.platforms && dataElement.platforms.map((platform, index) => {
const plataformsOptions = platform.pivot,
locked = plataformsOptions.locked
platformsIDs.push(`${platform.id}`)
return (
<tr key={platform.id}>
<td>{platform.name}</td>
{
Object.keys(moduleSettings.newElement).map(name => {
return (
<td >
<Input
type={moduleSettings.elementsOption[name] ? 'select' : 'text'}
name={name}
id={name}
innerRef={register({ required: true })}
placeholder='0'
defaultValue={plataformsOptions && plataformsOptions[name]}
className={classnames({ 'is-invalid': errors[{name}] })}
onChange={(e) => handleGridChange(e.target.value, index, name)}
>
{moduleSettings.elementsOption[name] ? moduleSettings.elementsOption[name].map((name, key) => {
return (
<option key={key} name={name}>{name}</option>
)
}) : <span></span> }
</Input>
</td>
)
})
}
</tr>
)
})
}
</tbody>
</Table>
<Col md='12' sm='12'>
<br />
</Col>
<Row>
<Col md='4' sm='4'>
<FormGroup>
<Label for='addoption'>Add Platforms</Label>
<Input type='select' name='addoption' id='addoption' onChange={(e) => setSelectedOption(e.target.value)}>>
<option></option>
{!!plataforms && plataforms.map(option => {
return <option key={option.id} value={`${option.id}.${option.name}`}>{option.name}</option>
})}
</Input>
</FormGroup>
</Col>
<Col md='3' sm='4'>
<FormGroup>
<Label for='addoptionbutton'>&nbsp;</Label>
<Button.Ripple color='secondary' name="addoptionbutton" outline asyncOptions={e => console.log(e.getOptions)
} onClick={() => {
if (!selectedOption) return
const plataform = selectedOption.split('.')
if (platformsIDs.indexOf(plataform[0]) > 0) return
const elementAdded = dataElement.platforms.push({
name:plataform[1],
id: plataform[0],
key: plataform[0],
pivot: moduleSettings.newElement
})
setElement(
{
...dataElement,
elementAdded
}
)
}} >
add
</Button.Ripple>
</FormGroup>
</Col>
</Row>
</div>
) : (
<Fragment>
</Fragment>
)
}
export default ElementPlatform
// ** React Imports
import { Link } from 'react-router-dom'
import { cleanLayoutMenu } from '../store/actions'
import { store } from '@store/storeConfig/store'
// ** Custom Components
import Avatar from '@components/avatar'
// module settings
import moduleSettings from './module'
// ** Third Party Components
import axios from 'axios'
import { MoreVertical, Edit, FileText, Archive, Trash } from 'react-feather'
import { Badge, UncontrolledDropdown, DropdownToggle, DropdownMenu, DropdownItem } from 'reactstrap'
// ** Vars
const states = ['success', 'danger', 'warning', 'info', 'dark', 'primary', 'secondary']
const status = {
1: { title: 'Current', color: 'light-primary' },
2: { title: 'Professional', color: 'light-success' },
3: { title: 'Rejected', color: 'light-danger' },
4: { title: 'Resigned', color: 'light-warning' },
5: { title: 'Applied', color: 'light-info' }
}
export let data
// ** Get initial Data
axios.get('/api/datatables/initial-data').then(response => {
data = response.data
})
// ** Table Zero Config Column
export const basicColumns = [
{
name: 'ID',
selector: 'id',
sortable: true,
maxWidth: '100px'
},
{
name: 'Name',
selector: 'name',
sortable: true,
minWidth: '225px'
},
{
name: 'Email',
selector: 'email',
sortable: true,
minWidth: '310px'
},
{
name: 'Position',
selector: 'post',
sortable: true,
minWidth: '250px'
},
{
name: 'Age',
selector: 'age',
sortable: true,
minWidth: '100px'
},
{
name: 'Salary',
selector: 'salary',
sortable: true,
minWidth: '175px'
}
]
// ** Expandable table component
const ExpandableTable = ({ data }) => {
return (
<div className='expandable-content p-2'>
<p>
<span className='font-weight-bold'>City:</span> {data.city}
</p>
<p>
<span className='font-weight-bold'>Experience:</span> {data.experience}
</p>
<p className='m-0'>
<span className='font-weight-bold'>Post:</span> {data.post}
</p>
</div>
)
}
// ** Table Common Column
export const columns = [
{
name: 'Name',
selector: 'name',
sortable: true,
minWidth: '250px',
cell: row => (
<div className='d-flex align-items-center'>
{row.avatar === '' ? (
<Avatar color={`light-${states[row.status]}`} content={row.full_name} initials />
) : (
<Avatar img={require(`@src/assets/images/portrait/small/avatar-s-${row.avatar}`).default} />
)}
<div className='user-info text-truncate ml-1'>
<span className='d-block font-weight-bold text-truncate'>{row.full_name}</span>
<small>{row.post}</small>
</div>
</div>
)
},
{
name: 'Status',
selector: 'status',
sortable: true,
minWidth: '150px',
cell: row => {
return (
<Badge color={status[row.status].color} pill>
{status[row.status].title}
</Badge>
)
}
},
{
name: 'Actions',
allowOverflow: true,
cell: row => {
return (
<div className='d-flex'>
<UncontrolledDropdown>
<DropdownToggle className='pr-1' tag='span'>
<MoreVertical size={15} />
</DropdownToggle>
<DropdownMenu right>
<DropdownItem tag='a' href='/' className='w-100' onClick={e => e.preventDefault()}>
<FileText size={15} />
<span className='align-middle ml-50'>Details</span>
</DropdownItem>
<DropdownItem tag='a' href='/' className='w-100' onClick={e => e.preventDefault()}>
<Archive size={15} />
<span className='align-middle ml-50'>Archive</span>
</DropdownItem>
<DropdownItem tag='a' href='/' className='w-100' onClick={e => e.preventDefault()}>
<Trash size={15} />
<span className='align-middle ml-50'>Delete</span>
</DropdownItem>
</DropdownMenu>
</UncontrolledDropdown>
<Edit size={15} />
</div>
)
}
}
]
// ** Table Intl Column
export const multiLingColumns = [
{
name: 'Name',
selector: 'name',
sortable: true,
minWidth: '200px'
},
{
name: 'Status',
selector: 'status',
sortable: true,
minWidth: '150px',
cell: row => {
return (
<Badge color={status[row.status].color} pill>
{status[row.status].title}
</Badge>
)
}
},
{
name: 'Actions',
allowOverflow: true,
cell: row => {
return (
<div className='d-flex'>
<UncontrolledDropdown>
<DropdownToggle className='pr-1' tag='span'>
<MoreVertical size={15} />
</DropdownToggle>
<DropdownMenu right>
<DropdownItem>
<FileText size={15} />
<span className='align-middle ml-50'>Details</span>
</DropdownItem>
<DropdownItem>
<Archive size={15} />
<span className='align-middle ml-50'>Archive</span>
</DropdownItem>
<DropdownItem>
<Trash size={15} />
<span className='align-middle ml-50'>Delete</span>
</DropdownItem>
</DropdownMenu>
</UncontrolledDropdown>
<Edit size={15} />
</div>
)
}
}
]
// ** Table Server Side Column
export const serverSideColumns = [
{
name: 'ID',
selector: 'id',
sortable: true,
minWidth: '25px'
},
{
name: 'Name',
selector: 'name',
sortable: true,
minWidth: '225px',
cell: row => (
<div className='d-flex justify-content-left align-items-center'>
<div className='d-flex flex-column'>
<Link
to={`${moduleSettings.baseURL}/edit/${row.id}`}
className='user-name text-truncate mb-0'
onClick={() => store.dispatch(cleanLayoutMenu(row.id))}
>
<span className='font-weight-bold'>{row.name}</span>
</Link>
<small className='text-truncate text-muted mb-0'>edit</small>
</div>
</div>
)
},
{
name: 'Slug',
selector: 'slug',
sortable: true,
minWidth: '225px'
}
]
// ** Table Adv Search Column
export const advSearchColumns = [
{
name: 'Name',
selector: 'full_name',
sortable: true,
minWidth: '200px'
},
{
name: 'Email',
selector: 'email',
sortable: true,
minWidth: '250px'
},
{
name: 'Post',
selector: 'post',
sortable: true,
minWidth: '250px'
},
{
name: 'City',
selector: 'city',
sortable: true,
minWidth: '150px'
},
{
name: 'Date',
selector: 'start_date',
sortable: true,
minWidth: '150px'
},
{
name: 'Salary',
selector: 'salary',
sortable: true,
minWidth: '100px'
}
]
export default ExpandableTable
// ** React Imports
import { Fragment } from 'react'
import { Link } from 'react-router-dom'
// ** Custom Components
import Breadcrumbs from '@components/breadcrumbs'
// ** Third Party Components
import { Row, Col } from 'reactstrap'
// ** Tables
import ElementEdit from './main'
// ** Styles
import '@styles/react/libs/tables/react-dataTable-component.scss'
// module settings
import moduleSettings from '../module'
const Tables = () => {
return (
<Fragment>
<Breadcrumbs breadCrumbTitle='Screens' breadCrumbParent='Screens' breadCrumbActive={moduleSettings.mainTitle} />
<Row>
<Col sm='12'>
<Link to={moduleSettings.baseURL}>Back to {moduleSettings.mainTitleSingle}</Link>
</Col>
</Row>
<Row>
<Col sm='12'>
<div className="card">
<div className="card-header">
<h4 className="card-title">{moduleSettings.mainTitleSingle}</h4>
</div>
<div className="card-body">
<ElementEdit />
</div>
</div>
</Col>
</Row>
</Fragment>
)
}
export default Tables
import { useState, useEffect, Fragment } from 'react'
import { useParams, Link } from 'react-router-dom'
// ** Store & Actions
import { getLayoutPlaylists, updateLayoutPlaylists } from '../../store/actions'
import { useSelector, useDispatch } from 'react-redux'
import { Alert } from 'reactstrap'
import ElementCard from '../card'
// module settings
import moduleSettings from '../module'
const ElementEdit = () => {
// ** States & Vars
const store = useSelector(state => state.screens),
[dataElement, setElementData] = useState(null),
dispatch = useDispatch(),
{ id } = useParams()
const onSubmitHandler = values => {
dispatch(
updateLayoutPlaylists({
...dataElement,
id: values.id,
name: values.name,
slug: values.slug,
platforms: values.platforms,
view_all: values.view_all,
search: values.search,
seasons_carousel: values.seasons_carousel,
episodes_carousel: values.episodes_carousel,
related_movies: values.related_movies,
related_series: values.related_series,
player_related: values.player_related,
live_TV: values.live_TV,
my_stuff: values.my_stuff,
pages: values.pages
})
)
}
// ** Function to get user on mount
useEffect(() => {
dispatch(getLayoutPlaylists(id))
}, [dispatch])
// ** Update user image on mount or change
useEffect(() => {
if (store.selectedLayoutPlaylists !== null || (store.selectedLayoutPlaylists !== null && dataElement !== null && store.selectedLayoutPlaylists.id !== dataElement.id)) {
return setElementData(store.selectedLayoutPlaylists)
}
}, [store.selectedLayoutPlaylists])
return store.selectedLayoutPlaylists !== null && store.selectedLayoutPlaylists !== undefined ? (
<ElementCard
selectedElement={store.selectedLayoutPlaylists}
onSubmitHandler={onSubmitHandler}
/>
) : (
<Alert color='info'>
<h4 className='alert-heading'>Loading {moduleSettings.mainTitleSingle}</h4>
<div className='alert-body'>
If {moduleSettings.mainTitleSingle} with id: {id} doesn't exist. Check list of all {moduleSettings.mainTitle}: <Link to={moduleSettings.baseURL}>{moduleSettings.mainTitle} List</Link>
</div>
</Alert>
)
}
export default ElementEdit
// ** React Imports
import { Fragment } from 'react'
// ** Custom Components
import Breadcrumbs from '@components/breadcrumbs'
// ** Third Party Components
import { Row, Col } from 'reactstrap'
// ** Tables
import DataTable from './table'
// ** Styles
import '@styles/react/libs/tables/react-dataTable-component.scss'
// module settings
import moduleSettings from './module'
const Tables = () => {
return (
<Fragment>
<Breadcrumbs breadCrumbTitle='Screens' breadCrumbParent='Screens' breadCrumbActive={moduleSettings.mainTitle} />
<Row>
<Col sm='12'>
<DataTable />
</Col>
</Row>
</Fragment>
)
}
export default Tables
const moduleSettings = {
mainTitle: 'Layout playlists',
mainTitleSingle: 'Layout playlists',
apiBaseURL: '/api/layoutplaylists',
baseURL: '/screens/layoutplaylists',
newElement: {
slug: 0,
type: 0,
layout_type: 'loop_carousel',
nrows: 0,
ncolumns: 0,
number_max_elements: 0,
orientation: 'none',
navigation_type: 'none',
pagination_indicator: 'none',
view_all_position: 'none',
move_after_behaviour: 'fixed',
move_after_index_vertical: 0,
move_after_index_horizontal: 0,
show_element_loader: 0,
element_vertical_spacing: 0,
element_horizontal_spacing: 0,
assets_format_ratio: 0,
presentation_order: 'LTR',
style: 0,
animation_transition_speed: 0,
autoscroll_timeout: 0,
show_elements_view_bookmark: 'none',
show_elements_rating: 'none',
show_elements_title: 'none',
show_elements_favorite: 'none',
element_placeholder_image: 0,
show_playlist_title: 0,
show_asset_description: 0,
asset_description_size: 0,
metadata_position: 'inside',
image_resize_type: 'crop',
action_asset_selected: 'details'
},
elementsOption: {
layout_type: ['loop_carousel', 'carousel', 'grid', 'slider_4_1', 'slider_1_4'],
orientation : ['none', 'vertical', 'horizontal'],
navigation_type : ['none', 'scroll', 'page'],
pagination_indicator : ['page', 'element', 'none'],
view_all_position : ['none', 'top', 'bottom', 'first', 'last', 'title'],
move_after_behaviour : ['fixed', 'centered', 'index', 'when_needed'],
presentation_order : ['LTR', 'RTL'],
show_elements_view_bookmark : ['focus', 'always', 'none'],
show_elements_rating : ['focus', 'always', 'none'],
show_elements_title : ['focus', 'always', 'none'],
show_elements_favorite : ['focus', 'always', 'none'],
metadata_position : ['inside', 'top', 'bottom'],
image_resize_type : ['crop', 'fit'],
action_asset_selected : ['details', 'player']
}
}
export default moduleSettings
\ No newline at end of file
import { Fragment, useState, useEffect, memo } from 'react'
// ** Table Columns
import { serverSideColumns } from './data'
// ** Store & Actions
import { getData_layoutPlaylists } from '../store/actions'
import { useSelector, useDispatch } from 'react-redux'
import DataTableServerSide from '@components/datatable'
// module settings
import moduleSettings from './module'
const DataTable = () => {
// ** Store Vars
const dispatch = useDispatch()
const store = useSelector(state => state.screens)
return (
<DataTableServerSide
cardTitle={moduleSettings.mainTitle}
allData={store.allDataLayoutPlaylists}
getData={getData_layoutPlaylists}
serverSideColumns={serverSideColumns}
linkAddButton={`${moduleSettings.baseURL}/add`}
total={store.totalLayoutPlaylists}
/>
)
}
export default memo(DataTable)
...@@ -2,6 +2,7 @@ export * from './layoutmenus' ...@@ -2,6 +2,7 @@ export * from './layoutmenus'
export * from './layoutplayer' export * from './layoutplayer'
export * from './layoutepg' export * from './layoutepg'
export * from './layoutdetail' export * from './layoutdetail'
export * from './layoutplaylist'
export const resetResults = id => { export const resetResults = id => {
return async dispatch => { return async dispatch => {
......
import axios from 'axios'
import {setSaveSatus, setErrorMsg} from '../../../../redux/actions/api'
import moduleSettings from '../../layoutplaylists/module'
// ** Get table Data ///api/datatables/data
export const getData_layoutPlaylists = params => {
console.log(params)
return async dispatch => {
await axios.get(`${process.env.REACT_APP_API}${moduleSettings.apiBaseURL}`, {params}
).then(response => {
dispatch({
type: 'GET_DATA_LAYOUT_PLAYLISTS',
allData: response.data.data,
// datalayoumenus: response.data.invoices,
totalPages: response.data.recordsTotal,
params: response.data.params
})
})
}
}
export const addlayoutPlaylists = params => {
return (dispatch, getState) => {
axios
.post(`${process.env.REACT_APP_API}${moduleSettings.apiBaseURL}`, params)
.then(response => {
dispatch({
type: 'ADD_LAYOUTPLAYLISTS',
params
})
})
.then(() => {
dispatch(setSaveSatus(true))
// dispatch(getlayoumenu(layoumenu.id))
// dispatch(getData_layoumenus())
})
.catch(err => {
const errosMsg = !err.response ? 'error' : err.response.data.message
console.log(errosMsg)
dispatch(setErrorMsg(errosMsg))
})
}
}
export const getLayoutPlaylists = id => {
return async dispatch => {
await axios
.get(`${process.env.REACT_APP_API}${moduleSettings.apiBaseURL}/${id}`)
.then(response => {
// console.log('leu')
// console.log(response)
dispatch({
type: 'GET_LAYOUTPLAYLISTS',
data: response.data.data
})
})
.catch(err => console.log(err))
}
}
export const cleanLayoutPlaylists = id => {
return async dispatch => {
dispatch({
type: 'GET_LAYOUTPLAYLISTS',
data: null
})
}
}
export const updateLayoutPlaylists = params => {
return (dispatch, getState) => {
axios
.put(`${process.env.REACT_APP_API}${moduleSettings.apiBaseURL}/${params.id}`, params)
.then(response => {
dispatch({
type: 'UPDATE_LAYOUTPLAYLISTS',
params
})
})
.then(() => {
dispatch(setSaveSatus(true))
})
.catch(err => {
const errosMsg = !err.response ? 'error' : err.response.data.message
console.log(errosMsg)
dispatch(setErrorMsg(errosMsg))
})
}
}
\ No newline at end of file
...@@ -29,7 +29,13 @@ const initialState = { ...@@ -29,7 +29,13 @@ const initialState = {
totalLayoutDetails: 1, totalLayoutDetails: 1,
paramsLayoutDetails: {}, paramsLayoutDetails: {},
allDataLayoutDetails: [], allDataLayoutDetails: [],
selectedLayoutDetail: null selectedLayoutDetail: null,
dataLayoutPlaylists: [],
totalLayoutPlaylists: 1,
paramsLayoutPlaylists: {},
allDataLayoutPlaylists: [],
selectedLayoutPlaylist: null
} }
...@@ -162,6 +168,31 @@ const screens = (state = initialState, action) => { ...@@ -162,6 +168,31 @@ const screens = (state = initialState, action) => {
case 'ADD_LAYOUTDETAILS': case 'ADD_LAYOUTDETAILS':
return { ...state } return { ...state }
// layout PLAYLISTS
case 'GET_DATA_LAYOUT_PLAYLISTS':
return {
...state,
allDataLayoutPlaylists: action.allData,
dataLayoutPlaylists: action.data,
totalLayoutPlaylists: action.totalPages,
paramsLayoutPlaylists: action.params
}
case 'ADD_LAYOUTPLAYLISTS':
return { ...state }
case 'GET_PROJECT':
return { ...state,
selectedLayoutPlaylists : action.data
}
case 'GET_LAYOUTPLAYLISTS':
return { ...state,
selectedLayoutPlaylists : action.data
}
case 'UPDATE_LAYOUTPLAYLISTS':
return { ...state }
case 'ADD_LAYOUTPLAYLISTS':
return { ...state }
// default // default
default: default:
return state return state
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment