Using Modules from Other Applications¶
This guide explains how to use modules from another custom application in your own project. It provides detailed instructions on initializing external modules, adding them to the navigation menu, and integrating them into your project.
In this guide, we'll use the example of the vc-app-extend
project, which extends the functionality of the vc-app
project located in the sample
folder.
Adding Custom Application¶
To incorporate another custom application into your project:
- Install the dependencies.
- Configure the external application as a plugin.
- Create a link in the navigation menu.
Installing Dependencies¶
Let's assume you want to include modules from the vc-app
application into your custom application, vc-app-extend
. The package that contains these modules from vc-app
is named @vc-app/modules
. To add this dependency to your project, use the following command:
Initializing External Modules¶
After installing the dependency, you must initialize the Offers
module from the @vc-app/modules
package. To do this, navigate to vc-app-extend/src
and import the package in the main.ts
file as follows:
Since these modules are essentially Vue plugins and have an internal installation method, use the standard Vue
method use
for installation. In our example, we install the Offers
module:
import modules from "@vc-app/modules";
async function startApp() {
...
const app = createApp(RouterView);
app.use(VirtoShellFramework);
// Import and initialize the Offers module from the @vc-app application
app.use(modules.Offers.default, { router });
app.use(router);
...
}
startApp()
Warning
Ensure that all modules, including external ones, are installed after VirtoShellFramework
and before Vue router
. The installation order should be as follows:
VirtoShellFramework
modules
Vue router
In our example, we installed only one module. If you need to install all modules from the package, you can do so as follows:
import modules from "@vc-app/modules";
async function startApp() {
...
const app = createApp(RouterView);
app use(VirtoShellFramework);
// Import and initialize all available modules from the @vc-app application
Object.values(modules).forEach(module => {
app.use(module, { router });
})
app.use(router);
...
}
startApp()
Note
Notice that when initializing modules, we always pass the router
as the second argument to the use
method. This is necessary for the automatic registration of modules in the Vue routing system.
Adding a Module to the Navigation Menu¶
After installing your module, you can add a link to the navigation menu based on your project's requirements. To do this, navigate to vc-app-extend/src/pages
and locate the menuItems
variable in the App.vue
file. This variable serves as a storage for all navigation menu items and has its method, navigationMenuComposer
, which defines the properties of menu items.
Finding the Appropriate Blade for the Navigation Menu¶
To determine which blade to use for the navigation menu, we'll refer to the schema in the source code of the external application, vc-app
. In this case, as we intend to add Offers
to the menu, we'll locate the file containing the blade schema, grid.ts
, within the vc-app/src/modules/offers/pages
path. This particular file functions as the workspace blade
for the module. Crucially, the settings
object within this schema must have the value isWorkspace: true
.
Note
isWorkspace
is a special attribute that designates the primary blade of the module, from which all interactions with the module begin.
Expanding the Navigation Menu¶
Since dynamic blade components operate at runtime and lack an importable component for the openBlade
method, you can utilize an additional composable method called useBladeNavigation
. This method returns the component of the registered blade, resolveBladeByName
. To obtain the desired blade using this method, you need to pass the unique blade ID obtained in the Finding the Appropriate Blade for the Navigation Menu step.
vc-app-extend/src/pages/App.vue | |
---|---|
After completing all the steps to add the module to the navigation menu, you will have the following result:
Now, the Offers
module is ready for use!