-
Notifications
You must be signed in to change notification settings - Fork 25
feat: split message queue process #74
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
Merged
jozsefdamokos
merged 15 commits into
feature/migration-logging-refactor
from
feat/split-message-queue-for-fixes
Oct 31, 2025
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
4d60eaa
feat: Split message queue process
jozsefdamokos 0ab0bf2
add basic frontend implementation
jozsefdamokos 671dfd2
add tests
jozsefdamokos b7b7322
fix test + phpstan
jozsefdamokos 17736ac
update comment
jozsefdamokos 7a1cc85
translate german snippets
jozsefdamokos 4f39cf7
fix non unique block names + remove try catch in controller
jozsefdamokos 4f1d083
fix test
jozsefdamokos 72025e0
Merge branch 'feature/migration-logging-refactor' into feat/split-mes…
jozsefdamokos df0b364
fix error code in test
jozsefdamokos 9fc1758
Merge branch 'feat/split-message-queue-for-fixes' of github.com:shopw…
jozsefdamokos 30cc691
Merge branch 'feature/migration-logging-refactor' into feat/split-mes…
jozsefdamokos bc71d7a
remove unused method
jozsefdamokos 3c87c5f
fix test
jozsefdamokos 13e8776
Merge branch 'feature/migration-logging-refactor' into feat/split-mes…
jozsefdamokos File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
20 changes: 20 additions & 0 deletions
20
...on/src/module/swag-migration/component/loading-screen/swag-migration-apply-fixes/index.ts
This file contains hidden or 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,20 @@ | ||
| import template from './swag-migration-apply-fixes.html.twig'; | ||
| import { MIGRATION_API_SERVICE } from '../../../../../core/service/api/swag-migration.api.service'; | ||
|
|
||
| /** | ||
| * @private | ||
| * @sw-package fundamentals@after-sales | ||
| */ | ||
| export default Shopware.Component.wrapComponentConfig({ | ||
| template, | ||
|
|
||
| inject: [ | ||
| MIGRATION_API_SERVICE, | ||
| ], | ||
|
|
||
| methods: { | ||
| async resumeMigration() { | ||
| await this.migrationApiService.resumeMigrationAfterFixes(); | ||
| }, | ||
| }, | ||
| }); |
32 changes: 32 additions & 0 deletions
32
.../component/loading-screen/swag-migration-apply-fixes/swag-migration-apply-fixes.html.twig
This file contains hidden or 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,32 @@ | ||
| {% block swag_migration_apply_fixes %} | ||
| <div class="swag-migration-loading-screen"> | ||
| {% block swag_migration_apply_fixes_card %} | ||
| <mt-card | ||
| class="swag-migration-loading-screen__card" | ||
| position-identifier="swag-migration-loading-screen__card" | ||
| > | ||
| {% block swag_migration_apply_fixes_content %} | ||
| <div class="swag-migration-loading-screen__content"> | ||
| {% block swag_migration_apply_fixes_header %} | ||
| <div class="swag-migration-loading-screen__header"> | ||
| {% block swag_migration_apply_fixes_title %} | ||
| <div class="swag-migration-loading-screen__title"> | ||
| {{ $tc('swag-migration.index.loadingScreenCard.applyFixes.title') }} | ||
| </div> | ||
| {% endblock %} | ||
| </div> | ||
| {% endblock %} | ||
|
|
||
| <mt-button | ||
| size="small" | ||
| variant="secondary" | ||
| @click="resumeMigration" | ||
| > | ||
| {{ $tc('swag-migration.index.loadingScreenCard.applyFixes.resumeButton') }} | ||
| </mt-button> | ||
| </div> | ||
| {% endblock %} | ||
| </mt-card> | ||
| {% endblock %} | ||
| </div> | ||
| {% endblock %} |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.