Skip to content
This repository has been archived by the owner on Apr 18, 2024. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'origin/master' into fb-lsdv-5044/task-c…
Browse files Browse the repository at this point in the history
…ount-total
  • Loading branch information
Travis1282 committed Oct 4, 2023
2 parents f04744c + a24e539 commit a2afb95
Show file tree
Hide file tree
Showing 31 changed files with 270 additions and 379 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "${{ env.NODE }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/git-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
run: echo "$PAYLOAD_CONTEXT"

- name: Checkout on chat command
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GIT_PAT }}
repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }}
Expand Down
183 changes: 0 additions & 183 deletions src/components/CandidateTaskView/CandidateTaskView.js

This file was deleted.

116 changes: 0 additions & 116 deletions src/components/CandidateTaskView/CandidateTaskView.styl

This file was deleted.

2 changes: 0 additions & 2 deletions src/components/CandidateTaskView/index.js

This file was deleted.

1 change: 1 addition & 0 deletions src/components/CellViews/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ export { DateTimeCell as Date, DateTimeCell as Datetime } from "./DateTimeCell";
export { ImageCell as Image } from "./ImageCell";
export { NumberCell as Number } from "./NumberCell";
export { StringCell as String } from "./StringCell";
export { StringCell as Text } from "./StringCell";
export { VideoCell as Video } from "./VideoCell";
7 changes: 7 additions & 0 deletions src/components/Common/SkeletonLoader/SkeletonGap.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { Elem } from '../../../utils/bem';

export const SkeletonGap = ({ height = "4px" }: { height?: string }) => {
return (
<Elem name='gap' style={{ "--height": height }}/>
);
};
14 changes: 14 additions & 0 deletions src/components/Common/SkeletonLoader/SkeletonLine.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { Elem } from '../../../utils/bem';

export const SkeletonLine = ({ lineCount = 1, width = "60%", height = "16px" }: { lineCount?: number, width?: string, height?: string }) => {
const rows = [];

for(let i = 0; i < lineCount; i++) {
rows.push(<Elem name='line' key={i} style={{ "--line-width": width, "--line-height": height }}/>);
}
return (
<>
{rows}
</>
);
};
Loading

0 comments on commit a2afb95

Please sign in to comment.