Skip to content

Commit

Permalink
Add PrintingToggleToolHandler.js that disables the default printing tool
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasstein committed Sep 24, 2019
1 parent 8a6da16 commit 0fa8b28
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export default declare({
_handleDrawTemplateDimensions() {
this._printingPreviewDrawer._removeGraphicFromGraphicsLayer();
const properties = this._printingEnhancedProperties._properties;
if ((this._printingToggleTool.active || this._printingEnhancedToggleTool.active) && this.showPrintPreview) {
if (((this._printingToggleTool && this._printingToggleTool.active) || this._printingEnhancedToggleTool.active) && this.showPrintPreview) {
this._printingPreviewDrawer.drawTemplateDimensions(this[_printInfos], this[_templateOptions], properties.defaultPageUnit);
}
},
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/*
* Copyright (C) 2019 con terra GmbH ([email protected])
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export default class PrintingToggleToolHandler {

activate() {
this._enablePrintigToogleTool(false);
}

deactivate() {
this._enablePrintigToogleTool(true);
}

_enablePrintigToogleTool(enabled) {
const componentName = "PrintingToggleTool";
const bid = "printing";
const componentConfig = this._configAdminService.getConfiguration(bid + "-" + componentName, bid);
componentConfig.update({componentEnabled: enabled});
}

}
9 changes: 9 additions & 0 deletions src/main/js/bundles/dn_printingenhanced/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,15 @@
}
}
},
{
"name": "PrintingToggleToolHandler",
"references": [
{
"name": "_configAdminService",
"providing": "ct.framework.api.ConfigurationAdmin"
}
]
},
{
"name": "PrintViewModelPatch",
"provides": [
Expand Down
1 change: 1 addition & 0 deletions src/main/js/bundles/dn_printingenhanced/module.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ import "./PrintingPropertiesOverWriter";
import "./PrintingPreviewDrawer";
import "./PrintingEnhancedWidgetFactory";
import "./PrintViewModelPatch";
import "./PrintingToggleToolHandler";

0 comments on commit 0fa8b28

Please sign in to comment.