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

Custom emoji for skin tone selector #209

Merged
merged 7 commits into from
Aug 10, 2018
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ import { Picker } from 'emoji-mart'
| **emojiTooltip** | | `false` | Show emojis short name when hovering (title) |
| **skin** | | | Forces skin color: `1, 2, 3, 4, 5, 6` |
| **defaultSkin** | | `1` | Default skin color: `1, 2, 3, 4, 5, 6` |
| **skinEmoji** | | | The emoji used to pick a skin tone. Uses an emoji-less skin tone picker by default |
| **style** | | | Inline styles applied to the root element. Useful for positioning |
| **title** | | `Emoji Mart™` | The title shown when no emojis are hovered |
| **notFoundEmoji** | | `sleuth_or_spy` | The emoji shown when there are no search results |
Expand All @@ -58,6 +59,7 @@ import { Picker } from 'emoji-mart'
```js
search: 'Search',
notfound: 'No Emoji Found',
skintext: 'Choose your default skin tone',
categories: {
search: 'Search Results',
recent: 'Frequently Used',
Expand Down
76 changes: 71 additions & 5 deletions css/emoji-mart.css
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,11 @@
text-align: right;
}

.emoji-mart-preview-skins.custom {
right: 10px;
text-align: right;
}

.emoji-mart-preview-name {
font-size: 14px;
}
Expand Down Expand Up @@ -247,12 +252,18 @@
background-color: #fff;
}

.emoji-mart-skin-swatches-opened .emoji-mart-skin-swatch {
.emoji-mart-skin-swatches.custom {
font-size: 0;
border: none;
background-color: #fff;
}

.emoji-mart-skin-swatches.opened .emoji-mart-skin-swatch {
width: 16px;
padding: 0 2px;
}

.emoji-mart-skin-swatches-opened .emoji-mart-skin-swatch-selected:after {
.emoji-mart-skin-swatches.opened .emoji-mart-skin-swatch.selected:after {
opacity: .75;
}

Expand All @@ -272,12 +283,13 @@
.emoji-mart-skin-swatch:nth-child(5) { transition-delay: .12s }
.emoji-mart-skin-swatch:nth-child(6) { transition-delay: .15s }

.emoji-mart-skin-swatch-selected {
.emoji-mart-skin-swatch.selected {
position: relative;
width: 16px;
padding: 0 2px;
}
.emoji-mart-skin-swatch-selected:after {

.emoji-mart-skin-swatch.selected:after {
content: "";
position: absolute;
top: 50%; left: 50%;
Expand All @@ -290,9 +302,63 @@
transition: opacity .2s ease-out;
}

.emoji-mart-skin-swatch.custom {
display: inline-block;
width: 0;
height: 38px;
overflow: hidden;
vertical-align: middle;
transition-property: width, height;
transition-duration: .125s;
transition-timing-function: ease-out;
cursor: default;
}

.emoji-mart-skin-swatch.custom.selected {
position: relative;
width: 36px;
height: 38px;
padding: 0 2px 0 0;
}

.emoji-mart-skin-swatch.custom.selected:after {
content: "";
width: 0;
height: 0;
}

.emoji-mart-skin-swatches.custom .emoji-mart-skin-swatch.custom:hover {
background-color: #f4f4f4;
border-radius: 10%;
}

.emoji-mart-skin-swatches.custom.opened .emoji-mart-skin-swatch.custom {
width: 36px;
height: 38px;
padding: 0 2px 0 0;
}

.emoji-mart-skin-swatches.custom.opened .emoji-mart-skin-swatch.custom.selected:after {
opacity: .75;
}

.emoji-mart-skin-text.opened {
display: inline-block;
vertical-align: middle;
text-align: left;
color: #888;
font-size: 11px;
padding: 5px 2px;
width: 95px;
height: 40px;
border-radius: 10%;
background-color: #fff;
}

.emoji-mart-skin {
display: inline-block;
width: 100%; padding-top: 100%;
width: 100%;
padding-top: 100%;
max-width: 12px;
border-radius: 100%;
}
Expand Down
2 changes: 2 additions & 0 deletions src/components/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ export { default as Preview } from './preview'
export { default as NotFound } from './not-found'
export { default as Search } from './search'
export { default as Skins } from './skins'
export { default as SkinsEmoji } from './skins-emoji'
export { default as SkinsDot } from './skins-dot'

export { default as Emoji } from './emoji/emoji'
export { default as NimbleEmoji } from './emoji/nimble-emoji'
Expand Down
4 changes: 4 additions & 0 deletions src/components/picker/nimble-picker.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import { Anchors, Category, Preview, Search } from '..'
const I18N = {
search: 'Search',
notfound: 'No Emoji Found',
skintext: 'Choose your default skin tone',
categories: {
search: 'Search Results',
recent: 'Frequently Used',
Expand Down Expand Up @@ -471,6 +472,7 @@ export default class NimblePicker extends React.PureComponent {
exclude,
recent,
autoFocus,
skinEmoji,
notFound,
notFoundEmoji,
} = this.props,
Expand Down Expand Up @@ -574,7 +576,9 @@ export default class NimblePicker extends React.PureComponent {
skinsProps={{
skin: skin,
onChange: this.handleSkinChange,
skinEmoji: skinEmoji,
}}
i18n={this.i18n}
/>
</div>
)}
Expand Down
26 changes: 23 additions & 3 deletions src/components/preview.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react'
import PropTypes from 'prop-types'

import { getData } from '../utils'
import { NimbleEmoji, Skins } from '.'
import { NimbleEmoji, SkinsEmoji, SkinsDot } from '.'

export default class Preview extends React.PureComponent {
constructor(props) {
Expand All @@ -20,6 +20,7 @@ export default class Preview extends React.PureComponent {
showSkinTones,
title,
emoji: idleEmoji,
i18n,
} = this.props

if (emoji) {
Expand Down Expand Up @@ -81,8 +82,27 @@ export default class Preview extends React.PureComponent {
</div>

{showSkinTones && (
<div className="emoji-mart-preview-skins">
<Skins {...skinsProps} />
<div
className={`emoji-mart-preview-skins${
skinsProps.skinEmoji ? ' custom' : ''
}`}
>
{skinsProps.skinEmoji ? (
<SkinsEmoji
skin={skinsProps.skin}
emojiProps={emojiProps}
data={this.data}
skinEmoji={skinsProps.skinEmoji}
i18n={i18n}
onChange={skinsProps.onChange}
/>
) : (
<SkinsDot
skin={skinsProps.skin}
i18n={i18n}
onChange={skinsProps.onChange}
/>
)}
</div>
)}
</div>
Expand Down
50 changes: 50 additions & 0 deletions src/components/skins-dot.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
import React from 'react'
import PropTypes from 'prop-types'

import { Skins } from '.'

export default class SkinsDot extends Skins {
constructor(props) {
super(props)

this.handleClick = this.handleClick.bind(this)
}

render() {
const { skin, i18n } = this.props
const { opened } = this.state
const skinToneNodes = []

for (let skinTone = 1; skinTone <= 6; skinTone++) {
const selected = skinTone === skin
skinToneNodes.push(
<span
key={`skin-tone-${skinTone}`}
className={`emoji-mart-skin-swatch${selected ? ' selected' : ''}`}
>
<span
onClick={this.handleClick}
data-skin={skinTone}
className={`emoji-mart-skin emoji-mart-skin-tone-${skinTone}`}
/>
</span>,
)
}

return (
<div className={`emoji-mart-skin-swatches${opened ? ' opened' : ''}`}>
{skinToneNodes}
</div>
)
}
}

SkinsDot.propTypes = {
onChange: PropTypes.func,
skin: PropTypes.number.isRequired,
i18n: PropTypes.object,
}

SkinsDot.defaultProps = {
onChange: () => {},
}
72 changes: 72 additions & 0 deletions src/components/skins-emoji.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
import React from 'react'
import PropTypes from 'prop-types'

import { NimbleEmoji, Skins } from '.'

export default class SkinsEmoji extends Skins {
constructor(props) {
super(props)

this.handleClick = this.handleClick.bind(this)
}

render() {
const { skin, emojiProps, data, skinEmoji, i18n } = this.props
const { opened } = this.state
const skinToneNodes = []

for (let skinTone = 1; skinTone <= 6; skinTone++) {
const selected = skinTone === skin
skinToneNodes.push(
<span
key={`skin-tone-${skinTone}`}
className={`emoji-mart-skin-swatch custom${
selected ? ' selected' : ''
}`}
>
<span
onClick={this.handleClick}
data-skin={skinTone}
className={`emoji-mart-skin-tone-${skinTone}`}
>
{NimbleEmoji({
emoji: skinEmoji,
data: data,
skin: skinTone,
backgroundImageFn: emojiProps.backgroundImageFn,
native: emojiProps.native,
set: emojiProps.set,
sheetSize: emojiProps.sheetSize,
size: 23,
})}
</span>
</span>,
)
}

return (
<div
className={`emoji-mart-skin-swatches custom${opened ? ' opened' : ''}`}
>
<div className={`emoji-mart-skin-text${opened ? ' opened' : ''}`}>
{i18n.skintext}
</div>
{skinToneNodes}
</div>
)
}
}

SkinsEmoji.propTypes = {
onChange: PropTypes.func,
skin: PropTypes.number.isRequired,
emojiProps: PropTypes.object.isRequired,
skinTone: PropTypes.number,
skinEmoji: PropTypes.string.isRequired,
i18n: PropTypes.object,
}

SkinsEmoji.defaultProps = {
onChange: () => {},
skinTone: null,
}
42 changes: 3 additions & 39 deletions src/components/skins.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
import React from 'react'
import PropTypes from 'prop-types'

import { NimbleEmoji } from '.'

export default class Skins extends React.PureComponent {
constructor(props) {
super(props)

this.state = {
opened: false,
}

this.handleClick = this.handleClick.bind(this)
}

handleClick(e) {
Expand All @@ -27,42 +26,7 @@ export default class Skins extends React.PureComponent {
}

render() {
const { skin } = this.props
const { opened } = this.state

const skinToneNodes = []

for (let i = 0; i < 6; i++) {
const skinTone = i + 1
const selected = skinTone == skin

skinToneNodes.push(
<span
key={`skin-tone-${skinTone}`}
className={`emoji-mart-skin-swatch ${
selected ? 'emoji-mart-skin-swatch-selected' : ''
}`}
>
<span
onClick={this.handleClick}
data-skin={skinTone}
className={`emoji-mart-skin emoji-mart-skin-tone-${skinTone}`}
/>
</span>,
)
}

return (
<div>
<div
className={`emoji-mart-skin-swatches ${
opened ? 'emoji-mart-skin-swatches-opened' : ''
}`}
>
{skinToneNodes}
</div>
</div>
)
return null
}
}

Expand Down
Loading