-
Notifications
You must be signed in to change notification settings - Fork 0
chore: re-organize frontend folder structure #109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,10 +1,10 @@ | ||
| import { ref, computed } from 'vue' | ||
| import type { ColumnInfo } from '@frontend/types/wikibase-schema' | ||
| import { useDragDropStore } from '@frontend/stores/drag-drop.store' | ||
| import { useSchemaStore } from '@frontend/stores/schema.store' | ||
| import { useDragDropHandlers } from '@frontend/composables/useDragDropHandlers' | ||
| import { useValidationCore } from '@frontend/composables/useValidationCore' | ||
| import { useDropZoneStyling } from '@frontend/composables/useDropZoneStyling' | ||
| import { useDragDropStore } from '@frontend/features/data-processing/stores/drag-drop.store' | ||
| import { useSchemaStore } from '@frontend/features/wikibase-schema/stores/schema.store' | ||
| import type { ColumnInfo } from '@frontend/shared/types/wikibase-schema' | ||
| import { useDragDropHandlers } from '@frontend/shared/composables/useDragDropHandlers' | ||
| import { useValidationCore } from '@frontend/features/wikibase-schema/composables/useValidationCore' | ||
| import { useDropZoneStyling } from '@frontend/shared/composables/useDropZoneStyling' | ||
|
Comment on lines
+2
to
+7
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
-import type { ColumnInfo } from '@frontend/shared/types/wikibase-schema'
+import type { ColumnInfo, WikibaseDataType } from '@frontend/shared/types/wikibase-schema'Also applies to: 26-27 🤖 Prompt for AI Agents |
||
|
|
||
| /** | ||
| * Simplified schema drop zone composable using shared validation and styling | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import type { UUID } from 'crypto'is invalid and will break buildsNode/Bun’s
cryptomodule exports therandomUUID()function but does not export aUUIDtype alias.TypeScript will raise “Module … has no exported member ‘UUID’”.
Proposed quick fix:
All
UUIDusages below then remain valid.📝 Committable suggestion
🤖 Prompt for AI Agents