From 002b10ffee14fd773232b4849756f5cb92a6d882 Mon Sep 17 00:00:00 2001 From: Naveen MR Date: Tue, 20 Sep 2022 21:09:40 +0100 Subject: [PATCH] chore: removing nc-lib-gui-backup package --- packages/nc-lib-gui-backup/.gitignore | 11 ---- packages/nc-lib-gui-backup/README.md | 5 -- .../__tests__/xc-tool-web.test.js | 30 ----------- packages/nc-lib-gui-backup/lib/XcLibGui.js | 53 ------------------- packages/nc-lib-gui-backup/license.txt | 22 -------- packages/nc-lib-gui-backup/package.json | 33 ------------ 6 files changed, 154 deletions(-) delete mode 100644 packages/nc-lib-gui-backup/.gitignore delete mode 100644 packages/nc-lib-gui-backup/README.md delete mode 100644 packages/nc-lib-gui-backup/__tests__/xc-tool-web.test.js delete mode 100644 packages/nc-lib-gui-backup/lib/XcLibGui.js delete mode 100644 packages/nc-lib-gui-backup/license.txt delete mode 100644 packages/nc-lib-gui-backup/package.json diff --git a/packages/nc-lib-gui-backup/.gitignore b/packages/nc-lib-gui-backup/.gitignore deleted file mode 100644 index 3c2af479b4..0000000000 --- a/packages/nc-lib-gui-backup/.gitignore +++ /dev/null @@ -1,11 +0,0 @@ -/node_modules/ -#build -src/**.js -.idea/* - -coverage -.nyc_output -*.log - -yarn.lock -/lib/dist/ diff --git a/packages/nc-lib-gui-backup/README.md b/packages/nc-lib-gui-backup/README.md deleted file mode 100644 index e420ed6ca4..0000000000 --- a/packages/nc-lib-gui-backup/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# nc-lib-gui - -This package is the build version of ``nc-gui`` which will be used in ``packages/nocodb``. The built files should be located in ``packages/nc-lib-gui/lib/dist/``. - -To build the frontend and copy the built files to dist directory, run ``npm run build:copy`` under ``packages/nc-gui/``. \ No newline at end of file diff --git a/packages/nc-lib-gui-backup/__tests__/xc-tool-web.test.js b/packages/nc-lib-gui-backup/__tests__/xc-tool-web.test.js deleted file mode 100644 index 786c45c217..0000000000 --- a/packages/nc-lib-gui-backup/__tests__/xc-tool-web.test.js +++ /dev/null @@ -1,30 +0,0 @@ -'use strict'; - -const xcToolWeb = require('..'); - -describe('xc-tool-web', () => { - it('needs tests'); -}); - -/** - * @copyright Copyright (c) 2021, Xgene Cloud Ltd - * - * @author Naveen MR - * @author Pranav C Balan - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - * - */ diff --git a/packages/nc-lib-gui-backup/lib/XcLibGui.js b/packages/nc-lib-gui-backup/lib/XcLibGui.js deleted file mode 100644 index c272353351..0000000000 --- a/packages/nc-lib-gui-backup/lib/XcLibGui.js +++ /dev/null @@ -1,53 +0,0 @@ -const express = require('express'); -const path = require('path'); - - -class XcLibGui { - - constructor(config) { - this.config = config; - } - - expressMiddleware() { - - const router = express.Router(); - router.use('/', express.static(path.join(__dirname, 'dist'))); - return router; - } - - addListener(handler) { - } - - destroy() { - - } - - reInitialize(config) { - this.config = config; - } -} - -module.exports = XcLibGui; - -/** - * @copyright Copyright (c) 2021, Xgene Cloud Ltd - * - * @author Naveen MR - * @author Pranav C Balan - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - * - */ diff --git a/packages/nc-lib-gui-backup/license.txt b/packages/nc-lib-gui-backup/license.txt deleted file mode 100644 index 6a42840830..0000000000 --- a/packages/nc-lib-gui-backup/license.txt +++ /dev/null @@ -1,22 +0,0 @@ -/** - * @copyright Copyright (c) 2021, Xgene Cloud Ltd - * - * @author Naveen MR - * @author Pranav C Balan - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - * - */ diff --git a/packages/nc-lib-gui-backup/package.json b/packages/nc-lib-gui-backup/package.json deleted file mode 100644 index fcb283c579..0000000000 --- a/packages/nc-lib-gui-backup/package.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "name": "nc-lib-gui", - "version": "0.92.4", - "description": "> TODO: description", - "author": "“pranavxc” ", - "homepage": "https://gitlab.com/xgenecloud-ts/xgenecloud-ts#readme", - "license": "AGPL-3.0-or-later", - "main": "lib/XcLibGui.js", - "directories": { - "lib": "lib", - "test": "__tests__" - }, - "files": [ - "lib" - ], - "repository": { - "type": "git", - "url": "git+ssh://git@gitlab.com/xgenecloud-ts/xgenecloud-ts.git" - }, - "scripts": { - "test": "echo \"Error: run tests from root\" && exit 1" - }, - "bugs": { - "url": "https://gitlab.com/xgenecloud-ts/xgenecloud-ts/issues" - }, - "dependencies": { - "axios": "^0.19.2", - "body-parser": "^1.19.0", - "dayjs": "^1.10.4", - "express": "^4.17.1", - "vuedraggable": "^2.24.3" - } -} \ No newline at end of file