All Downloads are FREE. Search and download functionalities are using the official Maven repository.

diagram.lib.config.js Maven / Gradle / Ivy

There is a newer version: 1.3.46
Show newest version

function composeControllerUrl(componentNamespace, componentName, controller) {
    if (controller) {
        const lastDotIndex = controller.lastIndexOf('.')
        const controllerShortName = lastDotIndex > 0 ? controller.substring(lastDotIndex + 1 ) : controller
        const controllerFolder = lastDotIndex > 0 ? controller.substring(0, lastDotIndex ).split(".").join("/") : ""

        return 'controllers/' + componentNamespace + '/' + controllerFolder + '/' + controllerShortName
    }
    return "controllers/default"
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy