user agent pipe

This commit is contained in:
Ben Wilson 2023-07-25 20:46:57 -04:00
parent 405b5d3cca
commit b0f4573485
4 changed files with 29 additions and 2 deletions

@ -19,6 +19,7 @@ import { DateAgoPipe } from './pipes/date-ago.pipe';
import { HashSuffixPipe } from './pipes/hash-suffix.pipe';
import { NumberSuffixPipe } from './pipes/number-suffix.pipe';
import { SettingsComponent } from './components/settings/settings.component';
import { UserAgentPipe } from './pipes/user-agent.pipe';
@ -33,7 +34,8 @@ import { SettingsComponent } from './components/settings/settings.component';
WorkerGroupComponent,
BackgroundParticlesComponent,
HashSuffixPipe,
SettingsComponent
SettingsComponent,
UserAgentPipe
],
imports: [
CommonModule,

@ -75,7 +75,7 @@
</ng-template>
<ng-template pTemplate="body" let-userAgent>
<tr>
<td>{{ userAgent.userAgent }}</td>
<td>{{ userAgent.userAgent | userAgent }}</td>
<td>{{ userAgent.count }}</td>
</tr>
</ng-template>

@ -0,0 +1,8 @@
import { UserAgentPipe } from './user-agent.pipe';
describe('UserAgentPipe', () => {
it('create an instance', () => {
const pipe = new UserAgentPipe();
expect(pipe).toBeTruthy();
});
});

@ -0,0 +1,17 @@
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
name: 'userAgent'
})
export class UserAgentPipe implements PipeTransform {
transform(value: string): string {
value = value.toLowerCase();
if (value.includes('bosminer-plus-tuner')) {
return 'Braiins OS';
} else {
return value;
}
}
}