From 6d39b8468c81f2b74646a35d40aad1fc329f6097 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sun, 21 Apr 2024 06:57:57 +0200 Subject: [PATCH] Add two buttons and options for them --- .../assets/v2/src/pages/accounts/index.js | 7 +++ .../page-settings/show-internals-button.js | 25 ++++++++++ .../page-settings/show-wizard-button.js | 24 ++++++++++ resources/views/v2/accounts/index.blade.php | 48 +++++++++++++++++-- .../views/v2/partials/layout/footer.blade.php | 8 +++- .../views/v2/partials/layout/topbar.blade.php | 8 ++-- 6 files changed, 112 insertions(+), 8 deletions(-) create mode 100644 resources/assets/v2/src/support/page-settings/show-internals-button.js create mode 100644 resources/assets/v2/src/support/page-settings/show-wizard-button.js diff --git a/resources/assets/v2/src/pages/accounts/index.js b/resources/assets/v2/src/pages/accounts/index.js index 79991ab92b..1ca9bbaf99 100644 --- a/resources/assets/v2/src/pages/accounts/index.js +++ b/resources/assets/v2/src/pages/accounts/index.js @@ -30,6 +30,9 @@ import '../../css/grid-ff3-theme.css'; import Get from "../../api/v2/model/account/get.js"; import Put from "../../api/v2/model/account/put.js"; import AccountRenderer from "../../support/renderers/AccountRenderer.js"; +import {showInternalsButton} from "../../support/page-settings/show-internals-button.js"; +import {showWizardButton} from "../../support/page-settings/show-wizard-button.js"; + // set type from URL const beforeQuery = window.location.href.split('?'); @@ -47,6 +50,10 @@ sortingColumn = params.column ?? ''; sortDirection = params.direction ?? ''; + +showInternalsButton(); +showWizardButton(); + let index = function () { return { // notifications diff --git a/resources/assets/v2/src/support/page-settings/show-internals-button.js b/resources/assets/v2/src/support/page-settings/show-internals-button.js new file mode 100644 index 0000000000..449ade2398 --- /dev/null +++ b/resources/assets/v2/src/support/page-settings/show-internals-button.js @@ -0,0 +1,25 @@ +/* + * show-internals-button.js + * Copyright (c) 2024 james@firefly-iii.org. + * + * This file is part of Firefly III (https://github.com/firefly-iii). + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see https://www.gnu.org/licenses/. + */ + + +export function showInternalsButton() { + console.log('showInternalsButton'); + document.querySelector('.toggle-page-internals').classList.remove('d-none') +} diff --git a/resources/assets/v2/src/support/page-settings/show-wizard-button.js b/resources/assets/v2/src/support/page-settings/show-wizard-button.js new file mode 100644 index 0000000000..616124e4de --- /dev/null +++ b/resources/assets/v2/src/support/page-settings/show-wizard-button.js @@ -0,0 +1,24 @@ +/* + * show-settings-button.js + * Copyright (c) 2024 james@firefly-iii.org. + * + * This file is part of Firefly III (https://github.com/firefly-iii). + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see https://www.gnu.org/licenses/. + */ + + +export function showWizardButton() { + document.querySelector('.toggle-page-wizard').classList.remove('d-none') +} diff --git a/resources/views/v2/accounts/index.blade.php b/resources/views/v2/accounts/index.blade.php index e085b7ef7c..346825f90e 100644 --- a/resources/views/v2/accounts/index.blade.php +++ b/resources/views/v2/accounts/index.blade.php @@ -7,7 +7,7 @@
-

Info

+

Net worth

some chart @@ -17,7 +17,7 @@
-

Info

+

In + out this period

Same @@ -27,7 +27,7 @@
-

Info

+

Something else

Same @@ -186,6 +186,48 @@ Nav
+ + + +
+
+ + diff --git a/resources/views/v2/partials/layout/footer.blade.php b/resources/views/v2/partials/layout/footer.blade.php index f152aa21f2..1cc7d32408 100644 --- a/resources/views/v2/partials/layout/footer.blade.php +++ b/resources/views/v2/partials/layout/footer.blade.php @@ -1,7 +1,13 @@