Skip to content

Commit a8bbaed

Browse files
Merge pull request #167 from zitrosolrac/prForTableSortingSeachString
Pr for table sorting seach string
2 parents 67c6530 + 7f1eef9 commit a8bbaed

File tree

24 files changed

+19216
-186
lines changed

24 files changed

+19216
-186
lines changed

CHANGELOG.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
# Changelog
22

33
Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention.
4-
## [Unreleased]
4+
## [0.1.1] - 2022-01-12
5+
56
### Fixed
6-
- fixed bug with the labbook dockerfile PR #164
7-
- updated pharus version to 0.2.2 PR #164
7+
- Fix redundant double fetch bug PR #150
8+
- Fixed issue with parsing NaNs and infinities (#147) PR #150
9+
- Fixed broken table sort (#151) PR #154
10+
- Fixed table search string reseting when user selects a new table PR #154
11+
- Fixed flexbox grow issues with safari by adding prefix. PR #142
12+
- Fixed bug with the LabBook Dockerfile PR #164
13+
- Updated pharus version to 0.2.2 PR #164
14+
- Switch filter cards restrictions handling from array to set for performance boost PR #150
815

916
## [0.1.0] - 2021-03-31
1017
### Added

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM golang:alpine3.11 as go_tmp
33
ADD https://raw.githubusercontent.com/datajoint/miniconda3-docker/master/utilities/startup.go /startup.go
44
RUN cd / && go build startup.go
55
# Main dev image
6-
FROM node:lts-buster-slim
6+
FROM node:14-slim
77
RUN apt-get update && apt-get install wget -y
88
USER node
99
WORKDIR /home/node

docker-compose-dev.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ services:
3434
local-db:
3535
condition: service_healthy
3636
datajoint-labbook:
37+
platform: linux/amd64
3738
<<: *net
3839
extends:
3940
file: ./docker-compose-build.yaml
@@ -46,7 +47,7 @@ services:
4647
condition: service_healthy
4748
fakeservices.datajoint.io:
4849
<<: *net
49-
image: datajoint/nginx:v0.0.16
50+
image: datajoint/nginx:v0.0.19
5051
environment:
5152
- ADD_zlabbook_TYPE=REST
5253
- ADD_zlabbook_ENDPOINT=datajoint-labbook:3000

package-lock.json

Lines changed: 18871 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "datajoint-labbook",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "A frontend with graphical user interface for DataJoint pipelines built using React.",
55
"private": false,
66
"repository": {

src/Components/App.css

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,24 @@
11
@import url('https://fonts.googleapis.com/css2?family=Mada:wght@200;300;400;500;600;700&family=Rajdhani:wght@400;500;600&family=Ubuntu+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
22

3+
html, body {
4+
height: 100%;
5+
width: 100%;
6+
}
7+
8+
#root {
9+
display: flex;
10+
flex-direction: column;
11+
height: 100%;
12+
width: 100%;
13+
}
14+
315
.content {
416
font-family: 'Mada', sans-serif;
517
display: flex;
618
align-items: center;
719
justify-content: center;
820
background-color: #C8C9C7;
9-
overflow-y: hidden;
21+
flex-grow: 1;
22+
-webkit-flex: 1;
23+
width: 100%;
1024
}

src/Components/Footer/Footer.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
footer {
22
display: flex;
3-
position: absolute;
43
bottom: 0;
5-
width: 100vw;
4+
width: 100%;
65
background-color: #F1F1F1;
76
box-shadow: 0px -3px 3px #C8C9C7;
87
padding: 4px 0;

src/Components/Home.css

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
.home-container {
22
display: flex;
3-
width: 100vw;
4-
height: 92vh;
3+
width: 100%;
4+
margin: 1% 0%;
5+
height: 97%;
56
}
67

78
.side-menu-container {
89
height: 100%;
910
width: 30%;
11+
margin: 0% 0.5%;
12+
background-color: red;
1013
}
1114

1215
.table-view-container {
1316
height: 100%;
14-
width: 70%;
17+
width: 68%;
18+
margin: 0% 0.5%;
1519
}

src/Components/LoadingAnimation/BasicLoadingIcon.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.loadingOverlay {
2-
position: absolute;
2+
position: relative;
33
z-index: 900;
44
left: 0;
55
top: 0;

src/Components/Login/Login.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.login-div {
22
background-color: #C8C9C7;
3-
width: 100vw;
4-
height: 94vh;
3+
width: 100%;
4+
height: 100%;
55
display: flex;
66
align-items: center;
77
}

0 commit comments

Comments
 (0)