forked from apache/incubator-kie-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kie-issues#1498: Add "Generate form code for human interactions" comm…
…and in the BPMN VS Code extension (apache#2660)
- Loading branch information
1 parent
b1f6504
commit cca8844
Showing
32 changed files
with
592 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<!-- | ||
Licensed to the Apache Software Foundation (ASF) under one | ||
or more contributor license agreements. See the NOTICE file | ||
distributed with this work for additional information | ||
regarding copyright ownership. The ASF licenses this file | ||
to you 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. | ||
--> | ||
|
||
## Form Code Generator VS Code command | ||
|
||
This package is a VS Code command for generating form code from jBPM projects. | ||
|
||
## How it works? | ||
|
||
The command provides a user-friendly interface for generating form code from jBPM projects. It interacts with the file system getting the jBPM JSON Schemas that are generated during compile time, and feeding them to the "form-code-generator" that will generate the form code using one of two themes: Bootstrap4 or Patternfly. | ||
|
||
## Usage | ||
|
||
The command name will change depending on the host extension, but it should be available in the command palette. After starting the command, the user will be prompted with a few questions, which can be represented using the following diagram: | ||
|
||
![VS Code command diagram](./docs/vscode-command-diagram.png?raw=true "VS Code command diagram") | ||
|
||
## Build | ||
|
||
In order to build the library you must run the following command in the root folder of the repository: | ||
|
||
```shell script | ||
pnpm -F @kie-tools/form-code-generator-vscode-command... build:prod | ||
``` | ||
|
||
--- | ||
|
||
Apache KIE (incubating) is an effort undergoing incubation at The Apache Software | ||
Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is | ||
required of all newly accepted projects until a further review indicates that | ||
the infrastructure, communications, and decision making process have stabilized | ||
in a manner consistent with other successful ASF projects. While incubation | ||
status is not necessarily a reflection of the completeness or stability of the | ||
code, it does indicate that the project has yet to be fully endorsed by the ASF. | ||
|
||
Some of the incubating project’s releases may not be fully compliant with ASF | ||
policy. For example, releases may have incomplete or un-reviewed licensing | ||
conditions. What follows is a list of known issues the project is currently | ||
aware of (note that this list, by definition, is likely to be incomplete): | ||
|
||
- Hibernate, an LGPL project, is being used. Hibernate is in the process of | ||
relicensing to ASL v2 | ||
- Some files, particularly test files, and those not supporting comments, may | ||
be missing the ASF Licensing Header | ||
|
||
If you are planning to incorporate this work into your product/project, please | ||
be aware that you will need to conduct a thorough licensing review to determine | ||
the overall implications of including this work. For the current status of this | ||
project through the Apache Incubator visit: | ||
https://incubator.apache.org/projects/kie.html |
Binary file added
BIN
+71.7 KB
packages/form-code-generator-vscode-command/docs/vscode-command-diagram.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you 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. | ||
*/ | ||
|
||
const { varsWithName, composeEnv } = require("@kie-tools-scripts/build-env"); | ||
|
||
module.exports = composeEnv([require("@kie-tools/root-env/env")], { | ||
vars: varsWithName({}), | ||
get env() { | ||
return {}; | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"name": "@kie-tools/form-code-generator-vscode-command", | ||
"version": "0.0.0", | ||
"description": "", | ||
"license": "Apache-2.0", | ||
"keywords": [], | ||
"homepage": "https://github.com/apache/incubator-kie-tools", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/apache/incubator-kie-tools.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/apache/incubator-kie-tools/issues" | ||
}, | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"build:dev": "rimraf dist && tsc", | ||
"build:prod": "pnpm lint && rimraf dist && tsc", | ||
"lint": "run-script-if --bool \"$(build-env linters.run)\" --then \"kie-tools--eslint ./src\"" | ||
}, | ||
"dependencies": { | ||
"@kie-tools/form-code-generator": "workspace:*", | ||
"@kie-tools/form-code-generator-bootstrap4-theme": "workspace:*", | ||
"@kie-tools/form-code-generator-patternfly-theme": "workspace:*", | ||
"@kie-tools/jbpm-form-code-generator-themes": "workspace:*" | ||
}, | ||
"devDependencies": { | ||
"@kie-tools/eslint": "workspace:*", | ||
"@kie-tools/root-env": "workspace:*", | ||
"@kie-tools/tsconfig": "workspace:*", | ||
"@types/vscode": "1.67.0", | ||
"rimraf": "^3.0.2", | ||
"typescript": "^5.5.3" | ||
} | ||
} |
Oops, something went wrong.