Skip to content

Commit c268d0c

Browse files
authored
Merge branch 'master' into community_teams_updates
2 parents 45ef773 + e528fc6 commit c268d0c

File tree

1 file changed

+47
-0
lines changed
  • content/blog/entries/improving-cc-license-chooser-outcomes

1 file changed

+47
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
title: Improving CC License Chooser: Outcomes
2+
---
3+
author: obulat
4+
---
5+
categories:
6+
7+
outreachy
8+
cc-chooser
9+
---
10+
series: outreachy-dec-2019-chooser
11+
---
12+
pub_date: 2020-05-21
13+
---
14+
body:
15+
During the three months of my Outreachy internship, I worked on improving the new version of the chooser to make it ready for production. You can view the result at [chooser-beta.creativecommons.org](https://chooser-beta.creativecommons.org/). (Don't forget to leave your feedback!). We've gone through iterations of design, implementation and user experience testing.
16+
17+
### Technical details
18+
19+
I implemented a couple of versions of design in line with the insights we've got from UX testing. Francisco Vera created the final design, and I *converted the Figma design into a VueJS app*.
20+
21+
I created custom components for the stepper, and used [Buefy](https://buefy.org/) components for more common elements, and [Fortawesome](https://fortawesome.com/) library for icons. The downsize of this convenience was a huge bundle size. I performed analysis with `webpack-bundle-analyzer` and after several rounds of tree shaking, managed to **reduce the size of the bundle almost by half**.
22+
23+
The license chooser has to keep data about the license properties that the user selects and display any changes on screen. Previously, all data for selected license was passed to components using props. So, when a user added, say, a 'NonCommercial' clause to their license, or typed in the link to which the work should be attributed, the data was passed through props to the components that displayed the result. This created chains of props passing that were brittle. To make the process more robust, I **added Vuex store** to keep the data that is necessary for more than one component.
24+
25+
To make chooser accessible for all of our wide multilingual community, I **integrated the vue-i18n plugin**, and made all of the text translatable. Together with Kriti, we added **Transifex integration** so that the text translation can be crowdsourced.
26+
27+
I've also updated the code from using Vue webpack templates to **Vue CLI**, and added **Github hooks** to test the code before merging any new pull requests. **Google analytics integration** will help us continue improving the chooser.
28+
29+
After all of this work, I was really excited to be the person to deploy the new chooser to github pages. And redeploy it many more times after that :)
30+
31+
### Working remotely
32+
33+
It has been a great experience to work remotely, before the time of global coronavirus lockdowns when everyone has started to work from home.
34+
35+
What helped me during this time is the weekly meetings we had with other members of CC team. This made me feel a part of the team, plan and implement the work I needed to do, and stay on track.
36+
37+
Working remotely also let me have a flexible work schedule. While ensuring that I work at least 40 hours per week (the Outreachy internship requirement), I sometimes worked on weekends or early in the morning, when it was more convenient for me.
38+
39+
### Working together
40+
41+
It's been a pleasure to work with Creative Commons team. My mentors, [Kriti](https://creativecommons.org/author/kriticreativecommons-org/) and [Ari](https://opensource.creativecommons.org/blog/authors/akmadian/), together with [Anna](https://creativecommons.org/author/annacreativecommons-org/), Francisco Vera and [Breno](https://creativecommons.org/author/brenoferreira/), were there for me all through the internship, help me feel a part of CC team.
42+
43+
But the CC community is much wider than that! I've been amazed at the enthusiasm of the users who helped us with the UX testing, and at the speed with which they jumped on the task of translating the website as soon as we published the text on Transifex.
44+
45+
### What's next?
46+
47+
My internship ended more than two months ago, but I continue to be a part of CC open source team. I also hope this experience will help me go on to a career as a developer.

0 commit comments

Comments
 (0)