-
Notifications
You must be signed in to change notification settings - Fork 712
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Lesson Summary children routes refactor
- Loading branch information
1 parent
64f1d15
commit e7b8e4e
Showing
10 changed files
with
144 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 0 additions & 16 deletions
16
kolibri/plugins/coach/assets/src/views/lessons/LessonEditDetailsPage/EditLessonDetails.vue
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
...ns/coach/assets/src/views/lessons/LessonResourceSelectionPage/LessonResourceSelection.vue
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
...ssons/LessonSelectionContentPreviewPage/LessonContentPreview/PreviewSelectedResources.vue
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
...plugins/coach/assets/src/views/lessons/LessonSummaryPage/sidePanels/EditLessonDetails.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<template> | ||
|
||
<SidePanelModal | ||
alignment="right" | ||
sidePanelWidth="700px" | ||
closeButtonIconType="close" | ||
@closePanel="() => $router.go(-1)" | ||
@shouldFocusFirstEl="() => null" | ||
> | ||
<template #header> | ||
<KIconButton | ||
v-if="true" | ||
icon="back" | ||
@click="$router.go(-1)" | ||
/> | ||
</template> | ||
<h1>EditLessonDetails</h1> | ||
</SidePanelModal> | ||
|
||
</template> | ||
|
||
|
||
<script> | ||
import SidePanelModal from 'kolibri-common/components/SidePanelModal'; | ||
export default { | ||
name: 'EditLessonDetails', | ||
components: { | ||
SidePanelModal, | ||
}, | ||
}; | ||
</script> |
34 changes: 34 additions & 0 deletions
34
...s/coach/assets/src/views/lessons/LessonSummaryPage/sidePanels/LessonResourceSelection.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<template> | ||
|
||
<SidePanelModal | ||
alignment="right" | ||
sidePanelWidth="700px" | ||
closeButtonIconType="close" | ||
@closePanel="() => $router.go(-1)" | ||
@shouldFocusFirstEl="() => null" | ||
> | ||
<template #header> | ||
<KIconButton | ||
v-if="true" | ||
icon="back" | ||
@click="$router.go(-1)" | ||
/> | ||
</template> | ||
<h1>LessonResourceSelection</h1> | ||
</SidePanelModal> | ||
|
||
</template> | ||
|
||
|
||
<script> | ||
import SidePanelModal from 'kolibri-common/components/SidePanelModal'; | ||
export default { | ||
name: 'LessonResourceSelection', | ||
components: { | ||
SidePanelModal, | ||
}, | ||
}; | ||
</script> |
27 changes: 27 additions & 0 deletions
27
.../coach/assets/src/views/lessons/LessonSummaryPage/sidePanels/PreviewSelectedResources.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<template> | ||
|
||
<SidePanelModal | ||
alignment="right" | ||
sidePanelWidth="700px" | ||
closeButtonIconType="close" | ||
@closePanel="() => $router.go(-1)" | ||
@shouldFocusFirstEl="() => null" | ||
> | ||
<h1>PreviewSelectedResources</h1> | ||
</SidePanelModal> | ||
|
||
</template> | ||
|
||
|
||
<script> | ||
import SidePanelModal from 'kolibri-common/components/SidePanelModal'; | ||
export default { | ||
name: 'PreviewSelectedResources', | ||
components: { | ||
SidePanelModal, | ||
}, | ||
}; | ||
</script> |