Преглед на файлове

Fix metrics, SSR support

Add SSR support by checking to render server-side or client-side.

Also made key offsets as trade-off of accuracy and pixel-perfectness.
master
TheoryOfNekomata преди 3 години
родител
ревизия
bc2c997c93
променени са 5 файла, в които са добавени 41 реда и са изтрити 18 реда
  1. +0
    -1
      .gitignore
  2. +1
    -1
      package.json
  3. +9
    -2
      src/components/Keyboard/Keyboard.tsx
  4. +1
    -2
      src/index.ts
  5. +30
    -12
      src/services/constants.ts

+ 0
- 1
.gitignore Целия файл

@@ -90,4 +90,3 @@ dist
.yarn/unplugged
.yarn/build-state.yml
.pnp.*
keys.html

+ 1
- 1
package.json Целия файл

@@ -1,5 +1,5 @@
{
"version": "1.0.9",
"version": "1.0.10",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",


+ 9
- 2
src/components/Keyboard/Keyboard.tsx Целия файл

@@ -78,7 +78,8 @@ const Keyboard: React.FC<Props> = ({
keyComponents = {},
height = 80,
}) => {
const [keys, setKeys] = React.useState<number[]>([])
const [clientSide, setClientSide] = React.useState(false)
const [clientSideKeys, setClientSideKeys] = React.useState<number[]>([])

const { natural: NaturalKey = DefaultNaturalKey, accidental: AccidentalKey = DefaultAccidentalKey } = keyComponents!

@@ -87,9 +88,15 @@ const Keyboard: React.FC<Props> = ({
const isNaturalKey = React.useCallback((k) => isNaturalKeyUnmemoized(k), [])

React.useEffect(() => {
setKeys(generateKeys(startKey!, endKey!))
setClientSide(true)
}, [])

React.useEffect(() => {
setClientSideKeys(generateKeys(startKey!, endKey!))
}, [startKey, endKey])

const keys = clientSide ? clientSideKeys : generateKeys(startKey, endKey)

return (
<div
style={{


+ 1
- 2
src/index.ts Целия файл

@@ -1,8 +1,7 @@
import Keyboard from './components/Keyboard/Keyboard'
import StyledNaturalKey from './components/StyledNaturalKey/StyledNaturalKey'
import StyledAccidentalKey from './components/StyledAccidentalKey/StyledAccidentalKey'
import keyPropTypes from './services/keyPropTypes'

export default Keyboard

export { keyPropTypes, StyledNaturalKey, StyledAccidentalKey }
export { StyledNaturalKey, StyledAccidentalKey }

+ 30
- 12
src/services/constants.ts Целия файл

@@ -20,6 +20,7 @@

*/

// basic and naive
// export const KEY_OFFSETS = [
// 0, // C
// 3 / 7 / 5, // C#
@@ -51,19 +52,36 @@
// 6 / 7, // B
// ]

// pixel-perfect on smaller sizes
// export const KEY_OFFSETS = [
// 0,
// 14 / 140,
// 1 / 7,
// 36 / 140,
// 2 / 7,
// 3 / 7,
// 73 / 140,
// 4 / 7,
// 95 / 140,
// 5 / 7,
// 117 / 140,
// 6 / 7,
// ]

// compromise
export const KEY_OFFSETS = [
0,
14 / 140,
1 / 7,
36 / 140,
2 / 7,
3 / 7,
73 / 140,
4 / 7,
95 / 140,
5 / 7,
117 / 140,
6 / 7,
0, // C
(3 / 7 / 88) * 20, // C#
1 / 7, // D
(3 / 7 / 88) * 53, // D#
2 / 7, // E
3 / 7, // F
3 / 7 + (4 / 7 / 56) * 9, // F#
4 / 7, // G
3 / 7 + (4 / 7 / 224) * 97, // G#
5 / 7, // A
3 / 7 + (4 / 7 / 112) * 79, // A#
6 / 7, // B
]

export const ACCIDENTAL_KEY_TO_NATURAL_KEY_WIDTH_RATIO = 9 / 16


Зареждане…
Отказ
Запис