Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-04-07 11:01:36 +0300
committerJoas Schilling <coding@schilljs.com>2022-04-13 17:14:19 +0300
commit51da02f828ead24a56401ee0963d446192d887b7 (patch)
tree9d8e97256d00fab5eb240b8b1f4251e6ff52064b /src/store/conversationSharedItemsStore.js
parent90515196fe5f0f469d14224e1ad728c49a064dda (diff)
Fix filename
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'src/store/conversationSharedItemsStore.js')
-rw-r--r--src/store/conversationSharedItemsStore.js78
1 files changed, 78 insertions, 0 deletions
diff --git a/src/store/conversationSharedItemsStore.js b/src/store/conversationSharedItemsStore.js
new file mode 100644
index 000000000..612b70c21
--- /dev/null
+++ b/src/store/conversationSharedItemsStore.js
@@ -0,0 +1,78 @@
+/**
+ * @copyright Copyright (c) 2022 Marco Ambrosini <marcoambrosini@pm.me>
+ *
+ * @author Marco Ambrosini <marcoambrosini@pm.me>
+ *
+ * @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 Vue from 'vue'
+import { getSharedItemsOverview, getSharedItems } from '../services/conversationSharedItemsService'
+
+// Store structure
+// token: {
+// media: {},
+// file: {},
+// voice: {},
+// location: {}
+// deckcard: {},
+// audio: {},
+// other: {},
+
+const state = () => ({
+ state: {},
+})
+
+const getters = {
+ getterSharedItems: (state, token) => {
+ return state[token]
+ },
+}
+
+export const mutations = {
+ addSharedItem: (state, { token, type, response }) => {
+ if (!state[token]) {
+ Vue.set(state, token, {})
+ }
+ Vue.set(state[token], type, response)
+ },
+}
+
+const actions = {
+ async getSharedItems({ commit }, { token, type, lastKnownMessageId, limit }) {
+ try {
+ const response = await getSharedItems(token, type, lastKnownMessageId, limit)
+ // loop over the response elements and add them to the store
+ for (const sharedItem in response) {
+ commit('addSharedItem', sharedItem)
+ }
+
+ } catch (error) {
+ console.debug(error)
+ }
+ },
+
+ async getSharedItemsOverview({ commit }, { token }) {
+ try {
+ const response = await getSharedItemsOverview(token, 10)
+ } catch (error) {
+ console.debug(error)
+ }
+ },
+}
+
+export default { state, mutations, getters, actions }