1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 21:06:42 +07:00
vault-frontend/src/index.tsx
2019-12-13 11:52:56 +07:00

71 lines
2 KiB
TypeScript

import * as React from 'react';
import { render } from 'react-dom';
import { Provider } from 'react-redux';
import { PersistGate } from 'redux-persist/integration/react';
import { configureStore } from '~/redux/store';
import App from '~/containers/App';
require('./styles/main.scss');
const { store, persistor } = configureStore();
render(
<Provider store={store}>
<PersistGate loading={null} persistor={persistor}>
<App />
</PersistGate>
</Provider>,
document.getElementById('app')
);
/*
[stage 1]
- check if email is registered at social login
- profile cover upload
- illustrate login
- illustrate restoreRequestDialog
- friendship
- signup?
- text post can also has songs http://vault48.org/post5052
- fulltext search: https://github.com/typeorm/typeorm/issues/3191
- zoom: https://manuelstofer.github.io/pinchzoom/
- notifications (node, comment)
- social integration (assimilate)
- comment editing
Done:
- set file target on comment save, node save, profile upload
- delete comments
- import videos (partially)
- delete nodes
- user access time update
- import graffiti
- <...> format
- youtube embeds
- mobile header
- sticky header
- password restore
- avatar upload
- flow updates
- flow infinite scroll
- better node brief update
- fix: text nodes cell has no preview (actually, that's a problem of brief)
- relocate files
- backend: exclude node covers on import
- profile editing
- notifications (messages)
- profile modal
- messages
- better dialogs: https://codepen.io/muemue/pen/abbEMMy
- imagecaching at backend
- social integration (login, signup)
- boris with comments (import)
- boris with comments (layout)
- fix: user receives his own notifications :-(
- fix: node related and albums should exclude node itself
- fix: select node and edit it. All images will be not loaded
- fix: text nodes cell not clickable
- fix: text nodes should not have 'no comments yet badge
*/