-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17316 from opf/feature/59824-export-cost-report-a…
…s-timesheet-pdf PDF export for time sheets
- Loading branch information
Showing
21 changed files
with
1,113 additions
and
90 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
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
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
90 changes: 90 additions & 0 deletions
90
frontend/src/stimulus/controllers/dynamic/costs/export.controller.ts
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,90 @@ | ||
/* | ||
* -- copyright | ||
* OpenProject is an open source project management software. | ||
* Copyright (C) the OpenProject GmbH | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License version 3. | ||
* | ||
* OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: | ||
* Copyright (C) 2006-2013 Jean-Philippe Lang | ||
* Copyright (C) 2010-2013 the ChiliProject Team | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License | ||
* as published by the Free Software Foundation; either version 2 | ||
* of the License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program; if not, write to the Free Software | ||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
* | ||
* See COPYRIGHT and LICENSE files for more details. | ||
* ++ | ||
*/ | ||
|
||
import { Controller } from '@hotwired/stimulus'; | ||
import * as Turbo from '@hotwired/turbo'; | ||
import { HttpErrorResponse } from '@angular/common/http'; | ||
|
||
export default class ExportController extends Controller<HTMLLinkElement> { | ||
static values = { | ||
jobStatusDialogUrl: String, | ||
}; | ||
|
||
declare jobStatusDialogUrlValue:string; | ||
|
||
jobModalUrl(job_id:string):string { | ||
return this.jobStatusDialogUrlValue.replace('_job_uuid_', job_id); | ||
} | ||
|
||
async showJobModal(job_id:string) { | ||
const response = await fetch(this.jobModalUrl(job_id), { | ||
method: 'GET', | ||
headers: { Accept: 'text/vnd.turbo-stream.html' }, | ||
}); | ||
if (response.ok) { | ||
Turbo.renderStreamMessage(await response.text()); | ||
} else { | ||
throw new Error(response.statusText || 'Invalid response from server'); | ||
} | ||
} | ||
|
||
async requestExport(exportURL:string):Promise<string> { | ||
const response = await fetch(exportURL, { | ||
method: 'GET', | ||
headers: { Accept: 'application/json' }, | ||
credentials: 'same-origin', | ||
}); | ||
if (!response.ok) { | ||
throw new Error(`HTTP ${response.status}: ${response.statusText}`); | ||
} | ||
const result = await response.json() as { job_id:string }; | ||
if (!result.job_id) { | ||
throw new Error('Invalid response from server'); | ||
} | ||
return result.job_id; | ||
} | ||
|
||
get href() { | ||
return this.element.href; | ||
} | ||
|
||
download(evt:CustomEvent) { | ||
evt.preventDefault(); // Don't follow the href | ||
this.requestExport(this.href) | ||
.then((job_id) => this.showJobModal(job_id)) | ||
.catch((error:HttpErrorResponse) => this.handleError(error)); | ||
} | ||
|
||
private handleError(error:HttpErrorResponse) { | ||
void window.OpenProject.getPluginContext().then((pluginContext) => { | ||
pluginContext.services.notifications.addError(error); | ||
}); | ||
} | ||
} |
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
Oops, something went wrong.