bookmarks/src/store/actions.js

783 lines
20 KiB
JavaScript
Raw Normal View History

2020-03-25 12:19:17 +00:00
import axios from '@nextcloud/axios'
import { generateUrl } from '@nextcloud/router'
import AppGlobal from '../mixins/AppGlobal'
import { mutations } from './mutations'
2019-08-29 09:05:29 +00:00
const BATCH_SIZE = 42
2019-08-29 09:05:29 +00:00
export const actions = {
ADD_ALL_BOOKMARKS: 'ADD_ALL_BOOKMARKS',
CREATE_BOOKMARK: 'CREATE_BOOKMARK',
FIND_BOOKMARK: 'FIND_BOOKMARK',
DELETE_BOOKMARK: 'DELETE_BOOKMARK',
OPEN_BOOKMARK: 'OPEN_BOOKMARK',
SAVE_BOOKMARK: 'SAVE_BOOKMARK',
MOVE_BOOKMARK: 'MOVE_BOOKMARK',
IMPORT_BOOKMARKS: 'IMPORT_BOOKMARKS',
2019-10-05 21:24:45 +00:00
DELETE_BOOKMARKS: 'DELETE_BOOKMARKS',
2019-08-29 09:05:29 +00:00
LOAD_TAGS: 'LOAD_TAGS',
RENAME_TAG: 'RENAME_TAG',
DELETE_TAG: 'DELETE_TAG',
LOAD_FOLDERS: 'LOAD_FOLDERS',
CREATE_FOLDER: 'CREATE_FOLDER',
SAVE_FOLDER: 'SAVE_FOLDER',
DELETE_FOLDER: 'DELETE_FOLDER',
OPEN_FOLDER_DETAILS: 'OPEN_FOLDER_DETAILS',
2019-08-29 09:05:29 +00:00
MOVE_SELECTION: 'MOVE_SELECTION',
2019-10-11 12:14:49 +00:00
DELETE_SELECTION: 'DELETE_SELECTION',
2019-08-29 09:05:29 +00:00
RELOAD_VIEW: 'RELOAD_VIEW',
NO_FILTER: 'NO_FILTER',
FILTER_BY_RECENT: 'FILTER_BY_RECENT',
FILTER_BY_UNTAGGED: 'FILTER_BY_UNTAGGED',
FILTER_BY_TAGS: 'FILTER_BY_TAGS',
FILTER_BY_FOLDER: 'FILTER_BY_FOLDER',
FILTER_BY_SEARCH: 'FILTER_BY_SEARCH',
FETCH_PAGE: 'FETCH_PAGE',
SET_SETTING: 'SET_SETTING',
LOAD_SETTING: 'LOAD_SETTING',
LOAD_SETTINGS: 'SLOAD_SETTINGS',
LOAD_SHARES_OF_FOLDER: 'LOAD_SHARES_OF_FOLDER',
2020-03-30 12:31:54 +00:00
CREATE_SHARE: 'CREATE_SHARE',
EDIT_SHARE: 'EDIT_SHARE',
DELETE_SHARE: 'DELETE_SHARE',
LOAD_PUBLIC_LINK: 'LOAD_PUBLIC_LINK',
CREATE_PUBLIC_LINK: 'CREATE_PUBLIC_LINK',
DELETE_PUBLIC_LINK: 'DELETE_PUBLIC_LINK',
}
2019-08-29 09:05:29 +00:00
export default {
[actions.ADD_ALL_BOOKMARKS]({ commit }, bookmarks) {
for (const bookmark of bookmarks) {
commit(mutations.ADD_BOOKMARK, bookmark)
2019-08-29 09:05:29 +00:00
}
},
async [actions.FIND_BOOKMARK]({ commit, dispatch, state }, link) {
if (state.loading.bookmarks) return
2019-08-29 09:05:29 +00:00
try {
const response = await axios.get(url(state, '/bookmark'), {
params: {
url: link,
},
})
2019-08-29 09:05:29 +00:00
const {
data: { data: bookmarks, status },
} = response
2019-08-29 09:05:29 +00:00
if (status !== 'success') {
throw new Error(response.data)
2019-08-29 09:05:29 +00:00
}
if (!bookmarks.length) return
commit(mutations.ADD_BOOKMARK, bookmarks[0])
return bookmarks[0]
2019-08-29 09:05:29 +00:00
} catch (err) {
console.error(err)
2019-08-29 09:05:29 +00:00
commit(
mutations.SET_ERROR,
AppGlobal.methods.t('bookmarks', 'Failed to find existing bookmark')
)
throw err
2019-08-29 09:05:29 +00:00
}
},
[actions.CREATE_BOOKMARK]({ commit, dispatch, state }, data) {
if (state.loading.bookmarks) return
2019-10-05 21:13:26 +00:00
commit(mutations.FETCH_START, { type: 'createBookmark' })
2019-08-29 09:05:29 +00:00
return axios
.post(url(state, '/bookmark'), {
2019-08-29 09:05:29 +00:00
url: data.url,
title: data.title,
description: data.description,
folders: data.folders && data.folders.map(parseInt),
tags: data.tags,
2019-08-29 09:05:29 +00:00
})
.then(response => {
const {
data: { item: bookmark, status },
} = response
2019-08-29 09:05:29 +00:00
if (status !== 'success') {
throw new Error(response.data.data.join('\n'))
2019-08-29 09:05:29 +00:00
}
commit(mutations.DISPLAY_NEW_BOOKMARK, false)
commit(mutations.ADD_BOOKMARK, bookmark)
return dispatch(actions.OPEN_BOOKMARK, bookmark.id)
2019-08-29 09:05:29 +00:00
})
.catch(err => {
console.error(err)
2019-08-29 09:05:29 +00:00
commit(
mutations.SET_ERROR,
AppGlobal.methods.t('bookmarks', 'Failed to create bookmark')
)
throw err
2019-08-29 09:05:29 +00:00
})
.finally(() => {
commit(mutations.FETCH_END, 'createBookmark')
})
2019-08-29 09:05:29 +00:00
},
[actions.SAVE_BOOKMARK]({ commit, dispatch, state }, id) {
2019-10-05 21:13:26 +00:00
commit(mutations.FETCH_START, { type: 'saveBookmark' })
2019-08-29 09:05:29 +00:00
return axios
.put(url(state, `/bookmark/${id}`), this.getters.getBookmark(id))
2019-08-29 09:05:29 +00:00
.then(response => {
const {
data: { status },
} = response
2019-08-29 09:05:29 +00:00
if (status !== 'success') {
throw new Error(response.data)
2019-08-29 09:05:29 +00:00
}
})
.catch(err => {
console.error(err)
2019-08-29 09:05:29 +00:00
commit(
mutations.SET_ERROR,
AppGlobal.methods.t('bookmarks', 'Failed to save bookmark')
)
throw err
2019-08-29 09:05:29 +00:00
})
.finally(() => {
commit(mutations.FETCH_END, 'saveBookmark')
})
2019-08-29 09:05:29 +00:00
},
async [actions.MOVE_BOOKMARK](
{ commit, dispatch, state },
{ bookmark, oldFolder, newFolder }
) {
2019-10-05 21:13:26 +00:00
commit(mutations.FETCH_START, { type: 'moveBookmark' })
2019-08-29 09:05:29 +00:00
try {
const response = await axios.post(
url(state, `/folder/${newFolder}/bookmarks/${bookmark}`)
)
2019-08-29 09:05:29 +00:00
if (response.data.status !== 'success') {
throw new Error(response.data)
2019-08-29 09:05:29 +00:00
}
const response2 = await axios.delete(
url(state, `/folder/${oldFolder}/bookmarks/${bookmark}`)
)
2019-08-29 09:05:29 +00:00
if (response2.data.status !== 'success') {
throw new Error(response2.data)
2019-08-29 09:05:29 +00:00
}
} catch (err) {
console.error(err)
2019-08-29 09:05:29 +00:00
commit(
mutations.SET_ERROR,
AppGlobal.methods.t('bookmarks', 'Failed to move bookmark')
)
throw err
2019-08-29 09:05:29 +00:00
} finally {
commit(mutations.FETCH_END, 'moveBookmark')
2019-08-29 09:05:29 +00:00
}
},
[actions.OPEN_BOOKMARK]({ commit }, id) {
commit(mutations.SET_SIDEBAR, { type: 'bookmark', id })
2019-08-29 09:05:29 +00:00
},
async [actions.DELETE_BOOKMARK]({ commit, dispatch, state }, { id, folder }) {
2019-08-29 09:05:29 +00:00
if (folder) {
try {
const response = await axios.delete(
url(state, `/folder/${folder}/bookmarks/${id}`)
)
2019-08-29 09:05:29 +00:00
if (response.data.status !== 'success') {
throw new Error(response.data)
2019-08-29 09:05:29 +00:00
}
commit(mutations.REMOVE_BOOKMARK, id)
2019-08-29 09:05:29 +00:00
} catch (err) {
console.error(err)
2019-08-29 09:05:29 +00:00
commit(
mutations.SET_ERROR,
AppGlobal.methods.t('bookmarks', 'Failed to delete bookmark')
)
throw err
2019-08-29 09:05:29 +00:00
}
return
2019-08-29 09:05:29 +00:00
}
try {
const response = await axios.delete(url(state, `/bookmark/${id}`))
2019-08-29 09:05:29 +00:00
if (response.data.status !== 'success') {
throw new Error(response.data)
2019-08-29 09:05:29 +00:00
}
commit(mutations.REMOVE_BOOKMARK, id)
2019-08-29 09:05:29 +00:00
} catch (err) {
console.error(err)
2019-08-29 09:05:29 +00:00
commit(
mutations.SET_ERROR,
AppGlobal.methods.t('bookmarks', 'Failed to delete bookmark')
)
throw err
2019-08-29 09:05:29 +00:00
}
},
[actions.IMPORT_BOOKMARKS]({ commit, dispatch, state }, file) {
const data = new FormData()
data.append('bm_import', file)
2019-08-29 09:05:29 +00:00
return axios
.post(url(state, `/bookmark/import`), data)
2019-08-29 09:05:29 +00:00
.then(response => {
if (!response.data || !response.data.status === 'success') {
2019-08-29 09:05:29 +00:00
if (response.status === 413) {
throw new Error('Selected file is too large')
2019-08-29 09:05:29 +00:00
}
console.error('Failed to import bookmarks', response)
2020-03-25 12:19:17 +00:00
throw new Error(response.data)
2019-08-29 09:05:29 +00:00
}
})
.catch(err => {
console.error(err)
2019-08-29 09:05:29 +00:00
commit(
mutations.SET_ERROR,
AppGlobal.methods.t('bookmarks', err.message)
)
throw err
})
2019-08-29 09:05:29 +00:00
},
[actions.DELETE_BOOKMARKS]({ commit, dispatch, state }) {
return axios
.delete(url(state, `/bookmark`))
2019-08-29 09:05:29 +00:00
.then(response => {
const {
data: { status },
} = response
2019-08-29 09:05:29 +00:00
if (status !== 'success') {
throw new Error(response.data)
2019-08-29 09:05:29 +00:00
}
return dispatch(actions.LOAD_FOLDERS)
2019-08-29 09:05:29 +00:00
})
.catch(err => {
console.error(err)
2019-08-29 09:05:29 +00:00
commit(
mutations.SET_ERROR,
AppGlobal.methods.t('bookmarks', err.message)
)
throw err
})
2019-08-29 09:05:29 +00:00
},
[actions.RENAME_TAG]({ commit, dispatch, state }, { oldName, newName }) {
2019-10-05 21:13:26 +00:00
commit(mutations.FETCH_START, { type: 'tag' })
2019-08-29 09:05:29 +00:00
return axios
.put(url(state, `/tag/${oldName}`), {
name: newName,
2019-08-29 09:05:29 +00:00
})
.then(response => {
const {
data: { status },
} = response
2019-08-29 09:05:29 +00:00
if (status !== 'success') {
throw new Error(response.data)
2019-08-29 09:05:29 +00:00
}
2020-03-25 16:43:49 +00:00
commit(mutations.RENAME_TAG, { oldName, newName })
return dispatch(actions.LOAD_TAGS)
2019-08-29 09:05:29 +00:00
})
.catch(err => {
console.error(err)
2019-08-29 09:05:29 +00:00
commit(
mutations.SET_ERROR,
AppGlobal.methods.t('bookmarks', 'Failed to create bookmark')
)
throw err
2019-08-29 09:05:29 +00:00
})
.finally(() => {
commit(mutations.FETCH_END, 'tag')
})
2019-08-29 09:05:29 +00:00
},
[actions.LOAD_TAGS]({ commit, dispatch, state }, link) {
2019-10-05 21:13:26 +00:00
commit(mutations.FETCH_START, { type: 'tags' })
2019-08-29 09:05:29 +00:00
return axios
.get(url(state, '/tag'), { params: { count: true } })
2019-08-29 09:05:29 +00:00
.then(response => {
const { data: tags } = response
return commit(mutations.SET_TAGS, tags)
2019-08-29 09:05:29 +00:00
})
.catch(err => {
console.error(err)
2019-08-29 09:05:29 +00:00
commit(
mutations.SET_ERROR,
AppGlobal.methods.t('bookmarks', 'Failed to load tags')
)
throw err
2019-08-29 09:05:29 +00:00
})
.finally(() => {
commit(mutations.FETCH_END, 'tags')
})
2019-08-29 09:05:29 +00:00
},
[actions.DELETE_TAG]({ commit, dispatch, state }, tag) {
return axios
.delete(url(state, `/tag/${tag}`))
2019-08-29 09:05:29 +00:00
.then(response => {
const {
data: { status },
} = response
2019-08-29 09:05:29 +00:00
if (status !== 'success') {
throw new Error(response.data)
2019-08-29 09:05:29 +00:00
}
dispatch(actions.LOAD_TAGS)
2019-08-29 09:05:29 +00:00
})
.catch(err => {
console.error(err)
2019-08-29 09:05:29 +00:00
commit(
mutations.SET_ERROR,
AppGlobal.methods.t('bookmarks', 'Failed to delete bookmark')
)
throw err
})
2019-08-29 09:05:29 +00:00
},
[actions.LOAD_FOLDERS]({ commit, dispatch, state }) {
2019-10-12 18:00:15 +00:00
let canceled = false
commit(mutations.FETCH_START, {
type: 'folders',
cancel: () => {
canceled = true
},
2019-10-12 18:00:15 +00:00
})
2019-08-29 09:05:29 +00:00
return axios
.get(url(state, '/folder'), { params: {} })
2019-08-29 09:05:29 +00:00
.then(response => {
2019-10-12 18:00:15 +00:00
if (canceled) return
2019-08-29 09:05:29 +00:00
const {
data: { data, status },
} = response
if (status !== 'success') throw new Error(data)
const folders = data
return commit(mutations.SET_FOLDERS, folders)
2019-08-29 09:05:29 +00:00
})
.catch(err => {
console.error(err)
2019-08-29 09:05:29 +00:00
commit(
mutations.SET_ERROR,
AppGlobal.methods.t('bookmarks', 'Failed to load folders')
)
throw err
2019-08-29 09:05:29 +00:00
})
.finally(() => {
commit(mutations.FETCH_END, 'folders')
})
2019-08-29 09:05:29 +00:00
},
[actions.DELETE_FOLDER]({ commit, dispatch, state }, id) {
return axios
.delete(url(state, `/folder/${id}`))
2019-08-29 09:05:29 +00:00
.then(response => {
const {
data: { status },
} = response
2019-08-29 09:05:29 +00:00
if (status !== 'success') {
throw new Error(response.data)
2019-08-29 09:05:29 +00:00
}
dispatch(actions.LOAD_FOLDERS)
2019-08-29 09:05:29 +00:00
})
.catch(err => {
console.error(err)
2019-08-29 09:05:29 +00:00
commit(
mutations.SET_ERROR,
AppGlobal.methods.t('bookmarks', 'Failed to delete folder')
)
throw err
})
2019-08-29 09:05:29 +00:00
},
[actions.CREATE_FOLDER](
{ commit, dispatch, state },
{ parentFolder, title }
) {
return axios
.post(url(state, `/folder`), {
2019-08-29 09:05:29 +00:00
parent_folder: parentFolder,
title,
2019-08-29 09:05:29 +00:00
})
.then(response => {
const {
data: { status },
} = response
2019-08-29 09:05:29 +00:00
if (status !== 'success') {
throw new Error(response.data)
2019-08-29 09:05:29 +00:00
}
commit(mutations.DISPLAY_NEW_FOLDER, false)
dispatch(actions.LOAD_FOLDERS)
2019-08-29 09:05:29 +00:00
})
.catch(err => {
console.error(err)
2019-08-29 09:05:29 +00:00
commit(
mutations.SET_ERROR,
AppGlobal.methods.t('bookmarks', 'Failed to create folder')
)
throw err
})
2019-08-29 09:05:29 +00:00
},
[actions.SAVE_FOLDER]({ commit, dispatch, state }, id) {
const folder = this.getters.getFolder(id)[0]
2019-10-05 21:13:26 +00:00
commit(mutations.FETCH_START, { type: 'saveFolder' })
2019-08-29 09:05:29 +00:00
return axios
.put(url(state, `/folder/${id}`), {
2019-08-29 09:05:29 +00:00
parent_folder: folder.parent_folder,
title: folder.title,
2019-08-29 09:05:29 +00:00
})
.then(response => {
const {
data: { status },
} = response
2019-08-29 09:05:29 +00:00
if (status !== 'success') {
throw new Error(response.data)
2019-08-29 09:05:29 +00:00
}
})
.catch(err => {
console.error(err)
2019-08-29 09:05:29 +00:00
commit(
mutations.SET_ERROR,
AppGlobal.methods.t('bookmarks', 'Failed to create folder')
)
throw err
2019-08-29 09:05:29 +00:00
})
.finally(() => {
commit(mutations.FETCH_END, 'saveFolder')
})
2019-08-29 09:05:29 +00:00
},
[actions.OPEN_FOLDER_DETAILS]({ commit }, id) {
commit(mutations.SET_SIDEBAR, { type: 'folder', id })
},
2019-08-29 09:05:29 +00:00
async [actions.MOVE_SELECTION]({ commit, dispatch, state }, folderId) {
2019-10-05 21:13:26 +00:00
commit(mutations.FETCH_START, { type: 'moveSelection' })
2019-08-29 09:05:29 +00:00
try {
for (const folder of state.selection.folders) {
if (folderId === folder.id) {
throw new Error('Cannot move folder into itself')
2019-08-29 09:05:29 +00:00
}
folder.parent_folder = folderId
await dispatch(actions.SAVE_FOLDER, folder.id)
2019-08-29 09:05:29 +00:00
}
for (const bookmark of state.selection.bookmarks) {
await dispatch(actions.MOVE_BOOKMARK, {
oldFolder: bookmark.folders[bookmark.folders.length - 1], // FIXME This is veeeery ugly and will cause issues. Inevitably.
newFolder: folderId,
bookmark: bookmark.id,
})
2019-08-29 09:05:29 +00:00
}
} catch (err) {
console.error(err)
2019-08-29 09:05:29 +00:00
commit(
mutations.SET_ERROR,
AppGlobal.methods.t('bookmarks', 'Failed to move parts of selection')
)
throw err
2019-08-29 09:05:29 +00:00
} finally {
commit(mutations.FETCH_END, 'moveSelection')
2019-08-29 09:05:29 +00:00
}
},
2019-10-11 12:14:49 +00:00
async [actions.DELETE_SELECTION]({ commit, dispatch, state }) {
commit(mutations.FETCH_START, { type: 'deleteSelection' })
try {
for (const folder of state.selection.folders) {
await dispatch(actions.DELETE_FOLDER, folder.id)
}
for (const bookmark of state.selection.bookmarks) {
await dispatch(actions.DELETE_BOOKMARK, { id: bookmark.id })
}
} catch (err) {
console.error(err)
commit(
mutations.SET_ERROR,
AppGlobal.methods.t('bookmarks', 'Failed to delete parts of selection')
)
throw err
} finally {
commit(mutations.FETCH_END, 'deleteSelection')
}
},
2019-08-29 09:05:29 +00:00
[actions.RELOAD_VIEW]({ state, dispatch, commit }) {
commit(mutations.SET_QUERY, state.fetchState.query)
dispatch(actions.FETCH_PAGE)
dispatch(actions.LOAD_FOLDERS)
dispatch(actions.LOAD_TAGS)
2019-08-29 09:05:29 +00:00
},
[actions.NO_FILTER]({ dispatch, commit }) {
commit(mutations.SET_QUERY, {})
return dispatch(actions.FETCH_PAGE)
2019-08-29 09:05:29 +00:00
},
[actions.FILTER_BY_RECENT]({ dispatch, commit }, search) {
commit(mutations.SET_QUERY, { sortby: 'lastmodified' })
return dispatch(actions.FETCH_PAGE)
2019-08-29 09:05:29 +00:00
},
[actions.FILTER_BY_SEARCH]({ dispatch, commit }, search) {
commit(mutations.SET_QUERY, { search: search.split(' ') })
return dispatch(actions.FETCH_PAGE)
2019-08-29 09:05:29 +00:00
},
[actions.FILTER_BY_TAGS]({ dispatch, commit }, tags) {
commit(mutations.SET_QUERY, { tags, conjunction: 'and' })
return dispatch(actions.FETCH_PAGE)
2019-08-29 09:05:29 +00:00
},
[actions.FILTER_BY_UNTAGGED]({ dispatch, commit }) {
commit(mutations.SET_QUERY, { untagged: true })
return dispatch(actions.FETCH_PAGE)
2019-08-29 09:05:29 +00:00
},
[actions.FILTER_BY_FOLDER]({ dispatch, commit }, folder) {
commit(mutations.SET_QUERY, { folder })
return dispatch(actions.FETCH_PAGE)
2019-08-29 09:05:29 +00:00
},
[actions.FETCH_PAGE]({ dispatch, commit, state }) {
if (state.fetchState.reachedEnd) return
2019-10-05 21:13:26 +00:00
let canceled = false
commit(mutations.FETCH_START, {
type: 'bookmarks',
cancel() {
canceled = true
},
2019-10-05 21:13:26 +00:00
})
axios
.get(url(state, '/bookmark'), {
2019-08-29 09:05:29 +00:00
params: {
limit: BATCH_SIZE,
page: state.fetchState.page,
sortby: state.settings.sorting,
...state.fetchState.query,
},
2019-08-29 09:05:29 +00:00
})
.then(response => {
2019-10-05 21:13:26 +00:00
if (canceled) return
2019-08-29 09:05:29 +00:00
const {
data: { data, status },
} = response
if (status !== 'success') throw new Error(data)
const bookmarks = data
commit(mutations.INCREMENT_PAGE)
2019-08-29 09:05:29 +00:00
if (bookmarks.length < BATCH_SIZE) {
commit(mutations.REACHED_END)
2019-08-29 09:05:29 +00:00
}
return dispatch(actions.ADD_ALL_BOOKMARKS, bookmarks)
2019-08-29 09:05:29 +00:00
})
.catch(err => {
console.error(err)
2019-08-29 09:05:29 +00:00
commit(
mutations.SET_ERROR,
AppGlobal.t('bookmarks', 'Failed to fetch bookmarks.')
)
throw err
2019-08-29 09:05:29 +00:00
})
.finally(() => {
2019-10-05 21:13:26 +00:00
if (canceled) return
commit(mutations.FETCH_END, 'bookmarks')
})
2019-08-29 09:05:29 +00:00
},
2019-10-12 18:00:15 +00:00
async [actions.SET_SETTING]({ commit, dispatch, state }, { key, value }) {
await commit(mutations.SET_SETTING, { key, value })
if (key === 'viewMode') {
await commit(mutations.SET_VIEW_MODE, value)
}
if (key === 'sorting') {
await commit(mutations.RESET_PAGE)
}
if (state.public) {
return
}
2019-08-29 09:05:29 +00:00
return axios
.post(url(state, `/settings/${key}`), {
[key]: value,
2019-08-29 09:05:29 +00:00
})
.catch(err => {
console.error(err)
2019-08-29 09:05:29 +00:00
commit(
mutations.SET_ERROR,
AppGlobal.methods.t('bookmarks', 'Failed to change setting')
)
throw err
})
2019-08-29 09:05:29 +00:00
},
[actions.LOAD_SETTING]({ commit, dispatch, state }, key) {
return axios
.get(url(state, `/settings/${key}`))
2019-10-12 18:00:15 +00:00
.then(async response => {
2019-08-29 09:05:29 +00:00
const {
data: { [key]: value },
} = response
2019-10-12 18:00:15 +00:00
await commit(mutations.SET_SETTING, { key, value })
if (key === 'viewMode') {
await commit(mutations.SET_VIEW_MODE, value)
}
if (key === 'sorting') {
await commit(mutations.RESET_PAGE)
2019-08-29 09:05:29 +00:00
}
})
.catch(err => {
console.error(err)
2019-08-29 09:05:29 +00:00
commit(
mutations.SET_ERROR,
AppGlobal.methods.t('bookmarks', 'Failed to load setting {key}', { key })
)
throw err
})
2019-08-29 09:05:29 +00:00
},
[actions.LOAD_SETTINGS]({ commit, dispatch, state }) {
return Promise.all(
['sorting', 'viewMode'].map(key => dispatch(actions.LOAD_SETTING, key))
)
},
[actions.LOAD_SHARES_OF_FOLDER]({ commit, dispatch, state }, folderId) {
if (folderId === -1 || folderId === '-1') {
return Promise.resolve()
}
return axios
.get(url(state, `/folder/${folderId}/shares`))
.then(async response => {
const {
data: { data, status },
} = response
if (status !== 'success') throw new Error(data)
const shares = data
for (const share of shares) {
await commit(mutations.ADD_SHARE, share)
}
})
.catch(err => {
console.error(err)
// Don't set a notification as this is expected to happen for subfolders of shares that we don't have a RESHAR permission for
throw err
})
},
2020-03-30 12:31:54 +00:00
[actions.CREATE_SHARE]({ commit, dispatch, state }, { folderId, type, participant }) {
return axios
.post(url(state, `/folder/${folderId}/shares`), {
folderId,
participant,
type,
})
.then(async response => {
const {
data: { item, data, status },
} = response
if (status !== 'success') throw new Error(data)
await commit(mutations.ADD_SHARE, item)
})
.catch(err => {
console.error(err)
commit(
mutations.SET_ERROR,
AppGlobal.methods.t('bookmarks', 'Failed to create share for folder {folderId}', { folderId })
2020-03-30 12:31:54 +00:00
)
throw err
})
},
[actions.EDIT_SHARE]({ commit, dispatch, state }, { shareId, canWrite, canShare }) {
return axios
.put(url(state, `/share/${shareId}`), {
canWrite,
canShare,
})
.then(async response => {
const {
data: { item, data, status },
} = response
if (status !== 'success') throw new Error(data)
await commit(mutations.ADD_SHARE, item)
})
.catch(err => {
console.error(err)
commit(
mutations.SET_ERROR,
AppGlobal.methods.t('bookmarks', 'Failed to update share {shareId}', { shareId })
2020-03-30 12:31:54 +00:00
)
throw err
})
},
[actions.DELETE_SHARE]({ commit, dispatch, state }, shareId) {
return axios
.delete(url(state, `/share/${shareId}`))
.then(async response => {
const {
data: { data, status },
} = response
if (status !== 'success') throw new Error(data)
await commit(mutations.REMOVE_SHARE, shareId)
})
.catch(err => {
console.error(err)
commit(
mutations.SET_ERROR,
AppGlobal.methods.t('bookmarks', 'Failed to delete share {shareId}', { shareId })
2020-03-30 12:31:54 +00:00
)
throw err
})
},
[actions.LOAD_PUBLIC_LINK]({ commit, dispatch, state }, folderId) {
return axios
.get(url(state, `/folder/${folderId}/publictoken`), {
validateStatus: (status) => status === 404 || status === 200,
})
.then(async response => {
const {
data: { item, data, status },
} = response
if (response.status === 404) {
return
}
if (status !== 'success') throw new Error(data)
const token = item
await commit(mutations.ADD_PUBLIC_TOKEN, { folderId, token })
})
.catch(err => {
console.error(err)
commit(
mutations.SET_ERROR,
AppGlobal.methods.t('bookmarks', 'Failed to load public link of folder {folderId}', { folderId })
)
throw err
})
},
[actions.CREATE_PUBLIC_LINK]({ commit, dispatch, state }, folderId) {
return axios
.post(url(state, `/folder/${folderId}/publictoken`))
.then(async response => {
const {
data: { item, data, status },
} = response
if (status !== 'success') throw new Error(data)
const token = item
await commit(mutations.ADD_PUBLIC_TOKEN, { folderId, token })
})
.catch(err => {
console.error(err)
commit(
mutations.SET_ERROR,
AppGlobal.methods.t('bookmarks', 'Failed to create public link for folder {folderId}', { folderId })
)
throw err
})
},
[actions.DELETE_PUBLIC_LINK]({ commit, dispatch, state }, folderId) {
return axios
.delete(url(state, `/folder/${folderId}/publictoken`))
.then(async response => {
const {
data: { data, status },
} = response
if (status !== 'success') throw new Error(data)
await commit(mutations.REMOVE_PUBLIC_TOKEN, { folderId })
})
.catch(err => {
console.error(err)
commit(
mutations.SET_ERROR,
AppGlobal.methods.t('bookmarks', 'Failed to delete public link for folder {folderId}', { folderId })
)
throw err
})
},
}
2019-08-29 09:05:29 +00:00
function url(state, url) {
if (state.public) {
url = `/apps/bookmarks/public/rest/v2${url}`
} else {
url = `/apps/bookmarks${url}`
}
return generateUrl(url)
2019-08-29 09:05:29 +00:00
}