Skip to content

Commit

Permalink
add crafty topaz hangboard
Browse files Browse the repository at this point in the history
  • Loading branch information
Stevie-Ray committed Sep 6, 2023
1 parent 124b13c commit d5856fc
Show file tree
Hide file tree
Showing 7 changed files with 1,661 additions and 1,097 deletions.
2,664 changes: 1,605 additions & 1,059 deletions package-lock.json

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"@mdi/font": "7.2.96",
"@vueuse/head": "^1.3.1",
"core-js": "^3.32.1",
"firebase": "^9.23.0",
"firebase": "^10.3.1",
"ircra": "^2.2.4",
"js-video-url-parser": "^0.5.1",
"nosleep.js": "^0.12.0",
Expand All @@ -29,23 +29,23 @@
"sass-loader": "^13.3.2",
"vue": "^3.3.4",
"vue-gtag": "^2.0.1",
"vue-i18n": "^9.2.2",
"vue-i18n": "^9.3.0",
"vue-inline-svg": "^3.1.2",
"vue-router": "^4.2.4",
"vuedraggable": "^4.1.0",
"vuetify": "^3.3.15",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/eslint-parser": "^7.22.11",
"@babel/core": "^7.22.15",
"@babel/eslint-parser": "^7.22.15",
"@storybook/addon-actions": "^7.0.17",
"@storybook/addon-essentials": "^7.4.0",
"@storybook/addon-interactions": "^7.4.0",
"@storybook/addon-links": "^7.4.0",
"@storybook/builder-webpack5": "^7.4.0",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/testing-library": "0.1.0",
"@storybook/testing-library": "0.2.0",
"@storybook/vue3": "^7.4.0",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
Expand All @@ -54,12 +54,12 @@
"babel-eslint": "^10.1.0",
"eslint": "^8.48.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-prettier-vue": "^4.2.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-prettier-vue": "^5.0.0",
"eslint-plugin-vue": "^9.17.0",
"prettier": "^2.8.8",
"prettier": "^3.0.3",
"storybook-addon-sass-postcss": "^0.1.3",
"storybook-addon-vuetify3": "^2.0.5",
"storybook-dark-mode": "^3.0.1",
Expand Down
24 changes: 12 additions & 12 deletions src/assets/hangboards/CRAFTYRUBY.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 12 additions & 12 deletions src/assets/hangboards/CRAFTYSAPPHIRE.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions src/assets/hangboards/CRAFTYTOPAZ.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions src/components/atoms/ExerciseHangboard/ExerciseHangboard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ const hangboardImage = () => {
if (getHangboard.value?.sides?.length) {
if (props.exercise?.rotate) {
// eslint-disable-next-line global-require,import/no-dynamic-require
return require(`@/assets/${
getHangboard.value?.sides[props.exercise.rotate].image
}`)
return require(
`@/assets/${getHangboard.value?.sides[props.exercise.rotate].image}`
)
}
// eslint-disable-next-line global-require,import/no-dynamic-require
return require(`@/assets/${getHangboard.value?.sides[0].image}`)
Expand Down
4 changes: 2 additions & 2 deletions src/helpers/hangboards.js
Original file line number Diff line number Diff line change
Expand Up @@ -4249,15 +4249,15 @@ export default [
{
name: 'Topaz',
id: 2,
image: 'hangboards/NOTFOUND.svg',
image: 'hangboards/CRAFTYTOPAZ.svg',
size: {
x: 488,
y: 72,
z: 28
},
type: 'wood',
url: 'https://craftyclimbing.com/hangboard-topaz',
holds: 0
holds: 3
}
]
},
Expand Down

0 comments on commit d5856fc

Please sign in to comment.