├── .gitignore ├── README.md ├── app ├── .vscode │ └── extensions.json ├── README.md ├── dist │ ├── assets │ │ └── mq-299159d0.png │ ├── favicon.ico │ └── index.html ├── index.html ├── package-lock.json ├── package.json ├── public │ └── favicon.ico ├── src │ ├── App.vue │ ├── answers.json │ ├── assets │ │ ├── base.css │ │ ├── logo.svg │ │ ├── main.css │ │ └── mq.png │ ├── components │ │ ├── HelloWorld.vue │ │ ├── TheWelcome.vue │ │ ├── WelcomeItem.vue │ │ └── icons │ │ │ ├── IconCommunity.vue │ │ │ ├── IconDocumentation.vue │ │ │ ├── IconEcosystem.vue │ │ │ ├── IconSupport.vue │ │ │ └── IconTooling.vue │ ├── main.js │ ├── questions.json │ ├── router │ │ └── index.js │ └── stores │ │ └── counter.js └── vite.config.js └── questions.txt /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | /app/logs 3 | /app/*.log 4 | /app/npm-debug.log* 5 | /app/yarn-debug.log* 6 | /app/yarn-error.log* 7 | /app/pnpm-debug.log* 8 | /app/lerna-debug.log* 9 | 10 | /app/node_modules 11 | /app/.DS_Store 12 | /app/dist 13 | /app/dist-ssr 14 | /app/coverage 15 | /app/*.local 16 | 17 | /cypress/videos/ 18 | /cypress/screenshots/ 19 | 20 | # Editor directories and files 21 | /app/.vscode/* 22 | !.vscode/extensions.json 23 | /app/.idea 24 | /app/*.suo 25 | /app/*.ntvs* 26 | /app/*.njsproj 27 | /app/*.sln 28 | /app/*.sw? 29 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # Monotropism Questionnaire 3 | 4 | **BEFORE YOU BEGIN!!! I am not a doctor**. I am a bored webdev who thinks self diagnosing is valid. This is not diagnosing anything, compare your scores to the results of the data from the initial validation study and continue to research. Thank you for the team involved in this study for putting together the questionnaire, and all those who have made suggestions and helped make this app better. 5 | 6 | Questions taken directly from: [https://osf.io/4wru2](https://osf.io/4wru2) and [scored based on their findings](https://osf.io/g4kc9). 7 | Original License info: This questionnaire is published under a Creative Commons license, CC-BY-NC-SA. Full text for this license can be found on the Creative Commons website [here](https://creativecommons.org/licenses/by-nc-sa/2.0/). 8 | 9 | Original Credit: [_Garau, V., Woods, R., Chown, N., Hallett, S., Murray, F.,Wood, R.,Murray, A.& Fletcher-Watson, S. (2023). The Monotropism Questionnaire, Open Science Framework._](https://doi.org/10.17605/OSF.IO/WPX5G) This is a pre-print, meaning it is currently awaiting peer review. 10 | 11 | I **do not own** the questions, or content in the questions; I do not store or collect this information please see the source code if you are concerned it is [open source](https://github.com/DLCIncluded/MQ). **All processing is done in YOUR browser in memory, no data will ever be sent to me, or anyone else.** If you have any questions, comments, or suggestions please go to the github repo [here](https://github.com/DLCIncluded/MQ) and submit an issue, and I will be glad to assist! 12 | 13 | All this site is for is to make taking the questionnaire easier, and I was bored, and too lazy to tally up the score myself... and yes I know that making this site was far more work than just doing a bit of adding... 14 | Take it [here](https://dlcincluded.github.io/MQ/) 15 | -------------------------------------------------------------------------------- /app/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] 3 | } 4 | -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- 1 | # MQ 2 | 3 | This template should help get you started developing with Vue 3 in Vite. 4 | 5 | ## Recommended IDE Setup 6 | 7 | [VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). 8 | 9 | ## Customize configuration 10 | 11 | See [Vite Configuration Reference](https://vitejs.dev/config/). 12 | 13 | ## Project Setup 14 | 15 | ```sh 16 | npm install 17 | ``` 18 | 19 | ### Compile and Hot-Reload for Development 20 | 21 | ```sh 22 | npm run dev 23 | ``` 24 | 25 | ### Compile and Minify for Production 26 | 27 | ```sh 28 | npm run build 29 | ``` 30 | deploy to gh-pages: 31 | ```sh 32 | git add app/dist -f 33 | ``` 34 | 35 | ```sh 36 | git commit -m [your commit message here] 37 | ``` 38 | 39 | ```sh 40 | git subtree push --prefix app/dist origin gh-pages 41 | ``` 42 | 43 | -------------------------------------------------------------------------------- /app/dist/assets/mq-299159d0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLCIncluded/MQ/6336a4031a6fdc41368e5dd55556f041e4034d49/app/dist/assets/mq-299159d0.png -------------------------------------------------------------------------------- /app/dist/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLCIncluded/MQ/6336a4031a6fdc41368e5dd55556f041e4034d49/app/dist/favicon.ico -------------------------------------------------------------------------------- /app/dist/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |BEFORE YOU BEGIN!!! I am not a doctor. I am a bored webdev who thinks self-diagnosing is valid. This is not diagnosing anything; compare your scores to the results of the data from the initial validation study and continue to research. Thank you for the team involved in this study for putting together the questionnaire, and all those who have made suggestions and helped make this app better.
370 | 371 |
372 | Questions taken directly from: https://osf.io/4wru2 and scored based on their findings.
373 | Original License info: This questionnaire is published under a Creative Commons license, CC-BY-NC-SA. Full text for this license can be found on the Creative Commons website here.
374 |
376 | Original Credit: Garau, V., Woods, R., Chown, N., Hallett, S., Murray, F.,Wood, R.,Murray, A.& Fletcher-Watson, S. (2023). The Monotropism Questionnaire, Open Science Framework. This is a pre-print, meaning it is currently awaiting peer review. 377 |
378 | 379 |380 | I do not own the questions, or content in the questions; I do not store or collect this information; please see the source code if you are concerned, it is open source. All processing is done in your browser, in memory. No data will ever be sent to me, or anyone else. 381 | If you have any questions, comments, or suggestions please go to the github repo here and submit an issue, and I will be glad to assist! 382 |
383 |384 | All this site is for is to make taking the questionnaire easier, and I was bored, and too lazy to tally up the score myself... and yes I know that making this site was far more work than just doing a bit of adding... 385 |
386 | 387 |
388 | If you have trouble finishing in one sitting, and would like to save your progress, please check this box.
389 | NOTE: If you check this box, you are agreeing that it is okay to store your progress in your browser (think cookies), this will only store in your browser's memory until you clear local storage, the site still will not collect, or store your data any where else.
390 |
391 |
392 |
393 |
394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 |
Saved at: {{savedAt}}
402 | 403 | 404 | 405 | 406 | 407 |408 | Keyboard Navigation Info 409 |
As a reminder this is an assessment for Monotropism, a trait sometimes associated with Autism, not Autism directly. If you score high, please be sure to do further research into Monotropism, more information can be found: https://monotropism.org/
479 |Monotropism Score: {{score}} / 235
481 |Your Average: {{avg}}
482 |485 | I'm Monotropic, Now What? 486 |
487 |For visual reference based on the original study, the arrow points to where you would fall on their chart:
491 | 496 | 497 |I know this is may be difficult to see on mobile, but please remember this is just a rough placement of your score anyways, only the X axis is showing data, so it is a visual representation of where on the 1-5 scale you fall just for a visual.
501 | 502 | 503 | 509 | 510 |README.md.
40 |