mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-22 07:53:34 +01:00
feat: save collection to indexedDB
This commit is contained in:
parent
c857088e2d
commit
b65d0e2a66
@ -1,11 +1,17 @@
|
|||||||
import React, { useState, forwardRef, useRef } from 'react';
|
import React, { useState, forwardRef, useRef } from 'react';
|
||||||
import Dropdown from '../../Dropdown';
|
import {nanoid} from 'nanoid';
|
||||||
import CreateCollection from '../CreateCollection';
|
import Toast from 'components/Toast';
|
||||||
|
import Dropdown from 'components/Dropdown';
|
||||||
|
import { saveCollectionToIdb } from 'providers/Store/idb';
|
||||||
|
import { useStore } from 'providers/Store';
|
||||||
import { IconDots } from '@tabler/icons';
|
import { IconDots } from '@tabler/icons';
|
||||||
|
import CreateCollection from '../CreateCollection';
|
||||||
import StyledWrapper from './StyledWrapper';
|
import StyledWrapper from './StyledWrapper';
|
||||||
|
|
||||||
const Navbar = ({dispatch, actions}) => {
|
const TitleBar = ({dispatch, actions}) => {
|
||||||
const [modalOpen, setModalOpen] = useState(false);
|
const [modalOpen, setModalOpen] = useState(false);
|
||||||
|
const [store, storeDispatch] = useStore();
|
||||||
|
const [showToast, setShowToast] = useState({show: false});
|
||||||
|
|
||||||
const menuDropdownTippyRef = useRef();
|
const menuDropdownTippyRef = useRef();
|
||||||
const onMenuDropdownCreate = (ref) => menuDropdownTippyRef.current = ref;
|
const onMenuDropdownCreate = (ref) => menuDropdownTippyRef.current = ref;
|
||||||
@ -17,20 +23,51 @@ const Navbar = ({dispatch, actions}) => {
|
|||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
const handleCancel = () => {
|
const handleCancel = () => setModalOpen(false);
|
||||||
setModalOpen(false);
|
const handleCloseToast = () => setShowToast({show: false});
|
||||||
};
|
|
||||||
|
|
||||||
const handleConfirm = (values) => {
|
const handleConfirm = (values) => {
|
||||||
dispatch({
|
// dispatch({
|
||||||
name: values.collectionName,
|
// name: values.collectionName,
|
||||||
type: actions.COLLECTION_CREATE
|
// type: actions.COLLECTION_CREATE
|
||||||
});
|
// });
|
||||||
setModalOpen(false);
|
setModalOpen(false);
|
||||||
|
console.log(store.idbConnection);
|
||||||
|
if(!store.idbConnection) {
|
||||||
|
setShowToast({
|
||||||
|
show: true,
|
||||||
|
type: 'error',
|
||||||
|
text: 'IndexedDB Error: idb connection is null'
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const collectionUid = nanoid();
|
||||||
|
const newCollection = {
|
||||||
|
uid: collectionUid,
|
||||||
|
base: null,
|
||||||
|
current: {
|
||||||
|
id: collectionUid,
|
||||||
|
name: values.collectionName,
|
||||||
|
items: []
|
||||||
|
},
|
||||||
|
requestSync: true
|
||||||
|
};
|
||||||
|
|
||||||
|
saveCollectionToIdb(store.idbConnection, newCollection)
|
||||||
|
.then(() => console.log('Collection created'))
|
||||||
|
.catch((err) => {
|
||||||
|
setShowToast({
|
||||||
|
show: true,
|
||||||
|
type: 'error',
|
||||||
|
text: 'IndexedDB Error: Unable to save collection'
|
||||||
|
});
|
||||||
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<StyledWrapper className="px-2 py-2 flex items-center">
|
<StyledWrapper className="px-2 py-2 flex items-center">
|
||||||
|
{showToast.show && <Toast text={showToast.text} type={showToast.type} duration={showToast.duration} handleClose={handleCloseToast}/>}
|
||||||
{modalOpen ? (
|
{modalOpen ? (
|
||||||
<CreateCollection
|
<CreateCollection
|
||||||
handleCancel={handleCancel}
|
handleCancel={handleCancel}
|
||||||
@ -67,4 +104,4 @@ const Navbar = ({dispatch, actions}) => {
|
|||||||
)
|
)
|
||||||
};
|
};
|
||||||
|
|
||||||
export default Navbar;
|
export default TitleBar;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
export const saveCollectionToIdb = (connection, domain, collection) => {
|
export const saveCollectionToIdb = (connection, collection) => {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
connection
|
connection
|
||||||
.then((db) => {
|
.then((db) => {
|
||||||
|
@ -18,8 +18,6 @@ const reducer = (state, action) => {
|
|||||||
case actions.IDB_CONNECTION_READY: {
|
case actions.IDB_CONNECTION_READY: {
|
||||||
return produce(state, (draft) => {
|
return produce(state, (draft) => {
|
||||||
draft.idbConnection = action.connection;
|
draft.idbConnection = action.connection;
|
||||||
|
|
||||||
console.log("here");
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ const useIdb = (dispatch) => {
|
|||||||
upgrade(db, oldVersion, newVersion, transaction) {
|
upgrade(db, oldVersion, newVersion, transaction) {
|
||||||
switch(oldVersion) {
|
switch(oldVersion) {
|
||||||
case 0:
|
case 0:
|
||||||
const collectionStore = db.createObjectStore('collection', { keyPath: 'id' });
|
const collectionStore = db.createObjectStore('collection', { keyPath: 'uid' });
|
||||||
collectionStore.createIndex('transactionIdIndex', 'transaction_id');
|
collectionStore.createIndex('transactionIdIndex', 'transaction_id');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user