@genexus/genexus-ide-ui 1.1.35 → 1.1.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/genexus-ide-ui.cjs.js +1 -1
- package/dist/cjs/gx-ide-kb-manager-import.cjs.entry.js +59 -17
- package/dist/cjs/gx-ide-kb-manager-import.cjs.entry.js.map +1 -1
- package/dist/cjs/gx-ide-team-dev-bring-changes.cjs.entry.js +1 -1
- package/dist/cjs/gx-ide-team-dev-commit.cjs.entry.js +645 -296
- package/dist/cjs/gx-ide-team-dev-commit.cjs.entry.js.map +1 -1
- package/dist/cjs/gx-ide-team-dev-history.cjs.entry.js +1 -1
- package/dist/cjs/gx-ide-team-dev-history.cjs.entry.js.map +1 -1
- package/dist/cjs/gx-ide-team-dev-update.cjs.entry.js +8 -3
- package/dist/cjs/gx-ide-team-dev-update.cjs.entry.js.map +1 -1
- package/dist/cjs/gx-ide-ww-files.cjs.entry.js +4 -25
- package/dist/cjs/gx-ide-ww-files.cjs.entry.js.map +1 -1
- package/dist/cjs/helpers-8fb178a2.js +30 -0
- package/dist/cjs/helpers-8fb178a2.js.map +1 -0
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/{utilities-11683cc0.js → utilities-0e316b39.js} +6 -6
- package/dist/cjs/utilities-0e316b39.js.map +1 -0
- package/dist/collection/collection-manifest.json +1 -1
- package/dist/collection/components/kb-manager-import/helpers.js +6 -3
- package/dist/collection/components/kb-manager-import/helpers.js.map +1 -1
- package/dist/collection/components/kb-manager-import/kb-manager-import.css +5 -0
- package/dist/collection/components/kb-manager-import/kb-manager-import.js +56 -12
- package/dist/collection/components/kb-manager-import/kb-manager-import.js.map +1 -1
- package/dist/collection/components/team-dev/bring-changes/bring-changes.js +1 -1
- package/dist/collection/components/team-dev/common/utilities.js +5 -5
- package/dist/collection/components/team-dev/common/utilities.js.map +1 -1
- package/dist/collection/components/team-dev/history/history.js.map +1 -1
- package/dist/collection/components/team-dev/update/update.js +1 -1
- package/dist/collection/components/team-dev/update/update.js.map +1 -1
- package/dist/collection/components/team-dev/version-control/commit/commit.css +344 -0
- package/dist/collection/components/team-dev/version-control/commit/commit.js +801 -0
- package/dist/collection/components/team-dev/version-control/commit/commit.js.map +1 -0
- package/dist/collection/components/team-dev/version-control/commit/gx-ide-assets/team-dev-commit/langs/team-dev-commit.lang.en.json +78 -0
- package/dist/collection/components/team-dev/version-control/commit/gx-ide-assets/team-dev-commit/langs/team-dev-commit.lang.ja.json +78 -0
- package/dist/collection/components/team-dev/version-control/commit/gx-ide-assets/team-dev-commit/langs/team-dev-commit.lang.zh.json +78 -0
- package/dist/collection/components/team-dev/version-control/commit/utilities/categories-to-combo-box.js +7 -0
- package/dist/collection/components/team-dev/version-control/commit/utilities/categories-to-combo-box.js.map +1 -0
- package/dist/collection/components/team-dev/version-control/commit/utilities/changeset-to-combo-box.js +11 -0
- package/dist/collection/components/team-dev/version-control/commit/utilities/changeset-to-combo-box.js.map +1 -0
- package/dist/collection/components/team-dev/version-control/commit/utilities/folders-to-combo-box.js +5 -0
- package/dist/collection/components/team-dev/version-control/commit/utilities/folders-to-combo-box.js.map +1 -0
- package/dist/collection/components/team-dev/version-control/commit/utilities/types-to-combo-box.js +6 -0
- package/dist/collection/components/team-dev/version-control/commit/utilities/types-to-combo-box.js.map +1 -0
- package/dist/collection/components/team-dev/version-control/common/clear-grid-selection.js +37 -0
- package/dist/collection/components/team-dev/version-control/common/clear-grid-selection.js.map +1 -0
- package/dist/collection/components/team-dev/version-control/common/constants.js +70 -0
- package/dist/collection/components/team-dev/version-control/common/constants.js.map +1 -0
- package/dist/collection/components/team-dev/version-control/common/header-renders.js +12 -0
- package/dist/collection/components/team-dev/version-control/common/header-renders.js.map +1 -0
- package/dist/collection/components/team-dev/version-control/common/object-type-to-combo-box.js +6 -0
- package/dist/collection/components/team-dev/version-control/common/object-type-to-combo-box.js.map +1 -0
- package/dist/collection/components/team-dev/version-control/common/tabular-grid-render.js +112 -0
- package/dist/collection/components/team-dev/version-control/common/tabular-grid-render.js.map +1 -0
- package/dist/collection/components/team-dev/version-control/common/types.js.map +1 -0
- package/dist/components/gx-ide-kb-manager-import.js +59 -18
- package/dist/components/gx-ide-kb-manager-import.js.map +1 -1
- package/dist/components/gx-ide-team-dev-commit.js +682 -316
- package/dist/components/gx-ide-team-dev-commit.js.map +1 -1
- package/dist/components/gx-ide-team-dev-history.js.map +1 -1
- package/dist/components/gx-ide-team-dev-update.js +6 -1
- package/dist/components/gx-ide-team-dev-update.js.map +1 -1
- package/dist/components/gx-ide-ww-files.js +2 -23
- package/dist/components/gx-ide-ww-files.js.map +1 -1
- package/dist/components/helpers2.js +24 -10
- package/dist/components/helpers2.js.map +1 -1
- package/dist/components/utilities.js +5 -5
- package/dist/components/utilities.js.map +1 -1
- package/dist/esm/genexus-ide-ui.js +1 -1
- package/dist/esm/gx-ide-kb-manager-import.entry.js +59 -17
- package/dist/esm/gx-ide-kb-manager-import.entry.js.map +1 -1
- package/dist/esm/gx-ide-team-dev-bring-changes.entry.js +1 -1
- package/dist/esm/gx-ide-team-dev-commit.entry.js +646 -297
- package/dist/esm/gx-ide-team-dev-commit.entry.js.map +1 -1
- package/dist/esm/gx-ide-team-dev-history.entry.js +1 -1
- package/dist/esm/gx-ide-team-dev-history.entry.js.map +1 -1
- package/dist/esm/gx-ide-team-dev-update.entry.js +7 -2
- package/dist/esm/gx-ide-team-dev-update.entry.js.map +1 -1
- package/dist/esm/gx-ide-ww-files.entry.js +2 -23
- package/dist/esm/gx-ide-ww-files.entry.js.map +1 -1
- package/dist/esm/helpers-4d080d9f.js +27 -0
- package/dist/esm/helpers-4d080d9f.js.map +1 -0
- package/dist/esm/loader.js +1 -1
- package/dist/esm/{utilities-482e01e6.js → utilities-6624d90e.js} +6 -6
- package/dist/esm/utilities-6624d90e.js.map +1 -0
- package/dist/genexus-ide-ui/genexus-ide-ui.esm.js +1 -1
- package/dist/genexus-ide-ui/genexus-ide-ui.esm.js.map +1 -1
- package/dist/genexus-ide-ui/gx-ide-assets/team-dev-commit/langs/team-dev-commit.lang.en.json +67 -28
- package/dist/genexus-ide-ui/gx-ide-assets/team-dev-commit/langs/team-dev-commit.lang.ja.json +68 -29
- package/dist/genexus-ide-ui/gx-ide-assets/team-dev-commit/langs/team-dev-commit.lang.zh.json +67 -28
- package/dist/genexus-ide-ui/{p-1f7ef8ba.entry.js → p-34447b77.entry.js} +2 -2
- package/dist/genexus-ide-ui/{p-d1374a00.entry.js → p-42f37527.entry.js} +155 -151
- package/dist/genexus-ide-ui/p-42f37527.entry.js.map +1 -0
- package/dist/genexus-ide-ui/{p-56c0c556.entry.js → p-48e87e4f.entry.js} +180 -145
- package/dist/genexus-ide-ui/p-48e87e4f.entry.js.map +1 -0
- package/dist/genexus-ide-ui/{p-13f4b647.entry.js → p-585fac4a.entry.js} +2 -2
- package/dist/genexus-ide-ui/p-585fac4a.entry.js.map +1 -0
- package/dist/genexus-ide-ui/p-723d25ae.entry.js +912 -0
- package/dist/genexus-ide-ui/p-723d25ae.entry.js.map +1 -0
- package/dist/genexus-ide-ui/{p-f242ae04.entry.js → p-9b8a8487.entry.js} +251 -272
- package/dist/genexus-ide-ui/p-9b8a8487.entry.js.map +1 -0
- package/dist/genexus-ide-ui/{p-2ee77587.js → p-a24571ca.js} +6 -6
- package/dist/genexus-ide-ui/p-a24571ca.js.map +1 -0
- package/dist/genexus-ide-ui/p-edcd0022.js +27 -0
- package/dist/genexus-ide-ui/p-edcd0022.js.map +1 -0
- package/dist/types/components/kb-manager-import/helpers.d.ts +2 -1
- package/dist/types/components/kb-manager-import/kb-manager-import.d.ts +0 -1
- package/dist/types/components/team-dev/common/utilities.d.ts +1 -1
- package/dist/types/components/team-dev/history/history.d.ts +1 -1
- package/dist/types/components/team-dev/version-control/commit/commit.d.ts +192 -0
- package/dist/types/components/team-dev/version-control/commit/utilities/categories-to-combo-box.d.ts +3 -0
- package/dist/types/components/team-dev/version-control/commit/utilities/changeset-to-combo-box.d.ts +3 -0
- package/dist/types/components/team-dev/version-control/commit/utilities/folders-to-combo-box.d.ts +3 -0
- package/dist/types/components/team-dev/version-control/commit/utilities/types-to-combo-box.d.ts +3 -0
- package/dist/types/components/team-dev/version-control/common/clear-grid-selection.d.ts +11 -0
- package/dist/types/components/team-dev/version-control/common/constants.d.ts +24 -0
- package/dist/types/components/team-dev/version-control/common/header-renders.d.ts +5 -0
- package/dist/types/components/team-dev/{commit/helpers.d.ts → version-control/common/object-type-to-combo-box.d.ts} +1 -2
- package/dist/types/components/team-dev/version-control/common/tabular-grid-render.d.ts +8 -0
- package/dist/types/components/team-dev/version-control/common/types.d.ts +52 -0
- package/dist/types/components.d.ts +61 -77
- package/package.json +1 -1
- package/dist/cjs/helpers-456ecc75.js +0 -16
- package/dist/cjs/helpers-456ecc75.js.map +0 -1
- package/dist/cjs/utilities-11683cc0.js.map +0 -1
- package/dist/collection/components/team-dev/commit/commit.css +0 -100
- package/dist/collection/components/team-dev/commit/commit.js +0 -708
- package/dist/collection/components/team-dev/commit/commit.js.map +0 -1
- package/dist/collection/components/team-dev/commit/gx-ide-assets/team-dev-commit/langs/team-dev-commit.lang.en.json +0 -39
- package/dist/collection/components/team-dev/commit/gx-ide-assets/team-dev-commit/langs/team-dev-commit.lang.ja.json +0 -39
- package/dist/collection/components/team-dev/commit/gx-ide-assets/team-dev-commit/langs/team-dev-commit.lang.zh.json +0 -39
- package/dist/collection/components/team-dev/commit/helpers.js +0 -10
- package/dist/collection/components/team-dev/commit/helpers.js.map +0 -1
- package/dist/collection/components/team-dev/common/types.js.map +0 -1
- package/dist/esm/helpers-e1db579e.js +0 -13
- package/dist/esm/helpers-e1db579e.js.map +0 -1
- package/dist/esm/utilities-482e01e6.js.map +0 -1
- package/dist/genexus-ide-ui/p-13f4b647.entry.js.map +0 -1
- package/dist/genexus-ide-ui/p-2ee77587.js.map +0 -1
- package/dist/genexus-ide-ui/p-49f765ef.entry.js +0 -674
- package/dist/genexus-ide-ui/p-49f765ef.entry.js.map +0 -1
- package/dist/genexus-ide-ui/p-56c0c556.entry.js.map +0 -1
- package/dist/genexus-ide-ui/p-821431b4.js +0 -13
- package/dist/genexus-ide-ui/p-821431b4.js.map +0 -1
- package/dist/genexus-ide-ui/p-d1374a00.entry.js.map +0 -1
- package/dist/genexus-ide-ui/p-f242ae04.entry.js.map +0 -1
- package/dist/types/components/team-dev/commit/commit.d.ts +0 -115
- package/dist/types/components/team-dev/common/types.d.ts +0 -1
- /package/dist/collection/components/team-dev/{common → version-control/common}/types.js +0 -0
- /package/dist/genexus-ide-ui/{p-1f7ef8ba.entry.js.map → p-34447b77.entry.js.map} +0 -0
|
@@ -1,708 +0,0 @@
|
|
|
1
|
-
var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) {
|
|
2
|
-
if (kind === "a" && !f)
|
|
3
|
-
throw new TypeError("Private accessor was defined without a getter");
|
|
4
|
-
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
|
|
5
|
-
throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
6
|
-
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
7
|
-
};
|
|
8
|
-
var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) {
|
|
9
|
-
if (kind === "m")
|
|
10
|
-
throw new TypeError("Private method is not writable");
|
|
11
|
-
if (kind === "a" && !f)
|
|
12
|
-
throw new TypeError("Private accessor was defined without a setter");
|
|
13
|
-
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
|
|
14
|
-
throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
|
15
|
-
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
|
16
|
-
};
|
|
17
|
-
var _GxIdeTeamDevCommit_componentLocale, _GxIdeTeamDevCommit_loadDataCalledFirstTime, _GxIdeTeamDevCommit_renderedFirstTime, _GxIdeTeamDevCommit_commitsTabModel, _GxIdeTeamDevCommit_categoriesEl, _GxIdeTeamDevCommit_changeSetEl, _GxIdeTeamDevCommit_commitCommentEl, _GxIdeTeamDevCommit_foldersEl, _GxIdeTeamDevCommit_patternEl, _GxIdeTeamDevCommit_typesEl, _GxIdeTeamDevCommit_chGridIgnoredObjectsEl, _GxIdeTeamDevCommit_chGridPendingCommitsEl, _GxIdeTeamDevCommit_initializeComboBoxModels, _GxIdeTeamDevCommit_commitCallbackHandler, _GxIdeTeamDevCommit_evaluateFilterConditions, _GxIdeTeamDevCommit_getRecentCommentHandler, _GxIdeTeamDevCommit_gridOnSelectionChangedCallbackHandler, _GxIdeTeamDevCommit_handleColumnSortChanged, _GxIdeTeamDevCommit_loadData, _GxIdeTeamDevCommit_markAllPendingCommitsRows, _GxIdeTeamDevCommit_objectsOnContextMenuCallbackHandler, _GxIdeTeamDevCommit_pendingCommitsRowMarkingChangedHandler, _GxIdeTeamDevCommit_renderTabularGridColumnSet, _GxIdeTeamDevCommit_renderTabularGridCommonCells, _GxIdeTeamDevCommit_renderIgnoredObjectsGrid, _GxIdeTeamDevCommit_renderPendingCommitsGrid, _GxIdeTeamDevCommit_revertPendingCommitsCheckboxes, _GxIdeTeamDevCommit_togglePendingCommitsCheckboxes, _GxIdeTeamDevCommit_updateTabModel, _GxIdeTeamDevCommit_commentInputHandler, _GxIdeTeamDevCommit_toggleFiltersHandler, _GxIdeTeamDevCommit_onTabActivated;
|
|
18
|
-
// Stencil
|
|
19
|
-
import { Host, h } from "@stencil/core";
|
|
20
|
-
import { getIconPath } from "@genexus/mercury";
|
|
21
|
-
import { renderObjectStateWithIcon, renderObjectTypeWithIcon } from "../common/utilities";
|
|
22
|
-
// Custom Imports
|
|
23
|
-
import { Locale } from "../../../common/locale";
|
|
24
|
-
import { config } from "../../../common/config";
|
|
25
|
-
import { formatDate } from "../../../common/helpers";
|
|
26
|
-
import { mapGxOptionsToComboBoxItemModel, mapObjectTypeToComboBoxItemModel } from "./helpers";
|
|
27
|
-
const FILTER_ICON = getIconPath({
|
|
28
|
-
category: "window-tools",
|
|
29
|
-
name: "filter",
|
|
30
|
-
colorType: "primary"
|
|
31
|
-
});
|
|
32
|
-
const FILTER_ICON_EMPTY = getIconPath({
|
|
33
|
-
category: "window-tools",
|
|
34
|
-
name: "filter",
|
|
35
|
-
colorType: "on-surface"
|
|
36
|
-
});
|
|
37
|
-
const FILTER_WITH_CONDITIONS_ICON = getIconPath({
|
|
38
|
-
category: "window-tools",
|
|
39
|
-
name: "filter-conditions",
|
|
40
|
-
colorType: "primary"
|
|
41
|
-
});
|
|
42
|
-
const RESET_ICON = getIconPath({
|
|
43
|
-
category: "gemini-tools",
|
|
44
|
-
name: "reset",
|
|
45
|
-
colorType: "primary"
|
|
46
|
-
});
|
|
47
|
-
const ALL_OPTION = "All";
|
|
48
|
-
const CSS_BUNDLES = [
|
|
49
|
-
"resets/box-sizing",
|
|
50
|
-
"components/button",
|
|
51
|
-
"components/checkbox",
|
|
52
|
-
"components/combo-box",
|
|
53
|
-
"components/edit",
|
|
54
|
-
"components/tab",
|
|
55
|
-
"components/icon",
|
|
56
|
-
"components/tabular-grid",
|
|
57
|
-
"components/tooltip",
|
|
58
|
-
"chameleon/scrollbar",
|
|
59
|
-
"utils/form",
|
|
60
|
-
"utils/layout",
|
|
61
|
-
"utils/typography",
|
|
62
|
-
"utils/spacing"
|
|
63
|
-
];
|
|
64
|
-
export class GxIdeTeamDevCommit {
|
|
65
|
-
constructor() {
|
|
66
|
-
/**
|
|
67
|
-
* The component hard-coded strings translations.
|
|
68
|
-
*/
|
|
69
|
-
// eslint-disable-next-line @stencil-community/own-props-must-be-private
|
|
70
|
-
_GxIdeTeamDevCommit_componentLocale.set(this, void 0);
|
|
71
|
-
_GxIdeTeamDevCommit_loadDataCalledFirstTime.set(this, false); // pending commits grid checkboxes, should be checked, after loadData has loaded commits for the first time.
|
|
72
|
-
_GxIdeTeamDevCommit_renderedFirstTime.set(this, false);
|
|
73
|
-
_GxIdeTeamDevCommit_commitsTabModel.set(this, [
|
|
74
|
-
{ id: "pending-commits", name: "Pending Commits" },
|
|
75
|
-
{ id: "ignored-objects", name: "Ignored Objects" }
|
|
76
|
-
]);
|
|
77
|
-
// filters
|
|
78
|
-
_GxIdeTeamDevCommit_categoriesEl.set(this, void 0);
|
|
79
|
-
_GxIdeTeamDevCommit_changeSetEl.set(this, void 0);
|
|
80
|
-
_GxIdeTeamDevCommit_commitCommentEl.set(this, void 0);
|
|
81
|
-
_GxIdeTeamDevCommit_foldersEl.set(this, void 0);
|
|
82
|
-
_GxIdeTeamDevCommit_patternEl.set(this, void 0);
|
|
83
|
-
_GxIdeTeamDevCommit_typesEl.set(this, void 0);
|
|
84
|
-
// other
|
|
85
|
-
_GxIdeTeamDevCommit_chGridIgnoredObjectsEl.set(this, void 0);
|
|
86
|
-
_GxIdeTeamDevCommit_chGridPendingCommitsEl.set(this, void 0);
|
|
87
|
-
_GxIdeTeamDevCommit_initializeComboBoxModels.set(this, () => {
|
|
88
|
-
this.foldersChangedHandler(this.folders);
|
|
89
|
-
this.typesChangedHandler(this.types);
|
|
90
|
-
this.changeSetChangedHandler(this.changeSet);
|
|
91
|
-
this.categoriesChangedHandler(this.categories);
|
|
92
|
-
});
|
|
93
|
-
_GxIdeTeamDevCommit_commitCallbackHandler.set(this, async () => {
|
|
94
|
-
const comment = __classPrivateFieldGet(this, _GxIdeTeamDevCommit_commitCommentEl, "f").value;
|
|
95
|
-
if (!comment.length) {
|
|
96
|
-
// A comment is required to commit.
|
|
97
|
-
this.commentInputHasError = true;
|
|
98
|
-
return;
|
|
99
|
-
}
|
|
100
|
-
this.commitingObjects = true;
|
|
101
|
-
this.commentInputHasError = false;
|
|
102
|
-
const pendingCommitsCheckedIds = await __classPrivateFieldGet(this, _GxIdeTeamDevCommit_chGridPendingCommitsEl, "f").getMarkedRows();
|
|
103
|
-
await this.commitCallback(pendingCommitsCheckedIds, comment);
|
|
104
|
-
this.commitingObjects = false;
|
|
105
|
-
});
|
|
106
|
-
_GxIdeTeamDevCommit_evaluateFilterConditions.set(this, () => {
|
|
107
|
-
// TODO: This should update
|
|
108
|
-
if (__classPrivateFieldGet(this, _GxIdeTeamDevCommit_patternEl, "f").value !== "" ||
|
|
109
|
-
__classPrivateFieldGet(this, _GxIdeTeamDevCommit_changeSetEl, "f").value !== ALL_OPTION ||
|
|
110
|
-
__classPrivateFieldGet(this, _GxIdeTeamDevCommit_typesEl, "f").value !== ALL_OPTION ||
|
|
111
|
-
__classPrivateFieldGet(this, _GxIdeTeamDevCommit_foldersEl, "f").value !== ALL_OPTION ||
|
|
112
|
-
__classPrivateFieldGet(this, _GxIdeTeamDevCommit_categoriesEl, "f").value !== ALL_OPTION) {
|
|
113
|
-
this.filterHasConditions = true;
|
|
114
|
-
}
|
|
115
|
-
else {
|
|
116
|
-
this.filterHasConditions = false;
|
|
117
|
-
}
|
|
118
|
-
});
|
|
119
|
-
_GxIdeTeamDevCommit_getRecentCommentHandler.set(this, async () => {
|
|
120
|
-
if (this.getRecentCommentCallback) {
|
|
121
|
-
const response = await this.getRecentCommentCallback();
|
|
122
|
-
if (response) {
|
|
123
|
-
__classPrivateFieldGet(this, _GxIdeTeamDevCommit_commitCommentEl, "f").value = response;
|
|
124
|
-
}
|
|
125
|
-
}
|
|
126
|
-
});
|
|
127
|
-
_GxIdeTeamDevCommit_gridOnSelectionChangedCallbackHandler.set(this, (grid) => async (ev) => {
|
|
128
|
-
if (this.selectCallback) {
|
|
129
|
-
await this.selectCallback(grid, ev.detail.rowsId);
|
|
130
|
-
}
|
|
131
|
-
});
|
|
132
|
-
_GxIdeTeamDevCommit_handleColumnSortChanged.set(this, (e) => {
|
|
133
|
-
const { columnId, sortDirection } = e.detail;
|
|
134
|
-
const aux = this.pendingCommits;
|
|
135
|
-
aux.sort((a, b) => {
|
|
136
|
-
if (a[columnId] < b[columnId]) {
|
|
137
|
-
return sortDirection === "asc" ? -1 : 1;
|
|
138
|
-
}
|
|
139
|
-
if (a[columnId] > b[columnId]) {
|
|
140
|
-
return sortDirection === "asc" ? 1 : -1;
|
|
141
|
-
}
|
|
142
|
-
return 0;
|
|
143
|
-
});
|
|
144
|
-
this.pendingCommits = [...aux];
|
|
145
|
-
});
|
|
146
|
-
_GxIdeTeamDevCommit_loadData.set(this, async () => {
|
|
147
|
-
this.loading = true;
|
|
148
|
-
const filtersData = {
|
|
149
|
-
pattern: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_patternEl, "f").value,
|
|
150
|
-
changeSet: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_changeSetEl, "f").value,
|
|
151
|
-
folder: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_foldersEl, "f").value,
|
|
152
|
-
category: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_categoriesEl, "f").value,
|
|
153
|
-
type: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_typesEl, "f").value
|
|
154
|
-
};
|
|
155
|
-
__classPrivateFieldGet(this, _GxIdeTeamDevCommit_evaluateFilterConditions, "f").call(this);
|
|
156
|
-
await this.loadCallback(filtersData).then(async ({ pending, ignored }) => {
|
|
157
|
-
this.pendingCommits = [...pending];
|
|
158
|
-
this.ignoredObjects = [...ignored];
|
|
159
|
-
});
|
|
160
|
-
this.loading = false;
|
|
161
|
-
__classPrivateFieldGet(this, _GxIdeTeamDevCommit_updateTabModel, "f").call(this);
|
|
162
|
-
});
|
|
163
|
-
_GxIdeTeamDevCommit_markAllPendingCommitsRows.set(this, async () => {
|
|
164
|
-
await __classPrivateFieldGet(this, _GxIdeTeamDevCommit_chGridPendingCommitsEl, "f").markAllRows();
|
|
165
|
-
});
|
|
166
|
-
_GxIdeTeamDevCommit_objectsOnContextMenuCallbackHandler.set(this, (grid) => async (ev) => {
|
|
167
|
-
ev.preventDefault();
|
|
168
|
-
ev.stopPropagation();
|
|
169
|
-
let selection = [];
|
|
170
|
-
if (grid === "commit") {
|
|
171
|
-
selection = ev.detail.selectedRowsId;
|
|
172
|
-
}
|
|
173
|
-
else if (grid === "ignored") {
|
|
174
|
-
selection = await __classPrivateFieldGet(this, _GxIdeTeamDevCommit_chGridIgnoredObjectsEl, "f").getSelectedRows();
|
|
175
|
-
}
|
|
176
|
-
if (this.objectsContextMenuCallback) {
|
|
177
|
-
await this.objectsContextMenuCallback(grid, {
|
|
178
|
-
selection: selection,
|
|
179
|
-
clientX: ev.detail.clientX,
|
|
180
|
-
clientY: ev.detail.clientY
|
|
181
|
-
});
|
|
182
|
-
}
|
|
183
|
-
});
|
|
184
|
-
_GxIdeTeamDevCommit_pendingCommitsRowMarkingChangedHandler.set(this, async (e) => {
|
|
185
|
-
// remove "rowMarkingChanged" until checkboxes have been added/removed on #togglePendingCommitsCheckboxes, to prevent loops.
|
|
186
|
-
__classPrivateFieldGet(this, _GxIdeTeamDevCommit_chGridPendingCommitsEl, "f").removeEventListener("rowMarkingChanged", __classPrivateFieldGet(this, _GxIdeTeamDevCommit_pendingCommitsRowMarkingChangedHandler, "f"));
|
|
187
|
-
if (__classPrivateFieldGet(this, _GxIdeTeamDevCommit_chGridPendingCommitsEl, "f")) {
|
|
188
|
-
const addedRowsIds = e.detail.addedRowsId;
|
|
189
|
-
const removedRowsId = e.detail.removedRowsId;
|
|
190
|
-
const pendingItemCheckedResult = await this.pendingItemsCheckedCallback({
|
|
191
|
-
itemsChecked: addedRowsIds,
|
|
192
|
-
itemsUnchecked: removedRowsId
|
|
193
|
-
});
|
|
194
|
-
if (pendingItemCheckedResult === undefined) {
|
|
195
|
-
// undo check/uncheck
|
|
196
|
-
await __classPrivateFieldGet(this, _GxIdeTeamDevCommit_revertPendingCommitsCheckboxes, "f").call(this, addedRowsIds, removedRowsId);
|
|
197
|
-
}
|
|
198
|
-
else {
|
|
199
|
-
await __classPrivateFieldGet(this, _GxIdeTeamDevCommit_togglePendingCommitsCheckboxes, "f").call(this, pendingItemCheckedResult);
|
|
200
|
-
}
|
|
201
|
-
__classPrivateFieldGet(this, _GxIdeTeamDevCommit_chGridPendingCommitsEl, "f").addEventListener("rowMarkingChanged", __classPrivateFieldGet(this, _GxIdeTeamDevCommit_pendingCommitsRowMarkingChangedHandler, "f"));
|
|
202
|
-
}
|
|
203
|
-
});
|
|
204
|
-
_GxIdeTeamDevCommit_renderTabularGridColumnSet.set(this, (withCheckboxes = false) => {
|
|
205
|
-
return (h("ch-tabular-grid-columnset", { class: "tabular-grid-column-set" }, withCheckboxes && (h("ch-tabular-grid-column", { class: "tabular-grid-column", columnType: "rich", richRowSelector: true, richRowSelectorMode: "mark", settingable: false, sortable: false, size: config.tabularGrid.colSize.maxContent })), h("ch-tabular-grid-column", { columnId: "name", class: "tabular-grid-column", sortable: true, columnName: "Name", settingable: false, onColumnSortChanged: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_handleColumnSortChanged, "f"), size: config.tabularGrid.colSize.maxContent }), h("ch-tabular-grid-column", { columnId: "type", class: "tabular-grid-column", sortable: true, columnName: "Type", settingable: false, onColumnSortChanged: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_handleColumnSortChanged, "f"), size: config.tabularGrid.colSize.maxContent }), h("ch-tabular-grid-column", { columnId: "description", class: "tabular-grid-column", columnName: "Description", settingable: false, sortable: true, onColumnSortChanged: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_handleColumnSortChanged, "f"), size: config.tabularGrid.colSize.maxContent }), h("ch-tabular-grid-column", { columnId: "modifiedOn", class: "tabular-grid-column", sortable: true, columnName: "Modified On", settingable: false, onColumnSortChanged: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_handleColumnSortChanged, "f"), size: config.tabularGrid.colSize.maxContent }), h("ch-tabular-grid-column", { columnId: "module", class: "tabular-grid-column", columnName: "Module", settingable: false, sortable: true, onColumnSortChanged: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_handleColumnSortChanged, "f"), size: config.tabularGrid.colSize.maxContent }), h("ch-tabular-grid-column", { columnId: "localState", class: "tabular-grid-column", columnName: "Local State", settingable: false, sortable: true, onColumnSortChanged: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_handleColumnSortChanged, "f"), size: config.tabularGrid.colSize.maxContent }), h("ch-tabular-grid-column", { columnId: "lastSynchronized", class: "tabular-grid-column", columnName: "Last Synchronized", settingable: false, sortable: true, onColumnSortChanged: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_handleColumnSortChanged, "f"), size: config.tabularGrid.colSize.auto })));
|
|
206
|
-
});
|
|
207
|
-
_GxIdeTeamDevCommit_renderTabularGridCommonCells.set(this, (object) => {
|
|
208
|
-
return [
|
|
209
|
-
h("ch-tabular-grid-cell", { class: "tabular-grid-cell" }, object.name),
|
|
210
|
-
h("ch-tabular-grid-cell", { class: "tabular-grid-cell" }, renderObjectTypeWithIcon(object.type)),
|
|
211
|
-
h("ch-tabular-grid-cell", { class: "tabular-grid-cell tabular-grid-cell-description" }, object.description),
|
|
212
|
-
h("ch-tabular-grid-cell", { class: "tabular-grid-cell" }, `${formatDate(object.modifiedOn)}`),
|
|
213
|
-
h("ch-tabular-grid-cell", { class: "tabular-grid-cell" }, object.module),
|
|
214
|
-
h("ch-tabular-grid-cell", { class: "tabular-grid-cell" }, renderObjectStateWithIcon(object.localState)),
|
|
215
|
-
h("ch-tabular-grid-cell", { class: "tabular-grid-cell" }, `${formatDate(object.lastSynchronized)}`)
|
|
216
|
-
];
|
|
217
|
-
});
|
|
218
|
-
_GxIdeTeamDevCommit_renderIgnoredObjectsGrid.set(this, () => {
|
|
219
|
-
var _a;
|
|
220
|
-
const tabularGridEmpty = ((_a = this.ignoredObjects) === null || _a === void 0 ? void 0 : _a.length) === 0 || !this.ignoredObjects;
|
|
221
|
-
return (h("ch-tabular-grid", {
|
|
222
|
-
// ignored objects grid render
|
|
223
|
-
class: {
|
|
224
|
-
"tabular-grid": true,
|
|
225
|
-
"tabular-grid--empty": tabularGridEmpty
|
|
226
|
-
}, rowSelectionMode: "multiple", ref: (el) => (__classPrivateFieldSet(this, _GxIdeTeamDevCommit_chGridIgnoredObjectsEl, el, "f")), allowColumnReorder: false, part: "ch-grid-pending-commits", onRowContextMenu: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_objectsOnContextMenuCallbackHandler, "f").call(this, "ignored"), onSelectionChanged: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_gridOnSelectionChangedCallbackHandler, "f").call(this, "ignored")
|
|
227
|
-
}, this.commitingObjects && (h("gx-ide-loader", { loaderTitle: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_componentLocale, "f").loader.title, description: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_componentLocale, "f").loader.description, show: true })), __classPrivateFieldGet(this, _GxIdeTeamDevCommit_renderTabularGridColumnSet, "f").call(this), this.ignoredObjects.length > 0 ? (h("ch-tabular-grid-rowset", { class: "tabular-grid-rowset" }, this.ignoredObjects.map((obj) => (h("ch-tabular-grid-row", { rowid: obj.id, selected: true, class: "tabular-grid-row" }, __classPrivateFieldGet(this, _GxIdeTeamDevCommit_renderTabularGridCommonCells, "f").call(this, obj)))))) : (h("ch-tabular-grid-rowset", { class: "tabular-grid-rowset" }, h("ch-tabular-grid-rowset-empty", null, h("gx-ide-empty-state", { stateIconSrc: FILTER_ICON_EMPTY, stateTitle: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_componentLocale, "f").emptyIgnoredObjects, isAnimated: true }))))));
|
|
228
|
-
});
|
|
229
|
-
_GxIdeTeamDevCommit_renderPendingCommitsGrid.set(this, () => {
|
|
230
|
-
var _a;
|
|
231
|
-
const withCheckboxes = true;
|
|
232
|
-
const tabularGridEmpty = ((_a = this.pendingCommits) === null || _a === void 0 ? void 0 : _a.length) === 0 || !this.pendingCommits;
|
|
233
|
-
if (this.loading) {
|
|
234
|
-
return (h("div", { class: "tabular-grid" }, h("gx-ide-loader", { loaderTitle: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_componentLocale, "f").objectsLoader.title, description: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_componentLocale, "f").objectsLoader.description, show: true })));
|
|
235
|
-
}
|
|
236
|
-
return (h("ch-tabular-grid", {
|
|
237
|
-
// pending commits grid render
|
|
238
|
-
class: {
|
|
239
|
-
"tabular-grid": true,
|
|
240
|
-
"tabular-grid--empty": tabularGridEmpty
|
|
241
|
-
}, rowSelectionMode: "multiple", ref: (el) => (__classPrivateFieldSet(this, _GxIdeTeamDevCommit_chGridPendingCommitsEl, el, "f")), allowColumnReorder: false, part: "ch-grid-pending-commits", onRowContextMenu: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_objectsOnContextMenuCallbackHandler, "f").call(this, "commit"), onSelectionChanged: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_gridOnSelectionChangedCallbackHandler, "f").call(this, "commit")
|
|
242
|
-
}, this.commitingObjects && (h("gx-ide-loader", { loaderTitle: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_componentLocale, "f").loader.title, description: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_componentLocale, "f").loader.description, show: true })), __classPrivateFieldGet(this, _GxIdeTeamDevCommit_renderTabularGridColumnSet, "f").call(this, withCheckboxes), this.pendingCommits.length > 0 ? (h("ch-tabular-grid-rowset", { class: "tabular-grid-rowset" }, this.pendingCommits.map((obj) => (h("ch-tabular-grid-row", { rowid: obj.id, class: "tabular-grid-row" }, h("ch-tabular-grid-cell", { "cell-type": "rich", "row-selector": true, class: "tabular-grid-cell" }), __classPrivateFieldGet(this, _GxIdeTeamDevCommit_renderTabularGridCommonCells, "f").call(this, obj)))))) : (h("ch-tabular-grid-rowset", { class: "tabular-grid-rowset" }, h("ch-tabular-grid-rowset-empty", null, h("gx-ide-empty-state", { stateIconSrc: FILTER_ICON_EMPTY, stateTitle: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_componentLocale, "f").emptyPendingCommitsObjects, isAnimated: true }))))));
|
|
243
|
-
});
|
|
244
|
-
_GxIdeTeamDevCommit_revertPendingCommitsCheckboxes.set(this, async (addedRowsIds, removedRowsId) => {
|
|
245
|
-
if (__classPrivateFieldGet(this, _GxIdeTeamDevCommit_chGridPendingCommitsEl, "f")) {
|
|
246
|
-
for (const rowId of addedRowsIds) {
|
|
247
|
-
await __classPrivateFieldGet(this, _GxIdeTeamDevCommit_chGridPendingCommitsEl, "f").markRow(rowId, false);
|
|
248
|
-
}
|
|
249
|
-
for (const rowId of removedRowsId) {
|
|
250
|
-
await __classPrivateFieldGet(this, _GxIdeTeamDevCommit_chGridPendingCommitsEl, "f").markRow(rowId, true);
|
|
251
|
-
}
|
|
252
|
-
}
|
|
253
|
-
});
|
|
254
|
-
_GxIdeTeamDevCommit_togglePendingCommitsCheckboxes.set(this, async (itemsToToggle) => {
|
|
255
|
-
if (__classPrivateFieldGet(this, _GxIdeTeamDevCommit_chGridPendingCommitsEl, "f")) {
|
|
256
|
-
const itemsToCheck = itemsToToggle.itemsToCheck;
|
|
257
|
-
const itemsToUncheck = itemsToToggle.itemsToUncheck;
|
|
258
|
-
// check
|
|
259
|
-
for (const rowId of itemsToCheck) {
|
|
260
|
-
await __classPrivateFieldGet(this, _GxIdeTeamDevCommit_chGridPendingCommitsEl, "f").markRow(rowId, true);
|
|
261
|
-
}
|
|
262
|
-
// uncheck
|
|
263
|
-
for (const rowId of itemsToUncheck) {
|
|
264
|
-
await __classPrivateFieldGet(this, _GxIdeTeamDevCommit_chGridPendingCommitsEl, "f").markRow(rowId, false);
|
|
265
|
-
}
|
|
266
|
-
}
|
|
267
|
-
});
|
|
268
|
-
_GxIdeTeamDevCommit_updateTabModel.set(this, () => {
|
|
269
|
-
__classPrivateFieldSet(this, _GxIdeTeamDevCommit_commitsTabModel, [
|
|
270
|
-
{
|
|
271
|
-
id: "pending-commits",
|
|
272
|
-
name: `${__classPrivateFieldGet(this, _GxIdeTeamDevCommit_componentLocale, "f").tabs.pendingCommits} (${this.pendingCommits.length})`
|
|
273
|
-
},
|
|
274
|
-
{
|
|
275
|
-
id: "ignored-objects",
|
|
276
|
-
name: `${__classPrivateFieldGet(this, _GxIdeTeamDevCommit_componentLocale, "f").tabs.ignoredObjects} (${this.ignoredObjects.length})`
|
|
277
|
-
}
|
|
278
|
-
], "f");
|
|
279
|
-
});
|
|
280
|
-
_GxIdeTeamDevCommit_commentInputHandler.set(this, async (event) => {
|
|
281
|
-
const comment = event.detail;
|
|
282
|
-
if (comment.length && this.commentInputHasError) {
|
|
283
|
-
// remove error style and tooltip
|
|
284
|
-
this.commentInputHasError = false;
|
|
285
|
-
}
|
|
286
|
-
});
|
|
287
|
-
_GxIdeTeamDevCommit_toggleFiltersHandler.set(this, () => {
|
|
288
|
-
this.filtersHidden = !this.filtersHidden;
|
|
289
|
-
});
|
|
290
|
-
_GxIdeTeamDevCommit_onTabActivated.set(this, (evt) => {
|
|
291
|
-
evt.stopImmediatePropagation();
|
|
292
|
-
});
|
|
293
|
-
this.comment = "";
|
|
294
|
-
this.filterHasConditions = false;
|
|
295
|
-
this.ignoredObjects = [];
|
|
296
|
-
this.pendingCommits = [];
|
|
297
|
-
this.commentInputHasError = false;
|
|
298
|
-
this.commitingObjects = false;
|
|
299
|
-
this.filtersHidden = true;
|
|
300
|
-
this.folderOptionsModel = undefined;
|
|
301
|
-
this.typeOptionsModel = undefined;
|
|
302
|
-
this.changeSetOptionsModel = undefined;
|
|
303
|
-
this.categoryOptionsModel = undefined;
|
|
304
|
-
this.loading = true;
|
|
305
|
-
this.categories = undefined;
|
|
306
|
-
this.changeSet = undefined;
|
|
307
|
-
this.commitCallback = undefined;
|
|
308
|
-
this.folders = undefined;
|
|
309
|
-
this.getRecentCommentCallback = undefined;
|
|
310
|
-
this.loadCallback = undefined;
|
|
311
|
-
this.objectsContextMenuCallback = undefined;
|
|
312
|
-
this.pendingItemsCheckedCallback = undefined;
|
|
313
|
-
this.selectCallback = undefined;
|
|
314
|
-
this.types = undefined;
|
|
315
|
-
}
|
|
316
|
-
categoriesChangedHandler(newCategoriesOptions) {
|
|
317
|
-
mapGxOptionsToComboBoxItemModel(newCategoriesOptions);
|
|
318
|
-
}
|
|
319
|
-
changeSetChangedHandler(newChangeSetOptions) {
|
|
320
|
-
this.changeSetOptionsModel =
|
|
321
|
-
mapGxOptionsToComboBoxItemModel(newChangeSetOptions);
|
|
322
|
-
}
|
|
323
|
-
foldersChangedHandler(newFolderOptions) {
|
|
324
|
-
this.folderOptionsModel = mapGxOptionsToComboBoxItemModel(newFolderOptions);
|
|
325
|
-
}
|
|
326
|
-
typesChangedHandler(newTypesOptions) {
|
|
327
|
-
this.typeOptionsModel = mapObjectTypeToComboBoxItemModel(newTypesOptions);
|
|
328
|
-
}
|
|
329
|
-
async componentDidLoad() {
|
|
330
|
-
await __classPrivateFieldGet(this, _GxIdeTeamDevCommit_loadData, "f").call(this);
|
|
331
|
-
__classPrivateFieldSet(this, _GxIdeTeamDevCommit_loadDataCalledFirstTime, true, "f");
|
|
332
|
-
this.componentDidLoadEvent.emit(true);
|
|
333
|
-
__classPrivateFieldGet(this, _GxIdeTeamDevCommit_commitCommentEl, "f").focus();
|
|
334
|
-
}
|
|
335
|
-
async componentDidRender() {
|
|
336
|
-
if (!__classPrivateFieldGet(this, _GxIdeTeamDevCommit_renderedFirstTime, "f")) {
|
|
337
|
-
this.componentDidRenderFirstTime.emit(__classPrivateFieldGet(this, _GxIdeTeamDevCommit_componentLocale, "f").componentName);
|
|
338
|
-
__classPrivateFieldSet(this, _GxIdeTeamDevCommit_renderedFirstTime, true, "f");
|
|
339
|
-
}
|
|
340
|
-
if (__classPrivateFieldGet(this, _GxIdeTeamDevCommit_loadDataCalledFirstTime, "f")) {
|
|
341
|
-
// call this method only once
|
|
342
|
-
await __classPrivateFieldGet(this, _GxIdeTeamDevCommit_markAllPendingCommitsRows, "f").call(this);
|
|
343
|
-
// attach "rowMarkingChanged" after rows have been checked for the first time.
|
|
344
|
-
__classPrivateFieldGet(this, _GxIdeTeamDevCommit_chGridPendingCommitsEl, "f").addEventListener("rowMarkingChanged", __classPrivateFieldGet(this, _GxIdeTeamDevCommit_pendingCommitsRowMarkingChangedHandler, "f"));
|
|
345
|
-
__classPrivateFieldSet(this, _GxIdeTeamDevCommit_loadDataCalledFirstTime, false, "f");
|
|
346
|
-
}
|
|
347
|
-
}
|
|
348
|
-
async componentWillLoad() {
|
|
349
|
-
__classPrivateFieldSet(this, _GxIdeTeamDevCommit_componentLocale, await Locale.getComponentStrings(this.el), "f");
|
|
350
|
-
__classPrivateFieldGet(this, _GxIdeTeamDevCommit_initializeComboBoxModels, "f").call(this);
|
|
351
|
-
}
|
|
352
|
-
/**
|
|
353
|
-
* Method used by the Host to force a data refresh in the grids
|
|
354
|
-
*/
|
|
355
|
-
async reload() {
|
|
356
|
-
__classPrivateFieldGet(this, _GxIdeTeamDevCommit_loadData, "f").call(this);
|
|
357
|
-
}
|
|
358
|
-
render() {
|
|
359
|
-
const filterIcon = this.filterHasConditions
|
|
360
|
-
? FILTER_WITH_CONDITIONS_ICON
|
|
361
|
-
: FILTER_ICON;
|
|
362
|
-
return (h(Host, { class: "widget" }, h("ch-theme", { model: CSS_BUNDLES }), h("section", { class: "section" }, h("header", { class: "header spacing-body" }, h("div", { class: "header__first-row field-group" }, h("div", { class: "buttons-spacer" }, h("div", {
|
|
363
|
-
// pattern
|
|
364
|
-
class: "field field-inline field-comment"
|
|
365
|
-
}, h("label", { class: "label", htmlFor: "pattern-form-text" }, __classPrivateFieldGet(this, _GxIdeTeamDevCommit_componentLocale, "f").header.commentLabel), h("ch-edit", {
|
|
366
|
-
// commit comment
|
|
367
|
-
id: "comment", class: {
|
|
368
|
-
"input": true,
|
|
369
|
-
"commit-input": true,
|
|
370
|
-
"scrollable": true,
|
|
371
|
-
"input-error": this.commentInputHasError
|
|
372
|
-
}, placeholder: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_componentLocale, "f").header.commentPlaceholder, onInput: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_commentInputHandler, "f"), value: this.comment, ref: (el) => (__classPrivateFieldSet(this, _GxIdeTeamDevCommit_commitCommentEl, el, "f")), part: "comment"
|
|
373
|
-
})), h("button", { id: "filter-toggle-button", class: "button-teritary button-icon-only", "aria-label": __classPrivateFieldGet(this, _GxIdeTeamDevCommit_componentLocale, "f").header.filterAriaLabel, "aria-expanded": this.filtersHidden ? "false" : "true", "aria-controls": "filters-container", onClick: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_toggleFiltersHandler, "f"), title: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_componentLocale, "f").header.filterAriaLabel }, h("ch-image", { class: "icon-md", src: filterIcon })), h("button", { class: "button-teritary button-icon-only", "aria-label": __classPrivateFieldGet(this, _GxIdeTeamDevCommit_componentLocale, "f").header.reloadAriaLabel, title: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_componentLocale, "f").header.reloadAriaLabel, onClick: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_loadData, "f"), part: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_componentLocale, "f").header.reloadAriaLabel }, h("ch-image", { class: "icon-md", src: RESET_ICON }))), this.commentInputHasError && (h("ch-tooltip", { class: "tooltip", actionElement: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_commitCommentEl, "f"), blockAlign: "outside-end", inlineAlign: config.tooltipSettings.inlineAlign, delay: config.tooltipSettings.delay }, __classPrivateFieldGet(this, _GxIdeTeamDevCommit_componentLocale, "f").header.commentEmptyError)), h("div", { class: "buttons-spacer" }, h("button", { type: "button", class: "button-secondary recent-comments-btn", part: "button button-location", onClick: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_getRecentCommentHandler, "f"), "aria-label": __classPrivateFieldGet(this, _GxIdeTeamDevCommit_componentLocale, "f").header.recentCommentsButton, disabled: this.commitingObjects }, __classPrivateFieldGet(this, _GxIdeTeamDevCommit_componentLocale, "f").header.recentCommentsButton))), h("div", { id: "filters-container", "aria-labelledby": "filter-toggle-button", class: {
|
|
374
|
-
"filters-container-visible": !this.filtersHidden,
|
|
375
|
-
"filters-container": true
|
|
376
|
-
}, inert: this.filtersHidden, hidden: this.filtersHidden }, h("div", null, h("div", { slot: "filter", class: "filter field-group" }, h("div", {
|
|
377
|
-
// pattern
|
|
378
|
-
class: "field field-block field-pattern"
|
|
379
|
-
}, h("label", { class: "label", htmlFor: "pattern-form-text" }, __classPrivateFieldGet(this, _GxIdeTeamDevCommit_componentLocale, "f").filtersMenu.patternLabel), h("ch-edit", { id: "pattern-form-text", class: "input", value: "", ref: (el) => (__classPrivateFieldSet(this, _GxIdeTeamDevCommit_patternEl, el, "f")), debounce: config.inputDebounce, onInput: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_loadData, "f"), part: "pattern-form-text" })), h("div", {
|
|
380
|
-
// folder
|
|
381
|
-
class: "field field-block field-folder"
|
|
382
|
-
}, h("label", { class: "label", htmlFor: "folder-combo" }, __classPrivateFieldGet(this, _GxIdeTeamDevCommit_componentLocale, "f").filtersMenu.folderLabel), h("ch-combo-box-render", { id: "folder-combo", class: "combo-box", value: this.folders[0].id, model: this.folderOptionsModel, ref: (el) => (__classPrivateFieldSet(this, _GxIdeTeamDevCommit_foldersEl, el, "f")), onInput: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_loadData, "f"), part: "folder-combo" })), h("div", {
|
|
383
|
-
// type
|
|
384
|
-
class: "field field-block field-type"
|
|
385
|
-
}, h("label", { class: "label", htmlFor: "type-combo" }, __classPrivateFieldGet(this, _GxIdeTeamDevCommit_componentLocale, "f").filtersMenu.typeLabel), h("ch-combo-box-render", { id: "type-combo", class: "combo-box", value: this.types[0].id, model: this.typeOptionsModel, ref: (el) => (__classPrivateFieldSet(this, _GxIdeTeamDevCommit_typesEl, el, "f")), onInput: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_loadData, "f"), part: "type-combo" })), h("div", {
|
|
386
|
-
// changeset
|
|
387
|
-
class: "field field-block field-changeset"
|
|
388
|
-
}, h("label", { class: "label", htmlFor: "changeset-combo" }, __classPrivateFieldGet(this, _GxIdeTeamDevCommit_componentLocale, "f").filtersMenu.changesetLabel), h("ch-combo-box-render", { id: "changeset-combo", class: "combo-box", value: this.changeSet[0].id, model: this.changeSetOptionsModel, ref: (el) => (__classPrivateFieldSet(this, _GxIdeTeamDevCommit_changeSetEl, el, "f")), onInput: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_loadData, "f"), part: "changeset-combo" })), h("div", {
|
|
389
|
-
// category
|
|
390
|
-
class: "field field-block field-category"
|
|
391
|
-
}, h("label", { class: "label", htmlFor: "category-combo" }, __classPrivateFieldGet(this, _GxIdeTeamDevCommit_componentLocale, "f").filtersMenu.categoryLabel), h("ch-combo-box-render", { id: "category-combo", class: "combo-box", value: this.categories[0].id, model: this.categoryOptionsModel, ref: (el) => (__classPrivateFieldSet(this, _GxIdeTeamDevCommit_categoriesEl, el, "f")), onInput: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_loadData, "f"), part: "category-combo" })))))), h("ch-tab-render", { class: "tab scrollable", tabListPosition: "block-start", model: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_commitsTabModel, "f"), selectedId: "pending-commits", showTabListEnd: true, overflow: "auto auto", contain: "size", onSelectedItemChange: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_onTabActivated, "f") }, h("div", { class: "ch-tab-slot", slot: "pending-commits", part: "pending-commits" }, __classPrivateFieldGet(this, _GxIdeTeamDevCommit_renderPendingCommitsGrid, "f").call(this)), h("div", { class: "ch-tab-slot", slot: "ignored-objects", part: "ignored-objects" }, __classPrivateFieldGet(this, _GxIdeTeamDevCommit_renderIgnoredObjectsGrid, "f").call(this))), h("footer", { class: "control-footer control-footer-with-border spacing-body-inline spacing-body-block-end" }, h("button", { class: "button-primary", onClick: __classPrivateFieldGet(this, _GxIdeTeamDevCommit_commitCallbackHandler, "f"), part: "commit-button", disabled: this.commitingObjects }, __classPrivateFieldGet(this, _GxIdeTeamDevCommit_componentLocale, "f").footer.commitButton)))));
|
|
392
|
-
}
|
|
393
|
-
static get is() { return "gx-ide-team-dev-commit"; }
|
|
394
|
-
static get encapsulation() { return "shadow"; }
|
|
395
|
-
static get originalStyleUrls() {
|
|
396
|
-
return {
|
|
397
|
-
"$": ["commit.scss"]
|
|
398
|
-
};
|
|
399
|
-
}
|
|
400
|
-
static get styleUrls() {
|
|
401
|
-
return {
|
|
402
|
-
"$": ["commit.css"]
|
|
403
|
-
};
|
|
404
|
-
}
|
|
405
|
-
static get assetsDirs() { return ["gx-ide-assets/team-dev-commit"]; }
|
|
406
|
-
static get properties() {
|
|
407
|
-
return {
|
|
408
|
-
"categories": {
|
|
409
|
-
"type": "unknown",
|
|
410
|
-
"mutable": false,
|
|
411
|
-
"complexType": {
|
|
412
|
-
"original": "GxOption[]",
|
|
413
|
-
"resolved": "GxOption[]",
|
|
414
|
-
"references": {
|
|
415
|
-
"GxOption": {
|
|
416
|
-
"location": "import",
|
|
417
|
-
"path": "../../../common/types",
|
|
418
|
-
"id": "src/common/types.ts::GxOption"
|
|
419
|
-
}
|
|
420
|
-
}
|
|
421
|
-
},
|
|
422
|
-
"required": false,
|
|
423
|
-
"optional": false,
|
|
424
|
-
"docs": {
|
|
425
|
-
"tags": [],
|
|
426
|
-
"text": "Possible values for Categories filter"
|
|
427
|
-
}
|
|
428
|
-
},
|
|
429
|
-
"changeSet": {
|
|
430
|
-
"type": "unknown",
|
|
431
|
-
"mutable": false,
|
|
432
|
-
"complexType": {
|
|
433
|
-
"original": "GxOption[]",
|
|
434
|
-
"resolved": "GxOption[]",
|
|
435
|
-
"references": {
|
|
436
|
-
"GxOption": {
|
|
437
|
-
"location": "import",
|
|
438
|
-
"path": "../../../common/types",
|
|
439
|
-
"id": "src/common/types.ts::GxOption"
|
|
440
|
-
}
|
|
441
|
-
}
|
|
442
|
-
},
|
|
443
|
-
"required": false,
|
|
444
|
-
"optional": false,
|
|
445
|
-
"docs": {
|
|
446
|
-
"tags": [],
|
|
447
|
-
"text": "Possible values for ChangeSet filter"
|
|
448
|
-
}
|
|
449
|
-
},
|
|
450
|
-
"commitCallback": {
|
|
451
|
-
"type": "unknown",
|
|
452
|
-
"mutable": false,
|
|
453
|
-
"complexType": {
|
|
454
|
-
"original": "CommitCallback",
|
|
455
|
-
"resolved": "(selection: string[], commitCommentEl: string) => Promise<boolean>",
|
|
456
|
-
"references": {
|
|
457
|
-
"CommitCallback": {
|
|
458
|
-
"location": "local",
|
|
459
|
-
"path": "/home/runner/work/genexus-ide-ui/genexus-ide-ui/src/components/team-dev/commit/commit.tsx",
|
|
460
|
-
"id": "src/components/team-dev/commit/commit.tsx::CommitCallback"
|
|
461
|
-
}
|
|
462
|
-
}
|
|
463
|
-
},
|
|
464
|
-
"required": false,
|
|
465
|
-
"optional": false,
|
|
466
|
-
"docs": {
|
|
467
|
-
"tags": [],
|
|
468
|
-
"text": "Callback invoked when user starts the commit process"
|
|
469
|
-
}
|
|
470
|
-
},
|
|
471
|
-
"folders": {
|
|
472
|
-
"type": "unknown",
|
|
473
|
-
"mutable": false,
|
|
474
|
-
"complexType": {
|
|
475
|
-
"original": "GxOption[]",
|
|
476
|
-
"resolved": "GxOption[]",
|
|
477
|
-
"references": {
|
|
478
|
-
"GxOption": {
|
|
479
|
-
"location": "import",
|
|
480
|
-
"path": "../../../common/types",
|
|
481
|
-
"id": "src/common/types.ts::GxOption"
|
|
482
|
-
}
|
|
483
|
-
}
|
|
484
|
-
},
|
|
485
|
-
"required": false,
|
|
486
|
-
"optional": false,
|
|
487
|
-
"docs": {
|
|
488
|
-
"tags": [],
|
|
489
|
-
"text": "Possible values for Folders filter"
|
|
490
|
-
}
|
|
491
|
-
},
|
|
492
|
-
"getRecentCommentCallback": {
|
|
493
|
-
"type": "unknown",
|
|
494
|
-
"mutable": false,
|
|
495
|
-
"complexType": {
|
|
496
|
-
"original": "GetRecentComment",
|
|
497
|
-
"resolved": "() => Promise<string>",
|
|
498
|
-
"references": {
|
|
499
|
-
"GetRecentComment": {
|
|
500
|
-
"location": "local",
|
|
501
|
-
"path": "/home/runner/work/genexus-ide-ui/genexus-ide-ui/src/components/team-dev/commit/commit.tsx",
|
|
502
|
-
"id": "src/components/team-dev/commit/commit.tsx::GetRecentComment"
|
|
503
|
-
}
|
|
504
|
-
}
|
|
505
|
-
},
|
|
506
|
-
"required": false,
|
|
507
|
-
"optional": false,
|
|
508
|
-
"docs": {
|
|
509
|
-
"tags": [],
|
|
510
|
-
"text": "Callback invoked when user press Recent Comments button."
|
|
511
|
-
}
|
|
512
|
-
},
|
|
513
|
-
"loadCallback": {
|
|
514
|
-
"type": "unknown",
|
|
515
|
-
"mutable": false,
|
|
516
|
-
"complexType": {
|
|
517
|
-
"original": "LoadCallback",
|
|
518
|
-
"resolved": "(filters: FiltersData) => Promise<CommitData>",
|
|
519
|
-
"references": {
|
|
520
|
-
"LoadCallback": {
|
|
521
|
-
"location": "local",
|
|
522
|
-
"path": "/home/runner/work/genexus-ide-ui/genexus-ide-ui/src/components/team-dev/commit/commit.tsx",
|
|
523
|
-
"id": "src/components/team-dev/commit/commit.tsx::LoadCallback"
|
|
524
|
-
}
|
|
525
|
-
}
|
|
526
|
-
},
|
|
527
|
-
"required": false,
|
|
528
|
-
"optional": false,
|
|
529
|
-
"docs": {
|
|
530
|
-
"tags": [],
|
|
531
|
-
"text": "Callback invoked when user wants to reload the grid"
|
|
532
|
-
}
|
|
533
|
-
},
|
|
534
|
-
"objectsContextMenuCallback": {
|
|
535
|
-
"type": "unknown",
|
|
536
|
-
"mutable": false,
|
|
537
|
-
"complexType": {
|
|
538
|
-
"original": "ObjectsContextMenuCallback",
|
|
539
|
-
"resolved": "(grid: CommitSourceType, contextMenuInfo: ContextMenuInfo) => Promise<void>",
|
|
540
|
-
"references": {
|
|
541
|
-
"ObjectsContextMenuCallback": {
|
|
542
|
-
"location": "local",
|
|
543
|
-
"path": "/home/runner/work/genexus-ide-ui/genexus-ide-ui/src/components/team-dev/commit/commit.tsx",
|
|
544
|
-
"id": "src/components/team-dev/commit/commit.tsx::ObjectsContextMenuCallback"
|
|
545
|
-
}
|
|
546
|
-
}
|
|
547
|
-
},
|
|
548
|
-
"required": false,
|
|
549
|
-
"optional": false,
|
|
550
|
-
"docs": {
|
|
551
|
-
"tags": [],
|
|
552
|
-
"text": "Callback invoked when the user activates the context menu in any grid"
|
|
553
|
-
}
|
|
554
|
-
},
|
|
555
|
-
"pendingItemsCheckedCallback": {
|
|
556
|
-
"type": "unknown",
|
|
557
|
-
"mutable": false,
|
|
558
|
-
"complexType": {
|
|
559
|
-
"original": "PendingItemsCheckedCallback",
|
|
560
|
-
"resolved": "(pendingItemsCheckedState: ItemsCheckedState) => Promise<ItemsCheckedResult>",
|
|
561
|
-
"references": {
|
|
562
|
-
"PendingItemsCheckedCallback": {
|
|
563
|
-
"location": "local",
|
|
564
|
-
"path": "/home/runner/work/genexus-ide-ui/genexus-ide-ui/src/components/team-dev/commit/commit.tsx",
|
|
565
|
-
"id": "src/components/team-dev/commit/commit.tsx::PendingItemsCheckedCallback"
|
|
566
|
-
}
|
|
567
|
-
}
|
|
568
|
-
},
|
|
569
|
-
"required": true,
|
|
570
|
-
"optional": false,
|
|
571
|
-
"docs": {
|
|
572
|
-
"tags": [],
|
|
573
|
-
"text": "Callback invoked when user check/uncheck any item from the 'Pending to Commit' grid"
|
|
574
|
-
}
|
|
575
|
-
},
|
|
576
|
-
"selectCallback": {
|
|
577
|
-
"type": "unknown",
|
|
578
|
-
"mutable": false,
|
|
579
|
-
"complexType": {
|
|
580
|
-
"original": "CommitSelectCallback",
|
|
581
|
-
"resolved": "(grid: CommitSourceType, selectionIds: string[]) => Promise<void>",
|
|
582
|
-
"references": {
|
|
583
|
-
"CommitSelectCallback": {
|
|
584
|
-
"location": "local",
|
|
585
|
-
"path": "/home/runner/work/genexus-ide-ui/genexus-ide-ui/src/components/team-dev/commit/commit.tsx",
|
|
586
|
-
"id": "src/components/team-dev/commit/commit.tsx::CommitSelectCallback"
|
|
587
|
-
}
|
|
588
|
-
}
|
|
589
|
-
},
|
|
590
|
-
"required": false,
|
|
591
|
-
"optional": false,
|
|
592
|
-
"docs": {
|
|
593
|
-
"tags": [],
|
|
594
|
-
"text": "Callback invoked when the user selects rows from the grid"
|
|
595
|
-
}
|
|
596
|
-
},
|
|
597
|
-
"types": {
|
|
598
|
-
"type": "unknown",
|
|
599
|
-
"mutable": false,
|
|
600
|
-
"complexType": {
|
|
601
|
-
"original": "ObjectType[]",
|
|
602
|
-
"resolved": "ObjectType[]",
|
|
603
|
-
"references": {
|
|
604
|
-
"ObjectType": {
|
|
605
|
-
"location": "import",
|
|
606
|
-
"path": "../../../common/types",
|
|
607
|
-
"id": "src/common/types.ts::ObjectType"
|
|
608
|
-
}
|
|
609
|
-
}
|
|
610
|
-
},
|
|
611
|
-
"required": false,
|
|
612
|
-
"optional": false,
|
|
613
|
-
"docs": {
|
|
614
|
-
"tags": [],
|
|
615
|
-
"text": "Possible values for Type filter"
|
|
616
|
-
}
|
|
617
|
-
}
|
|
618
|
-
};
|
|
619
|
-
}
|
|
620
|
-
static get states() {
|
|
621
|
-
return {
|
|
622
|
-
"comment": {},
|
|
623
|
-
"filterHasConditions": {},
|
|
624
|
-
"ignoredObjects": {},
|
|
625
|
-
"pendingCommits": {},
|
|
626
|
-
"commentInputHasError": {},
|
|
627
|
-
"commitingObjects": {},
|
|
628
|
-
"filtersHidden": {},
|
|
629
|
-
"folderOptionsModel": {},
|
|
630
|
-
"typeOptionsModel": {},
|
|
631
|
-
"changeSetOptionsModel": {},
|
|
632
|
-
"categoryOptionsModel": {},
|
|
633
|
-
"loading": {}
|
|
634
|
-
};
|
|
635
|
-
}
|
|
636
|
-
static get events() {
|
|
637
|
-
return [{
|
|
638
|
-
"method": "componentDidLoadEvent",
|
|
639
|
-
"name": "componentDidLoadEvent",
|
|
640
|
-
"bubbles": true,
|
|
641
|
-
"cancelable": true,
|
|
642
|
-
"composed": true,
|
|
643
|
-
"docs": {
|
|
644
|
-
"tags": [],
|
|
645
|
-
"text": "Emitted once after the component fully loads and the first render occurs"
|
|
646
|
-
},
|
|
647
|
-
"complexType": {
|
|
648
|
-
"original": "boolean",
|
|
649
|
-
"resolved": "boolean",
|
|
650
|
-
"references": {}
|
|
651
|
-
}
|
|
652
|
-
}, {
|
|
653
|
-
"method": "componentDidRenderFirstTime",
|
|
654
|
-
"name": "componentDidRenderFirstTime",
|
|
655
|
-
"bubbles": true,
|
|
656
|
-
"cancelable": true,
|
|
657
|
-
"composed": true,
|
|
658
|
-
"docs": {
|
|
659
|
-
"tags": [],
|
|
660
|
-
"text": "This event is emitted once just after the component is fully loaded and the first render() occurs"
|
|
661
|
-
},
|
|
662
|
-
"complexType": {
|
|
663
|
-
"original": "boolean",
|
|
664
|
-
"resolved": "boolean",
|
|
665
|
-
"references": {}
|
|
666
|
-
}
|
|
667
|
-
}];
|
|
668
|
-
}
|
|
669
|
-
static get methods() {
|
|
670
|
-
return {
|
|
671
|
-
"reload": {
|
|
672
|
-
"complexType": {
|
|
673
|
-
"signature": "() => Promise<void>",
|
|
674
|
-
"parameters": [],
|
|
675
|
-
"references": {
|
|
676
|
-
"Promise": {
|
|
677
|
-
"location": "global",
|
|
678
|
-
"id": "global::Promise"
|
|
679
|
-
}
|
|
680
|
-
},
|
|
681
|
-
"return": "Promise<void>"
|
|
682
|
-
},
|
|
683
|
-
"docs": {
|
|
684
|
-
"text": "Method used by the Host to force a data refresh in the grids",
|
|
685
|
-
"tags": []
|
|
686
|
-
}
|
|
687
|
-
}
|
|
688
|
-
};
|
|
689
|
-
}
|
|
690
|
-
static get elementRef() { return "el"; }
|
|
691
|
-
static get watchers() {
|
|
692
|
-
return [{
|
|
693
|
-
"propName": "categories",
|
|
694
|
-
"methodName": "categoriesChangedHandler"
|
|
695
|
-
}, {
|
|
696
|
-
"propName": "changeSet",
|
|
697
|
-
"methodName": "changeSetChangedHandler"
|
|
698
|
-
}, {
|
|
699
|
-
"propName": "folders",
|
|
700
|
-
"methodName": "foldersChangedHandler"
|
|
701
|
-
}, {
|
|
702
|
-
"propName": "types",
|
|
703
|
-
"methodName": "typesChangedHandler"
|
|
704
|
-
}];
|
|
705
|
-
}
|
|
706
|
-
}
|
|
707
|
-
_GxIdeTeamDevCommit_componentLocale = new WeakMap(), _GxIdeTeamDevCommit_loadDataCalledFirstTime = new WeakMap(), _GxIdeTeamDevCommit_renderedFirstTime = new WeakMap(), _GxIdeTeamDevCommit_commitsTabModel = new WeakMap(), _GxIdeTeamDevCommit_categoriesEl = new WeakMap(), _GxIdeTeamDevCommit_changeSetEl = new WeakMap(), _GxIdeTeamDevCommit_commitCommentEl = new WeakMap(), _GxIdeTeamDevCommit_foldersEl = new WeakMap(), _GxIdeTeamDevCommit_patternEl = new WeakMap(), _GxIdeTeamDevCommit_typesEl = new WeakMap(), _GxIdeTeamDevCommit_chGridIgnoredObjectsEl = new WeakMap(), _GxIdeTeamDevCommit_chGridPendingCommitsEl = new WeakMap(), _GxIdeTeamDevCommit_initializeComboBoxModels = new WeakMap(), _GxIdeTeamDevCommit_commitCallbackHandler = new WeakMap(), _GxIdeTeamDevCommit_evaluateFilterConditions = new WeakMap(), _GxIdeTeamDevCommit_getRecentCommentHandler = new WeakMap(), _GxIdeTeamDevCommit_gridOnSelectionChangedCallbackHandler = new WeakMap(), _GxIdeTeamDevCommit_handleColumnSortChanged = new WeakMap(), _GxIdeTeamDevCommit_loadData = new WeakMap(), _GxIdeTeamDevCommit_markAllPendingCommitsRows = new WeakMap(), _GxIdeTeamDevCommit_objectsOnContextMenuCallbackHandler = new WeakMap(), _GxIdeTeamDevCommit_pendingCommitsRowMarkingChangedHandler = new WeakMap(), _GxIdeTeamDevCommit_renderTabularGridColumnSet = new WeakMap(), _GxIdeTeamDevCommit_renderTabularGridCommonCells = new WeakMap(), _GxIdeTeamDevCommit_renderIgnoredObjectsGrid = new WeakMap(), _GxIdeTeamDevCommit_renderPendingCommitsGrid = new WeakMap(), _GxIdeTeamDevCommit_revertPendingCommitsCheckboxes = new WeakMap(), _GxIdeTeamDevCommit_togglePendingCommitsCheckboxes = new WeakMap(), _GxIdeTeamDevCommit_updateTabModel = new WeakMap(), _GxIdeTeamDevCommit_commentInputHandler = new WeakMap(), _GxIdeTeamDevCommit_toggleFiltersHandler = new WeakMap(), _GxIdeTeamDevCommit_onTabActivated = new WeakMap();
|
|
708
|
-
//# sourceMappingURL=commit.js.map
|