please add pride flags #1

Closed
opened 2022-11-12 02:34:43 +00:00 by fox · 2 comments

Adding this feature would cost treehouse.systems more bandwidth.

A possible source https://mutant.tech/ (CC BY-NC-SA 4.0)

And an incomplete suggestion:

import { Picker } from 'emoji-mart'

const customEmojis = [
  {
    name: 'Agender Flag',
    short_names: ['agender_flag'],
    text: '',
    emoticons: [],
    keywords: ['agender', 'flag'],
    imageUrl: 'https://cdn.treehouse.systems/images/icons/emoji/agender-flag.png',
    customCategory: 'Pride'
  },
  {
    name: 'Aromantic Flag',
    short_names: ['aromantic_flag', 'aro_flag'],
    text: '',
    emoticons: [],
    keywords: ['aromantic', 'flag', 'aro'],
    imageUrl: 'https://cdn.treehouse.systems/images/icons/emoji/aromantic-flag.png',
    customCategory: 'Pride'
  },
  {
    name: 'Asexeual Flag',
    short_names: ['asexual_flag', 'ace_flag'],
    text: '',
    emoticons: [],
    keywords: ['asexual', 'flag', 'ace'],
    imageUrl: 'https://cdn.treehouse.systems/images/icons/emoji/asexual-flag.png',
    customCategory: 'Pride'
  },
  {
    name: 'Bisexual Flag',
    short_names: ['bisexual_flag', 'bi_flag'],
    text: '',
    emoticons: [],
    keywords: ['bisexual', 'flag', 'bi'],
    imageUrl: 'https://cdn.treehouse.systems/images/icons/emoji/bisexual-flag.png',
    customCategory: 'Pride'
  },
  {
    name: 'Demisexual Flag',
    short_names: ['demisexual_flag', 'demi_flag'],
    text: '',
    emoticons: [],
    keywords: ['demisexual', 'flag', 'demi'],
    imageUrl: 'https://cdn.treehouse.systems/images/icons/emoji/demisexual-flag.png',
    customCategory: 'Pride'
  },
  {
    name: 'Intersex Flag',
    short_names: ['intersex_flag'],
    text: '',
    emoticons: [],
    keywords: ['intersex', 'flag'],
    imageUrl: 'https://cdn.treehouse.systems/images/icons/emoji/intersex-flag.png',
    customCategory: 'Pride'
  },
  {
    name: 'Lesbian Flag',
    short_names: ['lesbian_flag'],
    text: '',
    emoticons: [],
    keywords: ['lesbian', 'flag'],
    imageUrl: 'https://cdn.treehouse.systems/images/icons/emoji/lesbian-flag.png',
    customCategory: 'Pride'
  },
  {
    name: 'Nonbinary Flag',
    short_names: ['nonbinary_flag', 'enby_flag'],
    text: '',
    emoticons: [],
    keywords: ['nonbinary', 'flag', 'non-binary', 'enby'],
    imageUrl: 'https://cdn.treehouse.systems/images/icons/emoji/nonbinary-flag.png',
    customCategory: 'Pride'
  },
  {
    name: 'Pansexual Flag',
    short_names: ['pansexual_flag', 'pan_flag'],
    text: '',
    emoticons: [],
    keywords: ['pansexual', 'flag', 'pan'],
    imageUrl: 'https://cdn.treehouse.systems/images/icons/emoji/pansexual-flag.png',
    customCategory: 'Pride'
  },
  {
    name: 'Polyamory Flag',
    short_names: ['polyamory_flag', 'poly_flag'],
    text: '',
    emoticons: [],
    keywords: ['polyamory', 'flag', 'poly'],
    imageUrl: 'https://cdn.treehouse.systems/images/icons/emoji/polyamory-flag.png',
    customCategory: 'Pride'
  },
]

<Picker custom={customEmojis} />

This server needs a headpat emoji 🙏

