From 3f72bb9ff53c23ff558405c068e88f5f8a691c2d Mon Sep 17 00:00:00 2001 From: jingrow Date: Sun, 28 Dec 2025 22:30:14 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BF=98=E5=8E=9Findex.html=E5=85=A5=E5=8F=A3?= =?UTF-8?q?=E6=96=87=E4=BB=B6=E6=A8=A1=E6=9D=BF=E5=8F=98=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dashboard/index.html | 15 +- .../components/AlertBillingInformation.vue | 65 ++++ .../src2/components/AlertSiteActivation.vue | 32 ++ dashboard/src2/components/AlertSiteUpdate.vue | 165 +++++++++ dashboard/src2/components/AlertUpdate.vue | 172 +++++++++ .../src2/components/AppSourceSelector.vue | 110 ++++++ .../components/AppSubscriptionSummary.vue | 75 ++++ .../src2/components/BackupFilesUploader.vue | 147 ++++++++ dashboard/src2/components/BenchAppUpdates.vue | 105 ++++++ .../components/BillingInformationDialog.vue | 35 ++ .../src2/components/BuyPrepaidCredits.vue | 201 +++++++++++ .../src2/components/ChangeAppPlanSelector.vue | 115 ++++++ .../components/ChangePaymentModeDialog.vue | 135 +++++++ dashboard/src2/components/ConfigEditor.vue | 341 ++++++++++++++++++ dashboard/src2/components/ConfirmDialogs.vue | 63 ++++ dashboard/src2/components/DescriptionList.vue | 17 + dashboard/src2/components/FeatureList.vue | 19 + dashboard/src2/components/Form.vue | 130 +++++++ dashboard/src2/components/FrappeCloudLogo.vue | 95 +++++ .../src2/components/InvoiceUsageCard.vue | 39 ++ .../src2/components/InvoiceUsageTable.vue | 150 ++++++++ .../src2/components/MarketplaceAppCard.vue | 30 ++ .../components/MarketplaceAppDescriptions.vue | 184 ++++++++++ .../components/MarketplaceAppReleaseList.vue | 313 ++++++++++++++++ .../components/MarketplaceAppScreenshots.vue | 86 +++++ dashboard/src2/components/Modal.vue | 79 ++++ dashboard/src2/components/Navbar.vue | 143 ++++++++ .../src2/components/NewAppRepositories.vue | 108 ++++++ dashboard/src2/components/Notification.vue | 59 +++ .../src2/components/NotificationToasts.vue | 20 + dashboard/src2/components/PlanIcon.vue | 25 ++ dashboard/src2/components/Popover.vue | 194 ++++++++++ dashboard/src2/components/ProgressArc.vue | 61 ++++ dashboard/src2/components/Report.vue | 60 +++ dashboard/src2/components/Sidebar.vue | 253 +++++++++++++ .../src2/components/SiteAppUpdateCard.vue | 74 ++++ dashboard/src2/components/SitePlansTable.vue | 75 ++++ dashboard/src2/components/SiteUpdateCard.vue | 60 +++ dashboard/src2/components/Steps.vue | 90 +++++ dashboard/src2/components/StripeLogo.vue | 32 ++ dashboard/src2/components/Tabs.vue | 66 ++++ dashboard/src2/components/Tags.vue | 158 ++++++++ dashboard/src2/components/WizardCard.vue | 16 + .../marketplace/CreateAppVersionDialog.vue | 104 ++++++ .../MarketplaceAppReviewStages.vue | 161 +++++++++ .../marketplace/PublisherPayoutInfoCard.vue | 154 ++++++++ .../marketplace/PublisherProfileCard.vue | 114 ++++++ 47 files changed, 4933 insertions(+), 12 deletions(-) create mode 100644 dashboard/src2/components/AlertBillingInformation.vue create mode 100644 dashboard/src2/components/AlertSiteActivation.vue create mode 100644 dashboard/src2/components/AlertSiteUpdate.vue create mode 100644 dashboard/src2/components/AlertUpdate.vue create mode 100644 dashboard/src2/components/AppSourceSelector.vue create mode 100644 dashboard/src2/components/AppSubscriptionSummary.vue create mode 100644 dashboard/src2/components/BackupFilesUploader.vue create mode 100644 dashboard/src2/components/BenchAppUpdates.vue create mode 100644 dashboard/src2/components/BillingInformationDialog.vue create mode 100644 dashboard/src2/components/BuyPrepaidCredits.vue create mode 100644 dashboard/src2/components/ChangeAppPlanSelector.vue create mode 100644 dashboard/src2/components/ChangePaymentModeDialog.vue create mode 100644 dashboard/src2/components/ConfigEditor.vue create mode 100644 dashboard/src2/components/ConfirmDialogs.vue create mode 100644 dashboard/src2/components/DescriptionList.vue create mode 100644 dashboard/src2/components/FeatureList.vue create mode 100644 dashboard/src2/components/Form.vue create mode 100644 dashboard/src2/components/FrappeCloudLogo.vue create mode 100644 dashboard/src2/components/InvoiceUsageCard.vue create mode 100644 dashboard/src2/components/InvoiceUsageTable.vue create mode 100644 dashboard/src2/components/MarketplaceAppCard.vue create mode 100644 dashboard/src2/components/MarketplaceAppDescriptions.vue create mode 100644 dashboard/src2/components/MarketplaceAppReleaseList.vue create mode 100644 dashboard/src2/components/MarketplaceAppScreenshots.vue create mode 100644 dashboard/src2/components/Modal.vue create mode 100644 dashboard/src2/components/Navbar.vue create mode 100644 dashboard/src2/components/NewAppRepositories.vue create mode 100644 dashboard/src2/components/Notification.vue create mode 100644 dashboard/src2/components/NotificationToasts.vue create mode 100644 dashboard/src2/components/PlanIcon.vue create mode 100644 dashboard/src2/components/Popover.vue create mode 100644 dashboard/src2/components/ProgressArc.vue create mode 100644 dashboard/src2/components/Report.vue create mode 100644 dashboard/src2/components/Sidebar.vue create mode 100644 dashboard/src2/components/SiteAppUpdateCard.vue create mode 100644 dashboard/src2/components/SitePlansTable.vue create mode 100644 dashboard/src2/components/SiteUpdateCard.vue create mode 100644 dashboard/src2/components/Steps.vue create mode 100644 dashboard/src2/components/StripeLogo.vue create mode 100644 dashboard/src2/components/Tabs.vue create mode 100644 dashboard/src2/components/Tags.vue create mode 100644 dashboard/src2/components/WizardCard.vue create mode 100644 dashboard/src2/components/marketplace/CreateAppVersionDialog.vue create mode 100644 dashboard/src2/components/marketplace/MarketplaceAppReviewStages.vue create mode 100644 dashboard/src2/components/marketplace/PublisherPayoutInfoCard.vue create mode 100644 dashboard/src2/components/marketplace/PublisherProfileCard.vue diff --git a/dashboard/index.html b/dashboard/index.html index 1a7a4ce..a95bde5 100644 --- a/dashboard/index.html +++ b/dashboard/index.html @@ -24,18 +24,9 @@
diff --git a/dashboard/src2/components/AlertBillingInformation.vue b/dashboard/src2/components/AlertBillingInformation.vue new file mode 100644 index 0000000..e4003a1 --- /dev/null +++ b/dashboard/src2/components/AlertBillingInformation.vue @@ -0,0 +1,65 @@ + + diff --git a/dashboard/src2/components/AlertSiteActivation.vue b/dashboard/src2/components/AlertSiteActivation.vue new file mode 100644 index 0000000..4f7427c --- /dev/null +++ b/dashboard/src2/components/AlertSiteActivation.vue @@ -0,0 +1,32 @@ + + diff --git a/dashboard/src2/components/AlertSiteUpdate.vue b/dashboard/src2/components/AlertSiteUpdate.vue new file mode 100644 index 0000000..81747c5 --- /dev/null +++ b/dashboard/src2/components/AlertSiteUpdate.vue @@ -0,0 +1,165 @@ + + diff --git a/dashboard/src2/components/AlertUpdate.vue b/dashboard/src2/components/AlertUpdate.vue new file mode 100644 index 0000000..81a305a --- /dev/null +++ b/dashboard/src2/components/AlertUpdate.vue @@ -0,0 +1,172 @@ + + diff --git a/dashboard/src2/components/AppSourceSelector.vue b/dashboard/src2/components/AppSourceSelector.vue new file mode 100644 index 0000000..1bb0f89 --- /dev/null +++ b/dashboard/src2/components/AppSourceSelector.vue @@ -0,0 +1,110 @@ + + diff --git a/dashboard/src2/components/AppSubscriptionSummary.vue b/dashboard/src2/components/AppSubscriptionSummary.vue new file mode 100644 index 0000000..bfc4ce4 --- /dev/null +++ b/dashboard/src2/components/AppSubscriptionSummary.vue @@ -0,0 +1,75 @@ + + + diff --git a/dashboard/src2/components/BackupFilesUploader.vue b/dashboard/src2/components/BackupFilesUploader.vue new file mode 100644 index 0000000..c403b58 --- /dev/null +++ b/dashboard/src2/components/BackupFilesUploader.vue @@ -0,0 +1,147 @@ + + diff --git a/dashboard/src2/components/BenchAppUpdates.vue b/dashboard/src2/components/BenchAppUpdates.vue new file mode 100644 index 0000000..91dc401 --- /dev/null +++ b/dashboard/src2/components/BenchAppUpdates.vue @@ -0,0 +1,105 @@ + + diff --git a/dashboard/src2/components/BillingInformationDialog.vue b/dashboard/src2/components/BillingInformationDialog.vue new file mode 100644 index 0000000..b40d28a --- /dev/null +++ b/dashboard/src2/components/BillingInformationDialog.vue @@ -0,0 +1,35 @@ + + diff --git a/dashboard/src2/components/BuyPrepaidCredits.vue b/dashboard/src2/components/BuyPrepaidCredits.vue new file mode 100644 index 0000000..27af80b --- /dev/null +++ b/dashboard/src2/components/BuyPrepaidCredits.vue @@ -0,0 +1,201 @@ + + diff --git a/dashboard/src2/components/ChangeAppPlanSelector.vue b/dashboard/src2/components/ChangeAppPlanSelector.vue new file mode 100644 index 0000000..74e91fe --- /dev/null +++ b/dashboard/src2/components/ChangeAppPlanSelector.vue @@ -0,0 +1,115 @@ + + + diff --git a/dashboard/src2/components/ChangePaymentModeDialog.vue b/dashboard/src2/components/ChangePaymentModeDialog.vue new file mode 100644 index 0000000..d3f15d9 --- /dev/null +++ b/dashboard/src2/components/ChangePaymentModeDialog.vue @@ -0,0 +1,135 @@ + + diff --git a/dashboard/src2/components/ConfigEditor.vue b/dashboard/src2/components/ConfigEditor.vue new file mode 100644 index 0000000..3b2c91e --- /dev/null +++ b/dashboard/src2/components/ConfigEditor.vue @@ -0,0 +1,341 @@ + + + diff --git a/dashboard/src2/components/ConfirmDialogs.vue b/dashboard/src2/components/ConfirmDialogs.vue new file mode 100644 index 0000000..1f300b9 --- /dev/null +++ b/dashboard/src2/components/ConfirmDialogs.vue @@ -0,0 +1,63 @@ + + + diff --git a/dashboard/src2/components/DescriptionList.vue b/dashboard/src2/components/DescriptionList.vue new file mode 100644 index 0000000..d583cfc --- /dev/null +++ b/dashboard/src2/components/DescriptionList.vue @@ -0,0 +1,17 @@ + + + diff --git a/dashboard/src2/components/FeatureList.vue b/dashboard/src2/components/FeatureList.vue new file mode 100644 index 0000000..bee0e38 --- /dev/null +++ b/dashboard/src2/components/FeatureList.vue @@ -0,0 +1,19 @@ + + + diff --git a/dashboard/src2/components/Form.vue b/dashboard/src2/components/Form.vue new file mode 100644 index 0000000..05cd0de --- /dev/null +++ b/dashboard/src2/components/Form.vue @@ -0,0 +1,130 @@ + + + diff --git a/dashboard/src2/components/FrappeCloudLogo.vue b/dashboard/src2/components/FrappeCloudLogo.vue new file mode 100644 index 0000000..07285f9 --- /dev/null +++ b/dashboard/src2/components/FrappeCloudLogo.vue @@ -0,0 +1,95 @@ + diff --git a/dashboard/src2/components/InvoiceUsageCard.vue b/dashboard/src2/components/InvoiceUsageCard.vue new file mode 100644 index 0000000..2f58c47 --- /dev/null +++ b/dashboard/src2/components/InvoiceUsageCard.vue @@ -0,0 +1,39 @@ + + diff --git a/dashboard/src2/components/InvoiceUsageTable.vue b/dashboard/src2/components/InvoiceUsageTable.vue new file mode 100644 index 0000000..5347459 --- /dev/null +++ b/dashboard/src2/components/InvoiceUsageTable.vue @@ -0,0 +1,150 @@ + + diff --git a/dashboard/src2/components/MarketplaceAppCard.vue b/dashboard/src2/components/MarketplaceAppCard.vue new file mode 100644 index 0000000..f24d32d --- /dev/null +++ b/dashboard/src2/components/MarketplaceAppCard.vue @@ -0,0 +1,30 @@ + + + diff --git a/dashboard/src2/components/MarketplaceAppDescriptions.vue b/dashboard/src2/components/MarketplaceAppDescriptions.vue new file mode 100644 index 0000000..3a64de0 --- /dev/null +++ b/dashboard/src2/components/MarketplaceAppDescriptions.vue @@ -0,0 +1,184 @@ + + + diff --git a/dashboard/src2/components/MarketplaceAppReleaseList.vue b/dashboard/src2/components/MarketplaceAppReleaseList.vue new file mode 100644 index 0000000..95c71c2 --- /dev/null +++ b/dashboard/src2/components/MarketplaceAppReleaseList.vue @@ -0,0 +1,313 @@ + + + diff --git a/dashboard/src2/components/MarketplaceAppScreenshots.vue b/dashboard/src2/components/MarketplaceAppScreenshots.vue new file mode 100644 index 0000000..5d7e0bd --- /dev/null +++ b/dashboard/src2/components/MarketplaceAppScreenshots.vue @@ -0,0 +1,86 @@ + + + diff --git a/dashboard/src2/components/Modal.vue b/dashboard/src2/components/Modal.vue new file mode 100644 index 0000000..85225a8 --- /dev/null +++ b/dashboard/src2/components/Modal.vue @@ -0,0 +1,79 @@ + + + diff --git a/dashboard/src2/components/Navbar.vue b/dashboard/src2/components/Navbar.vue new file mode 100644 index 0000000..71ab073 --- /dev/null +++ b/dashboard/src2/components/Navbar.vue @@ -0,0 +1,143 @@ + + + diff --git a/dashboard/src2/components/NewAppRepositories.vue b/dashboard/src2/components/NewAppRepositories.vue new file mode 100644 index 0000000..72f5789 --- /dev/null +++ b/dashboard/src2/components/NewAppRepositories.vue @@ -0,0 +1,108 @@ + + diff --git a/dashboard/src2/components/Notification.vue b/dashboard/src2/components/Notification.vue new file mode 100644 index 0000000..6e1a82d --- /dev/null +++ b/dashboard/src2/components/Notification.vue @@ -0,0 +1,59 @@ + + + diff --git a/dashboard/src2/components/NotificationToasts.vue b/dashboard/src2/components/NotificationToasts.vue new file mode 100644 index 0000000..5b75b22 --- /dev/null +++ b/dashboard/src2/components/NotificationToasts.vue @@ -0,0 +1,20 @@ + + + diff --git a/dashboard/src2/components/PlanIcon.vue b/dashboard/src2/components/PlanIcon.vue new file mode 100644 index 0000000..1babbc2 --- /dev/null +++ b/dashboard/src2/components/PlanIcon.vue @@ -0,0 +1,25 @@ + diff --git a/dashboard/src2/components/Popover.vue b/dashboard/src2/components/Popover.vue new file mode 100644 index 0000000..4866c8d --- /dev/null +++ b/dashboard/src2/components/Popover.vue @@ -0,0 +1,194 @@ + + + + diff --git a/dashboard/src2/components/ProgressArc.vue b/dashboard/src2/components/ProgressArc.vue new file mode 100644 index 0000000..7c5103f --- /dev/null +++ b/dashboard/src2/components/ProgressArc.vue @@ -0,0 +1,61 @@ + + diff --git a/dashboard/src2/components/Report.vue b/dashboard/src2/components/Report.vue new file mode 100644 index 0000000..c429995 --- /dev/null +++ b/dashboard/src2/components/Report.vue @@ -0,0 +1,60 @@ + + diff --git a/dashboard/src2/components/Sidebar.vue b/dashboard/src2/components/Sidebar.vue new file mode 100644 index 0000000..b8bcce4 --- /dev/null +++ b/dashboard/src2/components/Sidebar.vue @@ -0,0 +1,253 @@ + + + diff --git a/dashboard/src2/components/SiteAppUpdateCard.vue b/dashboard/src2/components/SiteAppUpdateCard.vue new file mode 100644 index 0000000..3d18b93 --- /dev/null +++ b/dashboard/src2/components/SiteAppUpdateCard.vue @@ -0,0 +1,74 @@ + + + diff --git a/dashboard/src2/components/SitePlansTable.vue b/dashboard/src2/components/SitePlansTable.vue new file mode 100644 index 0000000..941acee --- /dev/null +++ b/dashboard/src2/components/SitePlansTable.vue @@ -0,0 +1,75 @@ + + + diff --git a/dashboard/src2/components/SiteUpdateCard.vue b/dashboard/src2/components/SiteUpdateCard.vue new file mode 100644 index 0000000..a6b9618 --- /dev/null +++ b/dashboard/src2/components/SiteUpdateCard.vue @@ -0,0 +1,60 @@ + + + diff --git a/dashboard/src2/components/Steps.vue b/dashboard/src2/components/Steps.vue new file mode 100644 index 0000000..ce1b51d --- /dev/null +++ b/dashboard/src2/components/Steps.vue @@ -0,0 +1,90 @@ + + diff --git a/dashboard/src2/components/StripeLogo.vue b/dashboard/src2/components/StripeLogo.vue new file mode 100644 index 0000000..377ddfc --- /dev/null +++ b/dashboard/src2/components/StripeLogo.vue @@ -0,0 +1,32 @@ + + diff --git a/dashboard/src2/components/Tabs.vue b/dashboard/src2/components/Tabs.vue new file mode 100644 index 0000000..7ac0619 --- /dev/null +++ b/dashboard/src2/components/Tabs.vue @@ -0,0 +1,66 @@ + + + diff --git a/dashboard/src2/components/Tags.vue b/dashboard/src2/components/Tags.vue new file mode 100644 index 0000000..72480d7 --- /dev/null +++ b/dashboard/src2/components/Tags.vue @@ -0,0 +1,158 @@ + + diff --git a/dashboard/src2/components/WizardCard.vue b/dashboard/src2/components/WizardCard.vue new file mode 100644 index 0000000..4f7e3d6 --- /dev/null +++ b/dashboard/src2/components/WizardCard.vue @@ -0,0 +1,16 @@ + + diff --git a/dashboard/src2/components/marketplace/CreateAppVersionDialog.vue b/dashboard/src2/components/marketplace/CreateAppVersionDialog.vue new file mode 100644 index 0000000..23fa63f --- /dev/null +++ b/dashboard/src2/components/marketplace/CreateAppVersionDialog.vue @@ -0,0 +1,104 @@ + + + diff --git a/dashboard/src2/components/marketplace/MarketplaceAppReviewStages.vue b/dashboard/src2/components/marketplace/MarketplaceAppReviewStages.vue new file mode 100644 index 0000000..59832ba --- /dev/null +++ b/dashboard/src2/components/marketplace/MarketplaceAppReviewStages.vue @@ -0,0 +1,161 @@ + + + diff --git a/dashboard/src2/components/marketplace/PublisherPayoutInfoCard.vue b/dashboard/src2/components/marketplace/PublisherPayoutInfoCard.vue new file mode 100644 index 0000000..20d3d78 --- /dev/null +++ b/dashboard/src2/components/marketplace/PublisherPayoutInfoCard.vue @@ -0,0 +1,154 @@ + + + diff --git a/dashboard/src2/components/marketplace/PublisherProfileCard.vue b/dashboard/src2/components/marketplace/PublisherProfileCard.vue new file mode 100644 index 0000000..50e295b --- /dev/null +++ b/dashboard/src2/components/marketplace/PublisherProfileCard.vue @@ -0,0 +1,114 @@ + + +