From 5ee97b28d3ced5151903d6c10e8d65d59cd1edd0 Mon Sep 17 00:00:00 2001 From: Maximiliano Greco Date: Mon, 25 Oct 2021 04:18:00 +0200 Subject: [PATCH 1/7] enh(server): Add margins in the template 1 (#175) Closes https://github.com/saadq/resumake.io/issues/136 --- app/server/src/generator/templates/template1/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/server/src/generator/templates/template1/index.js b/app/server/src/generator/templates/template1/index.js index 8b3a8485..4400ee9e 100755 --- a/app/server/src/generator/templates/template1/index.js +++ b/app/server/src/generator/templates/template1/index.js @@ -342,6 +342,8 @@ function template1(values: SanitizedValues) { \\textheight=10in \\pagestyle{empty} \\raggedright + \\usepackage[bottom=0.8in,top=0.8in]{geometry} + ${generator.resumeDefinitions()} From 5a921ef1a11e156b553e955b45cbed9ceb21ea0d Mon Sep 17 00:00:00 2001 From: Maximiliano Greco Date: Tue, 26 Oct 2021 01:43:12 +0200 Subject: [PATCH 2/7] enh(server): include left/right margins in template 1 (#176) Related #136 --- app/server/src/generator/templates/template1/index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/server/src/generator/templates/template1/index.js b/app/server/src/generator/templates/template1/index.js index 4400ee9e..bf538d2b 100755 --- a/app/server/src/generator/templates/template1/index.js +++ b/app/server/src/generator/templates/template1/index.js @@ -342,8 +342,7 @@ function template1(values: SanitizedValues) { \\textheight=10in \\pagestyle{empty} \\raggedright - \\usepackage[bottom=0.8in,top=0.8in]{geometry} - + \\usepackage[left=0.8in,right=0.8in,bottom=0.8in,top=0.8in]{geometry} ${generator.resumeDefinitions()} From 042f5fa86e1ecf41b568cf33a6cfbdac4cc7bc62 Mon Sep 17 00:00:00 2001 From: Saad Quadri Date: Mon, 15 Nov 2021 09:21:10 -0500 Subject: [PATCH 3/7] Create FUNDING.yml --- .github/FUNDING.yml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 00000000..d52405c8 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,3 @@ +# These are supported funding model platforms + +github: [saadq] From 22eea2cf44eb46cbd5feb80a5f769e1cb273011f Mon Sep 17 00:00:00 2001 From: Mohamed Daahir Date: Thu, 7 Jul 2022 21:59:44 +0100 Subject: [PATCH 4/7] Update readme.md --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 13ffb820..17911790 100644 --- a/readme.md +++ b/readme.md @@ -4,7 +4,7 @@ # Important Note -All development is currently happening in the Resumake rewrite which is in the [v3](https://github.com/saadq/resumake.io/tree/v3) branch. In the mean time, no further development/fixes will be done in the current app in order to focus efforts on the next version. +All development is currently happening in the Resumake rewrite which is in the [v3](https://github.com/saadq/resumake.io/tree/main) branch. In the mean time, no further development/fixes will be done in the current app in order to focus efforts on the next version. --- From 078e8a1f660a57ced716c3d38888f1b164d188ac Mon Sep 17 00:00:00 2001 From: Mohamed Daahir Date: Thu, 7 Jul 2022 22:02:09 +0100 Subject: [PATCH 5/7] Update readme.md --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 17911790..3c39b7bb 100644 --- a/readme.md +++ b/readme.md @@ -4,7 +4,7 @@ # Important Note -All development is currently happening in the Resumake rewrite which is in the [v3](https://github.com/saadq/resumake.io/tree/main) branch. In the mean time, no further development/fixes will be done in the current app in order to focus efforts on the next version. +All development is currently happening in the Resumake rewrite which is in the [main](https://github.com/saadq/resumake.io/tree/main) branch. In the mean time, no further development/fixes will be done in the current app in order to focus efforts on the next version. --- From 6fe46a76117db6e5a688f4e2f691dc117ed6b11f Mon Sep 17 00:00:00 2001 From: JAlejandroRP Date: Mon, 3 Feb 2025 13:50:22 -0600 Subject: [PATCH 6/7] remove unused imports --- app/client/src/app/pages/Error404.js | 1 - 1 file changed, 1 deletion(-) diff --git a/app/client/src/app/pages/Error404.js b/app/client/src/app/pages/Error404.js index f642e73b..420506c6 100644 --- a/app/client/src/app/pages/Error404.js +++ b/app/client/src/app/pages/Error404.js @@ -4,7 +4,6 @@ import React from 'react' import styled from 'styled-components' -import { darken, rgba } from 'polished' import { PrimaryButton } from '../../common/components' import { colors } from '../../common/theme' import comic from '../assets/comic.png' From 42e90732f1ef204949fbae2312563acb306b2495 Mon Sep 17 00:00:00 2001 From: JAlejandroRP Date: Mon, 3 Feb 2025 13:50:42 -0600 Subject: [PATCH 7/7] Ability to resort items #188 --- app/client/src/features/form/actions.js | 17 +++++++- .../features/form/components/fragments/Job.js | 34 ++++++++++++++- .../features/form/components/sections/Work.js | 20 +++++++-- app/client/src/features/form/reducer.js | 41 +++++++++++++++++++ app/client/src/features/form/types.js | 2 + 5 files changed, 107 insertions(+), 7 deletions(-) diff --git a/app/client/src/features/form/actions.js b/app/client/src/features/form/actions.js index b79da605..fecc4718 100644 --- a/app/client/src/features/form/actions.js +++ b/app/client/src/features/form/actions.js @@ -186,6 +186,19 @@ function removeAward(): Action { } } +function moveJobUp(index: number): Action { + return { + type: 'MOVE_JOB_UP', + index + } +} +function moveJobDown(index: number): Action { + return { + type: 'MOVE_JOB_DOWN', + index + } +} + export { uploadJSON, uploadJSONRequest, @@ -210,5 +223,7 @@ export { removeProjectKeyword, addAward, removeAward, - uploadFileAndGenerateResume + uploadFileAndGenerateResume, + moveJobUp, + moveJobDown } diff --git a/app/client/src/features/form/components/fragments/Job.js b/app/client/src/features/form/components/fragments/Job.js index b4e17bb1..d8d634e1 100644 --- a/app/client/src/features/form/components/fragments/Job.js +++ b/app/client/src/features/form/components/fragments/Job.js @@ -32,13 +32,43 @@ type Props = { highlights: Array, index: number, addHighlight: (index: number) => void, - removeHighlight: (index: number) => void + removeHighlight: (index: number) => void, + jobCount: number, + moveUp: (index: number) => void, + moveDown: (index: number) => void } -function Job({ highlights, index, addHighlight, removeHighlight }: Props) { +function Job({ + highlights, + index, + addHighlight, + removeHighlight, + jobCount, + moveUp, + moveDown +}: Props) { return (
{index > 0 ? : null} + + + + moveUp(index)} + > + + + = jobCount - 1} + type="button" + onClick={() => moveDown(index)} + > + + + + void, removeJob: () => void, addJobHighlight: (index: number) => void, - removeJobHighlight: (index: number) => void + removeJobHighlight: (index: number) => void, + moveJobUp: (index: number) => void, + moveJobDown: (index: number) => void } function Work({ work, + jobCount = work.length, addJob, removeJob, addJobHighlight, - removeJobHighlight + removeJobHighlight, + moveJobUp, + moveJobDown }: Props) { return (
@@ -49,6 +56,9 @@ function Work({ highlights={job.highlights} addHighlight={addJobHighlight} removeHighlight={removeJobHighlight} + jobCount={jobCount} + moveUp={moveJobUp} + moveDown={moveJobDown} /> ))}