From 8f32064fea395b3dbea66a4d0c9404ff569a4b5d Mon Sep 17 00:00:00 2001 From: Andreas Nedbal Date: Fri, 29 Apr 2022 03:21:02 +0200 Subject: refactor(client): refactor api-console to use Composition API (#8566) --- packages/client/src/pages/api-console.vue | 96 ++++++++++++++----------------- 1 file changed, 42 insertions(+), 54 deletions(-) (limited to 'packages/client/src/pages') diff --git a/packages/client/src/pages/api-console.vue b/packages/client/src/pages/api-console.vue index 142a3bee2e..7f174a6318 100644 --- a/packages/client/src/pages/api-console.vue +++ b/packages/client/src/pages/api-console.vue @@ -25,8 +25,8 @@ - -- cgit v1.2.3-freya From 5ad42d1d855872d629fb361a9eea47260c4401e9 Mon Sep 17 00:00:00 2001 From: Andreas Nedbal Date: Fri, 29 Apr 2022 05:26:24 +0200 Subject: refactor(client): refactor scratchpad to use Composition API (#8565) --- packages/client/src/pages/scratchpad.vue | 163 ++++++++++++++----------------- 1 file changed, 75 insertions(+), 88 deletions(-) (limited to 'packages/client/src/pages') diff --git a/packages/client/src/pages/scratchpad.vue b/packages/client/src/pages/scratchpad.vue index f871dc48e8..eb91938db2 100644 --- a/packages/client/src/pages/scratchpad.vue +++ b/packages/client/src/pages/scratchpad.vue @@ -6,20 +6,20 @@ - +
{{ log.text }}
- {{ $ts.scratchpadDescription }} + {{ i18n.ts.scratchpadDescription }}
- -- cgit v1.2.3-freya From 3dc027bcd5b351ac2d3307f3d9a406f7f4ed2850 Mon Sep 17 00:00:00 2001 From: Andreas Nedbal Date: Sun, 1 May 2022 04:23:12 +0200 Subject: Refactor integration to use Composition API (#8581) * refactor(client): refactor integration to use Composition API * fix(client): drop superfluous enable* constants * refactor(client): deduplicate window opening for services --- packages/client/src/pages/settings/integration.vue | 189 +++++++++------------ 1 file changed, 77 insertions(+), 112 deletions(-) (limited to 'packages/client/src/pages') diff --git a/packages/client/src/pages/settings/integration.vue b/packages/client/src/pages/settings/integration.vue index ca36c91665..75c6200944 100644 --- a/packages/client/src/pages/settings/integration.vue +++ b/packages/client/src/pages/settings/integration.vue @@ -1,133 +1,98 @@ - -- cgit v1.2.3-freya From 475b7556d817072955ca8ff27fe3e36d980e91c3 Mon Sep 17 00:00:00 2001 From: Andreas Nedbal Date: Sun, 1 May 2022 04:52:19 +0200 Subject: Refactor instance-mute to use Composition API (#8580) * refactor(client): refactor instance-mute to use Composition API * Apply review suggestion from @Johann150 Co-authored-by: Johann150 * Apply review suggestion from @Johann150 Co-authored-by: Johann150 Co-authored-by: Johann150 --- .../client/src/pages/settings/instance-mute.vue | 76 +++++++++------------- 1 file changed, 30 insertions(+), 46 deletions(-) (limited to 'packages/client/src/pages') diff --git a/packages/client/src/pages/settings/instance-mute.vue b/packages/client/src/pages/settings/instance-mute.vue index f84a209b60..bcc2ee85ad 100644 --- a/packages/client/src/pages/settings/instance-mute.vue +++ b/packages/client/src/pages/settings/instance-mute.vue @@ -1,67 +1,51 @@ - -- cgit v1.2.3-freya From 274ca6f7e639fe85017d901b7cf63c6ee55a2df5 Mon Sep 17 00:00:00 2001 From: Andreas Nedbal Date: Sun, 1 May 2022 04:55:15 +0200 Subject: refactor(client): refactor import-export to use Composition API (#8579) --- .../client/src/pages/settings/import-export.vue | 180 +++++++++------------ 1 file changed, 76 insertions(+), 104 deletions(-) (limited to 'packages/client/src/pages') diff --git a/packages/client/src/pages/settings/import-export.vue b/packages/client/src/pages/settings/import-export.vue index c153b4d28c..127cbcd4c1 100644 --- a/packages/client/src/pages/settings/import-export.vue +++ b/packages/client/src/pages/settings/import-export.vue @@ -37,8 +37,8 @@ - -- cgit v1.2.3-freya