Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
kszkepzes-frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
JetBrains YouTrack
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KSZK
DevTeam
kszkepzes
old
kszkepzes-frontend
Commits
b78c43df
Commit
b78c43df
authored
6 years ago
by
Chif Gergő
Browse files
Options
Downloads
Patches
Plain Diff
Romove TraineeDetailPage
parent
c7b995c7
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/components/Main.js
+0
-2
0 additions, 2 deletions
src/components/Main.js
src/components/pages/TraineeDetail.js
+0
-57
0 additions, 57 deletions
src/components/pages/TraineeDetail.js
with
0 additions
and
59 deletions
src/components/Main.js
+
0
−
2
View file @
b78c43df
...
...
@@ -10,7 +10,6 @@ import Statistics from './pages/Statistics';
import
Groups
from
'
./pages/Groups
'
;
import
News
from
'
./pages/News
'
;
import
EventDetail
from
'
./pages/EventDetail
'
;
import
TraineeDetail
from
'
./pages/TraineeDetail
'
;
const
Main
=
()
=>
(
<
Switch
>
...
...
@@ -23,7 +22,6 @@ const Main = () => (
<
Route
path
=
'
/statistics
'
component
=
{
Statistics
}
/
>
<
Route
path
=
'
/groups
'
component
=
{
Groups
}
/
>
<
Route
path
=
'
/events/:id
'
component
=
{
EventDetail
}
/
>
<
Route
path
=
'
/trainees/:id
'
component
=
{
TraineeDetail
}
/
>
<
Route
component
=
{
NotFound
}
/
>
<
/Switch
>
);
...
...
This diff is collapsed.
Click to expand it.
src/components/pages/TraineeDetail.js
deleted
100644 → 0
+
0
−
57
View file @
c7b995c7
import
React
,
{
Component
}
from
'
react
'
;
import
{
Container
,
Item
,
Button
,
Comment
,
Form
,
Header
,
Table
,
Icon
,
Checkbox
,
}
from
'
semantic-ui-react
'
;
import
{
connect
}
from
'
react-redux
'
;
import
moment
from
'
moment
'
;
import
{
getEvents
,
getTraineeById
}
from
'
../../actions/statistics
'
;
class
TraineeDetail
extends
Component
{
componentWillMount
()
{
this
.
props
.
getTraineeById
(
this
.
props
.
match
.
params
.
id
);
//this.props.getNotesByTrainee(this.props.match.params.id);
this
.
props
.
getEvents
();
}
renderTrainee
()
{
const
{
full_name
,
nick
}
=
this
.
props
.
selectedTrainee
;
return
(
<
Item
>
<
Item
.
Header
as
=
'
h2
'
>
{
full_name
}
<
/Item.Header
>
<
Item
.
Header
as
=
'
h3
'
>
{
nick
}
<
/Item.Header
>
<
/Item
>
);
}
render
()
{
return
(
<
Container
>
<
Container
textAlign
=
'
center
'
>
{
this
.
props
.
selectedTrainee
?
this
.
renderTrainee
()
:
''
}
<
/Container
>
<
Container
style
=
{{
padding
:
'
80px
'
,
}}
/
>
<
/Container
>
);
}
}
const
mapStateToProps
=
({
events
:
{
events
},
trainees
:
{
selectedTrainee
}
})
=>
(
{
events
,
selectedTrainee
});
export
default
connect
(
mapStateToProps
,
{
getEvents
,
getTraineeById
})(
TraineeDetail
);
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment