Compare commits
4 Commits
v6.12.2
...
developmen
Author | SHA1 | Date | |
---|---|---|---|
b4e5dd74d9 | |||
64746b0aae | |||
16ae77c804 | |||
481c14f066 |
@ -1,5 +1,5 @@
|
|||||||
name: Build
|
name: Build
|
||||||
run-name: Running Lint Check and Licence checker on Pull Request
|
run-name: Running Lint Check
|
||||||
on: [pull_request]
|
on: [pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
@ -8,16 +8,9 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: 20.14.0
|
node-version: 18
|
||||||
|
|
||||||
- name: Install Google Chrome
|
|
||||||
run: |
|
|
||||||
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
|
|
||||||
echo "deb http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google.list
|
|
||||||
apt-get update
|
|
||||||
apt-get install -y google-chrome-stable xvfb
|
|
||||||
|
|
||||||
- name: Write .npmrc file
|
- name: Write .npmrc file
|
||||||
run: echo "$NPMRC" > client/.npmrc
|
run: echo "$NPMRC" > client/.npmrc
|
||||||
@ -25,27 +18,8 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
NPMRC: ${{ secrets.NPMRC}}
|
NPMRC: ${{ secrets.NPMRC}}
|
||||||
|
|
||||||
- name: Lint check
|
- run: npm run lint:check
|
||||||
run: npm run lint:check
|
- run: |
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: |
|
|
||||||
cd client
|
cd client
|
||||||
# Decrypt and Install sheet
|
|
||||||
echo ${{ secrets.SHEET_PWD }} | gpg --batch --yes --passphrase-fd 0 ./libraries/sheet-crypto.tgz.gpg
|
|
||||||
npm ci
|
npm ci
|
||||||
|
npm run license-checker
|
||||||
- name: Licence checker
|
|
||||||
run: |
|
|
||||||
cd client
|
|
||||||
npm run license-checker
|
|
||||||
|
|
||||||
- name: Angular Tests
|
|
||||||
run: |
|
|
||||||
cd client
|
|
||||||
npm run test:headless
|
|
||||||
|
|
||||||
- name: Production Build
|
|
||||||
run: |
|
|
||||||
cd client
|
|
||||||
npm run build
|
|
226
.gitea/workflows/development-test.yaml
Normal file
226
.gitea/workflows/development-test.yaml
Normal file
@ -0,0 +1,226 @@
|
|||||||
|
name: Test
|
||||||
|
run-name: Building and testing development branch
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- development
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
Build-production-and-ng-test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: 18
|
||||||
|
|
||||||
|
- name: Write .npmrc file
|
||||||
|
run: |
|
||||||
|
touch client/.npmrc
|
||||||
|
echo '${{ secrets.NPMRC}}' > client/.npmrc
|
||||||
|
|
||||||
|
- name: Install Chrome for Angular tests
|
||||||
|
run: |
|
||||||
|
apt-get update
|
||||||
|
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
|
||||||
|
apt install -y ./google-chrome*.deb;
|
||||||
|
export CHROME_BIN=/usr/bin/google-chrome
|
||||||
|
|
||||||
|
- name: Write cypress credentials
|
||||||
|
run: echo "$CYPRESS_CREDS" > ./client/cypress.env.json
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
CYPRESS_CREDS: ${{ secrets.CYPRESS_CREDS }}
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: npm ci
|
||||||
|
|
||||||
|
- name: Check audit
|
||||||
|
# Audit should fail and stop the CI if critical vulnerability found
|
||||||
|
run: |
|
||||||
|
npm audit --audit-level=critical --omit=dev
|
||||||
|
cd ./sas
|
||||||
|
npm audit --audit-level=critical --omit=dev
|
||||||
|
cd ../client
|
||||||
|
npm audit --audit-level=critical --omit=dev
|
||||||
|
|
||||||
|
- name: Angular Tests
|
||||||
|
run: |
|
||||||
|
cd client
|
||||||
|
npm test -- --no-watch --no-progress --browsers=ChromeHeadlessCI
|
||||||
|
|
||||||
|
- name: Angular Production Build
|
||||||
|
run: |
|
||||||
|
cd client
|
||||||
|
npm run postinstall
|
||||||
|
npm run build
|
||||||
|
|
||||||
|
Build-and-test-development:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: 18
|
||||||
|
|
||||||
|
- name: Write .npmrc file
|
||||||
|
run: |
|
||||||
|
touch client/.npmrc
|
||||||
|
echo '${{ secrets.NPMRC}}' > client/.npmrc
|
||||||
|
|
||||||
|
- run: apt-get update
|
||||||
|
- run: wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
|
||||||
|
- run: apt install -y ./google-chrome*.deb;
|
||||||
|
- run: export CHROME_BIN=/usr/bin/google-chrome
|
||||||
|
- run: apt-get update -y
|
||||||
|
- run: apt-get -y install libgtk2.0-0 libgtk-3-0 libgbm-dev libnotify-dev libgconf-2-4 libnss3 libxss1 libasound2 libxtst6 xauth xvfb
|
||||||
|
- run: apt -y install jq
|
||||||
|
|
||||||
|
- name: Write cypress credentials
|
||||||
|
run: echo "$CYPRESS_CREDS" > ./client/cypress.env.json
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
CYPRESS_CREDS: ${{ secrets.CYPRESS_CREDS }}
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: npm ci
|
||||||
|
|
||||||
|
# Install pm2 and prepare SASJS server
|
||||||
|
- run: npm i -g pm2
|
||||||
|
- run: curl -L https://github.com/sasjs/server/releases/latest/download/linux.zip > linux.zip
|
||||||
|
- run: unzip linux.zip
|
||||||
|
- run: touch .env
|
||||||
|
- run: echo RUN_TIMES=js >> .env
|
||||||
|
- run: echo NODE_PATH=node >> .env
|
||||||
|
- run: echo CORS=enable >> .env
|
||||||
|
- run: echo WHITELIST=http://localhost:4200 >> .env
|
||||||
|
- run: cat .env
|
||||||
|
- run: pm2 start api-linux --wait-ready
|
||||||
|
|
||||||
|
- name: Deploy mocked services
|
||||||
|
run: |
|
||||||
|
cd ./sas/mocks/sasjs
|
||||||
|
npm install -g @sasjs/cli
|
||||||
|
npm install -g replace-in-files-cli
|
||||||
|
sasjs cbd -t server-ci
|
||||||
|
# sasjs request services/admin/makedata -t server-ci -d ./deploy/makeData4GL.json -c ./deploy/requestConfig.json -o ./output.json
|
||||||
|
|
||||||
|
- name: Install ZIP
|
||||||
|
run: |
|
||||||
|
apt-get update
|
||||||
|
apt-get install zip
|
||||||
|
|
||||||
|
- name: Prepare and run frontend and cypress
|
||||||
|
run: |
|
||||||
|
cd ./client
|
||||||
|
mv ./cypress.env.example.json ./cypress.env.json
|
||||||
|
replace-in-files --regex='"username".*' --replacement='"username":"'${{ secrets.CYPRESS_USERNAME_SASJS }}'",' ./cypress.env.json
|
||||||
|
replace-in-files --regex='"password".*' --replacement='"password":"'${{ secrets.CYPRESS_PWD_SASJS }}'" ' ./cypress.env.json
|
||||||
|
cat ./cypress.env.json
|
||||||
|
npm run postinstall
|
||||||
|
# Prepare index.html to SASJS local
|
||||||
|
replace-in-files --regex='serverUrl=".*?"' --replacement='serverUrl="http://localhost:5000"' ./src/index.html
|
||||||
|
replace-in-files --regex='appLoc=".*?"' --replacement='appLoc="/Public/app/devtest"' ./src/index.html
|
||||||
|
replace-in-files --regex='serverType=".*?"' --replacement='serverType="SASJS"' ./src/index.html
|
||||||
|
replace-in-files --regex='"hosturl".*' --replacement='hosturl:"http://localhost:4200",' ./cypress.config.ts
|
||||||
|
cat ./cypress.config.ts
|
||||||
|
# Start frontend and run cypress
|
||||||
|
npm start & npx wait-on http://localhost:4200 && npx cypress run --browser chrome --spec "cypress/e2e/liveness.cy.ts,cypress/e2e/editor.cy.ts,cypress/e2e/excel.cy.ts,cypress/e2e/filtering.cy.ts,cypress/e2e/licensing.cy.ts"
|
||||||
|
|
||||||
|
- name: Zip Cypress videos
|
||||||
|
if: always()
|
||||||
|
run: |
|
||||||
|
zip -r cypress-videos ./client/cypress/videos
|
||||||
|
|
||||||
|
- name: Cypress videos artifacts
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: cypress-videos.zip
|
||||||
|
path: cypress-videos.zip
|
||||||
|
|
||||||
|
Build-and-test-development-latest-adapter:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: 18
|
||||||
|
|
||||||
|
- name: Write .npmrc file
|
||||||
|
run: echo "$NPMRC" > client/.npmrc
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
NPMRC: ${{ secrets.NPMRC}}
|
||||||
|
|
||||||
|
- run: apt-get update
|
||||||
|
- run: wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
|
||||||
|
- run: apt install -y ./google-chrome*.deb;
|
||||||
|
- run: export CHROME_BIN=/usr/bin/google-chrome
|
||||||
|
- run: apt-get update -y
|
||||||
|
- run: apt-get -y install libgtk2.0-0 libgtk-3-0 libgbm-dev libnotify-dev libgconf-2-4 libnss3 libxss1 libasound2 libxtst6 xauth xvfb
|
||||||
|
- run: apt -y install jq
|
||||||
|
|
||||||
|
- name: Write cypress credentials
|
||||||
|
run: echo "$CYPRESS_CREDS" > ./client/cypress.env.json
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
CYPRESS_CREDS: ${{ secrets.CYPRESS_CREDS }}
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: npm ci
|
||||||
|
|
||||||
|
# Install pm2 and prepare SASJS server
|
||||||
|
- run: npm i -g pm2
|
||||||
|
- run: curl -L https://github.com/sasjs/server/releases/latest/download/linux.zip > linux.zip
|
||||||
|
- run: unzip linux.zip
|
||||||
|
- run: touch .env
|
||||||
|
- run: echo RUN_TIMES=js >> .env
|
||||||
|
- run: echo NODE_PATH=node >> .env
|
||||||
|
- run: echo CORS=enable >> .env
|
||||||
|
- run: echo WHITELIST=http://localhost:4200 >> .env
|
||||||
|
- run: cat .env
|
||||||
|
- run: pm2 start api-linux --wait-ready
|
||||||
|
|
||||||
|
- name: Deploy mocked services
|
||||||
|
run: |
|
||||||
|
cd ./sas/mocks/sasjs
|
||||||
|
npm install -g @sasjs/cli
|
||||||
|
npm install -g replace-in-files-cli
|
||||||
|
sasjs cbd -t server-ci
|
||||||
|
|
||||||
|
- name: Install ZIP
|
||||||
|
run: |
|
||||||
|
apt-get update
|
||||||
|
apt-get install zip
|
||||||
|
|
||||||
|
- name: Prepare and run frontend and cypress
|
||||||
|
run: |
|
||||||
|
cd ./client
|
||||||
|
mv ./cypress.env.example.json ./cypress.env.json
|
||||||
|
replace-in-files --regex='"username".*' --replacement='"username":"'${{ secrets.CYPRESS_USERNAME_SASJS }}'",' ./cypress.env.json
|
||||||
|
replace-in-files --regex='"password".*' --replacement='"password":"'${{ secrets.CYPRESS_PWD_SASJS }}'" ' ./cypress.env.json
|
||||||
|
cat ./cypress.env.json
|
||||||
|
npm run postinstall
|
||||||
|
npm install @sasjs/adapter@latest
|
||||||
|
# Prepare index.html to SASJS local
|
||||||
|
replace-in-files --regex='serverUrl=".*?"' --replacement='serverUrl="http://localhost:5000"' ./src/index.html
|
||||||
|
replace-in-files --regex='appLoc=".*?"' --replacement='appLoc="/Public/app/devtest"' ./src/index.html
|
||||||
|
replace-in-files --regex='serverType=".*?"' --replacement='serverType="SASJS"' ./src/index.html
|
||||||
|
replace-in-files --regex='"hosturl".*' --replacement='hosturl:"http://localhost:4200",' ./cypress.config.ts
|
||||||
|
cat ./cypress.config.ts
|
||||||
|
# Start frontend and run cypress
|
||||||
|
npm start & npx wait-on http://localhost:4200 && npx cypress run --browser chrome --spec "cypress/e2e/liveness.cy.ts,cypress/e2e/editor.cy.ts,cypress/e2e/excel.cy.ts,cypress/e2e/filtering.cy.ts,cypress/e2e/licensing.cy.ts"
|
||||||
|
|
||||||
|
- name: Zip Cypress videos
|
||||||
|
if: always()
|
||||||
|
run: |
|
||||||
|
zip -r cypress-videos ./client/cypress/videos
|
||||||
|
|
||||||
|
- name: Cypress videos artifacts
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: cypress-videos-latest-adapter.zip
|
||||||
|
path: cypress-videos.zip
|
@ -1,164 +1,18 @@
|
|||||||
name: Release
|
name: Release
|
||||||
run-name: Testing and Releasing DC
|
run-name: Releasing DC
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
Build-production-and-ng-test:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: 20.14.0
|
|
||||||
|
|
||||||
- name: Write .npmrc file
|
|
||||||
run: |
|
|
||||||
touch client/.npmrc
|
|
||||||
echo '${{ secrets.NPMRC}}' > client/.npmrc
|
|
||||||
|
|
||||||
- name: Install Chrome for Angular tests
|
|
||||||
run: |
|
|
||||||
apt-get update
|
|
||||||
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
|
|
||||||
apt install -y ./google-chrome*.deb;
|
|
||||||
export CHROME_BIN=/usr/bin/google-chrome
|
|
||||||
|
|
||||||
- name: Write cypress credentials
|
|
||||||
run: echo "$CYPRESS_CREDS" > ./client/cypress.env.json
|
|
||||||
shell: bash
|
|
||||||
env:
|
|
||||||
CYPRESS_CREDS: ${{ secrets.CYPRESS_CREDS }}
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: |
|
|
||||||
cd client
|
|
||||||
# Decrypt and Install sheet
|
|
||||||
echo ${{ secrets.SHEET_PWD }} | gpg --batch --yes --passphrase-fd 0 ./libraries/sheet-crypto.tgz.gpg
|
|
||||||
npm ci
|
|
||||||
|
|
||||||
- name: Check audit
|
|
||||||
# Audit should fail and stop the CI if critical vulnerability found
|
|
||||||
run: |
|
|
||||||
npm audit --audit-level=critical --omit=dev
|
|
||||||
cd ./sas
|
|
||||||
npm audit --audit-level=critical --omit=dev
|
|
||||||
cd ../client
|
|
||||||
npm audit --audit-level=critical --omit=dev
|
|
||||||
|
|
||||||
- name: Angular Tests
|
|
||||||
run: |
|
|
||||||
cd client
|
|
||||||
npm run test:headless
|
|
||||||
|
|
||||||
- name: Angular Production Build
|
|
||||||
run: |
|
|
||||||
cd client
|
|
||||||
npm run postinstall
|
|
||||||
npm run build
|
|
||||||
|
|
||||||
Build-and-test-development:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
needs: Build-production-and-ng-test
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: 20.14.0
|
|
||||||
|
|
||||||
- name: Write .npmrc file
|
|
||||||
run: |
|
|
||||||
touch client/.npmrc
|
|
||||||
echo '${{ secrets.NPMRC}}' > client/.npmrc
|
|
||||||
|
|
||||||
- run: apt-get update
|
|
||||||
- run: wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
|
|
||||||
- run: apt install -y ./google-chrome*.deb;
|
|
||||||
- run: export CHROME_BIN=/usr/bin/google-chrome
|
|
||||||
- run: apt-get update -y
|
|
||||||
- run: apt-get -y install libgtk2.0-0 libgtk-3-0 libgbm-dev libnotify-dev libgconf-2-4 libnss3 libxss1 libasound2 libxtst6 xauth xvfb
|
|
||||||
- run: apt -y install jq
|
|
||||||
|
|
||||||
- name: Write cypress credentials
|
|
||||||
run: echo "$CYPRESS_CREDS" > ./client/cypress.env.json
|
|
||||||
shell: bash
|
|
||||||
env:
|
|
||||||
CYPRESS_CREDS: ${{ secrets.CYPRESS_CREDS }}
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: |
|
|
||||||
cd client
|
|
||||||
# Decrypt and Install sheet
|
|
||||||
echo ${{ secrets.SHEET_PWD }} | gpg --batch --yes --passphrase-fd 0 ./libraries/sheet-crypto.tgz.gpg
|
|
||||||
npm ci
|
|
||||||
|
|
||||||
# Install pm2 and prepare SASJS server
|
|
||||||
- run: npm i -g pm2
|
|
||||||
- run: curl -L https://github.com/sasjs/server/releases/latest/download/linux.zip > linux.zip
|
|
||||||
- run: unzip linux.zip
|
|
||||||
- run: touch .env
|
|
||||||
- run: echo RUN_TIMES=js >> .env
|
|
||||||
- run: echo NODE_PATH=node >> .env
|
|
||||||
- run: echo CORS=enable >> .env
|
|
||||||
- run: echo WHITELIST=http://localhost:4200 >> .env
|
|
||||||
- run: cat .env
|
|
||||||
- run: pm2 start api-linux --wait-ready
|
|
||||||
|
|
||||||
- name: Deploy mocked services
|
|
||||||
run: |
|
|
||||||
cd ./sas/mocks/sasjs
|
|
||||||
npm install -g @sasjs/cli
|
|
||||||
npm install -g replace-in-files-cli
|
|
||||||
sasjs cbd -t server-ci
|
|
||||||
# sasjs request services/admin/makedata -t server-ci -d ./deploy/makeData4GL.json -c ./deploy/requestConfig.json -o ./output.json
|
|
||||||
|
|
||||||
- name: Install ZIP
|
|
||||||
run: |
|
|
||||||
apt-get update
|
|
||||||
apt-get install zip
|
|
||||||
|
|
||||||
- name: Prepare and run frontend and cypress
|
|
||||||
run: |
|
|
||||||
cd ./client
|
|
||||||
mv ./cypress.env.example.json ./cypress.env.json
|
|
||||||
replace-in-files --regex='"username".*' --replacement='"username":"'${{ secrets.CYPRESS_USERNAME_SASJS }}'",' ./cypress.env.json
|
|
||||||
replace-in-files --regex='"password".*' --replacement='"password":"'${{ secrets.CYPRESS_PWD_SASJS }}'" ' ./cypress.env.json
|
|
||||||
cat ./cypress.env.json
|
|
||||||
npm run postinstall
|
|
||||||
# Prepare index.html to SASJS local
|
|
||||||
replace-in-files --regex='serverUrl=".*?"' --replacement='serverUrl="http://localhost:5000"' ./src/index.html
|
|
||||||
replace-in-files --regex='appLoc=".*?"' --replacement='appLoc="/Public/app/devtest"' ./src/index.html
|
|
||||||
replace-in-files --regex='serverType=".*?"' --replacement='serverType="SASJS"' ./src/index.html
|
|
||||||
replace-in-files --regex='"hosturl".*' --replacement='hosturl:"http://localhost:4200",' ./cypress.config.ts
|
|
||||||
cat ./cypress.config.ts
|
|
||||||
# Start frontend and run cypress
|
|
||||||
npm start & npx wait-on http://localhost:4200 && npx cypress run --browser chrome --spec "cypress/e2e/liveness.cy.ts,cypress/e2e/editor.cy.ts,cypress/e2e/excel-multi-load.cy.ts,cypress/e2e/excel.cy.ts,cypress/e2e/filtering.cy.ts,cypress/e2e/licensing.cy.ts"
|
|
||||||
|
|
||||||
- name: Zip Cypress videos
|
|
||||||
if: always()
|
|
||||||
run: |
|
|
||||||
zip -r cypress-videos ./client/cypress/videos
|
|
||||||
|
|
||||||
- name: Add cypress videos artifacts
|
|
||||||
if: always()
|
|
||||||
uses: actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: cypress-videos.zip
|
|
||||||
path: cypress-videos.zip
|
|
||||||
|
|
||||||
release:
|
release:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: [Build-production-and-ng-test, Build-and-test-development]
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: 20.14.0
|
node-version: 18
|
||||||
|
|
||||||
- name: Write .npmrc file
|
- name: Write .npmrc file
|
||||||
run: |
|
run: |
|
||||||
@ -176,19 +30,6 @@ jobs:
|
|||||||
npm i -g @sasjs/cli
|
npm i -g @sasjs/cli
|
||||||
# jq is used to parse the release JSON
|
# jq is used to parse the release JSON
|
||||||
apt-get install jq -y
|
apt-get install jq -y
|
||||||
# doxygen is used for the SASJS docs
|
|
||||||
apt-get update
|
|
||||||
apt-get install doxygen -y
|
|
||||||
|
|
||||||
- name: Frontend Preliminary Build
|
|
||||||
description: We want to prevent creating empty release if frontend fails
|
|
||||||
run: |
|
|
||||||
cd client
|
|
||||||
# Decrypt and Install sheet
|
|
||||||
echo ${{ secrets.SHEET_PWD }} | gpg --batch --yes --passphrase-fd 0 ./libraries/sheet-crypto.tgz.gpg
|
|
||||||
npm ci
|
|
||||||
npm i webpack
|
|
||||||
npm run build
|
|
||||||
|
|
||||||
- name: Create Empty Release (assets are posted later)
|
- name: Create Empty Release (assets are posted later)
|
||||||
run: |
|
run: |
|
||||||
@ -202,6 +43,7 @@ jobs:
|
|||||||
description: Must be created AFTER the release as the version (git tag) is used in the interface
|
description: Must be created AFTER the release as the version (git tag) is used in the interface
|
||||||
run: |
|
run: |
|
||||||
cd client
|
cd client
|
||||||
|
npm ci
|
||||||
npm run build
|
npm run build
|
||||||
|
|
||||||
- name: Build SAS9 EBI Release
|
- name: Build SAS9 EBI Release
|
||||||
@ -245,7 +87,6 @@ jobs:
|
|||||||
rm sasjsbuild/services/clickme.html
|
rm sasjsbuild/services/clickme.html
|
||||||
sasjs b -t viya
|
sasjs b -t viya
|
||||||
cp sasjsbuild/viya.sas ./viya.sas
|
cp sasjsbuild/viya.sas ./viya.sas
|
||||||
cp sasjsbuild/viya.json ./viya.json
|
|
||||||
|
|
||||||
- name: Zip Frontend (including viya.json for full viya deploy)
|
- name: Zip Frontend (including viya.json for full viya deploy)
|
||||||
run: |
|
run: |
|
||||||
@ -261,12 +102,6 @@ jobs:
|
|||||||
npm run compodoc:build
|
npm run compodoc:build
|
||||||
surfer put --token ${{ secrets.TSDOC_TOKEN }} --server webdoc.datacontroller.io documentation/* /
|
surfer put --token ${{ secrets.TSDOC_TOKEN }} --server webdoc.datacontroller.io documentation/* /
|
||||||
|
|
||||||
- name: Release code.datacontroller.io
|
|
||||||
run: |
|
|
||||||
cd sas
|
|
||||||
sasjs doc
|
|
||||||
surfer put --token ${{ secrets.CODE_DATACONTROLLER_IO }} --server code.datacontroller.io sasjsbuild/sasdocs/* /
|
|
||||||
|
|
||||||
- name: Upload assets to release
|
- name: Upload assets to release
|
||||||
run: |
|
run: |
|
||||||
RELEASE_ID=`curl -k 'https://git.datacontroller.io/api/v1/repos/dc/dc/releases/latest?access_token=${{ secrets.RELEASE_TOKEN }}' | jq -r '.id'`
|
RELEASE_ID=`curl -k 'https://git.datacontroller.io/api/v1/repos/dc/dc/releases/latest?access_token=${{ secrets.RELEASE_TOKEN }}' | jq -r '.id'`
|
||||||
@ -281,4 +116,3 @@ jobs:
|
|||||||
curl -k $URL -F attachment=@sas/sasjs_server.json.zip
|
curl -k $URL -F attachment=@sas/sasjs_server.json.zip
|
||||||
curl -k $URL -F attachment=@sas/sas9.sas
|
curl -k $URL -F attachment=@sas/sas9.sas
|
||||||
curl -k $URL -F attachment=@sas/viya.sas
|
curl -k $URL -F attachment=@sas/viya.sas
|
||||||
curl -k $URL -F attachment=@sas/viya.json
|
|
||||||
|
3
.gitignore
vendored
3
.gitignore
vendored
@ -11,9 +11,6 @@ client/cypress/screenshots
|
|||||||
client/cypress/results
|
client/cypress/results
|
||||||
client/cypress/videos
|
client/cypress/videos
|
||||||
client/documentation
|
client/documentation
|
||||||
client/**/sheet-crypto.tgz
|
|
||||||
client/.nx
|
|
||||||
client/libraries/sheet-crypto.tgz
|
|
||||||
cypress.env.json
|
cypress.env.json
|
||||||
sasjsbuild
|
sasjsbuild
|
||||||
sasjsresults
|
sasjsresults
|
||||||
|
35
.vscode/settings.json
vendored
35
.vscode/settings.json
vendored
@ -1,19 +1,18 @@
|
|||||||
{
|
{
|
||||||
"cSpell.words": [
|
"cSpell.words": [
|
||||||
"Licence",
|
"SYSERRORTEXT",
|
||||||
"SYSERRORTEXT",
|
"SYSWARNINGTEXT"
|
||||||
"SYSWARNINGTEXT",
|
],
|
||||||
"xlmaprules",
|
"editor.rulers": [
|
||||||
"xlmaps"
|
80
|
||||||
],
|
],
|
||||||
"editor.rulers": [80],
|
"files.trimTrailingWhitespace": true,
|
||||||
"files.trimTrailingWhitespace": true,
|
"[markdown]": {
|
||||||
"[markdown]": {
|
"files.trimTrailingWhitespace": false
|
||||||
"files.trimTrailingWhitespace": false
|
},
|
||||||
},
|
"workbench.colorCustomizations": {
|
||||||
"workbench.colorCustomizations": {
|
"titleBar.activeForeground": "#ebe8e8",
|
||||||
"titleBar.activeForeground": "#ebe8e8",
|
"titleBar.activeBackground": "#95ff0053",
|
||||||
"titleBar.activeBackground": "#95ff0053"
|
},
|
||||||
},
|
"terminal.integrated.wordSeparators": " ()[]{}',\"`─‘’"
|
||||||
"terminal.integrated.wordSeparators": " ()[]{}',\"`─‘’"
|
}
|
||||||
}
|
|
318
CHANGELOG.md
318
CHANGELOG.md
@ -1,321 +1,3 @@
|
|||||||
## [6.12.2](https://git.datacontroller.io/dc/dc/compare/v6.12.1...v6.12.2) (2025-01-27)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* unnecessary zeros when adding new row (data schema default values) ([a1a9051](https://git.datacontroller.io/dc/dc/commit/a1a90519c535ca25e00822b4d3358c991ac9662e))
|
|
||||||
|
|
||||||
## [6.12.1](https://git.datacontroller.io/dc/dc/compare/v6.12.0...v6.12.1) (2024-12-31)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* no upcase of pk fields in MPE_TABLES in delete scenario ([3de095f](https://git.datacontroller.io/dc/dc/commit/3de095fe7797cde60f0e232c188305fe423c27eb)), closes [#134](https://git.datacontroller.io/dc/dc/issues/134)
|
|
||||||
* reduce length of tmp table names. Closes [#130](https://git.datacontroller.io/dc/dc/issues/130) ([f9c2491](https://git.datacontroller.io/dc/dc/commit/f9c2491ab6e7b528b7ffc011fd9e45c963c5f6bf))
|
|
||||||
|
|
||||||
# [6.12.0](https://git.datacontroller.io/dc/dc/compare/v6.11.1...v6.12.0) (2024-09-02)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* added appLoc to the system page ([dd2138a](https://git.datacontroller.io/dc/dc/commit/dd2138ac5e6067de310e83d16fccc9b9764ba3ff))
|
|
||||||
* bumping core for passthrough fix, [#124](https://git.datacontroller.io/dc/dc/issues/124) ([caa9854](https://git.datacontroller.io/dc/dc/commit/caa9854ff0431ccbb6ff1d6d3509dc877362cceb))
|
|
||||||
* excel with password flow, introducing web worker for XLSX.read ([a3ce367](https://git.datacontroller.io/dc/dc/commit/a3ce36795007a4e3b6ac3499ffd119dc3758f387))
|
|
||||||
* implemented the new request wrapper usage, added XLSX read with a Web Worker, multi load preview data, full height ([4218da9](https://git.datacontroller.io/dc/dc/commit/4218da91cd193aa45346ad7e34ccc00ca89df4fb))
|
|
||||||
* **multi load:** xlsx read file ahead of time, while user choose datasets ([6547461](https://git.datacontroller.io/dc/dc/commit/65474616379e1dacc1329b3bdc5eb14f34428bb1))
|
|
||||||
* refactored adapter request wrapper function to return job log as well ([67436f4](https://git.datacontroller.io/dc/dc/commit/67436f4ff9bb4d77d5f897f47a3e3d472981f275))
|
|
||||||
* using temporary names for temporary tables ([ce50365](https://git.datacontroller.io/dc/dc/commit/ce503653cd9fc36f72fb172bd14816e07c792e14)), closes [#124](https://git.datacontroller.io/dc/dc/issues/124)
|
|
||||||
|
|
||||||
|
|
||||||
### Features
|
|
||||||
|
|
||||||
* searching data in excel files using new algorithm (massive performance improvement) ([bbb725c](https://git.datacontroller.io/dc/dc/commit/bbb725c64cc23ed701b189623992408c42fdde8f))
|
|
||||||
|
|
||||||
## [6.11.1](https://git.datacontroller.io/dc/dc/compare/v6.11.0...v6.11.1) (2024-07-02)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* adding SYSSITE, part of [#116](https://git.datacontroller.io/dc/dc/issues/116) ([a156c01](https://git.datacontroller.io/dc/dc/commit/a156c0111b3de5e3744e38d377d6e9aa09915803))
|
|
||||||
* ensuring review_reason_txt in output. Closes [#117](https://git.datacontroller.io/dc/dc/issues/117) ([e5d93fd](https://git.datacontroller.io/dc/dc/commit/e5d93fd7d6d86bc47ff56664bd812b4d9d0749a5))
|
|
||||||
|
|
||||||
# [6.11.0](https://git.datacontroller.io/dc/dc/compare/v6.10.1...v6.11.0) (2024-06-27)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* addressing PR comments ([d94df7f](https://git.datacontroller.io/dc/dc/commit/d94df7f0ebae8feab5e1d5cf8011af8c8be2ca18))
|
|
||||||
* **multi load:** fixed parsing algorithm reused for the multi load, the fix affects the normal upload as well. ([d4fee79](https://git.datacontroller.io/dc/dc/commit/d4fee791a72021e449cf9680c3e3a525dce41ac1))
|
|
||||||
* **multi load:** label rename ([fa04d7b](https://git.datacontroller.io/dc/dc/commit/fa04d7bf4e5ba337146bdaa926c60488f8851449))
|
|
||||||
|
|
||||||
|
|
||||||
### Features
|
|
||||||
|
|
||||||
* **multi load:** added HOT for user datasets input ([18363bb](https://git.datacontroller.io/dc/dc/commit/18363bbbeb9cf96183ba4841da8134b2f66f735c))
|
|
||||||
* **multi load:** implemented matching libds and parsing of the multiple sheets ([efcdc69](https://git.datacontroller.io/dc/dc/commit/efcdc694dd275cdb9a4e19f26e5522b8dadc5fd9))
|
|
||||||
* **multi load:** licence submit limits ([cffeab8](https://git.datacontroller.io/dc/dc/commit/cffeab813d8d4b324f82710dfd73953d4cbf8ffe))
|
|
||||||
* **multi load:** multiple csv files ([4d27665](https://git.datacontroller.io/dc/dc/commit/4d276657b35a147a2233a03afcb1716348555f52))
|
|
||||||
* **multi load:** refactored range find function, unlocking excel with password is reusable ([eb7c443](https://git.datacontroller.io/dc/dc/commit/eb7c44333c865e7f7bbfb54dd7f73bfc110f86a7))
|
|
||||||
* **multi load:** submitting multiple found tables at once ([5deba44](https://git.datacontroller.io/dc/dc/commit/5deba44d2b7352866d821b70dbbfbbf54955dc47))
|
|
||||||
|
|
||||||
## [6.10.1](https://git.datacontroller.io/dc/dc/compare/v6.10.0...v6.10.1) (2024-06-07)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* adding 60 more colours to crayons table. Closes [#112](https://git.datacontroller.io/dc/dc/issues/112) ([3521579](https://git.datacontroller.io/dc/dc/commit/3521579dead089eebf62455686be3aee88bde687))
|
|
||||||
* terms and conditions colours, editor on smaller screens show only icons ([e32d44b](https://git.datacontroller.io/dc/dc/commit/e32d44b1bcdfeea43d19b21ec0ddf4af1ce3992a))
|
|
||||||
|
|
||||||
# [6.10.0](https://git.datacontroller.io/dc/dc/compare/v6.9.0...v6.10.0) (2024-06-07)
|
|
||||||
|
|
||||||
|
|
||||||
### Features
|
|
||||||
|
|
||||||
* updated handsontable to v14 ([2f8d0b7](https://git.datacontroller.io/dc/dc/commit/2f8d0b764a957ad8c11cd1088fad5e0670aa1731))
|
|
||||||
|
|
||||||
# [6.9.0](https://git.datacontroller.io/dc/dc/compare/v6.8.5...v6.9.0) (2024-05-31)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* added colors.scss file, start of a refactor ([110ad9a](https://git.datacontroller.io/dc/dc/commit/110ad9a6e9ed39bd5591ae65c2d0005ba47ca758))
|
|
||||||
* added stealFocus directive ([9a79f37](https://git.datacontroller.io/dc/dc/commit/9a79f37bf143a1e05df7407358e2687c678e3e68))
|
|
||||||
|
|
||||||
|
|
||||||
### Features
|
|
||||||
|
|
||||||
* added app settings service to handle theme persistance, fix: optimised dark mode contrast ([35844e0](https://git.datacontroller.io/dc/dc/commit/35844e0cf1a639553269f2ab0f8666a56ab5cc47))
|
|
||||||
* **dark mode:** clarity optimizations ([afa7e38](https://git.datacontroller.io/dc/dc/commit/afa7e380aa3bdabd380c038522b9d73d9a8a3b91))
|
|
||||||
* **dark mode:** lineage and metadata ([27907ed](https://git.datacontroller.io/dc/dc/commit/27907ed00fe81f4c752ffe99d2fb029d5c884f0a))
|
|
||||||
* **dark mode:** refactoring clarity to enable dark mode, added toggle button ([5564aea](https://git.datacontroller.io/dc/dc/commit/5564aea9c25f8e81ff85afa8352325b9992e4043))
|
|
||||||
* **dark mode:** removing custom css rules so clarity can handle dark/light modes. Handsontable css for dark mode ([2c0afd0](https://git.datacontroller.io/dc/dc/commit/2c0afd02684cdf3bda374731b0359665e00ed95d))
|
|
||||||
|
|
||||||
## [6.8.5](https://git.datacontroller.io/dc/dc/compare/v6.8.4...v6.8.5) (2024-05-23)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* bitemporal load issue [#105](https://git.datacontroller.io/dc/dc/issues/105) ([967698e](https://git.datacontroller.io/dc/dc/commit/967698e4ce1e0abcbc6f0aff8a4be6c512dee93c))
|
|
||||||
|
|
||||||
## [6.8.4](https://git.datacontroller.io/dc/dc/compare/v6.8.3...v6.8.4) (2024-05-22)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* new approach to fixing [#105](https://git.datacontroller.io/dc/dc/issues/105) ([c11bd9a](https://git.datacontroller.io/dc/dc/commit/c11bd9a2c55e49f10451962cb2e222c21206bce5))
|
|
||||||
|
|
||||||
## [6.8.3](https://git.datacontroller.io/dc/dc/compare/v6.8.2...v6.8.3) (2024-05-09)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* updating core to increase filename length, closes [#103](https://git.datacontroller.io/dc/dc/issues/103) ([ee58fd5](https://git.datacontroller.io/dc/dc/commit/ee58fd5b4bc0dd3e3f232c4f26bb85b2e7fe2b54))
|
|
||||||
|
|
||||||
## [6.8.2](https://git.datacontroller.io/dc/dc/compare/v6.8.1...v6.8.2) (2024-05-03)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* dc_request_logs option feature ([93758ef](https://git.datacontroller.io/dc/dc/commit/93758efb275966c181f1ee8b6c752010909a0282))
|
|
||||||
* release process ([c0dc919](https://git.datacontroller.io/dc/dc/commit/c0dc9191e3b95ea6f7e5021fc0bdbcab0af4cc64))
|
|
||||||
|
|
||||||
## [6.8.1](https://git.datacontroller.io/dc/dc/compare/v6.8.0...v6.8.1) (2024-05-02)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* hide approve button when table revertable ([ec0f539](https://git.datacontroller.io/dc/dc/commit/ec0f539a337b176c83a661ff520a6892d47efa02))
|
|
||||||
|
|
||||||
# [6.8.0](https://git.datacontroller.io/dc/dc/compare/v6.7.0...v6.8.0) (2024-05-02)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* ci sheet lib, submit message auto focus ([c5e4650](https://git.datacontroller.io/dc/dc/commit/c5e46503272f3f3d9cd83ac04225babf79d4de44))
|
|
||||||
* **clarity:** new version style issues ([8c7de5a](https://git.datacontroller.io/dc/dc/commit/8c7de5aad7e7e32a64769696af9b93eb9a6225d3))
|
|
||||||
* cypress tests ([3dd85cc](https://git.datacontroller.io/dc/dc/commit/3dd85cc60bd5ac99bc930b6b9c89a8e707e4d51d))
|
|
||||||
* ensuring that only restorable versions are restorable ([a402856](https://git.datacontroller.io/dc/dc/commit/a4028562ce91b32ff971ab9821328b97cd23f381))
|
|
||||||
* ensuring version history only includes loaded versions ([51ebd25](https://git.datacontroller.io/dc/dc/commit/51ebd25aa362aa8e66c83b29b2c64aa0f206f5bd))
|
|
||||||
* final testing on restore feature ([297a84d](https://git.datacontroller.io/dc/dc/commit/297a84d3a4ebb47bef7f3ca9758978d727afed8d))
|
|
||||||
* issue with multiple adds/deletes, [#84](https://git.datacontroller.io/dc/dc/issues/84) ([904ca30](https://git.datacontroller.io/dc/dc/commit/904ca30f918da085fa05dae066367b512933d1a9))
|
|
||||||
* load_ref var ([aaad9f7](https://git.datacontroller.io/dc/dc/commit/aaad9f7207115599a006980fff099d59738dd2cd))
|
|
||||||
* removing alerts dummy data, closes [#93](https://git.datacontroller.io/dc/dc/issues/93) ([eba21e9](https://git.datacontroller.io/dc/dc/commit/eba21e96b4fa34e63b4477281f47d9a01d621f2e))
|
|
||||||
* restore table version improvement ([549f357](https://git.datacontroller.io/dc/dc/commit/549f35766ba7b5bbe55694845e85bfefc4193375))
|
|
||||||
* **sas:** viewer versions fix ([c6595c1](https://git.datacontroller.io/dc/dc/commit/c6595c1f618803d9202cba1a1fe76986449cf2e2))
|
|
||||||
* stage and approve buttons renaming ([ef81e33](https://git.datacontroller.io/dc/dc/commit/ef81e33f704d0b4f99405d96498e1d29ac817982))
|
|
||||||
* supporting SCD2 data reversions ([fa8396f](https://git.datacontroller.io/dc/dc/commit/fa8396f0394cbddb6dbacb4b355de078fad49980))
|
|
||||||
* table info modal, versions - column names ([801c8c6](https://git.datacontroller.io/dc/dc/commit/801c8c6a9fb95388a06a6c6284fec4dc25bb77c5))
|
|
||||||
* **updates:** angular, clarity, resolved legacy-peer-deps ([c60dd65](https://git.datacontroller.io/dc/dc/commit/c60dd65a1637333f11a0c39ef697c7292a6ede07))
|
|
||||||
|
|
||||||
|
|
||||||
### Features
|
|
||||||
|
|
||||||
* backend to show in getchangeinfo whether a user is allowed to restore ([8769841](https://git.datacontroller.io/dc/dc/commit/8769841f08694f672ef7ae1a17beacd0dbedda52))
|
|
||||||
* list versions of target tables (backend) ([f8a14d4](https://git.datacontroller.io/dc/dc/commit/f8a14d4bdef055b99930491d1f6fabe55a50a497))
|
|
||||||
* restore ([604c2e7](https://git.datacontroller.io/dc/dc/commit/604c2e70bdeeeb1aa5bb18b94f525ebd049397fa))
|
|
||||||
* SAS services & tests for RESTORE, [#84](https://git.datacontroller.io/dc/dc/issues/84) ([9ad7ae4](https://git.datacontroller.io/dc/dc/commit/9ad7ae47b5e793ce68ab21c9eeb8dee6cb85e496))
|
|
||||||
* staging page, restore buttons ([02a8a1c](https://git.datacontroller.io/dc/dc/commit/02a8a1c5654350cafc53b749cceb686fc6848c33))
|
|
||||||
* table metadata modal, versions tab (and link) ([b27fea5](https://git.datacontroller.io/dc/dc/commit/b27fea5b91e33b4673a3a991aedae558e366ca29))
|
|
||||||
* **versions:** getting list of versions (plus test) ([8003da9](https://git.datacontroller.io/dc/dc/commit/8003da94e615463ed3ddfd60b0cbf2e58615eab1))
|
|
||||||
|
|
||||||
# [6.7.0](https://git.datacontroller.io/dc/dc/compare/v6.6.4...v6.7.0) (2024-04-01)
|
|
||||||
|
|
||||||
|
|
||||||
### Features
|
|
||||||
|
|
||||||
* numeric values in hot dropdown aligned right ([9635626](https://git.datacontroller.io/dc/dc/commit/963562621ddf0e8d24a29a8481c5e6da1b040708))
|
|
||||||
|
|
||||||
## [6.6.4](https://git.datacontroller.io/dc/dc/compare/v6.6.3...v6.6.4) (2024-04-01)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* ordering SOFTSELECT numerically in dropdown ([f522038](https://git.datacontroller.io/dc/dc/commit/f522038b8ddb1da14b8adbf8346d0a4539a94cc8)), closes [#85](https://git.datacontroller.io/dc/dc/issues/85)
|
|
||||||
* reverting col ([fbbcf90](https://git.datacontroller.io/dc/dc/commit/fbbcf90956bf538b032b0107c07b8576d20353b9))
|
|
||||||
* typo ([31d4e5c](https://git.datacontroller.io/dc/dc/commit/31d4e5c727f790d428fb2ea8da60dca929561805))
|
|
||||||
|
|
||||||
## [6.6.3](https://git.datacontroller.io/dc/dc/compare/v6.6.2...v6.6.3) (2024-02-26)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* allow empty clause value when NE or CONTAINS ([432450a](https://git.datacontroller.io/dc/dc/commit/432450a15b51a269821ba1d430854f5d1dd04703))
|
|
||||||
|
|
||||||
## [6.6.2](https://git.datacontroller.io/dc/dc/compare/v6.6.1...v6.6.2) (2024-02-22)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* excel with commas getting wrapped in quotes ([3860134](https://git.datacontroller.io/dc/dc/commit/38601346a529cfe3787bb286a639e0293c365020))
|
|
||||||
|
|
||||||
## [6.6.1](https://git.datacontroller.io/dc/dc/compare/v6.6.0...v6.6.1) (2024-02-19)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* **client:** bumped @sasjs/adapter with fixed redirected login ([eb1c09d](https://git.datacontroller.io/dc/dc/commit/eb1c09d7909ba07faf763da261545dc1efaec1b3))
|
|
||||||
|
|
||||||
# [6.6.0](https://git.datacontroller.io/dc/dc/compare/v6.5.2...v6.6.0) (2024-02-12)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* adjust the col numbers in extracted data ([cff5989](https://git.datacontroller.io/dc/dc/commit/cff598955930d2581349e5c6e8b2dd3f9ac96b4c))
|
|
||||||
|
|
||||||
|
|
||||||
### Features
|
|
||||||
|
|
||||||
* extra table metadata for [#75](https://git.datacontroller.io/dc/dc/issues/75) ([837821f](https://git.datacontroller.io/dc/dc/commit/837821fd01477d340524dfdaf8dd3d3758cf3095))
|
|
||||||
* show dsnote on hover title ([6565834](https://git.datacontroller.io/dc/dc/commit/6565834ad4089ecf2de39967e6ed6f217ee4a0a5))
|
|
||||||
|
|
||||||
## [6.5.2](https://git.datacontroller.io/dc/dc/compare/v6.5.1...v6.5.2) (2024-02-06)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* ordering mpe_selectbox data by the data values after selectbox_order ([2b54034](https://git.datacontroller.io/dc/dc/commit/2b5403497317632a4be8a00f21455c036f1e6461))
|
|
||||||
|
|
||||||
## [6.5.1](https://git.datacontroller.io/dc/dc/compare/v6.5.0...v6.5.1) (2024-02-02)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* ensuring submitter email can be pulled from mpe_emails ([eac0104](https://git.datacontroller.io/dc/dc/commit/eac0104d7aebaf98ff1d1c504c1ce3b25d4a0ce8))
|
|
||||||
|
|
||||||
# [6.5.0](https://git.datacontroller.io/dc/dc/compare/v6.4.0...v6.5.0) (2024-01-26)
|
|
||||||
|
|
||||||
|
|
||||||
### Features
|
|
||||||
|
|
||||||
* filtering by reference to Variables as well as Values ([6eb1aa8](https://git.datacontroller.io/dc/dc/commit/6eb1aa85d29294d63e6af377e622fbed7fd1fab8))
|
|
||||||
|
|
||||||
# [6.4.0](https://git.datacontroller.io/dc/dc/compare/v6.3.1...v6.4.0) (2024-01-24)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* add dcLib to globals ([5d93346](https://git.datacontroller.io/dc/dc/commit/5d93346b52eda27c2829770e96686a713296d373))
|
|
||||||
* add service to get xlmap rules and fixed interface name ([9ffa30a](https://git.datacontroller.io/dc/dc/commit/9ffa30ab747f5b62acbd452431a5e6e440afcb80))
|
|
||||||
* increasing length of mpe_excel_map cols to ([2d4d068](https://git.datacontroller.io/dc/dc/commit/2d4d068413dcdac98581f08939e74bde65b73428))
|
|
||||||
* providing info on mapids to FE ([fd94945](https://git.datacontroller.io/dc/dc/commit/fd94945466c1a797ddc89815258a65624a9cb0cf))
|
|
||||||
* removing tables from EDIT menu that are in xlmaps ([9550ae4](https://git.datacontroller.io/dc/dc/commit/9550ae4d1154a0272f8a2427ac9d2afdfd699c96))
|
|
||||||
* removing XLMAP_TARGETLIBDS from mpe_xlmaps_rules table ([93702c6](https://git.datacontroller.io/dc/dc/commit/93702c63dc280cdba1e46f0fd8fe0deaec879611))
|
|
||||||
* renaming TABLE macvar to LOAD_REF in postdata.sas ([01915a2](https://git.datacontroller.io/dc/dc/commit/01915a2db9a4dfb94e4e8213e2c32181da36d349))
|
|
||||||
* reverting xlmap in getdata change ([2d6e747](https://git.datacontroller.io/dc/dc/commit/2d6e747db9b84e9fb0dfcf9102a2f7dd2cb51891))
|
|
||||||
* update edit tab to load ([516e5a2](https://git.datacontroller.io/dc/dc/commit/516e5a206216f79ab1dce9f4eab0d31115743160))
|
|
||||||
|
|
||||||
|
|
||||||
### Features
|
|
||||||
|
|
||||||
* adding ability to define the target table for excel maps ([c86fba9](https://git.datacontroller.io/dc/dc/commit/c86fba9dc75ddc6033132f469ad1c31b9131b12e))
|
|
||||||
* adding ismap attribute to getdata response (and fixing test) ([2702bb3](https://git.datacontroller.io/dc/dc/commit/2702bb3c84c45903def1aa2b8cc20a6dd080281b))
|
|
||||||
* Complex Excel Uploads ([cf19381](https://git.datacontroller.io/dc/dc/commit/cf193810606f287b8d6f864c4eb64d43c5ab5f3c)), closes [#69](https://git.datacontroller.io/dc/dc/issues/69)
|
|
||||||
* Create Tables / Files dropdown under load tab ([b473b19](https://git.datacontroller.io/dc/dc/commit/b473b198a61f468dff74cd8e64692e7847084a80))
|
|
||||||
* display list of maps in sidebar ([5aec024](https://git.datacontroller.io/dc/dc/commit/5aec0242429942f8a989b5fb79f8d3865e9de01a))
|
|
||||||
* implemented the logic for xlmap component ([50696bb](https://git.datacontroller.io/dc/dc/commit/50696bb926dd00472db65a008771a4b6352871be))
|
|
||||||
* model changes for [#69](https://git.datacontroller.io/dc/dc/issues/69) ([271543a](https://git.datacontroller.io/dc/dc/commit/271543a446a2116718f99f0540e3cd911f9f5fe7))
|
|
||||||
* new getxlmaps service to return rules for a particular xlmap_id ([56264ec](https://git.datacontroller.io/dc/dc/commit/56264ecc6908bf6c8e3e666dfeba7068d6195df8))
|
|
||||||
* validating the excel map after stage (adding load-ref) ([a485c3b](https://git.datacontroller.io/dc/dc/commit/a485c3b78724a36f7bacb264fb02140cc62d6512))
|
|
||||||
|
|
||||||
## [6.3.1](https://git.datacontroller.io/dc/dc/compare/v6.3.0...v6.3.1) (2024-01-01)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* enabling excel uploads to tables with retained keys, also adding more validation to MPE_TABLES updates ([3efccc4](https://git.datacontroller.io/dc/dc/commit/3efccc4cf3752763d049836724f2491c287f65db))
|
|
||||||
|
|
||||||
# [6.3.0](https://git.datacontroller.io/dc/dc/compare/v6.2.8...v6.3.0) (2023-12-04)
|
|
||||||
|
|
||||||
|
|
||||||
### Features
|
|
||||||
|
|
||||||
* viewer row handle ([dadac4f](https://git.datacontroller.io/dc/dc/commit/dadac4f13f85b5446198b6340cad28844defc94d))
|
|
||||||
|
|
||||||
## [6.2.8](https://git.datacontroller.io/dc/dc/compare/v6.2.7...v6.2.8) (2023-12-04)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* bumping sasjs/core to fix mp_loadformat issue ([a1d308e](https://git.datacontroller.io/dc/dc/commit/a1d308ea078786b27bf7ec940d018fc657d4c398))
|
|
||||||
* new logic for -fc suffix. Closes [#63](https://git.datacontroller.io/dc/dc/issues/63) ([5579db0](https://git.datacontroller.io/dc/dc/commit/5579db0eafc668b1bc310099b7cc3062e0598fc4))
|
|
||||||
|
|
||||||
## [6.2.7](https://git.datacontroller.io/dc/dc/compare/v6.2.6...v6.2.7) (2023-11-09)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* **audit:** updated crypto-js (hashing rows in dynamic cell validation) ([a7aa42a](https://git.datacontroller.io/dc/dc/commit/a7aa42a59b71597399924b8d2d06010c806321f3))
|
|
||||||
* missing dependency and avoiding label length limit issue ([91f128c](https://git.datacontroller.io/dc/dc/commit/91f128c2fead1e4f72267d689e67f49ec9a2ab35))
|
|
||||||
|
|
||||||
## [6.2.6](https://git.datacontroller.io/dc/dc/compare/v6.2.5...v6.2.6) (2023-10-18)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* bumping core to address mm_assigndirectlib issue ([c27cdab](https://git.datacontroller.io/dc/dc/commit/c27cdab3fccbde814a29424d0344173a73ea816c))
|
|
||||||
|
|
||||||
## [6.2.5](https://git.datacontroller.io/dc/dc/compare/v6.2.4...v6.2.5) (2023-10-17)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* enabling AUTHDOMAIN in MM_ASSIGNDIRECTLIB ([008b45a](https://git.datacontroller.io/dc/dc/commit/008b45ad175ec0e6026f5ef3bc210470226e328f))
|
|
||||||
|
|
||||||
## [6.2.4](https://git.datacontroller.io/dc/dc/compare/v6.2.3...v6.2.4) (2023-10-16)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* Enable display of metadata-only tables. Closes [#56](https://git.datacontroller.io/dc/dc/issues/56) ([f3e82b4](https://git.datacontroller.io/dc/dc/commit/f3e82b4ee2a9c1c851f812ac60e9eaf05f91a0f9))
|
|
||||||
|
|
||||||
## [6.2.3](https://git.datacontroller.io/dc/dc/compare/v6.2.2...v6.2.3) (2023-10-12)
|
|
||||||
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* bumping core library to avoid non-ascii char in mp_validatecols.sas. [#50](https://git.datacontroller.io/dc/dc/issues/50) ([11b06f6](https://git.datacontroller.io/dc/dc/commit/11b06f6416300b6d70b1570c415d5a5c004976db))
|
|
||||||
* removing copyright symbol from mpe_alerts macro. [#50](https://git.datacontroller.io/dc/dc/issues/50) ([adb7eb7](https://git.datacontroller.io/dc/dc/commit/adb7eb77550c68a2dab15a6ff358129820e9b612))
|
|
||||||
|
|
||||||
## [6.2.2](https://git.datacontroller.io/dc/dc/compare/v6.2.1...v6.2.2) (2023-10-09)
|
## [6.2.2](https://git.datacontroller.io/dc/dc/compare/v6.2.1...v6.2.2) (2023-10-09)
|
||||||
|
|
||||||
|
|
||||||
|
@ -27,6 +27,4 @@ For more information:
|
|||||||
|
|
||||||
* Main site: https://datacontroller.io
|
* Main site: https://datacontroller.io
|
||||||
* Docs: https://docs.datacontroller.io
|
* Docs: https://docs.datacontroller.io
|
||||||
* Code: https://code.datacontroller.io
|
* Code: https://code.datacontroller.io
|
||||||
|
|
||||||
For support, contact support@4gl.io or reach out on [Matrix](https://matrix.to/#/#dc:4gl.io)!
|
|
@ -45,7 +45,6 @@
|
|||||||
"numbro",
|
"numbro",
|
||||||
"@clr/icons",
|
"@clr/icons",
|
||||||
"@sasjs/adapter",
|
"@sasjs/adapter",
|
||||||
"@sasjs/utils/types/serverType",
|
|
||||||
"@sasjs/utils/input/validators",
|
"@sasjs/utils/input/validators",
|
||||||
"@sasjs/utils/utils/bytesToSize",
|
"@sasjs/utils/utils/bytesToSize",
|
||||||
"base64-arraybuffer",
|
"base64-arraybuffer",
|
||||||
@ -68,9 +67,9 @@
|
|||||||
"src/styles.scss"
|
"src/styles.scss"
|
||||||
],
|
],
|
||||||
"scripts": [
|
"scripts": [
|
||||||
|
"node_modules/@clr/icons/clr-icons.min.js",
|
||||||
"node_modules/marked/marked.min.js"
|
"node_modules/marked/marked.min.js"
|
||||||
],
|
]
|
||||||
"webWorkerTsConfig": "tsconfig.worker.json"
|
|
||||||
},
|
},
|
||||||
"configurations": {
|
"configurations": {
|
||||||
"production": {
|
"production": {
|
||||||
@ -117,10 +116,10 @@
|
|||||||
"builder": "@angular-devkit/build-angular:dev-server",
|
"builder": "@angular-devkit/build-angular:dev-server",
|
||||||
"configurations": {
|
"configurations": {
|
||||||
"production": {
|
"production": {
|
||||||
"buildTarget": "datacontroller:build:production"
|
"browserTarget": "datacontroller:build:production"
|
||||||
},
|
},
|
||||||
"development": {
|
"development": {
|
||||||
"buildTarget": "datacontroller:build:development"
|
"browserTarget": "datacontroller:build:development"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"defaultConfiguration": "development"
|
"defaultConfiguration": "development"
|
||||||
@ -128,29 +127,31 @@
|
|||||||
"extract-i18n": {
|
"extract-i18n": {
|
||||||
"builder": "@angular-devkit/build-angular:extract-i18n",
|
"builder": "@angular-devkit/build-angular:extract-i18n",
|
||||||
"options": {
|
"options": {
|
||||||
"buildTarget": "datacontroller:build"
|
"browserTarget": "datacontroller:build"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"test": {
|
"test": {
|
||||||
"builder": "@angular-devkit/build-angular:karma",
|
"builder": "@angular-devkit/build-angular:karma",
|
||||||
"options": {
|
"options": {
|
||||||
|
"tsConfig": "tsconfig.spec.json",
|
||||||
|
"inlineStyleLanguage": "scss",
|
||||||
|
"codeCoverage": true,
|
||||||
"polyfills": [
|
"polyfills": [
|
||||||
"src/polyfills.ts",
|
"src/polyfills.ts",
|
||||||
"zone.js",
|
"zone.js",
|
||||||
"zone.js/testing"
|
"zone.js/testing"
|
||||||
],
|
],
|
||||||
"tsConfig": "tsconfig.spec.json",
|
"styles": [
|
||||||
"inlineStyleLanguage": "scss",
|
"src/styles.scss"
|
||||||
|
],
|
||||||
|
"scripts": [
|
||||||
|
|
||||||
|
],
|
||||||
"assets": [
|
"assets": [
|
||||||
"src/favicon.ico",
|
"src/favicon.ico",
|
||||||
"src/assets"
|
"src/assets"
|
||||||
],
|
],
|
||||||
"styles": [
|
"karmaConfig": "karma.conf.js"
|
||||||
"src/styles.scss"
|
|
||||||
],
|
|
||||||
"scripts": [],
|
|
||||||
"karmaConfig": "karma.conf.js",
|
|
||||||
"webWorkerTsConfig": "tsconfig.worker.json"
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"lint": {
|
"lint": {
|
||||||
|
@ -9,8 +9,6 @@ export default defineConfig({
|
|||||||
html: true,
|
html: true,
|
||||||
json: false,
|
json: false,
|
||||||
},
|
},
|
||||||
viewportHeight: 900,
|
|
||||||
viewportWidth: 1600,
|
|
||||||
|
|
||||||
chromeWebSecurity: false,
|
chromeWebSecurity: false,
|
||||||
defaultCommandTimeout: 30000,
|
defaultCommandTimeout: 30000,
|
||||||
|
@ -15,6 +15,9 @@ context('editor tests: ', function () {
|
|||||||
|
|
||||||
this.beforeEach(() => {
|
this.beforeEach(() => {
|
||||||
cy.visit(hostUrl + appLocation)
|
cy.visit(hostUrl + appLocation)
|
||||||
|
// cy.get('input.username').type(username)
|
||||||
|
// cy.get('input.password').type(password)
|
||||||
|
// cy.get('.login-group button').click()
|
||||||
|
|
||||||
visitPage('home')
|
visitPage('home')
|
||||||
})
|
})
|
||||||
@ -115,6 +118,10 @@ context('editor tests: ', function () {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
this.afterEach(() => {
|
||||||
|
// cy.visit(`${hostUrl}/SASLogon/logout`)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
const clickOnEdit = (callback?: any) => {
|
const clickOnEdit = (callback?: any) => {
|
||||||
@ -214,13 +221,13 @@ const submitExcel = (callback?: any) => {
|
|||||||
|
|
||||||
const rejectExcel = (callback?: any) => {
|
const rejectExcel = (callback?: any) => {
|
||||||
cy.get('button', { timeout: longerCommandTimeout })
|
cy.get('button', { timeout: longerCommandTimeout })
|
||||||
.should('contain', 'Approve')
|
.should('contain', 'Go to approvals screen')
|
||||||
.then((allButtons: any) => {
|
.then((allButtons: any) => {
|
||||||
for (let approvalButton of allButtons) {
|
for (let approvalButton of allButtons) {
|
||||||
if (
|
if (
|
||||||
approvalButton.innerText
|
approvalButton.innerText
|
||||||
.toLowerCase()
|
.toLowerCase()
|
||||||
.includes('approve')
|
.includes('go to approvals screen')
|
||||||
) {
|
) {
|
||||||
approvalButton.click()
|
approvalButton.click()
|
||||||
break
|
break
|
||||||
|
@ -1,228 +0,0 @@
|
|||||||
import { Callbacks } from 'cypress/types/jquery/index'
|
|
||||||
|
|
||||||
const username = Cypress.env('username')
|
|
||||||
const password = Cypress.env('password')
|
|
||||||
const hostUrl = Cypress.env('hosturl')
|
|
||||||
const appLocation = Cypress.env('appLocation')
|
|
||||||
const longerCommandTimeout = Cypress.env('longerCommandTimeout')
|
|
||||||
const serverType = Cypress.env('serverType')
|
|
||||||
const libraryToOpenIncludes = Cypress.env(`libraryToOpenIncludes_${serverType}`)
|
|
||||||
const fixturePath = 'excels_multi_load/'
|
|
||||||
|
|
||||||
const library = 'DC996664'
|
|
||||||
const mpeXTestTable = 'MPE_X_TEST'
|
|
||||||
const mpeTablesTable = 'MPE_TABLES'
|
|
||||||
|
|
||||||
context('excel multi load tests: ', function () {
|
|
||||||
this.beforeAll(() => {
|
|
||||||
cy.visit(`${hostUrl}/SASLogon/logout`)
|
|
||||||
cy.loginAndUpdateValidKey(true)
|
|
||||||
})
|
|
||||||
|
|
||||||
this.beforeEach(() => {
|
|
||||||
cy.visit(hostUrl + appLocation)
|
|
||||||
|
|
||||||
visitPage('home/multi-load')
|
|
||||||
|
|
||||||
colorLog(
|
|
||||||
`TEST START ---> ${
|
|
||||||
Cypress.mocha.getRunner().suite.ctx.currentTest.title
|
|
||||||
}`,
|
|
||||||
'#3498DB'
|
|
||||||
)
|
|
||||||
})
|
|
||||||
|
|
||||||
it('1 | Uploads Excel file with multiple sheets, 3 sheets including data, 2 sheets matched with dataset', (done) => {
|
|
||||||
attachExcelFile('multi_load_test_2.xlsx', () => {
|
|
||||||
checkHotUserDatasetTable('hotTableUserDataset', [
|
|
||||||
[library, mpeXTestTable],
|
|
||||||
[library, mpeTablesTable]
|
|
||||||
], () => {
|
|
||||||
cy.get('#continue-btn').trigger('click').then(() => {
|
|
||||||
checkIfTreeHasTables([`${library}.${mpeXTestTable}`, `${library}.${mpeTablesTable}`], undefined, (includes: boolean) => {
|
|
||||||
if (includes) {
|
|
||||||
// MPE_TABLES sheet does not have data so 1 error image must be shown
|
|
||||||
hasErrorTables(1, (valid: boolean) => {
|
|
||||||
if (valid) done()
|
|
||||||
})
|
|
||||||
}
|
|
||||||
})
|
|
||||||
})
|
|
||||||
})
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
it('2 | Uploads Excel file with multiple sheets, 2 sheets matched with dataset, 1 matched sheet does not have data', (done) => {
|
|
||||||
attachExcelFile('multi_load_test_1.xlsx', () => {
|
|
||||||
checkHotUserDatasetTable('hotTableUserDataset', [
|
|
||||||
[library, mpeXTestTable],
|
|
||||||
[library, mpeTablesTable]
|
|
||||||
], () => {
|
|
||||||
cy.get('#continue-btn').trigger('click').then(() => {
|
|
||||||
checkIfTreeHasTables([`${library}.${mpeXTestTable}`, `${library}.${mpeTablesTable}`], `${library}.${mpeXTestTable}`, (includes: boolean) => {
|
|
||||||
if (includes) {
|
|
||||||
cy.get('#hotTable').should('be.visible').then(() => {
|
|
||||||
checkHotUserDatasetTable('hotTable', [
|
|
||||||
['No', '1', 'more dummy data'],
|
|
||||||
['No', '1', 'It was a dark and stormy night. The wind was blowing a gale! The captain said to his mate - mate, tell us a tale. And this, is the tale he told: It was a dark and stormy night. The wind was blowing a gale! The captain said to his mate - mate, tell us a tale. And this, is the tale he told: It was a dark and stormy night. The wind was blowing a gale! The captain said to his mate - mate, tell us a tale. And this, is the tale he told: It was a dark and stormy night. The wind was blowing a gale! The captain said to his mate - mate, tell us a tale. And this, is the tale he told:'],
|
|
||||||
['No', '1', 'if you can fill the unforgiving minute']
|
|
||||||
], () => {
|
|
||||||
submitTables()
|
|
||||||
|
|
||||||
hasSuccessSubmits(2, (valid: boolean) => {
|
|
||||||
if (valid) done()
|
|
||||||
})
|
|
||||||
|
|
||||||
})
|
|
||||||
})
|
|
||||||
}
|
|
||||||
})
|
|
||||||
})
|
|
||||||
})
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
it('3 | Uploads Excel file with multiple sheets, 1 sheets has 2 tables', (done) => {
|
|
||||||
attachExcelFile('multi_load_test_1.xlsx', () => {
|
|
||||||
checkHotUserDatasetTable('hotTableUserDataset', [
|
|
||||||
[library, mpeXTestTable],
|
|
||||||
[library, mpeTablesTable]
|
|
||||||
], () => {
|
|
||||||
cy.get('#continue-btn').trigger('click').then(() => {
|
|
||||||
checkIfTreeHasTables([`${library}.${mpeXTestTable}`, `${library}.${mpeTablesTable}`], `${library}.${mpeXTestTable}`, (includes: boolean) => {
|
|
||||||
if (includes) {
|
|
||||||
cy.get('#hotTable').should('be.visible').then(() => {
|
|
||||||
checkHotUserDatasetTable('hotTable', [
|
|
||||||
['No', '1', 'more dummy data'],
|
|
||||||
['No', '1', 'It was a dark and stormy night. The wind was blowing a gale! The captain said to his mate - mate, tell us a tale. And this, is the tale he told: It was a dark and stormy night. The wind was blowing a gale! The captain said to his mate - mate, tell us a tale. And this, is the tale he told: It was a dark and stormy night. The wind was blowing a gale! The captain said to his mate - mate, tell us a tale. And this, is the tale he told: It was a dark and stormy night. The wind was blowing a gale! The captain said to his mate - mate, tell us a tale. And this, is the tale he told:'],
|
|
||||||
['No', '1', 'if you can fill the unforgiving minute']
|
|
||||||
], () => {
|
|
||||||
clickOnTreeNode('DC996664.MPE_TABLES', () => {
|
|
||||||
cy.wait(1000).then(() => {
|
|
||||||
cy.get('#hotTable').should('be.visible').then(() => {
|
|
||||||
checkHotUserDatasetTable('hotTable', [
|
|
||||||
['No', 'DC914286', 'MPE_COLUMN_LEVEL_SECURITY'],
|
|
||||||
['No', 'DC914286', 'MPE_XLMAP_INFO'],
|
|
||||||
['No', 'DC914286', 'MPE_XLMAP_RULES']
|
|
||||||
], () => {
|
|
||||||
submitTables()
|
|
||||||
|
|
||||||
hasSuccessSubmits(2, (valid: boolean) => {
|
|
||||||
if (valid) done()
|
|
||||||
})
|
|
||||||
|
|
||||||
})
|
|
||||||
})
|
|
||||||
})
|
|
||||||
})
|
|
||||||
})
|
|
||||||
})
|
|
||||||
}
|
|
||||||
})
|
|
||||||
})
|
|
||||||
})
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
this.afterEach(() => {
|
|
||||||
colorLog(`TEST END -------------`, '#3498DB')
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
const attachExcelFile = (excelFilename: string, callback?: any) => {
|
|
||||||
cy.get('#browse-file')
|
|
||||||
.should('exist')
|
|
||||||
.click()
|
|
||||||
.then(() => {
|
|
||||||
cy.get('input[type="file"]#file-upload')
|
|
||||||
.attachFile(`/${fixturePath}/${excelFilename}`)
|
|
||||||
.then(() => {
|
|
||||||
if (callback) callback()
|
|
||||||
})
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
const checkHotUserDatasetTable = (hotId: string, dataToContain: any[][], callback?: () => void) => {
|
|
||||||
cy.get(`#${hotId}`, { timeout: longerCommandTimeout })
|
|
||||||
.find('div.ht_master.handsontable')
|
|
||||||
.find('div.wtHolder')
|
|
||||||
.find('div.wtHider')
|
|
||||||
.find('div.wtSpreader')
|
|
||||||
.find('table.htCore')
|
|
||||||
.find('tbody')
|
|
||||||
.then((data) => {
|
|
||||||
cy.wait(2000).then(() => {
|
|
||||||
for (let rowI = 0; rowI < dataToContain.length; rowI++) {
|
|
||||||
for (let colI = 0; colI < dataToContain[rowI].length; colI++) {
|
|
||||||
expect(data[0].children[rowI].children[colI]).to.contain(dataToContain[rowI][colI])
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (callback) callback()
|
|
||||||
})
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
const clickOnTreeNode = (clickOnNode: string, callback?: () => void) => {
|
|
||||||
cy.get('.nav-tree clr-tree > clr-tree-node').then((treeNodes: any) => {
|
|
||||||
for (let node of treeNodes) {
|
|
||||||
if (node.innerText.toUpperCase().trim().includes(clickOnNode)) {
|
|
||||||
cy.get(node).trigger('click')
|
|
||||||
if (callback) callback()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
const checkIfTreeHasTables = (tables: string[], clickOnNode?: string, callback?: (includes: boolean) => void) => {
|
|
||||||
cy.get('.nav-tree clr-tree > clr-tree-node').then((treeNodes: any) => {
|
|
||||||
let datasets = tables
|
|
||||||
let nodesCorrect = true
|
|
||||||
let nodeToClick
|
|
||||||
|
|
||||||
for (let node of treeNodes) {
|
|
||||||
if (!datasets.includes(node.innerText.toUpperCase().trim())) {
|
|
||||||
nodesCorrect = false
|
|
||||||
}
|
|
||||||
|
|
||||||
if (clickOnNode) {
|
|
||||||
if (node.innerText.toUpperCase().trim().includes(clickOnNode)) {
|
|
||||||
nodeToClick = node
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (nodeToClick) {
|
|
||||||
cy.wait(1000)
|
|
||||||
cy.get(nodeToClick).trigger('click')
|
|
||||||
}
|
|
||||||
|
|
||||||
if (callback) callback(nodesCorrect)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
const submitTables = () => {
|
|
||||||
cy.get('#submit-all').trigger('click')
|
|
||||||
cy.get('#submit-tables').trigger('click')
|
|
||||||
cy.wait(1000)
|
|
||||||
}
|
|
||||||
|
|
||||||
const hasSuccessSubmits = (expectedNoOfSubmits: number, callback: (valid: boolean) => void) => {
|
|
||||||
cy.get('.nav-tree clr-tree > clr-tree-node cds-icon[status="success"]').should('be.visible').then(($nodes) => {
|
|
||||||
callback(expectedNoOfSubmits === $nodes.length)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
const hasErrorTables = (expectedNoOfErrors: number, callback: (valid: boolean) => void) => {
|
|
||||||
cy.get('.nav-tree clr-tree > clr-tree-node cds-icon[status="danger"]').should('be.visible').then(($nodes) => {
|
|
||||||
callback(expectedNoOfErrors === $nodes.length)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
const visitPage = (url: string) => {
|
|
||||||
cy.visit(`${hostUrl}${appLocation}/#/${url}`)
|
|
||||||
}
|
|
||||||
|
|
||||||
const colorLog = (msg: string, color: string) => {
|
|
||||||
console.log('%c' + msg, 'color:' + color + ';font-weight:bold;')
|
|
||||||
}
|
|
@ -17,6 +17,9 @@ context('excel tests: ', function () {
|
|||||||
|
|
||||||
this.beforeEach(() => {
|
this.beforeEach(() => {
|
||||||
cy.visit(hostUrl + appLocation)
|
cy.visit(hostUrl + appLocation)
|
||||||
|
// cy.get('input.username').type(username)
|
||||||
|
// cy.get('input.password').type(password)
|
||||||
|
// cy.get('.login-group button').click()
|
||||||
|
|
||||||
visitPage('home')
|
visitPage('home')
|
||||||
|
|
||||||
@ -109,8 +112,13 @@ context('excel tests: ', function () {
|
|||||||
openTableFromTree(libraryToOpenIncludes, 'mpe_x_test')
|
openTableFromTree(libraryToOpenIncludes, 'mpe_x_test')
|
||||||
|
|
||||||
attachExcelFile('duplicate_column_excel.xlsx', () => {
|
attachExcelFile('duplicate_column_excel.xlsx', () => {
|
||||||
submitExcel()
|
cy.get('.abortMsg', { timeout: longerCommandTimeout })
|
||||||
rejectExcel(done)
|
.should('exist')
|
||||||
|
.then((elements: any) => {
|
||||||
|
if (elements[0]) {
|
||||||
|
if (elements[0].innerText.toLowerCase().includes('missing')) done()
|
||||||
|
}
|
||||||
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -329,6 +337,7 @@ context('excel tests: ', function () {
|
|||||||
|
|
||||||
this.afterEach(() => {
|
this.afterEach(() => {
|
||||||
colorLog(`TEST END -------------`, '#3498DB')
|
colorLog(`TEST END -------------`, '#3498DB')
|
||||||
|
// cy.visit(`${hostUrl}/SASLogon/logout`)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -396,13 +405,13 @@ const submitExcel = (callback?: any) => {
|
|||||||
|
|
||||||
const rejectExcel = (callback?: any) => {
|
const rejectExcel = (callback?: any) => {
|
||||||
cy.get('button', { timeout: longerCommandTimeout })
|
cy.get('button', { timeout: longerCommandTimeout })
|
||||||
.should('contain', 'Approve')
|
.should('contain', 'Go to approvals screen')
|
||||||
.then((allButtons: any) => {
|
.then((allButtons: any) => {
|
||||||
for (let approvalButton of allButtons) {
|
for (let approvalButton of allButtons) {
|
||||||
if (
|
if (
|
||||||
approvalButton.innerText
|
approvalButton.innerText
|
||||||
.toLowerCase()
|
.toLowerCase()
|
||||||
.includes('approve')
|
.includes('go to approvals screen')
|
||||||
) {
|
) {
|
||||||
approvalButton.click()
|
approvalButton.click()
|
||||||
break
|
break
|
||||||
@ -429,13 +438,13 @@ const rejectExcel = (callback?: any) => {
|
|||||||
|
|
||||||
const acceptExcel = (callback?: any) => {
|
const acceptExcel = (callback?: any) => {
|
||||||
cy.get('button', { timeout: longerCommandTimeout })
|
cy.get('button', { timeout: longerCommandTimeout })
|
||||||
.should('contain', 'Approve')
|
.should('contain', 'Go to approvals screen')
|
||||||
.then((allButtons: any) => {
|
.then((allButtons: any) => {
|
||||||
for (let approvalButton of allButtons) {
|
for (let approvalButton of allButtons) {
|
||||||
if (
|
if (
|
||||||
approvalButton.innerText
|
approvalButton.innerText
|
||||||
.toLowerCase()
|
.toLowerCase()
|
||||||
.includes('approve')
|
.includes('go to approvals screen')
|
||||||
) {
|
) {
|
||||||
approvalButton.click()
|
approvalButton.click()
|
||||||
break
|
break
|
||||||
|
@ -15,7 +15,9 @@ context('filtering tests: ', function () {
|
|||||||
|
|
||||||
this.beforeEach(() => {
|
this.beforeEach(() => {
|
||||||
cy.visit(hostUrl + appLocation, { timeout: longerCommandTimeout })
|
cy.visit(hostUrl + appLocation, { timeout: longerCommandTimeout })
|
||||||
|
// cy.get('input.username').type(username)
|
||||||
|
// cy.get('input.password').type(password)
|
||||||
|
// cy.get('.login-group button').click()
|
||||||
|
|
||||||
visitPage('home')
|
visitPage('home')
|
||||||
})
|
})
|
||||||
@ -157,21 +159,24 @@ context('filtering tests: ', function () {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
// TODO: fix
|
it('7 | filter bestnum field BETWEEN', (done) => {
|
||||||
// it('7 | filter bestnum field BETWEEN', (done) => {
|
openTableFromTree(libraryToOpenIncludes, 'mpe_x_test')
|
||||||
// openTableFromTree(libraryToOpenIncludes, 'mpe_x_test')
|
|
||||||
|
|
||||||
// openFilterPopup(() => {
|
openFilterPopup(() => {
|
||||||
// setFilterWithValue('SOME_BESTNUM', '0-10', 'between', () => {
|
setFilterWithValue('SOME_BESTNUM', '0-10', 'between', () => {
|
||||||
// checkInfoBarIncludes(
|
checkInfoBarIncludes(
|
||||||
// `AND,AND,0,SOME_BESTNUM,BETWEEN,0 AND 10`,
|
`AND,AND,0,SOME_BESTNUM,BETWEEN,0 AND 10`,
|
||||||
// (includes: boolean) => {
|
(includes: boolean) => {
|
||||||
// if (includes) done()
|
if (includes) done()
|
||||||
// }
|
}
|
||||||
// )
|
)
|
||||||
// })
|
})
|
||||||
// })
|
})
|
||||||
// })
|
})
|
||||||
|
|
||||||
|
this.afterEach(() => {
|
||||||
|
// cy.visit(`${hostUrl}/SASLogon/logout`)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
const checkInfoBarIncludes = (text: string, callback: any) => {
|
const checkInfoBarIncludes = (text: string, callback: any) => {
|
||||||
|
@ -23,12 +23,15 @@ interface EditConfigTableCells {
|
|||||||
|
|
||||||
context('licensing tests: ', function () {
|
context('licensing tests: ', function () {
|
||||||
this.beforeAll(() => {
|
this.beforeAll(() => {
|
||||||
|
// cy.visit(`${hostUrl}/SASLogon/logout`)
|
||||||
cy.loginAndUpdateValidKey()
|
cy.loginAndUpdateValidKey()
|
||||||
})
|
})
|
||||||
|
|
||||||
this.beforeEach(() => {
|
this.beforeEach(() => {
|
||||||
cy.visit(hostUrl + appLocation)
|
cy.visit(hostUrl + appLocation)
|
||||||
|
// cy.get('input.username').type(username)
|
||||||
|
// cy.get('input.password').type(password)
|
||||||
|
// cy.get('.login-group button').click()
|
||||||
|
|
||||||
visitPage('home')
|
visitPage('home')
|
||||||
})
|
})
|
||||||
@ -372,7 +375,9 @@ context('licensing tests: ', function () {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.afterEach(() => {
|
||||||
|
// cy.visit(`${hostUrl}/SASLogon/logout`)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
const logout = (callback?: any) => {
|
const logout = (callback?: any) => {
|
||||||
@ -694,13 +699,13 @@ const submitTable = (callback?: any) => {
|
|||||||
|
|
||||||
const approveTable = (callback?: any) => {
|
const approveTable = (callback?: any) => {
|
||||||
cy.get('button', { timeout: longerCommandTimeout })
|
cy.get('button', { timeout: longerCommandTimeout })
|
||||||
.should('contain', 'Approve')
|
.should('contain', 'Go to approvals screen')
|
||||||
.then((allButtons: any) => {
|
.then((allButtons: any) => {
|
||||||
for (let approvalButton of allButtons) {
|
for (let approvalButton of allButtons) {
|
||||||
if (
|
if (
|
||||||
approvalButton.innerText
|
approvalButton.innerText
|
||||||
.toLowerCase()
|
.toLowerCase()
|
||||||
.includes('approve')
|
.includes('go to approvals screen')
|
||||||
) {
|
) {
|
||||||
approvalButton.click()
|
approvalButton.click()
|
||||||
break
|
break
|
||||||
|
@ -18,6 +18,9 @@ context('liveness tests: ', function () {
|
|||||||
this.beforeEach(() => {
|
this.beforeEach(() => {
|
||||||
cy.visit(hostUrl + appLocation)
|
cy.visit(hostUrl + appLocation)
|
||||||
|
|
||||||
|
// cy.get('input.username').type(username)
|
||||||
|
// cy.get('input.password').type(password)
|
||||||
|
// cy.get('.login-group button').click()
|
||||||
|
|
||||||
visitPage('home')
|
visitPage('home')
|
||||||
})
|
})
|
||||||
@ -122,13 +125,13 @@ const submitExcel = (callback?: any) => {
|
|||||||
|
|
||||||
const rejectExcel = (callback?: any) => {
|
const rejectExcel = (callback?: any) => {
|
||||||
cy.get('button', { timeout: longerCommandTimeout })
|
cy.get('button', { timeout: longerCommandTimeout })
|
||||||
.should('contain', 'Approve')
|
.should('contain', 'Go to approvals screen')
|
||||||
.then((allButtons: any) => {
|
.then((allButtons: any) => {
|
||||||
for (let approvalButton of allButtons) {
|
for (let approvalButton of allButtons) {
|
||||||
if (
|
if (
|
||||||
approvalButton.innerText
|
approvalButton.innerText
|
||||||
.toLowerCase()
|
.toLowerCase()
|
||||||
.includes('approve')
|
.includes('go to approvals screen')
|
||||||
) {
|
) {
|
||||||
approvalButton.click()
|
approvalButton.click()
|
||||||
break
|
break
|
||||||
|
@ -16,6 +16,7 @@ context('editor tests: ', function () {
|
|||||||
|
|
||||||
this.beforeEach(() => {
|
this.beforeEach(() => {
|
||||||
cy.visit(hostUrl + appLocation)
|
cy.visit(hostUrl + appLocation)
|
||||||
|
|
||||||
cy.wait(2000)
|
cy.wait(2000)
|
||||||
|
|
||||||
cy.get('body').then(($body) => {
|
cy.get('body').then(($body) => {
|
||||||
@ -392,6 +393,10 @@ context('editor tests: ', function () {
|
|||||||
// }
|
// }
|
||||||
// )
|
// )
|
||||||
// })
|
// })
|
||||||
|
|
||||||
|
this.afterEach(() => {
|
||||||
|
// cy.visit(`${hostUrl}/SASLogon/logout`)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
const removeAllColumns = () => {
|
const removeAllColumns = () => {
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -15,6 +15,9 @@ context('editor tests: ', function () {
|
|||||||
|
|
||||||
this.beforeEach(() => {
|
this.beforeEach(() => {
|
||||||
cy.visit(hostUrl + appLocation)
|
cy.visit(hostUrl + appLocation)
|
||||||
|
// cy.get('input.username').type(username)
|
||||||
|
// cy.get('input.password').type(password)
|
||||||
|
// cy.get('.login-group button').click()
|
||||||
|
|
||||||
visitPage('home')
|
visitPage('home')
|
||||||
})
|
})
|
||||||
@ -115,6 +118,10 @@ context('editor tests: ', function () {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
this.afterEach(() => {
|
||||||
|
// cy.visit(`${hostUrl}/SASLogon/logout`)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
const clickOnEdit = (callback?: any) => {
|
const clickOnEdit = (callback?: any) => {
|
||||||
@ -214,10 +221,14 @@ const submitExcel = (callback?: any) => {
|
|||||||
|
|
||||||
const rejectExcel = (callback?: any) => {
|
const rejectExcel = (callback?: any) => {
|
||||||
cy.get('button', { timeout: longerCommandTimeout })
|
cy.get('button', { timeout: longerCommandTimeout })
|
||||||
.should('contain', 'Approve')
|
.should('contain', 'Go to approvals screen')
|
||||||
.then((allButtons: any) => {
|
.then((allButtons: any) => {
|
||||||
for (let approvalButton of allButtons) {
|
for (let approvalButton of allButtons) {
|
||||||
if (approvalButton.innerText.toLowerCase().includes('approve')) {
|
if (
|
||||||
|
approvalButton.innerText
|
||||||
|
.toLowerCase()
|
||||||
|
.includes('go to approvals screen')
|
||||||
|
) {
|
||||||
approvalButton.click()
|
approvalButton.click()
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
@ -19,6 +19,9 @@ context('excel tests: ', function () {
|
|||||||
|
|
||||||
this.beforeEach(() => {
|
this.beforeEach(() => {
|
||||||
cy.visit(hostUrl + appLocation)
|
cy.visit(hostUrl + appLocation)
|
||||||
|
// cy.get('input.username').type(username)
|
||||||
|
// cy.get('input.password').type(password)
|
||||||
|
// cy.get('.login-group button').click()
|
||||||
|
|
||||||
visitPage('home')
|
visitPage('home')
|
||||||
|
|
||||||
@ -336,6 +339,7 @@ context('excel tests: ', function () {
|
|||||||
|
|
||||||
this.afterEach(() => {
|
this.afterEach(() => {
|
||||||
colorLog(`TEST END -------------`, '#3498DB')
|
colorLog(`TEST END -------------`, '#3498DB')
|
||||||
|
// cy.visit(`${hostUrl}/SASLogon/logout`)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -403,10 +407,14 @@ const submitExcel = (callback?: any) => {
|
|||||||
|
|
||||||
const rejectExcel = (callback?: any) => {
|
const rejectExcel = (callback?: any) => {
|
||||||
cy.get('button', { timeout: longerCommandTimeout })
|
cy.get('button', { timeout: longerCommandTimeout })
|
||||||
.should('contain', 'Approve')
|
.should('contain', 'Go to approvals screen')
|
||||||
.then((allButtons: any) => {
|
.then((allButtons: any) => {
|
||||||
for (let approvalButton of allButtons) {
|
for (let approvalButton of allButtons) {
|
||||||
if (approvalButton.innerText.toLowerCase().includes('approve')) {
|
if (
|
||||||
|
approvalButton.innerText
|
||||||
|
.toLowerCase()
|
||||||
|
.includes('go to approvals screen')
|
||||||
|
) {
|
||||||
approvalButton.click()
|
approvalButton.click()
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
@ -432,10 +440,14 @@ const rejectExcel = (callback?: any) => {
|
|||||||
|
|
||||||
const acceptExcel = (callback?: any) => {
|
const acceptExcel = (callback?: any) => {
|
||||||
cy.get('button', { timeout: longerCommandTimeout })
|
cy.get('button', { timeout: longerCommandTimeout })
|
||||||
.should('contain', 'Approve')
|
.should('contain', 'Go to approvals screen')
|
||||||
.then((allButtons: any) => {
|
.then((allButtons: any) => {
|
||||||
for (let approvalButton of allButtons) {
|
for (let approvalButton of allButtons) {
|
||||||
if (approvalButton.innerText.toLowerCase().includes('approve')) {
|
if (
|
||||||
|
approvalButton.innerText
|
||||||
|
.toLowerCase()
|
||||||
|
.includes('go to approvals screen')
|
||||||
|
) {
|
||||||
approvalButton.click()
|
approvalButton.click()
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
@ -15,6 +15,9 @@ context('filtering tests: ', function () {
|
|||||||
|
|
||||||
this.beforeEach(() => {
|
this.beforeEach(() => {
|
||||||
cy.visit(hostUrl + appLocation, { timeout: longerCommandTimeout })
|
cy.visit(hostUrl + appLocation, { timeout: longerCommandTimeout })
|
||||||
|
// cy.get('input.username').type(username)
|
||||||
|
// cy.get('input.password').type(password)
|
||||||
|
// cy.get('.login-group button').click()
|
||||||
|
|
||||||
visitPage('home')
|
visitPage('home')
|
||||||
})
|
})
|
||||||
@ -170,6 +173,10 @@ context('filtering tests: ', function () {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
this.afterEach(() => {
|
||||||
|
// cy.visit(`${hostUrl}/SASLogon/logout`)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
const checkInfoBarIncludes = (text: string, callback: any) => {
|
const checkInfoBarIncludes = (text: string, callback: any) => {
|
||||||
|
@ -23,11 +23,15 @@ interface EditConfigTableCells {
|
|||||||
|
|
||||||
context('licensing tests: ', function () {
|
context('licensing tests: ', function () {
|
||||||
this.beforeAll(() => {
|
this.beforeAll(() => {
|
||||||
|
// cy.visit(`${hostUrl}/SASLogon/logout`)
|
||||||
cy.loginAndUpdateValidKey()
|
cy.loginAndUpdateValidKey()
|
||||||
})
|
})
|
||||||
|
|
||||||
this.beforeEach(() => {
|
this.beforeEach(() => {
|
||||||
cy.visit(hostUrl + appLocation)
|
cy.visit(hostUrl + appLocation)
|
||||||
|
// cy.get('input.username').type(username)
|
||||||
|
// cy.get('input.password').type(password)
|
||||||
|
// cy.get('.login-group button').click()
|
||||||
|
|
||||||
visitPage('home')
|
visitPage('home')
|
||||||
})
|
})
|
||||||
@ -370,6 +374,10 @@ context('licensing tests: ', function () {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.afterEach(() => {
|
||||||
|
// cy.visit(`${hostUrl}/SASLogon/logout`)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
const logout = (callback?: any) => {
|
const logout = (callback?: any) => {
|
||||||
@ -691,10 +699,14 @@ const submitTable = (callback?: any) => {
|
|||||||
|
|
||||||
const approveTable = (callback?: any) => {
|
const approveTable = (callback?: any) => {
|
||||||
cy.get('button', { timeout: longerCommandTimeout })
|
cy.get('button', { timeout: longerCommandTimeout })
|
||||||
.should('contain', 'Approve')
|
.should('contain', 'Go to approvals screen')
|
||||||
.then((allButtons: any) => {
|
.then((allButtons: any) => {
|
||||||
for (let approvalButton of allButtons) {
|
for (let approvalButton of allButtons) {
|
||||||
if (approvalButton.innerText.toLowerCase().includes('approve')) {
|
if (
|
||||||
|
approvalButton.innerText
|
||||||
|
.toLowerCase()
|
||||||
|
.includes('go to approvals screen')
|
||||||
|
) {
|
||||||
approvalButton.click()
|
approvalButton.click()
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
@ -18,6 +18,10 @@ context('liveness tests: ', function () {
|
|||||||
this.beforeEach(() => {
|
this.beforeEach(() => {
|
||||||
cy.visit(hostUrl + appLocation)
|
cy.visit(hostUrl + appLocation)
|
||||||
|
|
||||||
|
// cy.get('input.username').type(username)
|
||||||
|
// cy.get('input.password').type(password)
|
||||||
|
// cy.get('.login-group button').click()
|
||||||
|
|
||||||
visitPage('home')
|
visitPage('home')
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -121,10 +125,14 @@ const submitExcel = (callback?: any) => {
|
|||||||
|
|
||||||
const rejectExcel = (callback?: any) => {
|
const rejectExcel = (callback?: any) => {
|
||||||
cy.get('button', { timeout: longerCommandTimeout })
|
cy.get('button', { timeout: longerCommandTimeout })
|
||||||
.should('contain', 'Approve')
|
.should('contain', 'Go to approvals screen')
|
||||||
.then((allButtons: any) => {
|
.then((allButtons: any) => {
|
||||||
for (let approvalButton of allButtons) {
|
for (let approvalButton of allButtons) {
|
||||||
if (approvalButton.innerText.toLowerCase().includes('approve')) {
|
if (
|
||||||
|
approvalButton.innerText
|
||||||
|
.toLowerCase()
|
||||||
|
.includes('go to approvals screen')
|
||||||
|
) {
|
||||||
approvalButton.click()
|
approvalButton.click()
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
@ -17,6 +17,7 @@ context('editor tests: ', function () {
|
|||||||
|
|
||||||
this.beforeEach(() => {
|
this.beforeEach(() => {
|
||||||
cy.visit(hostUrl + appLocation)
|
cy.visit(hostUrl + appLocation)
|
||||||
|
|
||||||
cy.wait(2000)
|
cy.wait(2000)
|
||||||
|
|
||||||
cy.get('body').then(($body) => {
|
cy.get('body').then(($body) => {
|
||||||
@ -385,6 +386,10 @@ context('editor tests: ', function () {
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
this.afterEach(() => {
|
||||||
|
// cy.visit(`${hostUrl}/SASLogon/logout`)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
const checkColumns = (columns: string[], callback: () => void) => {
|
const checkColumns = (columns: string[], callback: () => void) => {
|
||||||
|
@ -6,8 +6,5 @@
|
|||||||
"lib": ["es2019", "dom"],
|
"lib": ["es2019", "dom"],
|
||||||
"types": ["cypress", "cypress-real-events"]
|
"types": ["cypress", "cypress-real-events"]
|
||||||
},
|
},
|
||||||
"include": [
|
"include": ["**/*.ts"]
|
||||||
"**/*.ts",
|
|
||||||
"../cypress.config.ts"
|
|
||||||
]
|
|
||||||
}
|
}
|
@ -42,4 +42,4 @@ module.exports = function (config) {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
Binary file not shown.
@ -10,7 +10,7 @@ const check = (cwd) => {
|
|||||||
onlyAllow:
|
onlyAllow:
|
||||||
'AFLv2.1;Apache 2.0;Apache-2.0;Apache*;Artistic-2.0;0BSD;BSD*;BSD-2-Clause;BSD-3-Clause;CC0-1.0;CC-BY-3.0;CC-BY-4.0;ISC;MIT;MPL-2.0;ODC-By-1.0;Python-2.0;Unlicense;',
|
'AFLv2.1;Apache 2.0;Apache-2.0;Apache*;Artistic-2.0;0BSD;BSD*;BSD-2-Clause;BSD-3-Clause;CC0-1.0;CC-BY-3.0;CC-BY-4.0;ISC;MIT;MPL-2.0;ODC-By-1.0;Python-2.0;Unlicense;',
|
||||||
excludePackages:
|
excludePackages:
|
||||||
'@cds/city@1.1.0;@handsontable/angular@14.4.0;handsontable@14.4.0;hyperformula@2.7.0;jackspeak@2.2.0;path-scurry@1.7.0'
|
'@cds/city@1.1.0;@handsontable/angular@13.1.0;handsontable@13.1.0;hyperformula@2.6.0;jackspeak@2.2.0;path-scurry@1.7.0'
|
||||||
},
|
},
|
||||||
(error, json) => {
|
(error, json) => {
|
||||||
if (error) {
|
if (error) {
|
||||||
|
10505
client/package-lock.json
generated
10505
client/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -18,8 +18,8 @@
|
|||||||
"deploy_sasjs": "rsync -avhe ssh ./dist/* --delete root@${npm_config_account}.4gl.io:/var/www/html/dc/dev",
|
"deploy_sasjs": "rsync -avhe ssh ./dist/* --delete root@${npm_config_account}.4gl.io:/var/www/html/dc/dev",
|
||||||
"viyabuild": "cd build; ./viyabuild.sh",
|
"viyabuild": "cd build; ./viyabuild.sh",
|
||||||
"lint": "cd .. && npm run lint",
|
"lint": "cd .. && npm run lint",
|
||||||
"test": "npx ng test",
|
"test": "ng test",
|
||||||
"test:headless": "npx ng test --no-watch --no-progress --browsers ChromeHeadlessCI",
|
"test:headless": "ng test --browsers ChromeHeadless",
|
||||||
"watch": "ng test watch=true",
|
"watch": "ng test watch=true",
|
||||||
"pree2e": "webdriver-manager update",
|
"pree2e": "webdriver-manager update",
|
||||||
"e2e": "protractor protractor.config.js",
|
"e2e": "protractor protractor.config.js",
|
||||||
@ -35,32 +35,32 @@
|
|||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@angular/animations": "^17.3.3",
|
"@angular/animations": "^16.1.2",
|
||||||
"@angular/cdk": "^17.3.3",
|
"@angular/cdk": "^15.2.0",
|
||||||
"@angular/common": "^17.3.3",
|
"@angular/common": "^16.1.2",
|
||||||
"@angular/compiler": "^17.3.3",
|
"@angular/compiler": "^16.1.2",
|
||||||
"@angular/core": "^17.3.3",
|
"@angular/core": "^16.1.2",
|
||||||
"@angular/forms": "^17.3.3",
|
"@angular/forms": "^16.1.2",
|
||||||
"@angular/platform-browser": "^17.3.3",
|
"@angular/platform-browser": "^16.1.2",
|
||||||
"@angular/platform-browser-dynamic": "^17.3.3",
|
"@angular/platform-browser-dynamic": "^16.1.2",
|
||||||
"@angular/router": "^17.3.3",
|
"@angular/router": "^16.1.2",
|
||||||
"@cds/core": "^6.10.0",
|
"@cds/core": "^6.4.2",
|
||||||
"@clr/angular": "^17.0.1",
|
"@clr/angular": "^13.17.0",
|
||||||
"@clr/icons": "^13.0.2",
|
"@clr/icons": "^13.0.2",
|
||||||
"@clr/ui": "^17.0.1",
|
"@clr/ui": "^13.17.0",
|
||||||
"@handsontable/angular": "^14.3.0",
|
"@handsontable/angular": "^13.1.0",
|
||||||
"@sasjs/adapter": "4.10.2",
|
"@sasjs/adapter": "4.10.1",
|
||||||
"@sasjs/utils": "^3.4.0",
|
"@sasjs/utils": "^3.4.0",
|
||||||
"@sheet/crypto": "file:libraries/sheet-crypto.tgz",
|
"@sheet/crypto": "1.20211122.1",
|
||||||
"@types/d3-graphviz": "^2.6.7",
|
"@types/d3-graphviz": "^2.6.7",
|
||||||
"@types/text-encoding": "0.0.35",
|
"@types/text-encoding": "0.0.35",
|
||||||
"base64-arraybuffer": "^0.2.0",
|
"base64-arraybuffer": "^0.2.0",
|
||||||
"buffer": "^5.4.3",
|
"buffer": "^5.4.3",
|
||||||
"crypto-browserify": "3.12.0",
|
"crypto-browserify": "3.12.0",
|
||||||
"crypto-js": "^4.2.0",
|
"crypto-js": "^3.3.0",
|
||||||
"d3-graphviz": "^5.0.2",
|
"d3-graphviz": "^5.0.2",
|
||||||
"fs-extra": "^7.0.1",
|
"fs-extra": "^7.0.1",
|
||||||
"handsontable": "^14.3.0",
|
"handsontable": "^13.1.0",
|
||||||
"https-browserify": "1.0.0",
|
"https-browserify": "1.0.0",
|
||||||
"hyperformula": "^2.5.0",
|
"hyperformula": "^2.5.0",
|
||||||
"iconv-lite": "^0.5.0",
|
"iconv-lite": "^0.5.0",
|
||||||
@ -78,27 +78,24 @@
|
|||||||
"stream-http": "3.2.0",
|
"stream-http": "3.2.0",
|
||||||
"text-encoding": "^0.7.0",
|
"text-encoding": "^0.7.0",
|
||||||
"tslib": "^2.3.0",
|
"tslib": "^2.3.0",
|
||||||
"vm": "^0.1.0",
|
"zone.js": "~0.13.0"
|
||||||
"webpack": "^5.91.0",
|
|
||||||
"xlsx": "^0.18.5",
|
|
||||||
"zone.js": "~0.14.4"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@angular-devkit/build-angular": "^17.3.3",
|
"@angular-devkit/build-angular": "^16.1.0",
|
||||||
"@angular-eslint/builder": "17.3.0",
|
"@angular-eslint/builder": "16.0.3",
|
||||||
"@angular-eslint/eslint-plugin": "17.3.0",
|
"@angular-eslint/eslint-plugin": "16.0.3",
|
||||||
"@angular-eslint/eslint-plugin-template": "17.3.0",
|
"@angular-eslint/eslint-plugin-template": "16.0.3",
|
||||||
"@angular-eslint/schematics": "17.3.0",
|
"@angular-eslint/schematics": "16.0.3",
|
||||||
"@angular-eslint/template-parser": "17.3.0",
|
"@angular-eslint/template-parser": "16.0.3",
|
||||||
"@angular/cli": "^17.3.3",
|
"@angular/cli": "^16.1.0",
|
||||||
"@angular/compiler-cli": "^17.3.3",
|
"@angular/compiler-cli": "^16.1.2",
|
||||||
"@babel/plugin-proposal-private-methods": "^7.18.6",
|
"@babel/plugin-proposal-private-methods": "^7.18.6",
|
||||||
"@compodoc/compodoc": "^1.1.21",
|
"@compodoc/compodoc": "^1.1.21",
|
||||||
"@cypress/webpack-preprocessor": "^5.17.1",
|
"@cypress/webpack-preprocessor": "^5.17.1",
|
||||||
"@types/core-js": "^2.5.5",
|
"@types/core-js": "^2.5.5",
|
||||||
"@types/crypto-js": "^4.2.1",
|
"@types/crypto-js": "^4.0.1",
|
||||||
"@types/es6-shim": "^0.31.39",
|
"@types/es6-shim": "^0.31.39",
|
||||||
"@types/jasmine": "~5.1.4",
|
"@types/jasmine": "~3.6.0",
|
||||||
"@types/lodash-es": "^4.17.3",
|
"@types/lodash-es": "^4.17.3",
|
||||||
"@types/marked": "^4.3.0",
|
"@types/marked": "^4.3.0",
|
||||||
"@types/node": "12.20.50",
|
"@types/node": "12.20.50",
|
||||||
@ -112,12 +109,12 @@
|
|||||||
"es6-shim": "^0.35.5",
|
"es6-shim": "^0.35.5",
|
||||||
"eslint": "^8.33.0",
|
"eslint": "^8.33.0",
|
||||||
"git-describe": "^4.0.4",
|
"git-describe": "^4.0.4",
|
||||||
"jasmine-core": "~5.1.2",
|
"jasmine-core": "~3.6.0",
|
||||||
"karma": "~6.4.3",
|
"karma": "~6.3.0",
|
||||||
"karma-chrome-launcher": "~3.2.0",
|
"karma-chrome-launcher": "~3.1.0",
|
||||||
"karma-coverage": "~2.2.1",
|
"karma-coverage": "~2.1.0",
|
||||||
"karma-jasmine": "~5.1.0",
|
"karma-jasmine": "~4.0.0",
|
||||||
"karma-jasmine-html-reporter": "~2.1.0",
|
"karma-jasmine-html-reporter": "~1.7.0",
|
||||||
"license-checker": "25.0.1",
|
"license-checker": "25.0.1",
|
||||||
"lodash-es": "^4.17.21",
|
"lodash-es": "^4.17.21",
|
||||||
"mochawesome": "^7.1.3",
|
"mochawesome": "^7.1.3",
|
||||||
@ -126,7 +123,9 @@
|
|||||||
"rimraf": "3.0.2",
|
"rimraf": "3.0.2",
|
||||||
"ts-loader": "^9.2.8",
|
"ts-loader": "^9.2.8",
|
||||||
"ts-node": "^3.3.0",
|
"ts-node": "^3.3.0",
|
||||||
"typescript": "~5.4.4",
|
"typedoc": "^0.24.8",
|
||||||
|
"typedoc-plugin-external-module-name": "^4.0.6",
|
||||||
|
"typescript": "~4.9.4",
|
||||||
"wait-on": "^6.0.1",
|
"wait-on": "^6.0.1",
|
||||||
"watch": "^1.0.2"
|
"watch": "^1.0.2"
|
||||||
}
|
}
|
||||||
|
@ -37,16 +37,6 @@ export const initFilter: { filter: FilterCache } = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface XLMapListItem {
|
|
||||||
id: string
|
|
||||||
description: string
|
|
||||||
targetDS: string
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface HandsontableStaticConfig {
|
|
||||||
darkTableHeaderClass: string
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Cached filtering values across whole app (editor, viewer, viewboxes)
|
* Cached filtering values across whole app (editor, viewer, viewboxes)
|
||||||
* Cached lineage libraries, tables
|
* Cached lineage libraries, tables
|
||||||
@ -56,8 +46,6 @@ export interface HandsontableStaticConfig {
|
|||||||
*/
|
*/
|
||||||
export const globals: {
|
export const globals: {
|
||||||
rootParam: string
|
rootParam: string
|
||||||
dcLib: string
|
|
||||||
xlmaps: XLMapListItem[]
|
|
||||||
editor: any
|
editor: any
|
||||||
viewer: any
|
viewer: any
|
||||||
viewboxes: ViewboxCache
|
viewboxes: ViewboxCache
|
||||||
@ -66,17 +54,14 @@ export const globals: {
|
|||||||
viyaApi: any
|
viyaApi: any
|
||||||
usernav: any
|
usernav: any
|
||||||
operators: any
|
operators: any
|
||||||
handsontable: HandsontableStaticConfig
|
|
||||||
[key: string]: any
|
[key: string]: any
|
||||||
} = {
|
} = {
|
||||||
rootParam: <string>'',
|
rootParam: <string>'',
|
||||||
dcLib: '',
|
|
||||||
xlmaps: [],
|
|
||||||
editor: {
|
editor: {
|
||||||
startupSet: <boolean>false,
|
startupSet: <boolean>false,
|
||||||
treeNodeLibraries: <any[] | null>[],
|
treeNodeLibraries: <any[] | null>[],
|
||||||
libsAndTables: <any[]>[],
|
libsAndTables: <any[]>[],
|
||||||
libraries: <string[] | undefined>[],
|
libraries: <String[] | undefined>[],
|
||||||
library: <string>'',
|
library: <string>'',
|
||||||
table: <string>'',
|
table: <string>'',
|
||||||
filter: <FilterCache>{
|
filter: <FilterCache>{
|
||||||
@ -145,8 +130,5 @@ export const globals: {
|
|||||||
operators: {
|
operators: {
|
||||||
numOperators: ['=', '<', '>', '<=', '>=', 'BETWEEN', 'IN', 'NOT IN', 'NE'],
|
numOperators: ['=', '<', '>', '<=', '>=', 'BETWEEN', 'IN', 'NOT IN', 'NE'],
|
||||||
charOperators: ['=', '<', '>', '<=', '>=', 'CONTAINS', 'IN', 'NOT IN', 'NE']
|
charOperators: ['=', '<', '>', '<=', '>=', 'CONTAINS', 'IN', 'NOT IN', 'NE']
|
||||||
},
|
|
||||||
handsontable: {
|
|
||||||
darkTableHeaderClass: 'darkTH'
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
<div class="alert-items">
|
<div class="alert-items">
|
||||||
<div class="alert-item static">
|
<div class="alert-item static">
|
||||||
<div class="alert-icon-wrapper">
|
<div class="alert-icon-wrapper">
|
||||||
<cds-icon class="alert-icon" shape="warning-standard"></cds-icon>
|
<clr-icon class="mt-2" shape="warning-standard"></clr-icon>
|
||||||
</div>
|
</div>
|
||||||
<div class="alert-text">
|
<div class="alert-text">
|
||||||
Data Controller (FREE Tier) - to upgrade contact
|
Data Controller (FREE Tier) - to upgrade contact
|
||||||
@ -30,7 +30,7 @@
|
|||||||
<div class="alert-items">
|
<div class="alert-items">
|
||||||
<div class="alert-item static">
|
<div class="alert-item static">
|
||||||
<div class="alert-icon-wrapper">
|
<div class="alert-icon-wrapper">
|
||||||
<cds-icon class="alert-icon" shape="warning-standard"></cds-icon>
|
<clr-icon class="mt-2" shape="warning-standard"></clr-icon>
|
||||||
</div>
|
</div>
|
||||||
<div class="alert-text">
|
<div class="alert-text">
|
||||||
Data Controller (FREE Tier) - Problem with licence
|
Data Controller (FREE Tier) - Problem with licence
|
||||||
@ -55,7 +55,7 @@
|
|||||||
<div class="alert-items">
|
<div class="alert-items">
|
||||||
<div class="alert-item static">
|
<div class="alert-item static">
|
||||||
<div class="alert-icon-wrapper">
|
<div class="alert-icon-wrapper">
|
||||||
<cds-icon class="alert-icon" shape="warning-standard"></cds-icon>
|
<clr-icon class="mt-2" shape="warning-standard"></clr-icon>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="alert-text">
|
<div class="alert-text">
|
||||||
@ -85,7 +85,7 @@
|
|||||||
<div class="alert-items">
|
<div class="alert-items">
|
||||||
<div class="alert-item static">
|
<div class="alert-item static">
|
||||||
<div class="alert-icon-wrapper">
|
<div class="alert-icon-wrapper">
|
||||||
<cds-icon class="alert-icon" shape="warning-standard"></cds-icon>
|
<clr-icon class="mt-2" shape="warning-standard"></clr-icon>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="alert-text">
|
<div class="alert-text">
|
||||||
@ -168,7 +168,7 @@
|
|||||||
</button>
|
</button>
|
||||||
<clr-dropdown-menu *clrIfOpen clrPosition="bottom-left">
|
<clr-dropdown-menu *clrIfOpen clrPosition="bottom-left">
|
||||||
<a [routerLink]="['/view']" clrDropdownItem>VIEW</a>
|
<a [routerLink]="['/view']" clrDropdownItem>VIEW</a>
|
||||||
<a [routerLink]="['/home']" clrDropdownItem>LOAD</a>
|
<a [routerLink]="['/home']" clrDropdownItem>EDIT</a>
|
||||||
<a [routerLink]="['/review/submitted']" clrDropdownItem>REVIEW</a>
|
<a [routerLink]="['/review/submitted']" clrDropdownItem>REVIEW</a>
|
||||||
</clr-dropdown-menu>
|
</clr-dropdown-menu>
|
||||||
</clr-dropdown>
|
</clr-dropdown>
|
||||||
@ -189,7 +189,7 @@
|
|||||||
router.url.includes('edit-record') ||
|
router.url.includes('edit-record') ||
|
||||||
router.url.includes('home')
|
router.url.includes('home')
|
||||||
"
|
"
|
||||||
>LOAD</a
|
>EDIT</a
|
||||||
>
|
>
|
||||||
<a
|
<a
|
||||||
[routerLink]="['/review/submitted']"
|
[routerLink]="['/review/submitted']"
|
||||||
@ -204,7 +204,14 @@
|
|||||||
</div>
|
</div>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
||||||
<app-header-actions></app-header-actions>
|
<div class="header-actions">
|
||||||
|
<div class="nav-text">
|
||||||
|
<app-loading-indicator></app-loading-indicator>
|
||||||
|
</div>
|
||||||
|
<div class="dropdown">
|
||||||
|
<app-user-nav-dropdown></app-user-nav-dropdown>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</header>
|
</header>
|
||||||
<nav
|
<nav
|
||||||
*ngIf="
|
*ngIf="
|
||||||
@ -245,7 +252,6 @@
|
|||||||
|
|
||||||
<app-alerts *ngIf="!errTop"></app-alerts>
|
<app-alerts *ngIf="!errTop"></app-alerts>
|
||||||
<app-requests-modal [(opened)]="requestsModal"></app-requests-modal>
|
<app-requests-modal [(opened)]="requestsModal"></app-requests-modal>
|
||||||
<app-excel-password-modal></app-excel-password-modal>
|
|
||||||
|
|
||||||
<!-- <app-terms *ngIf="showRegistration"></app-terms> -->
|
<!-- <app-terms *ngIf="showRegistration"></app-terms> -->
|
||||||
|
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
@import '../colors.scss';
|
|
||||||
|
|
||||||
// Copyright (c) 2016 VMware, Inc. All Rights Reserved.
|
// Copyright (c) 2016 VMware, Inc. All Rights Reserved.
|
||||||
// This software is released under MIT license.
|
// This software is released under MIT license.
|
||||||
// The full license information can be found in LICENSE in the root directory of this project.
|
// The full license information can be found in LICENSE in the root directory of this project.
|
||||||
@ -8,7 +6,7 @@ app-requests-modal {
|
|||||||
}
|
}
|
||||||
|
|
||||||
header.app-header {
|
header.app-header {
|
||||||
background: $headerBackground !important;
|
background: #314351 !important;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -44,7 +42,7 @@ header.app-header {
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 30px;
|
padding: 30px;
|
||||||
z-index: 110;
|
z-index: 110;
|
||||||
background: $headerBackground;
|
background: #314351;
|
||||||
|
|
||||||
.expired-notice {
|
.expired-notice {
|
||||||
color: #e0e0e0;
|
color: #e0e0e0;
|
||||||
@ -93,12 +91,33 @@ header {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-link:hover {
|
.nav
|
||||||
color: #fafafa;
|
.nav-link {
|
||||||
|
color: #fafafa;
|
||||||
|
opacity: .9;
|
||||||
|
line-height: 1.45rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-link.active {
|
.nav .nav-link:hover {
|
||||||
background: #61717D;
|
box-shadow: inset 0 -3px 0 transparent;
|
||||||
|
transition: box-shadow .2s ease-in;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav
|
||||||
|
.nav-link:hover {
|
||||||
|
color: #fafafa;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav .nav-link.active {
|
||||||
|
background: #61717D;
|
||||||
|
opacity: 1;
|
||||||
|
box-shadow: inset 0 -3px transparent;
|
||||||
|
// padding: 0 1rem 0 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav .nav-item {
|
||||||
|
margin-right: 1rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -108,6 +127,15 @@ header {
|
|||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.btn.btn-success {
|
||||||
|
border-color: #62a420;
|
||||||
|
background-color: #16a57a!important;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.btn.btn-success:hover {
|
||||||
|
background-color: #2add39;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
.toggle-switch input[type=checkbox]:checked+label:before {
|
.toggle-switch input[type=checkbox]:checked+label:before {
|
||||||
border-color: #61717D;
|
border-color: #61717D;
|
||||||
@ -135,50 +163,59 @@ header {
|
|||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
::ng-deep {
|
@media screen and (max-width: 768px) {
|
||||||
.htInvalid {
|
.navBarResp {
|
||||||
background: black!important;
|
display: flex;
|
||||||
|
justify-content: flex-start;
|
||||||
|
background: #495A67;
|
||||||
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width:480px) {
|
.main-container .sub-nav.clr-nav-level-1 .nav .nav-link, .main-container .sub-nav.clr-nav-level-2 .nav .nav-link, .main-container .subnav.clr-nav-level-1 .nav .nav-link, .main-container .subnav.clr-nav-level-2 .nav .nav-link {
|
||||||
h2 {
|
padding: 0 .5rem 0 1rem;
|
||||||
font-size: .7rem!important;
|
width: 100%;
|
||||||
}
|
max-width: 100%;
|
||||||
h3 {
|
overflow: hidden;
|
||||||
font-size: .7rem;
|
text-overflow: ellipsis;
|
||||||
}
|
border-radius: .125rem 0 0 .125rem;
|
||||||
|
color: #95c84b;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
.card-block, .card-footer {
|
||||||
|
padding: 10px 0px 0px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-container[_ngcontent-c0] .content-container[_ngcontent-c0] .content-area[_ngcontent-c0] {
|
||||||
|
padding: 0rem 0rem 0rem 0rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
::ng-deep {
|
||||||
|
.htInvalid {
|
||||||
|
background: black!important;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width:480px) {
|
||||||
|
h2 {
|
||||||
|
font-size: .7rem!important;
|
||||||
|
|
||||||
|
}
|
||||||
|
h3 {
|
||||||
|
font-size: .7rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.nav-link {
|
.nav-link {
|
||||||
padding: 0rem 1rem 0rem 1rem;
|
padding: 0rem 1rem 0rem 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
body[cds-theme="light"] {
|
|
||||||
.btn-primary .btn, .btn.btn-primary {
|
|
||||||
border-color: $headerBackground;
|
|
||||||
background-color: $headerBackground;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
body[cds-theme="dark"] {
|
|
||||||
.btn-primary .btn, .btn.btn-primary {
|
|
||||||
border-color: #5e7382;
|
|
||||||
background-color: #5e7382;
|
|
||||||
color: #fff;
|
|
||||||
|
|
||||||
clr-icon, cds-icon {
|
|
||||||
color: #fff
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-primary .btn, .btn.btn-primary {
|
.btn-primary .btn, .btn.btn-primary {
|
||||||
&:disabled {
|
border-color: #314351;
|
||||||
opacity: 0.65;
|
background-color: #314351;
|
||||||
}
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn {
|
.btn {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
@ -199,32 +236,36 @@ header {
|
|||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
height: 1.5rem;
|
height: 1.5rem;
|
||||||
padding: 0 .5rem;
|
padding: 0 .5rem;
|
||||||
|
border-color: #314351;
|
||||||
|
background-color: transparent;
|
||||||
|
color: #314351;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn.btn-outline {
|
||||||
|
border-color: #314351;
|
||||||
|
background-color: transparent;
|
||||||
|
color: #314351;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn.btn-outline:hover {
|
.btn.btn-outline:hover {
|
||||||
border-color: $headerBackground;
|
border-color: #314351;
|
||||||
background-color: #495A67;
|
background-color: #495A67;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.btn.btn-success-outline:hover {
|
||||||
|
background-color: #5ea71f;
|
||||||
|
color: #fff7f7;
|
||||||
|
border-color: #9a9696;
|
||||||
|
}
|
||||||
|
// .btn.btn-success-outline {
|
||||||
|
// border-color: #266900;
|
||||||
|
// background-color: transparent;
|
||||||
|
// color: #318700;
|
||||||
|
// }
|
||||||
|
// .wtSpreader {
|
||||||
|
|
||||||
body[cds-theme="dark"] {
|
// }
|
||||||
.btn.btn-icon.btn-dimmed {
|
|
||||||
color: #7295ae;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
body[cds-theme="light"] {
|
|
||||||
.btn.btn-icon.btn-dimmed {
|
|
||||||
color: $headerBackground;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn.btn-outline {
|
|
||||||
border-color: $headerBackground;
|
|
||||||
background-color: transparent;
|
|
||||||
color: $headerBackground;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.htMobileEditorContainer .inputs textarea {
|
.htMobileEditorContainer .inputs textarea {
|
||||||
font-size: 13pt;
|
font-size: 13pt;
|
||||||
@ -257,68 +298,65 @@ header {
|
|||||||
width: 350px;
|
width: 350px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.handsontable {
|
||||||
/* Left and right */
|
background-color: #ffffff;
|
||||||
|
// border: 1px solid #ccc;
|
||||||
/* Column headers */
|
border-radius: 3px;
|
||||||
|
}
|
||||||
body[cds-theme="light"] {
|
.handsontable th {
|
||||||
.wtBorder {
|
background-color: #fafafa;
|
||||||
background-color: #495A67!important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ht_master tr:nth-of-type(odd) > td {
|
|
||||||
filter: brightness(0.95);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$darkBorderColor: #697c85;
|
/* Left and right */
|
||||||
|
.ht_clone_left th {
|
||||||
|
border-right: 1px solid #ccc;
|
||||||
|
border-left: 1px solid #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
body[cds-theme="dark"] {
|
/* Column headers */
|
||||||
.ht_master tr:nth-of-type(odd) > td {
|
.ht_clone_top th {
|
||||||
filter: brightness(1.2);
|
border-top: 1px solid #ccc;
|
||||||
}
|
border-right: 1px solid #ccc;
|
||||||
|
border-bottom: 1px solid #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
.ht_master:not(.emptyColumns) ~ .handsontable tbody tr th, .ht_master:not(.emptyColumns) ~ .handsontable:not(.ht_clone_top) thead tr th:first-child {
|
.ht_clone_top_left_corner th {
|
||||||
background-color: #2d4048;
|
border-right: 1px solid #ccc;
|
||||||
border-color: $darkBorderColor;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.handsontable td {
|
.ht_master tr:nth-of-type(odd) > td {
|
||||||
// border-right: 1px solid #697c85;
|
background-color: #f3f3f3;
|
||||||
// border-bottom: 1px solid #697c85;
|
border: 1px solid rgb(197, 197, 197);
|
||||||
border-color: $darkBorderColor;
|
border-bottom: 1px solid rgb(236, 235, 235);
|
||||||
}
|
// padding: 1px 1px;
|
||||||
|
}
|
||||||
|
|
||||||
.handsontable tr:first-child th, .handsontable tr:first-child td {
|
.ht_master tr:nth-of-type(even) > td {
|
||||||
border-color: $darkBorderColor;
|
background-color: white;
|
||||||
}
|
border: 1px solid rgb(197, 197, 197);
|
||||||
|
border-bottom: 1px solid rgb(236, 235, 235);
|
||||||
|
// padding: 1px 1px;
|
||||||
|
}
|
||||||
|
|
||||||
.handsontable .handsontable.ht_clone_top .wtHider {
|
.wtBorder {
|
||||||
border-color: $darkBorderColor;
|
background-color: #495A67!important;
|
||||||
}
|
|
||||||
|
|
||||||
.handsontable .changeType {
|
|
||||||
background-color: #3c5662;
|
|
||||||
border-color: $darkBorderColor;
|
|
||||||
}
|
|
||||||
|
|
||||||
.handsontableInput {
|
|
||||||
background-color: #708b98;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.handsontable .handsontable.ht_clone_top .wtHider {
|
.handsontable .handsontable.ht_clone_top .wtHider {
|
||||||
padding: 0 0 0px 0!important;
|
padding: 0 0 0px 0!important;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
border-bottom: 3px solid #d6d3d3;
|
border-bottom: 3px solid #d6d3d3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-container {
|
||||||
|
background: #F5F6FF;
|
||||||
}
|
}
|
||||||
|
|
||||||
body[cds-theme="light"] {
|
.card {
|
||||||
.content-container {
|
box-shadow: 0 0.125rem 0 0 #d7d7d7;
|
||||||
// background: red;
|
border-radius: .0rem;
|
||||||
background: #F5F6FF;
|
border: 1px solid transparent;
|
||||||
}
|
// min-height: calc(100vh - 150px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.datagrid-compact, .datagrid-history{
|
.datagrid-compact, .datagrid-history{
|
||||||
@ -326,6 +364,8 @@ header {
|
|||||||
border-collapse: separate;
|
border-collapse: separate;
|
||||||
border: 1px solid transparent;
|
border: 1px solid transparent;
|
||||||
border-radius: .125rem;
|
border-radius: .125rem;
|
||||||
|
background-color: #fff;
|
||||||
|
color: #565656;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-top: 1rem;
|
margin-top: 1rem;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
@ -347,8 +387,8 @@ header {
|
|||||||
}
|
}
|
||||||
.datagrid-footer {
|
.datagrid-footer {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 30px;
|
right: 15px;
|
||||||
top: 1px;
|
top: 2px;
|
||||||
}
|
}
|
||||||
.datagrid .datagrid-head {
|
.datagrid .datagrid-head {
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
@ -368,6 +408,7 @@ header {
|
|||||||
-webkit-box-direction: normal;
|
-webkit-box-direction: normal;
|
||||||
-ms-flex-direction: column;
|
-ms-flex-direction: column;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
background: #f5f6ff;
|
||||||
padding: .5rem 0;
|
padding: .5rem 0;
|
||||||
border: 1px solid #ccc;
|
border: 1px solid #ccc;
|
||||||
box-shadow: 0 1px 0.125rem hsla(0,0%,45%,.25);
|
box-shadow: 0 1px 0.125rem hsla(0,0%,45%,.25);
|
||||||
@ -382,6 +423,8 @@ header {
|
|||||||
border-collapse: separate;
|
border-collapse: separate;
|
||||||
border: 1px solid transparent;
|
border: 1px solid transparent;
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
|
background-color: #fff;
|
||||||
|
color: #565656;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-top: 1rem;
|
margin-top: 1rem;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
@ -392,6 +435,7 @@ header {
|
|||||||
font-size: .45833rem;
|
font-size: .45833rem;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
letter-spacing: .03em;
|
letter-spacing: .03em;
|
||||||
|
background-color: #fff;
|
||||||
vertical-align: bottom;
|
vertical-align: bottom;
|
||||||
border-bottom: 1px solid #ccc;
|
border-bottom: 1px solid #ccc;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
@ -414,34 +458,4 @@ header {
|
|||||||
max-width: 400px;
|
max-width: 400px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (max-width: 768px) {
|
|
||||||
.navBarResp {
|
|
||||||
display: flex;
|
|
||||||
justify-content: flex-start;
|
|
||||||
background: #495A67;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.main-container .sub-nav.clr-nav-level-1 .nav .nav-link, .main-container .sub-nav.clr-nav-level-2 .nav .nav-link, .main-container .subnav.clr-nav-level-1 .nav .nav-link, .main-container .subnav.clr-nav-level-2 .nav .nav-link {
|
|
||||||
padding: 0 .5rem 0 1rem;
|
|
||||||
width: 100%;
|
|
||||||
max-width: 100%;
|
|
||||||
overflow: hidden;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
border-radius: .125rem 0 0 .125rem;
|
|
||||||
color: #95c84b;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.card-block, .card-footer {
|
|
||||||
padding: 10px 0px 0px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.main-container[_ngcontent-c0] .content-container[_ngcontent-c0] .content-area[_ngcontent-c0] {
|
|
||||||
padding: 0rem 0rem 0rem 0rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
@ -13,25 +13,6 @@ import { InfoModal } from './models/InfoModal'
|
|||||||
import { DcAdapterSettings } from './models/DcAdapterSettings'
|
import { DcAdapterSettings } from './models/DcAdapterSettings'
|
||||||
import { AppStoreService } from './services/app-store.service'
|
import { AppStoreService } from './services/app-store.service'
|
||||||
import { LicenceService } from './services/licence.service'
|
import { LicenceService } from './services/licence.service'
|
||||||
import '@cds/core/icon/register.js'
|
|
||||||
import {
|
|
||||||
ClarityIcons,
|
|
||||||
exclamationTriangleIcon,
|
|
||||||
moonIcon,
|
|
||||||
processOnVmIcon,
|
|
||||||
sunIcon,
|
|
||||||
tableIcon,
|
|
||||||
trashIcon
|
|
||||||
} from '@cds/core/icon'
|
|
||||||
|
|
||||||
ClarityIcons.addIcons(
|
|
||||||
moonIcon,
|
|
||||||
sunIcon,
|
|
||||||
exclamationTriangleIcon,
|
|
||||||
tableIcon,
|
|
||||||
trashIcon,
|
|
||||||
processOnVmIcon
|
|
||||||
)
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'my-app',
|
selector: 'my-app',
|
||||||
|
@ -20,10 +20,10 @@ import { UsernavRouteComponent } from './routes/usernav-route/usernav-route.comp
|
|||||||
import { AppService } from './services/app.service'
|
import { AppService } from './services/app.service'
|
||||||
import { InfoModalComponent } from './shared/abort-modal/info-modal.component'
|
import { InfoModalComponent } from './shared/abort-modal/info-modal.component'
|
||||||
import { RequestsModalComponent } from './shared/requests-modal/requests-modal.component'
|
import { RequestsModalComponent } from './shared/requests-modal/requests-modal.component'
|
||||||
|
import { HomeModule } from './home/home.module'
|
||||||
import { DirectivesModule } from './directives/directives.module'
|
import { DirectivesModule } from './directives/directives.module'
|
||||||
import { ViyaApiExplorerComponent } from './viya-api-explorer/viya-api-explorer.component'
|
import { ViyaApiExplorerComponent } from './viya-api-explorer/viya-api-explorer.component'
|
||||||
import { NgxJsonViewerModule } from 'ngx-json-viewer'
|
import { NgxJsonViewerModule } from 'ngx-json-viewer'
|
||||||
import { AppSettingsService } from './services/app-settings.service'
|
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
declarations: [
|
declarations: [
|
||||||
@ -46,11 +46,12 @@ import { AppSettingsService } from './services/app-settings.service'
|
|||||||
SharedModule,
|
SharedModule,
|
||||||
ClarityModule,
|
ClarityModule,
|
||||||
AppSharedModule,
|
AppSharedModule,
|
||||||
|
HomeModule,
|
||||||
PipesModule,
|
PipesModule,
|
||||||
DirectivesModule,
|
DirectivesModule,
|
||||||
NgxJsonViewerModule
|
NgxJsonViewerModule
|
||||||
],
|
],
|
||||||
providers: [AppService, SasStoreService, LicensingGuard, AppSettingsService],
|
providers: [AppService, SasStoreService, LicensingGuard],
|
||||||
bootstrap: [AppComponent]
|
bootstrap: [AppComponent]
|
||||||
})
|
})
|
||||||
export class AppModule {}
|
export class AppModule {}
|
||||||
|
@ -4,19 +4,19 @@
|
|||||||
* The full license information can be found in LICENSE in the root directory of this project.
|
* The full license information can be found in LICENSE in the root directory of this project.
|
||||||
*/
|
*/
|
||||||
import { ModuleWithProviders } from '@angular/core'
|
import { ModuleWithProviders } from '@angular/core'
|
||||||
import { RouterModule, Routes } from '@angular/router'
|
import { Routes, RouterModule } from '@angular/router'
|
||||||
|
|
||||||
|
import { HomeComponent } from './home/home.component'
|
||||||
import { NotFoundComponent } from './not-found/not-found.component'
|
import { NotFoundComponent } from './not-found/not-found.component'
|
||||||
|
|
||||||
import { DeployModule } from './deploy/deploy.module'
|
|
||||||
import { EditorModule } from './editor/editor.module'
|
|
||||||
import { HomeModule } from './home/home.module'
|
|
||||||
import { LicensingModule } from './licensing/licensing.module'
|
|
||||||
import { ReviewModule } from './review/review.module'
|
|
||||||
import { ReviewRouteComponent } from './routes/review-route/review-route.component'
|
import { ReviewRouteComponent } from './routes/review-route/review-route.component'
|
||||||
import { StageModule } from './stage/stage.module'
|
import { StageModule } from './stage/stage.module'
|
||||||
import { SystemModule } from './system/system.module'
|
import { EditorModule } from './editor/editor.module'
|
||||||
import { ViewerModule } from './viewer/viewer.module'
|
import { ViewerModule } from './viewer/viewer.module'
|
||||||
|
import { ReviewModule } from './review/review.module'
|
||||||
|
import { DeployModule } from './deploy/deploy.module'
|
||||||
|
import { LicensingModule } from './licensing/licensing.module'
|
||||||
|
import { SystemModule } from './system/system.module'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Defining routes
|
* Defining routes
|
||||||
@ -45,10 +45,7 @@ export const ROUTES: Routes = [
|
|||||||
path: 'licensing',
|
path: 'licensing',
|
||||||
loadChildren: () => LicensingModule
|
loadChildren: () => LicensingModule
|
||||||
},
|
},
|
||||||
{
|
{ path: 'home', component: HomeComponent },
|
||||||
path: 'home',
|
|
||||||
loadChildren: () => HomeModule
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Load editor module with subroutes
|
* Load editor module with subroutes
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
import { Component, Input, OnInit, Output, EventEmitter } from '@angular/core'
|
import { Component, Input, OnInit, Output, EventEmitter } from '@angular/core'
|
||||||
import SASjs, { SASjsConfig } from '@sasjs/adapter'
|
import SASjs, { SASjsConfig } from '@sasjs/adapter'
|
||||||
import { DcAdapterSettings } from 'src/app/models/DcAdapterSettings'
|
import { DcAdapterSettings } from 'src/app/models/DcAdapterSettings'
|
||||||
import { RequestWrapperResponse } from 'src/app/models/request-wrapper/RequestWrapperResponse'
|
|
||||||
import { DeployService } from 'src/app/services/deploy.service'
|
import { DeployService } from 'src/app/services/deploy.service'
|
||||||
import { EventService } from 'src/app/services/event.service'
|
import { EventService } from 'src/app/services/event.service'
|
||||||
import { LoggerService } from 'src/app/services/logger.service'
|
import { LoggerService } from 'src/app/services/logger.service'
|
||||||
@ -304,10 +303,10 @@ export class ManualComponent implements OnInit {
|
|||||||
|
|
||||||
this.sasService
|
this.sasService
|
||||||
.request('public/startupservice', null)
|
.request('public/startupservice', null)
|
||||||
.then((res: RequestWrapperResponse) => {
|
.then((res: any) => {
|
||||||
this.loggerService.log(res.adapterResponse)
|
this.loggerService.log(res)
|
||||||
|
|
||||||
if (res.adapterResponse.saslibs) {
|
if (res.saslibs) {
|
||||||
this.validationState = 'success'
|
this.validationState = 'success'
|
||||||
} else {
|
} else {
|
||||||
this.validationState = 'error'
|
this.validationState = 'error'
|
||||||
|
@ -3,7 +3,6 @@ import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core'
|
|||||||
import SASjs, { SASjsConfig } from '@sasjs/adapter'
|
import SASjs, { SASjsConfig } from '@sasjs/adapter'
|
||||||
import { ServerType } from '@sasjs/utils/types/serverType'
|
import { ServerType } from '@sasjs/utils/types/serverType'
|
||||||
import { DcAdapterSettings } from 'src/app/models/DcAdapterSettings'
|
import { DcAdapterSettings } from 'src/app/models/DcAdapterSettings'
|
||||||
import { RequestWrapperResponse } from 'src/app/models/request-wrapper/RequestWrapperResponse'
|
|
||||||
import { SASGroup } from 'src/app/models/sas/public-getgroups.model'
|
import { SASGroup } from 'src/app/models/sas/public-getgroups.model'
|
||||||
import { SASjsApiServerInfo } from 'src/app/models/sasjs-api/SASjsApiServerInfo.model'
|
import { SASjsApiServerInfo } from 'src/app/models/sasjs-api/SASjsApiServerInfo.model'
|
||||||
import { SasService } from 'src/app/services/sas.service'
|
import { SasService } from 'src/app/services/sas.service'
|
||||||
@ -69,11 +68,11 @@ export class SasjsConfiguratorComponent implements OnInit {
|
|||||||
this.loading = true
|
this.loading = true
|
||||||
|
|
||||||
this.sasService.request('usernav/usergroupsbymember', null).then(
|
this.sasService.request('usernav/usergroupsbymember', null).then(
|
||||||
(res: RequestWrapperResponse) => {
|
(res: any) => {
|
||||||
this.METAPERSON = res.adapterResponse.MF_GETUSER
|
this.METAPERSON = res.MF_GETUSER
|
||||||
this.SYSUSERID = res.adapterResponse.SYSUSERID
|
this.SYSUSERID = res.SYSUSERID
|
||||||
this.SYSHOSTNAME = res.adapterResponse.SYSHOSTNAME
|
this.SYSHOSTNAME = res.SYSHOSTNAME
|
||||||
this.SYSVLONG = res.adapterResponse.SYSVLONG
|
this.SYSVLONG = res.SYSVLONG
|
||||||
|
|
||||||
/*
|
/*
|
||||||
We would like to present a default DCPATH (deployment path) to the
|
We would like to present a default DCPATH (deployment path) to the
|
||||||
@ -89,14 +88,12 @@ export class SasjsConfiguratorComponent implements OnInit {
|
|||||||
*/
|
*/
|
||||||
this.dcDirectory =
|
this.dcDirectory =
|
||||||
this.tmpDirectories[
|
this.tmpDirectories[
|
||||||
['L', 'H', 'A', 'S'].includes(
|
['L', 'H', 'A', 'S'].includes(res.SYSSCPL.substring(0, 1))
|
||||||
res.adapterResponse.SYSSCPL.substring(0, 1)
|
|
||||||
)
|
|
||||||
? 'linux'
|
? 'linux'
|
||||||
: 'windows'
|
: 'windows'
|
||||||
]
|
]
|
||||||
|
|
||||||
this.dcAdminGroupList = res.adapterResponse.groups
|
this.dcAdminGroupList = res.groups
|
||||||
this.dcAdminGroup = this.dcAdminGroupList[0].GROUPNAME
|
this.dcAdminGroup = this.dcAdminGroupList[0].GROUPNAME
|
||||||
|
|
||||||
this.loading = false
|
this.loading = false
|
||||||
|
@ -4,23 +4,20 @@ import { NgVarDirective } from './ng-var.directive'
|
|||||||
import { DragNdropDirective } from './drag-ndrop.directive'
|
import { DragNdropDirective } from './drag-ndrop.directive'
|
||||||
import { FileDropDirective } from './file-drop.directive'
|
import { FileDropDirective } from './file-drop.directive'
|
||||||
import { FileSelectDirective } from './file-select.directive'
|
import { FileSelectDirective } from './file-select.directive'
|
||||||
import { StealFocusDirective } from './steal-focus.directive'
|
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
declarations: [
|
declarations: [
|
||||||
NgVarDirective,
|
NgVarDirective,
|
||||||
DragNdropDirective,
|
DragNdropDirective,
|
||||||
FileDropDirective,
|
FileDropDirective,
|
||||||
FileSelectDirective,
|
FileSelectDirective
|
||||||
StealFocusDirective
|
|
||||||
],
|
],
|
||||||
imports: [CommonModule],
|
imports: [CommonModule],
|
||||||
exports: [
|
exports: [
|
||||||
NgVarDirective,
|
NgVarDirective,
|
||||||
DragNdropDirective,
|
DragNdropDirective,
|
||||||
FileDropDirective,
|
FileDropDirective,
|
||||||
FileSelectDirective,
|
FileSelectDirective
|
||||||
StealFocusDirective
|
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
export class DirectivesModule {}
|
export class DirectivesModule {}
|
||||||
|
@ -1,17 +0,0 @@
|
|||||||
import { Directive, HostListener } from '@angular/core'
|
|
||||||
|
|
||||||
@Directive({
|
|
||||||
selector: '[appStealFocus]'
|
|
||||||
})
|
|
||||||
export class StealFocusDirective {
|
|
||||||
constructor() {}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* For some reason newest version of Clarity v17.0.1 is stealing focus when
|
|
||||||
* clicking on the input inside of the clr-tree-view
|
|
||||||
* This is workaround
|
|
||||||
*/
|
|
||||||
@HostListener('click', ['$event']) onClick(event: any) {
|
|
||||||
event.target.focus()
|
|
||||||
}
|
|
||||||
}
|
|
@ -24,8 +24,8 @@
|
|||||||
generatedRecordUrl
|
generatedRecordUrl
|
||||||
? 'copy to clipboard'
|
? 'copy to clipboard'
|
||||||
: generateEditRecordUrlLoading
|
: generateEditRecordUrlLoading
|
||||||
? 'Generating url...'
|
? 'Generating url...'
|
||||||
: 'Link to this record'
|
: 'Link to this record'
|
||||||
}}
|
}}
|
||||||
</button>
|
</button>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
@ -112,7 +112,7 @@
|
|||||||
|
|
||||||
<div
|
<div
|
||||||
*ngIf="
|
*ngIf="
|
||||||
['autocomplete', 'autocomplete.custom'].includes(
|
['autocomplete'].includes(
|
||||||
$any(currentRecordValidator?.getRule(col.key)?.editor)
|
$any(currentRecordValidator?.getRule(col.key)?.editor)
|
||||||
)
|
)
|
||||||
"
|
"
|
||||||
@ -163,7 +163,7 @@
|
|||||||
|
|
||||||
<div
|
<div
|
||||||
*ngIf="
|
*ngIf="
|
||||||
['autocomplete', 'autocomplete.custom'].includes(
|
['autocomplete'].includes(
|
||||||
$any(currentRecordValidator?.getRule(col.key)?.editor)
|
$any(currentRecordValidator?.getRule(col.key)?.editor)
|
||||||
)
|
)
|
||||||
"
|
"
|
||||||
@ -277,7 +277,7 @@
|
|||||||
<div>
|
<div>
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
class="btn btn-outline focusable mr-5i"
|
class="btn btn-outline focusable"
|
||||||
(click)="currentRecord!.noLinkOption = false; closeRecordEdit()"
|
(click)="currentRecord!.noLinkOption = false; closeRecordEdit()"
|
||||||
>
|
>
|
||||||
Cancel
|
Cancel
|
||||||
|
@ -38,6 +38,7 @@
|
|||||||
app-soft-select {
|
app-soft-select {
|
||||||
display: block;
|
display: block;
|
||||||
width: 224px;
|
width: 224px;
|
||||||
|
background: #fff;
|
||||||
border: 1px solid #999;
|
border: 1px solid #999;
|
||||||
color: #000;
|
color: #000;
|
||||||
padding: calc(.25rem + 2px) .5rem;
|
padding: calc(.25rem + 2px) .5rem;
|
||||||
@ -48,6 +49,7 @@
|
|||||||
input {
|
input {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border: 0;
|
border: 0;
|
||||||
|
background-color: #fff;
|
||||||
|
|
||||||
&:focus {
|
&:focus {
|
||||||
background: none;
|
background: none;
|
||||||
@ -130,6 +132,7 @@
|
|||||||
|
|
||||||
clr-input-container {
|
clr-input-container {
|
||||||
width: 224px;
|
width: 224px;
|
||||||
|
background: #fff;
|
||||||
border: 1px solid #999;
|
border: 1px solid #999;
|
||||||
color: #000;
|
color: #000;
|
||||||
padding: calc(.25rem + 2px) .5rem;
|
padding: calc(.25rem + 2px) .5rem;
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
appFileDrop
|
appFileDrop
|
||||||
(fileOver)="fileOverBase($event)"
|
(fileOver)="fileOverBase($event)"
|
||||||
[uploader]="uploader"
|
[uploader]="uploader"
|
||||||
(fileDrop)="attachFile($event, true)"
|
(fileDrop)="getFileDesc($event, true)"
|
||||||
[clrModalSize]="'xl'"
|
[clrModalSize]="'xl'"
|
||||||
[clrModalStaticBackdrop]="false"
|
[clrModalStaticBackdrop]="false"
|
||||||
[clrModalClosable]="excelUploadState === 'Validating-DQ'"
|
[clrModalClosable]="excelUploadState === 'Validating-DQ'"
|
||||||
@ -81,7 +81,7 @@
|
|||||||
type="file"
|
type="file"
|
||||||
appFileSelect
|
appFileSelect
|
||||||
[uploader]="uploader"
|
[uploader]="uploader"
|
||||||
(change)="attachFile($event)"
|
(change)="getFileDesc($event)"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -92,7 +92,7 @@
|
|||||||
<button
|
<button
|
||||||
[disabled]="true"
|
[disabled]="true"
|
||||||
class="btnView btn btn-sm btn-success profile-buttons w-100"
|
class="btnView btn btn-sm btn-success profile-buttons w-100"
|
||||||
(click)="uploadParsedFiles()"
|
(click)="getFile()"
|
||||||
>
|
>
|
||||||
Upload
|
Upload
|
||||||
</button>
|
</button>
|
||||||
@ -164,28 +164,19 @@
|
|||||||
<div
|
<div
|
||||||
class="card-header clr-row buttonBar headerBar clr-flex-md-row clr-justify-content-center clr-justify-content-lg-end"
|
class="card-header clr-row buttonBar headerBar clr-flex-md-row clr-justify-content-center clr-justify-content-lg-end"
|
||||||
>
|
>
|
||||||
<div
|
<div *ngIf="tableTrue" class="clr-col-12 clr-col-lg-4 backBtn">
|
||||||
*ngIf="tableTrue"
|
<span class="btn btn-sm" [routerLink]="['/home']">
|
||||||
class="clr-col-12 clr-col-md-3 clr-col-lg-4 backBtn"
|
<clr-icon shape="caret" dir="left" size="20"></clr-icon>Back to
|
||||||
>
|
table selection
|
||||||
<span
|
|
||||||
class="btn icon-collapse btn-sm btn-icon btn-dimmed"
|
|
||||||
[routerLink]="['/home']"
|
|
||||||
>
|
|
||||||
<clr-icon shape="caret" dir="left" size="20"></clr-icon>
|
|
||||||
<span class="text">Back to table selection</span>
|
|
||||||
</span>
|
</span>
|
||||||
<span
|
<span (click)="viewboxManager()" class="btn btn-sm viewbox-open">
|
||||||
(click)="viewboxManager()"
|
|
||||||
class="btn icon-collapse btn-sm btn-icon btn-dimmed viewbox-open"
|
|
||||||
>
|
|
||||||
<clr-icon shape="view-cards" size="20"></clr-icon>
|
<clr-icon shape="view-cards" size="20"></clr-icon>
|
||||||
<span class="text">Viewboxes</span>
|
Viewboxes
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
class="clr-col-12 clr-col-md-5 clr-col-lg-4 d-flex flex-column align-items-center"
|
class="clr-col-12 clr-col-lg-4 d-flex flex-column align-items-center"
|
||||||
[class.clr-col-lg-12]="!tableTrue"
|
[class.clr-col-lg-12]="!tableTrue"
|
||||||
>
|
>
|
||||||
<h4
|
<h4
|
||||||
@ -195,40 +186,24 @@
|
|||||||
} as libdsParsed"
|
} as libdsParsed"
|
||||||
class="editor-title text-center mt-0-i"
|
class="editor-title text-center mt-0-i"
|
||||||
>
|
>
|
||||||
<clr-tooltip>
|
<clr-icon
|
||||||
<clr-icon
|
(click)="datasetInfo = true"
|
||||||
clrTooltipTrigger
|
shape="info-circle"
|
||||||
(click)="datasetInfo = true"
|
class="is-highlight cursor-pointer"
|
||||||
shape="info-circle"
|
size="24"
|
||||||
class="is-highlight cursor-pointer"
|
></clr-icon>
|
||||||
size="24"
|
|
||||||
></clr-icon>
|
|
||||||
|
|
||||||
<clr-icon
|
<clr-icon
|
||||||
*ngIf="libdsParsed.tableName.includes('-FC')"
|
*ngIf="libdsParsed.tableName.includes('-FC')"
|
||||||
shape="bolt"
|
shape="bolt"
|
||||||
class="color-yellow"
|
class="color-yellow"
|
||||||
></clr-icon>
|
></clr-icon>
|
||||||
|
|
||||||
<span clrTooltipTrigger>
|
|
||||||
{{ libdsParsed.libName }}.<a
|
|
||||||
class="mr-10 view-table"
|
|
||||||
[routerLink]="'/view/data/' + libds!"
|
|
||||||
>{{ libdsParsed.tableName.replace('-FC', '') }}</a
|
|
||||||
>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
<ng-container *ngIf="this.dsNote && this.dsNote.length > 0">
|
|
||||||
<clr-tooltip-content
|
|
||||||
clrPosition="bottom-left"
|
|
||||||
clrSize="lg"
|
|
||||||
*clrIfOpen
|
|
||||||
>
|
|
||||||
{{ this.dsNote }}
|
|
||||||
</clr-tooltip-content>
|
|
||||||
</ng-container>
|
|
||||||
</clr-tooltip>
|
|
||||||
|
|
||||||
|
{{ libdsParsed.libName }}.<a
|
||||||
|
class="mr-10"
|
||||||
|
[routerLink]="'/view/data/' + libds!"
|
||||||
|
>{{ libdsParsed.tableName.replace('-FC', '') }}</a
|
||||||
|
>
|
||||||
<ng-container *ngIf="dataSource">
|
<ng-container *ngIf="dataSource">
|
||||||
<ng-container *ngIf="!zeroFilterRows">
|
<ng-container *ngIf="!zeroFilterRows">
|
||||||
({{ dataSource.length | thousandSeparator: ',' }}
|
({{ dataSource.length | thousandSeparator: ',' }}
|
||||||
@ -240,37 +215,34 @@
|
|||||||
</ng-container>
|
</ng-container>
|
||||||
</h4>
|
</h4>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div *ngIf="tableTrue" class="clr-col-12 clr-col-lg-4 btnCtrl">
|
||||||
*ngIf="tableTrue"
|
|
||||||
class="clr-col-12 clr-col-md-4 clr-col-lg-4 btnCtrl"
|
|
||||||
>
|
|
||||||
<ng-container *ngIf="hotTable.readOnly && !uploadPreview">
|
<ng-container *ngIf="hotTable.readOnly && !uploadPreview">
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
class="btnView btn icon-collapse btn-sm btn-icon btn-block btn-dimmed"
|
class="btnView btn btn-sm btn-icon btn-block"
|
||||||
(click)="openQb()"
|
(click)="openQb()"
|
||||||
>
|
>
|
||||||
<clr-icon shape="filter"></clr-icon>
|
<clr-icon shape="filter"></clr-icon>
|
||||||
<span class="text">Filter</span>
|
<span>Filter</span>
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
class="btn icon-collapse btn-sm btn-primary btn-block"
|
class="btn btn-sm btn-primary btn-block"
|
||||||
(click)="editTable()"
|
(click)="editTable()"
|
||||||
>
|
>
|
||||||
<clr-icon shape="note"></clr-icon>
|
<clr-icon shape="note"></clr-icon>
|
||||||
<span class="text">Edit</span>
|
<span>Edit</span>
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<button
|
<button
|
||||||
*ngIf="!columnLevelSecurityFlag"
|
*ngIf="!columnLevelSecurityFlag"
|
||||||
(click)="onShowUploadModal()"
|
(click)="onShowUploadModal()"
|
||||||
type="button"
|
type="button"
|
||||||
class="btn icon-collapse btn-sm btn-success btn-block mr-0"
|
class="btn btn-sm btn-success btn-block mr-0"
|
||||||
>
|
>
|
||||||
<clr-icon shape="upload"></clr-icon>
|
<clr-icon shape="upload"></clr-icon>
|
||||||
<span class="text">Upload</span>
|
<span>Upload</span>
|
||||||
</button>
|
</button>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
||||||
@ -308,7 +280,7 @@
|
|||||||
licenceState.value.editor_rows_allowed === 1
|
licenceState.value.editor_rows_allowed === 1
|
||||||
? 'row'
|
? 'row'
|
||||||
: 'rows'
|
: 'rows'
|
||||||
}}, contact support@datacontroller.io</span
|
}}, contact support@datacontroller.io</span
|
||||||
>
|
>
|
||||||
</clr-tooltip-content>
|
</clr-tooltip-content>
|
||||||
</clr-tooltip>
|
</clr-tooltip>
|
||||||
@ -374,8 +346,8 @@
|
|||||||
<ng-container *ngIf="!getdataError">
|
<ng-container *ngIf="!getdataError">
|
||||||
<span class="spinner"> Loading... </span>
|
<span class="spinner"> Loading... </span>
|
||||||
|
|
||||||
<div class="mt-10">
|
<div>
|
||||||
<p cds-text="section">Loading table</p>
|
<h3>Loading table</h3>
|
||||||
</div>
|
</div>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
||||||
@ -384,8 +356,8 @@
|
|||||||
<clr-icon shape="error-standard" class="error-icon"></clr-icon>
|
<clr-icon shape="error-standard" class="error-icon"></clr-icon>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<div class="mt-10">
|
<div>
|
||||||
<p cds-text="section">Loading table error</p>
|
<h3>Loading table error</h3>
|
||||||
</div>
|
</div>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
</div>
|
</div>
|
||||||
@ -410,7 +382,6 @@
|
|||||||
hotId="hotInstance"
|
hotId="hotInstance"
|
||||||
id="hotTable"
|
id="hotTable"
|
||||||
class="edit-hot"
|
class="edit-hot"
|
||||||
className="htDark"
|
|
||||||
[class.hidden]="hotTable.hidden"
|
[class.hidden]="hotTable.hidden"
|
||||||
[licenseKey]="hotTable.licenseKey"
|
[licenseKey]="hotTable.licenseKey"
|
||||||
>
|
>
|
||||||
@ -446,7 +417,7 @@
|
|||||||
licenceState.value.editor_rows_allowed === 1
|
licenceState.value.editor_rows_allowed === 1
|
||||||
? 'row'
|
? 'row'
|
||||||
: 'rows'
|
: 'rows'
|
||||||
}}, contact support@datacontroller.io</span
|
}}, contact support@datacontroller.io</span
|
||||||
>
|
>
|
||||||
</clr-tooltip-content>
|
</clr-tooltip-content>
|
||||||
</clr-tooltip>
|
</clr-tooltip>
|
||||||
@ -496,18 +467,14 @@
|
|||||||
: 'rows'
|
: 'rows'
|
||||||
}}
|
}}
|
||||||
will be submitted. To remove the restriction, contact
|
will be submitted. To remove the restriction, contact
|
||||||
support@datacontroller.io</span
|
support@datacontroller.io</span
|
||||||
>
|
>
|
||||||
<div *ngIf="tableTrue" class="clr-offset-md-2 clr-col-md-8">
|
<div *ngIf="tableTrue" class="clr-offset-md-2 clr-col-md-8">
|
||||||
<div class="text-area-full-width">
|
<div class="form-group">
|
||||||
<label for="formFields_8" class="mb-5 d-block"
|
<label for="formFields_8">Message</label>
|
||||||
>Message</label
|
|
||||||
>
|
|
||||||
<textarea
|
<textarea
|
||||||
clrTextarea
|
|
||||||
[(ngModel)]="message"
|
[(ngModel)]="message"
|
||||||
[disabled]="!validationDone"
|
[disabled]="!validationDone"
|
||||||
tabindex="0"
|
|
||||||
[value]="
|
[value]="
|
||||||
!validationDone
|
!validationDone
|
||||||
? 'Please wait while we validate ' +
|
? 'Please wait while we validate ' +
|
||||||
@ -515,9 +482,10 @@
|
|||||||
' cells.'
|
' cells.'
|
||||||
: ''
|
: ''
|
||||||
"
|
"
|
||||||
class="submit-reason"
|
class="w-100"
|
||||||
type="text"
|
type="text"
|
||||||
id="formFields_8"
|
id="formFields_8"
|
||||||
|
rows="5"
|
||||||
></textarea>
|
></textarea>
|
||||||
</div>
|
</div>
|
||||||
<!-- TODO:approvers list -->
|
<!-- TODO:approvers list -->
|
||||||
@ -536,7 +504,6 @@
|
|||||||
[disabled]="!validationDone"
|
[disabled]="!validationDone"
|
||||||
type="submit"
|
type="submit"
|
||||||
class="btn btn-sm btn-success-outline m-0"
|
class="btn btn-sm btn-success-outline m-0"
|
||||||
tabindex="0"
|
|
||||||
(click)="saveTable(hotTable.data)"
|
(click)="saveTable(hotTable.data)"
|
||||||
>
|
>
|
||||||
Submit
|
Submit
|
||||||
@ -545,7 +512,6 @@
|
|||||||
id="cancelSubmitBtn"
|
id="cancelSubmitBtn"
|
||||||
type="button"
|
type="button"
|
||||||
class="btn btn-sm btn-outline"
|
class="btn btn-sm btn-outline"
|
||||||
tabindex="0"
|
|
||||||
(click)="cancelSubmit(); submit = false; validationDone = 0"
|
(click)="cancelSubmit(); submit = false; validationDone = 0"
|
||||||
>
|
>
|
||||||
Cancel
|
Cancel
|
||||||
@ -562,7 +528,7 @@
|
|||||||
Due to current licence, only
|
Due to current licence, only
|
||||||
{{ licenceState.value.submit_rows_limit }} rows in a file will
|
{{ licenceState.value.submit_rows_limit }} rows in a file will
|
||||||
be submitted. To remove the restriction, contact
|
be submitted. To remove the restriction, contact
|
||||||
support@datacontroller.io
|
support@datacontroller.io
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
@ -576,7 +542,7 @@
|
|||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
class="btn btn-sm btn-primary"
|
class="btn btn-sm btn-primary"
|
||||||
(click)="uploadParsedFiles(); submitLimitNotice = false"
|
(click)="getFile(); submitLimitNotice = false"
|
||||||
>
|
>
|
||||||
Submit
|
Submit
|
||||||
</button>
|
</button>
|
||||||
@ -864,12 +830,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</clr-modal>
|
</clr-modal>
|
||||||
|
|
||||||
<app-dataset-info
|
<app-dataset-info [(open)]="datasetInfo" [dsmeta]="dsmeta"></app-dataset-info>
|
||||||
[(open)]="datasetInfo"
|
|
||||||
[dsmeta]="dsmeta"
|
|
||||||
[versions]="versions"
|
|
||||||
(rowClicked)="datasetInfoModalRowClicked($event)"
|
|
||||||
>
|
|
||||||
</app-dataset-info>
|
|
||||||
|
|
||||||
<app-viewboxes [(viewboxModal)]="viewboxes"></app-viewboxes>
|
<app-viewboxes [(viewboxModal)]="viewboxes"></app-viewboxes>
|
||||||
|
@ -21,12 +21,12 @@ hot-table {
|
|||||||
|
|
||||||
.handsontable tbody th.ht__highlight, .handsontable thead th.ht__highlight {
|
.handsontable tbody th.ht__highlight, .handsontable thead th.ht__highlight {
|
||||||
&.primaryKeyHeaderStyle {
|
&.primaryKeyHeaderStyle {
|
||||||
background-color: #306b00b0 !important;
|
background: #306b00b0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.primaryKeyHeaderStyle {
|
.primaryKeyHeaderStyle {
|
||||||
background-color: #306b006e !important;
|
background: #306b006e;
|
||||||
}
|
}
|
||||||
|
|
||||||
th.readonlyCell {
|
th.readonlyCell {
|
||||||
@ -41,12 +41,6 @@ hot-table {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.submit-reason {
|
|
||||||
min-height: 120px;
|
|
||||||
max-height: 120px;
|
|
||||||
height: 120px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.infoBar {
|
.infoBar {
|
||||||
margin-top:14px;
|
margin-top:14px;
|
||||||
background: #495967;
|
background: #495967;
|
||||||
@ -86,7 +80,8 @@ hot-table {
|
|||||||
-webkit-box-align: center;
|
-webkit-box-align: center;
|
||||||
-ms-flex-align: center;
|
-ms-flex-align: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
background: var(--clr-vertical-nav-bg-color);
|
background: #ffffff;
|
||||||
|
background: #f5f6fe;
|
||||||
}
|
}
|
||||||
|
|
||||||
.error-icon {
|
.error-icon {
|
||||||
@ -201,7 +196,6 @@ hot-table {
|
|||||||
|
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: flex-start;
|
|
||||||
|
|
||||||
margin: 1px;
|
margin: 1px;
|
||||||
|
|
||||||
@ -212,10 +206,7 @@ hot-table {
|
|||||||
span {
|
span {
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
padding: 10px;
|
color: #fff;
|
||||||
background: #dbdbdb;
|
|
||||||
border-radius: 5px;
|
|
||||||
color: black;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -223,20 +214,6 @@ hot-table {
|
|||||||
width: 150px;
|
width: 150px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.view-table {
|
|
||||||
font-size: inherit !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
// When width is smaller remove the text from the buttons
|
|
||||||
// keep only the icons
|
|
||||||
@media (max-width: 992px) {
|
|
||||||
.icon-collapse {
|
|
||||||
.text {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// FIXME
|
// FIXME
|
||||||
// Let's leave it here for a reference if there
|
// Let's leave it here for a reference if there
|
||||||
// is an issue with viewboxes/filter modal overlaying
|
// is an issue with viewboxes/filter modal overlaying
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -12,6 +12,7 @@ import { EditRecordComponent } from './components/edit-record/edit-record.compon
|
|||||||
import { UploadStaterComponent } from './components/upload-stater/upload-stater.component'
|
import { UploadStaterComponent } from './components/upload-stater/upload-stater.component'
|
||||||
import { EditorRoutingModule } from './editor-routing.module'
|
import { EditorRoutingModule } from './editor-routing.module'
|
||||||
import { EditorComponent } from './editor.component'
|
import { EditorComponent } from './editor.component'
|
||||||
|
import { HomeModule } from '../home/home.module'
|
||||||
import { DcTreeModule } from '../shared/dc-tree/dc-tree.module'
|
import { DcTreeModule } from '../shared/dc-tree/dc-tree.module'
|
||||||
import { DragDropModule } from '@angular/cdk/drag-drop'
|
import { DragDropModule } from '@angular/cdk/drag-drop'
|
||||||
import { ViewboxesModule } from '../shared/viewboxes/viewboxes.module'
|
import { ViewboxesModule } from '../shared/viewboxes/viewboxes.module'
|
||||||
@ -32,6 +33,7 @@ registerAllModules()
|
|||||||
AppSharedModule,
|
AppSharedModule,
|
||||||
DirectivesModule,
|
DirectivesModule,
|
||||||
SharedModule,
|
SharedModule,
|
||||||
|
HomeModule,
|
||||||
PipesModule,
|
PipesModule,
|
||||||
DcTreeModule,
|
DcTreeModule,
|
||||||
DragDropModule,
|
DragDropModule,
|
||||||
|
@ -11,11 +11,9 @@ export const errorRenderer = (
|
|||||||
value: any,
|
value: any,
|
||||||
cellProperties: any
|
cellProperties: any
|
||||||
) => {
|
) => {
|
||||||
addDarkClass(td)
|
|
||||||
|
|
||||||
td.innerHTML = `${
|
td.innerHTML = `${
|
||||||
value ? value.toString() : ''
|
value ? value.toString() : ''
|
||||||
} <cds-icon shape="exclamation-triangle" status="warning"></cds-icon>`
|
} <clr-icon shape="exclamation-circle" status="warning"></clr-icon>`
|
||||||
|
|
||||||
return td
|
return td
|
||||||
}
|
}
|
||||||
@ -33,8 +31,6 @@ export const noSpinnerRenderer = (
|
|||||||
value: any,
|
value: any,
|
||||||
cellProperties: any
|
cellProperties: any
|
||||||
) => {
|
) => {
|
||||||
addDarkClass(td)
|
|
||||||
|
|
||||||
td.innerHTML = value ? value : ''
|
td.innerHTML = value ? value : ''
|
||||||
|
|
||||||
return td
|
return td
|
||||||
@ -54,20 +50,9 @@ export const spinnerRenderer = (
|
|||||||
value: any,
|
value: any,
|
||||||
cellProperties: any
|
cellProperties: any
|
||||||
) => {
|
) => {
|
||||||
addDarkClass(td)
|
|
||||||
|
|
||||||
td.innerHTML = `${
|
td.innerHTML = `${
|
||||||
value ? value.toString() : ''
|
value ? value.toString() : ''
|
||||||
} <span class="spinner spinner-sm vertical-align-middle"></span>`
|
} <span class="spinner spinner-sm vertical-align-middle"></span>`
|
||||||
|
|
||||||
return td
|
return td
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Adds a htDark class to a TD element if not existing
|
|
||||||
*/
|
|
||||||
const addDarkClass = (td: any) => {
|
|
||||||
if (!td.classList.contains('htDark')) {
|
|
||||||
td.classList.add('htDark')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
<clr-tree-node *ngIf="groups" class="search-node">
|
<clr-tree-node *ngIf="groups" class="search-node">
|
||||||
<div class="tree-search-wrapper">
|
<div class="tree-search-wrapper">
|
||||||
<input
|
<input
|
||||||
appStealFocus
|
|
||||||
clrInput
|
clrInput
|
||||||
#searchLibTreeInput
|
#searchLibTreeInput
|
||||||
placeholder="Filter by Groups"
|
placeholder="Filter by Groups"
|
||||||
@ -28,7 +27,7 @@
|
|||||||
<clr-tree-node
|
<clr-tree-node
|
||||||
(click)="groupOnClick(group)"
|
(click)="groupOnClick(group)"
|
||||||
*ngIf="!group['hidden']"
|
*ngIf="!group['hidden']"
|
||||||
[class.active]="group.GROUPURI === groupUri"
|
[class.table-active]="group.GROUPURI === groupUri"
|
||||||
>
|
>
|
||||||
<p class="m-0 cursor-pointer list-padding">
|
<p class="m-0 cursor-pointer list-padding">
|
||||||
<clr-icon shape="users"></clr-icon>
|
<clr-icon shape="users"></clr-icon>
|
||||||
|
@ -1,63 +1,26 @@
|
|||||||
@import '../../colors.scss';
|
|
||||||
|
|
||||||
::ng-deep body[cds-theme="dark"] {
|
|
||||||
.group-info {
|
|
||||||
background-color: $headerBackground;
|
|
||||||
border-color: $headerBackground;
|
|
||||||
}
|
|
||||||
|
|
||||||
.group-data {
|
|
||||||
background-color: $headerBackground;
|
|
||||||
border-color: $headerBackground;
|
|
||||||
}
|
|
||||||
|
|
||||||
.member-table tbody{
|
|
||||||
tr:hover{
|
|
||||||
background-color: #29404b;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
::ng-deep body[cds-theme="light"] {
|
|
||||||
.group-info{
|
|
||||||
background-color: #f9f9f9;
|
|
||||||
border-color: #a7a7a7;
|
|
||||||
box-shadow: 0px 2px 5px #dad7d7;
|
|
||||||
}
|
|
||||||
|
|
||||||
.group-data {
|
|
||||||
background-color: #f9f9f9;
|
|
||||||
border-color: #a7a7a7;
|
|
||||||
box-shadow: 0px 2px 5px #dad7d7;
|
|
||||||
}
|
|
||||||
|
|
||||||
.member-table tbody{
|
|
||||||
tr:hover{
|
|
||||||
background-color: #e6e6e6;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar-height{
|
.sidebar-height{
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
.group-info-text{
|
.group-info-text{
|
||||||
display: inline;
|
display: inline;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
}
|
}
|
||||||
.group-info{
|
.group-info{
|
||||||
border: 1px solid;
|
background-color: #f9f9f9;
|
||||||
|
border: 1px solid #a7a7a7;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
|
box-shadow: 0px 2px 5px #dad7d7;
|
||||||
}
|
}
|
||||||
.group-info td{
|
.group-info td{
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.group-data{
|
.group-data{
|
||||||
border: 1px solid;
|
background-color: #f9f9f9;
|
||||||
|
border: 1px solid #a7a7a7;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
|
box-shadow: 0px 2px 5px #dad7d7;
|
||||||
}
|
}
|
||||||
|
|
||||||
.group-data{
|
.group-data{
|
||||||
min-height: auto;
|
min-height: auto;
|
||||||
h3, h5{
|
h3, h5{
|
||||||
@ -65,11 +28,15 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.member-table{
|
.member-table{
|
||||||
|
background-color: #f9f9f9;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
.member-table thead{
|
||||||
|
background-color: #dadada;
|
||||||
|
}
|
||||||
.member-table tbody{
|
.member-table tbody{
|
||||||
tr:hover{
|
tr:hover{
|
||||||
|
background-color: #e6e6e6;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -6,7 +6,6 @@ import { ServerType } from '@sasjs/utils/types/serverType'
|
|||||||
import { HelperService } from '../services/helper.service'
|
import { HelperService } from '../services/helper.service'
|
||||||
import { SasService } from '../services/sas.service'
|
import { SasService } from '../services/sas.service'
|
||||||
import { globals } from '../_globals'
|
import { globals } from '../_globals'
|
||||||
import { RequestWrapperResponse } from '../models/request-wrapper/RequestWrapperResponse'
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-group',
|
selector: 'app-group',
|
||||||
@ -83,13 +82,11 @@ export class GroupComponent implements OnInit {
|
|||||||
globals.usernav.groupList = groups
|
globals.usernav.groupList = groups
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
this.sasService
|
this.sasService.request('public/getgroups', null).then((res: any) => {
|
||||||
.request('public/getgroups', null)
|
this.loading = false
|
||||||
.then((res: RequestWrapperResponse) => {
|
this.groups = res.groups
|
||||||
this.loading = false
|
globals.usernav.groupList = res.groups
|
||||||
this.groups = res.adapterResponse.groups
|
})
|
||||||
globals.usernav.groupList = res.adapterResponse.groups
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
this.groups = globals.usernav.groupList
|
this.groups = globals.usernav.groupList
|
||||||
@ -131,15 +128,14 @@ export class GroupComponent implements OnInit {
|
|||||||
let data = { iwant: [{ groupid: this.paramURI }] }
|
let data = { iwant: [{ groupid: this.paramURI }] }
|
||||||
this.sasService
|
this.sasService
|
||||||
.request('usernav/usermembersbygroup', data)
|
.request('usernav/usermembersbygroup', data)
|
||||||
.then((res: RequestWrapperResponse) => {
|
.then((res: any) => {
|
||||||
this.groupMembers = res.adapterResponse.sasmembers
|
this.groupMembers = res.sasmembers
|
||||||
this.groupMemberCount = res.adapterResponse.sasmembers.length
|
this.groupMemberCount = res.sasmembers.length
|
||||||
if (res.adapterResponse.sasmembers[0] !== undefined) {
|
if (res.sasmembers[0] !== undefined) {
|
||||||
this.loading = false
|
this.loading = false
|
||||||
this.groupUri =
|
this.groupUri = res.sasmembers[0].URIMEM || this.paramURI
|
||||||
res.adapterResponse.sasmembers[0].URIMEM || this.paramURI
|
this.groupName = res.sasmembers[0].GROUPNAME
|
||||||
this.groupName = res.adapterResponse.sasmembers[0].GROUPNAME
|
this.groupDesc = res.sasmembers[0].GROUPDESC
|
||||||
this.groupDesc = res.adapterResponse.sasmembers[0].GROUPDESC
|
|
||||||
|
|
||||||
if (!this.groupName) {
|
if (!this.groupName) {
|
||||||
this.groupName = this.paramURI
|
this.groupName = this.paramURI
|
||||||
@ -206,13 +202,13 @@ export class GroupComponent implements OnInit {
|
|||||||
|
|
||||||
this.sasService
|
this.sasService
|
||||||
.request('usernav/usermembersbygroup', data)
|
.request('usernav/usermembersbygroup', data)
|
||||||
.then((res: RequestWrapperResponse) => {
|
.then((res: any) => {
|
||||||
this.loading = false
|
this.loading = false
|
||||||
this.groupUri = group.GROUPURI
|
this.groupUri = group.GROUPURI
|
||||||
this.groupName = group.GROUPNAME
|
this.groupName = group.GROUPNAME
|
||||||
this.groupDesc = group.GROUPDESC
|
this.groupDesc = group.GROUPDESC
|
||||||
this.groupMembers = res.adapterResponse.sasmembers
|
this.groupMembers = res.sasmembers
|
||||||
this.groupMemberCount = res.adapterResponse.sasmembers.length
|
this.groupMemberCount = res.sasmembers.length
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,25 +0,0 @@
|
|||||||
import { NgModule } from '@angular/core'
|
|
||||||
import { RouterModule, Routes } from '@angular/router'
|
|
||||||
import { HomeRouteComponent } from '../routes/home-route/home-route.component'
|
|
||||||
import { HomeComponent } from './home.component'
|
|
||||||
import { XLMapModule } from '../xlmap/xlmap.module'
|
|
||||||
import { MultiDatasetModule } from '../multi-dataset/multi-dataset.module'
|
|
||||||
|
|
||||||
const routes: Routes = [
|
|
||||||
{
|
|
||||||
path: '',
|
|
||||||
component: HomeRouteComponent,
|
|
||||||
children: [
|
|
||||||
{ path: '', pathMatch: 'full', redirectTo: 'tables' },
|
|
||||||
{ path: 'tables', component: HomeComponent },
|
|
||||||
{ path: 'excel-maps', loadChildren: () => XLMapModule },
|
|
||||||
{ path: 'multi-load', loadChildren: () => MultiDatasetModule }
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
|
|
||||||
@NgModule({
|
|
||||||
imports: [RouterModule.forChild(routes)],
|
|
||||||
exports: [RouterModule]
|
|
||||||
})
|
|
||||||
export class HomeRoutingModule {}
|
|
@ -4,7 +4,6 @@
|
|||||||
<div class="tree-search-wrapper">
|
<div class="tree-search-wrapper">
|
||||||
<input
|
<input
|
||||||
clrInput
|
clrInput
|
||||||
appStealFocus
|
|
||||||
#searchLibTreeInput
|
#searchLibTreeInput
|
||||||
placeholder="Libraries"
|
placeholder="Libraries"
|
||||||
name="input"
|
name="input"
|
||||||
@ -47,7 +46,6 @@
|
|||||||
<clr-tree-node *ngIf="library['tables']" class="search-node">
|
<clr-tree-node *ngIf="library['tables']" class="search-node">
|
||||||
<div class="tree-search-wrapper">
|
<div class="tree-search-wrapper">
|
||||||
<input
|
<input
|
||||||
appStealFocus
|
|
||||||
clrInput
|
clrInput
|
||||||
#searchTreeInput
|
#searchTreeInput
|
||||||
placeholder="Tables"
|
placeholder="Tables"
|
||||||
@ -87,7 +85,7 @@
|
|||||||
(click)="!tableLocked ? onTableClick(libTable, library) : ''"
|
(click)="!tableLocked ? onTableClick(libTable, library) : ''"
|
||||||
class="clr-treenode-link"
|
class="clr-treenode-link"
|
||||||
[class.dc-locked-control]="tableLocked"
|
[class.dc-locked-control]="tableLocked"
|
||||||
[class.active]="libTabActive(library.LIBRARYREF, libTable)"
|
[class.table-active]="libTabActive(library.LIBRARYREF, libTable)"
|
||||||
>
|
>
|
||||||
<ng-container [ngSwitch]="libTable.includes('-FC')">
|
<ng-container [ngSwitch]="libTable.includes('-FC')">
|
||||||
<clr-icon *ngSwitchCase="true" shape="bolt"></clr-icon>
|
<clr-icon *ngSwitchCase="true" shape="bolt"></clr-icon>
|
||||||
@ -96,17 +94,15 @@
|
|||||||
{{ libTable.replace('-FC', '') }}
|
{{ libTable.replace('-FC', '') }}
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<ng-container *ngIf="tableLocked">
|
<clr-tooltip-content
|
||||||
<clr-tooltip-content
|
clrPosition="bottom-right"
|
||||||
clrPosition="bottom-right"
|
clrSize="lg"
|
||||||
clrSize="lg"
|
*clrIfOpen
|
||||||
*clrIfOpen
|
>
|
||||||
>
|
<span *ngIf="tableLocked">
|
||||||
<span>
|
To unlock all tables, contact support@datacontroller.io
|
||||||
To unlock all tables, contact support@datacontroller.io
|
</span>
|
||||||
</span>
|
</clr-tooltip-content>
|
||||||
</clr-tooltip-content>
|
|
||||||
</ng-container>
|
|
||||||
</clr-tooltip>
|
</clr-tooltip>
|
||||||
</clr-tree-node>
|
</clr-tree-node>
|
||||||
</clr-tree-node>
|
</clr-tree-node>
|
||||||
@ -128,20 +124,12 @@
|
|||||||
size="60"
|
size="60"
|
||||||
class="is-info icon-dc-fill"
|
class="is-info icon-dc-fill"
|
||||||
></clr-icon>
|
></clr-icon>
|
||||||
<p
|
<h3 *ngIf="treeNodeLibraries?.length! > 0" class="text-center color-gray">
|
||||||
*ngIf="treeNodeLibraries?.length! > 0"
|
|
||||||
class="text-center color-gray mt-10"
|
|
||||||
cds-text="section"
|
|
||||||
>
|
|
||||||
Please select a table
|
Please select a table
|
||||||
</p>
|
</h3>
|
||||||
<p
|
<h3 *ngIf="treeNodeLibraries?.length! < 1" class="text-center color-gray">
|
||||||
*ngIf="treeNodeLibraries?.length! < 1"
|
|
||||||
class="text-center color-gray mt-10"
|
|
||||||
cds-text="section"
|
|
||||||
>
|
|
||||||
No Editable Tables Configured
|
No Editable Tables Configured
|
||||||
</p>
|
</h3>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,18 +1,15 @@
|
|||||||
import { CommonModule } from '@angular/common'
|
|
||||||
import { NgModule } from '@angular/core'
|
import { NgModule } from '@angular/core'
|
||||||
import { FormsModule } from '@angular/forms'
|
import { CommonModule } from '@angular/common'
|
||||||
import { ClarityModule } from '@clr/angular'
|
|
||||||
import { AppSharedModule } from '../app-shared.module'
|
|
||||||
import { DirectivesModule } from '../directives/directives.module'
|
|
||||||
import { HomeRouteComponent } from '../routes/home-route/home-route.component'
|
|
||||||
import { DcTreeModule } from '../shared/dc-tree/dc-tree.module'
|
|
||||||
import { HomeRoutingModule } from './home-routing.module'
|
|
||||||
import { HomeComponent } from './home.component'
|
import { HomeComponent } from './home.component'
|
||||||
|
import { ClarityModule } from '@clr/angular'
|
||||||
|
import { FormsModule } from '@angular/forms'
|
||||||
|
import { AppSharedModule } from '../app-shared.module'
|
||||||
|
import { DcTreeModule } from '../shared/dc-tree/dc-tree.module'
|
||||||
|
import { DirectivesModule } from '../directives/directives.module'
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
declarations: [HomeComponent, HomeRouteComponent],
|
declarations: [HomeComponent],
|
||||||
imports: [
|
imports: [
|
||||||
HomeRoutingModule,
|
|
||||||
FormsModule,
|
FormsModule,
|
||||||
ClarityModule,
|
ClarityModule,
|
||||||
AppSharedModule,
|
AppSharedModule,
|
||||||
|
@ -2,152 +2,147 @@
|
|||||||
<div class="card-header">Licencing</div>
|
<div class="card-header">Licencing</div>
|
||||||
|
|
||||||
<div [ngSwitch]="action" class="card-block">
|
<div [ngSwitch]="action" class="card-block">
|
||||||
<div class="card-text">
|
<ng-container *ngSwitchCase="'key'">
|
||||||
<ng-container *ngSwitchCase="'key'">
|
<p class="key-error" *ngIf="!keyError">
|
||||||
<p class="key-error" *ngIf="!keyError">
|
Licence key is invalid. We can't provide you more details at the moment
|
||||||
Licence key is invalid. We can't provide you more details at the
|
|
||||||
moment
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p
|
|
||||||
class="key-error"
|
|
||||||
*ngIf="keyError"
|
|
||||||
[innerHTML]="licenseErrors[keyError]"
|
|
||||||
></p>
|
|
||||||
|
|
||||||
<p *ngIf="errorDetails"><strong>Details:</strong> {{ errorDetails }}</p>
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<ng-container *ngSwitchCase="'limit'">
|
|
||||||
<p class="key-error">
|
|
||||||
The registered number of users reached the limit specified for your
|
|
||||||
licence. Please contact
|
|
||||||
<contact-link classes="color-green" />
|
|
||||||
or your reseller to arrange additional licences for this product.
|
|
||||||
</p>
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<ng-container *ngSwitchCase="'update'">
|
|
||||||
<p class="key-error">
|
|
||||||
Update the license key by uploading the licence file or by pasting a
|
|
||||||
license key and activation key in the inputs below.
|
|
||||||
</p>
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<strong>SYSSITE:</strong>
|
|
||||||
<span
|
|
||||||
*ngFor="let id of syssite.value; let i = index"
|
|
||||||
[class.misskey]="missmatchedKey && missmatchedKey === id"
|
|
||||||
>
|
|
||||||
{{ id }}{{ i === syssite.value?.length! - 1 ? '' : ',' }}
|
|
||||||
</span>
|
|
||||||
|
|
||||||
<a
|
|
||||||
class="tooltip tooltip-md tooltip-top-right"
|
|
||||||
(click)="copySyssite(copyIcon, copyTooltip, syssite.value || [])"
|
|
||||||
>
|
|
||||||
<clr-icon
|
|
||||||
#copyIcon
|
|
||||||
class="cursor-pointer"
|
|
||||||
shape="copy"
|
|
||||||
size="15"
|
|
||||||
></clr-icon>
|
|
||||||
<span #copyTooltip class="tooltip-content">Copy to clipboard</span>
|
|
||||||
</a>
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p *ngIf="licenseKeyData && userCountLimitation" class="m-0">
|
<p
|
||||||
<strong>Allowed users:</strong>
|
class="key-error"
|
||||||
{{ licenseKeyData.users_allowed }}
|
*ngIf="keyError"
|
||||||
</p>
|
[innerHTML]="licenseErrors[keyError]"
|
||||||
|
></p>
|
||||||
|
|
||||||
<clr-tabs>
|
<p *ngIf="errorDetails"><strong>Details:</strong> {{ errorDetails }}</p>
|
||||||
<clr-tab>
|
</ng-container>
|
||||||
<button clrTabLink>Upload licence</button>
|
|
||||||
<clr-tab-content>
|
<ng-container *ngSwitchCase="'limit'">
|
||||||
<input
|
<p class="key-error">
|
||||||
#licenceFile
|
The registered number of users reached the limit specified for your
|
||||||
(change)="onFileCapture($event)"
|
licence. Please contact
|
||||||
type="file"
|
<contact-link classes="color-green" />
|
||||||
hidden
|
or your reseller to arrange additional licences for this product.
|
||||||
/>
|
</p>
|
||||||
<div
|
</ng-container>
|
||||||
(click)="licenceFile.click()"
|
|
||||||
appFileDrop
|
<ng-container *ngSwitchCase="'update'">
|
||||||
(fileDrop)="onFileCapture($event, true)"
|
<p class="key-error">
|
||||||
class="drop-area"
|
Update the license key by uploading the licence file or by pasting a
|
||||||
>
|
license key and activation key in the inputs below.
|
||||||
<clr-spinner
|
</p>
|
||||||
class="spinner-sm"
|
</ng-container>
|
||||||
*ngIf="licenceFileLoading"
|
|
||||||
></clr-spinner>
|
<p>
|
||||||
<ng-container *ngIf="!licenceFileLoading">
|
<strong>SYSSITE:</strong>
|
||||||
<div *ngIf="licencefile.filename === ''">
|
<span
|
||||||
Drop / Browse licence file
|
*ngFor="let id of syssite.value; let i = index"
|
||||||
</div>
|
[class.misskey]="missmatchedKey && missmatchedKey === id"
|
||||||
<div *ngIf="licencefile.filename !== ''">
|
>
|
||||||
Selected file: <strong>{{ licencefile.filename }}</strong>
|
{{ id }}{{ i === syssite.value?.length! - 1 ? '' : ',' }}
|
||||||
</div>
|
</span>
|
||||||
<div *ngIf="licenceFileError">
|
|
||||||
<strong>{{ licenceFileError }}</strong>
|
<a
|
||||||
</div>
|
class="tooltip tooltip-md tooltip-top-right"
|
||||||
</ng-container>
|
(click)="copySyssite(copyIcon, copyTooltip, syssite.value || [])"
|
||||||
|
>
|
||||||
|
<clr-icon
|
||||||
|
#copyIcon
|
||||||
|
class="cursor-pointer"
|
||||||
|
shape="copy"
|
||||||
|
size="15"
|
||||||
|
></clr-icon>
|
||||||
|
<span #copyTooltip class="tooltip-content">Copy to clipboard</span>
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p *ngIf="licenseKeyData && userCountLimitation" class="m-0">
|
||||||
|
<strong>Allowed users:</strong>
|
||||||
|
{{ licenseKeyData.users_allowed }}
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<clr-tabs>
|
||||||
|
<clr-tab>
|
||||||
|
<button clrTabLink>Upload licence</button>
|
||||||
|
<clr-tab-content>
|
||||||
|
<input
|
||||||
|
#licenceFile
|
||||||
|
(change)="onFileCapture($event)"
|
||||||
|
type="file"
|
||||||
|
hidden
|
||||||
|
/>
|
||||||
|
<div
|
||||||
|
(click)="licenceFile.click()"
|
||||||
|
appFileDrop
|
||||||
|
(fileDrop)="onFileCapture($event, true)"
|
||||||
|
class="drop-area"
|
||||||
|
>
|
||||||
|
<clr-spinner
|
||||||
|
class="spinner-sm"
|
||||||
|
*ngIf="licenceFileLoading"
|
||||||
|
></clr-spinner>
|
||||||
|
<ng-container *ngIf="!licenceFileLoading">
|
||||||
|
<div *ngIf="licencefile.filename === ''">
|
||||||
|
Drop / Browse licence file
|
||||||
|
</div>
|
||||||
|
<div *ngIf="licencefile.filename !== ''">
|
||||||
|
Selected file: <strong>{{ licencefile.filename }}</strong>
|
||||||
|
</div>
|
||||||
|
<div *ngIf="licenceFileError">
|
||||||
|
<strong>{{ licenceFileError }}</strong>
|
||||||
|
</div>
|
||||||
|
</ng-container>
|
||||||
|
</div>
|
||||||
|
</clr-tab-content>
|
||||||
|
</clr-tab>
|
||||||
|
|
||||||
|
<clr-tab>
|
||||||
|
<button clrTabLink>Paste licence</button>
|
||||||
|
<clr-tab-content>
|
||||||
|
<form class="clr-form license-key-form">
|
||||||
|
<p>Licence key:</p>
|
||||||
|
<div class="clr-control-container">
|
||||||
|
<textarea
|
||||||
|
[(ngModel)]="licenceKeyValue"
|
||||||
|
(mouseleave)="trimKeys()"
|
||||||
|
name="license-key-area"
|
||||||
|
placeholder="Paste licence key here"
|
||||||
|
class="clr-textarea"
|
||||||
|
></textarea>
|
||||||
</div>
|
</div>
|
||||||
</clr-tab-content>
|
</form>
|
||||||
</clr-tab>
|
|
||||||
|
|
||||||
<clr-tab>
|
<form class="clr-form activation-key-form">
|
||||||
<button clrTabLink>Paste licence</button>
|
<p>Activation key:</p>
|
||||||
<clr-tab-content>
|
<div class="clr-control-container">
|
||||||
<form class="clr-form license-key-form">
|
<textarea
|
||||||
<p>Licence key:</p>
|
[(ngModel)]="activationKeyValue"
|
||||||
<div class="clr-control-container">
|
(mouseleave)="trimKeys()"
|
||||||
<textarea
|
name="activation-key-area"
|
||||||
[(ngModel)]="licenceKeyValue"
|
placeholder="Paste activation key here"
|
||||||
(mouseleave)="trimKeys()"
|
class="clr-textarea"
|
||||||
name="license-key-area"
|
></textarea>
|
||||||
placeholder="Paste licence key here"
|
</div>
|
||||||
class="clr-textarea"
|
</form>
|
||||||
></textarea>
|
</clr-tab-content>
|
||||||
</div>
|
</clr-tab>
|
||||||
</form>
|
</clr-tabs>
|
||||||
|
|
||||||
<form class="clr-form activation-key-form">
|
<button
|
||||||
<p>Activation key:</p>
|
(click)="applyKeys()"
|
||||||
<div class="clr-control-container">
|
class="btn btn-primary apply-keys"
|
||||||
<textarea
|
[clrLoading]="applyingKeys"
|
||||||
[(ngModel)]="activationKeyValue"
|
[disabled]="disableApplyButton"
|
||||||
(mouseleave)="trimKeys()"
|
>
|
||||||
name="activation-key-area"
|
Apply licence keys
|
||||||
placeholder="Paste activation key here"
|
</button>
|
||||||
class="clr-textarea"
|
|
||||||
></textarea>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</clr-tab-content>
|
|
||||||
</clr-tab>
|
|
||||||
</clr-tabs>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="card-footer d-flex clr-align-items-center">
|
<button
|
||||||
<button
|
*ngIf="isAppFreeTier.value"
|
||||||
(click)="applyKeys()"
|
routerLink="/"
|
||||||
class="btn btn-primary apply-keys"
|
class="btn btn-sm btn-link"
|
||||||
[clrLoading]="applyingKeys"
|
>
|
||||||
[disabled]="disableApplyButton"
|
Continue with free tier
|
||||||
>
|
</button>
|
||||||
Apply licence keys
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<button
|
|
||||||
*ngIf="isAppFreeTier.value"
|
|
||||||
routerLink="/"
|
|
||||||
class="btn btn-sm btn-link"
|
|
||||||
>
|
|
||||||
Continue with free tier
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -33,6 +33,7 @@
|
|||||||
|
|
||||||
.apply-keys {
|
.apply-keys {
|
||||||
height: 40px;
|
height: 40px;
|
||||||
|
width: 200px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.drop-area {
|
.drop-area {
|
||||||
|
@ -2,7 +2,6 @@ import { Component, OnInit } from '@angular/core'
|
|||||||
import { ActivatedRoute, Router } from '@angular/router'
|
import { ActivatedRoute, Router } from '@angular/router'
|
||||||
import { AppService, LicenceService, SasService } from '../services'
|
import { AppService, LicenceService, SasService } from '../services'
|
||||||
import { LicenseKeyData } from '../models/LicenseKeyData'
|
import { LicenseKeyData } from '../models/LicenseKeyData'
|
||||||
import { RequestWrapperResponse } from '../models/request-wrapper/RequestWrapperResponse'
|
|
||||||
|
|
||||||
enum LicenseActions {
|
enum LicenseActions {
|
||||||
key = 'key',
|
key = 'key',
|
||||||
@ -117,12 +116,8 @@ export class LicensingComponent implements OnInit {
|
|||||||
|
|
||||||
this.sasService
|
this.sasService
|
||||||
.request('admin/registerkey', table)
|
.request('admin/registerkey', table)
|
||||||
.then((res: RequestWrapperResponse) => {
|
.then((res: any) => {
|
||||||
if (
|
if (res.return && res.return[0] && res.return[0].MSG === 'SUCCESS') {
|
||||||
res.adapterResponse.return &&
|
|
||||||
res.adapterResponse.return[0] &&
|
|
||||||
res.adapterResponse.return[0].MSG === 'SUCCESS'
|
|
||||||
) {
|
|
||||||
location.replace(location.href.split('#')[0])
|
location.replace(location.href.split('#')[0])
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
<clr-tree-node *ngIf="libraryList" class="search-node">
|
<clr-tree-node *ngIf="libraryList" class="search-node">
|
||||||
<div class="tree-search-wrapper">
|
<div class="tree-search-wrapper">
|
||||||
<input
|
<input
|
||||||
appStealFocus
|
|
||||||
clrInput
|
clrInput
|
||||||
#searchLibTreeInput
|
#searchLibTreeInput
|
||||||
placeholder="Libraries"
|
placeholder="Libraries"
|
||||||
@ -43,7 +42,6 @@
|
|||||||
<clr-tree-node *ngIf="library['tables']" class="search-node">
|
<clr-tree-node *ngIf="library['tables']" class="search-node">
|
||||||
<div class="tree-search-wrapper">
|
<div class="tree-search-wrapper">
|
||||||
<input
|
<input
|
||||||
appStealFocus
|
|
||||||
clrInput
|
clrInput
|
||||||
#searchTreeInput
|
#searchTreeInput
|
||||||
placeholder="Tables"
|
placeholder="Tables"
|
||||||
@ -87,7 +85,6 @@
|
|||||||
<clr-tree-node *ngIf="libTable['columns']" class="search-node">
|
<clr-tree-node *ngIf="libTable['columns']" class="search-node">
|
||||||
<div class="tree-search-wrapper">
|
<div class="tree-search-wrapper">
|
||||||
<input
|
<input
|
||||||
appStealFocus
|
|
||||||
clrInput
|
clrInput
|
||||||
#searchTreeInput
|
#searchTreeInput
|
||||||
placeholder="Columns"
|
placeholder="Columns"
|
||||||
@ -141,9 +138,7 @@
|
|||||||
size="60"
|
size="60"
|
||||||
class="is-info icon-dc-fill"
|
class="is-info icon-dc-fill"
|
||||||
></clr-icon>
|
></clr-icon>
|
||||||
<p class="text-center color-gray mt-10" cds-text="section">
|
<h3 class="text-center color-gray">Please select a column or table</h3>
|
||||||
Please select a column or table
|
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<ng-container *ngIf="column || table">
|
<ng-container *ngIf="column || table">
|
||||||
@ -185,13 +180,13 @@
|
|||||||
<button
|
<button
|
||||||
(click)="limitDotDepth = true"
|
(click)="limitDotDepth = true"
|
||||||
type="button"
|
type="button"
|
||||||
class="btn btn-outline mr-5"
|
class="btn btn-outline"
|
||||||
>
|
>
|
||||||
Limit depth
|
Limit depth
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<!-- <button class="btn btn-outline" (click)='showSvg()'> Open in New Tab </button> -->
|
<!-- <button class="btn btn-outline" (click)='showSvg()'> Open in New Tab </button> -->
|
||||||
<div class="btn-group direction d-block">
|
<div class="btn-group d-block">
|
||||||
<div
|
<div
|
||||||
class="radio btn"
|
class="radio btn"
|
||||||
(click)="
|
(click)="
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
@import '../../colors.scss';
|
|
||||||
|
|
||||||
.toggle-switch input[type=checkbox]:checked+label:before {
|
.toggle-switch input[type=checkbox]:checked+label:before {
|
||||||
border-color: $headerBackground;
|
border-color: #314351;
|
||||||
background-color: $headerBackground !important;
|
background-color: #314351!important;
|
||||||
transition: .15s ease-in;
|
transition: .15s ease-in;
|
||||||
transition-property: border-color,background-color;
|
transition-property: border-color,background-color;
|
||||||
}
|
}
|
||||||
@ -43,10 +41,6 @@ clr-tree-node button {
|
|||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-group.direction {
|
|
||||||
margin-left: var(--cds-global-space-6);
|
|
||||||
}
|
|
||||||
|
|
||||||
.graph-render-spinner {
|
.graph-render-spinner {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
|
@ -9,7 +9,6 @@ import { SasService } from '../services/sas.service'
|
|||||||
import * as saveSvg from 'save-svg-as-png'
|
import * as saveSvg from 'save-svg-as-png'
|
||||||
import { LoggerService } from '../services/logger.service'
|
import { LoggerService } from '../services/logger.service'
|
||||||
import { LicenceService } from '../services/licence.service'
|
import { LicenceService } from '../services/licence.service'
|
||||||
import { RequestWrapperResponse } from '../models/request-wrapper/RequestWrapperResponse'
|
|
||||||
const moment = require('moment')
|
const moment = require('moment')
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
@ -116,8 +115,8 @@ export class LineageComponent {
|
|||||||
|
|
||||||
await this.sasService
|
await this.sasService
|
||||||
.request('lineage/getmetacols', libTable)
|
.request('lineage/getmetacols', libTable)
|
||||||
.then((res: RequestWrapperResponse) => {
|
.then((res: any) => {
|
||||||
this.columnsList = res.adapterResponse.metacols
|
this.columnsList = res.metacols
|
||||||
if (this.columnsList && this.columnsList.length > 0) {
|
if (this.columnsList && this.columnsList.length > 0) {
|
||||||
// this.column = this.columnsList[0]['COLURI']
|
// this.column = this.columnsList[0]['COLURI']
|
||||||
|
|
||||||
@ -175,8 +174,8 @@ export class LineageComponent {
|
|||||||
let libTable = { SASControlTable: [{ liburi: $event }] }
|
let libTable = { SASControlTable: [{ liburi: $event }] }
|
||||||
await this.sasService
|
await this.sasService
|
||||||
.request('lineage/getmetatables', libTable)
|
.request('lineage/getmetatables', libTable)
|
||||||
.then((res: RequestWrapperResponse) => {
|
.then((res: any) => {
|
||||||
this.tablesList = res.adapterResponse.metatables
|
this.tablesList = res.metatables
|
||||||
|
|
||||||
if (this.tablesList && this.tablesList.length > 0) {
|
if (this.tablesList && this.tablesList.length > 0) {
|
||||||
library['tables'] = this.tablesList
|
library['tables'] = this.tablesList
|
||||||
@ -296,8 +295,8 @@ export class LineageComponent {
|
|||||||
} else {
|
} else {
|
||||||
await this.sasService
|
await this.sasService
|
||||||
.request('public/viewlibs', null)
|
.request('public/viewlibs', null)
|
||||||
.then((res: RequestWrapperResponse) => {
|
.then((res: any) => {
|
||||||
this.libraryList = res.adapterResponse.saslibs
|
this.libraryList = res.saslibs
|
||||||
this.helperService.displayLibraries(this.libraryList)
|
this.helperService.displayLibraries(this.libraryList)
|
||||||
|
|
||||||
if (this.libraryList) {
|
if (this.libraryList) {
|
||||||
@ -403,8 +402,8 @@ export class LineageComponent {
|
|||||||
return new Promise<void>((resolve, reject) => {
|
return new Promise<void>((resolve, reject) => {
|
||||||
this.sasService
|
this.sasService
|
||||||
.request('lineage/fetchtablelineage', libTable)
|
.request('lineage/fetchtablelineage', libTable)
|
||||||
.then(async (res: RequestWrapperResponse) => {
|
.then(async (res: any) => {
|
||||||
if (res.adapterResponse.flatdata.length > 0) {
|
if (res.flatdata.length > 0) {
|
||||||
if (this.licenceService.checkLineageLimit()) {
|
if (this.licenceService.checkLineageLimit()) {
|
||||||
this.eventService.showInfoModal(
|
this.eventService.showInfoModal(
|
||||||
'Notice',
|
'Notice',
|
||||||
@ -422,22 +421,20 @@ export class LineageComponent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.lineageTableName =
|
this.lineageTableName =
|
||||||
res.adapterResponse.info[0].LIBREF +
|
res.info[0].LIBREF + '.' + res.info[0].TABLENAME
|
||||||
'.' +
|
|
||||||
res.adapterResponse.info[0].TABLENAME
|
|
||||||
|
|
||||||
let dotArray = res.adapterResponse.finalfinal
|
let dotArray = res.finalfinal
|
||||||
let vizTmp: string = ''
|
let vizTmp: string = ''
|
||||||
|
|
||||||
for (let i = 0; i < dotArray.length; i++) {
|
for (let i = 0; i < dotArray.length; i++) {
|
||||||
vizTmp += unescape(dotArray[i].LINE) + '\n'
|
vizTmp += unescape(dotArray[i].LINE) + '\n'
|
||||||
}
|
}
|
||||||
|
|
||||||
this.flatdata = res.adapterResponse.flatdata
|
this.flatdata = res.flatdata
|
||||||
|
|
||||||
if (this.libraryList) {
|
if (this.libraryList) {
|
||||||
let libraryToSelect = this.libraryList.find((library: any) =>
|
let libraryToSelect = this.libraryList.find((library: any) =>
|
||||||
res.adapterResponse.info[0].LIBURI.toUpperCase().includes(
|
res.info[0].LIBURI.toUpperCase().includes(
|
||||||
library.LIBRARYID.toUpperCase()
|
library.LIBRARYID.toUpperCase()
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
@ -453,7 +450,7 @@ export class LineageComponent {
|
|||||||
if (libraryToSelect['tables']) {
|
if (libraryToSelect['tables']) {
|
||||||
tableToSelect = libraryToSelect['tables'].find((table: any) =>
|
tableToSelect = libraryToSelect['tables'].find((table: any) =>
|
||||||
table.TABLEURI.toUpperCase().includes(
|
table.TABLEURI.toUpperCase().includes(
|
||||||
res.adapterResponse.info[0].TABLEID.toUpperCase()
|
res.info[0].TABLEID.toUpperCase()
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -498,10 +495,10 @@ export class LineageComponent {
|
|||||||
.replace(/\sds:/g, '\nds:')
|
.replace(/\sds:/g, '\nds:')
|
||||||
.replace(/\s\n/g, '\n')
|
.replace(/\s\n/g, '\n')
|
||||||
|
|
||||||
this.idlookup = res.adapterResponse.idlookup
|
this.idlookup = res.idlookup
|
||||||
|
|
||||||
if (res.adapterResponse.finalfinal.length > this.largeDotFileLimit) {
|
if (res.finalfinal.length > this.largeDotFileLimit) {
|
||||||
this.largeDotFileLines = res.adapterResponse.finalfinal.length
|
this.largeDotFileLines = res.finalfinal.length
|
||||||
} else {
|
} else {
|
||||||
this.buildGraph()
|
this.buildGraph()
|
||||||
}
|
}
|
||||||
@ -622,8 +619,8 @@ export class LineageComponent {
|
|||||||
return new Promise<void>((resolve, reject) => {
|
return new Promise<void>((resolve, reject) => {
|
||||||
this.sasService
|
this.sasService
|
||||||
.request('lineage/fetchcollineage', libTable)
|
.request('lineage/fetchcollineage', libTable)
|
||||||
.then(async (res: RequestWrapperResponse) => {
|
.then(async (res: any) => {
|
||||||
if (res.adapterResponse.flatdata.length > 0) {
|
if (res.flatdata.length > 0) {
|
||||||
if (this.licenceService.checkLineageLimit()) {
|
if (this.licenceService.checkLineageLimit()) {
|
||||||
this.eventService.showInfoModal(
|
this.eventService.showInfoModal(
|
||||||
'Notice',
|
'Notice',
|
||||||
@ -634,21 +631,18 @@ export class LineageComponent {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (typeof res.adapterResponse === 'string') {
|
if (typeof res === 'string') {
|
||||||
this.vizInput = 'digraph G {SAS Error}'
|
this.vizInput = 'digraph G {SAS Error}'
|
||||||
this.buildGraph()
|
this.buildGraph()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
this.lineageTableName =
|
this.lineageTableName = res.info[0].LIBREF + '.' + res.info[0].TABNAME
|
||||||
res.adapterResponse.info[0].LIBREF +
|
this.lineageColumnName = res.info[0].COLNAME
|
||||||
'.' +
|
|
||||||
res.adapterResponse.info[0].TABNAME
|
|
||||||
this.lineageColumnName = res.adapterResponse.info[0].COLNAME
|
|
||||||
|
|
||||||
this.idlookup = res.adapterResponse.idlookup
|
this.idlookup = res.idlookup
|
||||||
|
|
||||||
let dotArray = res.adapterResponse.fromsas
|
let dotArray = res.fromsas
|
||||||
let vizTmp: string = ''
|
let vizTmp: string = ''
|
||||||
for (let i = 0; i < dotArray.length; i++) {
|
for (let i = 0; i < dotArray.length; i++) {
|
||||||
vizTmp += unescape(dotArray[i].STRING) + '\n'
|
vizTmp += unescape(dotArray[i].STRING) + '\n'
|
||||||
@ -659,13 +653,14 @@ export class LineageComponent {
|
|||||||
.replace(/\sds:/g, '\nds:')
|
.replace(/\sds:/g, '\nds:')
|
||||||
.replace(/\s\n/g, '\n')
|
.replace(/\s\n/g, '\n')
|
||||||
|
|
||||||
this.flatdata = res.adapterResponse.flatdata
|
this.flatdata = res.flatdata
|
||||||
|
|
||||||
if (this.libraryList) {
|
if (this.libraryList) {
|
||||||
let libraryToSelect = this.libraryList.find((library: any) =>
|
let libraryToSelect = this.libraryList.find(
|
||||||
res.adapterResponse.info[0]?.LIBURI?.toUpperCase()?.includes(
|
(library: any) =>
|
||||||
library?.LIBRARYID?.toUpperCase()
|
res.info[0]?.LIBURI?.toUpperCase()?.includes(
|
||||||
)
|
library?.LIBRARYID?.toUpperCase()
|
||||||
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
let tableToSelect: any
|
let tableToSelect: any
|
||||||
@ -678,8 +673,7 @@ export class LineageComponent {
|
|||||||
|
|
||||||
if (libraryToSelect['tables']) {
|
if (libraryToSelect['tables']) {
|
||||||
tableToSelect = libraryToSelect['tables'].find(
|
tableToSelect = libraryToSelect['tables'].find(
|
||||||
(table: any) =>
|
(table: any) => table.TABLEURI === res.info[0].TABURI
|
||||||
table.TABLEURI === res.adapterResponse.info[0].TABURI
|
|
||||||
)
|
)
|
||||||
|
|
||||||
if (tableToSelect) {
|
if (tableToSelect) {
|
||||||
@ -721,8 +715,8 @@ export class LineageComponent {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (res.adapterResponse.fromsas.length > this.largeDotFileLimit) {
|
if (res.fromsas.length > this.largeDotFileLimit) {
|
||||||
this.largeDotFileLines = res.adapterResponse.fromsas.length
|
this.largeDotFileLines = res.fromsas.length
|
||||||
} else {
|
} else {
|
||||||
this.buildGraph()
|
this.buildGraph()
|
||||||
}
|
}
|
||||||
|
@ -22,7 +22,6 @@
|
|||||||
<clr-tree-node *ngIf="metaDataList" class="search-node">
|
<clr-tree-node *ngIf="metaDataList" class="search-node">
|
||||||
<div class="tree-search-wrapper">
|
<div class="tree-search-wrapper">
|
||||||
<input
|
<input
|
||||||
appStealFocus
|
|
||||||
clrInput
|
clrInput
|
||||||
#searchLibTreeInput
|
#searchLibTreeInput
|
||||||
placeholder="search SAS Types"
|
placeholder="search SAS Types"
|
||||||
@ -73,9 +72,7 @@
|
|||||||
size="60"
|
size="60"
|
||||||
class="is-info icon-dc-fill"
|
class="is-info icon-dc-fill"
|
||||||
></clr-icon>
|
></clr-icon>
|
||||||
<p class="text-center color-gray mt-10" cds-text="section">
|
<h3 class="text-center color-gray">Please select a type</h3>
|
||||||
Please select a type
|
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="loadingSpinner" *ngIf="loading">
|
<div class="loadingSpinner" *ngIf="loading">
|
||||||
@ -126,18 +123,12 @@
|
|||||||
[class.object-header]="!entry.count"
|
[class.object-header]="!entry.count"
|
||||||
class="full-width"
|
class="full-width"
|
||||||
>
|
>
|
||||||
<div>
|
<clr-icon
|
||||||
<clr-icon
|
*ngIf="!entry.count"
|
||||||
*ngIf="!entry.count"
|
shape="rack-server"
|
||||||
shape="rack-server"
|
></clr-icon>
|
||||||
></clr-icon>
|
<clr-icon *ngIf="entry.count" shape="block"></clr-icon>
|
||||||
<clr-icon
|
{{ entry.display }}
|
||||||
*ngIf="entry.count"
|
|
||||||
shape="block"
|
|
||||||
></clr-icon>
|
|
||||||
{{ entry.display }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<p class="float-right object-uri" *ngIf="!entry.count">
|
<p class="float-right object-uri" *ngIf="!entry.count">
|
||||||
{{ entry.URI }}
|
{{ entry.URI }}
|
||||||
</p>
|
</p>
|
||||||
@ -172,15 +163,9 @@
|
|||||||
[clrExpandable]="true"
|
[clrExpandable]="true"
|
||||||
>
|
>
|
||||||
<div [class.object-header]="!entry.count" class="full-width">
|
<div [class.object-header]="!entry.count" class="full-width">
|
||||||
<div>
|
<clr-icon *ngIf="!entry.count" shape="rack-server"></clr-icon>
|
||||||
<clr-icon
|
<clr-icon *ngIf="entry.count" shape="block"></clr-icon>
|
||||||
*ngIf="!entry.count"
|
{{ entry.display }}
|
||||||
shape="rack-server"
|
|
||||||
></clr-icon>
|
|
||||||
<clr-icon *ngIf="entry.count" shape="block"></clr-icon>
|
|
||||||
{{ entry.display }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<p class="float-right object-uri" *ngIf="!entry.count">
|
<p class="float-right object-uri" *ngIf="!entry.count">
|
||||||
{{ entry.URI }}
|
{{ entry.URI }}
|
||||||
</p>
|
</p>
|
||||||
|
@ -1,27 +1,14 @@
|
|||||||
::ng-deep body[cds-theme="dark"] {
|
|
||||||
.object-header:hover {
|
|
||||||
background-color: #405560;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
::ng-deep body[cds-theme="light"] {
|
|
||||||
.objects-col {
|
|
||||||
background: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.object-header:hover {
|
|
||||||
background-color: #d8e3e9;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.objects-col{
|
.objects-col{
|
||||||
height: 75vh;
|
height: 75vh;
|
||||||
overflow: scroll;
|
overflow: scroll;
|
||||||
border: 1px solid #cccccc;
|
border: 1px solid #cccccc;
|
||||||
|
background: white;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cols-head {
|
.cols-head {
|
||||||
|
background: #fafafa;
|
||||||
border: 1px solid #cccccc;
|
border: 1px solid #cccccc;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -53,13 +40,11 @@
|
|||||||
margin-top: 5px;
|
margin-top: 5px;
|
||||||
}
|
}
|
||||||
.object-header{
|
.object-header{
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: space-between;
|
|
||||||
padding-left: 3px;
|
padding-left: 3px;
|
||||||
padding-right: 3px;
|
padding-right: 3px;
|
||||||
}
|
}
|
||||||
.object-header:hover{
|
.object-header:hover{
|
||||||
|
background-color: #d8e3e9;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
}
|
}
|
||||||
.datagrid-host{
|
.datagrid-host{
|
||||||
|
@ -9,7 +9,6 @@ import { SasService } from '../services/sas.service'
|
|||||||
import { globals } from '../_globals'
|
import { globals } from '../_globals'
|
||||||
|
|
||||||
import { Injectable } from '@angular/core'
|
import { Injectable } from '@angular/core'
|
||||||
import { RequestWrapperResponse } from '../models/request-wrapper/RequestWrapperResponse'
|
|
||||||
|
|
||||||
interface MetaData {
|
interface MetaData {
|
||||||
NAME: any
|
NAME: any
|
||||||
@ -110,52 +109,44 @@ export class MetadataComponent implements OnInit {
|
|||||||
this.metatypesLoading = false
|
this.metatypesLoading = false
|
||||||
this.metaDataSearch = globals.metadata.metaDataSearch
|
this.metaDataSearch = globals.metadata.metaDataSearch
|
||||||
} else {
|
} else {
|
||||||
this.sasService
|
this.sasService.request('metanav/metatypes', null).then((res: any) => {
|
||||||
.request('metanav/metatypes', null)
|
this.metaDataList = res.types
|
||||||
.then((res: RequestWrapperResponse) => {
|
globals.metadata.metaDataList = this.metaDataList
|
||||||
this.metaDataList = res.adapterResponse.types
|
this.loading = false
|
||||||
globals.metadata.metaDataList = this.metaDataList
|
this.metatypesLoading = false
|
||||||
this.loading = false
|
})
|
||||||
this.metatypesLoading = false
|
|
||||||
})
|
|
||||||
|
|
||||||
this.sasService
|
this.sasService.request('metanav/metarepos', null).then((res: any) => {
|
||||||
.request('metanav/metarepos', null)
|
let foundation = false
|
||||||
.then((res: RequestWrapperResponse) => {
|
this.repositories = []
|
||||||
let foundation = false
|
for (let index = 0; index < res.outrepos.length; index++) {
|
||||||
this.repositories = []
|
this.repositories.push(res.outrepos[index].NAME)
|
||||||
for (
|
if (res.outrepos[index].NAME === 'Foundation') {
|
||||||
let index = 0;
|
foundation = true
|
||||||
index < res.adapterResponse.outrepos.length;
|
|
||||||
index++
|
|
||||||
) {
|
|
||||||
this.repositories.push(res.adapterResponse.outrepos[index].NAME)
|
|
||||||
if (res.adapterResponse.outrepos[index].NAME === 'Foundation') {
|
|
||||||
foundation = true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if (foundation) {
|
}
|
||||||
this.repository = 'Foundation'
|
if (foundation) {
|
||||||
} else {
|
this.repository = 'Foundation'
|
||||||
this.repository = res.adapterResponse.outrepos[0].NAME
|
} else {
|
||||||
}
|
this.repository = res.outrepos[0].NAME
|
||||||
globals.metadata.metaRepositories = this.repositories
|
}
|
||||||
globals.metadata.selectedRepository = this.repository
|
globals.metadata.metaRepositories = this.repositories
|
||||||
if (this.objectRoute) {
|
globals.metadata.selectedRepository = this.repository
|
||||||
this.eventService.closeSidebar()
|
if (this.objectRoute) {
|
||||||
this.showData = true
|
this.eventService.closeSidebar()
|
||||||
let name = ''
|
this.showData = true
|
||||||
let id = this.route.snapshot.params['objectID']
|
let name = ''
|
||||||
// let temp = this.router.url.split("%20").join(" ").split("/").reverse();
|
let id = this.route.snapshot.params['objectID']
|
||||||
this.metaObjectList = []
|
// let temp = this.router.url.split("%20").join(" ").split("/").reverse();
|
||||||
this.metaObjectList.push({ ID: id, NAME: name })
|
this.metaObjectList = []
|
||||||
this.metaObjectShowList = this.metaObjectList
|
this.metaObjectList.push({ ID: id, NAME: name })
|
||||||
this.metaObjectOnClick(
|
this.metaObjectShowList = this.metaObjectList
|
||||||
this.metaObjectShowList[0].ID,
|
this.metaObjectOnClick(
|
||||||
this.metaObjectShowList[0]
|
this.metaObjectShowList[0].ID,
|
||||||
)
|
this.metaObjectShowList[0]
|
||||||
}
|
)
|
||||||
})
|
}
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -192,64 +183,56 @@ export class MetadataComponent implements OnInit {
|
|||||||
const data: any = {
|
const data: any = {
|
||||||
SASControlTable: [{ metatype: $event, repo: this.repository }]
|
SASControlTable: [{ metatype: $event, repo: this.repository }]
|
||||||
}
|
}
|
||||||
this.sasService
|
this.sasService.request('metanav/metaobjects', data).then((res: any) => {
|
||||||
.request('metanav/metaobjects', data)
|
this.metaObjectList = res.objects
|
||||||
.then((res: RequestWrapperResponse) => {
|
this.getMetaObjectAttributes(this.metaObjectSize)
|
||||||
this.metaObjectList = res.adapterResponse.objects
|
this.loading = false
|
||||||
this.getMetaObjectAttributes(this.metaObjectSize)
|
this.assoTypeSelected = $event
|
||||||
this.loading = false
|
this.eventService.closeSidebar()
|
||||||
this.assoTypeSelected = $event
|
this.showData = true
|
||||||
this.eventService.closeSidebar()
|
})
|
||||||
this.showData = true
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public async selectmetaObject($event: any, metaData?: any) {
|
public async selectmetaObject($event: any, metaData?: any) {
|
||||||
let data: any = {
|
let data: any = {
|
||||||
SASControlTable: [{ objecturi: $event }]
|
SASControlTable: [{ objecturi: $event }]
|
||||||
}
|
}
|
||||||
this.sasService
|
this.sasService.request('metanav/metadetails', data).then((res: any) => {
|
||||||
.request('metanav/metadetails', data)
|
this.metaObjectAssociations = res.associations
|
||||||
.then((res: RequestWrapperResponse) => {
|
this.root$ = of(this.getAssosiationsCount(res.associations))
|
||||||
this.metaObjectAssociations = res.adapterResponse.associations
|
this.showAcc = true
|
||||||
this.root$ = of(
|
this.showTable = true
|
||||||
this.getAssosiationsCount(res.adapterResponse.associations)
|
let metaObjectName = res.attributes.find(
|
||||||
|
(x: any) => x.NAME === 'Name'
|
||||||
|
).VALUE
|
||||||
|
this.assoObjectSelected = metaObjectName
|
||||||
|
metaData.NAME = metaObjectName
|
||||||
|
let url = this.router.url
|
||||||
|
if (this.objectRoute) {
|
||||||
|
// this.location.replaceState(url.slice(0, url.lastIndexOf("object")) + "object/" + $event.slice(1 + $event.indexOf("\\")) + "/" + escape(metaData.NAME));
|
||||||
|
this.location.replaceState(
|
||||||
|
url.slice(0, url.lastIndexOf('object')) +
|
||||||
|
'object/' +
|
||||||
|
$event.slice(1 + $event.indexOf('\\'))
|
||||||
)
|
)
|
||||||
this.showAcc = true
|
} else {
|
||||||
this.showTable = true
|
// this.location.replaceState(url + "/object/" + $event.slice(1 + $event.indexOf("\\")) + "/" + escape(metaData.NAME));
|
||||||
let metaObjectName = res.adapterResponse.attributes.find(
|
this.location.replaceState(
|
||||||
(x: any) => x.NAME === 'Name'
|
url + '/object/' + $event.slice(1 + $event.indexOf('\\'))
|
||||||
).VALUE
|
)
|
||||||
this.assoObjectSelected = metaObjectName
|
}
|
||||||
metaData.NAME = metaObjectName
|
this.metaObjectAttributes = res.attributes
|
||||||
let url = this.router.url
|
})
|
||||||
if (this.objectRoute) {
|
|
||||||
// this.location.replaceState(url.slice(0, url.lastIndexOf("object")) + "object/" + $event.slice(1 + $event.indexOf("\\")) + "/" + escape(metaData.NAME));
|
|
||||||
this.location.replaceState(
|
|
||||||
url.slice(0, url.lastIndexOf('object')) +
|
|
||||||
'object/' +
|
|
||||||
$event.slice(1 + $event.indexOf('\\'))
|
|
||||||
)
|
|
||||||
} else {
|
|
||||||
// this.location.replaceState(url + "/object/" + $event.slice(1 + $event.indexOf("\\")) + "/" + escape(metaData.NAME));
|
|
||||||
this.location.replaceState(
|
|
||||||
url + '/object/' + $event.slice(1 + $event.indexOf('\\'))
|
|
||||||
)
|
|
||||||
}
|
|
||||||
this.metaObjectAttributes = res.adapterResponse.attributes
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public async selectAssosiationsDetails($event: any, metaData?: any) {
|
public async selectAssosiationsDetails($event: any, metaData?: any) {
|
||||||
let data: any = {
|
let data: any = {
|
||||||
SASControlTable: [{ objecturi: $event }]
|
SASControlTable: [{ objecturi: $event }]
|
||||||
}
|
}
|
||||||
this.sasService
|
this.sasService.request('metanav/metadetails', data).then((res: any) => {
|
||||||
.request('metanav/metadetails', data)
|
this.metaObjectAttributes = res.attributes
|
||||||
.then((res: RequestWrapperResponse) => {
|
this.showTable = true
|
||||||
this.metaObjectAttributes = res.adapterResponse.attributes
|
})
|
||||||
this.showTable = true
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public getAssosiationsCount(assosiationList: Array<any>) {
|
public getAssosiationsCount(assosiationList: Array<any>) {
|
||||||
@ -261,7 +244,7 @@ export class MetadataComponent implements OnInit {
|
|||||||
details: []
|
details: []
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
let assocObj: any = assosiationsHash.get(assosiation.ASSOC)
|
let assocObj = assosiationsHash.get(assosiation.ASSOC)
|
||||||
assocObj.count++
|
assocObj.count++
|
||||||
assocObj.details.push({
|
assocObj.details.push({
|
||||||
ASSOCURI: assosiation.ASSOCURI,
|
ASSOCURI: assosiation.ASSOCURI,
|
||||||
@ -271,7 +254,7 @@ export class MetadataComponent implements OnInit {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
let assocGrouped: Array<any> = []
|
let assocGrouped: Array<any> = []
|
||||||
assosiationsHash.forEach(function (val: any, key) {
|
assosiationsHash.forEach(function (val, key) {
|
||||||
assocGrouped.push({
|
assocGrouped.push({
|
||||||
ASSOC: key,
|
ASSOC: key,
|
||||||
count: val.count,
|
count: val.count,
|
||||||
@ -311,9 +294,9 @@ export class MetadataComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
return this.sasService
|
return this.sasService
|
||||||
.request('metanav/metadetails', data)
|
.request('metanav/metadetails', data)
|
||||||
.then((res: RequestWrapperResponse) => {
|
.then((res: any) => {
|
||||||
this.showTable = true
|
this.showTable = true
|
||||||
this.metaObjectAttributes = res.adapterResponse.attributes
|
this.metaObjectAttributes = res.attributes
|
||||||
this.assoObjectSelected = asso.NAME
|
this.assoObjectSelected = asso.NAME
|
||||||
let url = this.router.url
|
let url = this.router.url
|
||||||
if (this.objectRoute) {
|
if (this.objectRoute) {
|
||||||
@ -331,7 +314,7 @@ export class MetadataComponent implements OnInit {
|
|||||||
asso.ASSOCURI.slice(1 + asso.ASSOCURI.indexOf('\\'))
|
asso.ASSOCURI.slice(1 + asso.ASSOCURI.indexOf('\\'))
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
return this.getAssosiationsCount(res.adapterResponse.associations)
|
return this.getAssosiationsCount(res.associations)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,9 +0,0 @@
|
|||||||
export interface AppSettings {
|
|
||||||
persistSelectedTheme: boolean
|
|
||||||
selectedTheme: AppThemes
|
|
||||||
}
|
|
||||||
|
|
||||||
export enum AppThemes {
|
|
||||||
light = 'light',
|
|
||||||
dark = 'dark'
|
|
||||||
}
|
|
@ -1 +0,0 @@
|
|||||||
export type FileUploadEncoding = 'UTF-8' | 'WLATIN1'
|
|
@ -6,7 +6,6 @@ export interface FilterClause {
|
|||||||
operators: string[]
|
operators: string[]
|
||||||
type: string
|
type: string
|
||||||
value: any
|
value: any
|
||||||
valueVariable: boolean
|
|
||||||
values: { formatted: string; unformatted: any }[]
|
values: { formatted: string; unformatted: any }[]
|
||||||
variable: string
|
variable: string
|
||||||
}
|
}
|
||||||
|
@ -1,29 +0,0 @@
|
|||||||
import { DcValidator } from '../shared/dc-validator/dc-validator'
|
|
||||||
import { FileUploadEncoding } from './FileUploadEncoding'
|
|
||||||
import { FileUploader } from './FileUploader.class'
|
|
||||||
import { ExcelRule } from './TableData'
|
|
||||||
import XLSX from 'xlsx'
|
|
||||||
|
|
||||||
export interface ParseParams {
|
|
||||||
file: File
|
|
||||||
password?: string
|
|
||||||
dcValidator: DcValidator
|
|
||||||
/**
|
|
||||||
* If workbook is provided, parse function will not run a XLSX.read()
|
|
||||||
* it will use this property instead. So the client must do a file read beforehand
|
|
||||||
*/
|
|
||||||
workbook?: XLSX.WorkBook
|
|
||||||
/**
|
|
||||||
* Parse function will manipulate and return the uploader array which can be provided with files already in the queue
|
|
||||||
* Otherwise new empty instance will be created.
|
|
||||||
*/
|
|
||||||
uploader?: FileUploader
|
|
||||||
headerPks: string[]
|
|
||||||
headerArray: string[]
|
|
||||||
headerShow: string[]
|
|
||||||
timeHeaders: string[]
|
|
||||||
dateHeaders: string[]
|
|
||||||
dateTimeHeaders: string[]
|
|
||||||
xlRules: ExcelRule[]
|
|
||||||
encoding?: FileUploadEncoding
|
|
||||||
}
|
|
@ -1,15 +0,0 @@
|
|||||||
import { FileUploader } from './FileUploader.class'
|
|
||||||
import FoundRangeInfo from './RangeInfo'
|
|
||||||
|
|
||||||
export interface ParseResult {
|
|
||||||
/**
|
|
||||||
* In case of CSV file, won't be returned
|
|
||||||
*/
|
|
||||||
data?: any[]
|
|
||||||
/**
|
|
||||||
* In case of CSV file, won't be returned
|
|
||||||
*/
|
|
||||||
headerShow?: string[]
|
|
||||||
rangeSheetRes?: FoundRangeInfo
|
|
||||||
uploader: FileUploader
|
|
||||||
}
|
|
@ -1,13 +0,0 @@
|
|||||||
export default interface FoundRangeInfo {
|
|
||||||
found: boolean
|
|
||||||
sheetName: string
|
|
||||||
rangeStartAddress: string
|
|
||||||
rangeEndAddress: string
|
|
||||||
rangeAddress: string
|
|
||||||
missingHeaders: MissingHeaders[]
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface MissingHeaders {
|
|
||||||
sheetName: string
|
|
||||||
missingHeaders: string[]
|
|
||||||
}
|
|
@ -1,13 +0,0 @@
|
|||||||
import { MissingHeaders } from './RangeInfo'
|
|
||||||
|
|
||||||
export interface SearchDataExcelResult {
|
|
||||||
missing?: MissingHeaders[]
|
|
||||||
found?: {
|
|
||||||
data: any
|
|
||||||
arrayData: any[]
|
|
||||||
sheetName: string
|
|
||||||
headers: string[]
|
|
||||||
startAddress?: string
|
|
||||||
endAddress?: string
|
|
||||||
}
|
|
||||||
}
|
|
@ -7,5 +7,4 @@ export default interface SheetInfo {
|
|||||||
missingHeaders: string[]
|
missingHeaders: string[]
|
||||||
rangeStartRow: number
|
rangeStartRow: number
|
||||||
rangeStartCol: number
|
rangeStartCol: number
|
||||||
rangeAddress?: string
|
|
||||||
}
|
}
|
||||||
|
@ -1,4 +0,0 @@
|
|||||||
export interface UploadFileResponse {
|
|
||||||
adapterResponse: any
|
|
||||||
log?: string
|
|
||||||
}
|
|
@ -1,4 +0,0 @@
|
|||||||
export interface RequestWrapperResponse<responseType = any> {
|
|
||||||
adapterResponse: responseType
|
|
||||||
log?: string
|
|
||||||
}
|
|
@ -4,12 +4,12 @@ import { DQData, SASParam } from '../TableData'
|
|||||||
import { BaseSASResponse } from './common/BaseSASResponse'
|
import { BaseSASResponse } from './common/BaseSASResponse'
|
||||||
import { DataFormat } from './common/DateFormat'
|
import { DataFormat } from './common/DateFormat'
|
||||||
|
|
||||||
export interface EditorsGetDataServiceResponse {
|
export interface EditorsGetdataServiceResponse {
|
||||||
data: EditorsGetDataSASResponse
|
data: EditorsGetdataSASResponse
|
||||||
libds: string
|
libds: string
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface EditorsGetDataSASResponse extends BaseSASResponse {
|
export interface EditorsGetdataSASResponse extends BaseSASResponse {
|
||||||
$sasdata: $DataFormats
|
$sasdata: $DataFormats
|
||||||
sasdata: Sasdata[]
|
sasdata: Sasdata[]
|
||||||
sasparams: SASParam[]
|
sasparams: SASParam[]
|
||||||
@ -17,7 +17,6 @@ export interface EditorsGetDataSASResponse extends BaseSASResponse {
|
|||||||
dqrules: DQRule[]
|
dqrules: DQRule[]
|
||||||
dsmeta: DSMeta[]
|
dsmeta: DSMeta[]
|
||||||
dqdata: DQData[]
|
dqdata: DQData[]
|
||||||
versions: Version[]
|
|
||||||
cols: Col[]
|
cols: Col[]
|
||||||
maxvarlengths: Maxvarlength[]
|
maxvarlengths: Maxvarlength[]
|
||||||
xl_rules: any[]
|
xl_rules: any[]
|
||||||
@ -28,18 +27,6 @@ export interface DSMeta {
|
|||||||
ODS_TABLE: string
|
ODS_TABLE: string
|
||||||
NAME: string
|
NAME: string
|
||||||
VALUE: string
|
VALUE: string
|
||||||
[key: string]: string
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface Version {
|
|
||||||
LOAD_REF: string
|
|
||||||
USER_NM: string
|
|
||||||
VERSION_DTTM: string
|
|
||||||
VERSION_DESC: string
|
|
||||||
CHANGED_RECORDS: number
|
|
||||||
NEW_RECORDS: number
|
|
||||||
DELETED_RECORDS: number
|
|
||||||
[key: string]: string | number
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface Sasdata {
|
export interface Sasdata {
|
||||||
|
@ -1,9 +0,0 @@
|
|||||||
import { BaseSASResponse } from './common/BaseSASResponse'
|
|
||||||
|
|
||||||
export interface EditorsRestoreServiceResponse extends BaseSASResponse {
|
|
||||||
restore_out: RestoreOut[]
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface RestoreOut {
|
|
||||||
LOADREF: string
|
|
||||||
}
|
|
@ -1,34 +0,0 @@
|
|||||||
import { BaseSASResponse } from './common/BaseSASResponse'
|
|
||||||
|
|
||||||
export interface EditorsStageDataSASResponse extends BaseSASResponse {
|
|
||||||
SYSDATE: string
|
|
||||||
SYSTIME: string
|
|
||||||
sasparams: Sasparam[]
|
|
||||||
_DEBUG: string
|
|
||||||
_PROGRAM: string
|
|
||||||
AUTOEXEC: string
|
|
||||||
MF_GETUSER: string
|
|
||||||
SYSCC: string
|
|
||||||
SYSENCODING: string
|
|
||||||
SYSERRORTEXT: string
|
|
||||||
SYSHOSTINFOLONG: string
|
|
||||||
SYSHOSTNAME: string
|
|
||||||
SYSPROCESSID: string
|
|
||||||
SYSPROCESSMODE: string
|
|
||||||
SYSPROCESSNAME: string
|
|
||||||
SYSJOBID: string
|
|
||||||
SYSSCPL: string
|
|
||||||
SYSSITE: string
|
|
||||||
SYSTCPIPHOSTNAME: string
|
|
||||||
SYSUSERID: string
|
|
||||||
SYSVLONG: string
|
|
||||||
SYSWARNINGTEXT: string
|
|
||||||
END_DTTM: string
|
|
||||||
MEMSIZE: string
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface Sasparam {
|
|
||||||
STATUS: string | 'SUCCESS'
|
|
||||||
DSID: string
|
|
||||||
URL: string
|
|
||||||
}
|
|
@ -1,19 +0,0 @@
|
|||||||
import { NgModule } from '@angular/core'
|
|
||||||
import { RouterModule, Routes } from '@angular/router'
|
|
||||||
|
|
||||||
import { MultiDatasetRouteComponent } from '../routes/multi-dataset-route/multi-dataset-route.component'
|
|
||||||
import { MultiDatasetComponent } from './multi-dataset.component'
|
|
||||||
|
|
||||||
const routes: Routes = [
|
|
||||||
{
|
|
||||||
path: '',
|
|
||||||
component: MultiDatasetRouteComponent,
|
|
||||||
children: [{ path: '', component: MultiDatasetComponent }]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
|
|
||||||
@NgModule({
|
|
||||||
imports: [RouterModule.forChild(routes)],
|
|
||||||
exports: [RouterModule]
|
|
||||||
})
|
|
||||||
export class MultiDatasetRoutingModule {}
|
|
@ -1,543 +0,0 @@
|
|||||||
<app-sidebar>
|
|
||||||
<div *ngIf="datasetsLoading" class="my-10-mx-auto text-center">
|
|
||||||
<clr-spinner clrMedium></clr-spinner>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div *ngIf="!parsedDatasets.length" class="text-center mb-10">
|
|
||||||
<button
|
|
||||||
(click)="fileUploadInput.click()"
|
|
||||||
id="browse-file"
|
|
||||||
class="btn btn-primary btn-sm"
|
|
||||||
[disabled]="selectedFile !== null || submittingCsv"
|
|
||||||
>
|
|
||||||
Browse file
|
|
||||||
</button>
|
|
||||||
<input
|
|
||||||
hidden
|
|
||||||
#fileUploadInput
|
|
||||||
id="file-upload"
|
|
||||||
type="file"
|
|
||||||
(change)="onFileChange($event)"
|
|
||||||
multiple
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<ng-container *ngIf="parsedDatasets.length && !submittedCsvDatasets.length">
|
|
||||||
<div *ngIf="!excelsSubmitted" class="text-center mb-10">
|
|
||||||
<button (click)="onDiscard()" class="btn btn-danger btn-sm mr-10">
|
|
||||||
Discard
|
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
(click)="onSubmitAll()"
|
|
||||||
id="submit-all"
|
|
||||||
class="btn btn-primary btn-sm"
|
|
||||||
>
|
|
||||||
Submit All
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<p cds-text="caption" class="ml-10 mb-10">Found tables:</p>
|
|
||||||
<clr-tree>
|
|
||||||
<clr-tree-node *ngFor="let dataset of parsedDatasets">
|
|
||||||
<button
|
|
||||||
(click)="onParsedDatasetClick(dataset)"
|
|
||||||
class="clr-treenode-link whitespace-nowrap d-flex clr-align-items-center"
|
|
||||||
[class.active]="dataset.active"
|
|
||||||
>
|
|
||||||
<ng-container *ngIf="dataset.submitResult">
|
|
||||||
<cds-icon
|
|
||||||
*ngIf="dataset.submitResult.error"
|
|
||||||
status="danger"
|
|
||||||
shape="exclamation-circle"
|
|
||||||
></cds-icon>
|
|
||||||
<cds-icon
|
|
||||||
*ngIf="dataset.submitResult.success"
|
|
||||||
status="success"
|
|
||||||
shape="check-circle"
|
|
||||||
></cds-icon>
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<ng-container *ngIf="!dataset.submitResult">
|
|
||||||
<ng-container *ngIf="dataset.datasource">
|
|
||||||
<cds-icon
|
|
||||||
*ngIf="!(dataset.datasource.length && dataset.parseResult)"
|
|
||||||
status="danger"
|
|
||||||
shape="exclamation-circle"
|
|
||||||
></cds-icon>
|
|
||||||
<cds-icon
|
|
||||||
*ngIf="dataset.datasource.length && dataset.parseResult"
|
|
||||||
shape="table"
|
|
||||||
></cds-icon>
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<ng-container *ngIf="!dataset.datasource">
|
|
||||||
<cds-icon *ngIf="!dataset.parsingTable" shape="table"></cds-icon>
|
|
||||||
|
|
||||||
<clr-spinner *ngIf="dataset.parsingTable" clrSmall></clr-spinner>
|
|
||||||
</ng-container>
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<span class="ml-5"> {{ dataset.libds }} </span>
|
|
||||||
</button>
|
|
||||||
</clr-tree-node>
|
|
||||||
</clr-tree>
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<ng-container *ngIf="submittedCsvDatasets.length">
|
|
||||||
<p cds-text="caption" class="ml-10 mb-10 mt-10">Submitted tables:</p>
|
|
||||||
<clr-tree>
|
|
||||||
<clr-tree-node *ngFor="let dataset of submittedCsvDatasets">
|
|
||||||
<button
|
|
||||||
(click)="onSubmittedCsvDatasetClick(dataset)"
|
|
||||||
class="clr-treenode-link whitespace-nowrap"
|
|
||||||
[class.active]="dataset.active"
|
|
||||||
>
|
|
||||||
<cds-icon
|
|
||||||
*ngIf="dataset.error"
|
|
||||||
status="danger"
|
|
||||||
shape="exclamation-circle"
|
|
||||||
></cds-icon>
|
|
||||||
<cds-icon
|
|
||||||
*ngIf="dataset.success"
|
|
||||||
status="success"
|
|
||||||
shape="check-circle"
|
|
||||||
></cds-icon>
|
|
||||||
<cds-icon shape="table"></cds-icon>
|
|
||||||
{{ dataset.libds }}
|
|
||||||
</button>
|
|
||||||
</clr-tree-node>
|
|
||||||
</clr-tree>
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<!-- <div *ngIf="librariesPaging" class="w-100 text-center">
|
|
||||||
<span class="spinner spinner-sm"> Loading... </span>
|
|
||||||
</div> -->
|
|
||||||
</app-sidebar>
|
|
||||||
|
|
||||||
<div #contentArea class="content-area">
|
|
||||||
<div class="card no-borders h-100 d-flex clr-flex-column">
|
|
||||||
<div
|
|
||||||
class="header-row clr-row justify-content-between clr-justify-content-center w-100 m-0"
|
|
||||||
>
|
|
||||||
<p cds-text="section">Multi Dataset Load</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div
|
|
||||||
*ngIf="selectedFile === null && !submittingCsv"
|
|
||||||
class="no-table-selected pointer-events-none"
|
|
||||||
>
|
|
||||||
<clr-icon
|
|
||||||
shape="warning-standard"
|
|
||||||
size="40"
|
|
||||||
class="is-info icon-dc-fill"
|
|
||||||
></clr-icon>
|
|
||||||
<p class="text-center color-gray mt-10" cds-text="section">
|
|
||||||
Please upload a file
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<ng-container *ngIf="selectedFile !== null || submittingCsv">
|
|
||||||
<ng-container *ngIf="!parsedDatasets.length && selectedFile !== null">
|
|
||||||
<div class="d-flex clr-justify-content-center mt-15">
|
|
||||||
<div class="dataset-input-wrapper">
|
|
||||||
<p cds-text="secondary regular" class="mb-5">
|
|
||||||
Selected file: <strong>{{ selectedFile.name }}</strong>
|
|
||||||
<clr-tooltip>
|
|
||||||
<cds-icon
|
|
||||||
clrTooltipTrigger
|
|
||||||
(click)="onDiscardFile()"
|
|
||||||
shape="trash"
|
|
||||||
status="danger"
|
|
||||||
class="ml-5 cursor-pointer"
|
|
||||||
></cds-icon>
|
|
||||||
<clr-tooltip-content> Discard the file </clr-tooltip-content>
|
|
||||||
</clr-tooltip>
|
|
||||||
</p>
|
|
||||||
<p cds-text="secondary regular" class="mb-20">
|
|
||||||
File size: <strong>{{ selectedFile.sizeMB }} MB</strong>
|
|
||||||
</p>
|
|
||||||
<p cds-text="secondary regular" class="mb-15">
|
|
||||||
Paste or type the list of datasets to upload:
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<clr-control-helper class="mb-5"
|
|
||||||
>Each row is one dataset. We will automatically detect tables by
|
|
||||||
the sheetname and populate if any.</clr-control-helper
|
|
||||||
>
|
|
||||||
|
|
||||||
<hot-table
|
|
||||||
hotId="hotInstanceUserDataset"
|
|
||||||
id="hotTableUserDataset"
|
|
||||||
class="mt-15"
|
|
||||||
[afterGetColHeader]="afterGetColHeader"
|
|
||||||
[settings]="hotUserDatasets"
|
|
||||||
[licenseKey]="hotTableLicenseKey"
|
|
||||||
stretchH="all"
|
|
||||||
>
|
|
||||||
</hot-table>
|
|
||||||
|
|
||||||
<div class="dataset-selection-actions text-right mt-10">
|
|
||||||
<button
|
|
||||||
(click)="onStartParsingFile()"
|
|
||||||
id="continue-btn"
|
|
||||||
class="btn btn-primary btn-sm"
|
|
||||||
[disabled]="!matchedDatasets.length"
|
|
||||||
[clrLoading]="uploadLoading"
|
|
||||||
>
|
|
||||||
Continue
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<ng-container
|
|
||||||
*ngIf="parsedDatasets.length && !submittedCsvDatasets.length"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
*ngIf="!activeParsedDataset"
|
|
||||||
class="no-table-selected pointer-events-none"
|
|
||||||
>
|
|
||||||
<ng-container *ngIf="fileLoadingState !== FileLoadingState.parsed">
|
|
||||||
<clr-icon
|
|
||||||
shape="process-on-vm"
|
|
||||||
size="40"
|
|
||||||
class="is-info icon-dc-fill"
|
|
||||||
></clr-icon>
|
|
||||||
|
|
||||||
<p class="text-center color-gray mt-10" cds-text="section">
|
|
||||||
{{ fileLoadingState }}...
|
|
||||||
</p>
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<ng-container *ngIf="fileLoadingState === FileLoadingState.parsed">
|
|
||||||
<clr-icon
|
|
||||||
shape="warning-standard"
|
|
||||||
size="40"
|
|
||||||
class="is-info icon-dc-fill"
|
|
||||||
></clr-icon>
|
|
||||||
<p class="text-center color-gray mt-10" cds-text="section">
|
|
||||||
Please select a dataset on the left to review the data
|
|
||||||
</p>
|
|
||||||
</ng-container>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<ng-container *ngIf="activeParsedDataset">
|
|
||||||
<div
|
|
||||||
*ngIf="activeParsedDataset.submitResult"
|
|
||||||
class="d-flex clr-justify-content-between p-10 mt-15 submission-results"
|
|
||||||
>
|
|
||||||
<div>
|
|
||||||
<p cds-text="secondary regular" class="mb-10">
|
|
||||||
Submit Status:
|
|
||||||
<span
|
|
||||||
*ngIf="activeParsedDataset.submitResult?.success"
|
|
||||||
class="color-green"
|
|
||||||
><strong>SUCCESS</strong></span
|
|
||||||
>
|
|
||||||
<span
|
|
||||||
*ngIf="activeParsedDataset.submitResult?.error"
|
|
||||||
class="color-red"
|
|
||||||
><strong>ERROR</strong></span
|
|
||||||
>
|
|
||||||
</p>
|
|
||||||
<p
|
|
||||||
*ngIf="activeParsedDataset.submitResult?.error"
|
|
||||||
cds-text="secondary regular"
|
|
||||||
>
|
|
||||||
Error details:
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<button
|
|
||||||
*ngIf="
|
|
||||||
!submittingCsv && activeParsedDataset.submitResult?.error
|
|
||||||
"
|
|
||||||
(click)="reSubmitTable(activeParsedDataset)"
|
|
||||||
class="btn btn-primary mt-10"
|
|
||||||
[clrLoading]="submitLoading"
|
|
||||||
>
|
|
||||||
Resubmit
|
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
(click)="
|
|
||||||
downloadFile(
|
|
||||||
activeParsedDataset.submitResult.log ||
|
|
||||||
activeParsedDataset.submitResult.success ||
|
|
||||||
activeParsedDataset.submitResult.error
|
|
||||||
)
|
|
||||||
"
|
|
||||||
class="btn btn-primary-outline mt-10"
|
|
||||||
>
|
|
||||||
Download log
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div
|
|
||||||
*ngIf="activeParsedDataset.submitResult?.error"
|
|
||||||
class="error-field mt-15"
|
|
||||||
>
|
|
||||||
<div class="log-wrapper">
|
|
||||||
{{ activeParsedDataset.submitResult?.error | json }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="d-flex clr-justify-content-between p-10 mt-15">
|
|
||||||
<div>
|
|
||||||
<p cds-text="secondary regular" class="mb-10">
|
|
||||||
Found in range:
|
|
||||||
|
|
||||||
<ng-container *ngIf="activeParsedDataset.parseResult">
|
|
||||||
<strong
|
|
||||||
>"{{
|
|
||||||
activeParsedDataset.parseResult.rangeSheetRes?.sheetName
|
|
||||||
}}"!{{
|
|
||||||
activeParsedDataset.parseResult.rangeSheetRes
|
|
||||||
?.rangeAddress
|
|
||||||
}}</strong
|
|
||||||
>
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<ng-container *ngIf="!activeParsedDataset.parseResult">
|
|
||||||
<strong *ngIf="!activeParsedDataset.parsingTable"
|
|
||||||
>No data found</strong
|
|
||||||
>
|
|
||||||
|
|
||||||
<span
|
|
||||||
*ngIf="activeParsedDataset.parsingTable"
|
|
||||||
class="d-flex clr-align-items-center"
|
|
||||||
>
|
|
||||||
<strong>Searching for the data...</strong>
|
|
||||||
<clr-spinner class="ml-5" clrSmall></clr-spinner>
|
|
||||||
</span>
|
|
||||||
</ng-container>
|
|
||||||
</p>
|
|
||||||
<p cds-text="secondary regular">
|
|
||||||
Dataset:
|
|
||||||
<strong>
|
|
||||||
<clr-tooltip>
|
|
||||||
<a
|
|
||||||
clrTooltipTrigger
|
|
||||||
[routerLink]="'/editor/' + activeParsedDataset.libds"
|
|
||||||
>{{ activeParsedDataset.libds }}</a
|
|
||||||
>
|
|
||||||
<clr-tooltip-content
|
|
||||||
[clrPosition]="'top-right'"
|
|
||||||
[clrSize]="'sm'"
|
|
||||||
>
|
|
||||||
Click to edit the table
|
|
||||||
</clr-tooltip-content>
|
|
||||||
</clr-tooltip>
|
|
||||||
</strong>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<clr-toggle-wrapper>
|
|
||||||
<input
|
|
||||||
type="checkbox"
|
|
||||||
clrToggle
|
|
||||||
[(ngModel)]="activeParsedDataset.includeInSubmission"
|
|
||||||
name="options"
|
|
||||||
[disabled]="
|
|
||||||
!(
|
|
||||||
activeParsedDataset.datasource &&
|
|
||||||
activeParsedDataset.parseResult
|
|
||||||
)
|
|
||||||
"
|
|
||||||
required
|
|
||||||
value="option1"
|
|
||||||
/>
|
|
||||||
<label>Include in submission</label>
|
|
||||||
</clr-toggle-wrapper>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div *ngIf="isHotHidden" class="text-center w-100">
|
|
||||||
<clr-spinner class="spinner-md"></clr-spinner>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<hot-table
|
|
||||||
hotId="hotInstance"
|
|
||||||
id="hotTable"
|
|
||||||
class="mt-15"
|
|
||||||
[afterGetColHeader]="afterGetColHeader"
|
|
||||||
[className]="['htDark', 'htCustomHidden']"
|
|
||||||
[licenseKey]="hotTableLicenseKey"
|
|
||||||
[multiColumnSorting]="true"
|
|
||||||
[viewportRowRenderingOffset]="50"
|
|
||||||
[manualColumnResize]="true"
|
|
||||||
[filters]="true"
|
|
||||||
stretchH="all"
|
|
||||||
>
|
|
||||||
</hot-table>
|
|
||||||
</ng-container>
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<ng-container *ngIf="submittedCsvDatasets.length">
|
|
||||||
<div
|
|
||||||
*ngIf="!activeSubmittedCsvDataset"
|
|
||||||
class="no-table-selected pointer-events-none"
|
|
||||||
>
|
|
||||||
<clr-icon
|
|
||||||
shape="warning-standard"
|
|
||||||
size="40"
|
|
||||||
class="is-info icon-dc-fill"
|
|
||||||
></clr-icon>
|
|
||||||
<p class="text-center color-gray mt-10" cds-text="section">
|
|
||||||
Please select a dataset on the left to review the submit results
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<ng-container *ngIf="activeSubmittedCsvDataset">
|
|
||||||
<div class="d-flex clr-justify-content-between p-10">
|
|
||||||
<div>
|
|
||||||
<p cds-text="secondary regular" class="mb-10">
|
|
||||||
Matched with dataset:
|
|
||||||
<strong>
|
|
||||||
<clr-tooltip>
|
|
||||||
<a
|
|
||||||
clrTooltipTrigger
|
|
||||||
[routerLink]="'/editor/' + activeSubmittedCsvDataset.libds"
|
|
||||||
>{{ activeSubmittedCsvDataset.libds }}</a
|
|
||||||
>
|
|
||||||
<clr-tooltip-content
|
|
||||||
[clrPosition]="'top-right'"
|
|
||||||
[clrSize]="'sm'"
|
|
||||||
>
|
|
||||||
Click to edit the table
|
|
||||||
</clr-tooltip-content>
|
|
||||||
</clr-tooltip>
|
|
||||||
</strong>
|
|
||||||
</p>
|
|
||||||
<p cds-text="secondary regular" class="mb-10">
|
|
||||||
Status:
|
|
||||||
<span
|
|
||||||
*ngIf="activeSubmittedCsvDataset.success"
|
|
||||||
class="color-green"
|
|
||||||
><strong>SUCCESS</strong></span
|
|
||||||
>
|
|
||||||
<span *ngIf="activeSubmittedCsvDataset.error" class="color-red"
|
|
||||||
><strong>ERROR</strong></span
|
|
||||||
>
|
|
||||||
</p>
|
|
||||||
<p
|
|
||||||
*ngIf="activeSubmittedCsvDataset.error"
|
|
||||||
cds-text="secondary regular"
|
|
||||||
>
|
|
||||||
Error details:
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<button
|
|
||||||
(click)="
|
|
||||||
downloadFile(
|
|
||||||
activeSubmittedCsvDataset.success ||
|
|
||||||
activeSubmittedCsvDataset.error
|
|
||||||
)
|
|
||||||
"
|
|
||||||
class="btn btn-primary-outline mt-10"
|
|
||||||
>
|
|
||||||
Download log
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div *ngIf="activeSubmittedCsvDataset.error" class="error-field mt-15">
|
|
||||||
<div class="log-wrapper">
|
|
||||||
{{ activeSubmittedCsvDataset.error | json }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</ng-container>
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<!-- <div>
|
|
||||||
<p
|
|
||||||
*ngIf="
|
|
||||||
licenceState.value.viewer_rows_allowed !== Infinity &&
|
|
||||||
hotTable.data &&
|
|
||||||
hotTable.data.length > licenceState.value.viewer_rows_allowed
|
|
||||||
"
|
|
||||||
class="mt-2-i w-100 text-center"
|
|
||||||
>
|
|
||||||
To display more than {{ licenceState.value.viewer_rows_allowed }} rows,
|
|
||||||
contact <contact-link />
|
|
||||||
</p>
|
|
||||||
</div> -->
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<clr-modal [(clrModalOpen)]="showSubmitReasonModal" [clrModalClosable]="false">
|
|
||||||
<h3 class="modal-title">
|
|
||||||
Submit {{ tablesToSubmit.length }}
|
|
||||||
{{ tablesToSubmit.length === 1 ? 'table' : 'tables' }} for approval
|
|
||||||
</h3>
|
|
||||||
<div class="modal-body">
|
|
||||||
<p
|
|
||||||
*ngIf="licenceState.value.submit_rows_limit !== Infinity"
|
|
||||||
cds-text="body"
|
|
||||||
class="licence-limit-notice mt-0 mb-15"
|
|
||||||
>
|
|
||||||
Due to current licence, only
|
|
||||||
{{ licenceState.value.submit_rows_limit }} rows in each file will be
|
|
||||||
submitted. To remove the restriction, contact
|
|
||||||
support@datacontroller.io.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<div class="text-area-full-width">
|
|
||||||
<label for="formFields_8" class="mb-5 d-block">Message</label>
|
|
||||||
<textarea
|
|
||||||
clrTextarea
|
|
||||||
[(ngModel)]="submitReasonMessage"
|
|
||||||
tabindex="0"
|
|
||||||
class="submit-reason"
|
|
||||||
type="text"
|
|
||||||
id="formFields_8"
|
|
||||||
></textarea>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<p cds-text="caption_clean" class="mt-10">
|
|
||||||
Tables will be sent sequentially, logs will be available after all tables
|
|
||||||
are submitted.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
<div class="modal-footer">
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
class="btn btn-outline"
|
|
||||||
[disabled]="submitLoading"
|
|
||||||
(click)="showSubmitReasonModal = false"
|
|
||||||
>
|
|
||||||
Cancel
|
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
id="submit-tables"
|
|
||||||
class="btn btn-primary"
|
|
||||||
[clrLoading]="submitLoading"
|
|
||||||
(click)="submitTables()"
|
|
||||||
>
|
|
||||||
Submit
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</clr-modal>
|
|
||||||
|
|
||||||
<clr-modal [(clrModalOpen)]="csvSubmitting" [clrModalClosable]="false">
|
|
||||||
<h3 class="modal-title">
|
|
||||||
Submitting {{ csvFiles.length }} CSV
|
|
||||||
{{ csvFiles.length === 1 ? 'file' : 'files' }}
|
|
||||||
</h3>
|
|
||||||
<div class="modal-body">
|
|
||||||
<div class="text-center">
|
|
||||||
<clr-spinner clrMedium></clr-spinner>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<p cds-text="caption_clean" class="mt-10 text-center">
|
|
||||||
This will take few moments
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</clr-modal>
|
|
@ -1,54 +0,0 @@
|
|||||||
.no-table-selected {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
position: absolute;
|
|
||||||
background: var(--clr-vertical-nav-bg-color);
|
|
||||||
z-index: 10;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
top: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header-row {
|
|
||||||
padding: 15px 0;
|
|
||||||
border-bottom: 1px solid #d3d3d3;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataset-input-wrapper {
|
|
||||||
max-width: 500px;
|
|
||||||
width: 100%;
|
|
||||||
|
|
||||||
textarea {
|
|
||||||
min-height: 200px;
|
|
||||||
height: 200px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.submit-reason {
|
|
||||||
min-height: 70px;
|
|
||||||
max-height: 70px;
|
|
||||||
height: 70px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.log-wrapper {
|
|
||||||
margin: 0 10px;
|
|
||||||
height: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
::ng-deep td.not-matched {
|
|
||||||
background-color: #ff000054;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataset-selection-actions {
|
|
||||||
border-top: 1px solid #d3d3d3;
|
|
||||||
}
|
|
||||||
|
|
||||||
.licence-limit-notice {
|
|
||||||
color: var(--cds-alias-status-warning-dark);
|
|
||||||
}
|
|
||||||
|
|
||||||
.submission-results {
|
|
||||||
border-bottom: 1px solid #d3d3d3;
|
|
||||||
}
|
|
File diff suppressed because it is too large
Load Diff
@ -1,31 +0,0 @@
|
|||||||
import { CommonModule } from '@angular/common'
|
|
||||||
import { NgModule } from '@angular/core'
|
|
||||||
import { FormsModule } from '@angular/forms'
|
|
||||||
import { ClarityModule } from '@clr/angular'
|
|
||||||
import { HotTableModule } from '@handsontable/angular'
|
|
||||||
import { registerAllModules } from 'handsontable/registry'
|
|
||||||
import { AppSharedModule } from '../app-shared.module'
|
|
||||||
import { DirectivesModule } from '../directives/directives.module'
|
|
||||||
import { DcTreeModule } from '../shared/dc-tree/dc-tree.module'
|
|
||||||
import { MultiDatasetComponent } from './multi-dataset.component'
|
|
||||||
import { MultiDatasetRoutingModule } from './multi-dataset-routing.module'
|
|
||||||
import { MultiDatasetRouteComponent } from '../routes/multi-dataset-route/multi-dataset-route.component'
|
|
||||||
|
|
||||||
// register Handsontable's modules
|
|
||||||
registerAllModules()
|
|
||||||
|
|
||||||
@NgModule({
|
|
||||||
declarations: [MultiDatasetRouteComponent, MultiDatasetComponent],
|
|
||||||
imports: [
|
|
||||||
HotTableModule,
|
|
||||||
MultiDatasetRoutingModule,
|
|
||||||
FormsModule,
|
|
||||||
ClarityModule,
|
|
||||||
AppSharedModule,
|
|
||||||
CommonModule,
|
|
||||||
DcTreeModule,
|
|
||||||
DirectivesModule
|
|
||||||
],
|
|
||||||
exports: [MultiDatasetComponent]
|
|
||||||
})
|
|
||||||
export class MultiDatasetModule {}
|
|
@ -143,6 +143,7 @@
|
|||||||
(ngModelChange)="
|
(ngModelChange)="
|
||||||
setVariableOperator(queryIndex, query.operator, clauseIndex)
|
setVariableOperator(queryIndex, query.operator, clauseIndex)
|
||||||
"
|
"
|
||||||
|
class="mt-2"
|
||||||
clrSelect
|
clrSelect
|
||||||
>
|
>
|
||||||
<option *ngFor="let opr of query.operators">{{ opr }}</option>
|
<option *ngFor="let opr of query.operators">{{ opr }}</option>
|
||||||
@ -412,10 +413,7 @@
|
|||||||
>
|
>
|
||||||
<app-soft-select
|
<app-soft-select
|
||||||
label="Value"
|
label="Value"
|
||||||
[secondLabel]="'Variable'"
|
|
||||||
[emitOnlySelected]="query.valueVariable"
|
|
||||||
[inputId]="'vals_' + queryIndex + '_' + clauseIndex"
|
[inputId]="'vals_' + queryIndex + '_' + clauseIndex"
|
||||||
(selectedLabelChange)="selectedLabelChange($event, query)"
|
|
||||||
[(value)]="query.value"
|
[(value)]="query.value"
|
||||||
[enableLoadMore]="query.nobs > query.values.length"
|
[enableLoadMore]="query.nobs > query.values.length"
|
||||||
(onInputEvent)="
|
(onInputEvent)="
|
||||||
@ -425,19 +423,9 @@
|
|||||||
onAutocompleteLoadingMore($event, query.variable, queryIndex, clauseIndex)
|
onAutocompleteLoadingMore($event, query.variable, queryIndex, clauseIndex)
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
<div *ngIf="!query.valueVariable">
|
<option [value]="column.unformatted" *ngFor="let column of query.values">
|
||||||
<option [value]="column.unformatted" *ngFor="let column of query.values">
|
{{ column.formatted.trim() }}
|
||||||
{{ column.formatted.trim() }}
|
</option>
|
||||||
</option>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div *ngIf="query.valueVariable">
|
|
||||||
<ng-container *ngFor="let column of cols">
|
|
||||||
<option [value]="column.NAME" *ngIf="column.TYPE === query.type">
|
|
||||||
{{ column.NAME }}
|
|
||||||
</option>
|
|
||||||
</ng-container>
|
|
||||||
</div>
|
|
||||||
</app-soft-select>
|
</app-soft-select>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
|
|
||||||
|
@ -1,25 +1,3 @@
|
|||||||
::ng-deep {
|
|
||||||
body[cds-theme="dark"] {
|
|
||||||
.clause-logic {
|
|
||||||
background: #192a30;
|
|
||||||
}
|
|
||||||
|
|
||||||
.clause-query {
|
|
||||||
background: #263e48;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
body[cds-theme="light"] {
|
|
||||||
.clause-logic {
|
|
||||||
background: #e9e9e9;
|
|
||||||
}
|
|
||||||
|
|
||||||
.clause-query {
|
|
||||||
background: #fbf8f8;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.content {
|
.content {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
||||||
@ -31,12 +9,13 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
background: #e9e9e9;
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.clause-query {
|
.clause-query {
|
||||||
padding: 30px 0px 20px 20px;
|
padding: 30px 0px 20px 20px;
|
||||||
|
background: #fbf8f8;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@ -241,11 +220,8 @@
|
|||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
:not(pre) > code[class*="language-"], pre[class*="language-"] {
|
||||||
::ng-deep body[cds-theme="dark"] {
|
background-color: #fbf8f8;
|
||||||
.line-numbers {
|
|
||||||
border-color: #989797 !important;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pre[class*="language-"] {
|
pre[class*="language-"] {
|
||||||
|
@ -95,7 +95,6 @@ export class QueryComponent
|
|||||||
variable: null,
|
variable: null,
|
||||||
operator: null,
|
operator: null,
|
||||||
value: null,
|
value: null,
|
||||||
valueVariable: false,
|
|
||||||
startrow: 0,
|
startrow: 0,
|
||||||
rows: 0,
|
rows: 0,
|
||||||
nobs: 0,
|
nobs: 0,
|
||||||
@ -194,20 +193,6 @@ export class QueryComponent
|
|||||||
*/
|
*/
|
||||||
usePickersChange() {
|
usePickersChange() {
|
||||||
this.queryDateTime = []
|
this.queryDateTime = []
|
||||||
if (this.usePickers) {
|
|
||||||
this.clauses.queryObj.forEach((queryObj: any) => {
|
|
||||||
queryObj.elements.forEach((element: any) => {
|
|
||||||
const isDateOrTime = ['DATETIME', 'TIME', 'DATE'].includes(
|
|
||||||
element.ddtype
|
|
||||||
)
|
|
||||||
|
|
||||||
if (isDateOrTime && element.valueVariable) {
|
|
||||||
element.value = ''
|
|
||||||
element.valueVariable = false
|
|
||||||
}
|
|
||||||
})
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -268,6 +253,8 @@ export class QueryComponent
|
|||||||
get(globals, objPath).filter.libds = this.libds
|
get(globals, objPath).filter.libds = this.libds
|
||||||
}
|
}
|
||||||
get(globals, objPath).filter.clauses = this.clauses
|
get(globals, objPath).filter.clauses = this.clauses
|
||||||
|
|
||||||
|
console.log('globals', globals)
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -763,12 +750,6 @@ export class QueryComponent
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
public selectedLabelChange(label: string, query: any) {
|
|
||||||
query.valueVariable = label === 'Variable'
|
|
||||||
query.value = ''
|
|
||||||
this.whereClauseFn()
|
|
||||||
}
|
|
||||||
|
|
||||||
public variableInputChange(
|
public variableInputChange(
|
||||||
queryVariable: any,
|
queryVariable: any,
|
||||||
index: number,
|
index: number,
|
||||||
@ -878,25 +859,17 @@ export class QueryComponent
|
|||||||
*/
|
*/
|
||||||
public hasInvalidCluase(clauses: any): boolean {
|
public hasInvalidCluase(clauses: any): boolean {
|
||||||
for (let clause of clauses) {
|
for (let clause of clauses) {
|
||||||
clause['invalidClause'] = false
|
|
||||||
|
|
||||||
if (
|
|
||||||
clause.value === '' &&
|
|
||||||
!(clause.operator === 'NE' || clause.operator === 'CONTAINS')
|
|
||||||
) {
|
|
||||||
clause['invalidClause'] = true
|
|
||||||
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
if (
|
if (
|
||||||
clause.variable === null ||
|
clause.variable === null ||
|
||||||
clause.operator === null ||
|
clause.operator === null ||
|
||||||
clause.value === null
|
clause.value === null ||
|
||||||
|
clause.value === ''
|
||||||
) {
|
) {
|
||||||
clause['invalidClause'] = true
|
clause['invalidClause'] = true
|
||||||
|
|
||||||
return true
|
return true
|
||||||
|
} else {
|
||||||
|
clause['invalidClause'] = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -139,7 +139,10 @@
|
|||||||
<div class="card-header p-0">
|
<div class="card-header p-0">
|
||||||
<div class="clr-row">
|
<div class="clr-row">
|
||||||
<div class="clr-col-md-4 approvalBack">
|
<div class="clr-col-md-4 approvalBack">
|
||||||
<span class="btn btn-outline m-0" (click)="goToApprovalsList()">
|
<span
|
||||||
|
class="btn btn-sm btn-outline m-0"
|
||||||
|
(click)="goToApprovalsList()"
|
||||||
|
>
|
||||||
<clr-icon shape="caret" dir="left" size="20"></clr-icon>Back to
|
<clr-icon shape="caret" dir="left" size="20"></clr-icon>Back to
|
||||||
approvals list
|
approvals list
|
||||||
</span>
|
</span>
|
||||||
@ -206,22 +209,22 @@
|
|||||||
<div class="d-flex justify-content-center mt-0">
|
<div class="d-flex justify-content-center mt-0">
|
||||||
<div class="clr-row clr-gap-5 clr-gap-sm-0">
|
<div class="clr-row clr-gap-5 clr-gap-sm-0">
|
||||||
<button
|
<button
|
||||||
class="btn btn-sm btn-outline text-center mt-5 mr-5i"
|
class="btn btn-sm btn-outline text-center mt-5"
|
||||||
(click)="goToBase(jsParams?.TABLE_NM)"
|
(click)="goToBase(jsParams?.TABLE_NM)"
|
||||||
>
|
>
|
||||||
View base table
|
Go to base table screen
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
class="btn btn-sm btn-success-outline text-center mt-5 mr-5i"
|
class="btn btn-sm btn-success-outline text-center mt-5"
|
||||||
(click)="getTable(tableId)"
|
(click)="getTable(tableId)"
|
||||||
>
|
>
|
||||||
View staged data
|
Go to edited screen
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
class="btn btn-sm btn-info-outline text-center mt-5"
|
class="btn btn-sm btn-info-outline text-center mt-5"
|
||||||
(click)="goBack(jsParams?.TABLE_NM)"
|
(click)="goBack(jsParams?.TABLE_NM)"
|
||||||
>
|
>
|
||||||
Edit base table
|
Go back to editor
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -233,7 +236,7 @@
|
|||||||
id="acceptBtn"
|
id="acceptBtn"
|
||||||
[clrLoading]="acceptLoading"
|
[clrLoading]="acceptLoading"
|
||||||
type="submit"
|
type="submit"
|
||||||
class="btn btn-sm btn-success mr-5i"
|
class="btn btn-sm btn-success"
|
||||||
(click)="approveTable()"
|
(click)="approveTable()"
|
||||||
[disabled]="
|
[disabled]="
|
||||||
!loadingTable || params?.ISAPPROVER === 'NO' || noChanges
|
!loadingTable || params?.ISAPPROVER === 'NO' || noChanges
|
||||||
@ -243,7 +246,7 @@
|
|||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
id="rejectBtn"
|
id="rejectBtn"
|
||||||
class="btn btn-sm btn btn-danger mr-5i"
|
class="btn btn-sm btn btn-danger mr-0"
|
||||||
(click)="rejectOpen = true"
|
(click)="rejectOpen = true"
|
||||||
[disabled]="
|
[disabled]="
|
||||||
!loadingTable || params?.ISAPPROVER === 'NO' || noChanges
|
!loadingTable || params?.ISAPPROVER === 'NO' || noChanges
|
||||||
@ -284,15 +287,19 @@
|
|||||||
>
|
>
|
||||||
<span class="label label-warning">
|
<span class="label label-warning">
|
||||||
Changed Rows
|
Changed Rows
|
||||||
<span class="badge">{{ lens.updated }}</span>
|
<span class="badge badge-warning">{{
|
||||||
|
lens.updated
|
||||||
|
}}</span>
|
||||||
</span>
|
</span>
|
||||||
<span class="label label-success">
|
<span class="label label-success">
|
||||||
Added Rows
|
Added Rows
|
||||||
<span class="badge">{{ lens.new }}</span>
|
<span class="badge badge-success">{{ lens.new }}</span>
|
||||||
</span>
|
</span>
|
||||||
<span class="label label-danger">
|
<span class="label label-danger">
|
||||||
Deleted Rows
|
Deleted Rows
|
||||||
<span class="badge">{{ lens.deleted }}</span>
|
<span class="badge badge-danger">{{
|
||||||
|
lens.deleted
|
||||||
|
}}</span>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -307,8 +314,8 @@
|
|||||||
class="h-24vh d-flex flex-column justify-content-center align-items-center"
|
class="h-24vh d-flex flex-column justify-content-center align-items-center"
|
||||||
>
|
>
|
||||||
<span class="spinner"> Loading... </span>
|
<span class="spinner"> Loading... </span>
|
||||||
<div *ngIf="!loadingTable" class="mt-10">
|
<div *ngIf="!loadingTable">
|
||||||
<p cds-text="section">Loading table</p>
|
<h3>Loading table</h3>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -387,9 +394,9 @@
|
|||||||
<div class="card-header">
|
<div class="card-header">
|
||||||
<div class="clr-row">
|
<div class="clr-row">
|
||||||
<div class="clr-col-md-4 approvalBack">
|
<div class="clr-col-md-4 approvalBack">
|
||||||
<span class="btn btn-outline" (click)="goToSubmitList()">
|
<span class="btn btn-sm btn-outline" (click)="goToSubmitList()">
|
||||||
<cds-icon shape="angle" direction="left" size="20"></cds-icon
|
<clr-icon shape="caret" dir="left" size="20"></clr-icon>Back to
|
||||||
>Back to submitted list
|
submitted list
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="clr-col-md-4">
|
<div class="clr-col-md-4">
|
||||||
@ -436,22 +443,22 @@
|
|||||||
<div class="d-flex justify-content-center mt-0">
|
<div class="d-flex justify-content-center mt-0">
|
||||||
<div class="clr-row clr-gap-5 clr-gap-sm-0">
|
<div class="clr-row clr-gap-5 clr-gap-sm-0">
|
||||||
<button
|
<button
|
||||||
class="btn btn-sm btn-outline text-center mt-5 mr-5i"
|
class="btn btn-sm btn-outline text-center mt-5"
|
||||||
(click)="goToBase(subObj.base)"
|
(click)="goToBase(subObj.base)"
|
||||||
>
|
>
|
||||||
View base table
|
Go to base table screen
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
class="btn btn-sm btn-success-outline text-center mt-5 mr-5i"
|
class="btn btn-sm btn-success-outline text-center mt-5"
|
||||||
(click)="getTable(subObj.tableId)"
|
(click)="getTable(subObj.tableId)"
|
||||||
>
|
>
|
||||||
View staged data
|
Go to edited screen
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
class="btn btn-sm btn-info-outline text-center mt-5"
|
class="btn btn-sm btn-info-outline text-center mt-5"
|
||||||
(click)="goBack(subObj.base)"
|
(click)="goBack(subObj.base)"
|
||||||
>
|
>
|
||||||
Edit base table
|
Go back to editor
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -473,15 +480,15 @@
|
|||||||
>
|
>
|
||||||
<span class="label label-warning">
|
<span class="label label-warning">
|
||||||
Changed Rows
|
Changed Rows
|
||||||
<span class="badge">{{ lens.updated }}</span>
|
<span class="badge badge-warning">{{ lens.updated }}</span>
|
||||||
</span>
|
</span>
|
||||||
<span class="label label-success">
|
<span class="label label-success">
|
||||||
Added Rows
|
Added Rows
|
||||||
<span class="badge">{{ lens.new }}</span>
|
<span class="badge badge-success">{{ lens.new }}</span>
|
||||||
</span>
|
</span>
|
||||||
<span class="label label-danger">
|
<span class="label label-danger">
|
||||||
Deleted Rows
|
Deleted Rows
|
||||||
<span class="badge">{{ lens.deleted }}</span>
|
<span class="badge badge-danger">{{ lens.deleted }}</span>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -515,8 +522,8 @@
|
|||||||
class="h-25vh d-flex flex-column justify-content-center align-items-center"
|
class="h-25vh d-flex flex-column justify-content-center align-items-center"
|
||||||
>
|
>
|
||||||
<span class="spinner"> Loading... </span>
|
<span class="spinner"> Loading... </span>
|
||||||
<div *ngIf="!loadingTable" class="mt-10">
|
<div *ngIf="!loadingTable">
|
||||||
<p cds-text="section">Loading table</p>
|
<h3>Loading table</h3>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="tableCont">
|
<div class="tableCont">
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
@import '../../../colors.scss';
|
|
||||||
|
|
||||||
.loader {
|
.loader {
|
||||||
display:flex;
|
display:flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
@ -12,48 +10,19 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.addedRow {
|
.addedRow {
|
||||||
|
background: rgb(146, 208, 154);
|
||||||
border: 1px solid rgba(9, 77, 117, 0.2);
|
border: 1px solid rgba(9, 77, 117, 0.2);
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.deletedRow {
|
.deletedRow {
|
||||||
|
background: rgb(230, 179, 179);
|
||||||
border: 1px solid rgba(70, 71, 70, 0.2);
|
border: 1px solid rgba(70, 71, 70, 0.2);
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
::ng-deep body[cds-theme="dark"] {
|
|
||||||
table {
|
|
||||||
.updatedRow {
|
|
||||||
background: #93971e;
|
|
||||||
}
|
|
||||||
|
|
||||||
.addedRow {
|
|
||||||
background: rgb(86 153 95);
|
|
||||||
}
|
|
||||||
|
|
||||||
.deletedRow {
|
|
||||||
background: rgb(138 90 90);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
::ng-deep body[cds-theme="light"] {
|
|
||||||
table {
|
|
||||||
.updatedRow {
|
|
||||||
background: #fafda8;
|
|
||||||
}
|
|
||||||
|
|
||||||
.addedRow {
|
|
||||||
background: rgb(146, 208, 154);
|
|
||||||
}
|
|
||||||
|
|
||||||
.deletedRow {
|
|
||||||
background: rgb(230, 179, 179);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.updatedRow {
|
.updatedRow {
|
||||||
|
background: #fafda8;
|
||||||
border: 1px solid rgba(9, 117, 9, 0.2);
|
border: 1px solid rgba(9, 117, 9, 0.2);
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
@ -76,7 +45,7 @@ background: rgba(252, 135, 120, 0.4);
|
|||||||
font-size: .54167rem;
|
font-size: .54167rem;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
letter-spacing: normal;
|
letter-spacing: normal;
|
||||||
background: $headerBackground;
|
background: #314351;
|
||||||
border-radius: .125rem;
|
border-radius: .125rem;
|
||||||
color: #f0f1ec;;
|
color: #f0f1ec;;
|
||||||
line-height: .75rem;
|
line-height: .75rem;
|
||||||
@ -99,8 +68,8 @@ background: rgba(252, 135, 120, 0.4);
|
|||||||
top: auto;
|
top: auto;
|
||||||
right: auto;
|
right: auto;
|
||||||
content: "";
|
content: "";
|
||||||
border-left: .25rem solid $headerBackground;
|
border-left: .25rem solid #314351;
|
||||||
border-top: .20833rem solid $headerBackground;
|
border-top: .20833rem solid #314351;
|
||||||
border-right: .25rem solid transparent;
|
border-right: .25rem solid transparent;
|
||||||
border-bottom: .20833rem solid transparent;
|
border-bottom: .20833rem solid transparent;
|
||||||
}
|
}
|
||||||
@ -110,8 +79,8 @@ border: 0px solid;
|
|||||||
}
|
}
|
||||||
|
|
||||||
.toggle-switch input[type=checkbox]:checked+label:before {
|
.toggle-switch input[type=checkbox]:checked+label:before {
|
||||||
border-color: $headerBackground;
|
border-color: #314351;
|
||||||
background-color: $headerBackground !important;
|
background-color: #314351!important;
|
||||||
transition: .15s ease-in;
|
transition: .15s ease-in;
|
||||||
transition-property: border-color,background-color;
|
transition-property: border-color,background-color;
|
||||||
}
|
}
|
||||||
@ -171,7 +140,7 @@ border: 0px solid;
|
|||||||
.tooll {
|
.tooll {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
background: #e6b3b3;
|
background: #e6b3b3;
|
||||||
color: $headerBackground;
|
color: #314351;
|
||||||
top: 0px;
|
top: 0px;
|
||||||
height: 36px;
|
height: 36px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -99,11 +99,19 @@
|
|||||||
</clr-dg-cell>
|
</clr-dg-cell>
|
||||||
</clr-dg-row>
|
</clr-dg-row>
|
||||||
|
|
||||||
<clr-dg-footer>
|
<clr-dg-footer class="d-flex justify-content-start">
|
||||||
<clr-dg-pagination #pagination [clrDgPageSize]="10">
|
<span>items per page</span>
|
||||||
<clr-dg-page-size [clrPageSizeOptions]="[3, 5, 10, 15]"
|
<select [(ngModel)]="itemsNum">
|
||||||
>Items per page</clr-dg-page-size
|
<option [ngValue]="3">3</option>
|
||||||
>
|
<option [ngValue]="5">5</option>
|
||||||
|
<option [ngValue]="10">10</option>
|
||||||
|
<option [ngValue]="15">15</option>
|
||||||
|
</select>
|
||||||
|
<clr-dg-pagination
|
||||||
|
#pagination
|
||||||
|
[clrDgPageSize]="itemsNum"
|
||||||
|
class="center"
|
||||||
|
>
|
||||||
{{ pagination.firstItem + 1 }} - {{ pagination.lastItem + 1 }} of
|
{{ pagination.firstItem + 1 }} - {{ pagination.lastItem + 1 }} of
|
||||||
{{ pagination.totalItems }} approvals
|
{{ pagination.totalItems }} approvals
|
||||||
</clr-dg-pagination>
|
</clr-dg-pagination>
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
@import '../../../colors.scss';
|
|
||||||
|
|
||||||
.column-center {
|
.column-center {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@ -15,11 +13,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.tooltip.tooltip-bottom-left>.tooltip-content, .tooltip .tooltip-content.tooltip-bottom-left {
|
.tooltip.tooltip-bottom-left>.tooltip-content, .tooltip .tooltip-content.tooltip-bottom-left {
|
||||||
background: $headerBackground !important;
|
background: #314351!important;
|
||||||
}
|
}
|
||||||
.tooltip.tooltip-bottom-left>.tooltip-content:before, .tooltip .tooltip-content.tooltip-bottom-left:before {
|
.tooltip.tooltip-bottom-left>.tooltip-content:before, .tooltip .tooltip-content.tooltip-bottom-left:before {
|
||||||
border-right: .25rem solid $headerBackground;
|
border-right: .25rem solid #314351;
|
||||||
border-bottom: .20833rem solid $headerBackground;
|
border-bottom: .20833rem solid #314351;
|
||||||
}
|
}
|
||||||
|
|
||||||
.noBorder {
|
.noBorder {
|
||||||
|
@ -72,7 +72,7 @@
|
|||||||
>
|
>
|
||||||
To unlock more than
|
To unlock more than
|
||||||
{{ licenceState.value.history_rows_allowed }} records, contact
|
{{ licenceState.value.history_rows_allowed }} records, contact
|
||||||
support@datacontroller.io
|
support@datacontroller.io
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -86,11 +86,19 @@
|
|||||||
</clr-dg-cell>
|
</clr-dg-cell>
|
||||||
</clr-dg-row>
|
</clr-dg-row>
|
||||||
|
|
||||||
<clr-dg-footer>
|
<clr-dg-footer class="d-flex justify-content-start">
|
||||||
<clr-dg-pagination #pagination [clrDgPageSize]="10">
|
<span>items per page</span>
|
||||||
<clr-dg-page-size [clrPageSizeOptions]="[3, 5, 10, 15]"
|
<select [(ngModel)]="itemsNum">
|
||||||
>Items per page</clr-dg-page-size
|
<option [ngValue]="3">3</option>
|
||||||
>
|
<option [ngValue]="5">5</option>
|
||||||
|
<option [ngValue]="10">10</option>
|
||||||
|
<option [ngValue]="15">15</option>
|
||||||
|
</select>
|
||||||
|
<clr-dg-pagination
|
||||||
|
#pagination
|
||||||
|
[clrDgPageSize]="itemsNum"
|
||||||
|
class="center"
|
||||||
|
>
|
||||||
{{ pagination.firstItem + 1 }} -
|
{{ pagination.firstItem + 1 }} -
|
||||||
{{ pagination.lastItem + 1 }} of
|
{{ pagination.lastItem + 1 }} of
|
||||||
{{ pagination.totalItems }} submissions
|
{{ pagination.totalItems }} submissions
|
||||||
|
@ -1,15 +1,13 @@
|
|||||||
@import '../../../colors.scss';
|
|
||||||
|
|
||||||
.noBorder {
|
.noBorder {
|
||||||
border-bottom: 1px solid transparent!important;
|
border-bottom: 1px solid transparent!important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tooltip.tooltip-bottom-left>.tooltip-content, .tooltip .tooltip-content.tooltip-bottom-left {
|
.tooltip.tooltip-bottom-left>.tooltip-content, .tooltip .tooltip-content.tooltip-bottom-left {
|
||||||
background: $headerBackground !important;
|
background: #314351!important;
|
||||||
}
|
}
|
||||||
.tooltip.tooltip-bottom-left>.tooltip-content:before, .tooltip .tooltip-content.tooltip-bottom-left:before {
|
.tooltip.tooltip-bottom-left>.tooltip-content:before, .tooltip .tooltip-content.tooltip-bottom-left:before {
|
||||||
border-right: .25rem solid $headerBackground;
|
border-right: .25rem solid #314351;
|
||||||
border-bottom: .20833rem solid $headerBackground;
|
border-bottom: .20833rem solid #314351;
|
||||||
}
|
}
|
||||||
|
|
||||||
.no-submitted-tables {
|
.no-submitted-tables {
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
<clr-tree-node *ngIf="roles" class="search-node">
|
<clr-tree-node *ngIf="roles" class="search-node">
|
||||||
<div class="tree-search-wrapper">
|
<div class="tree-search-wrapper">
|
||||||
<input
|
<input
|
||||||
appStealFocus
|
|
||||||
clrInput
|
clrInput
|
||||||
#searchLibTreeInput
|
#searchLibTreeInput
|
||||||
placeholder="Filter by Roles"
|
placeholder="Filter by Roles"
|
||||||
@ -27,7 +26,7 @@
|
|||||||
<clr-tree-node
|
<clr-tree-node
|
||||||
(click)="roleOnClick(role)"
|
(click)="roleOnClick(role)"
|
||||||
*ngIf="!role['hidden']"
|
*ngIf="!role['hidden']"
|
||||||
[class.active]="role.ROLEURI === roleUri"
|
[class.table-active]="role.ROLEURI === roleUri"
|
||||||
>
|
>
|
||||||
<p class="m-0 cursor-pointer list-padding">
|
<p class="m-0 cursor-pointer list-padding">
|
||||||
<clr-icon shape="blocks-group"></clr-icon>
|
<clr-icon shape="blocks-group"></clr-icon>
|
||||||
|
@ -1,61 +1,25 @@
|
|||||||
@import '../../colors.scss';
|
|
||||||
|
|
||||||
::ng-deep body[cds-theme="dark"] {
|
|
||||||
.role {
|
|
||||||
background-color: $headerBackground;
|
|
||||||
border-color: $headerBackground;
|
|
||||||
}
|
|
||||||
|
|
||||||
.role-data {
|
|
||||||
background-color: $headerBackground;
|
|
||||||
border-color: $headerBackground;
|
|
||||||
}
|
|
||||||
|
|
||||||
.member-table tbody{
|
|
||||||
tr:hover{
|
|
||||||
background-color: #29404b;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
::ng-deep body[cds-theme="light"] {
|
|
||||||
.role-info{
|
|
||||||
background-color: #f9f9f9;
|
|
||||||
border-color: #a7a7a7;
|
|
||||||
box-shadow: 0px 2px 5px #dad7d7;
|
|
||||||
}
|
|
||||||
|
|
||||||
.role-data {
|
|
||||||
background-color: #f9f9f9;
|
|
||||||
border-color: #a7a7a7;
|
|
||||||
box-shadow: 0px 2px 5px #dad7d7;
|
|
||||||
}
|
|
||||||
|
|
||||||
.member-table tbody{
|
|
||||||
tr:hover{
|
|
||||||
background-color: #e6e6e6;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar-height{
|
.sidebar-height{
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
.role-info-text{
|
.role-info-text{
|
||||||
display: inline;
|
display: inline;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
}
|
}
|
||||||
.role-info{
|
.role-info{
|
||||||
border: 1px solid;
|
background-color: #f9f9f9;
|
||||||
|
border: 1px solid #a7a7a7;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
|
box-shadow: 0px 2px 5px #dad7d7;
|
||||||
}
|
}
|
||||||
.role-info td{
|
.role-info td{
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.role-data{
|
.role-data{
|
||||||
border: 1px solid;
|
background-color: #f9f9f9;
|
||||||
|
border: 1px solid #a7a7a7;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
|
box-shadow: 0px 2px 5px #dad7d7;
|
||||||
}
|
}
|
||||||
.role-data{
|
.role-data{
|
||||||
min-height: unset;
|
min-height: unset;
|
||||||
@ -64,10 +28,15 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
.member-table{
|
.member-table{
|
||||||
|
background-color: #f9f9f9;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
.member-table thead{
|
||||||
|
background-color: #dadada;
|
||||||
|
}
|
||||||
.member-table tbody{
|
.member-table tbody{
|
||||||
tr:hover{
|
tr:hover{
|
||||||
|
background-color: #e6e6e6;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,7 +4,6 @@ import { HelperService } from '../services/helper.service'
|
|||||||
import { Location } from '@angular/common'
|
import { Location } from '@angular/common'
|
||||||
import { Router, ActivatedRoute } from '@angular/router'
|
import { Router, ActivatedRoute } from '@angular/router'
|
||||||
import { SasService } from '../services/sas.service'
|
import { SasService } from '../services/sas.service'
|
||||||
import { RequestWrapperResponse } from '../models/request-wrapper/RequestWrapperResponse'
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-role',
|
selector: 'app-role',
|
||||||
@ -48,69 +47,61 @@ export class RoleComponent implements OnInit {
|
|||||||
} else {
|
} else {
|
||||||
if (globals.usernav.roleList === undefined) {
|
if (globals.usernav.roleList === undefined) {
|
||||||
this.loading = true
|
this.loading = true
|
||||||
this.sasService
|
this.sasService.request('usernav/userroles', null).then((res: any) => {
|
||||||
.request('usernav/userroles', null)
|
this.loading = false
|
||||||
.then((res: RequestWrapperResponse) => {
|
this.roles = res.roles
|
||||||
this.loading = false
|
globals.usernav.roleList = res.roles
|
||||||
this.roles = res.adapterResponse.roles
|
if (this.paramPresent) {
|
||||||
globals.usernav.roleList = res.adapterResponse.roles
|
if (this.roles !== undefined) {
|
||||||
if (this.paramPresent) {
|
let validRole = this.findRole(this.roles, this.paramURI)
|
||||||
if (this.roles !== undefined) {
|
if (validRole !== false) {
|
||||||
let validRole = this.findRole(this.roles, this.paramURI)
|
this.loading = true
|
||||||
if (validRole !== false) {
|
let data = { iwant: [{ roleid: this.paramURI }] }
|
||||||
this.loading = true
|
this.sasService
|
||||||
let data = { iwant: [{ roleid: this.paramURI }] }
|
.request('usernav/usermembersbyrole', data)
|
||||||
this.sasService
|
.then((res: any) => {
|
||||||
.request('usernav/usermembersbyrole', data)
|
this.loading = false
|
||||||
.then((res: RequestWrapperResponse) => {
|
this.roleMembers = res.sasmembers
|
||||||
this.loading = false
|
this.roleMembersCount = res.sasmembers.length
|
||||||
this.roleMembers = res.adapterResponse.sasmembers
|
this.roleGroups = res.sasgroups
|
||||||
this.roleMembersCount =
|
this.roleGroupsCount = res.sasgroups.length
|
||||||
res.adapterResponse.sasmembers.length
|
this.roleUri = validRole.ROLEURI
|
||||||
this.roleGroups = res.adapterResponse.sasgroups
|
this.roleName = validRole.ROLENAME
|
||||||
this.roleGroupsCount =
|
this.roleDesc = validRole.ROLEDESC
|
||||||
res.adapterResponse.sasgroups.length
|
})
|
||||||
this.roleUri = validRole.ROLEURI
|
|
||||||
this.roleName = validRole.ROLENAME
|
|
||||||
this.roleDesc = validRole.ROLEDESC
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
}
|
||||||
|
})
|
||||||
} else {
|
} else {
|
||||||
this.roles = globals.usernav.roleList
|
this.roles = globals.usernav.roleList
|
||||||
this.roleSearch = globals.usernav.roleSearch
|
this.roleSearch = globals.usernav.roleSearch
|
||||||
this.sasService
|
this.sasService.request('usernav/userroles', null).then((res: any) => {
|
||||||
.request('usernav/userroles', null)
|
this.roles = res.roles
|
||||||
.then((res: RequestWrapperResponse) => {
|
globals.usernav.roleList = res.roles
|
||||||
this.roles = res.adapterResponse.roles
|
|
||||||
globals.usernav.roleList = res.adapterResponse.roles
|
|
||||||
|
|
||||||
if (this.paramPresent) {
|
if (this.paramPresent) {
|
||||||
if (this.roles !== undefined) {
|
if (this.roles !== undefined) {
|
||||||
let validRole = this.findRole(this.roles, this.paramURI)
|
let validRole = this.findRole(this.roles, this.paramURI)
|
||||||
if (validRole !== false) {
|
if (validRole !== false) {
|
||||||
this.loading = true
|
this.loading = true
|
||||||
let data = { iwant: [{ roleid: this.paramURI }] }
|
let data = { iwant: [{ roleid: this.paramURI }] }
|
||||||
this.sasService
|
this.sasService
|
||||||
.request('usernav/usermembersbyrole', data)
|
.request('usernav/usermembersbyrole', data)
|
||||||
.then((res: RequestWrapperResponse) => {
|
.then((res: any) => {
|
||||||
this.loading = false
|
this.loading = false
|
||||||
this.roleMembers = res.adapterResponse.sasmembers
|
this.roleMembers = res.sasmembers
|
||||||
this.roleMembersCount =
|
this.roleMembersCount = res.sasmembers.length
|
||||||
res.adapterResponse.sasmembers.length
|
this.roleGroups = res.sasgroups
|
||||||
this.roleGroups = res.adapterResponse.sasgroups
|
this.roleGroupsCount = res.sasgroups.length
|
||||||
this.roleGroupsCount =
|
this.roleUri = validRole.ROLEURI
|
||||||
res.adapterResponse.sasgroups.length
|
this.roleName = validRole.ROLENAME
|
||||||
this.roleUri = validRole.ROLEURI
|
this.roleDesc = validRole.ROLEDESC
|
||||||
this.roleName = validRole.ROLENAME
|
})
|
||||||
this.roleDesc = validRole.ROLEDESC
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
}
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -134,12 +125,12 @@ export class RoleComponent implements OnInit {
|
|||||||
let data = { iwant: [{ roleid: role.ROLEURI }] }
|
let data = { iwant: [{ roleid: role.ROLEURI }] }
|
||||||
this.sasService
|
this.sasService
|
||||||
.request('usernav/usermembersbyrole', data)
|
.request('usernav/usermembersbyrole', data)
|
||||||
.then((res: RequestWrapperResponse) => {
|
.then((res: any) => {
|
||||||
this.loading = false
|
this.loading = false
|
||||||
this.roleMembers = res.adapterResponse.sasmembers
|
this.roleMembers = res.sasmembers
|
||||||
this.roleMembersCount = res.adapterResponse.sasmembers.length
|
this.roleMembersCount = res.sasmembers.length
|
||||||
this.roleGroups = res.adapterResponse.sasgroups
|
this.roleGroups = res.sasgroups
|
||||||
this.roleGroupsCount = res.adapterResponse.sasgroups.length
|
this.roleGroupsCount = res.sasgroups.length
|
||||||
this.roleUri = role.ROLEURI
|
this.roleUri = role.ROLEURI
|
||||||
this.roleName = role.ROLENAME
|
this.roleName = role.ROLENAME
|
||||||
this.roleDesc = role.ROLEDESC
|
this.roleDesc = role.ROLEDESC
|
||||||
|
@ -1 +0,0 @@
|
|||||||
<router-outlet></router-outlet>
|
|
@ -1,17 +0,0 @@
|
|||||||
import { Component, OnInit, OnDestroy } from '@angular/core'
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector: 'app-home-route',
|
|
||||||
templateUrl: './home-route.component.html',
|
|
||||||
styleUrls: ['./home-route.component.scss'],
|
|
||||||
host: {
|
|
||||||
class: 'content-container'
|
|
||||||
}
|
|
||||||
})
|
|
||||||
export class HomeRouteComponent implements OnInit, OnDestroy {
|
|
||||||
constructor() {}
|
|
||||||
|
|
||||||
ngOnInit() {}
|
|
||||||
|
|
||||||
ngOnDestroy() {}
|
|
||||||
}
|
|
@ -1 +0,0 @@
|
|||||||
<router-outlet></router-outlet>
|
|
@ -1,16 +0,0 @@
|
|||||||
import { Component, OnInit, OnDestroy } from '@angular/core'
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector: 'app-multi-dataset-route',
|
|
||||||
templateUrl: './multi-dataset-route.component.html',
|
|
||||||
host: {
|
|
||||||
class: 'content-container'
|
|
||||||
}
|
|
||||||
})
|
|
||||||
export class MultiDatasetRouteComponent implements OnInit, OnDestroy {
|
|
||||||
constructor() {}
|
|
||||||
|
|
||||||
ngOnInit() {}
|
|
||||||
|
|
||||||
ngOnDestroy() {}
|
|
||||||
}
|
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user