mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-10 17:33:24 +01:00
.. | ||
assets/images | ||
cypress | ||
images | ||
lang | ||
src | ||
test | ||
.eslintrc.json | ||
.gitignore | ||
.prettierignore | ||
.prettierrc.json | ||
cypress.config.ts | ||
jest.config.js | ||
package.json | ||
README.md | ||
tsconfig.json | ||
webpack.common.js | ||
webpack.playground.js | ||
webpack.prod.js |
Editor
React Component for the wisemapping editor.
Usage
This is a work in progress and for now mindplot needs to be instantiated using the initCallback prop. Check test/playground/map-render
for some usage examples.
import Editor from `@wisemapping/editor`;
ReactDOM.render(
<Editor
mapId={1}
readOnlyMode={false}
locale="en"
onAction={(action) => console.log('action called:', action)}
initCallback={initialization}
/>,
document.getElementById('root'),
);
i18n
Messages are translated in the lang
folder, and then compiled to src/compiled-lang
using the following command:
yarn compile lang/de.json --ast --out-file src/compiled-lang/de.json