Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat(settings): Refactor appstore to use Pinia
Signed-off-by: Ferdinand Thiessen <[email protected]>
  • Loading branch information
susnux committed Mar 11, 2024
commit 2b794b41ad0eb9610674fc44543006a9da9d624e
104 changes: 104 additions & 0 deletions apps/settings/src/store/apps-store.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
/**
* @copyright Copyright (c) 2024 Ferdinand Thiessen <[email protected]>
*
* @author Ferdinand Thiessen <[email protected]>
*
* @license AGPL-3.0-or-later
*
* 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 <http://www.gnu.org/licenses/>.
*
*/

import type { IAppstoreApp, IAppstoreCategory } from '../app-types.ts'

import { showError } from '@nextcloud/dialogs'
import { loadState } from '@nextcloud/initial-state'
import { translate as t } from '@nextcloud/l10n'
import { generateUrl } from '@nextcloud/router'
import { defineStore } from 'pinia'

import axios from '@nextcloud/axios'

import logger from '../logger'
import APPSTORE_CATEGORY_ICONS from '../constants/AppstoreCategoryIcons.ts'

const showApiError = () => showError(t('settings', 'An error occurred during the request. Unable to proceed.'))

export const useAppsStore = defineStore('settings-apps', {
state: () => ({
apps: [] as IAppstoreApp[],
categories: [] as IAppstoreCategory[],
updateCount: loadState<number>('settings', 'appstoreUpdateCount', 0),
loading: {
apps: false,
categories: false,
},
loadingList: false,
gettingCategoriesPromise: null,
}),

actions: {
async loadCategories(force = false) {
if (this.categories.length > 0 && !force) {
return
}

try {
this.loading.categories = true
const { data: categories } = await axios.get<IAppstoreCategory[]>(generateUrl('settings/apps/categories'))

for (const category of categories) {
category.icon = APPSTORE_CATEGORY_ICONS[category.id] ?? ''
}

this.$patch({
categories,
})
} catch (error) {
logger.error(error as Error)
showApiError()
} finally {
this.loading.categories = false
}
},

async loadApps(force = false) {
if (this.apps.length > 0 && !force) {
return
}

try {
this.loading.apps = true
const { data } = await axios.get<{ apps: IAppstoreApp[] }>(generateUrl('settings/apps/list'))

this.$patch({
apps: data.apps,
})
} catch (error) {
logger.error(error as Error)
showApiError()
} finally {
this.loading.apps = false
}
},

getCategoryById(categoryId: string) {
return this.categories.find(({ id }) => id === categoryId) ?? null
},

getAppById(appId: string) {
return this.apps.find(({ id }) => id === appId) ?? null
},
},
})