@scrabble-solver/scrabble-solver 2.12.0 → 2.12.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.next/BUILD_ID +1 -1
- package/.next/build-manifest.json +13 -13
- package/.next/cache/.tsbuildinfo +1 -1
- package/.next/cache/eslint/.cache_8dgz12 +1 -1
- package/.next/cache/next-server.js.nft.json +1 -1
- package/.next/cache/webpack/client-production/0.pack +0 -0
- package/.next/cache/webpack/client-production/index.pack +0 -0
- package/.next/cache/webpack/edge-server-production/0.pack +0 -0
- package/.next/cache/webpack/edge-server-production/index.pack +0 -0
- package/.next/cache/webpack/server-production/0.pack +0 -0
- package/.next/cache/webpack/server-production/index.pack +0 -0
- package/.next/next-server.js.nft.json +1 -1
- package/.next/prerender-manifest.json +1 -1
- package/.next/required-server-files.json +1 -1
- package/.next/routes-manifest.json +1 -1
- package/.next/server/chunks/277.js +70 -37
- package/.next/server/chunks/675.js +35 -13
- package/.next/server/chunks/859.js +21 -4
- package/.next/server/middleware-build-manifest.js +1 -1
- package/.next/server/pages/404.html +1 -1
- package/.next/server/pages/404.js.nft.json +1 -1
- package/.next/server/pages/500.html +1 -1
- package/.next/server/pages/_app.js.nft.json +1 -1
- package/.next/server/pages/_document.js +4 -5
- package/.next/server/pages/_document.js.nft.json +1 -1
- package/.next/server/pages/api/solve.js +29 -2
- package/.next/server/pages/index.html +1 -1
- package/.next/server/pages/index.js +13 -10
- package/.next/server/pages/index.js.nft.json +1 -1
- package/.next/server/pages/index.json +1 -1
- package/.next/server/pages-manifest.json +1 -1
- package/.next/static/{fsjQvvJ13WNxBdMioL4sc → 9dmPfnTc_AQTHBPvL7xQe}/_buildManifest.js +1 -1
- package/.next/static/chunks/{framework-2c5cac93e8c637b5.js → framework-2c29dc3cd933590b.js} +2 -2
- package/.next/static/chunks/main-4dcb7f9b52833aba.js +1 -0
- package/.next/static/chunks/pages/_app-02851b06b95b19cb.js +32 -0
- package/.next/static/chunks/pages/index-0ba5607d1aad8a09.js +1 -0
- package/.next/static/css/{58053f9594647860.css → 09dfdea53eba31a9.css} +1 -1
- package/.next/trace +52 -52
- package/package.json +14 -14
- package/public/favicon.ico +0 -0
- package/public/icons/apple-touch-icon-114x114.png +0 -0
- package/public/icons/apple-touch-icon-120x120.png +0 -0
- package/public/icons/apple-touch-icon-144x144.png +0 -0
- package/public/icons/apple-touch-icon-152x152.png +0 -0
- package/public/icons/apple-touch-icon-57x57.png +0 -0
- package/public/icons/apple-touch-icon-60x60.png +0 -0
- package/public/icons/apple-touch-icon-72x72.png +0 -0
- package/public/icons/apple-touch-icon-76x76.png +0 -0
- package/public/icons/favicon-128.png +0 -0
- package/public/icons/favicon-16x16.png +0 -0
- package/public/icons/favicon-196x196.png +0 -0
- package/public/icons/favicon-32x32.png +0 -0
- package/public/icons/favicon-96x96.png +0 -0
- package/public/icons/favicon.svg +6 -0
- package/public/icons/mstile-144x144.png +0 -0
- package/public/icons/mstile-150x150.png +0 -0
- package/public/icons/mstile-310x150.png +0 -0
- package/public/icons/mstile-310x310.png +0 -0
- package/public/icons/mstile-70x70.png +0 -0
- package/public/logo.svg +16 -45
- package/public/og.png +0 -0
- package/src/components/Board/Board.module.scss +33 -0
- package/src/components/Board/Board.tsx +3 -0
- package/src/components/Board/BoardPure.tsx +25 -1
- package/src/components/Board/components/InputPrompt/InputPrompt.tsx +1 -0
- package/src/components/Board/hooks/useBackgroundImage.tsx +1 -6
- package/src/components/Logo/LogoBlueprint.tsx +4 -2
- package/src/components/Rack/components/InputPrompt/InputPrompt.tsx +1 -0
- package/src/modals/SettingsModal/SettingsModal.tsx +7 -3
- package/src/pages/_document.tsx +1 -1
- package/src/state/selectors.ts +7 -7
- package/.next/static/chunks/main-0ecb9ccfcb6c9b24.js +0 -1
- package/.next/static/chunks/pages/_app-bea4539a6b8042de.js +0 -32
- package/.next/static/chunks/pages/index-4e8566409753e1c3.js +0 -1
- /package/.next/static/{fsjQvvJ13WNxBdMioL4sc → 9dmPfnTc_AQTHBPvL7xQe}/_ssgManifest.js +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scrabble-solver/scrabble-solver",
|
|
3
|
-
"version": "2.12.
|
|
3
|
+
"version": "2.12.2",
|
|
4
4
|
"description": "Scrabble Solver 2 - App",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=16"
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"bugs": {
|
|
19
19
|
"url": "https://github.com/kamilmielnik/scrabble-solver/issues"
|
|
20
20
|
},
|
|
21
|
-
"homepage": "https://
|
|
21
|
+
"homepage": "https://scrabble-solver.org",
|
|
22
22
|
"scripts": {
|
|
23
23
|
"build": "env-cmd next build",
|
|
24
24
|
"clean": "rimraf .next/ node_modules/",
|
|
@@ -28,20 +28,20 @@
|
|
|
28
28
|
"start": "env-cmd next start -p 3333"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@floating-ui/react": "^0.22.
|
|
31
|
+
"@floating-ui/react": "^0.22.3",
|
|
32
32
|
"@kamilmielnik/trie": "^2.0.1",
|
|
33
33
|
"@reduxjs/toolkit": "^1.9.3",
|
|
34
|
-
"@scrabble-solver/configs": "^2.12.
|
|
35
|
-
"@scrabble-solver/constants": "^2.12.
|
|
36
|
-
"@scrabble-solver/dictionaries": "^2.12.
|
|
37
|
-
"@scrabble-solver/logger": "^2.12.
|
|
38
|
-
"@scrabble-solver/solver": "^2.12.
|
|
39
|
-
"@scrabble-solver/types": "^2.12.
|
|
40
|
-
"@scrabble-solver/word-definitions": "^2.12.
|
|
34
|
+
"@scrabble-solver/configs": "^2.12.2",
|
|
35
|
+
"@scrabble-solver/constants": "^2.12.2",
|
|
36
|
+
"@scrabble-solver/dictionaries": "^2.12.2",
|
|
37
|
+
"@scrabble-solver/logger": "^2.12.2",
|
|
38
|
+
"@scrabble-solver/solver": "^2.12.2",
|
|
39
|
+
"@scrabble-solver/types": "^2.12.2",
|
|
40
|
+
"@scrabble-solver/word-definitions": "^2.12.2",
|
|
41
41
|
"classnames": "^2.3.2",
|
|
42
42
|
"include-media": "^2.0.0",
|
|
43
43
|
"include-media-query-builder": "^1.1.0",
|
|
44
|
-
"next": "^13.
|
|
44
|
+
"next": "^13.3.0",
|
|
45
45
|
"normalize.css": "^8.0.1",
|
|
46
46
|
"react": "^18.2.0",
|
|
47
47
|
"react-cool-onclickoutside": "^1.7.0",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@svgr/webpack": "^7.0.0",
|
|
63
63
|
"@types/classnames": "^2.3.0",
|
|
64
|
-
"@types/react": "^18.0.
|
|
64
|
+
"@types/react": "^18.0.33",
|
|
65
65
|
"@types/react-dom": "^18.0.11",
|
|
66
66
|
"@types/react-highlight-words": "^0.16.4",
|
|
67
67
|
"@types/react-modal": "^3.13.1",
|
|
@@ -71,8 +71,8 @@
|
|
|
71
71
|
"@types/redux": "^3.6.31",
|
|
72
72
|
"@types/redux-saga": "^0.10.5",
|
|
73
73
|
"env-cmd": "^10.1.0",
|
|
74
|
-
"sass": "^1.
|
|
74
|
+
"sass": "^1.61.0",
|
|
75
75
|
"workbox-webpack-plugin": "^6.5.4"
|
|
76
76
|
},
|
|
77
|
-
"gitHead": "
|
|
77
|
+
"gitHead": "22ec8b756bf1f50d94028c8e69ccc269c23e5759"
|
|
78
78
|
}
|
package/public/favicon.ico
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
|
|
2
|
+
<g transform="rotate(0, 40, 40)">
|
|
3
|
+
<path d="m 12,0 h 56 c 6.648,0 12,5.352 12,12 v 56 c 0,6.648 -5.352,12 -12,12 H 12 C 5.352,80 0,74.648 0,68 V 12 C 0,5.352 5.352,0 12,0 Z" fill="#efe3ae" />
|
|
4
|
+
<path d="m 51.320312,47.628907 q 0,3.046875 -1.476562,5.296875 -1.476563,2.25 -4.3125,3.46875 -2.8125,1.21875 -6.84375,1.21875 -1.78125,0 -3.492188,-0.234375 -1.6875,-0.234375 -3.257812,-0.679687 -1.546875,-0.46875 -2.953125,-1.148438 v -6.75 q 2.4375,1.078125 5.0625,1.945313 2.625,0.867187 5.203125,0.867187 1.78125,0 2.859375,-0.46875 1.101562,-0.46875 1.59375,-1.289062 0.492187,-0.820313 0.492187,-1.875 0,-1.289063 -0.867187,-2.203125 Q 42.460937,44.863282 40.9375,44.066407 39.4375,43.269532 37.539062,42.35547 36.34375,41.79297 34.9375,40.996095 33.53125,40.175782 32.265625,39.003907 31,37.832032 30.179687,36.16797 q -0.796875,-1.6875 -0.796875,-4.03125 0,-3.070313 1.40625,-5.25 1.40625,-2.179688 4.007813,-3.328125 2.625,-1.171875 6.1875,-1.171875 2.671875,0 5.085937,0.632812 2.4375,0.609375 5.085938,1.78125 L 48.8125,30.44922 q -2.367188,-0.960938 -4.242188,-1.476563 -1.875,-0.539062 -3.820312,-0.539062 -1.359375,0 -2.320313,0.445312 -0.960937,0.421875 -1.453125,1.21875 -0.492187,0.773438 -0.492187,1.804688 0,1.21875 0.703125,2.0625 0.726562,0.820312 2.15625,1.59375 1.453125,0.773437 3.609375,1.804687 2.625,1.242188 4.476562,2.601563 1.875,1.335937 2.882813,3.164062 1.007812,1.804688 1.007812,4.5 z" />
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/public/logo.svg
CHANGED
|
@@ -1,91 +1,62 @@
|
|
|
1
1
|
<svg viewBox="0 0 682 166" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
|
|
2
|
-
<!-- S -->
|
|
3
2
|
<g transform="rotate(0, 40, 40)">
|
|
4
|
-
<path
|
|
5
|
-
<path d="m 51.
|
|
3
|
+
<path d="m 12,0 h 56 c 6.648,0 12,5.352 12,12 v 56 c 0,6.648 -5.352,12 -12,12 H 12 C 5.352,80 0,74.648 0,68 V 12 C 0,5.352 5.352,0 12,0 Z" fill="#efe3ae" />
|
|
4
|
+
<path d="m 51.320312,47.628907 q 0,3.046875 -1.476562,5.296875 -1.476563,2.25 -4.3125,3.46875 -2.8125,1.21875 -6.84375,1.21875 -1.78125,0 -3.492188,-0.234375 -1.6875,-0.234375 -3.257812,-0.679687 -1.546875,-0.46875 -2.953125,-1.148438 v -6.75 q 2.4375,1.078125 5.0625,1.945313 2.625,0.867187 5.203125,0.867187 1.78125,0 2.859375,-0.46875 1.101562,-0.46875 1.59375,-1.289062 0.492187,-0.820313 0.492187,-1.875 0,-1.289063 -0.867187,-2.203125 Q 42.460937,44.863282 40.9375,44.066407 39.4375,43.269532 37.539062,42.35547 36.34375,41.79297 34.9375,40.996095 33.53125,40.175782 32.265625,39.003907 31,37.832032 30.179687,36.16797 q -0.796875,-1.6875 -0.796875,-4.03125 0,-3.070313 1.40625,-5.25 1.40625,-2.179688 4.007813,-3.328125 2.625,-1.171875 6.1875,-1.171875 2.671875,0 5.085937,0.632812 2.4375,0.609375 5.085938,1.78125 L 48.8125,30.44922 q -2.367188,-0.960938 -4.242188,-1.476563 -1.875,-0.539062 -3.820312,-0.539062 -1.359375,0 -2.320313,0.445312 -0.960937,0.421875 -1.453125,1.21875 -0.492187,0.773438 -0.492187,1.804688 0,1.21875 0.703125,2.0625 0.726562,0.820312 2.15625,1.59375 1.453125,0.773437 3.609375,1.804687 2.625,1.242188 4.476562,2.601563 1.875,1.335937 2.882813,3.164062 1.007812,1.804688 1.007812,4.5 z" />
|
|
6
5
|
</g>
|
|
7
|
-
|
|
8
|
-
<!-- C -->
|
|
9
6
|
<g transform="rotate(0, 126, 40)">
|
|
10
|
-
<path
|
|
7
|
+
<path d="m 98,0 h 56 c 6.648,0 12,5.352 12,12 v 56 c 0,6.648 -5.352,12 -12,12 H 98 C 91.352,80 86,74.648 86,68 V 12 C 86,5.352 91.352,0 98,0 Z" fill="#c7d8f9" />
|
|
11
8
|
<path d="m 129.57422,28.433595 q -2.08594,0 -3.70313,0.820312 -1.59375,0.796875 -2.69531,2.320313 -1.07812,1.523437 -1.64062,3.679687 -0.5625,2.15625 -0.5625,4.851563 0,3.632812 0.89062,6.210937 0.91406,2.554688 2.8125,3.914063 1.89844,1.335937 4.89844,1.335937 2.08594,0 4.17187,-0.46875 2.10938,-0.46875 4.57032,-1.335937 v 6.09375 q -2.27344,0.9375 -4.47657,1.335937 -2.20312,0.421875 -4.94531,0.421875 -5.29687,0 -8.71875,-2.179687 -3.39844,-2.203125 -5.03906,-6.140625 -1.64063,-3.960938 -1.64063,-9.234375 0,-3.890625 1.05469,-7.125 1.05469,-3.234375 3.09375,-5.601563 2.03906,-2.367187 5.03906,-3.65625 3,-1.289062 6.89063,-1.289062 2.55469,0 5.10937,0.65625 2.57813,0.632812 4.92188,1.757812 l -2.34375,5.90625 q -1.92188,-0.914062 -3.86719,-1.59375 -1.94531,-0.679687 -3.82031,-0.679687 z" />
|
|
12
9
|
</g>
|
|
13
|
-
|
|
14
|
-
<!-- R -->
|
|
15
10
|
<g transform="rotate(0, 212, 40)">
|
|
16
|
-
<path
|
|
11
|
+
<path d="m 184,0 h 56 c 6.648,0 12,5.352 12,12 v 56 c 0,6.648 -5.352,12 -12,12 h -56 c -6.648,0 -12,-5.352 -12,-12 V 12 c 0,-6.648 5.352,-12 12,-12 z" fill="#efe3ae" />
|
|
17
12
|
<path d="m 210.45312,22.867188 q 4.66407,0 7.6875,1.125 3.04688,1.125 4.52344,3.398438 1.47656,2.273437 1.47656,5.742187 0,2.34375 -0.89062,4.101563 -0.89063,1.757812 -2.34375,2.976562 -1.45313,1.21875 -3.14063,1.992188 l 10.07813,14.929687 h -8.0625 l -8.17969,-13.148437 h -3.86719 v 13.148437 h -7.26562 V 22.867188 Z m -0.51562,5.953125 h -2.20313 v 9.257813 h 2.34375 q 3.60938,0 5.15625,-1.195313 1.57032,-1.21875 1.57032,-3.5625 0,-2.4375 -1.6875,-3.46875 -1.66407,-1.03125 -5.17969,-1.03125 z" />
|
|
18
13
|
</g>
|
|
19
|
-
|
|
20
|
-
<!-- A -->
|
|
21
14
|
<g transform="rotate(0, 298, 40)">
|
|
22
|
-
<path
|
|
15
|
+
<path d="m 270,0 h 56 c 6.648,0 12,5.352 12,12 v 56 c 0,6.648 -5.352,12 -12,12 h -56 c -6.648,0 -12,-5.352 -12,-12 V 12 c 0,-6.648 5.352,-12 12,-12 z" fill="#efe3ae" />
|
|
23
16
|
<path d="m 306.73047,57.203126 -2.48438,-8.15625 h -12.49218 l -2.48438,8.15625 h -7.82812 l 12.09375,-34.40625 h 8.88281 l 12.14062,34.40625 z m -4.21875,-14.25 -2.48438,-7.96875 q -0.23437,-0.796875 -0.63281,-2.039063 -0.375,-1.265625 -0.77344,-2.554687 -0.375,-1.3125 -0.60937,-2.273438 -0.23438,0.960938 -0.65625,2.390625 -0.39844,1.40625 -0.77344,2.671875 -0.375,1.265625 -0.53906,1.804688 l -2.46094,7.96875 z" />
|
|
24
17
|
</g>
|
|
25
|
-
|
|
26
|
-
<!-- B -->
|
|
27
18
|
<g transform="rotate(0, 384, 40)">
|
|
28
|
-
<path
|
|
19
|
+
<path d="m 356,0 h 56 c 6.648,0 12,5.352 12,12 v 56 c 0,6.648 -5.352,12 -12,12 h -56 c -6.648,0 -12,-5.352 -12,-12 V 12 c 0,-6.648 5.352,-12 12,-12 z" fill="#c7d8f9" />
|
|
29
20
|
<path d="m 372.1875,22.867188 h 10.66406 q 6.84375,0 10.35938,1.921875 3.51562,1.921875 3.51562,6.75 0,1.945313 -0.63281,3.515625 -0.60938,1.570313 -1.78125,2.578125 -1.17188,1.007813 -2.85938,1.3125 v 0.234375 q 1.71094,0.351563 3.09375,1.21875 1.38282,0.84375 2.20313,2.484375 0.84375,1.617188 0.84375,4.3125 0,3.117188 -1.52344,5.34375 -1.52344,2.226563 -4.35937,3.421875 -2.8125,1.171875 -6.70313,1.171875 H 372.1875 Z m 7.26562,13.570313 h 4.21875 q 3.16407,0 4.38282,-0.984375 1.21875,-1.007813 1.21875,-2.953125 0,-1.96875 -1.45313,-2.8125 -1.42969,-0.867188 -4.54687,-0.867188 h -3.82032 z m 0,5.765625 v 8.929687 h 4.73438 q 3.28125,0 4.57031,-1.265625 1.28906,-1.265625 1.28906,-3.398437 0,-1.265625 -0.5625,-2.226563 -0.5625,-0.960937 -1.89843,-1.5 -1.3125,-0.539062 -3.63282,-0.539062 z" />
|
|
30
21
|
</g>
|
|
31
|
-
|
|
32
|
-
<!-- B -->
|
|
33
22
|
<g transform="rotate(0, 470, 40)">
|
|
34
|
-
<path
|
|
23
|
+
<path d="m 442,0 h 56 c 6.648,0 12,5.352 12,12 v 56 c 0,6.648 -5.352,12 -12,12 h -56 c -6.648,0 -12,-5.352 -12,-12 V 12 c 0,-6.648 5.352,-12 12,-12 z" fill="#c7d8f9" />
|
|
35
24
|
<path d="m 458.1875,22.867188 h 10.66406 q 6.84375,0 10.35938,1.921875 3.51562,1.921875 3.51562,6.75 0,1.945313 -0.63281,3.515625 -0.60938,1.570313 -1.78125,2.578125 -1.17188,1.007813 -2.85938,1.3125 v 0.234375 q 1.71094,0.351563 3.09375,1.21875 1.38282,0.84375 2.20313,2.484375 0.84375,1.617188 0.84375,4.3125 0,3.117188 -1.52344,5.34375 -1.52344,2.226563 -4.35937,3.421875 -2.8125,1.171875 -6.70313,1.171875 H 458.1875 Z m 7.26562,13.570313 h 4.21875 q 3.16407,0 4.38282,-0.984375 1.21875,-1.007813 1.21875,-2.953125 0,-1.96875 -1.45313,-2.8125 -1.42969,-0.867188 -4.54687,-0.867188 h -3.82032 z m 0,5.765625 v 8.929687 h 4.73438 q 3.28125,0 4.57031,-1.265625 1.28906,-1.265625 1.28906,-3.398437 0,-1.265625 -0.5625,-2.226563 -0.5625,-0.960937 -1.89843,-1.5 -1.3125,-0.539062 -3.63282,-0.539062 z" />
|
|
36
25
|
</g>
|
|
37
|
-
|
|
38
|
-
<!-- L -->
|
|
39
26
|
<g transform="rotate(0, 556, 40)">
|
|
40
|
-
<path
|
|
27
|
+
<path d="m 528,0 h 56 c 6.648,0 12,5.352 12,12 v 56 c 0,6.648 -5.352,12 -12,12 h -56 c -6.648,0 -12,-5.352 -12,-12 V 12 c 0,-6.648 5.352,-12 12,-12 z" fill="#efe3ae" />
|
|
41
28
|
<path d="M 546.75391,57.132813 V 22.867188 h 7.26562 v 28.265625 h 13.89844 v 6 z" />
|
|
42
29
|
</g>
|
|
43
|
-
|
|
44
|
-
<!-- E -->
|
|
45
30
|
<g transform="rotate(0, 642, 40)">
|
|
46
|
-
<path
|
|
31
|
+
<path d="m 614,0 h 56 c 6.648,0 12,5.352 12,12 v 56 c 0,6.648 -5.352,12 -12,12 h -56 c -6.648,0 -12,-5.352 -12,-12 V 12 c 0,-6.648 5.352,-12 12,-12 z" fill="#efe3ae" />
|
|
47
32
|
<path d="M 652.60547,57.132813 H 632.87109 V 22.867188 h 19.73438 v 5.953125 h -12.46875 v 7.523438 h 11.60156 v 5.953125 h -11.60156 v 8.835937 h 12.46875 z" />
|
|
48
33
|
</g>
|
|
49
|
-
|
|
50
|
-
<!-- S -->
|
|
51
34
|
<g transform="rotate(0, 40, 40)">
|
|
52
|
-
<path
|
|
35
|
+
<path d="m 12,86 h 56 c 6.648,0 12,5.352 12,12 v 56 c 0,6.648 -5.352,12 -12,12 H 12 C 5.352,166 0,160.648 0,154 V 98 C 0,91.352 5.352,86 12,86 Z" fill="#efe3ae" />
|
|
53
36
|
<path d="m 51.320312,133.6289 q 0,3.04688 -1.476562,5.29688 -1.476563,2.25 -4.3125,3.46875 -2.8125,1.21875 -6.84375,1.21875 -1.78125,0 -3.492188,-0.23438 -1.6875,-0.23437 -3.257812,-0.67968 -1.546875,-0.46875 -2.953125,-1.14844 v -6.75 q 2.4375,1.07812 5.0625,1.94531 2.625,0.86719 5.203125,0.86719 1.78125,0 2.859375,-0.46875 1.101562,-0.46875 1.59375,-1.28906 0.492187,-0.82032 0.492187,-1.875 0,-1.28907 -0.867187,-2.20313 -0.867188,-0.91406 -2.390625,-1.71094 -1.5,-0.79687 -3.398438,-1.71093 -1.195312,-0.5625 -2.601562,-1.35938 -1.40625,-0.82031 -2.671875,-1.99219 Q 31,123.83203 30.179687,122.16797 q -0.796875,-1.6875 -0.796875,-4.03125 0,-3.07032 1.40625,-5.25 1.40625,-2.17969 4.007813,-3.32813 2.625,-1.17187 6.1875,-1.17187 2.671875,0 5.085937,0.63281 2.4375,0.60937 5.085938,1.78125 l -2.34375,5.64844 q -2.367188,-0.96094 -4.242188,-1.47657 -1.875,-0.53906 -3.820312,-0.53906 -1.359375,0 -2.320313,0.44531 -0.960937,0.42188 -1.453125,1.21875 -0.492187,0.77344 -0.492187,1.80469 0,1.21875 0.703125,2.0625 0.726562,0.82031 2.15625,1.59375 1.453125,0.77344 3.609375,1.80469 2.625,1.24219 4.476562,2.60156 1.875,1.33594 2.882813,3.16406 1.007812,1.80469 1.007812,4.5 z" />
|
|
54
37
|
</g>
|
|
55
|
-
|
|
56
|
-
<!-- O -->
|
|
57
38
|
<g transform="rotate(0, 126, 40)">
|
|
58
|
-
<path
|
|
39
|
+
<path d="m 98,86 h 56 c 6.648,0 12,5.352 12,12 v 56 c 0,6.648 -5.352,12 -12,12 H 98 c -6.648,0 -12,-5.352 -12,-12 V 98 c 0,-6.648 5.352,-12 12,-12 z" fill="#efe3ae" />
|
|
59
40
|
<path d="m 142.3125,125.98828 q 0,3.96094 -0.98438,7.21875 -0.98437,3.23437 -3,5.57812 -1.99218,2.34375 -5.0625,3.60938 -3.07031,1.24219 -7.26562,1.24219 -4.19531,0 -7.26562,-1.24219 -3.07032,-1.26563 -5.08594,-3.60938 -1.99219,-2.34375 -2.97656,-5.60156 -0.98438,-3.25781 -0.98438,-7.24219 0,-5.32031 1.73438,-9.25781 1.75781,-3.96094 5.39062,-6.14062 3.63281,-2.17969 9.23438,-2.17969 5.57812,0 9.16406,2.17969 3.60937,2.17968 5.34375,6.14062 1.75781,3.96094 1.75781,9.30469 z m -25.00781,0 q 0,3.58594 0.89062,6.1875 0.91407,2.57812 2.83594,3.98437 1.92188,1.38282 4.96875,1.38282 3.09375,0 5.01562,-1.38282 1.92188,-1.40625 2.78907,-3.98437 0.89062,-2.60156 0.89062,-6.1875 0,-5.39063 -2.01562,-8.48438 -2.01563,-3.09375 -6.63281,-3.09375 -3.07032,0 -5.01563,1.40625 -1.92187,1.38282 -2.83594,3.98438 -0.89062,2.57812 -0.89062,6.1875 z" />
|
|
60
41
|
</g>
|
|
61
|
-
|
|
62
|
-
<!-- L -->
|
|
63
42
|
<g transform="rotate(0, 212, 40)">
|
|
64
|
-
<path
|
|
43
|
+
<path d="m 184,86 h 56 c 6.648,0 12,5.352 12,12 v 56 c 0,6.648 -5.352,12 -12,12 h -56 c -6.648,0 -12,-5.352 -12,-12 V 98 c 0,-6.648 5.352,-12 12,-12 z" fill="#efe3ae" />
|
|
65
44
|
<path d="m 202.75391,143.13281 v -34.26563 h 7.26562 v 28.26563 h 13.89844 v 6 z" />
|
|
66
45
|
</g>
|
|
67
|
-
|
|
68
|
-
<!-- V -->
|
|
69
46
|
<g transform="rotate(0, 298, 40)">
|
|
70
|
-
<path
|
|
47
|
+
<path d="m 270,86 h 56 c 6.648,0 12,5.352 12,12 v 56 c 0,6.648 -5.352,12 -12,12 h -56 c -6.648,0 -12,-5.352 -12,-12 V 98 c 0,-6.648 5.352,-12 12,-12 z" fill="#f7c2aa" />
|
|
71
48
|
<path d="m 313.59766,108.86718 -11.64844,34.26563 h -7.92188 l -11.625,-34.26563 h 7.33594 l 6.44531,20.39063 q 0.16407,0.51562 0.53907,1.94531 0.375,1.40625 0.75,3 0.39843,1.57031 0.53906,2.60156 0.14062,-1.03125 0.49219,-2.60156 0.375,-1.57031 0.72656,-2.97656 0.375,-1.42969 0.53906,-1.96875 l 6.49219,-20.39063 z" />
|
|
72
49
|
</g>
|
|
73
|
-
|
|
74
|
-
<!-- E -->
|
|
75
50
|
<g transform="rotate(0, 384, 40)">
|
|
76
|
-
<path
|
|
51
|
+
<path d="m 356,86 h 56 c 6.648,0 12,5.352 12,12 v 56 c 0,6.648 -5.352,12 -12,12 h -56 c -6.648,0 -12,-5.352 -12,-12 V 98 c 0,-6.648 5.352,-12 12,-12 z" fill="#efe3ae" />
|
|
77
52
|
<path d="m 394.60547,143.13281 h -19.73438 v -34.26563 h 19.73438 v 5.95313 h -12.46875 v 7.52344 h 11.60156 v 5.95312 h -11.60156 v 8.83594 h 12.46875 z" />
|
|
78
53
|
</g>
|
|
79
|
-
|
|
80
|
-
<!-- R -->
|
|
81
54
|
<g transform="rotate(0, 470, 40)">
|
|
82
|
-
<path
|
|
55
|
+
<path d="m 442,86 h 56 c 6.648,0 12,5.352 12,12 v 56 c 0,6.648 -5.352,12 -12,12 h -56 c -6.648,0 -12,-5.352 -12,-12 V 98 c 0,-6.648 5.352,-12 12,-12 z" fill="#efe3ae" />
|
|
83
56
|
<path d="m 468.45312,108.86718 q 4.66407,0 7.6875,1.125 3.04688,1.125 4.52344,3.39844 1.47656,2.27344 1.47656,5.74219 0,2.34375 -0.89062,4.10156 -0.89063,1.75781 -2.34375,2.97656 -1.45313,1.21875 -3.14063,1.99219 l 10.07813,14.92969 h -8.0625 l -8.17969,-13.14844 h -3.86719 v 13.14844 h -7.26562 v -34.26563 z m -0.51562,5.95313 h -2.20313 v 9.25781 h 2.34375 q 3.60938,0 5.15625,-1.19531 1.57032,-1.21875 1.57032,-3.5625 0,-2.4375 -1.6875,-3.46875 -1.66407,-1.03125 -5.17969,-1.03125 z" />
|
|
84
57
|
</g>
|
|
85
|
-
|
|
86
|
-
<!-- 2 -->
|
|
87
58
|
<g transform="rotate(0, 642, 40)">
|
|
88
|
-
<path
|
|
59
|
+
<path d="m 614,86 h 56 c 6.648,0 12,5.352 12,12 v 56 c 0,6.648 -5.352,12 -12,12 h -56 c -6.648,0 -12,-5.352 -12,-12 V 98 c 0,-6.648 5.352,-12 12,-12 z" fill="#bae3ba" />
|
|
89
60
|
<path d="m 654.15234,143.3789 h -23.95312 v -5.03906 l 8.60156,-8.69531 q 2.60156,-2.67188 4.17188,-4.45313 1.59375,-1.80468 2.29687,-3.28125 0.72656,-1.47656 0.72656,-3.16406 0,-2.03906 -1.14843,-3.04687 -1.125,-1.03125 -3.02344,-1.03125 -1.99219,0 -3.86719,0.91406 -1.875,0.91406 -3.91406,2.60156 l -3.9375,-4.66406 q 1.47656,-1.26563 3.11719,-2.39063 1.66406,-1.125 3.84375,-1.80468 2.20312,-0.70313 5.27343,-0.70313 3.375,0 5.78907,1.21875 2.4375,1.21875 3.75,3.32813 1.3125,2.08593 1.3125,4.73437 0,2.83594 -1.125,5.17969 -1.125,2.34375 -3.28125,4.64062 -2.13282,2.29688 -5.15625,5.08594 l -4.40625,4.14844 v 0.32812 h 14.92968 z" />
|
|
90
61
|
</g>
|
|
91
62
|
</svg>
|
package/public/og.png
CHANGED
|
Binary file
|
|
@@ -33,3 +33,36 @@
|
|
|
33
33
|
user-select: none;
|
|
34
34
|
animation: var(--transition--duration) var(--transition--easing) hide;
|
|
35
35
|
}
|
|
36
|
+
|
|
37
|
+
.iconContainer {
|
|
38
|
+
position: absolute;
|
|
39
|
+
display: flex;
|
|
40
|
+
align-items: center;
|
|
41
|
+
justify-content: center;
|
|
42
|
+
pointer-events: none;
|
|
43
|
+
user-select: none;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.iconBackground,
|
|
47
|
+
.icon {
|
|
48
|
+
position: absolute;
|
|
49
|
+
top: calc((100% - var(--size)) / 2);
|
|
50
|
+
right: calc((100% - var(--size)) / 2);
|
|
51
|
+
bottom: calc((100% - var(--size)) / 2);
|
|
52
|
+
left: calc((100% - var(--size)) / 2);
|
|
53
|
+
width: var(--size);
|
|
54
|
+
height: var(--size);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.iconBackground {
|
|
58
|
+
--size: 80%;
|
|
59
|
+
|
|
60
|
+
border-radius: var(--border--radius);
|
|
61
|
+
background-color: var(--color--foreground--secondary);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.icon {
|
|
65
|
+
--size: 40%;
|
|
66
|
+
|
|
67
|
+
color: var(--color--white);
|
|
68
|
+
}
|
|
@@ -12,6 +12,7 @@ import { TRANSITION } from 'parameters';
|
|
|
12
12
|
import {
|
|
13
13
|
boardSlice,
|
|
14
14
|
cellFilterSlice,
|
|
15
|
+
selectFilteredCells,
|
|
15
16
|
selectInputMode,
|
|
16
17
|
selectLocale,
|
|
17
18
|
selectRowsWithCandidate,
|
|
@@ -33,6 +34,7 @@ const Board: FunctionComponent<Props> = ({ className }) => {
|
|
|
33
34
|
const locale = useTypedSelector(selectLocale);
|
|
34
35
|
const rows = useTypedSelector(selectRowsWithCandidate);
|
|
35
36
|
const inputMode = useTypedSelector(selectInputMode);
|
|
37
|
+
const filteredCells = useTypedSelector(selectFilteredCells);
|
|
36
38
|
const { cellSize } = useAppLayout();
|
|
37
39
|
const [
|
|
38
40
|
{ activeIndex, direction, inputRefs },
|
|
@@ -147,6 +149,7 @@ const Board: FunctionComponent<Props> = ({ className }) => {
|
|
|
147
149
|
<BoardPure
|
|
148
150
|
className={className}
|
|
149
151
|
cellSize={cellSize}
|
|
152
|
+
filteredCells={filteredCells}
|
|
150
153
|
inputRefs={inputRefs}
|
|
151
154
|
ref={ref}
|
|
152
155
|
rows={rows}
|
|
@@ -12,12 +12,17 @@ import {
|
|
|
12
12
|
RefObject,
|
|
13
13
|
} from 'react';
|
|
14
14
|
|
|
15
|
+
import { FlagFill } from 'icons';
|
|
16
|
+
import { BORDER_WIDTH } from 'parameters';
|
|
17
|
+
import { Point } from 'types';
|
|
18
|
+
|
|
15
19
|
import styles from './Board.module.scss';
|
|
16
20
|
import { Cell } from './components';
|
|
17
21
|
|
|
18
22
|
interface Props {
|
|
19
23
|
className?: string;
|
|
20
24
|
cellSize: number;
|
|
25
|
+
filteredCells: Point[];
|
|
21
26
|
inputRefs: RefObject<HTMLInputElement>[][];
|
|
22
27
|
rows: CellModel[][];
|
|
23
28
|
style?: CSSProperties;
|
|
@@ -29,7 +34,10 @@ interface Props {
|
|
|
29
34
|
}
|
|
30
35
|
|
|
31
36
|
const BoardPure = forwardRef<HTMLDivElement, Props>(
|
|
32
|
-
(
|
|
37
|
+
(
|
|
38
|
+
{ className, cellSize, filteredCells, inputRefs, rows, style, onBlur, onChange, onFocus, onKeyDown, onPaste },
|
|
39
|
+
ref,
|
|
40
|
+
) => (
|
|
33
41
|
<div
|
|
34
42
|
className={classNames(styles.board, className)}
|
|
35
43
|
ref={ref}
|
|
@@ -57,6 +65,22 @@ const BoardPure = forwardRef<HTMLDivElement, Props>(
|
|
|
57
65
|
))}
|
|
58
66
|
</Fragment>
|
|
59
67
|
))}
|
|
68
|
+
|
|
69
|
+
{filteredCells.map(({ x, y }) => (
|
|
70
|
+
<div
|
|
71
|
+
className={styles.iconContainer}
|
|
72
|
+
key={[x, y].join('-')}
|
|
73
|
+
style={{
|
|
74
|
+
height: cellSize,
|
|
75
|
+
width: cellSize,
|
|
76
|
+
left: x * (cellSize + BORDER_WIDTH),
|
|
77
|
+
top: y * (cellSize + BORDER_WIDTH),
|
|
78
|
+
}}
|
|
79
|
+
>
|
|
80
|
+
<div className={styles.iconBackground} />
|
|
81
|
+
<FlagFill className={styles.icon} />
|
|
82
|
+
</div>
|
|
83
|
+
))}
|
|
60
84
|
</div>
|
|
61
85
|
),
|
|
62
86
|
);
|
|
@@ -9,7 +9,7 @@ import { useAppLayout, useMediaQueries } from 'hooks';
|
|
|
9
9
|
import { FlagFill, Star } from 'icons';
|
|
10
10
|
import { dataUrlToBlob, getTileSizes } from 'lib';
|
|
11
11
|
import { BORDER_COLOR_LIGHT, BORDER_RADIUS, BORDER_WIDTH, COLOR_BONUS_START, COLOR_FILTERED } from 'parameters';
|
|
12
|
-
import {
|
|
12
|
+
import { selectConfig, store, useTypedSelector } from 'state';
|
|
13
13
|
import { Point } from 'types';
|
|
14
14
|
|
|
15
15
|
import { getBonusColor } from '../lib';
|
|
@@ -29,7 +29,6 @@ const useBackgroundImage = () => {
|
|
|
29
29
|
const borderRadius = isLessThanXs ? BORDER_RADIUS_XS : BORDER_RADIUS;
|
|
30
30
|
const config = useTypedSelector(selectConfig);
|
|
31
31
|
const center = { x: Math.floor(config.boardWidth / 2), y: Math.floor(config.boardHeight / 2) };
|
|
32
|
-
const cellFilter = useTypedSelector(selectCellFilter);
|
|
33
32
|
const viewBoxHeight = boardSize;
|
|
34
33
|
const viewBoxWidth = boardSize;
|
|
35
34
|
const bonusSize = cellSize * 0.8;
|
|
@@ -154,10 +153,6 @@ const useBackgroundImage = () => {
|
|
|
154
153
|
x={getX(center) + iconOffset}
|
|
155
154
|
y={getY(center) + iconOffset}
|
|
156
155
|
/>
|
|
157
|
-
|
|
158
|
-
{cellFilter.map((cell, index) => (
|
|
159
|
-
<use key={index} href={`#${CELL_FILTER}`} x={getX(cell)} y={getY(cell)} />
|
|
160
|
-
))}
|
|
161
156
|
</svg>
|
|
162
157
|
</Provider>,
|
|
163
158
|
);
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* This component is unused, but it serves as a blueprint for the Logo.svg.
|
|
3
|
-
* Logo.svg is what this component generates with all
|
|
4
|
-
*
|
|
3
|
+
* Logo.svg is what this component generates with all text nodes:
|
|
4
|
+
* - using font-family: Open Sans
|
|
5
|
+
* - transformed into paths (manually with Inkscape)
|
|
6
|
+
* - arranged (centered vertically against respective rows)
|
|
5
7
|
*/
|
|
6
8
|
import { CSSProperties, FunctionComponent } from 'react';
|
|
7
9
|
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { FunctionComponent, memo } from 'react';
|
|
2
2
|
|
|
3
3
|
import { Modal } from 'components';
|
|
4
|
+
import { useIsTouchDevice } from 'hooks';
|
|
4
5
|
import { useTranslate } from 'state';
|
|
5
6
|
|
|
6
7
|
import { AutoGroupTilesSetting, ConfigSetting, InputModeSetting, LocaleSetting } from './components';
|
|
@@ -13,6 +14,7 @@ interface Props {
|
|
|
13
14
|
|
|
14
15
|
const SettingsModal: FunctionComponent<Props> = ({ className, isOpen, onClose }) => {
|
|
15
16
|
const translate = useTranslate();
|
|
17
|
+
const isTouchDevice = useIsTouchDevice();
|
|
16
18
|
|
|
17
19
|
return (
|
|
18
20
|
<Modal className={className} isOpen={isOpen} title={translate('settings')} onClose={onClose}>
|
|
@@ -24,9 +26,11 @@ const SettingsModal: FunctionComponent<Props> = ({ className, isOpen, onClose })
|
|
|
24
26
|
<LocaleSetting disabled={!isOpen} />
|
|
25
27
|
</Modal.Section>
|
|
26
28
|
|
|
27
|
-
|
|
28
|
-
<
|
|
29
|
-
|
|
29
|
+
{!isTouchDevice && (
|
|
30
|
+
<Modal.Section title={translate('settings.inputMode')}>
|
|
31
|
+
<InputModeSetting disabled={!isOpen} />
|
|
32
|
+
</Modal.Section>
|
|
33
|
+
)}
|
|
30
34
|
|
|
31
35
|
<Modal.Section title={translate('settings.autoGroupTiles')}>
|
|
32
36
|
<AutoGroupTilesSetting disabled={!isOpen} />
|
package/src/pages/_document.tsx
CHANGED
|
@@ -6,7 +6,6 @@ class MyDocument extends Document {
|
|
|
6
6
|
return (
|
|
7
7
|
<Html lang="en">
|
|
8
8
|
<Head>
|
|
9
|
-
<link crossOrigin="anonymous" href="https://fonts.gstatic.com" rel="preconnect" />
|
|
10
9
|
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="icons/apple-touch-icon-57x57.png" />
|
|
11
10
|
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="icons/apple-touch-icon-114x114.png" />
|
|
12
11
|
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="icons/apple-touch-icon-72x72.png" />
|
|
@@ -20,6 +19,7 @@ class MyDocument extends Document {
|
|
|
20
19
|
<link rel="icon" type="image/png" href="icons/favicon-32x32.png" sizes="32x32" />
|
|
21
20
|
<link rel="icon" type="image/png" href="icons/favicon-16x16.png" sizes="16x16" />
|
|
22
21
|
<link rel="icon" type="image/png" href="icons/favicon-128.png" sizes="128x128" />
|
|
22
|
+
<link rel="icon" href="icons/favicon.svg" />
|
|
23
23
|
<meta name="application-name" content="Scrabble Solver" />
|
|
24
24
|
<meta name="msapplication-TileColor" content="#EFE3AE" />
|
|
25
25
|
<meta name="msapplication-TileImage" content="icons/mstile-144x144.png" />
|
package/src/state/selectors.ts
CHANGED
|
@@ -71,9 +71,9 @@ export const selectConfigId = createSelector([selectSettingsRoot], (settings) =>
|
|
|
71
71
|
|
|
72
72
|
export const selectConfig = createSelector([selectConfigId, selectLocale], getLocaleConfig);
|
|
73
73
|
|
|
74
|
-
export const
|
|
74
|
+
export const selectFilteredCells = selectCellFilterRoot;
|
|
75
75
|
|
|
76
|
-
export const selectCellIsFiltered = createSelector([
|
|
76
|
+
export const selectCellIsFiltered = createSelector([selectFilteredCells, selectPoint], (cellFilter, { x, y }) => {
|
|
77
77
|
return cellFilter.some((cell) => cell.x === x && cell.y === y);
|
|
78
78
|
});
|
|
79
79
|
|
|
@@ -94,7 +94,7 @@ export const selectResultsSort = createSelector([selectResultsRoot], (results) =
|
|
|
94
94
|
export const selectSortedResults = createSelector([selectResultsRaw, selectResultsSort, selectLocale], sortResults);
|
|
95
95
|
|
|
96
96
|
export const selectGroupedResults = createSelector(
|
|
97
|
-
[selectSortedResults, selectResultsQuery,
|
|
97
|
+
[selectSortedResults, selectResultsQuery, selectFilteredCells],
|
|
98
98
|
groupResults,
|
|
99
99
|
);
|
|
100
100
|
|
|
@@ -103,8 +103,8 @@ export const selectResults = createSelector([selectGroupedResults], (groupedResu
|
|
|
103
103
|
});
|
|
104
104
|
|
|
105
105
|
export const selectIsResultMatching = createSelector(
|
|
106
|
-
[selectResults, selectResultsQuery,
|
|
107
|
-
(results, query,
|
|
106
|
+
[selectResults, selectResultsQuery, selectFilteredCells, selectResultIndex],
|
|
107
|
+
(results, query, filteredCells, index) => {
|
|
108
108
|
if (!results) {
|
|
109
109
|
return false;
|
|
110
110
|
}
|
|
@@ -116,8 +116,8 @@ export const selectIsResultMatching = createSelector(
|
|
|
116
116
|
return false;
|
|
117
117
|
}
|
|
118
118
|
|
|
119
|
-
if (
|
|
120
|
-
return
|
|
119
|
+
if (filteredCells) {
|
|
120
|
+
return filteredCells.every(({ x, y }) => result.cells.some((cell) => cell.x === x && cell.y === y));
|
|
121
121
|
}
|
|
122
122
|
|
|
123
123
|
return true;
|