-
Notifications
You must be signed in to change notification settings - Fork 10
quickStart
This Quick Start tool allows you to build new SAS Viya applications with minimal setup. Once you have setup your local development enviroment you can add new applications. The following key libraries are installed by default:
You can replace and/or add other react component libraries.
Do the 3 steps - Ready, Set and Go as described below
Setup the development environment as follows:
- Issue this command
npx @sassoftware/create-react-restaf-viya-app [directoryName] --webapp <you application name> --use viya-app
Ex:
npx @sassoftware/create-react-resaf-viya-app myapp --webapp viyademo --use viya-app
This will create a sub-directory called myapp and install a started application that is ready for execution once you complete the VIYA_SERVER related configurations.
The required configurations are explained at this link.
The default clientId information are:
- Oauth flow: authorization_code
- clientid:
- secret: secret
- redirect_uri: http://localhost:5000/your-webapp-name
Once the server setup is completed, complete the setup of your development environment:
- Set an environment variable as follows
set VIYA_SERVER=<your viya server: ex: <http://myviyaserver.com>
Alternatively you can edit the .env file and add this information to it.
The last step is to build the default application.
yarn buildapp
The buildapp script does some necessary houskeeping before running the standard start script of create-react-app. So use buildapp to build the application.
Now you are ready to run the default application.
Enter the following commands
yarn app
At this point you should visit http://localhost:5000/your-webapp. If webapp value is viyademo then visit
http://localhost:5000/viyademo
These are default applications that you can access from the hamburger menu in the banner.
-
Run a casl program in Cas
-
Run a SAS program in spre
-
View the props these applications (and the new ones you will write) will have access to.
These are good examples for learning how to use restaf to make REST API calls to SAS Viya. Feel free to remove or update all the default components.
You are also free to replace the Header.js and Home.js to suit your needs. Both of these components receive the appMenu as a prop - this allows you to display the menu as you see fit.
It is a simple process to get your application appearing in the application menu. This menu is acccessed via the hamburger menu in the application's banner. The default app takes care of all the routing and passing the correct props to your application's main component.
Edit appMenus.js and add your application as a menu item. Your application will be displayed in the order it appears in the menu. The format of a menu item is:
Let us assume that your new component is called Mydemo.js
{
component: 'MyDemo',
hide: false, /* if not specified it defaults to false */
props : {
text: 'Total of two numbers',/* text used in the application menu */
n1: 10,
b2: 20
},
}
The component name must match the name of the component you will create in Step 2. The props are specific to your component. Typically these are configuration information to make your application work correctly.
The text will appear as the selection in the menu displayed by Home.js
At times you want to hide an application from users while you are working on it. Set hide to true in the menu. It defaults to false if not specified.
There are two sets of props your application will receive when selected from the menu.
Group 1 Props
-
All the prop that were passed to App.js in your index.js
-
This list is enhanced with the following:
- store -- restaf store object
- host -- your current SAS Viya url -- useful if you are using Viya VA SDK
- appName -- the name of your application
- appOptions -- this information is set in appenv.js in your root directory and the logonpayload. {appEnv: <info from appenv,.js>, logonPayload: < viya-server related information>} More on this later in this document
The content of appOptions is:
{
appEnv: < the object returned from appenv.js in the root directory. Used for passing application configuration information>
logonPayoad: < This has information related to logging on to Viya - used for implicit flow authentication >
}
These are accessed as usual:
```js
let {store, host, appName,appOptions} = props;
Group 2 props
The props provided in the menu defintion are available thru history as follows:
import { useLocation } from 'react-router-dom';
<snip>
let location = useLocation();
let appProps = location.state;
appProps now has the props specified in the appMenu.js for this component
As an example the props for the "ComputeService" application item is defined in App.js as shown below
{
component: 'ComputeService',
props: {
text: 'Import and Run SAS Program',
initialTab: 0,
tabs: [
{ label: 'ODS', component: 'ODS' },
{ label: 'Log', component: 'LogList' },
],
},
},
When you run the application your menu will appear on the home page. Selecting it will display your application.
Develop your main app component in the viewers directory. You can use any react library. By default this project installs @material-ui.
import React from 'react';
import { useLocation } from 'react-router-dom';
function MyApp(props) {
let {n1,n2,label} = useLocation().state;
let total = n1 + n2;
return <div>
<h1> {label} <h1>
<p> {total} </p>
</div>;
}
default export MyApp;
`Notes
-
Everytime you change appMenus.js or add a new viewer you must restart the app with the commands below. But normal editing of existing application will do a hot replacement of the app.
-
Recommendation: Clone one of the default examples and modify the code to suit your needs.
-
During development you should use the following command to have Hot Module Replacement enabled
yarn dev
4.To create production build issue the command
yarn buildapp
5.You can also run the application in docker(but first run yarn buildapp)
Run this command to create an image
yarn dkrbuild
Run this command to run the application
yarn dkrrun
That is all there is to adding new components.
Most folks create clientid's using shell scripts run on the Viya server or using POSTMAN scripts. Here is a even simpler way. You must have admin privledges. The example below uses the default values for this repo. Feel free to change it to suite your needs.
Step 1: Issue this command in a shell on your local machine
npx @sassoftware/registerclient --host=your-viya-server-url
Example:
npx @sassoftware/registerclient --host=http://mytestserver.com
Step 2: You will get a prompt on your shell. Enter "logon" as a command. You will be promoted for your userid and password
Step 3: After successful logon enter the following(replace viyademo with the value of webapp)
add alldemos -t authorization_code -s secret -r http://localhost:8080/viyademo,https://localhost/viyademo
Step 4: Enter help to explore other features or enter exit to get out of the application
This will run the application in development mode with Hot Module Replacement enabled
This will build the deployable version in the ./build directory and copy it to ./publish directory
This will run the deployable version you created with yarn build
In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
Launches the test runner in the interactive watch mode.
See the section about running tests for more information.
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
See the section about deployment for more information.
Note: this is a one-way operation. Once you eject
, you can’t go back!
If you aren’t satisfied with the build tool and configuration choices, you can eject
at any time. This command will remove the single build dependency from your project.
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except eject
will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
You don’t have to ever use eject
. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
You can learn more in the Create React App documentation.
To learn React, check out the React documentation.
This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting
This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size
This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app
This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration
This section has moved here: https://facebook.github.io/create-react-app/docs/deployment
This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify
.... Under construction...
-
restaf
-
restaflib
-
Examples:
- Cas Server
- Compute Server
- Scoring with MAS
- Scoring with CAS
- Utility
-
CAS Related Functions
-
MAS Related Functions
-
Compute Server Related Functions
-
Reports Related Functions
-
Interactive CLI
-
Special Topic