-
-
Save CoskunCakir/3378d0147968e4297eb20a1d214296eb to your computer and use it in GitHub Desktop.
Angular Pipe to transform a string into a slug with turkish character support.
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
import { Pipe, PipeTransform } from '@angular/core'; | |
@Pipe({ name: 'slugify' }) | |
export class SlugifyPipe implements PipeTransform { | |
transform(input: string): string { | |
const trChars = { | |
'çÇ': 'c', | |
'ğĞ': 'g', | |
'şŞ': 's', | |
'üÜ': 'u', | |
'ıİ': 'i', | |
'öÖ': 'o' | |
}; | |
for (const key of Object.keys(trChars)) { | |
input = input.replace(new RegExp('[' + key + ']', 'g'), trChars[key]); | |
} | |
return input | |
.toString() | |
.toLowerCase() | |
.replace(/\s+/g, '-') // Replace spaces with - | |
.replace(/[^\w\-]+/g, '') // Remove all non-word chars | |
.replace(/\-\-+/g, '-') // Replace multiple - with single - | |
.replace(/^-+/, '') // Trim - from start of text | |
.replace(/-+$/, ''); // Trim - from end of text | |
} | |
} |
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
import { SlugifyPipe } from '../../shared/slugify.pipe'; //import it from your path | |
//your other imports | |
@Component({ | |
selector: 'app-your-component', | |
templateUrl: './your-component.component.html', | |
styleUrls: ['./your-component.component.css'], | |
providers: [SlugifyPipe] | |
}) | |
export class YourComponent{ | |
constructor(private slugifyPipe: SlugifyPipe){} | |
slugify(input: string){ | |
const your_new_slug = this.slugifyPipe.transform(input); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for that snippet... I created one for Spanish chracters using it.