aboutsummaryrefslogtreecommitdiffstats
path: root/apps/user_status/src/store/predefinedStatuses.js
diff options
context:
space:
mode:
Diffstat (limited to 'apps/user_status/src/store/predefinedStatuses.js')
-rw-r--r--apps/user_status/src/store/predefinedStatuses.js39
1 files changed, 14 insertions, 25 deletions
diff --git a/apps/user_status/src/store/predefinedStatuses.js b/apps/user_status/src/store/predefinedStatuses.js
index f7174bf8bfc..6d592ca627e 100644
--- a/apps/user_status/src/store/predefinedStatuses.js
+++ b/apps/user_status/src/store/predefinedStatuses.js
@@ -1,25 +1,9 @@
/**
- * @copyright Copyright (c) 2020 Georg Ehrke
- *
- * @author Georg Ehrke <oc.list@georgehrke.com>
- *
- * @license GNU AGPL version 3 or any later version
- *
- * 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/>.
- *
+ * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
-import { fetchAllPredefinedStatuses } from '../services/predefinedStatusService'
+
+import { fetchAllPredefinedStatuses } from '../services/predefinedStatusService.js'
const state = {
predefinedStatuses: [],
@@ -30,23 +14,28 @@ const mutations = {
/**
* Adds a predefined status to the state
*
- * @param {Object} state The Vuex state
- * @param {Object} status The status to add
+ * @param {object} state The Vuex state
+ * @param {object} status The status to add
*/
addPredefinedStatus(state, status) {
- state.predefinedStatuses.push(status)
+ state.predefinedStatuses = [...state.predefinedStatuses, status]
},
}
-const getters = {}
+const getters = {
+ statusesHaveLoaded(state) {
+ return state.predefinedStatuses.length > 0
+ },
+}
const actions = {
/**
* Loads all predefined statuses from the server
*
- * @param {Object} vuex The Vuex components
+ * @param {object} vuex The Vuex components
* @param {Function} vuex.commit The Vuex commit function
+ * @param {object} vuex.state -
*/
async loadAllPredefinedStatuses({ state, commit }) {
if (state.predefinedStatuses.length > 0) {