Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
2
2023-029
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
2023-029
2023-029
Commits
1f4a5557
Commit
1f4a5557
authored
Aug 22, 2023
by
janithGamage
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: update
desc : update project
parent
fa01b9c3
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
76 additions
and
21 deletions
+76
-21
Project/Frontend/SignConnectPlus/src/layout/MainLayout/Header/HeaderContent/Profile/index.tsx
.../layout/MainLayout/Header/HeaderContent/Profile/index.tsx
+7
-7
Project/Frontend/SignConnectPlus/src/pages/learning-management/learning-curriculums-subscribed/list/list.tsx
...-management/learning-curriculums-subscribed/list/list.tsx
+29
-0
Project/Frontend/SignConnectPlus/src/pages/learning-management/learning-curriculums/list/list.tsx
...es/learning-management/learning-curriculums/list/list.tsx
+28
-0
Project/Frontend/SignConnectPlus/src/pages/learning-management/list/list.tsx
...gnConnectPlus/src/pages/learning-management/list/list.tsx
+0
-12
Project/Frontend/SignConnectPlus/src/routes/MainRoutes.tsx
Project/Frontend/SignConnectPlus/src/routes/MainRoutes.tsx
+12
-2
No files found.
Project/Frontend/SignConnectPlus/src/layout/MainLayout/Header/HeaderContent/Profile/index.tsx
View file @
1f4a5557
import
{
useRef
,
useState
,
ReactNode
,
SyntheticEvent
}
from
'
react
'
;
import
{
ReactNode
,
SyntheticEvent
,
useRef
,
useState
}
from
'
react
'
;
import
{
useNavigate
}
from
'
react-router
'
;
// material-ui
import
{
useTheme
}
from
'
@mui/material/styles
'
;
import
{
Box
,
ButtonBase
,
CardContent
,
ClickAwayListener
,
Grid
,
Paper
,
Popper
,
Stack
,
Tab
,
Tabs
,
Tooltip
,
Typography
}
from
'
@mui/material
'
;
import
{
useTheme
}
from
'
@mui/material/styles
'
;
// project import
import
ProfileTab
from
'
./ProfileTab
'
;
import
SettingTab
from
'
./SettingTab
'
;
import
Avatar
from
'
components/@extended/Avatar
'
;
import
MainCard
from
'
components/MainCard
'
;
import
Transitions
from
'
components/@extended/Transitions
'
;
import
IconButton
from
'
components/@extended/IconButton
'
;
import
Transitions
from
'
components/@extended/Transitions
'
;
import
MainCard
from
'
components/MainCard
'
;
import
useAuth
from
'
hooks/useAuth
'
;
import
ProfileTab
from
'
./ProfileTab
'
;
import
SettingTab
from
'
./SettingTab
'
;
// assets
import
avatar1
from
'
assets/images/users/avatar-1.png
'
;
import
{
LogoutOutlined
,
SettingOutlined
,
UserOutlined
}
from
'
@ant-design/icons
'
;
import
avatar1
from
'
assets/images/users/avatar-1.png
'
;
// types
import
{
ThemeMode
}
from
'
types/config
'
;
...
...
Project/Frontend/SignConnectPlus/src/pages/learning-management/learning-curriculums-subscribed/list/list.tsx
0 → 100644
View file @
1f4a5557
// material-ui
// third-party
// project import
import
MainCard
from
'
components/MainCard
'
;
import
ScrollX
from
'
components/ScrollX
'
;
// assets
//types
// ==============================|| List ||============================== //
const
List
=
()
=>
{
return
(
<
MainCard
content=
{
false
}
>
<
ScrollX
>
{
/* content here */
}
<
h1
>
Sample Page 2
</
h1
>
</
ScrollX
>
</
MainCard
>
)
}
export
default
List
;
Project/Frontend/SignConnectPlus/src/pages/learning-management/learning-curriculums/list/list.tsx
0 → 100644
View file @
1f4a5557
// material-ui
// third-party
// project import
import
MainCard
from
'
components/MainCard
'
;
import
ScrollX
from
'
components/ScrollX
'
;
// assets
//types
// ==============================|| List ||============================== //
const
List
=
()
=>
{
return
(
<
MainCard
content=
{
false
}
>
<
ScrollX
>
{
/* content here */
}
<
h1
>
Sample Page
</
h1
>
</
ScrollX
>
</
MainCard
>
)
}
export
default
List
;
Project/Frontend/SignConnectPlus/src/pages/learning-management/list/list.tsx
deleted
100644 → 0
View file @
fa01b9c3
// material-ui
// project import
// ==============================|| List ||============================== //
const
List
=
()
=>
(
<>
</>
);
export
default
List
;
Project/Frontend/SignConnectPlus/src/routes/MainRoutes.tsx
View file @
1f4a5557
...
...
@@ -41,6 +41,12 @@ const TutorialManagementList = Loadable(lazy(() => import('pages/parameter/tutor
// render - ssl translate process page
const
SSLTranslateProcess
=
Loadable
(
lazy
(()
=>
import
(
'
pages/ssl-translate/process/process
'
)));
// render - learning-curriculums-subscribed page
const
LearningCurriculumsSubscribed
=
Loadable
(
lazy
(()
=>
import
(
'
pages/learning-management/learning-curriculums-subscribed/list/list
'
)));
// render - learning-curriculums page
const
LearningCurriculums
=
Loadable
(
lazy
(()
=>
import
(
'
pages/learning-management/learning-curriculums/list/list
'
)));
// ==============================|| MAIN ROUTING ||============================== //
const
MainRoutes
=
{
...
...
@@ -94,8 +100,12 @@ const MainRoutes = {
path
:
'
learning-management
'
,
children
:
[
{
path
:
'
list
'
,
element
:
<
MaintenanceUnderConstruction
/>
path
:
'
curriculums
'
,
element
:
<
LearningCurriculums
/>
},
{
path
:
'
curriculums-subscribed
'
,
element
:
<
LearningCurriculumsSubscribed
/>
}
]
},
...
...
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