Adding this feature would cost treehouse.systems more bandwidth. A possible source https://mutant.tech/ (CC BY-NC-SA 4.0) And an incomplete suggestion: ``` import { Picker } from 'emoji-mart' const customEmojis = [ { name: 'Agender Flag', short_names: ['agender_flag'], text: '', emoticons: [], keywords: ['agender', 'flag'], imageUrl: 'https://cdn.treehouse.systems/images/icons/emoji/agender-flag.png', customCategory: 'Pride' }, { name: 'Aromantic Flag', short_names: ['aromantic_flag', 'aro_flag'], text: '', emoticons: [], keywords: ['aromantic', 'flag', 'aro'], imageUrl: 'https://cdn.treehouse.systems/images/icons/emoji/aromantic-flag.png', customCategory: 'Pride' }, { name: 'Asexeual Flag', short_names: ['asexual_flag', 'ace_flag'], text: '', emoticons: [], keywords: ['asexual', 'flag', 'ace'], imageUrl: 'https://cdn.treehouse.systems/images/icons/emoji/asexual-flag.png', customCategory: 'Pride' }, { name: 'Bisexual Flag', short_names: ['bisexual_flag', 'bi_flag'], text: '', emoticons: [], keywords: ['bisexual', 'flag', 'bi'], imageUrl: 'https://cdn.treehouse.systems/images/icons/emoji/bisexual-flag.png', customCategory: 'Pride' }, { name: 'Demisexual Flag', short_names: ['demisexual_flag', 'demi_flag'], text: '', emoticons: [], keywords: ['demisexual', 'flag', 'demi'], imageUrl: 'https://cdn.treehouse.systems/images/icons/emoji/demisexual-flag.png', customCategory: 'Pride' }, { name: 'Intersex Flag', short_names: ['intersex_flag'], text: '', emoticons: [], keywords: ['intersex', 'flag'], imageUrl: 'https://cdn.treehouse.systems/images/icons/emoji/intersex-flag.png', customCategory: 'Pride' }, { name: 'Lesbian Flag', short_names: ['lesbian_flag'], text: '', emoticons: [], keywords: ['lesbian', 'flag'], imageUrl: 'https://cdn.treehouse.systems/images/icons/emoji/lesbian-flag.png', customCategory: 'Pride' }, { name: 'Nonbinary Flag', short_names: ['nonbinary_flag', 'enby_flag'], text: '', emoticons: [], keywords: ['nonbinary', 'flag', 'non-binary', 'enby'], imageUrl: 'https://cdn.treehouse.systems/images/icons/emoji/nonbinary-flag.png', customCategory: 'Pride' }, { name: 'Pansexual Flag', short_names: ['pansexual_flag', 'pan_flag'], text: '', emoticons: [], keywords: ['pansexual', 'flag', 'pan'], imageUrl: 'https://cdn.treehouse.systems/images/icons/emoji/pansexual-flag.png', customCategory: 'Pride' }, { name: 'Polyamory Flag', short_names: ['polyamory_flag', 'poly_flag'], text: '', emoticons: [], keywords: ['polyamory', 'flag', 'poly'], imageUrl: 'https://cdn.treehouse.systems/images/icons/emoji/polyamory-flag.png', customCategory: 'Pride' }, ] <Picker custom={customEmojis} /> ``` This server *needs* a headpat emoji 🙏

We don't need to add anything to our fork for these. Mastodon already supports custom emojis, we just haven't figured out what emojis we should install or not.

We don't need to add anything to our fork for these. Mastodon already supports custom emojis, we just haven't figured out what emojis we should install or not.
Poster
Owner

awesome! closing this issue

thanks for treehouse/mastodon#11 🙏

awesome! closing this issue thanks for https://gitea.treehouse.systems/treehouse/mastodon/issues/11 🙏
fox closed this issue 2022-11-12 04:13:10 +00:00
Sign in to join this conversation.
There is no content yet.