Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add sdcard support #563

Merged
merged 5 commits into from
Apr 14, 2020
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
98 changes: 68 additions & 30 deletions src/app/files.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,50 +30,84 @@ export class FilesService {
this.httpGETRequest.unsubscribe();
}
this.httpGETRequest = this.http
.get(this.configService.getURL('files/local' + folderPath), this.configService.getHTTPHeaders())
.get(this.configService.getURL('files' + folderPath), this.configService.getHTTPHeaders())
.subscribe(
(data: OctoprintFolderAPI & OctoprintFolderContentAPI): void => {
if ('children' in data) {
data.files = data.children;
delete data.children;
}
const folder: (File | Folder)[] = [];
let localCount = 0;
let sdcardCount = 0;
data.files.forEach((fileOrFolder): void => {
if (fileOrFolder.type === 'folder') {
if (folderPath === '') {
if (fileOrFolder.origin == 'local') {
localCount += fileOrFolder.children.length;
} else {
sdcardCount += fileOrFolder.children.length;
}
}

folder.push(({
type: 'folder',
path: '/' + fileOrFolder.path,
path: '/' + fileOrFolder.origin + '/' + fileOrFolder.path,
name: fileOrFolder.name,
// TODO: Think of a way to retrieve number of children
files: fileOrFolder.children ? fileOrFolder.children.length : '-',
} as unknown) as Folder);
} else if (fileOrFolder.typePath.includes('gcode') && fileOrFolder.origin === 'local') {
if (!fileOrFolder.gcodeAnalysis) {
this.notificationService.setError(
'Corrupted file found!',
`File ${fileOrFolder.name} does not include GCodeAnalysis. Ignoring it for now ...`,
} else if (fileOrFolder.typePath.includes('gcode')) {
if (fileOrFolder.gcodeAnalysis) {
var filamentLength = 0;
_.forEach(fileOrFolder.gcodeAnalysis.filament, (tool): void => {
filamentLength += tool.length;
});
var estimatedPrintTime = this.service.convertSecondsToHours(
fileOrFolder.gcodeAnalysis.estimatedPrintTime,
);
return;
}
let filamentLength = 0;
_.forEach(fileOrFolder.gcodeAnalysis.filament, (tool): void => {
filamentLength += tool.length;
});

if (folderPath === '') {
if (fileOrFolder.origin == 'local') {
localCount += 1;
} else {
sdcardCount += 1;
}
}

folder.push(({
type: 'file',
path: '/' + fileOrFolder.path,
path: '/' + fileOrFolder.origin + '/' + fileOrFolder.path,
name: fileOrFolder.name,
date: fileOrFolder.date,
size: this.service.convertByteToMegabyte(fileOrFolder.size),
printTime: this.service.convertSecondsToHours(
fileOrFolder.gcodeAnalysis.estimatedPrintTime,
),
filamentWeight: this.service.convertFilamentLengthToAmount(filamentLength),
... (fileOrFolder.gcodeAnalysis) ? {
printTime: estimatedPrintTime,
filamentWeight: this.service.convertFilamentLengthToAmount(filamentLength),
} : {},
} as unknown) as File);
}
});
data = null;

if (folderPath === '') {
if (localCount > 0 && sdcardCount > 0) {
folder.length = 0;
folder.push(({
type: 'folder',
path: '/local',
name: 'local',
files: localCount,
} as unknown) as Folder);
folder.push(({
type: 'folder',
path: '/sdcard',
name: 'sdcard',
files: sdcardCount,
} as unknown) as Folder);
}
}

resolve(folder);
},
Expand All @@ -100,21 +134,25 @@ export class FilesService {
this.httpGETRequest.unsubscribe();
}
this.httpGETRequest = this.http
.get(this.configService.getURL('files/local' + filePath), this.configService.getHTTPHeaders())
.get(this.configService.getURL('files' + filePath), this.configService.getHTTPHeaders())
.subscribe(
(data: OctoprintFilesAPI): void => {
let filamentLength = 0;
_.forEach(data.gcodeAnalysis.filament, (tool): void => {
filamentLength += tool.length;
});
if (data.gcodeAnalysis) {
var filamentLength = 0;
harleyg321 marked this conversation as resolved.
Show resolved Hide resolved
_.forEach(data.gcodeAnalysis.filament, (tool): void => {
filamentLength += tool.length;
});
}
const file = ({
type: 'file',
path: '/' + data.path,
path: '/' + data.origin + '/' + data.path,
name: data.name,
size: this.service.convertByteToMegabyte(data.size),
printTime: this.service.convertSecondsToHours(data.gcodeAnalysis.estimatedPrintTime),
filamentWeight: this.service.convertFilamentLengthToAmount(filamentLength),
date: this.service.convertDateToString(new Date(data.date * 1000)),
... (data.gcodeAnalysis) ? {
date: this.service.convertDateToString(new Date(data.date * 1000)),
printTime: this.service.convertSecondsToHours(data.gcodeAnalysis.estimatedPrintTime),
filamentWeight: this.service.convertFilamentLengthToAmount(filamentLength),
} : {},
thumbnail: data.path.endsWith('.ufp.gcode')
? this.configService
.getURL('plugin/UltimakerFormatPackage/thumbnail/')
Expand Down Expand Up @@ -142,7 +180,7 @@ export class FilesService {
this.httpGETRequest.unsubscribe();
}
this.httpGETRequest = this.http
.get(this.configService.getURL('files/local/' + filePath), this.configService.getHTTPHeaders())
.get(this.configService.getURL('files' + filePath), this.configService.getHTTPHeaders())
.subscribe(
(data: OctoprintFilesAPI): void => {
let thumbnail = data.path.endsWith('.ufp.gcode')
Expand Down Expand Up @@ -170,7 +208,7 @@ export class FilesService {
};
this.httpPOSTRequest = this.http
.post(
this.configService.getURL('files/local' + filePath),
this.configService.getURL('files' + filePath),
loadFileBody,
this.configService.getHTTPHeaders(),
)
Expand All @@ -192,7 +230,7 @@ export class FilesService {
};
this.httpPOSTRequest = this.http
.post(
this.configService.getURL('files/local' + filePath),
this.configService.getURL('files' + filePath),
printFileBody,
this.configService.getHTTPHeaders(),
)
Expand All @@ -209,7 +247,7 @@ export class FilesService {
this.httpDELETERequest.unsubscribe();
}
this.httpDELETERequest = this.http
.delete(this.configService.getURL('files/local' + filePath), this.configService.getHTTPHeaders())
.delete(this.configService.getURL('files' + filePath), this.configService.getHTTPHeaders())
.subscribe(
(): void => null,
(error: HttpErrorResponse): void => {
Expand Down
14 changes: 7 additions & 7 deletions src/app/files/files.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</tr>
</table>
<div class="breadcrumbs">
<fa-icon [icon]="['fas', 'home']" (click)="openFolder('/')" class="breadcrumbs__item-home"></fa-icon>
<fa-icon [icon]="['fas', 'home']" (click)="openFolder(homeFolder)" class="breadcrumbs__item-home"></fa-icon>
<span class="breadcrumbs__item" *ngFor="let folder of currentFolder.split('/')">
<span (click)="openFolder(currentFolder.split(folder)[0] + folder)">
{{ folder }}
Expand All @@ -28,7 +28,7 @@
can't load files ...
</div>

<div *ngIf="folderContent && currentFolder !== '/' && currentFolder !== ''" class="files__object">
<div *ngIf="folderContent && currentFolder !== homeFolder && currentFolder !== ''" class="files__object">
<div (click)="openFolder(currentFolder.substr(0, currentFolder.lastIndexOf('/')))" matRipple
[matRippleUnbounded]="false">
<img src="assets/folder.svg" class="files__icon" />
Expand All @@ -51,9 +51,9 @@
<img src="assets/object.svg" class="files__icon" />
<div class="files__info">
<span class="files__info-value">{{ content.size }}<span class="files__info-unit">mb</span></span>
<span class="files__info-value">{{ content.filamentWeight }}<span
<span class="files__info-value" *ngIf="content.hasOwnProperty('filamentWeight')">{{ content.filamentWeight }}<span
class="files__info-unit">g</span></span>
<span class="files__info-value">{{ content.printTime }}<span class="files__info-unit">h</span></span>
<span class="files__info-value" *ngIf="content.hasOwnProperty('printTime')">{{ content.printTime }}<span class="files__info-unit">h</span></span>
</div>
<span class="files__name">
{{ content.name }}
Expand All @@ -69,13 +69,13 @@
<img src="assets/error.svg" class="file__close" (click)="closeDetails()">
<span class="file__name">{{ fileDetail.name }}</span>
<span class="file__directory">{{ fileDetail.path }}</span>
<span class="file__creation-date">{{ fileDetail.date }}</span>
<span class="file__creation-date" *ngIf="fileDetail.hasOwnProperty('date')">{{ fileDetail.date }}</span>
<img src="{{fileDetail.thumbnail ? fileDetail.thumbnail : 'assets/object.svg'}}" class="file__render"/>
<table class="file__details">
<tr>
<td>{{ fileDetail.size }}<span class="file__details-name">mb</span></td>
<td>{{ fileDetail.printTime }}<span class="file__details-name">h</span></td>
<td>{{ fileDetail.filamentWeight }}<span class="file__details-name">g</span></td>
<td *ngIf="fileDetail.hasOwnProperty('printTime')">{{ fileDetail.printTime }}<span class="file__details-name">h</span></td>
<td *ngIf="fileDetail.hasOwnProperty('filamentWeight')">{{ fileDetail.filamentWeight }}<span class="file__details-name">g</span></td>
</tr>
</table>
<table class="file__actions">
Expand Down
4 changes: 2 additions & 2 deletions src/app/files/files.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -202,11 +202,11 @@
font-size: 4vw;
font-weight: 500;

&:first-of-type {
&:first-of-type:not(:only-of-type) {
text-align: left;
}

&:last-of-type {
&:last-of-type:not(:only-of-type) {
text-align: right;
}
}
Expand Down
8 changes: 7 additions & 1 deletion src/app/files/files.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export class FilesComponent {
public sortingAttribute: 'name' | 'date' | 'size';
public sortingOrder: 'asc' | 'dsc';
public showSorting: boolean = false;
public homeFolder: string = '/';

public constructor(
private filesService: FilesService,
Expand Down Expand Up @@ -60,7 +61,12 @@ export class FilesComponent {
.getFolder(folderPath)
.then((data): void => {
this.folderContent = data;
this.currentFolder = folderPath;
if (folderPath === '/' && !(data[0].name === 'local' && data[1].name == 'sdcard')) {
this.currentFolder = data[0].path.startsWith('/local') ? '/local' : '/sdcard';
this.homeFolder = this.currentFolder;
} else {
this.currentFolder = folderPath;
}
this.sortFolder(this.sortingAttribute, this.sortingOrder);
this.spinner.hide();
})
Expand Down
33 changes: 19 additions & 14 deletions src/app/job-status/job-status.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<div class="job-info__progress-percentage">{{ job.progress }}<span style="font-size: 40%">%</span></div>
</div>
<span class="job-info__filename">{{ job.filename }}</span> <br />
<span class="job-info__filament" *ngIf="job.filamentAmount !== null">{{ job.filamentAmount }}g Filament</span> <br />
<span class="job-info__time"><span *ngIf="job.timeLeft.value !== null"><span
<span class="job-info__filament" *ngIf="job.hasOwnProperty('filamentAmount')">{{ job.filamentAmount }}g Filament</span> <br />
<span class="job-info__time"><span *ngIf="job.hasOwnProperty('timeLeft')"><span
harleyg321 marked this conversation as resolved.
Show resolved Hide resolved
class="job-info__time-left">{{ job.timeLeft.value }}</span>{{ job.timeLeft.unit }} left,</span>
elapsed: {{ job.timePrinted.value }}{{ job.timePrinted.unit }}</span>
</div>
Expand All @@ -30,19 +30,24 @@
</span>
<br />
<div class="job-info__print-details">
<fa-icon [icon]="['fas', 'clock']" class="job-info__print-details-icon"></fa-icon>
<span
class="job-info__print-details-value">{{ job.estimatedPrintTime.value }}{{ job.estimatedPrintTime.unit }}</span>
<span class="job-info__print-details-finish-state">
- will finish ~{{ job.estimatedEndTime }}
<span *ngIf="job.hasOwnProperty('estimatedPrintTime') && job.hasOwnProperty('estimatedEndTime')">
<fa-icon [icon]="['fas', 'clock']" class="job-info__print-details-icon"></fa-icon>
<span class="job-info__print-details-value">
{{ job.estimatedPrintTime.value }}{{ job.estimatedPrintTime.unit }}
</span>
<span class="job-info__print-details-finish-state">
- will finish ~{{ job.estimatedEndTime }}
</span>
<br />
</span>
<br />
<fa-icon [icon]="['fas', 'dharmachakra']" class="job-info__print-details-icon"></fa-icon>
<span class="job-info__print-details-value">
{{ job.filamentAmount }}g
</span>
<span class="job-info__print-details-finish-state">
filament will be used
<span *ngIf="job.hasOwnProperty('filamentAmount')">
<fa-icon [icon]="['fas', 'dharmachakra']" class="job-info__print-details-icon"></fa-icon>
<span class="job-info__print-details-value">
{{ job.filamentAmount }}g
</span>
<span class="job-info__print-details-finish-state">
filament will be used
</span>
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this will just be a big empty space if no GCode Analysis is available right?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, it just hides the estimated completion time and filament weight required since they aren't available, which does leave quite a bit of empty space.

</span>
</div>
</div>
Expand Down
Loading