pimcore / studio-ui-bundle
Pimcore Studio Ui Bundle
Installs: 1 302
Dependents: 0
Suggesters: 0
Security: 0
Stars: 20
Watchers: 11
Forks: 8
Open Issues: 241
Language:TypeScript
Type:pimcore-bundle
Requires
- php: ~8.3.0 || ~8.4.0
- pimcore/pimcore: ^12.x-dev
- pimcore/studio-backend-bundle: 1.x-dev
Requires (Dev)
- codeception/codeception: ^5.0.10
- codeception/module-asserts: ^2
- codeception/module-symfony: ^3.1.1
- codeception/phpunit-wrapper: ^9
- fakerphp/faker: ^1.23
- nyholm/psr7: ^1
- phpstan/phpstan: ^1.10.5
- phpstan/phpstan-symfony: ^1.2.20
- phpunit/phpunit: 10.2.7
- symfony/phpunit-bridge: ^6
- 1.x-dev
- dev-nightly
- dev-runner_update
- dev-1123-add-readonly-mode
- dev-1009-error-handling
- dev-nav-translation-adjustments
- dev-tree-performance
- dev-fix-save-publish
- dev-grid-search
- dev-metadata-fixes
- dev-tranlsation-nav
- dev-1128-upd-restriction-settings-in-field-collections
- dev-add-missing-context-menu-items-for-data-objects
- dev-111-translations-phase-1
- dev-1264-fix-field-collections-view
- dev-1084-translation-keys
- dev-1185-fix-permissions
- dev-1186-fix-select-behavior
- dev-translation-sdk
- dev-1170-detail-view
- dev-1186-fix-multiselect
- dev-installer
- dev-wysiwyg
- dev-1168-menu
- dev-validation-error-messages
- dev-simple-search
- dev-merge-conflict-test
- dev-Improve-static-resources-resolver-exception-message
- dev-887-hotspot-marker-additional-data
- dev-950-missing-tree-data-object-context-menu-actions-add-object
- dev-963-refresh-problem-when-deleting-an-asset-in-list-view
- dev-asset-selector-styling
- dev-content-layout-addition
- dev-default-values
- dev-image-crop
- dev-hotspot-image-original
- dev-icons-update
- dev-740-implement-edit-tab
- dev-dependabot/github_actions/pimcore/workflows-collection-public-1.5.0
- dev-dependabot/github_actions/cla-assistant/github-action-2.6.1
- dev-workflow-actions
- dev-wip-horizontal-scroll
- dev-badge-tag
- dev-refactor-to-accordion-shared-component
- dev-358-versions-clear-all-adjustments
- dev-198-improve-thumbnails-in-folder-preview
- dev-97-error-messages-and-quick-snackbar
- dev-inspire-demo
This package is auto-updated.
Last update: 2025-04-03 00:26:22 UTC
README
The Studio UI Bundle provides a Backend UI for Pimcore. It is based on the React framework.
Admin UI: {your-domain}/pimcore-studio
Storybook: {your-domain/storybook}
How to install
How to open
Access it under {your-domain}/pimcore-studio
Run the UI under a different URL
To change the URL you can add the following configuration:
´´´yaml pimcore_studio_ui: url_path: '/my-backend' ´´´
Studio will be now accessible under {your-domain}/my-backend
.
Development
How to install
- Navigate to the plugin directory.
- Change to the assets directory
cd ./assets
- Install dependencies
npm install
How to build
Create a new build by running:
npm run build
How to run the dev-server (HMR/Live reloading)
Pimcore config
Enable your local domains in terms of CSP (Content-Security-Policy) in the Pimcore config file (./config/config.yml
)
pimcore_admin:
admin_csp_header:
enabled: true
additional_urls:
connect-src:
- 'ws://localhost:3030'
- 'ws://localhost:3031'
- 'http://localhost:3030'
- 'http://localhost:3031'
script-src:
- 'http://localhost:3030'
- 'http://localhost:3031'
font-src:
- 'http://localhost:3030'
- 'http://localhost:3031'
style-src:
- 'http://localhost:3030'
- 'http://localhost:3031'
How to run and access the dev-server
Use the following command to run the dev-server:
npm run dev-server
Now your dev-server should be running (the dev server started on the same URL, but it’s using Webpack HMR).
You can access it under your normal project domain:
{your-domain}/pimcore-studio
Storybook
Pimcore studio is using Storybook for documentation of React components.
Commands
npm run storybook // run storybook with live reloading
npm run build-storybook // for building storybook for a static hosting
Docker environment
To use Storybook in your local environment ensure that you open up port 6006
node:
ports:
- "6006:6006"
...
Nginx configuration
You should take care of the following configuration:
server {
location ^~ /storybook/ {
proxy_pass http://node:6006/;
}
location ^~ /__webpack_hmr {
proxy_pass http://node:6006/__webpack_hmr;
}
}
Now ensure that Storybook is running via npm run storybook
.
Finally, you can access it under {your-domain/storybook}