mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2024-11-19 01:40:29 +01:00
Sort refresh bug fix
This commit is contained in:
parent
670141a097
commit
6804fc762d
@ -10,11 +10,14 @@
|
|||||||
],
|
],
|
||||||
"parser": "@typescript-eslint/parser",
|
"parser": "@typescript-eslint/parser",
|
||||||
"parserOptions": {
|
"parserOptions": {
|
||||||
"ecmaVersion": 2020,
|
"ecmaVersion": 2022,
|
||||||
"sourceType": "module",
|
"sourceType": "module",
|
||||||
"project": "./tsconfig.json",
|
"project": "./tsconfig.json",
|
||||||
"createDefaultProgram": true
|
"createDefaultProgram": true
|
||||||
},
|
},
|
||||||
|
"env": {
|
||||||
|
"es13": true
|
||||||
|
},
|
||||||
"plugins": ["deprecation"],
|
"plugins": ["deprecation"],
|
||||||
"extends": [
|
"extends": [
|
||||||
"plugin:@angular-eslint/all",
|
"plugin:@angular-eslint/all",
|
||||||
|
79
angular.json
79
angular.json
@ -8,9 +8,6 @@
|
|||||||
"schematics": {
|
"schematics": {
|
||||||
"@schematics/angular:component": {
|
"@schematics/angular:component": {
|
||||||
"style": "scss"
|
"style": "scss"
|
||||||
},
|
|
||||||
"@schematics/angular:application": {
|
|
||||||
"strict": true
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"root": "",
|
"root": "",
|
||||||
@ -20,13 +17,23 @@
|
|||||||
"build": {
|
"build": {
|
||||||
"builder": "@angular-devkit/build-angular:browser",
|
"builder": "@angular-devkit/build-angular:browser",
|
||||||
"options": {
|
"options": {
|
||||||
"baseHref": "/rtl/",
|
|
||||||
"outputPath": "frontend",
|
"outputPath": "frontend",
|
||||||
"index": "src/index.html",
|
"index": "src/index.html",
|
||||||
"main": "src/main.ts",
|
"main": "src/main.ts",
|
||||||
"polyfills": "src/polyfills.ts",
|
"polyfills": [
|
||||||
|
"zone.js"
|
||||||
|
],
|
||||||
"tsConfig": "src/tsconfig.app.json",
|
"tsConfig": "src/tsconfig.app.json",
|
||||||
|
"inlineStyleLanguage": "scss",
|
||||||
|
"assets": [
|
||||||
|
"src/assets"
|
||||||
|
],
|
||||||
|
"styles": [
|
||||||
|
"src/app/shared/theme/styles/styles.scss"
|
||||||
|
],
|
||||||
"allowedCommonJsDependencies": [
|
"allowedCommonJsDependencies": [
|
||||||
|
"buffer",
|
||||||
|
"rfdc",
|
||||||
"sha256",
|
"sha256",
|
||||||
"qrcode",
|
"qrcode",
|
||||||
"otplib",
|
"otplib",
|
||||||
@ -34,60 +41,46 @@
|
|||||||
"pdfmake/build/vfs_fonts",
|
"pdfmake/build/vfs_fonts",
|
||||||
"clone-deep"
|
"clone-deep"
|
||||||
],
|
],
|
||||||
"assets": [
|
"scripts": []
|
||||||
"src/assets"
|
|
||||||
],
|
|
||||||
"styles": [
|
|
||||||
"src/app/shared/theme/styles/styles.scss"
|
|
||||||
],
|
|
||||||
"scripts": [],
|
|
||||||
"vendorChunk": true,
|
|
||||||
"extractLicenses": false,
|
|
||||||
"buildOptimizer": false,
|
|
||||||
"sourceMap": true,
|
|
||||||
"optimization": false,
|
|
||||||
"namedChunks": true
|
|
||||||
},
|
},
|
||||||
"configurations": {
|
"configurations": {
|
||||||
"production": {
|
"production": {
|
||||||
"fileReplacements": [
|
|
||||||
{
|
|
||||||
"replace": "src/environments/environment.ts",
|
|
||||||
"with": "src/environments/environment.prod.ts"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"optimization": true,
|
|
||||||
"outputHashing": "all",
|
|
||||||
"sourceMap": false,
|
|
||||||
"namedChunks": false,
|
|
||||||
"extractLicenses": true,
|
|
||||||
"vendorChunk": false,
|
|
||||||
"buildOptimizer": true,
|
|
||||||
"budgets": [
|
"budgets": [
|
||||||
{
|
{
|
||||||
"type": "initial",
|
"type": "initial",
|
||||||
"maximumWarning": "12mb",
|
"maximumWarning": "20mb",
|
||||||
"maximumError": "12mb"
|
"maximumError": "50mb"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "anyComponentStyle",
|
"type": "anyComponentStyle",
|
||||||
"maximumWarning": "20mb",
|
"maximumWarning": "20mb",
|
||||||
"maximumError": "50mb"
|
"maximumError": "50mb"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"outputHashing": "all"
|
||||||
|
},
|
||||||
|
"development": {
|
||||||
|
"buildOptimizer": false,
|
||||||
|
"optimization": false,
|
||||||
|
"vendorChunk": true,
|
||||||
|
"extractLicenses": false,
|
||||||
|
"sourceMap": true,
|
||||||
|
"namedChunks": true
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"defaultConfiguration": "production"
|
||||||
},
|
},
|
||||||
"serve": {
|
"serve": {
|
||||||
"builder": "@angular-devkit/build-angular:dev-server",
|
"builder": "@angular-devkit/build-angular:dev-server",
|
||||||
"options": {
|
|
||||||
"browserTarget": "RTLApp:build"
|
|
||||||
},
|
|
||||||
"configurations": {
|
"configurations": {
|
||||||
"production": {
|
"production": {
|
||||||
"browserTarget": "RTLApp:build:production"
|
"browserTarget": "RTLApp:build:production"
|
||||||
|
},
|
||||||
|
"development": {
|
||||||
|
"browserTarget": "RTLApp:build:development"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"defaultConfiguration": "development"
|
||||||
},
|
},
|
||||||
"extract-i18n": {
|
"extract-i18n": {
|
||||||
"builder": "@angular-devkit/build-angular:extract-i18n",
|
"builder": "@angular-devkit/build-angular:extract-i18n",
|
||||||
@ -98,10 +91,12 @@
|
|||||||
"test": {
|
"test": {
|
||||||
"builder": "@angular-devkit/build-angular:karma",
|
"builder": "@angular-devkit/build-angular:karma",
|
||||||
"options": {
|
"options": {
|
||||||
"main": "src/test.ts",
|
"polyfills": [
|
||||||
"polyfills": "src/polyfills.ts",
|
"zone.js",
|
||||||
|
"zone.js/testing"
|
||||||
|
],
|
||||||
"tsConfig": "src/tsconfig.spec.json",
|
"tsConfig": "src/tsconfig.spec.json",
|
||||||
"karmaConfig": "src/karma.conf.cjs",
|
"inlineStyleLanguage": "scss",
|
||||||
"assets": [
|
"assets": [
|
||||||
"src/assets"
|
"src/assets"
|
||||||
],
|
],
|
||||||
|
1
frontend/258.82f463c92bfb465c.js
Normal file
1
frontend/258.82f463c92bfb465c.js
Normal file
File diff suppressed because one or more lines are too long
1
frontend/267.6c439858ec5d06c8.js
Normal file
1
frontend/267.6c439858ec5d06c8.js
Normal file
File diff suppressed because one or more lines are too long
@ -69,32 +69,6 @@ MIT
|
|||||||
@angular/router
|
@angular/router
|
||||||
MIT
|
MIT
|
||||||
|
|
||||||
@babel/runtime
|
|
||||||
MIT
|
|
||||||
MIT License
|
|
||||||
|
|
||||||
Copyright (c) 2014-present Sebastian McKenzie and other contributors
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining
|
|
||||||
a copy of this software and associated documentation files (the
|
|
||||||
"Software"), to deal in the Software without restriction, including
|
|
||||||
without limitation the rights to use, copy, modify, merge, publish,
|
|
||||||
distribute, sublicense, and/or sell copies of the Software, and to
|
|
||||||
permit persons to whom the Software is furnished to do so, subject to
|
|
||||||
the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be
|
|
||||||
included in all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
||||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
||||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
||||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
||||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
||||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
||||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
||||||
|
|
||||||
|
|
||||||
@fortawesome/angular-fontawesome
|
@fortawesome/angular-fontawesome
|
||||||
MIT
|
MIT
|
||||||
MIT License
|
MIT License
|
||||||
@ -1057,31 +1031,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|||||||
SOFTWARE.
|
SOFTWARE.
|
||||||
|
|
||||||
|
|
||||||
clone-deep
|
|
||||||
MIT
|
|
||||||
The MIT License (MIT)
|
|
||||||
|
|
||||||
Copyright (c) 2014-2018, Jon Schlinkert.
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in
|
|
||||||
all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
||||||
THE SOFTWARE.
|
|
||||||
|
|
||||||
|
|
||||||
convert-hex
|
convert-hex
|
||||||
|
|
||||||
convert-string
|
convert-string
|
||||||
@ -1251,20 +1200,34 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||||||
|
|
||||||
|
|
||||||
d3-color
|
d3-color
|
||||||
ISC
|
BSD-3-Clause
|
||||||
Copyright 2010-2022 Mike Bostock
|
Copyright 2010-2016 Mike Bostock
|
||||||
|
All rights reserved.
|
||||||
|
|
||||||
Permission to use, copy, modify, and/or distribute this software for any purpose
|
Redistribution and use in source and binary forms, with or without modification,
|
||||||
with or without fee is hereby granted, provided that the above copyright notice
|
are permitted provided that the following conditions are met:
|
||||||
and this permission notice appear in all copies.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
* Redistributions of source code must retain the above copyright notice, this
|
||||||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
list of conditions and the following disclaimer.
|
||||||
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
||||||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
* Redistributions in binary form must reproduce the above copyright notice,
|
||||||
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
this list of conditions and the following disclaimer in the documentation
|
||||||
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
and/or other materials provided with the distribution.
|
||||||
THIS SOFTWARE.
|
|
||||||
|
* Neither the name of the author nor the names of contributors may be used to
|
||||||
|
endorse or promote products derived from this software without specific prior
|
||||||
|
written permission.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||||
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
||||||
|
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||||
|
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||||
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||||
|
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
|
||||||
d3-dispatch
|
d3-dispatch
|
||||||
@ -1392,37 +1355,6 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|||||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
|
||||||
d3-hierarchy
|
|
||||||
BSD-3-Clause
|
|
||||||
Copyright 2010-2016 Mike Bostock
|
|
||||||
All rights reserved.
|
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without modification,
|
|
||||||
are permitted provided that the following conditions are met:
|
|
||||||
|
|
||||||
* Redistributions of source code must retain the above copyright notice, this
|
|
||||||
list of conditions and the following disclaimer.
|
|
||||||
|
|
||||||
* Redistributions in binary form must reproduce the above copyright notice,
|
|
||||||
this list of conditions and the following disclaimer in the documentation
|
|
||||||
and/or other materials provided with the distribution.
|
|
||||||
|
|
||||||
* Neither the name of the author nor the names of contributors may be used to
|
|
||||||
endorse or promote products derived from this software without specific prior
|
|
||||||
written permission.
|
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
||||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
||||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
||||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
|
||||||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
||||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
||||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
||||||
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
||||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
|
|
||||||
|
|
||||||
d3-interpolate
|
d3-interpolate
|
||||||
BSD-3-Clause
|
BSD-3-Clause
|
||||||
Copyright 2010-2016 Mike Bostock
|
Copyright 2010-2016 Mike Bostock
|
||||||
@ -1454,37 +1386,6 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|||||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
|
||||||
d3-path
|
|
||||||
BSD-3-Clause
|
|
||||||
Copyright 2015-2016 Mike Bostock
|
|
||||||
All rights reserved.
|
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without modification,
|
|
||||||
are permitted provided that the following conditions are met:
|
|
||||||
|
|
||||||
* Redistributions of source code must retain the above copyright notice, this
|
|
||||||
list of conditions and the following disclaimer.
|
|
||||||
|
|
||||||
* Redistributions in binary form must reproduce the above copyright notice,
|
|
||||||
this list of conditions and the following disclaimer in the documentation
|
|
||||||
and/or other materials provided with the distribution.
|
|
||||||
|
|
||||||
* Neither the name of the author nor the names of contributors may be used to
|
|
||||||
endorse or promote products derived from this software without specific prior
|
|
||||||
written permission.
|
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
||||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
||||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
||||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
|
||||||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
||||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
||||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
||||||
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
||||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
|
|
||||||
|
|
||||||
d3-scale
|
d3-scale
|
||||||
BSD-3-Clause
|
BSD-3-Clause
|
||||||
Copyright 2010-2015 Mike Bostock
|
Copyright 2010-2015 Mike Bostock
|
||||||
@ -1546,37 +1447,6 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
|||||||
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
|
||||||
d3-shape
|
|
||||||
BSD-3-Clause
|
|
||||||
Copyright 2010-2015 Mike Bostock
|
|
||||||
All rights reserved.
|
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without modification,
|
|
||||||
are permitted provided that the following conditions are met:
|
|
||||||
|
|
||||||
* Redistributions of source code must retain the above copyright notice, this
|
|
||||||
list of conditions and the following disclaimer.
|
|
||||||
|
|
||||||
* Redistributions in binary form must reproduce the above copyright notice,
|
|
||||||
this list of conditions and the following disclaimer in the documentation
|
|
||||||
and/or other materials provided with the distribution.
|
|
||||||
|
|
||||||
* Neither the name of the author nor the names of contributors may be used to
|
|
||||||
endorse or promote products derived from this software without specific prior
|
|
||||||
written permission.
|
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
||||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
||||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
||||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
|
||||||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
||||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
||||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
||||||
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
||||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
|
|
||||||
|
|
||||||
d3-time
|
d3-time
|
||||||
BSD-3-Clause
|
BSD-3-Clause
|
||||||
Copyright 2010-2016 Mike Bostock
|
Copyright 2010-2016 Mike Bostock
|
||||||
@ -1904,80 +1774,6 @@ PERFORMANCE OF THIS SOFTWARE.
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
is-plain-object
|
|
||||||
MIT
|
|
||||||
The MIT License (MIT)
|
|
||||||
|
|
||||||
Copyright (c) 2014-2017, Jon Schlinkert.
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in
|
|
||||||
all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
||||||
THE SOFTWARE.
|
|
||||||
|
|
||||||
|
|
||||||
isobject
|
|
||||||
MIT
|
|
||||||
The MIT License (MIT)
|
|
||||||
|
|
||||||
Copyright (c) 2014-2017, Jon Schlinkert.
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in
|
|
||||||
all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
||||||
THE SOFTWARE.
|
|
||||||
|
|
||||||
kind-of
|
|
||||||
MIT
|
|
||||||
The MIT License (MIT)
|
|
||||||
|
|
||||||
Copyright (c) 2014-2017, Jon Schlinkert.
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in
|
|
||||||
all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
||||||
THE SOFTWARE.
|
|
||||||
|
|
||||||
|
|
||||||
material-design-icons
|
material-design-icons
|
||||||
Apache-2.0
|
Apache-2.0
|
||||||
|
|
||||||
@ -3098,31 +2894,6 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||||||
|
|
||||||
sha256
|
sha256
|
||||||
|
|
||||||
shallow-clone
|
|
||||||
MIT
|
|
||||||
The MIT License (MIT)
|
|
||||||
|
|
||||||
Copyright (c) 2015-present, Jon Schlinkert.
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in
|
|
||||||
all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
||||||
THE SOFTWARE.
|
|
||||||
|
|
||||||
|
|
||||||
stream-browserify
|
stream-browserify
|
||||||
MIT
|
MIT
|
||||||
MIT License
|
MIT License
|
||||||
|
1
frontend/564.456719c78487c8a1.js
Normal file
1
frontend/564.456719c78487c8a1.js
Normal file
File diff suppressed because one or more lines are too long
1
frontend/636.5b9b8a74b97febb5.js
Normal file
1
frontend/636.5b9b8a74b97febb5.js
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,7 +1,7 @@
|
|||||||
<!DOCTYPE html><html lang="en"><head>
|
<!DOCTYPE html><html lang="en"><head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>RTL</title>
|
<title>RTL</title>
|
||||||
<base href="/rtl/">
|
<base href="/">
|
||||||
<meta i18n-content="" name="viewport" content="width=device-width, initial-scale=1">
|
<meta i18n-content="" name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link i18n-sizes="" i18n-rel="" rel="apple-touch-icon" sizes="180x180" href="assets/images/favicon-light/apple-touch-icon.png">
|
<link i18n-sizes="" i18n-rel="" rel="apple-touch-icon" sizes="180x180" href="assets/images/favicon-light/apple-touch-icon.png">
|
||||||
<link i18n-sizes="" i18n-rel="" rel="icon" type="image/png" sizes="32x32" href="assets/images/favicon-light/favicon-32x32.png">
|
<link i18n-sizes="" i18n-rel="" rel="icon" type="image/png" sizes="32x32" href="assets/images/favicon-light/favicon-32x32.png">
|
||||||
@ -10,9 +10,10 @@
|
|||||||
<link i18n-rel="" rel="mask-icon" href="assets/images/favicon-light/safari-pinned-tab.svg" color="#5bbad5">
|
<link i18n-rel="" rel="mask-icon" href="assets/images/favicon-light/safari-pinned-tab.svg" color="#5bbad5">
|
||||||
<meta i18n-content="" name="msapplication-TileColor" content="#da532c">
|
<meta i18n-content="" name="msapplication-TileColor" content="#da532c">
|
||||||
<meta i18n-content="" name="theme-color" content="#ffffff">
|
<meta i18n-content="" name="theme-color" content="#ffffff">
|
||||||
<style>@font-face{font-family:Roboto;src:url(Roboto-Thin.f7a95c9c5999532c.woff2) format("woff2"),url(Roboto-Thin.c13c157cb81e8ebb.woff) format("woff");font-weight:100;font-style:normal}@font-face{font-family:Roboto;src:url(Roboto-ThinItalic.b0e084abf689f393.woff2) format("woff2"),url(Roboto-ThinItalic.1111028df6cea564.woff) format("woff");font-weight:100;font-style:italic}@font-face{font-family:Roboto;src:url(Roboto-Light.0e01b6cd13b3857f.woff2) format("woff2"),url(Roboto-Light.603ca9a537b88428.woff) format("woff");font-weight:300;font-style:normal}@font-face{font-family:Roboto;src:url(Roboto-LightItalic.232ef4b20215f720.woff2) format("woff2"),url(Roboto-LightItalic.1b5e142f787151c8.woff) format("woff");font-weight:300;font-style:italic}@font-face{font-family:Roboto;src:url(Roboto-Regular.475ba9e4e2d63456.woff2) format("woff2"),url(Roboto-Regular.bcefbfee882bc1cb.woff) format("woff");font-weight:400;font-style:normal}@font-face{font-family:Roboto;src:url(Roboto-RegularItalic.e3a9ebdaac06bbc4.woff2) format("woff2"),url(Roboto-RegularItalic.0668fae6af0cf8c2.woff) format("woff");font-weight:400;font-style:italic}@font-face{font-family:Roboto;src:url(Roboto-Medium.457532032ceb0168.woff2) format("woff2"),url(Roboto-Medium.6e1ae5f0b324a0aa.woff) format("woff");font-weight:500;font-style:normal}@font-face{font-family:Roboto;src:url(Roboto-MediumItalic.872f7060602d55d2.woff2) format("woff2"),url(Roboto-MediumItalic.e06fb533801cbb08.woff) format("woff");font-weight:500;font-style:italic}@font-face{font-family:Roboto;src:url(Roboto-Bold.447291a88c067396.woff2) format("woff2"),url(Roboto-Bold.fc482e6133cf5e26.woff) format("woff");font-weight:700;font-style:normal}@font-face{font-family:Roboto;src:url(Roboto-BoldItalic.1b15168ef6fa4e16.woff2) format("woff2"),url(Roboto-BoldItalic.e26ba339b06f09f7.woff) format("woff");font-weight:700;font-style:italic}@font-face{font-family:Roboto;src:url(Roboto-Black.2eaa390d458c877d.woff2) format("woff2"),url(Roboto-Black.b25f67ad8583da68.woff) format("woff");font-weight:900;font-style:normal}@font-face{font-family:Roboto;src:url(Roboto-BlackItalic.7dc03ee444552bc5.woff2) format("woff2"),url(Roboto-BlackItalic.c8dc642467cb3099.woff) format("woff");font-weight:900;font-style:italic}html{width:100%;height:99%;line-height:1.5;overflow-x:hidden;font-family:Roboto,sans-serif!important;font-size:100%}@media only screen and (max-width: 56.25em){html{font-size:90%}}@media only screen and (max-width: 37.5em){html{font-size:80%}}body{box-sizing:border-box;height:100%;margin:0;overflow:hidden}*{margin:0;padding:0}</style><link rel="stylesheet" href="styles.0578a9e27d5fce54.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles.0578a9e27d5fce54.css"></noscript></head>
|
<style>@font-face{font-family:Roboto;src:url(Roboto-Thin.f7a95c9c5999532c.woff2) format("woff2"),url(Roboto-Thin.c13c157cb81e8ebb.woff) format("woff");font-weight:100;font-style:normal}@font-face{font-family:Roboto;src:url(Roboto-ThinItalic.b0e084abf689f393.woff2) format("woff2"),url(Roboto-ThinItalic.1111028df6cea564.woff) format("woff");font-weight:100;font-style:italic}@font-face{font-family:Roboto;src:url(Roboto-Light.0e01b6cd13b3857f.woff2) format("woff2"),url(Roboto-Light.603ca9a537b88428.woff) format("woff");font-weight:300;font-style:normal}@font-face{font-family:Roboto;src:url(Roboto-LightItalic.232ef4b20215f720.woff2) format("woff2"),url(Roboto-LightItalic.1b5e142f787151c8.woff) format("woff");font-weight:300;font-style:italic}@font-face{font-family:Roboto;src:url(Roboto-Regular.475ba9e4e2d63456.woff2) format("woff2"),url(Roboto-Regular.bcefbfee882bc1cb.woff) format("woff");font-weight:400;font-style:normal}@font-face{font-family:Roboto;src:url(Roboto-RegularItalic.e3a9ebdaac06bbc4.woff2) format("woff2"),url(Roboto-RegularItalic.0668fae6af0cf8c2.woff) format("woff");font-weight:400;font-style:italic}@font-face{font-family:Roboto;src:url(Roboto-Medium.457532032ceb0168.woff2) format("woff2"),url(Roboto-Medium.6e1ae5f0b324a0aa.woff) format("woff");font-weight:500;font-style:normal}@font-face{font-family:Roboto;src:url(Roboto-MediumItalic.872f7060602d55d2.woff2) format("woff2"),url(Roboto-MediumItalic.e06fb533801cbb08.woff) format("woff");font-weight:500;font-style:italic}@font-face{font-family:Roboto;src:url(Roboto-Bold.447291a88c067396.woff2) format("woff2"),url(Roboto-Bold.fc482e6133cf5e26.woff) format("woff");font-weight:700;font-style:normal}@font-face{font-family:Roboto;src:url(Roboto-BoldItalic.1b15168ef6fa4e16.woff2) format("woff2"),url(Roboto-BoldItalic.e26ba339b06f09f7.woff) format("woff");font-weight:700;font-style:italic}@font-face{font-family:Roboto;src:url(Roboto-Black.2eaa390d458c877d.woff2) format("woff2"),url(Roboto-Black.b25f67ad8583da68.woff) format("woff");font-weight:900;font-style:normal}@font-face{font-family:Roboto;src:url(Roboto-BlackItalic.7dc03ee444552bc5.woff2) format("woff2"),url(Roboto-BlackItalic.c8dc642467cb3099.woff) format("woff");font-weight:900;font-style:italic}html{width:100%;height:99%;line-height:1.5;overflow-x:hidden;font-family:Roboto,sans-serif!important;font-size:100%}@media only screen and (max-width: 56.25em){html{font-size:90%}}@media only screen and (max-width: 37.5em){html{font-size:80%}}body{box-sizing:border-box;height:100%;margin:0;overflow:hidden}*{margin:0;padding:0}</style><link rel="stylesheet" href="styles.71aa18de11464e29.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles.71aa18de11464e29.css"></noscript></head>
|
||||||
<body>
|
<body>
|
||||||
<rtl-app></rtl-app>
|
<rtl-app></rtl-app>
|
||||||
<script src="runtime.dadfd3aad1e9e884.js" type="module"></script><script src="polyfills.431abf66bb94b761.js" type="module"></script><script src="main.0d1cda8b92ae97ac.js" type="module"></script>
|
<script src="runtime.604114e6d4d7795b.js" type="module"></script><script src="polyfills.08e0233279c8a187.js" type="module"></script><script src="main.8cd5f559f5e04955.js" type="module"></script>
|
||||||
|
<script>window.global = window;</script>
|
||||||
|
|
||||||
</body></html>
|
</body></html>
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
frontend/main.8cd5f559f5e04955.js
Normal file
1
frontend/main.8cd5f559f5e04955.js
Normal file
File diff suppressed because one or more lines are too long
1
frontend/polyfills.08e0233279c8a187.js
Normal file
1
frontend/polyfills.08e0233279c8a187.js
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
frontend/runtime.604114e6d4d7795b.js
Normal file
1
frontend/runtime.604114e6d4d7795b.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
(()=>{"use strict";var e,v={},m={};function r(e){var f=m[e];if(void 0!==f)return f.exports;var t=m[e]={id:e,loaded:!1,exports:{}};return v[e].call(t.exports,t,t.exports,r),t.loaded=!0,t.exports}r.m=v,e=[],r.O=(f,t,i,o)=>{if(!t){var a=1/0;for(n=0;n<e.length;n++){for(var[t,i,o]=e[n],s=!0,l=0;l<t.length;l++)(!1&o||a>=o)&&Object.keys(r.O).every(b=>r.O[b](t[l]))?t.splice(l--,1):(s=!1,o<a&&(a=o));if(s){e.splice(n--,1);var d=i();void 0!==d&&(f=d)}}return f}o=o||0;for(var n=e.length;n>0&&e[n-1][2]>o;n--)e[n]=e[n-1];e[n]=[t,i,o]},r.d=(e,f)=>{for(var t in f)r.o(f,t)&&!r.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:f[t]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce((f,t)=>(r.f[t](e,f),f),[])),r.u=e=>e+"."+{258:"82f463c92bfb465c",267:"6c439858ec5d06c8",564:"456719c78487c8a1",636:"5b9b8a74b97febb5"}[e]+".js",r.miniCssF=e=>{},r.o=(e,f)=>Object.prototype.hasOwnProperty.call(e,f),(()=>{var e={},f="RTLApp:";r.l=(t,i,o,n)=>{if(e[t])e[t].push(i);else{var a,s;if(void 0!==o)for(var l=document.getElementsByTagName("script"),d=0;d<l.length;d++){var u=l[d];if(u.getAttribute("src")==t||u.getAttribute("data-webpack")==f+o){a=u;break}}a||(s=!0,(a=document.createElement("script")).type="module",a.charset="utf-8",a.timeout=120,r.nc&&a.setAttribute("nonce",r.nc),a.setAttribute("data-webpack",f+o),a.src=r.tu(t)),e[t]=[i];var c=(g,b)=>{a.onerror=a.onload=null,clearTimeout(p);var h=e[t];if(delete e[t],a.parentNode&&a.parentNode.removeChild(a),h&&h.forEach(y=>y(b)),g)return g(b)},p=setTimeout(c.bind(null,void 0,{type:"timeout",target:a}),12e4);a.onerror=c.bind(null,a.onerror),a.onload=c.bind(null,a.onload),s&&document.head.appendChild(a)}}})(),r.r=e=>{typeof Symbol<"u"&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),(()=>{var e;r.tt=()=>(void 0===e&&(e={createScriptURL:f=>f},typeof trustedTypes<"u"&&trustedTypes.createPolicy&&(e=trustedTypes.createPolicy("angular#bundler",e))),e)})(),r.tu=e=>r.tt().createScriptURL(e),r.p="",(()=>{var e={666:0};r.f.j=(i,o)=>{var n=r.o(e,i)?e[i]:void 0;if(0!==n)if(n)o.push(n[2]);else if(666!=i){var a=new Promise((u,c)=>n=e[i]=[u,c]);o.push(n[2]=a);var s=r.p+r.u(i),l=new Error;r.l(s,u=>{if(r.o(e,i)&&(0!==(n=e[i])&&(e[i]=void 0),n)){var c=u&&("load"===u.type?"missing":u.type),p=u&&u.target&&u.target.src;l.message="Loading chunk "+i+" failed.\n("+c+": "+p+")",l.name="ChunkLoadError",l.type=c,l.request=p,n[1](l)}},"chunk-"+i,i)}else e[i]=0},r.O.j=i=>0===e[i];var f=(i,o)=>{var l,d,[n,a,s]=o,u=0;if(n.some(p=>0!==e[p])){for(l in a)r.o(a,l)&&(r.m[l]=a[l]);if(s)var c=s(r)}for(i&&i(o);u<n.length;u++)r.o(e,d=n[u])&&e[d]&&e[d][0](),e[d]=0;return r.O(c)},t=self.webpackChunkRTLApp=self.webpackChunkRTLApp||[];t.forEach(f.bind(null,0)),t.push=f.bind(null,t.push.bind(t))})()})();
|
@ -1,2 +0,0 @@
|
|||||||
(()=>{"use strict";var e,b={},v={};function r(e){var n=v[e];if(void 0!==n)return n.exports;var t=v[e]={id:e,loaded:!1,exports:{}};return b[e].call(t.exports,t,t.exports,r),t.loaded=!0,t.exports}r.m=b,e=[],r.O=(n,t,o,u)=>{if(!t){var a=1/0;for(i=0;i<e.length;i++){for(var[t,o,u]=e[i],c=!0,l=0;l<t.length;l++)(!1&u||a>=u)&&Object.keys(r.O).every(_=>r.O[_](t[l]))?t.splice(l--,1):(c=!1,u<a&&(a=u));if(c){e.splice(i--,1);var d=o();void 0!==d&&(n=d)}}return n}u=u||0;for(var i=e.length;i>0&&e[i-1][2]>u;i--)e[i]=e[i-1];e[i]=[t,o,u]},r.n=e=>{var n=e&&e.__esModule?()=>e.default:()=>e;return r.d(n,{a:n}),n},r.d=(e,n)=>{for(var t in n)r.o(n,t)&&!r.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:n[t]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce((n,t)=>(r.f[t](e,n),n),[])),r.u=e=>e+"."+{"default-src_app_shared_components_currency-unit-converter_currency-unit-converter_component_t-449cdf":"543af94869d5dcec",src_app_lnd_lnd_module_ts:"81fa6b022cfd48d1",src_app_cln_cln_module_ts:"6ff5d51862cd2fdd",src_app_eclair_ecl_module_ts:"bf14f5e7d19c13dd"}[e]+".js",r.miniCssF=e=>{},r.o=(e,n)=>Object.prototype.hasOwnProperty.call(e,n),(()=>{var e={},n="RTLApp:";r.l=(t,o,u,i)=>{if(e[t])e[t].push(o);else{var a,c;if(void 0!==u)for(var l=document.getElementsByTagName("script"),d=0;d<l.length;d++){var f=l[d];if(f.getAttribute("src")==t||f.getAttribute("data-webpack")==n+u){a=f;break}}a||(c=!0,(a=document.createElement("script")).type="module",a.charset="utf-8",a.timeout=120,r.nc&&a.setAttribute("nonce",r.nc),a.setAttribute("data-webpack",n+u),a.src=r.tu(t)),e[t]=[o];var s=(m,_)=>{a.onerror=a.onload=null,clearTimeout(p);var g=e[t];if(delete e[t],a.parentNode&&a.parentNode.removeChild(a),g&&g.forEach(h=>h(_)),m)return m(_)},p=setTimeout(s.bind(null,void 0,{type:"timeout",target:a}),12e4);a.onerror=s.bind(null,a.onerror),a.onload=s.bind(null,a.onload),c&&document.head.appendChild(a)}}})(),r.r=e=>{typeof Symbol<"u"&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),(()=>{var e;r.tt=()=>(void 0===e&&(e={createScriptURL:n=>n},typeof trustedTypes<"u"&&trustedTypes.createPolicy&&(e=trustedTypes.createPolicy("angular#bundler",e))),e)})(),r.tu=e=>r.tt().createScriptURL(e),r.p="",(()=>{var e={runtime:0};r.f.j=(o,u)=>{var i=r.o(e,o)?e[o]:void 0;if(0!==i)if(i)u.push(i[2]);else if("runtime"!=o){var a=new Promise((f,s)=>i=e[o]=[f,s]);u.push(i[2]=a);var c=r.p+r.u(o),l=new Error;r.l(c,f=>{if(r.o(e,o)&&(0!==(i=e[o])&&(e[o]=void 0),i)){var s=f&&("load"===f.type?"missing":f.type),p=f&&f.target&&f.target.src;l.message="Loading chunk "+o+" failed.\n("+s+": "+p+")",l.name="ChunkLoadError",l.type=s,l.request=p,i[1](l)}},"chunk-"+o,o)}else e[o]=0},r.O.j=o=>0===e[o];var n=(o,u)=>{var l,d,[i,a,c]=u,f=0;if(i.some(p=>0!==e[p])){for(l in a)r.o(a,l)&&(r.m[l]=a[l]);if(c)var s=c(r)}for(o&&o(u);f<i.length;f++)d=i[f],r.o(e,d)&&e[d]&&e[d][0](),e[d]=0;return r.O(s)},t=self.webpackChunkRTLApp=self.webpackChunkRTLApp||[];t.forEach(n.bind(null,0)),t.push=n.bind(null,t.push.bind(t))})()})();
|
|
||||||
//# sourceMappingURL=runtime.dadfd3aad1e9e884.js.map
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
frontend/styles.71aa18de11464e29.css
Normal file
1
frontend/styles.71aa18de11464e29.css
Normal file
File diff suppressed because one or more lines are too long
623
package-lock.json
generated
623
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
24
package.json
24
package.json
@ -8,8 +8,8 @@
|
|||||||
"start": "ng serve --open",
|
"start": "ng serve --open",
|
||||||
"prebuildfrontendtest": "node src/prebuild.cjs",
|
"prebuildfrontendtest": "node src/prebuild.cjs",
|
||||||
"prebuildfrontend": "node src/prebuild.cjs",
|
"prebuildfrontend": "node src/prebuild.cjs",
|
||||||
"buildfrontendtest": "ng test --watch=false && ng build --configuration production --named-chunks --verbose --build-optimizer=false --source-map",
|
"buildfrontendtest": "ng test --watch=false && ng build",
|
||||||
"buildfrontend": "ng build --configuration production --named-chunks --verbose --build-optimizer=false --source-map",
|
"buildfrontend": "ng build --configuration production",
|
||||||
"buildbackend": "tsc --project tsconfig.json",
|
"buildbackend": "tsc --project tsconfig.json",
|
||||||
"watchbackend": "tsc --project tsconfig.json --watch",
|
"watchbackend": "tsc --project tsconfig.json --watch",
|
||||||
"server": "set NODE_ENV=development&&nodemon --watch backend --watch server ./rtl.js",
|
"server": "set NODE_ENV=development&&nodemon --watch backend --watch server ./rtl.js",
|
||||||
@ -21,12 +21,21 @@
|
|||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@angular/animations": "^15.0.0",
|
||||||
|
"@angular/common": "^15.0.0",
|
||||||
|
"@angular/compiler": "^15.0.0",
|
||||||
|
"@angular/core": "^15.0.0",
|
||||||
|
"@angular/forms": "^15.0.0",
|
||||||
|
"@angular/platform-browser": "^15.0.0",
|
||||||
|
"@angular/platform-browser-dynamic": "^15.0.0",
|
||||||
|
"@angular/router": "^15.0.0",
|
||||||
"@ngrx/effects": "^15.0.0",
|
"@ngrx/effects": "^15.0.0",
|
||||||
"@ngrx/store": "^15.0.0",
|
"@ngrx/store": "^15.0.0",
|
||||||
"@swimlane/ngx-charts": "^20.1.2",
|
"@swimlane/ngx-charts": "^20.1.2",
|
||||||
"angular-user-idle": "^3.0.0",
|
"angular-user-idle": "^3.0.0",
|
||||||
"atob": "^2.1.2",
|
"atob": "^2.1.2",
|
||||||
"cookie-parser": "^1.4.6",
|
"cookie-parser": "^1.4.6",
|
||||||
|
"crypto-browserify": "^3.12.0",
|
||||||
"csurf": "^1.11.0",
|
"csurf": "^1.11.0",
|
||||||
"express": "^4.18.2",
|
"express": "^4.18.2",
|
||||||
"express-session": "^1.17.3",
|
"express-session": "^1.17.3",
|
||||||
@ -40,6 +49,7 @@
|
|||||||
"request-promise": "^4.2.6",
|
"request-promise": "^4.2.6",
|
||||||
"rxjs": "~7.5.0",
|
"rxjs": "~7.5.0",
|
||||||
"sha256": "^0.2.0",
|
"sha256": "^0.2.0",
|
||||||
|
"stream-browserify": "^3.0.0",
|
||||||
"tslib": "^2.3.0",
|
"tslib": "^2.3.0",
|
||||||
"ws": "^8.11.0",
|
"ws": "^8.11.0",
|
||||||
"zone.js": "~0.12.0"
|
"zone.js": "~0.12.0"
|
||||||
@ -51,19 +61,11 @@
|
|||||||
"@angular-eslint/eslint-plugin-template": "^15.1.0",
|
"@angular-eslint/eslint-plugin-template": "^15.1.0",
|
||||||
"@angular-eslint/schematics": "^15.1.0",
|
"@angular-eslint/schematics": "^15.1.0",
|
||||||
"@angular-eslint/template-parser": "^15.1.0",
|
"@angular-eslint/template-parser": "^15.1.0",
|
||||||
"@angular/animations": "^15.0.2",
|
|
||||||
"@angular/cdk": "^15.0.1",
|
"@angular/cdk": "^15.0.1",
|
||||||
"@angular/cli": "~15.0.1",
|
"@angular/cli": "~15.0.1",
|
||||||
"@angular/common": "^15.0.0",
|
|
||||||
"@angular/compiler": "^15.0.0",
|
|
||||||
"@angular/compiler-cli": "^15.0.0",
|
"@angular/compiler-cli": "^15.0.0",
|
||||||
"@angular/core": "^15.0.0",
|
|
||||||
"@angular/flex-layout": "^14.0.0-beta.41",
|
"@angular/flex-layout": "^14.0.0-beta.41",
|
||||||
"@angular/forms": "^15.0.0",
|
|
||||||
"@angular/material": "^15.0.1",
|
"@angular/material": "^15.0.1",
|
||||||
"@angular/platform-browser": "^15.0.0",
|
|
||||||
"@angular/platform-browser-dynamic": "^15.0.0",
|
|
||||||
"@angular/router": "^15.0.0",
|
|
||||||
"@fortawesome/angular-fontawesome": "^0.12.0",
|
"@fortawesome/angular-fontawesome": "^0.12.0",
|
||||||
"@fortawesome/fontawesome-svg-core": "^6.2.1",
|
"@fortawesome/fontawesome-svg-core": "^6.2.1",
|
||||||
"@fortawesome/free-regular-svg-icons": "^6.2.1",
|
"@fortawesome/free-regular-svg-icons": "^6.2.1",
|
||||||
@ -73,7 +75,6 @@
|
|||||||
"@types/node": "^18.11.13",
|
"@types/node": "^18.11.13",
|
||||||
"@typescript-eslint/eslint-plugin": "^5.44.0",
|
"@typescript-eslint/eslint-plugin": "^5.44.0",
|
||||||
"@typescript-eslint/parser": "^5.44.0",
|
"@typescript-eslint/parser": "^5.44.0",
|
||||||
"crypto-browserify": "^3.12.0",
|
|
||||||
"dotenv": "^16.0.3",
|
"dotenv": "^16.0.3",
|
||||||
"eslint": "^8.28.0",
|
"eslint": "^8.28.0",
|
||||||
"eslint-plugin-deprecation": "^1.3.3",
|
"eslint-plugin-deprecation": "^1.3.3",
|
||||||
@ -88,7 +89,6 @@
|
|||||||
"nodemon": "^2.0.20",
|
"nodemon": "^2.0.20",
|
||||||
"protractor": "^7.0.0",
|
"protractor": "^7.0.0",
|
||||||
"roboto-fontface": "^0.10.0",
|
"roboto-fontface": "^0.10.0",
|
||||||
"stream-browserify": "^3.0.0",
|
|
||||||
"ts-node": "^10.9.1",
|
"ts-node": "^10.9.1",
|
||||||
"typescript": "~4.8.4"
|
"typescript": "~4.8.4"
|
||||||
}
|
}
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="table-container mb-6" [perfectScrollbar]>
|
<div class="table-container mb-6" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="flgLoading[0]===true" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="flgLoading[0]===true" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table matSort [dataSource]="qrHops" [ngClass]="{'overflow-auto error-border': flgLoading[0]==='error','overflow-auto': true}">
|
<table #table mat-table matSort [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="qrHops" [ngClass]="{'overflow-auto error-border': flgLoading[0]==='error','overflow-auto': true}">
|
||||||
<ng-container matColumnDef="id">
|
<ng-container matColumnDef="id">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header>ID</th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header>ID</th>
|
||||||
<td *matCellDef="let hop" mat-cell>
|
<td *matCellDef="let hop" mat-cell>
|
||||||
|
@ -66,7 +66,6 @@ export class CLNQueryRoutesComponent implements OnInit, OnDestroy {
|
|||||||
}
|
}
|
||||||
this.qrHops.sort = this.sort;
|
this.qrHops.sort = this.sort;
|
||||||
this.qrHops.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
this.qrHops.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
||||||
this.qrHops.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -68,7 +68,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="listNodesCallStatus === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="listNodesCallStatus === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table matSort [dataSource]="liquidityNodes" [ngClass]="{'error-border': errorMessage !== ''}">
|
<table #table mat-table matSort [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="liquidityNodes" [ngClass]="{'error-border': errorMessage !== ''}">
|
||||||
<ng-container matColumnDef="alias">
|
<ng-container matColumnDef="alias">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header>Alias</th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header>Alias</th>
|
||||||
<td *matCellDef="let lqNode" mat-cell>
|
<td *matCellDef="let lqNode" mat-cell>
|
||||||
|
@ -185,9 +185,8 @@ export class CLNLiquidityAdsListComponent implements OnInit, OnDestroy {
|
|||||||
|
|
||||||
loadLiqNodesTable(liqNodes: LookupNode[]) {
|
loadLiqNodesTable(liqNodes: LookupNode[]) {
|
||||||
this.liquidityNodes = new MatTableDataSource<LookupNode>([...liqNodes]);
|
this.liquidityNodes = new MatTableDataSource<LookupNode>([...liqNodes]);
|
||||||
this.liquidityNodes.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
|
||||||
this.liquidityNodes.sort = this.sort;
|
this.liquidityNodes.sort = this.sort;
|
||||||
this.liquidityNodes.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
this.liquidityNodes.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
||||||
this.setFilterPredicate();
|
this.setFilterPredicate();
|
||||||
this.applyFilter();
|
this.applyFilter();
|
||||||
this.liquidityNodes.paginator = this.paginator;
|
this.liquidityNodes.paginator = this.paginator;
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
<div fxLayout="row" fxLayoutAlign="start start">
|
<div fxLayout="row" fxLayoutAlign="start start">
|
||||||
<div class="table-container" fxFlex="100" [perfectScrollbar]>
|
<div class="table-container" fxFlex="100" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus?.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus?.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table matSort [dataSource]="listUTXOs" [ngClass]="{'error-border': errorMessage !== ''}">
|
<table #table mat-table matSort [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="listUTXOs" [ngClass]="{'error-border': errorMessage !== ''}">
|
||||||
<ng-container matColumnDef="is_dust">
|
<ng-container matColumnDef="is_dust">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header arrowPosition="before" matTooltip="Dust/Nondust"></th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header arrowPosition="before" matTooltip="Dust/Nondust"></th>
|
||||||
<td *matCellDef="let utxo" mat-cell>
|
<td *matCellDef="let utxo" mat-cell>
|
||||||
|
@ -176,14 +176,13 @@ export class CLNOnChainUtxosComponent implements OnInit, AfterViewInit, OnDestro
|
|||||||
|
|
||||||
loadUTXOsTable(utxos: any[]) {
|
loadUTXOsTable(utxos: any[]) {
|
||||||
this.listUTXOs = new MatTableDataSource<UTXO>([...utxos]);
|
this.listUTXOs = new MatTableDataSource<UTXO>([...utxos]);
|
||||||
|
this.listUTXOs.sort = this.sort;
|
||||||
this.listUTXOs.sortingDataAccessor = (data: UTXO, sortHeaderId: string) => {
|
this.listUTXOs.sortingDataAccessor = (data: UTXO, sortHeaderId: string) => {
|
||||||
switch (sortHeaderId) {
|
switch (sortHeaderId) {
|
||||||
case 'is_dust': return +(data.value || 0) < this.dustAmount;
|
case 'is_dust': return +(data.value || 0) < this.dustAmount;
|
||||||
default: return (data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null;
|
default: return (data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
this.listUTXOs.sort = this.sort;
|
|
||||||
this.listUTXOs.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
|
||||||
this.listUTXOs.paginator = this.paginator;
|
this.listUTXOs.paginator = this.paginator;
|
||||||
this.setFilterPredicate();
|
this.setFilterPredicate();
|
||||||
this.applyFilter();
|
this.applyFilter();
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<div fxLayout="row" fxLayoutAlign="start center" fxFlex="100" class="table-container w-100" [perfectScrollbar]>
|
<div fxLayout="row" fxLayoutAlign="start center" fxFlex="100" class="table-container w-100" [perfectScrollbar]>
|
||||||
<table #table mat-table matSort [dataSource]="channels" [ngClass]="{'error-border': errorMessage !== ''}">
|
<table #table mat-table matSort [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="channels" [ngClass]="{'error-border': errorMessage !== ''}">
|
||||||
<ng-container matColumnDef="private">
|
<ng-container matColumnDef="private">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header matTooltip="Private"></th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header matTooltip="Private"></th>
|
||||||
<td *matCellDef="let channel" mat-cell>
|
<td *matCellDef="let channel" mat-cell>
|
||||||
|
@ -317,7 +317,6 @@ export class CLNChannelOpenTableComponent implements OnInit, AfterViewInit, OnDe
|
|||||||
this.channels = new MatTableDataSource<Channel>([...mychannels]);
|
this.channels = new MatTableDataSource<Channel>([...mychannels]);
|
||||||
this.channels.sort = this.sort;
|
this.channels.sort = this.sort;
|
||||||
this.channels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
this.channels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
||||||
this.channels.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
|
||||||
this.channels.paginator = this.paginator;
|
this.channels.paginator = this.paginator;
|
||||||
this.setFilterPredicate();
|
this.setFilterPredicate();
|
||||||
this.applyFilter();
|
this.applyFilter();
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<div fxLayout="row" fxLayoutAlign="start center" fxFlex="100" class="table-container w-100" [perfectScrollbar]>
|
<div fxLayout="row" fxLayoutAlign="start center" fxFlex="100" class="table-container w-100" [perfectScrollbar]>
|
||||||
<table #table mat-table matSort [dataSource]="channels" [ngClass]="{'error-border': errorMessage !== ''}">
|
<table #table mat-table matSort [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="channels" [ngClass]="{'error-border': errorMessage !== ''}">
|
||||||
<ng-container matColumnDef="private">
|
<ng-container matColumnDef="private">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header matTooltip="Private"></th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header matTooltip="Private"></th>
|
||||||
<td *matCellDef="let channel" mat-cell>
|
<td *matCellDef="let channel" mat-cell>
|
||||||
|
@ -227,7 +227,6 @@ export class CLNChannelPendingTableComponent implements OnInit, AfterViewInit, O
|
|||||||
return (data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null;
|
return (data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
this.channels.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
|
||||||
this.channels.paginator = this.paginator;
|
this.channels.paginator = this.paginator;
|
||||||
this.setFilterPredicate();
|
this.setFilterPredicate();
|
||||||
this.applyFilter();
|
this.applyFilter();
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table matSort class="overflow-x-hidden overflow-y-hidden" [dataSource]="peers" [ngClass]="{'error-border': errorMessage !== ''}">
|
<table #table mat-table matSort class="overflow-x-hidden overflow-y-hidden" [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="peers" [ngClass]="{'error-border': errorMessage !== ''}">
|
||||||
<ng-container matColumnDef="connected">
|
<ng-container matColumnDef="connected">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header arrowPosition="before" matTooltip="Connected"></th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header arrowPosition="before" matTooltip="Connected"></th>
|
||||||
<td *matCellDef="let peer" mat-cell>
|
<td *matCellDef="let peer" mat-cell>
|
||||||
|
@ -225,6 +225,7 @@ export class CLNPeersComponent implements OnInit, AfterViewInit, OnDestroy {
|
|||||||
|
|
||||||
loadPeersTable(peersArr: Peer[]) {
|
loadPeersTable(peersArr: Peer[]) {
|
||||||
this.peers = new MatTableDataSource<Peer>([...peersArr]);
|
this.peers = new MatTableDataSource<Peer>([...peersArr]);
|
||||||
|
this.peers.sort = this.sort;
|
||||||
this.peers.sortingDataAccessor = (data: any, sortHeaderId: string) => {
|
this.peers.sortingDataAccessor = (data: any, sortHeaderId: string) => {
|
||||||
switch (sortHeaderId) {
|
switch (sortHeaderId) {
|
||||||
case 'netaddr':
|
case 'netaddr':
|
||||||
@ -238,8 +239,6 @@ export class CLNPeersComponent implements OnInit, AfterViewInit, OnDestroy {
|
|||||||
default: return (data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null;
|
default: return (data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
this.peers.sort = this.sort;
|
|
||||||
this.peers.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
|
||||||
this.peers.paginator = this.paginator;
|
this.peers.paginator = this.paginator;
|
||||||
this.setFilterPredicate();
|
this.setFilterPredicate();
|
||||||
this.applyFilter();
|
this.applyFilter();
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div *ngIf="errorMessage === ''" fxLayout="column" fxLayoutAlign="start center" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div *ngIf="errorMessage === ''" fxLayout="column" fxLayoutAlign="start center" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus?.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus?.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table fxFlex="100" matSort class="overflow-auto" [dataSource]="failedForwardingEvents">
|
<table #table mat-table fxFlex="100" matSort class="overflow-auto" [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="failedForwardingEvents">
|
||||||
<ng-container matColumnDef="received_time">
|
<ng-container matColumnDef="received_time">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header>Received Time</th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header>Received Time</th>
|
||||||
<td *matCellDef="let fhEvent" mat-cell>{{(fhEvent?.received_time * 1000) | date:'dd/MMM/y HH:mm'}}</td>
|
<td *matCellDef="let fhEvent" mat-cell>{{(fhEvent?.received_time * 1000) | date:'dd/MMM/y HH:mm'}}</td>
|
||||||
|
@ -172,7 +172,6 @@ export class CLNFailedTransactionsComponent implements OnInit, AfterViewInit, On
|
|||||||
this.failedForwardingEvents = new MatTableDataSource<ForwardingEvent>([...forwardingEvents]);
|
this.failedForwardingEvents = new MatTableDataSource<ForwardingEvent>([...forwardingEvents]);
|
||||||
this.failedForwardingEvents.sort = this.sort;
|
this.failedForwardingEvents.sort = this.sort;
|
||||||
this.failedForwardingEvents.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
this.failedForwardingEvents.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
||||||
this.failedForwardingEvents.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
|
||||||
this.failedForwardingEvents.paginator = this.paginator;
|
this.failedForwardingEvents.paginator = this.paginator;
|
||||||
this.setFilterPredicate();
|
this.setFilterPredicate();
|
||||||
this.applyFilter();
|
this.applyFilter();
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div *ngIf="errorMessage === ''" fxLayout="column" fxLayoutAlign="start center" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div *ngIf="errorMessage === ''" fxLayout="column" fxLayoutAlign="start center" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus?.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus?.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table fxFlex="100" matSort class="overflow-auto" [dataSource]="forwardingHistoryEvents">
|
<table #table mat-table fxFlex="100" matSort class="overflow-auto" [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="forwardingHistoryEvents">
|
||||||
<ng-container matColumnDef="received_time">
|
<ng-container matColumnDef="received_time">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header>Received Time</th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header>Received Time</th>
|
||||||
<td *matCellDef="let fhEvent" mat-cell>{{(fhEvent?.received_time * 1000) | date:'dd/MMM/y HH:mm'}}</td>
|
<td *matCellDef="let fhEvent" mat-cell>{{(fhEvent?.received_time * 1000) | date:'dd/MMM/y HH:mm'}}</td>
|
||||||
|
@ -198,7 +198,6 @@ export class CLNForwardingHistoryComponent implements OnInit, OnChanges, AfterVi
|
|||||||
this.forwardingHistoryEvents = new MatTableDataSource<ForwardingEvent>([...forwardingEvents]);
|
this.forwardingHistoryEvents = new MatTableDataSource<ForwardingEvent>([...forwardingEvents]);
|
||||||
this.forwardingHistoryEvents.sort = this.sort;
|
this.forwardingHistoryEvents.sort = this.sort;
|
||||||
this.forwardingHistoryEvents.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
this.forwardingHistoryEvents.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
||||||
this.forwardingHistoryEvents.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
|
||||||
this.forwardingHistoryEvents.paginator = this.paginator;
|
this.forwardingHistoryEvents.paginator = this.paginator;
|
||||||
this.setFilterPredicate();
|
this.setFilterPredicate();
|
||||||
this.applyFilter();
|
this.applyFilter();
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div *ngIf="errorMessage === ''" fxLayout="column" fxLayoutAlign="start center" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div *ngIf="errorMessage === ''" fxLayout="column" fxLayoutAlign="start center" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus?.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus?.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table fxFlex="100" matSort class="overflow-auto" [dataSource]="failedLocalForwardingEvents">
|
<table #table mat-table fxFlex="100" matSort class="overflow-auto" [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="failedLocalForwardingEvents">
|
||||||
<ng-container matColumnDef="received_time">
|
<ng-container matColumnDef="received_time">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header>Received Time</th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header>Received Time</th>
|
||||||
<td *matCellDef="let fhEvent" mat-cell>{{(fhEvent?.received_time * 1000) | date:'dd/MMM/y HH:mm'}}</td>
|
<td *matCellDef="let fhEvent" mat-cell>{{(fhEvent?.received_time * 1000) | date:'dd/MMM/y HH:mm'}}</td>
|
||||||
|
@ -175,7 +175,6 @@ export class CLNLocalFailedTransactionsComponent implements OnInit, AfterViewIni
|
|||||||
return (data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null;
|
return (data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
this.failedLocalForwardingEvents.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
|
||||||
this.failedLocalForwardingEvents.paginator = this.paginator;
|
this.failedLocalForwardingEvents.paginator = this.paginator;
|
||||||
this.setFilterPredicate();
|
this.setFilterPredicate();
|
||||||
this.applyFilter();
|
this.applyFilter();
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div fxLayout="column" fxLayoutAlign="start stretch" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div fxLayout="column" fxLayoutAlign="start stretch" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus?.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus?.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #tableIn mat-table matSort class="overflow-auto incoming-table" [dataSource]="routingPeersIncoming">
|
<table #tableIn mat-table matSort class="overflow-auto incoming-table" [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="routingPeersIncoming">
|
||||||
<ng-container matColumnDef="channel_id">
|
<ng-container matColumnDef="channel_id">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header>Channel ID</th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header>Channel ID</th>
|
||||||
<td *matCellDef="let rPeer" mat-cell>
|
<td *matCellDef="let rPeer" mat-cell>
|
||||||
@ -81,7 +81,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div fxLayout="column" fxLayoutAlign="start end" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div fxLayout="column" fxLayoutAlign="start end" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus?.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus?.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #tableOut mat-table matSort class="overflow-auto outgoing-table" [dataSource]="routingPeersOutgoing">
|
<table #tableOut mat-table matSort class="overflow-auto outgoing-table" [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="routingPeersOutgoing">
|
||||||
<ng-container matColumnDef="channel_id">
|
<ng-container matColumnDef="channel_id">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header>Channel ID</th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header>Channel ID</th>
|
||||||
<td *matCellDef="let rPeer" mat-cell>
|
<td *matCellDef="let rPeer" mat-cell>
|
||||||
|
@ -162,12 +162,10 @@ export class CLNRoutingPeersComponent implements OnInit, OnChanges, AfterViewIni
|
|||||||
const results = this.groupRoutingPeers(events);
|
const results = this.groupRoutingPeers(events);
|
||||||
this.routingPeersIncoming = new MatTableDataSource<RoutingPeer[]>(results[0]);
|
this.routingPeersIncoming = new MatTableDataSource<RoutingPeer[]>(results[0]);
|
||||||
this.routingPeersIncoming.sort = this.sortIn;
|
this.routingPeersIncoming.sort = this.sortIn;
|
||||||
this.routingPeersIncoming.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
|
||||||
this.routingPeersIncoming.paginator = this.paginatorIn;
|
this.routingPeersIncoming.paginator = this.paginatorIn;
|
||||||
this.logger.info(this.routingPeersIncoming);
|
this.logger.info(this.routingPeersIncoming);
|
||||||
this.routingPeersOutgoing = new MatTableDataSource<RoutingPeer[]>(results[1]);
|
this.routingPeersOutgoing = new MatTableDataSource<RoutingPeer[]>(results[1]);
|
||||||
this.routingPeersOutgoing.sort = this.sortOut;
|
this.routingPeersOutgoing.sort = this.sortOut;
|
||||||
this.routingPeersOutgoing.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
|
||||||
this.routingPeersOutgoing.paginator = this.paginatorOut;
|
this.routingPeersOutgoing.paginator = this.paginatorOut;
|
||||||
this.logger.info(this.routingPeersOutgoing);
|
this.logger.info(this.routingPeersOutgoing);
|
||||||
} else {
|
} else {
|
||||||
|
@ -40,7 +40,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus?.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus?.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table fxFlex="100" matSort [dataSource]="invoices" [ngClass]="{'error-border': errorMessage !== ''}">
|
<table #table mat-table fxFlex="100" matSort [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="invoices" [ngClass]="{'error-border': errorMessage !== ''}">
|
||||||
<ng-container matColumnDef="status">
|
<ng-container matColumnDef="status">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header arrowPosition="before" matTooltip="Status"></th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header arrowPosition="before" matTooltip="Status"></th>
|
||||||
<td *matCellDef="let invoice" mat-cell>
|
<td *matCellDef="let invoice" mat-cell>
|
||||||
|
@ -274,9 +274,8 @@ export class CLNLightningInvoicesTableComponent implements OnInit, AfterViewInit
|
|||||||
|
|
||||||
loadInvoicesTable(invs: Invoice[]) {
|
loadInvoicesTable(invs: Invoice[]) {
|
||||||
this.invoices = (invs) ? new MatTableDataSource<Invoice>([...invs]) : new MatTableDataSource([]);
|
this.invoices = (invs) ? new MatTableDataSource<Invoice>([...invs]) : new MatTableDataSource([]);
|
||||||
this.invoices.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
|
||||||
this.invoices.sort = this.sort;
|
this.invoices.sort = this.sort;
|
||||||
this.invoices.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
this.invoices.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
||||||
this.invoices.paginator = this.paginator;
|
this.invoices.paginator = this.paginator;
|
||||||
this.applyFilter();
|
this.applyFilter();
|
||||||
this.setFilterPredicate();
|
this.setFilterPredicate();
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus?.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus?.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table fxFlex="100" matSort [dataSource]="offersBookmarks" [ngClass]="{'error-border': errorMessage !== ''}">
|
<table #table mat-table fxFlex="100" matSort [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="offersBookmarks" [ngClass]="{'error-border': errorMessage !== ''}">
|
||||||
<ng-container matColumnDef="lastUpdatedAt">
|
<ng-container matColumnDef="lastUpdatedAt">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header>Updated At</th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header>Updated At</th>
|
||||||
<td *matCellDef="let offersbookmark" mat-cell>{{offersbookmark.lastUpdatedAt | date:'dd/MMM/y HH:mm'}}</td>
|
<td *matCellDef="let offersbookmark" mat-cell>{{offersbookmark.lastUpdatedAt | date:'dd/MMM/y HH:mm'}}</td>
|
||||||
|
@ -180,9 +180,8 @@ export class CLNOfferBookmarksTableComponent implements OnInit, AfterViewInit, O
|
|||||||
|
|
||||||
loadOffersTable(OffrBMs: OfferBookmark[]) {
|
loadOffersTable(OffrBMs: OfferBookmark[]) {
|
||||||
this.offersBookmarks = (OffrBMs) ? new MatTableDataSource<OfferBookmark>([...OffrBMs]) : new MatTableDataSource([]);
|
this.offersBookmarks = (OffrBMs) ? new MatTableDataSource<OfferBookmark>([...OffrBMs]) : new MatTableDataSource([]);
|
||||||
this.offersBookmarks.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
|
||||||
this.offersBookmarks.sort = this.sort;
|
this.offersBookmarks.sort = this.sort;
|
||||||
this.offersBookmarks.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
this.offersBookmarks.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
||||||
this.offersBookmarks.paginator = this.paginator;
|
this.offersBookmarks.paginator = this.paginator;
|
||||||
this.setFilterPredicate();
|
this.setFilterPredicate();
|
||||||
this.applyFilter();
|
this.applyFilter();
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus?.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus?.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table fxFlex="100" matSort [dataSource]="offers" [ngClass]="{'error-border': errorMessage !== ''}">
|
<table #table mat-table fxFlex="100" matSort [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="offers" [ngClass]="{'error-border': errorMessage !== ''}">
|
||||||
<ng-container matColumnDef="active">
|
<ng-container matColumnDef="active">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header arrowPosition="before" matTooltip="Active"></th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header arrowPosition="before" matTooltip="Active"></th>
|
||||||
<td *matCellDef="let offer" mat-cell>
|
<td *matCellDef="let offer" mat-cell>
|
||||||
|
@ -261,9 +261,8 @@ export class CLNOffersTableComponent implements OnInit, AfterViewInit, OnDestroy
|
|||||||
|
|
||||||
loadOffersTable(offrs: Offer[]) {
|
loadOffersTable(offrs: Offer[]) {
|
||||||
this.offers = (offrs) ? new MatTableDataSource<Offer>([...offrs]) : new MatTableDataSource([]);
|
this.offers = (offrs) ? new MatTableDataSource<Offer>([...offrs]) : new MatTableDataSource([]);
|
||||||
this.offers.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
|
||||||
this.offers.sort = this.sort;
|
this.offers.sort = this.sort;
|
||||||
this.offers.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
this.offers.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
||||||
this.offers.paginator = this.paginator;
|
this.offers.paginator = this.paginator;
|
||||||
this.setFilterPredicate();
|
this.setFilterPredicate();
|
||||||
this.applyFilter();
|
this.applyFilter();
|
||||||
|
@ -36,7 +36,7 @@
|
|||||||
<div fxLayout="row" fxLayoutAlign="start start">
|
<div fxLayout="row" fxLayoutAlign="start start">
|
||||||
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus?.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus?.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table fxFlex="100" matSort [dataSource]="payments" [ngClass]="{'error-border': errorMessage !== ''}">
|
<table #table mat-table fxFlex="100" matSort [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="payments" [ngClass]="{'error-border': errorMessage !== ''}">
|
||||||
<ng-container matColumnDef="status">
|
<ng-container matColumnDef="status">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header arrowPosition="before" matTooltip="Status"></th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header arrowPosition="before" matTooltip="Status"></th>
|
||||||
<td *matCellDef="let payment" mat-cell>
|
<td *matCellDef="let payment" mat-cell>
|
||||||
|
@ -355,9 +355,8 @@ export class CLNLightningPaymentsComponent implements OnInit, AfterViewInit, OnD
|
|||||||
|
|
||||||
loadPaymentsTable(payments: Payment[]) {
|
loadPaymentsTable(payments: Payment[]) {
|
||||||
this.payments = (payments) ? new MatTableDataSource<Payment>([...payments]) : new MatTableDataSource([]);
|
this.payments = (payments) ? new MatTableDataSource<Payment>([...payments]) : new MatTableDataSource([]);
|
||||||
this.payments.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
|
||||||
this.payments.sort = this.sort;
|
this.payments.sort = this.sort;
|
||||||
this.payments.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
this.payments.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
||||||
this.payments.paginator = this.paginator;
|
this.payments.paginator = this.paginator;
|
||||||
this.setFilterPredicate();
|
this.setFilterPredicate();
|
||||||
this.applyFilter();
|
this.applyFilter();
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
<div fxLayout="row" fxLayoutAlign="start start">
|
<div fxLayout="row" fxLayoutAlign="start start">
|
||||||
<div fxLayout="column" fxLayoutAlign="start end" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div fxLayout="column" fxLayoutAlign="start end" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table fxFlex="100" matSort [dataSource]="listTransactions" [ngClass]="{'error-border': errorMessage !== ''}">
|
<table #table mat-table fxFlex="100" matSort [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="listTransactions" [ngClass]="{'error-border': errorMessage !== ''}">
|
||||||
<ng-container matColumnDef="timestamp">
|
<ng-container matColumnDef="timestamp">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header>Date/Time</th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header>Date/Time</th>
|
||||||
<td *matCellDef="let transaction" mat-cell>{{(transaction?.timestamp * 1000) | date:'dd/MMM/y HH:mm'}}</td>
|
<td *matCellDef="let transaction" mat-cell>{{(transaction?.timestamp * 1000) | date:'dd/MMM/y HH:mm'}}</td>
|
||||||
|
@ -145,7 +145,6 @@ export class ECLOnChainTransactionHistoryComponent implements OnInit, OnDestroy
|
|||||||
this.listTransactions = new MatTableDataSource<Transaction>([...transactions]);
|
this.listTransactions = new MatTableDataSource<Transaction>([...transactions]);
|
||||||
this.listTransactions.sort = this.sort;
|
this.listTransactions.sort = this.sort;
|
||||||
this.listTransactions.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
this.listTransactions.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
||||||
this.listTransactions.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
|
||||||
this.listTransactions.paginator = this.paginator;
|
this.listTransactions.paginator = this.paginator;
|
||||||
this.setFilterPredicate();
|
this.setFilterPredicate();
|
||||||
this.applyFilter();
|
this.applyFilter();
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table fxFlex="100" matSort [dataSource]="channels" [ngClass]="{'error-border': errorMessage !== ''}">
|
<table #table mat-table fxFlex="100" matSort [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="channels" [ngClass]="{'error-border': errorMessage !== ''}">
|
||||||
<ng-container matColumnDef="announceChannel">
|
<ng-container matColumnDef="announceChannel">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header matTooltip="Private"></th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header matTooltip="Private"></th>
|
||||||
<td *matCellDef="let channel" mat-cell>
|
<td *matCellDef="let channel" mat-cell>
|
||||||
|
@ -191,7 +191,6 @@ export class ECLChannelInactiveTableComponent implements OnInit, AfterViewInit,
|
|||||||
this.channels = new MatTableDataSource<Channel>([...this.inactiveChannels]);
|
this.channels = new MatTableDataSource<Channel>([...this.inactiveChannels]);
|
||||||
this.channels.sort = this.sort;
|
this.channels.sort = this.sort;
|
||||||
this.channels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
this.channels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
||||||
this.channels.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
|
||||||
this.channels.paginator = this.paginator;
|
this.channels.paginator = this.paginator;
|
||||||
this.setFilterPredicate();
|
this.setFilterPredicate();
|
||||||
this.applyFilter();
|
this.applyFilter();
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table fxFlex="100" matSort [dataSource]="channels" [ngClass]="{'error-border': errorMessage !== ''}">
|
<table #table mat-table fxFlex="100" matSort [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="channels" [ngClass]="{'error-border': errorMessage !== ''}">
|
||||||
<ng-container matColumnDef="announceChannel">
|
<ng-container matColumnDef="announceChannel">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header matTooltip="Private"></th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header matTooltip="Private"></th>
|
||||||
<td *matCellDef="let channel" mat-cell>
|
<td *matCellDef="let channel" mat-cell>
|
||||||
|
@ -261,7 +261,6 @@ export class ECLChannelOpenTableComponent implements OnInit, AfterViewInit, OnDe
|
|||||||
this.channels = new MatTableDataSource<Channel>([...this.activeChannels]);
|
this.channels = new MatTableDataSource<Channel>([...this.activeChannels]);
|
||||||
this.channels.sort = this.sort;
|
this.channels.sort = this.sort;
|
||||||
this.channels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
this.channels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
||||||
this.channels.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
|
||||||
this.channels.paginator = this.paginator;
|
this.channels.paginator = this.paginator;
|
||||||
this.setFilterPredicate();
|
this.setFilterPredicate();
|
||||||
this.applyFilter();
|
this.applyFilter();
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table fxFlex="100" matSort [dataSource]="channels" [ngClass]="{'error-border': errorMessage !== ''}">
|
<table #table mat-table fxFlex="100" matSort [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="channels" [ngClass]="{'error-border': errorMessage !== ''}">
|
||||||
<ng-container matColumnDef="announceChannel">
|
<ng-container matColumnDef="announceChannel">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header matTooltip="Private"></th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header matTooltip="Private"></th>
|
||||||
<td *matCellDef="let channel" mat-cell>
|
<td *matCellDef="let channel" mat-cell>
|
||||||
|
@ -161,7 +161,6 @@ export class ECLChannelPendingTableComponent implements OnInit, AfterViewInit, O
|
|||||||
this.channels = new MatTableDataSource<Channel>([...this.pendingChannels]);
|
this.channels = new MatTableDataSource<Channel>([...this.pendingChannels]);
|
||||||
this.channels.sort = this.sort;
|
this.channels.sort = this.sort;
|
||||||
this.channels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
this.channels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
||||||
this.channels.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
|
||||||
this.channels.paginator = this.paginator;
|
this.channels.paginator = this.paginator;
|
||||||
this.setFilterPredicate();
|
this.setFilterPredicate();
|
||||||
this.applyFilter();
|
this.applyFilter();
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table fxFlex="100" matSort [dataSource]="peers" [ngClass]="{'error-border': errorMessage !== ''}">
|
<table #table mat-table fxFlex="100" matSort [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="peers" [ngClass]="{'error-border': errorMessage !== ''}">
|
||||||
<ng-container matColumnDef="state">
|
<ng-container matColumnDef="state">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header arrowPosition="before" matTooltip="State"></th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header arrowPosition="before" matTooltip="State"></th>
|
||||||
<td *matCellDef="let peer" mat-cell>
|
<td *matCellDef="let peer" mat-cell>
|
||||||
|
@ -238,7 +238,6 @@ export class ECLPeersComponent implements OnInit, AfterViewInit, OnDestroy {
|
|||||||
this.peers = (peers) ? new MatTableDataSource<Peer>([...peers]) : new MatTableDataSource([]);
|
this.peers = (peers) ? new MatTableDataSource<Peer>([...peers]) : new MatTableDataSource([]);
|
||||||
this.peers.sort = this.sort;
|
this.peers.sort = this.sort;
|
||||||
this.peers.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
this.peers.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
||||||
this.peers.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
|
||||||
this.peers.paginator = this.paginator;
|
this.peers.paginator = this.paginator;
|
||||||
this.setFilterPredicate();
|
this.setFilterPredicate();
|
||||||
this.applyFilter();
|
this.applyFilter();
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div *ngIf="errorMessage === ''" fxLayout="column" fxLayoutAlign="start center" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div *ngIf="errorMessage === ''" fxLayout="column" fxLayoutAlign="start center" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table fxFlex="100" matSort class="overflow-auto" [dataSource]="forwardingHistoryEvents">
|
<table #table mat-table fxFlex="100" matSort class="overflow-auto" [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="forwardingHistoryEvents">
|
||||||
<ng-container matColumnDef="type">
|
<ng-container matColumnDef="type">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header arrowPosition="before" matTooltip="Type (if not payment relayed)"></th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header arrowPosition="before" matTooltip="Type (if not payment relayed)"></th>
|
||||||
<td *matCellDef="let fhEvent" mat-cell>
|
<td *matCellDef="let fhEvent" mat-cell>
|
||||||
|
@ -191,7 +191,6 @@ export class ECLForwardingHistoryComponent implements OnInit, OnChanges, AfterVi
|
|||||||
return (data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null;
|
return (data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
this.forwardingHistoryEvents.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
|
||||||
this.forwardingHistoryEvents.paginator = this.paginator;
|
this.forwardingHistoryEvents.paginator = this.paginator;
|
||||||
this.setFilterPredicate();
|
this.setFilterPredicate();
|
||||||
this.applyFilter();
|
this.applyFilter();
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div fxLayout="column" fxLayoutAlign="start start" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div fxLayout="column" fxLayoutAlign="start start" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #tableIn mat-table matSort class="overflow-auto incoming-table" [dataSource]="routingPeersIncoming">
|
<table #tableIn mat-table matSort class="overflow-auto incoming-table" [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="routingPeersIncoming">
|
||||||
<ng-container matColumnDef="channelId">
|
<ng-container matColumnDef="channelId">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header>Channel ID</th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header>Channel ID</th>
|
||||||
<td *matCellDef="let rPeer" mat-cell>
|
<td *matCellDef="let rPeer" mat-cell>
|
||||||
@ -81,7 +81,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div fxLayout="column" fxLayoutAlign="start end" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div fxLayout="column" fxLayoutAlign="start end" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #tableOut mat-table matSort class="overflow-auto outgoing-table" [dataSource]="routingPeersOutgoing">
|
<table #tableOut mat-table matSort class="overflow-auto outgoing-table" [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="routingPeersOutgoing">
|
||||||
<ng-container matColumnDef="channelId">
|
<ng-container matColumnDef="channelId">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header>Channel ID</th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header>Channel ID</th>
|
||||||
<td *matCellDef="let rPeer" mat-cell>
|
<td *matCellDef="let rPeer" mat-cell>
|
||||||
|
@ -148,12 +148,10 @@ export class ECLRoutingPeersComponent implements OnInit, AfterViewInit, OnDestro
|
|||||||
const results = this.groupRoutingPeers(forwardingEvents);
|
const results = this.groupRoutingPeers(forwardingEvents);
|
||||||
this.routingPeersIncoming = new MatTableDataSource<RoutingPeers>(results[0]);
|
this.routingPeersIncoming = new MatTableDataSource<RoutingPeers>(results[0]);
|
||||||
this.routingPeersIncoming.sort = this.sortIn;
|
this.routingPeersIncoming.sort = this.sortIn;
|
||||||
this.routingPeersIncoming.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
|
||||||
this.routingPeersIncoming.paginator = this.paginatorIn;
|
this.routingPeersIncoming.paginator = this.paginatorIn;
|
||||||
this.logger.info(this.routingPeersIncoming);
|
this.logger.info(this.routingPeersIncoming);
|
||||||
this.routingPeersOutgoing = new MatTableDataSource<RoutingPeers>(results[1]);
|
this.routingPeersOutgoing = new MatTableDataSource<RoutingPeers>(results[1]);
|
||||||
this.routingPeersOutgoing.sort = this.sortOut;
|
this.routingPeersOutgoing.sort = this.sortOut;
|
||||||
this.routingPeersOutgoing.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
|
||||||
this.routingPeersOutgoing.paginator = this.paginatorOut;
|
this.routingPeersOutgoing.paginator = this.paginatorOut;
|
||||||
this.logger.info(this.routingPeersOutgoing);
|
this.logger.info(this.routingPeersOutgoing);
|
||||||
} else {
|
} else {
|
||||||
|
@ -40,7 +40,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table fxFlex="100" matSort [dataSource]="invoices" [ngClass]="{'error-border': errorMessage !== ''}">
|
<table #table mat-table fxFlex="100" matSort [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="invoices" [ngClass]="{'error-border': errorMessage !== ''}">
|
||||||
<ng-container matColumnDef="status">
|
<ng-container matColumnDef="status">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header arrowPosition="before" matTooltip="Status"></th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header arrowPosition="before" matTooltip="Status"></th>
|
||||||
<td *matCellDef="let invoice" mat-cell>
|
<td *matCellDef="let invoice" mat-cell>
|
||||||
|
@ -221,9 +221,8 @@ export class ECLLightningInvoicesComponent implements OnInit, AfterViewInit, OnD
|
|||||||
|
|
||||||
loadInvoicesTable(invs: Invoice[]) {
|
loadInvoicesTable(invs: Invoice[]) {
|
||||||
this.invoices = invs ? new MatTableDataSource<Invoice>([...invs]) : new MatTableDataSource<Invoice>([]);
|
this.invoices = invs ? new MatTableDataSource<Invoice>([...invs]) : new MatTableDataSource<Invoice>([]);
|
||||||
this.invoices.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
|
||||||
this.invoices.sort = this.sort;
|
this.invoices.sort = this.sort;
|
||||||
this.invoices.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
this.invoices.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
||||||
this.invoices.paginator = this.paginator;
|
this.invoices.paginator = this.paginator;
|
||||||
this.setFilterPredicate();
|
this.setFilterPredicate();
|
||||||
this.applyFilter();
|
this.applyFilter();
|
||||||
|
@ -36,7 +36,7 @@
|
|||||||
<div fxLayout="row" fxLayoutAlign="start start">
|
<div fxLayout="row" fxLayoutAlign="start start">
|
||||||
<div fxLayout="column" fxLayoutAlign="start center" fxFlex="colWidth" class="table-container" [perfectScrollbar]>
|
<div fxLayout="column" fxLayoutAlign="start center" fxFlex="colWidth" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table fxFlex="colWidth" matSort [dataSource]="payments" [ngClass]="{'error-border': errorMessage !== ''}">
|
<table #table mat-table fxFlex="colWidth" matSort [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="payments" [ngClass]="{'error-border': errorMessage !== ''}">
|
||||||
<ng-container matColumnDef="firstPartTimestamp">
|
<ng-container matColumnDef="firstPartTimestamp">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header>Date/Time</th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header>Date/Time</th>
|
||||||
<td *matCellDef="let payment" mat-cell>{{payment?.firstPartTimestamp | date:'dd/MMM/y HH:mm'}}</td>
|
<td *matCellDef="let payment" mat-cell>{{payment?.firstPartTimestamp | date:'dd/MMM/y HH:mm'}}</td>
|
||||||
|
@ -177,7 +177,6 @@ export class ECLLightningPaymentsComponent implements OnInit, AfterViewInit, OnD
|
|||||||
return (data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null;
|
return (data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
this.payments.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
|
||||||
this.payments.paginator = this.paginator;
|
this.payments.paginator = this.paginator;
|
||||||
this.setFilterPredicate();
|
this.setFilterPredicate();
|
||||||
this.applyFilter();
|
this.applyFilter();
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="table-container mb-6" [perfectScrollbar]>
|
<div class="table-container mb-6" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="flgLoading[0]===true" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="flgLoading[0]===true" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table matSort [dataSource]="qrHops" [ngClass]="{'overflow-auto error-border': flgLoading[0]==='error','overflow-auto': true}">
|
<table #table mat-table matSort [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="qrHops" [ngClass]="{'overflow-auto error-border': flgLoading[0]==='error','overflow-auto': true}">
|
||||||
<ng-container matColumnDef="hop_sequence">
|
<ng-container matColumnDef="hop_sequence">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header>Hop</th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header>Hop</th>
|
||||||
<td *matCellDef="let hop" mat-cell>{{hop?.hop_sequence}}</td>
|
<td *matCellDef="let hop" mat-cell>{{hop?.hop_sequence}}</td>
|
||||||
|
@ -69,7 +69,6 @@ export class QueryRoutesComponent implements OnInit, OnDestroy {
|
|||||||
}
|
}
|
||||||
this.qrHops.sort = this.sort;
|
this.qrHops.sort = this.sort;
|
||||||
this.qrHops.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
this.qrHops.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
||||||
this.qrHops.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
<div fxLayout="row" fxLayoutAlign="start start">
|
<div fxLayout="row" fxLayoutAlign="start start">
|
||||||
<div fxLayout="column" fxLayoutAlign="start end" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div fxLayout="column" fxLayoutAlign="start end" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table fxFlex="100" matSort [dataSource]="listTransactions" [ngClass]="{'error-border': errorMessage !== ''}">
|
<table #table mat-table fxFlex="100" matSort [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="listTransactions" [ngClass]="{'error-border': errorMessage !== ''}">
|
||||||
<ng-container matColumnDef="time_stamp">
|
<ng-container matColumnDef="time_stamp">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header>Date/Time</th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header>Date/Time</th>
|
||||||
<td *matCellDef="let transaction" mat-cell>{{(transaction.time_stamp * 1000) | date:'dd/MMM/y HH:mm'}}</td>
|
<td *matCellDef="let transaction" mat-cell>{{(transaction.time_stamp * 1000) | date:'dd/MMM/y HH:mm'}}</td>
|
||||||
|
@ -154,7 +154,6 @@ export class OnChainTransactionHistoryComponent implements OnInit, OnChanges, On
|
|||||||
this.listTransactions = new MatTableDataSource<Transaction>([...transactions]);
|
this.listTransactions = new MatTableDataSource<Transaction>([...transactions]);
|
||||||
this.listTransactions.sort = this.sort;
|
this.listTransactions.sort = this.sort;
|
||||||
this.listTransactions.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
this.listTransactions.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
||||||
this.listTransactions.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
|
||||||
this.listTransactions.paginator = this.paginator;
|
this.listTransactions.paginator = this.paginator;
|
||||||
this.setFilterPredicate();
|
this.setFilterPredicate();
|
||||||
this.applyFilter();
|
this.applyFilter();
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
<div fxLayout="row" fxLayoutAlign="start start">
|
<div fxLayout="row" fxLayoutAlign="start start">
|
||||||
<div fxLayout="column" fxLayoutAlign="start end" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div fxLayout="column" fxLayoutAlign="start end" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table fxFlex="100" matSort [dataSource]="listUTXOs" [ngClass]="{'error-border': errorMessage !== ''}">
|
<table #table mat-table fxFlex="100" matSort [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="listUTXOs" [ngClass]="{'error-border': errorMessage !== ''}">
|
||||||
<ng-container matColumnDef="is_dust">
|
<ng-container matColumnDef="is_dust">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header matTooltip="Dust/Nondust"></th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header matTooltip="Dust/Nondust"></th>
|
||||||
<td *matCellDef="let utxo" mat-cell>
|
<td *matCellDef="let utxo" mat-cell>
|
||||||
|
@ -180,6 +180,7 @@ export class OnChainUTXOsComponent implements OnInit, OnChanges, OnDestroy {
|
|||||||
|
|
||||||
loadUTXOsTable(UTXOs: UTXO[]) {
|
loadUTXOsTable(UTXOs: UTXO[]) {
|
||||||
this.listUTXOs = new MatTableDataSource<UTXO>([...UTXOs]);
|
this.listUTXOs = new MatTableDataSource<UTXO>([...UTXOs]);
|
||||||
|
this.listUTXOs.sort = this.sort;
|
||||||
this.listUTXOs.sortingDataAccessor = (data: any, sortHeaderId: string) => {
|
this.listUTXOs.sortingDataAccessor = (data: any, sortHeaderId: string) => {
|
||||||
switch (sortHeaderId) {
|
switch (sortHeaderId) {
|
||||||
case 'is_dust': return +(data.amount_sat || 0) < this.dustAmount;
|
case 'is_dust': return +(data.amount_sat || 0) < this.dustAmount;
|
||||||
@ -188,8 +189,6 @@ export class OnChainUTXOsComponent implements OnInit, OnChanges, OnDestroy {
|
|||||||
default: return (data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null;
|
default: return (data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
this.listUTXOs.sort = this.sort;
|
|
||||||
this.listUTXOs.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
|
||||||
this.listUTXOs.paginator = this.paginator;
|
this.listUTXOs.paginator = this.paginator;
|
||||||
this.setFilterPredicate();
|
this.setFilterPredicate();
|
||||||
this.applyFilter();
|
this.applyFilter();
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table fxFlex="100" matSort [dataSource]="channels" [ngClass]="{'error-border': errorMessage !== ''}">
|
<table #table mat-table fxFlex="100" matSort [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="channels" [ngClass]="{'error-border': errorMessage !== ''}">
|
||||||
<!-- Channel Group Row Start -->
|
<!-- Channel Group Row Start -->
|
||||||
<ng-container matColumnDef="amount">
|
<ng-container matColumnDef="amount">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header>Amount (Sats)</th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header>Amount (Sats)</th>
|
||||||
|
@ -178,7 +178,6 @@ export class ChannelActiveHTLCsTableComponent implements OnInit, AfterViewInit,
|
|||||||
return (data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null;
|
return (data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
this.channels.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
|
||||||
this.channels.paginator = this.paginator;
|
this.channels.paginator = this.paginator;
|
||||||
this.setFilterPredicate();
|
this.setFilterPredicate();
|
||||||
this.applyFilter();
|
this.applyFilter();
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table fxFlex="100" matSort [dataSource]="closedChannels" [ngClass]="{'error-border': errorMessage !== '', 'overflow-auto': true}">
|
<table #table mat-table fxFlex="100" matSort [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="closedChannels" [ngClass]="{'error-border': errorMessage !== '', 'overflow-auto': true}">
|
||||||
<ng-container matColumnDef="close_type">
|
<ng-container matColumnDef="close_type">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header>Close Type</th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header>Close Type</th>
|
||||||
<td *matCellDef="let channel" mat-cell>
|
<td *matCellDef="let channel" mat-cell>
|
||||||
|
@ -159,7 +159,6 @@ export class ChannelClosedTableComponent implements OnInit, AfterViewInit, OnDes
|
|||||||
this.closedChannels = new MatTableDataSource<ClosedChannel>([...closedChannels]);
|
this.closedChannels = new MatTableDataSource<ClosedChannel>([...closedChannels]);
|
||||||
this.closedChannels.sort = this.sort;
|
this.closedChannels.sort = this.sort;
|
||||||
this.closedChannels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
this.closedChannels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
||||||
this.closedChannels.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
|
||||||
this.closedChannels.paginator = this.paginator;
|
this.closedChannels.paginator = this.paginator;
|
||||||
this.setFilterPredicate();
|
this.setFilterPredicate();
|
||||||
this.applyFilter();
|
this.applyFilter();
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus?.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus?.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table fxFlex="100" matSort [dataSource]="channels" [ngClass]="{'error-border': errorMessage !== ''}">
|
<table #table mat-table fxFlex="100" matSort [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="channels" [ngClass]="{'error-border': errorMessage !== ''}">
|
||||||
<ng-container matColumnDef="active">
|
<ng-container matColumnDef="active">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header arrowPosition="before" matTooltip="Active"></th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header arrowPosition="before" matTooltip="Active"></th>
|
||||||
<td *matCellDef="let channel" mat-cell>
|
<td *matCellDef="let channel" mat-cell>
|
||||||
|
@ -351,7 +351,6 @@ export class ChannelOpenTableComponent implements OnInit, AfterViewInit, OnDestr
|
|||||||
this.channels = new MatTableDataSource<Channel>([...mychannels]);
|
this.channels = new MatTableDataSource<Channel>([...mychannels]);
|
||||||
this.channels.sort = this.sort;
|
this.channels.sort = this.sort;
|
||||||
this.channels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
this.channels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
||||||
this.channels.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
|
||||||
this.channels.paginator = this.paginator;
|
this.channels.paginator = this.paginator;
|
||||||
this.setFilterPredicate();
|
this.setFilterPredicate();
|
||||||
this.applyFilter();
|
this.applyFilter();
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
</mat-expansion-panel-header>
|
</mat-expansion-panel-header>
|
||||||
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table fxFlex="100" matSort [dataSource]="pendingOpenChannels" [ngClass]="{'error-border bordered-box': errorMessage !== '','bordered-box': true}">
|
<table #table mat-table fxFlex="100" matSort [matSortActive]="openTableSetting.sortBy" [matSortDirection]="openTableSetting.sortOrder" [dataSource]="pendingOpenChannels" [ngClass]="{'error-border bordered-box': errorMessage !== '','bordered-box': true}">
|
||||||
<ng-container matColumnDef="remote_alias">
|
<ng-container matColumnDef="remote_alias">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header>Peer</th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header>Peer</th>
|
||||||
<td *matCellDef="let channel" mat-cell>
|
<td *matCellDef="let channel" mat-cell>
|
||||||
@ -102,7 +102,7 @@
|
|||||||
<mat-panel-title>Pending Force Closing ({{pendingForceClosingChannelsLength}})</mat-panel-title>
|
<mat-panel-title>Pending Force Closing ({{pendingForceClosingChannelsLength}})</mat-panel-title>
|
||||||
</mat-expansion-panel-header>
|
</mat-expansion-panel-header>
|
||||||
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<table #table mat-table matSort [dataSource]="pendingForceClosingChannels" [ngClass]="{'error-border bordered-box': errorMessage !== '','bordered-box': true}">
|
<table #table mat-table matSort [matSortActive]="forceClosingTableSetting.sortBy" [matSortDirection]="forceClosingTableSetting.sortOrder" [dataSource]="pendingForceClosingChannels" [ngClass]="{'error-border bordered-box': errorMessage !== '','bordered-box': true}">
|
||||||
<ng-container matColumnDef="closing_txid">
|
<ng-container matColumnDef="closing_txid">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header>Closing Tx ID</th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header>Closing Tx ID</th>
|
||||||
<td *matCellDef="let channel" mat-cell>
|
<td *matCellDef="let channel" mat-cell>
|
||||||
@ -198,7 +198,7 @@
|
|||||||
<mat-panel-title>Pending Closing ({{pendingClosingChannelsLength}})</mat-panel-title>
|
<mat-panel-title>Pending Closing ({{pendingClosingChannelsLength}})</mat-panel-title>
|
||||||
</mat-expansion-panel-header>
|
</mat-expansion-panel-header>
|
||||||
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<table #table mat-table matSort [dataSource]="pendingClosingChannels" [ngClass]="{'error-border bordered-box': errorMessage !== '','bordered-box': true}">
|
<table #table mat-table matSort [matSortActive]="closingTableSetting.sortBy" [matSortDirection]="closingTableSetting.sortOrder" [dataSource]="pendingClosingChannels" [ngClass]="{'error-border bordered-box': errorMessage !== '','bordered-box': true}">
|
||||||
<ng-container matColumnDef="closing_txid">
|
<ng-container matColumnDef="closing_txid">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header>Closing Tx ID</th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header>Closing Tx ID</th>
|
||||||
<td *matCellDef="let channel" mat-cell>
|
<td *matCellDef="let channel" mat-cell>
|
||||||
@ -278,7 +278,7 @@
|
|||||||
<mat-panel-title>Waiting Close ({{pendingWaitClosingChannelsLength}})</mat-panel-title>
|
<mat-panel-title>Waiting Close ({{pendingWaitClosingChannelsLength}})</mat-panel-title>
|
||||||
</mat-expansion-panel-header>
|
</mat-expansion-panel-header>
|
||||||
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<table #table mat-table matSort [dataSource]="pendingWaitClosingChannels" [ngClass]="{'error-border bordered-box': errorMessage !== '','bordered-box': true}">
|
<table #table mat-table matSort [matSortActive]="waitingCloseTableSetting.sortBy" [matSortDirection]="waitingCloseTableSetting.sortOrder" [dataSource]="pendingWaitClosingChannels" [ngClass]="{'error-border bordered-box': errorMessage !== '','bordered-box': true}">
|
||||||
<ng-container matColumnDef="closing_txid">
|
<ng-container matColumnDef="closing_txid">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header>Closing Tx ID</th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header>Closing Tx ID</th>
|
||||||
<td *matCellDef="let channel" mat-cell>
|
<td *matCellDef="let channel" mat-cell>
|
||||||
|
@ -273,7 +273,6 @@ export class ChannelPendingTableComponent implements OnInit, AfterViewInit, OnDe
|
|||||||
this.pendingOpenChannels = new MatTableDataSource<Channel>([...channels]);
|
this.pendingOpenChannels = new MatTableDataSource<Channel>([...channels]);
|
||||||
this.pendingOpenChannels.sort = this.sort;
|
this.pendingOpenChannels.sort = this.sort;
|
||||||
this.pendingOpenChannels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
this.pendingOpenChannels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
||||||
this.pendingOpenChannels.sort?.sort({ id: this.openTableSetting.sortBy, start: this.openTableSetting.sortOrder, disableClear: true });
|
|
||||||
this.logger.info(this.pendingOpenChannels);
|
this.logger.info(this.pendingOpenChannels);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -282,7 +281,6 @@ export class ChannelPendingTableComponent implements OnInit, AfterViewInit, OnDe
|
|||||||
this.pendingForceClosingChannels = new MatTableDataSource<Channel>([...channels]);
|
this.pendingForceClosingChannels = new MatTableDataSource<Channel>([...channels]);
|
||||||
this.pendingForceClosingChannels.sort = this.sort;
|
this.pendingForceClosingChannels.sort = this.sort;
|
||||||
this.pendingForceClosingChannels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
this.pendingForceClosingChannels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
||||||
this.pendingForceClosingChannels.sort?.sort({ id: this.forceClosingTableSetting.sortBy, start: this.forceClosingTableSetting.sortOrder, disableClear: true });
|
|
||||||
this.logger.info(this.pendingForceClosingChannels);
|
this.logger.info(this.pendingForceClosingChannels);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -291,7 +289,6 @@ export class ChannelPendingTableComponent implements OnInit, AfterViewInit, OnDe
|
|||||||
this.pendingClosingChannels = new MatTableDataSource<Channel>([...channels]);
|
this.pendingClosingChannels = new MatTableDataSource<Channel>([...channels]);
|
||||||
this.pendingClosingChannels.sort = this.sort;
|
this.pendingClosingChannels.sort = this.sort;
|
||||||
this.pendingClosingChannels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
this.pendingClosingChannels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
||||||
this.pendingClosingChannels.sort?.sort({ id: this.closingTableSetting.sortBy, start: this.closingTableSetting.sortOrder, disableClear: true });
|
|
||||||
this.logger.info(this.pendingClosingChannels);
|
this.logger.info(this.pendingClosingChannels);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -300,7 +297,6 @@ export class ChannelPendingTableComponent implements OnInit, AfterViewInit, OnDe
|
|||||||
this.pendingWaitClosingChannels = new MatTableDataSource<Channel>([...channels]);
|
this.pendingWaitClosingChannels = new MatTableDataSource<Channel>([...channels]);
|
||||||
this.pendingWaitClosingChannels.sort = this.sort;
|
this.pendingWaitClosingChannels.sort = this.sort;
|
||||||
this.pendingWaitClosingChannels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
this.pendingWaitClosingChannels.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
||||||
this.pendingWaitClosingChannels.sort?.sort({ id: this.waitingCloseTableSetting.sortBy, start: this.waitingCloseTableSetting.sortOrder, disableClear: true });
|
|
||||||
this.logger.info(this.pendingWaitClosingChannels);
|
this.logger.info(this.pendingWaitClosingChannels);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div fxLayout="column" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table matSort [dataSource]="peers" [ngClass]="{'error-border': errorMessage !== ''}">
|
<table #table mat-table matSort [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="peers" [ngClass]="{'error-border': errorMessage !== ''}">
|
||||||
<ng-container matColumnDef="alias">
|
<ng-container matColumnDef="alias">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header>Alias</th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header>Alias</th>
|
||||||
<td *matCellDef="let peer" mat-cell>
|
<td *matCellDef="let peer" mat-cell>
|
||||||
|
@ -212,7 +212,6 @@ export class PeersComponent implements OnInit, AfterViewInit, OnDestroy {
|
|||||||
this.peers = peers ? new MatTableDataSource<Peer>([...peers]) : new MatTableDataSource([]);
|
this.peers = peers ? new MatTableDataSource<Peer>([...peers]) : new MatTableDataSource([]);
|
||||||
this.peers.sort = this.sort;
|
this.peers.sort = this.sort;
|
||||||
this.peers.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
this.peers.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
||||||
this.peers.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
|
||||||
this.peers.paginator = this.paginator;
|
this.peers.paginator = this.paginator;
|
||||||
this.setFilterPredicate();
|
this.setFilterPredicate();
|
||||||
this.applyFilter();
|
this.applyFilter();
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div *ngIf="errorMessage === ''" fxLayout="column" fxLayoutAlign="start center" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div *ngIf="errorMessage === ''" fxLayout="column" fxLayoutAlign="start center" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table fxFlex="100" matSort class="overflow-auto" [dataSource]="forwardingHistoryEvents">
|
<table #table mat-table fxFlex="100" matSort class="overflow-auto" [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="forwardingHistoryEvents">
|
||||||
<ng-container matColumnDef="timestamp">
|
<ng-container matColumnDef="timestamp">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header>Timestamp</th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header>Timestamp</th>
|
||||||
<td *matCellDef="let fhEvent" mat-cell>{{(fhEvent.timestamp * 1000) | date:'dd/MMM/y HH:mm'}}</td>
|
<td *matCellDef="let fhEvent" mat-cell>{{(fhEvent.timestamp * 1000) | date:'dd/MMM/y HH:mm'}}</td>
|
||||||
|
@ -173,7 +173,6 @@ export class ForwardingHistoryComponent implements OnInit, AfterViewInit, OnChan
|
|||||||
this.forwardingHistoryEvents = forwardingEvents ? new MatTableDataSource<ForwardingEvent>([...forwardingEvents]) : new MatTableDataSource([]);
|
this.forwardingHistoryEvents = forwardingEvents ? new MatTableDataSource<ForwardingEvent>([...forwardingEvents]) : new MatTableDataSource([]);
|
||||||
this.forwardingHistoryEvents.sort = this.sort;
|
this.forwardingHistoryEvents.sort = this.sort;
|
||||||
this.forwardingHistoryEvents.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
this.forwardingHistoryEvents.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
||||||
this.forwardingHistoryEvents.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
|
||||||
this.forwardingHistoryEvents.paginator = this.paginator;
|
this.forwardingHistoryEvents.paginator = this.paginator;
|
||||||
this.setFilterPredicate();
|
this.setFilterPredicate();
|
||||||
this.applyFilter();
|
this.applyFilter();
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div *ngIf="errorMessage === ''" fxLayout="column" fxLayoutAlign="start center" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div *ngIf="errorMessage === ''" fxLayout="column" fxLayoutAlign="start center" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table matSort class="overflow-auto" [dataSource]="nonRoutingPeers">
|
<table #table mat-table matSort class="overflow-auto" [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="nonRoutingPeers">
|
||||||
<ng-container matColumnDef="chan_id">
|
<ng-container matColumnDef="chan_id">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header>Channel ID</th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header>Channel ID</th>
|
||||||
<td *matCellDef="let nonRPeer" mat-cell>
|
<td *matCellDef="let nonRPeer" mat-cell>
|
||||||
|
@ -220,7 +220,6 @@ export class NonRoutingPeersComponent implements OnInit, AfterViewInit, OnDestro
|
|||||||
const filteredNonRoutingChannels = this.calculateUptime(this.activeChannels?.filter((actvChnl) => forwardingEvents.findIndex((evnt) => (evnt.chan_id_in === actvChnl.chan_id || evnt.chan_id_out === actvChnl.chan_id)) < 0));
|
const filteredNonRoutingChannels = this.calculateUptime(this.activeChannels?.filter((actvChnl) => forwardingEvents.findIndex((evnt) => (evnt.chan_id_in === actvChnl.chan_id || evnt.chan_id_out === actvChnl.chan_id)) < 0));
|
||||||
this.nonRoutingPeers = new MatTableDataSource<Channel>(filteredNonRoutingChannels);
|
this.nonRoutingPeers = new MatTableDataSource<Channel>(filteredNonRoutingChannels);
|
||||||
this.nonRoutingPeers.sort = this.sort;
|
this.nonRoutingPeers.sort = this.sort;
|
||||||
this.nonRoutingPeers.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
|
||||||
this.nonRoutingPeers.paginator = this.paginator;
|
this.nonRoutingPeers.paginator = this.paginator;
|
||||||
this.setFilterPredicate();
|
this.setFilterPredicate();
|
||||||
this.applyFilter();
|
this.applyFilter();
|
||||||
|
@ -39,7 +39,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div fxLayout="column" fxLayoutAlign="start end" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div fxLayout="column" fxLayoutAlign="start end" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table fxFlex="100" matSort [dataSource]="invoices" [ngClass]="{'error-border': errorMessage !== ''}">
|
<table #table mat-table fxFlex="100" matSort [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="invoices" [ngClass]="{'error-border': errorMessage !== ''}">
|
||||||
<ng-container matColumnDef="state">
|
<ng-container matColumnDef="state">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header arrowPosition="before" matTooltip="State"></th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header arrowPosition="before" matTooltip="State"></th>
|
||||||
<td *matCellDef="let invoice" mat-cell>
|
<td *matCellDef="let invoice" mat-cell>
|
||||||
|
@ -222,7 +222,6 @@ export class LightningInvoicesComponent implements OnInit, AfterViewInit, OnDest
|
|||||||
this.invoices = invoices ? new MatTableDataSource<Invoice>([...invoices]) : new MatTableDataSource<Invoice>([]);
|
this.invoices = invoices ? new MatTableDataSource<Invoice>([...invoices]) : new MatTableDataSource<Invoice>([]);
|
||||||
this.invoices.sort = this.sort;
|
this.invoices.sort = this.sort;
|
||||||
this.invoices.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
this.invoices.sortingDataAccessor = (data: any, sortHeaderId: string) => ((data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null);
|
||||||
this.invoices.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
|
||||||
this.setFilterPredicate();
|
this.setFilterPredicate();
|
||||||
this.applyFilter();
|
this.applyFilter();
|
||||||
this.logger.info(this.invoices);
|
this.logger.info(this.invoices);
|
||||||
|
@ -36,7 +36,7 @@
|
|||||||
<div fxLayout="row" fxLayoutAlign="start start">
|
<div fxLayout="row" fxLayoutAlign="start start">
|
||||||
<div fxLayout="column" fxLayoutAlign="start end" fxFlex="100" class="table-container" [perfectScrollbar]>
|
<div fxLayout="column" fxLayoutAlign="start end" fxFlex="100" class="table-container" [perfectScrollbar]>
|
||||||
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
<mat-progress-bar *ngIf="apiCallStatus.status === apiCallStatusEnum.INITIATED" mode="indeterminate"></mat-progress-bar>
|
||||||
<table #table mat-table fxFlex="100" matSort [dataSource]="payments" [ngClass]="{'error-border': errorMessage !== ''}">
|
<table #table mat-table fxFlex="100" matSort [matSortActive]="tableSetting.sortBy" [matSortDirection]="tableSetting.sortOrder" [dataSource]="payments" [ngClass]="{'error-border': errorMessage !== ''}">
|
||||||
<ng-container matColumnDef="status">
|
<ng-container matColumnDef="status">
|
||||||
<th *matHeaderCellDef mat-header-cell mat-sort-header arrowPosition="before" matTooltip="Status"></th>
|
<th *matHeaderCellDef mat-header-cell mat-sort-header arrowPosition="before" matTooltip="Status"></th>
|
||||||
<td *matCellDef="let payment" mat-cell>
|
<td *matCellDef="let payment" mat-cell>
|
||||||
|
@ -477,6 +477,7 @@ export class LightningPaymentsComponent implements OnInit, AfterViewInit, OnDest
|
|||||||
|
|
||||||
loadPaymentsTable(payms) {
|
loadPaymentsTable(payms) {
|
||||||
this.payments = payms ? new MatTableDataSource<Payment>([...payms]) : new MatTableDataSource([]);
|
this.payments = payms ? new MatTableDataSource<Payment>([...payms]) : new MatTableDataSource([]);
|
||||||
|
this.payments.sort = this.sort;
|
||||||
this.payments.sortingDataAccessor = (data: any, sortHeaderId: string) => {
|
this.payments.sortingDataAccessor = (data: any, sortHeaderId: string) => {
|
||||||
switch (sortHeaderId) {
|
switch (sortHeaderId) {
|
||||||
case 'hops':
|
case 'hops':
|
||||||
@ -486,8 +487,6 @@ export class LightningPaymentsComponent implements OnInit, AfterViewInit, OnDest
|
|||||||
return (data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null;
|
return (data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
this.payments.sort = this.sort;
|
|
||||||
this.payments.sort?.sort({ active: this.tableSetting.sortBy, direction: this.tableSetting.sortOrder, disableClear: true });
|
|
||||||
this.setFilterPredicate();
|
this.setFilterPredicate();
|
||||||
this.applyFilter();
|
this.applyFilter();
|
||||||
}
|
}
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user