1. Profile Information
Name: Devyansh Chawla
IRC nickname on Freenode: dev_monk31
Email: [email protected]
Timezone: IST (Indian Standard Time) (UTC + 05.30)
Location (country or state): Haryana, India
Typical working hours (include your timezone): 18:00 IST to 01:00 IST (5 - 5.5 hours on weekdays), 10:00 IST to 22:00 IST (10 - 10.5 hours on Saturdays and Sundays)
2. Synopsis
User scripts are the JavaScript programs that provide Wikipedia users the ability to customize and change the behavior of their user account. It enables a user account to do various things that it otherwise couldn’t. Numerous user scripts and gadgets (promoted user scripts) are available for users to install quickly. Users can also write their own user scripts by either starting from scratch or forking an existing user script.
Even though MediaWiki has excellent documentation on user scripts, it’s quite overwhelming. Owing to the powerful functionalities that user scripts provide, one should be able to get started with them easily and be able to leverage these powers quickly. Guided Adventure Tours is one such medium that can enable amateur developers and users with a little bit of JavaScript knowledge to learn about them in an interactive, stimulating, and appealing way.
This project is about creating a UserScript/Gadget guided tour to facilitate users to learn about user scripts and how they are created using fundamental constructs such as MediaWiki JS Module (ResourceLoader and its core modules), MediaWiki Action API, and OOUI (used to create interfaces with object-oriented paradigm), in a consistent manner. The Guided Adventure Tour will be carried out in 4 missions:
- Mission 1: Basic Introduction to writing and installing user scripts
- Mission 2: Using MediaWiki JS module for writing user scripts
- Mission 3: Using MediaWiki API for writing user scripts
- Mission 4: Using OOUI for writing user scripts
Possible Mentors
- Jay Prakash - @Jayprakash12345
- Krishna Chaitanya Velaga - @KCVelaga
- Enterprisey - @APerson
Have you contacted your mentors already? Yes
3. Project Details
This proposal aims at developing a Guided Adventure Tour to smoothen the learning process of user scripts. The following list defines the proposed workflow of all the Missions that will be the basis for work in the project.
NOTE: In the context of the tour, the workflow refers to the sequence of steps in individual mission tours.
- Mission 1:
- Tell what user scripts and gadgets are.
- Make users familiar with the significance of common.js file and skin.js file and navigate to "Special:MyPage/common.js" file.
- Edit the common.js file.
- Import an already existing user script from Wikipedia:User_scripts/List.
- Preview the changes.
- Save the changes.
- Instruct them to write another user script in User namespace (I’ll code a sample user script during the coding period which will include only basic JS/jQuery constructs).
- Navigate to "Special:MyPage/skinname.js" file.
- Import the user script written in step 7 in skin.js and follow step 5 and step 6.
- End Mission 1.
(The first microtask I’ve done below guides the users to edit their Special:MyPage/common.js page in order to write user scripts.)
- Mission 2:
- Tell about ResourceLoader and its importance while coding Gadgets.
- Make users familiar with core JS modules i.e. jquery and mediawiki by navigating to ResourceLoader/Core_modules.
- Show users a well presented table containing the config values and methods that ship with mw.config.
- Instruct them to write another user script in User namespace (I’ll code a sample user script during the coding period which will include the use of mw global object).
- Navigate to Special:MyPage/common.js file.
- Import the user script written in step 4 in common.js, preview changes and save.
- End Mission 2.
- Mission 3:
- Tell about the MediaWiki Action API.
- Make them explore the demo apps on Toolforge to get a glimpse of a wide range of API use cases.
- Brief about the API endpoints, parameters, query strings etc. in a well presented manner.
- Navigate to API Sandbox and tell them about its relevant functionalities to send API requests to Wikimedia servers.
- Similar to the idea of the third microtask I’ve done below, give users the choice of selecting the type of request they want to send (like showing recently added articles, showing Wikipedia articles near to the user's location etc.).
- Instruct them to write another user script in User namespace (I’ll code a sample user script during the coding period which will include the use of API).
- Navigate to Special:MyPage/common.js file.
- Import the user script written in step 6 in common.js, preview changes and save.
- End Mission 3.
- Mission 4:
- Tell about OOUI and how useful and flexible it is while dealing with DOM elements and data flows separately.
- Navigate to OOUI Demos so that users can get intuition of OOUI widgets and widget customizations.
- Show the various modules required as dependencies for interacting with OOUI features in a well presented manner.
- Instruct them to write another user script in User namespace (I’ll code a sample user script during the coding period which will include the use of OOUI).
- Navigate to Special:MyPage/common.js file.
- Import the user script written in step 4 in common.js, preview changes and save.
- Optional: Show them how they can promote their user scripts to Gadgets.
- End Mission 4.
4. Deliverables
- Design the story or theme of the user script adventure tour similar to the story of The Wikipedia Adventure.
- Incorporate the theme in all the missions and write the sample user scripts relevant to each mission.
- MISSION 1: BASIC INTRO- In this mission, the users will gain practical knowledge of what User Scripts and Gadgets are and how the existing user scripts are imported/loaded in the user account. They will be made to implement a basic yet interesting use case of user scripts and import it in their common.js or skin.js file.
- MISSION 2: USING MEDIAWIKI JS MODULE- In this mission, the users will gain practical knowledge of ResourceLoader, why they are bound to interact with ResourceLoader as a Gadget coder, and the most useful core modules available. With the concepts learned in MIssion 1 and Mission 2, they will be made to write a user script using core modules, especially the MediaWiki (mw) module.
- MISSION 3: USING MEDIAWIKI API- In this mission, the users will gain practical knowledge of MediaWiki API, how to test and send requests to API in the API Sandbox. They will be made to write a user script that does something interesting using the API.
- MISSION 4: USING OOUI- In the final mission, the users will gain practical knowledge of OOUI and will be made to write a user script using OOUI in the context of our game design.
The wireframe of the landing interface of the Guided Adventure Tour I’m thinking of is shown below:
- Perform unit testing using QUnit for the JavaScript code and always run the tests before committing the changes to GitHub.
- Code optimization.
- Write the documentation of the UserScript/Gadget Guided Adventure Tour on MediaWiki.
- Provide continued support and maintain the project after the Program ends.
5. Timeline
Community Bonding Period: (May 17 - June 7)
Task |
---|
(1) Know about Wikimedia's community, discuss the deadlines and milestones with mentors. (2) Study ResourceLoader, APIs, and OOUI in detail, understand the intricacies involved in Guided Tours, analyze The Wikipedia Adventure Tour and think about ways of integrating all missions. (3) Research the game designs or themes. Set up the testing environment for QUnit. |
Coding period:
Period | Task |
---|---|
June 8 - June 13 | Design and code the landing interface of the Userscript/Gadget Tour. |
June 14 - June 19 | Plan the workflow of the first mission, write introductory user script samples, and code Mission 1. |
June 20 - June 24 | Unit test Mission 1, bug fixes, write its narrative/story on MediaWiki. Write the bi-weekly report. [1] |
June 25 - June 30 | Plan the workflow of the second mission, write user script samples that use the MediaWiki JS module, and code Mission 2 in a manner consistent with Mission 1. |
July 1 - July 5 | Unit test Mission 2, bug fixes, write its narrative/story on MediaWiki. Write the bi-weekly report. [1] |
July 6 - July 11 | Plan the workflow of the third mission, write user script samples that use the MediaWiki API, and code Mission 3 in a manner consistent with previous Missions. |
July 12 - July 16 | Evaluations: Prepare for the evaluations and overcome the delays in the plan executed so far, if any. |
July 17 - July 22 | Unit test Mission 3, bug fixes, write its narrative/story on MediaWiki. Write the bi-weekly report. [1] |
July 23 - July 29 | Plan the workflow of the fourth mission, write user script samples that use OOUI, and code Mission 4 in a manner consistent with previous Missions. |
July 30 - August 4 | Unit test Mission 4, bug fixes, write its narrative/story on MediaWiki. Write the bi-weekly report. [1] |
August 5 - August 11 | Write the project’s documentation on MediaWiki with the guidance of mentors, and overall testing of the project. |
August 12 - August 16 | [2] |
August 16 - August 23 | Code Submission and Final Evaluations: Submit the code and project summaries. Fix unforeseen bugs and work on community feedback. |
August 24 - August 30 | Share my experience and learnings gained from the project on Medium and update the MediaWiki user page to accommodate the same. |
[1] Since I'd try to get my code reviewed for each Mission regularly, I hope to execute the tasks of these weeks soon. This can give me room for unplanned changes. As such, the period [2] can be used as a buffer for unexpected spillages and delays. If everything goes as per the plan, I’ll utilize the period [2] to improve the overall Adventure tour and optimize the codebase.
6. Participation
- I’ll be creating a repository on GitHub with a master and a development branch. The code will be pushed to the development branch periodically and merged with the master branch after reviewing and testing. The bugs and subtasks will be managed on Phabricator.
- I’ll be using the MediaWiki-Docker environment for the development and testing of the Userscript/Gadget guided adventure tour.
- I’ll write bi-weekly reports, predominantly in the User namespace, and update them on my MediaWiki user page. To make general project-related work and information more accessible, I will occasionally write Medium articles.
- I’ll consult with my mentors via Freenode(matrix.org), in the Phabricator task, and/or in Zulip as per the requirements, in case I’ve queries regarding the implementation/workflow/architecture of guided tours, extensions, etc. I’ll be active on the #mediawiki IRC channel to ask general doubts related to MediaWiki.
- I’m reachable from 10:00 IST to 01:00 IST and can be pinged or DMed during working hours via any of the above platforms including email
7. About Me
Your education (completed or in progress):
I’m a sophomore at National Institute of Technology Kurukshetra, Haryana, India pursuing Bachelor of Technology in Information Technology. I've completed my secondary education from R.S. Public Sr. Sec. School, Karnal, Haryana, India.
How did you hear about this program?
I heard about Google Summer of Code in my freshman year during a workshop that was being organized in our Institute. The students talked about their experiences of applying to the program, getting selected, and contributing to an open-source organization for the use and benefit of all. The very idea of working on a real-world project in a sought-after organization and at the same time getting the opportunity to learn and grow as a developer fascinated me.
Will you have any other time commitments, such as school work, another job, planned vacation, etc, during the duration of the program?
My end-semester exams would be conducted between May 12 and May 24. Since the first week of the Community Bonding Period lies in this period, I’ll plan my schedule accordingly to keep up with the events such as getting familiar with the community, discussing strategies with my mentors to consolidate the timeline and milestones of the project.
But I’ll focus on GSoC for more than the typical working hours mentioned above from June 7 to July 26. From July 26 onwards (that’s when my third year of college commences), I’ll continue as per the specified typical working hours. Rest assured, I'll be in touch with my mentors and inform them of my progress regularly.
We advise all candidates eligible for Google Summer of Code and Outreachy to apply for both programs. Are you planning to apply to both programs and, if so, with what organization(s)?
I am applying only for Google Summer of Code.
How much time would you be able to commit to the Program?
During the Coding Period (July 7 - August 16), I'd be able to commit 30-35 hours per week.
What does making this project happen mean to you?
The vision of the Wikimedia Foundation to empower everybody with the sum of available knowledge, that fully represents human diversity, urges me to contribute to this organization. I’m inspired by the contributions of the volunteers who help sustain the goal of providing free knowledge to all. By working on this project, I’d like to reinforce its mission and be an aid to streamline the learning process of user scripts, which are one of the core elements in Wikimedia projects.
Another reason that inspires me to take up this project is its ability to help users with little or no user JavaScript background to customize their user account in less time, and read the user script documentation only when required. This will surely improve the User Experience and usability of MediaWiki.
Implementing this project would help me apply my skills practically and get to learn new things by interacting with some of the best developers around.
8. Past Experience
- I’ve worked on various JavaScript projects which have helped me gain proficiency and intuition in the internal structure and details of how things work together in JavaScript and frameworks. I undertook the role of frontend developer as a freelancer where I revamped the entire user interface of the website ReadingRoots (Visit ReadingRoots) - a platform to manage and share books. I gained good exposure to UI/UX and user-driven outcomes.
- I contributed to the UI and website navigation of a COVID-19 Dashboard. This helped me become familiar with core JavaScript concepts and React.js (GitHub | Visit website).
- In e-Yantra Robotics Competition 2021 (eYRC), our team designed a Ball Balancing Platform along with an Inspector Bot simulation to ascertain its quality. My contribution to all tasks of the competition was quite significant. At every stage, our team was in the Top 30 teams out of the 600+ teams that participated from all over India. This massive project-based learning event not only taught me how to manage time effectively but also techniques to collaborate remotely and get work done.
- I was a part of a team that developed a prototype of the Traffic Management and Accident Detection system using OpenCV as part of the Technical Fest of my Institute where we finished in second place (GitHub).
- Our University team (named Kurukshetra Warlords) has been recently selected as regional finalists from the region - Central Asia + Southern Asia, of OpenCV AI Competition 2021 (OpenCV AI Competition), sponsored by Microsoft Azure and Intel, in which we are implementing our proposed idea using OpenCV AI Kit with Depth (OAK-D). We are in the top 250 teams that have been selected out of 1400+ teams that applied from all over the world.
- I contributed to the Alumni website of GAWDS (Graphics and Web Development Squad, NIT Kurukshetra) which updates the DOM using API whenever a user (in this case, GAWDS alumnus) fills his/her respective entry using google form.
- I am proficient in C/C++, Python, HTML, CSS, Bootstrap, JavaScript, jQuery, React.js, and Node.js, Git, Linux, and basic PHP (which I've taught myself during the period between Mentor Orgs announcement and Student Application Period, for gaining a sort of intuition in MediaWiki installation).
9. Microtasks Carried Out
- MICROTASK 1: Create a mini-tour using any two steps
- This mini-tour guides the user to edit their Special:MyPage/common.js page in order to write user scripts.
- Link: User:Novusistic/createUserScript.js
- MICROTASK 2: Create a basic user script that uses OOUI in JavaScript
- This user script enables users to play a “Guess the random number” game using OOUI Popup widget as a custom widget.
- Link: User:Novusistic/customWidgetInOOUI.js
- MICROTASK 3: Create a basic JavaScript program that makes an interesting query using the MediaWiki API
- This user script enables the user to interact with the MediaWiki API using the interface created with Custom Widget in OOUI. It creates the following API queries using separate buttons: (i) Shows the recently added Wikipedia articles in a specified category (category specified in the input field) and (ii) Shows the Wikipedia articles near the specified location.
- Link: User:Novusistic/API-Demo-using-OOUI.js
- NOTE: I have also created the following webpage which contains the details for executing the code and the corresponding output of the microtasks.
- Link: Wikimedia Microtasks