Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Export and import of the application context #635

Draft
wants to merge 21 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
87a308a
feat: add AppContextDownload and AppContextUpload components
dnlkoch Jan 16, 2023
13dfbe9
feat: provide slice for application id
dnlkoch Jan 16, 2023
3db7a1f
feat: provide slice for application state
dnlkoch Jan 16, 2023
09eeee8
fix: provide localization for AppContextDownload and AppContextUpload
dnlkoch Jan 16, 2023
7846cac
fix: set initial/default value for the client
dnlkoch Jan 16, 2023
9f3e17b
feat: add note about loaded application context to header
dnlkoch Jan 16, 2023
f5b0035
feat: provide slice for tool configuration
dnlkoch Jan 16, 2023
4b25155
feat: set (full) tool configuration to store and simplify reading con…
dnlkoch Jan 16, 2023
a980864
feat: write appId and stateOnly to store
dnlkoch Jan 16, 2023
135426e
feat: make visibility of the styling drawer configurable as well
dnlkoch Jan 16, 2023
c2caa7c
feat: add hook to read the application context
dnlkoch Jan 16, 2023
e0c94cb
feat: add hook to write the application context
dnlkoch Jan 16, 2023
cd3329a
feat: move logic for parsing the style to util; write the current GS …
dnlkoch Jan 16, 2023
d182dbf
refactor: move code from bootstrap to new class Initializer
dnlkoch Jan 25, 2023
c975cc5
feat: add typing for the tool configurations and add actions to manip…
dnlkoch Jan 25, 2023
196cf81
feat: make use of shared/ported methods in Initializer
dnlkoch Jan 25, 2023
1c492bc
fix: get draw style and features from store
dnlkoch Jan 25, 2023
f33e77b
fix: force render of draw toolbar and style to read out features and …
dnlkoch Jan 25, 2023
6cbb349
feat: sync draw features with store
dnlkoch Jan 25, 2023
0ec1b7a
feat: place style in store and provide feature properties for the styler
dnlkoch Jan 25, 2023
7ac781b
feat: rename components and add support for persisting the state
dnlkoch Apr 28, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
434 changes: 434 additions & 0 deletions src/appContext/Initializer.ts

Large diffs are not rendered by default.

495 changes: 9 additions & 486 deletions src/bootstrap.tsx

Large diffs are not rendered by default.

33 changes: 33 additions & 0 deletions src/components/AppStateManagement/index.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
.app-state-modal {
.app-state-table {
.ant-table-selection-column {
display: none;
}

.operations-column {
display: flex;
justify-content: space-between;
font-size: 1.25em;

.fa-trash {
color: #ea2f5a;
}

svg {
cursor: pointer;
}
}
}

.ant-modal-footer {
button {
margin-left: 8px;

> svg {
margin-right: 10px;
}
}
}

}

23 changes: 23 additions & 0 deletions src/components/AppStateManagement/index.spec.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import React from 'react';

import {
render
} from '@testing-library/react';

import { createReduxWrapper } from '../../utils/testUtils';

import AppStateManagement from './index';

describe('<AppStateManagement />', () => {

it('can be rendered', () => {
const {
container
} = render(<AppStateManagement />, {
wrapper: createReduxWrapper()
});

expect(container).toBeVisible();
});

});
Loading