Rename "circle" folder to "learningPath" folder

This commit is contained in:
Daniel Egger 2022-09-30 17:58:32 +02:00
parent 9d1eff5a42
commit 5a4ff1cfda
12 changed files with 7 additions and 7 deletions

View File

@ -1,7 +1,7 @@
<script setup lang="ts"> <script setup lang="ts">
import CircleDiagram from "@/components/circle/CircleDiagram.vue"; import CircleDiagram from "@/components/learningPath/CircleDiagram.vue";
import CircleOverview from "@/components/circle/CircleOverview.vue"; import CircleOverview from "@/components/learningPath/CircleOverview.vue";
import LearningSequence from "@/components/circle/LearningSequence.vue"; import LearningSequence from "@/components/learningPath/LearningSequence.vue";
import * as log from "loglevel"; import * as log from "loglevel";
import { useAppStore } from "@/stores/app"; import { useAppStore } from "@/stores/app";

View File

@ -1,5 +1,5 @@
<script setup lang="ts"> <script setup lang="ts">
import LearningContent from "@/components/circle/LearningContent.vue"; import LearningContent from "@/components/learningPath/LearningContent.vue";
import { useAppStore } from "@/stores/app"; import { useAppStore } from "@/stores/app";
import { useCircleStore } from "@/stores/circle"; import { useCircleStore } from "@/stores/circle";
import type { LearningContent as LearningContentType } from "@/types"; import type { LearningContent as LearningContentType } from "@/types";

View File

@ -5,7 +5,7 @@ import { useLearningPathStore } from "@/stores/learningPath";
import { useUserStore } from "@/stores/user"; import { useUserStore } from "@/stores/user";
import { onMounted } from "vue"; import { onMounted } from "vue";
import LearningPathDiagram from "@/components/circle/LearningPathDiagram.vue"; import LearningPathDiagram from "@/components/learningPath/LearningPathDiagram.vue";
import type { LearningPath } from "@/services/learningPath"; import type { LearningPath } from "@/services/learningPath";
import LearningPathViewVertical from "@/views/LearningPathViewVertical.vue"; import LearningPathViewVertical from "@/views/LearningPathViewVertical.vue";

View File

@ -3,7 +3,7 @@ import { useLearningPathStore } from "@/stores/learningPath";
import { useUserStore } from "@/stores/user"; import { useUserStore } from "@/stores/user";
import * as log from "loglevel"; import * as log from "loglevel";
import LearningPathDiagram from "@/components/circle/LearningPathDiagram.vue"; import LearningPathDiagram from "@/components/learningPath/LearningPathDiagram.vue";
import ItFullScreenModal from "@/components/ui/ItFullScreenModal.vue"; import ItFullScreenModal from "@/components/ui/ItFullScreenModal.vue";
log.debug("LearningPathView created"); log.debug("LearningPathView created");

View File

@ -1,7 +1,7 @@
<script setup lang="ts"> <script setup lang="ts">
import * as log from "loglevel"; import * as log from "loglevel";
import SelfEvaluation from "@/components/circle/SelfEvaluation.vue"; import SelfEvaluation from "@/components/learningPath/SelfEvaluation.vue";
import { useAppStore } from "@/stores/app"; import { useAppStore } from "@/stores/app";
import { useCircleStore } from "@/stores/circle"; import { useCircleStore } from "@/stores/circle";