Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

utils.ts 280B

123456789101112
  1. import {
  2. categoryKeys,
  3. tagKeys,
  4. } from './constants'
  5. export const getValidTagKeys = (tags: string[]) => {
  6. return tags.filter(tag => tagKeys.includes(tag))
  7. }
  8. export const getValidCategoryKeys = (category?: string) => {
  9. return categoryKeys.find(key => key === category)
  10. }