Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
C
cms
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Pedro-dev_2
cms
Commits
38aa7fd8
Commit
38aa7fd8
authored
Apr 22, 2021
by
PDuarte
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
improvemens
parent
6ee4cc5f
Changes
11
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
405 additions
and
182 deletions
+405
-182
.env
.env
+3
-3
.env.production
.env.production
+0
-4
package.json
package.json
+1
-1
rootReducer.js
src/redux/reducers/rootReducer.js
+2
-2
TableServerSide.js
src/views/settings/projects/TableServerSide.js
+1
-1
data.js
src/views/settings/projects/data.js
+1
-1
index.js
src/views/settings/projects/edit/index.js
+151
-162
plataform.js
src/views/settings/projects/edit/plataform.js
+60
-0
projectCard.js
src/views/settings/projects/edit/projectCard.js
+178
-0
index.js
src/views/settings/store/actions/index.js
+3
-5
index.js
src/views/settings/store/reducer/index.js
+5
-3
No files found.
.env
View file @
38aa7fd8
SKIP_PREFLIGHT_CHECK=true
REACT_APP_BASENAME=
"/cms/"
REACT_APP_API
2
="http://192.168.99.100:8001/cms"
REACT_APP_API="http://134.209.18.22/cmsapi"
REACT_APP_BASENAME=
/cms
REACT_APP_API="http://192.168.99.100:8001/cms"
REACT_APP_API
1
="http://134.209.18.22/cmsapi"
.env.production
deleted
100644 → 0
View file @
6ee4cc5f
SKIP_PREFLIGHT_CHECK=true
REACT_APP_BASENAME= "/cms/"
REACT_APP_API2="http://192.168.99.100:8001/cms"
REACT_APP_API="http://134.209.18.22/cmsapi"
package.json
View file @
38aa7fd8
...
...
@@ -92,7 +92,7 @@
},
"scripts"
:
{
"start"
:
"react-app-rewired start"
,
"build"
:
"env-cmd -f .env.production react-app-rewired build"
,
"build"
:
"env-cmd -f .env.production
.local
react-app-rewired build"
,
"test"
:
"react-app-rewired test"
,
"eject"
:
"react-app-rewired eject"
,
"lint"
:
"eslint src/**/*.js src/**/*.jsx"
,
...
...
src/redux/reducers/rootReducer.js
View file @
38aa7fd8
...
...
@@ -14,7 +14,7 @@ import calendar from '@src/views/apps/calendar/store/reducer'
import
ecommerce
from
'@src/views/apps/ecommerce/store/reducer'
import
dataTables
from
'@src/views/tables/data-tables/store/reducer'
import
S
ettings
from
'@src/views/settings/store/reducer'
import
s
ettings
from
'@src/views/settings/store/reducer'
const
rootReducer
=
combineReducers
({
auth
,
...
...
@@ -28,7 +28,7 @@ const rootReducer = combineReducers({
calendar
,
ecommerce
,
dataTables
,
S
ettings
s
ettings
})
export
default
rootReducer
src/views/settings/projects/TableServerSide.js
View file @
38aa7fd8
...
...
@@ -17,7 +17,7 @@ import { Card, CardHeader, CardTitle, Input, Label, Row, Col } from 'reactstrap'
const
DataTableServerSide
=
()
=>
{
// ** Store Vars
const
dispatch
=
useDispatch
()
const
store
=
useSelector
(
state
=>
state
.
S
ettings
)
const
store
=
useSelector
(
state
=>
state
.
s
ettings
)
// ** States
const
[
currentPage
,
setCurrentPage
]
=
useState
(
1
)
...
...
src/views/settings/projects/data.js
View file @
38aa7fd8
...
...
@@ -259,7 +259,7 @@ export const serverSideColumns = [
<
Link
to
=
{
`/settings/projects/edit/
${
row
.
id
}
`
}
className
=
'user-name text-truncate mb-0'
onClick
=
{()
=>
store
.
dispatch
(
getProject
(
row
.
id
))}
//
onClick={() => store.dispatch(getProject(row.id))}
>
<
span
className
=
'font-weight-bold'
>
{
row
.
app_name
}
<
/span
>
<
/Link
>
...
...
src/views/settings/projects/edit/index.js
View file @
38aa7fd8
This diff is collapsed.
Click to expand it.
src/views/settings/projects/edit/plataform.js
0 → 100644
View file @
38aa7fd8
import
{
Media
,
Button
,
Label
,
Form
,
FormGroup
,
Input
,
Table
,
CustomInput
,
Card
,
CardBody
,
Row
,
Col
,
Nav
,
NavItem
,
NavLink
,
TabContent
,
TabPane
,
Alert
}
from
'reactstrap'
// ** Styles
import
'@styles/react/apps/app-users.scss'
const
ProjectPlatform
=
()
=>
{
return
(
<
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
>
Platforms
<
/th>
<
th
>
Active
<
/th>
<
/tr
>
<
/thead
>
<
tbody
>
<
tr
>
<
td
>
IOS
<
/td
>
<
td
>
<
CustomInput
type
=
'checkbox'
id
=
'admin-1'
label
=
''
defaultChecked
/>
<
/td
>
<
/tr
>
<
tr
>
<
td
>
Android
<
/td
>
<
td
>
<
CustomInput
type
=
'checkbox'
id
=
'staff-1'
label
=
''
/>
<
/td
>
<
/tr
>
<
tr
>
<
td
>
Android
Tv
<
/td
>
<
td
>
<
CustomInput
type
=
'checkbox'
id
=
'author-1'
label
=
''
defaultChecked
/>
<
/td
>
<
/tr
>
<
tr
>
<
td
>
Roku
<
/td
>
<
td
>
<
CustomInput
type
=
'checkbox'
id
=
'contributor-1'
label
=
''
/>
<
/td
>
<
/tr
>
<
tr
>
<
td
>
STV
<
/td
>
<
td
>
<
CustomInput
type
=
'checkbox'
id
=
'user-1'
label
=
''
/>
<
/td
>
<
/tr
>
<
/tbody
>
<
/Table
>
<
/div
>
)
}
export
default
ProjectPlatform
src/views/settings/projects/edit/projectCard.js
0 → 100644
View file @
38aa7fd8
// ** React Imports
import
{
useState
,
useEffect
,
Fragment
}
from
'react'
import
{
Media
,
Button
,
Label
,
Form
,
FormGroup
,
Input
,
Table
,
CustomInput
,
Card
,
CardBody
,
Row
,
Col
,
Nav
,
NavItem
,
NavLink
,
TabContent
,
TabPane
,
Alert
}
from
'reactstrap'
import
{
isEmptyObject
}
from
'jquery'
// ** Store & Actions
import
{
updateProject
}
from
'../../store/actions'
import
{
useForm
}
from
'react-hook-form'
import
classnames
from
'classnames'
// ** Function to handle form submit
const
onSubmit
=
values
=>
{
// if (isObjEmpty(errors)) {
// dispatch(
// updateProject({
// id: values.id,
// app_name: values.app_name,
// customer_name: values.customer_name
// })
// )
// }
}
const
ProjectCard
=
({
selectedProject
})
=>
{
const
[
dataProject
,
setProjectData
]
=
useState
(
null
)
// const { register, errors, handleSubmit } = useForm()
// const [dataProject, setProjectData] = useState(null)
// // ** Update user image on mount or change
// useEffect(() => {
// if (selectedProject !== null || (selectedProject !== null && dataProject !== null && selectedProject.id !== dataProject.id)) {
// return setProjectData(selectedProject)
// }
// }, [selectedProject])
useEffect
(()
=>
{
if
(
selectedProject
!==
null
||
(
selectedProject
!==
null
&&
dataProject
!==
null
&&
selectedProject
.
id
!==
dataProject
.
id
))
{
return
setProjectData
(
selectedProject
)
}
},
[
selectedProject
])
return
(
<
Fragment
>
<
Form
// onSubmit={handleSubmit(onSubmit)}
>
<
Row
>
<
Col
md
=
'4'
sm
=
'12'
>
<
FormGroup
>
<
Label
for
=
'email'
>
ID
<
/Label
>
<
Input
readOnly
=
{
true
}
type
=
'text'
name
=
'id'
id
=
'id'
// innerRef={register({ required: true })}
placeholder
=
'id'
defaultValue
=
'1'
/>
<
/FormGroup
>
<
/Col
>
<
Col
md
=
'4'
sm
=
'12'
>
<
FormGroup
>
<
Label
for
=
'app_name'
>
Project
Name
<
/Label
>
<
Input
type
=
'text'
name
=
'app_name'
id
=
'app_name'
// innerRef={register({ required: true })}
placeholder
=
'Project Name'
defaultValue
=
{
dataProject
&&
dataProject
.
app_name
}
// className={classnames({ 'is-invalid': errors['app_name'] })}
/
>
<
/FormGroup
>
<
/Col
>
<
Col
md
=
'4'
sm
=
'12'
>
<
FormGroup
>
<
Label
for
=
'customer_name'
>
Client
Name
<
/Label
>
<
Input
type
=
'text'
name
=
'customer_name'
id
=
'customer_name'
// innerRef={register({ required: true })}
placeholder
=
'Client Name'
defaultValue
=
{
dataProject
&&
dataProject
.
customer_name
}
// className={classnames({ 'is-invalid': errors['customer_name'] })}
/
>
<
/FormGroup
>
<
/Col
>
{
/* <Col md='4' sm='12'>
<FormGroup>
<Label for='email'>Email</Label>
<Input disabled='disabled' type='text' id='email' placeholder='Email' defaultValue={ProjectData && ProjectData.email} />
</FormGroup>
</Col> */
}
{
/* <Col md='4' sm='12'>
<FormGroup>
<Label for='status'>Status</Label>
<Input type='select' name='status' id='status' defaultValue={ProjectData && ProjectData.status}>
<option value='pending'>Pending</option>
<option value='active'>Active</option>
<option value='inactive'>Inactive</option>
</Input>
</FormGroup>
</Col> */
}
<
Col
sm
=
'6'
>
<
div
className
=
'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
>
Platforms
<
/th>
<
th
>
Active
<
/th>
<
/tr
>
<
/thead
>
<
tbody
>
<
tr
>
<
td
>
IOS
<
/td
>
<
td
>
<
CustomInput
type
=
'checkbox'
id
=
'admin-1'
label
=
''
defaultChecked
/>
<
/td
>
<
/tr
>
<
tr
>
<
td
>
Android
<
/td
>
<
td
>
<
CustomInput
type
=
'checkbox'
id
=
'staff-1'
label
=
''
/>
<
/td
>
<
/tr
>
<
tr
>
<
td
>
Android
Tv
<
/td
>
<
td
>
<
CustomInput
type
=
'checkbox'
id
=
'author-1'
label
=
''
defaultChecked
/>
<
/td
>
<
/tr
>
<
tr
>
<
td
>
Roku
<
/td
>
<
td
>
<
CustomInput
type
=
'checkbox'
id
=
'contributor-1'
label
=
''
/>
<
/td
>
<
/tr
>
<
tr
>
<
td
>
STV
<
/td
>
<
td
>
<
CustomInput
type
=
'checkbox'
id
=
'user-1'
label
=
''
/>
<
/td
>
<
/tr
>
<
/tbody
>
<
/Table
>
<
/div
>
<
/Col
>
<
Col
className
=
'd-flex flex-sm-row flex-column mt-2'
sm
=
'12'
>
<
Button
.
Ripple
className
=
'mb-1 mb-sm-0 mr-0 mr-sm-1'
type
=
'submit'
color
=
'primary'
>
Save
Changes
<
/Button.Ripple
>
<
Button
.
Ripple
color
=
'secondary'
outline
>
Reset
<
/Button.Ripple
>
<
/Col
>
<
/Row
>
<
/Form
>
<
/Fragment
>
)
}
export
default
ProjectCard
\ No newline at end of file
src/views/settings/store/actions/index.js
View file @
38aa7fd8
...
...
@@ -20,7 +20,6 @@ export const getData = params => {
export
const
setSaveSatus
=
params
=>
{
return
async
dispatch
=>
{
dispatch
({
type
:
'SAVE_STATUS'
,
status
:
params
...
...
@@ -48,8 +47,7 @@ export const getData_projects = params => {
type
:
'GET_DATA_PROJECTS'
,
allData
:
response
.
data
.
allData
,
// dataProjects: response.data.invoices,
totalPages
:
response
.
data
.
total
,
selectedProject
:
null
,
totalPages
:
response
.
data
.
total
,
params
:
response
.
data
.
params
})
})
...
...
@@ -63,10 +61,10 @@ export const getProject = id => {
.
get
(
`
${
process
.
env
.
REACT_APP_API
}
/api/projects/
${
id
}
`
)
.
then
(
response
=>
{
// console.log('leu')
// console.log(response)
//
console.log(response)
dispatch
({
type
:
'GET_PROJECT'
,
selectedProject
:
response
.
data
data
:
response
.
data
.
data
})
})
.
catch
(
err
=>
console
.
log
(
err
))
...
...
src/views/settings/store/reducer/index.js
View file @
38aa7fd8
...
...
@@ -20,7 +20,7 @@ const initialState = {
selectedPlatform
:
null
}
const
S
ettings
=
(
state
=
initialState
,
action
)
=>
{
const
s
ettings
=
(
state
=
initialState
,
action
)
=>
{
switch
(
action
.
type
)
{
case
'GET_DATA'
:
return
{
...
...
@@ -50,12 +50,14 @@ const Settings = (state = initialState, action) => {
allDataProjects
:
action
.
allData
,
dataProjects
:
action
.
data
,
totalProjects
:
action
.
totalPages
,
selectedProject
:
null
,
paramsProjects
:
action
.
params
}
case
'GET_PROJECT'
:
return
{
...
state
,
selectedProject
:
action
.
selectedProject
selectedProject
:
action
.
data
}
case
'UPDATE_PROJECT'
:
...
...
@@ -74,4 +76,4 @@ const Settings = (state = initialState, action) => {
}
}
export
default
S
ettings
export
default
s
ettings
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment