-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
IPR Client v6.8.0 Release Notes Bugfixes [DEVSU-1701] - Notification of erasing signature pops up in unsigned reports [DEVSU-1717] - Update storybook to use webpack 5 New Features [DEVSU-1650] - export single germline report [DEVSU-1675] - use backend storage of appendix text instead of storing it in client Improvements [DEVSU-1699] - Update babelrc with updated settings [DEVSU-1714] - Update client columns in germline_small_mutations [DEVSU-1702] - Update to work with new expDensity images
- Loading branch information
Showing
24 changed files
with
30,328 additions
and
57,411 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,74 +1,14 @@ | ||
{ | ||
"presets": [["@babel/preset-env", { | ||
"useBuiltIns": "usage", | ||
"modules": "auto", | ||
"corejs": 3 | ||
}], | ||
"@babel/preset-react", | ||
"@babel/preset-typescript"], | ||
"plugins": [ | ||
"@babel/plugin-proposal-optional-chaining", | ||
"@babel/plugin-syntax-dynamic-import" | ||
], | ||
"env": { | ||
"test": { | ||
"plugins": ["@babel/plugin-transform-modules-commonjs"] | ||
}, | ||
"production": { | ||
"plugins": [ | ||
["transform-imports", { | ||
"@material-ui/core": { | ||
"transform": "@material-ui/core/esm/${member}", | ||
"preventFullImport": true | ||
}, | ||
"@material-ui/icons": { | ||
"transform": "@material-ui/icons/esm/${member}", | ||
"preventFullImport": true | ||
} | ||
}] | ||
] | ||
}, | ||
"staging": { | ||
"plugins": [ | ||
["transform-imports", { | ||
"@material-ui/core": { | ||
"transform": "@material-ui/core/esm/${member}", | ||
"preventFullImport": true | ||
}, | ||
"@material-ui/icons": { | ||
"transform": "@material-ui/icons/esm/${member}", | ||
"preventFullImport": true | ||
} | ||
}] | ||
] | ||
}, | ||
"development": { | ||
"plugins": [ | ||
["transform-imports", { | ||
"@material-ui/core": { | ||
"transform": "@material-ui/core/esm/${member}", | ||
"preventFullImport": true | ||
}, | ||
"@material-ui/icons": { | ||
"transform": "@material-ui/icons/esm/${member}", | ||
"preventFullImport": true | ||
} | ||
}] | ||
] | ||
}, | ||
"local": { | ||
"plugins": [ | ||
["transform-imports", { | ||
"@material-ui/core": { | ||
"transform": "@material-ui/core/esm/${member}", | ||
"preventFullImport": true | ||
}, | ||
"@material-ui/icons": { | ||
"transform": "@material-ui/icons/esm/${member}", | ||
"preventFullImport": true | ||
} | ||
}] | ||
] | ||
} | ||
} | ||
"presets": [ | ||
[ | ||
"@babel/preset-env", | ||
{ | ||
"useBuiltIns": "usage", | ||
"modules": "auto", | ||
"corejs": 3 | ||
} | ||
], | ||
"@babel/preset-react", | ||
"@babel/preset-typescript" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ builds/* | |
dist/* | ||
coverage/* | ||
app/ipr-env-config.js | ||
storybook-static/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<script> | ||
var _env_ = { | ||
KEYCLOAK_CLIENT_ID: "IPR", | ||
KEYCLOAK_REALM: "GSC", | ||
KEYCLOAK_URL: "https://keycloakdev.bcgsc.ca/auth", | ||
GRAPHKB_URL: "https://graphkbstaging.bcgsc.ca", | ||
API_BASE_URL: "https://iprdev-api.bcgsc.ca/api", | ||
CONTACT_EMAIL: "[email protected]", | ||
CONTACT_TICKET_URL: "https://www.bcgsc.ca/jira/projects/IPR", | ||
IS_DEMO: false, | ||
PUBLIC_PATH: "/", | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
...ews/ReportView/components/Appendices/components/AppendixEditor/AppendixEditor.stories.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import React from 'react'; | ||
import { Story } from '@storybook/react/types-6-0'; | ||
import AppendixEditor, { AppendixEditorProps } from '.'; | ||
|
||
export default { | ||
title: 'components/AppendixEditor', | ||
component: AppendixEditor, | ||
}; | ||
|
||
const Template = (args) => <AppendixEditor {...args} />; | ||
|
||
export const Empty: Story<AppendixEditorProps> = Template.bind({}); | ||
Empty.args = { | ||
isOpen: true, | ||
text: null, | ||
}; | ||
|
||
export const WithDefaultText: Story<AppendixEditorProps> = Template.bind({}); | ||
WithDefaultText.args = { | ||
isOpen: true, | ||
text: 'Default loaded text', | ||
}; |
11 changes: 11 additions & 0 deletions
11
app/views/ReportView/components/Appendices/components/AppendixEditor/index.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
.AppendixEditor { | ||
&__container { | ||
.ql-container { | ||
font-size: 1rem; | ||
font-family: inherit; | ||
} | ||
.ql-editor { | ||
min-height: 10rem; | ||
} | ||
} | ||
} |
Oops, something went wrong.