Merge pull request #66 from AmruthPillai/develop

Bugfix: Exporting PDF, no more margins!
This commit is contained in:
Amruth Pillai
2020-04-02 16:53:48 +05:30
committed by GitHub
12 changed files with 25 additions and 26 deletions

View File

@ -11,7 +11,7 @@ ENV PATH /usr/src/app/node_modules/.bin:$PATH
COPY package.json /usr/src/app/package.json
## install app dependencies
RUN npm install --silent
RUN npm install
## copy files
COPY . /usr/src/app

View File

@ -11,7 +11,7 @@ ENV PATH /usr/src/app/node_modules/.bin:$PATH
COPY package.json /usr/src/app/package.json
## install app dependencies
RUN npm install --silent
RUN npm install
## start app
CMD ["npm", "start"]

View File

@ -30,7 +30,7 @@ Something that's missing on the app that's halting your progress from making the
## Translation
Translating the app into your language has never been easier. Thanks to [Crowdin](https://crowdin.com/), a localization management tool, anyone can translate strings without having to mess arounf with a bunch of files. For information on how to translate the app into your own language, please visit the [Translation Secion](/translation/) of the documentation.
Translating the app into your language has never been easier. Thanks to [Crowdin](https://crowdin.com/), a localization management tool, anyone can translate strings without having to mess around with a bunch of files. For information on how to translate the app into your own language, please visit the [Translation Secion](/translation/) of the documentation.
## Commit Code

6
package-lock.json generated
View File

@ -16844,9 +16844,9 @@
"integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM="
},
"uuid": {
"version": "7.0.2",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-7.0.2.tgz",
"integrity": "sha512-vy9V/+pKG+5ZTYKf+VcphF5Oc6EFiu3W8Nv3P3zIh0EqVI80ZxOzuPfe9EHjkFNvf8+xuTHVeei4Drydlx4zjw=="
"version": "7.0.3",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-7.0.3.tgz",
"integrity": "sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg=="
},
"v8-compile-cache": {
"version": "2.1.0",

View File

@ -27,7 +27,7 @@
"react-scripts": "3.4.1",
"react-toastify": "^5.5.0",
"tailwindcss": "^1.2.0",
"uuid": "^7.0.2",
"uuid": "^7.0.3",
"vuepress": "^1.4.0"
},
"scripts": {

View File

@ -1,13 +1,8 @@
{
"title": {
"label": "Título",
"placeholder": "Desarrollo en Android Nanodegree"
"label": "Nombre"
},
"subtitle": {
"label": "Subtítulo",
"placeholder": "Udacity"
},
"description": {
"placeholder": "Puede escribir sobre lo que aprendiste de tú programa de certificación."
"label": "Autoría"
}
}

View File

@ -1,6 +1,6 @@
{
"title": {
"label": "学校"
"label": "名称"
},
"subtitle": {
"label": "颁发机构"

View File

@ -6,6 +6,6 @@
"label": "主修课程"
},
"grade": {
"label": "等级"
"label": "学分"
}
}

View File

@ -1,6 +1,6 @@
{
"key": {
"label": "学校"
"label": "名称"
},
"rating": {
"label": "等级"

View File

@ -4,7 +4,7 @@ const TabBar = ({ tabs, currentTab, setCurrentTab }) => {
const tabsRef = useRef(null);
const scrollBy = x => {
const index = tabs.find(tab => tab.key === currentTab);
const index = tabs.findIndex(tab => tab.key === currentTab);
tabsRef.current.scrollLeft += x;
if (x < 0 && index > 0) {

View File

@ -88,7 +88,7 @@ const Castform = () => {
data.skills &&
data.skills.enable && (
<div>
<Heading title="Skills" />
<Heading title={data.skills.heading} />
<ul className="list-none px-5">{data.skills.items.map(SkillItem)}</ul>
</div>
);

View File

@ -110,12 +110,17 @@ const saveAsPdf = (pageRef, panZoomRef) => {
setTimeout(() => {
html2canvas(pageRef.current, {
scale: 5,
scale: 6,
useCORS: true,
allowTaint: true,
}).then(canvas => {
const image = canvas.toDataURL('image/jpeg', 1.0);
const doc = new jsPDF('p', 'mm', 'a4');
const doc = new jsPDF({
orientation: 'portrait',
unit: 'px',
format: [canvas.width, canvas.height],
});
const pageWidth = doc.internal.pageSize.getWidth();
const pageHeight = doc.internal.pageSize.getHeight();
@ -125,16 +130,15 @@ const saveAsPdf = (pageRef, panZoomRef) => {
const canvasWidth = canvas.width * ratio;
const canvasHeight = canvas.height * ratio;
const marginX = (pageWidth - canvasWidth) / 2;
const marginY = (pageHeight - canvasHeight) / 2;
// const marginX = (pageWidth - canvasWidth) / 2;
// const marginY = (pageHeight - canvasHeight) / 2;
panZoomRef.current.autoCenter(0.7);
doc.addImage(image, 'JPEG', marginX, marginY, canvasWidth, canvasHeight, null, 'SLOW');
doc.addImage(image, 'JPEG', 0, 0, canvasWidth, canvasHeight, null, 'SLOW');
doc.save(`RxResume_${Date.now()}.pdf`);
});
}, 250);
}, 200);
};
export {