Difference between revisions of "User:OverPowered/GSoC2021 Progress Report"

From Apertium
Jump to navigation Jump to search
m
 
(5 intermediate revisions by the same user not shown)
Line 19: Line 19:
 
* Design tests, experiments and evaluation procedures for an extension (which sites it should be able to read, etc.)
 
* Design tests, experiments and evaluation procedures for an extension (which sites it should be able to read, etc.)
 
* <del>Write a workflow diagram of the improved extension, what background processes it will have and what permissions it will need</del>
 
* <del>Write a workflow diagram of the improved extension, what background processes it will have and what permissions it will need</del>
 
   
 
=== Progress ===
 
=== Progress ===
Line 30: Line 29:
   
 
The permissions I would need for the extension are not too many. Storage will be required only for storing existing language pairs and the default target language, so the limit of 5mb will be more than enough. The only permissions I feel are needed are `tabs`, `contextmenus` if I add any anything to the right-click menu and `clipboardWrite` to allow copying data with a button.
 
The permissions I would need for the extension are not too many. Storage will be required only for storing existing language pairs and the default target language, so the limit of 5mb will be more than enough. The only permissions I feel are needed are `tabs`, `contextmenus` if I add any anything to the right-click menu and `clipboardWrite` to allow copying data with a button.
 
   
 
=== Layout ===
 
=== Layout ===
Line 39: Line 37:
   
 
Also while easy to change later, I'll be going for the second layout as a single input bar would make copy/paste operations harder.
 
Also while easy to change later, I'll be going for the second layout as a single input bar would make copy/paste operations harder.
  +
   
 
== Week 1 (June 7 - June 14) ==
 
== Week 1 (June 7 - June 14) ==
Line 49: Line 48:
 
* <del>Detect the word it hovers on (on websites like wikipedia, news websites, etc.)</del>
 
* <del>Detect the word it hovers on (on websites like wikipedia, news websites, etc.)</del>
 
* <del>Shows a basic popup when clicked on</del>
 
* <del>Shows a basic popup when clicked on</del>
 
   
 
=== Progress ===
 
=== Progress ===
   
Most basic pop-up functionalities are complete, to the point of marking some goals off of next week's checklist. There's also the matter of the word hover-on gist, which I've covered a bit in the next part. Also, the mockups for the pop-up from last week are complete, with both the front part and the settings. Word Hover has been implemented as of 13/7. Right now it is only capable of highlighting all the words nested inside a &lsaquo;p&rsaquo; tag.
+
Most basic pop-up functionalities are complete, to the point of marking some goals off of next week's checklist. There's also the matter of the word hover-on gist, which I've covered a bit in the next part. Also, the mockups for the pop-up from last week are complete, with both the front part and the settings. Word Hover has been implemented as of 13/7. Right now it is only capable of highlighting all the words nested inside a &lg;p&gt; tag.
 
   
 
=== Detecting a Hovered Word ===
 
=== Detecting a Hovered Word ===
Line 73: Line 70:
 
* <del>Apart from that, actually hook up the extension to use the API functionalities to translate in the pop-up</del>
 
* <del>Apart from that, actually hook up the extension to use the API functionalities to translate in the pop-up</del>
 
* <del>Properly set up the html pop-up of the extension</del>
 
* <del>Properly set up the html pop-up of the extension</del>
* Validate input given to pop-up
+
* <del>Validate input given to pop-up</del>
* Enable different options for translation
+
* <del>Enable different options for translation</del>
 
   
 
=== Progress ===
 
=== Progress ===
   
 
Most of these were actually done inadvertently during the Community Bonding Period so I'll focus on getting tests up and running once all of these are done.
 
Most of these were actually done inadvertently during the Community Bonding Period so I'll focus on getting tests up and running once all of these are done.
  +
  +
  +
== Week 3 (June 21 - June 28) ==
  +
  +
=== Checklist ===
  +
* <del>Start work on hover functionality</del>
  +
* <del>Design the hovering text-box and the details that will be shown on it</del>
  +
* <del>Implement translation features for hover function too</del>
  +
  +
=== Progress ===
  +
  +
Finally the main part of the project! The basic translation functions and all have been set up, I just have to show it in the form of a tool-tip or a hovering box. Work on this has been completed fairly early in the week.
  +
  +
=== Hover-On Translation ===
  +
  +
For the hover-in translation, displaying the hover-box itself is implemented entirely without javascript by wrapping every word up in a <hover> tag with two data attributes to represent information in it and its position. All the html within a <nowiki><p></nowiki> tag is replaced using the regex pattern:
  +
  +
<code>/(?![^<]*?>)([A-z0-9']+)/g</code>
  +
  +
Referred to [https://stackoverflow.com/a/25836471/14131011 this stackoverflow answer] for designing the tooltips
  +
  +
  +
== Week 4 (June 28 - July 5) ==
  +
  +
=== Checklist ===
  +
* <del>Start work on the translate entire document feature</del>
  +
* <del>Experiment using the /translateDoc functionality for the .html page</del>
  +
* <del>If this doesn't work, translate the document section by section</del>
  +
  +
=== Progress ===
  +
  +
So far so good, document translation gave a few problems, mainly finding and separating all the elements that needed translation. Ultimately it is being done section by section, just by passing it as a document.
  +
  +
  +
== Week 5 (July 5 - July 12) ==
  +
  +
=== Checklist ===
  +
* <del>While it was made in chromium, this week is for making sure there's no problems implemented whatever's done so far on other browsers (in order: Chrome, FireFox, Edge)</del>
  +
* <del>Final Touch Ups on the current functionalities of the extension</del>
  +
* <del>Start working on documentation</del>
  +
  +
=== Progress ===
  +
  +
Document translation took more time than I thought. Finally finished this week with help from [https://gist.github.com/TinoDidriksen/c41c33ca5809ff297bf7b1608b3a41e2 this gist]. I've been debugging this thing the entire time so in hindsight this point really doesn't make sense. It's a similar case with documentation. Might start setting up tests this week too.
  +
  +
  +
== Week 6 (July 16 - July 23) ==
  +
  +
=== Checklist ===
  +
* <del>Start work on inline-gist translation i.e. the context-based hover translation</del>
  +
* <del>Experiment using the wordbound blanks made in last year's GSoC</del>
  +
  +
=== Progress ===
  +
  +
Delaying the contextual translation for a bit to finish the tests.
  +
  +
=== Testing ===
  +
  +
Tests are implemented using [https://pptr.dev/ Puppeteer] and [https://mochajs.org/ Mocha]. Puppeteer is used in headful mode to run extensions, and Mocha is the main testing library to assert and test. Installation Instructions and all are there on [https://github.com/apertium/apertium-webext/tree/main/tests the Github Repo].
  +
  +
  +
== Week 7 (July 23 - July 30) ==
  +
  +
=== Checklist ===
  +
* <del>Continue working on the previous week's start</del>
  +
* <del>If it has been implemented in one direction, then work on getting it working in the reverse too</del>
  +
  +
=== Progress ===
  +
  +
Kinda late but it'll align with the checklist next week. Started (and finished) Contextual Translation this week.
  +
  +
=== Contextual Translation ===
  +
  +
The existing hover-tags (now <code><nowiki><span></nowiki></code>'s instead of <code><hover></code>) work very well with context translation. They're inline tags so they stick to their word in the pipeline and can retain the original meaning through a data-original attribute. After that, it's just a bit of parsing and replacement to get contextual translation
  +
  +
  +
== Week 8 (July 30 - August 6) ==
  +
  +
=== Checklist ===
  +
* <del>During this week, the tests prepared in the Community Bonding Period will be used to test all the functionalities implemented so far.</del>
  +
* <del>If needed, changes will be made but the project should be up and running at this point.</del>
  +
* <del>Apart from that, write documentation for the extension</del>
  +
  +
=== Progress ===
  +
  +
Tests have been up for a while now so there's that. The extension has also been complete for the most part, with all requirements on the [https://github.com/apertium/apertium-webext/issues/1 GSoC checklist] marked as done. Unless this counts, I'll make the page for [[Apertium Webext]] and the GSoC writeup gist soon.
  +
  +
  +
== Week 9 (August 6 - August 13) ==
  +
  +
=== Checklist ===
  +
* <del>Minor bugfixes</del>
  +
* <del>UI redesign(???)</del>
  +
* <del>Small optimisations in code</del>
  +
  +
=== Progress ===
  +
  +
...I'm not sure what I was thinking when I put this stuff in the original proposal. Anyways, most of it was done during the original design, code optimisations are possible but the way it is right now is great too. Finally, I'm done with most writeups and all too.
  +
  +
  +
== Week 10 (August 13 - August 16) ==
  +
  +
=== Checklist (Or lack of one) ===
  +
<del>Intentionally kept free, so as to sort out any issues that crop up before this and cause any unforeseen delay</del>
  +
  +
Only thing left is finishing the Wiki page and checking for browser compatibility with Firefox Android. With the exception of these, I'm fairly happy with the progress of this project

Latest revision as of 08:02, 14 August 2021

Google Summer of Code 2021 Progress Report- A Reworked Apertium Browser Plugin



Community Bonding Period (May 17 - June 7)[edit]

Checklist[edit]

Extension Mockup 1
Extension Mockup 2
Extension Mockup 3
  • Understand better how the Apertium API works
  • Identify parts of the Geriaoueg extension that still work
  • Check Source Code of similar extensions
  • Design tests, experiments and evaluation procedures for an extension (which sites it should be able to read, etc.)
  • Write a workflow diagram of the improved extension, what background processes it will have and what permissions it will need

Progress[edit]

I've gone through the Apertium Apy code and built it from source. The parts that I need are outlined in the initial proposal and I don't feel I need to add anything more. As for the Geriaoueg extension, given how outdated it is, it's better to build a new one from scratch with web-ext than to use parts of it.

As for other extensions, I've been looking at OnHover Translate for inspiration regarding layout and background processes. I also believe it's best not to copy the exact method they've used there and opt for a normal popup.html instead of a element created with JavaScript on the page itself, if only to keep it simpler.

As for the sites it should be able to read, a good start would be wiki's, news sites and more popular social media websites like Reddit, Facebook, etc. It should also be able to operate on the Google Search page. I'm still learning about implementing unit, integration and system tests for a web extension. And it seems to be more complex than I previously thought, so it might take me a bit more time.

The permissions I would need for the extension are not too many. Storage will be required only for storing existing language pairs and the default target language, so the limit of 5mb will be more than enough. The only permissions I feel are needed are `tabs`, `contextmenus` if I add any anything to the right-click menu and `clipboardWrite` to allow copying data with a button.

Layout[edit]

The Layout is mostly inspired by the layout of the actual Apertium website. I created three mockups of the extension, with the first one being completely identical to the website. The second one is a bit more compact, with the input and output text areas positioned vertically. As for the third mockup, it is the one most geared to be an extension, with a single text bar used for both input and output.

As for the checkbox at the bottom, initially I felt it best to include a 'Disable on this Website' check to disable the hover-in functionalities of the extension. But owing to concerns about increased traffic for the API, it seems a better idea to set the option to 'Enable on this Website'.

Also while easy to change later, I'll be going for the second layout as a single input bar would make copy/paste operations harder.


Week 1 (June 7 - June 14)[edit]

Checklist[edit]

Pop-Up Main
Pop-Up Settings

Set up a basic extension on chromium that can:

  • Detect the word it hovers on (on websites like wikipedia, news websites, etc.)
  • Shows a basic popup when clicked on

Progress[edit]

Most basic pop-up functionalities are complete, to the point of marking some goals off of next week's checklist. There's also the matter of the word hover-on gist, which I've covered a bit in the next part. Also, the mockups for the pop-up from last week are complete, with both the front part and the settings. Word Hover has been implemented as of 13/7. Right now it is only capable of highlighting all the words nested inside a &lg;p> tag.

Detecting a Hovered Word[edit]

I've been looking into the word-hover function and I had two leads -

One, wrap every single word in a or better yet, a custom element like say <hover> or something (Because messing with 's might absolutely destroy some webpages) which shows a hovered translation. An example of that would be this site. It's machine translation for native Chinese webnovels but the webpage source is much more interesting. And most of this is also tied in to the html of the page, which seems much better than the JavaScript hell that is the next option.

The Second option is to get the position of the cursor from the browser (major browser-compatibility issues right there) and then traverse the entire DOM-tree looking for the exact leaf-node the cursor is on. Example for this one is in section 2 of this StackOverflow Answer. And sidenote, this is an old answer but it covers the method pretty well.

For now I'm implementing the custom tag method and figuring out a more elegant way to accomplish the second one.


Week 2 (June 14 - June 21)[edit]

Checklist[edit]

  • If needed, this is the time to tweak Apy functionalities slightly but should not be necessary
  • Apart from that, actually hook up the extension to use the API functionalities to translate in the pop-up
  • Properly set up the html pop-up of the extension
  • Validate input given to pop-up
  • Enable different options for translation

Progress[edit]

Most of these were actually done inadvertently during the Community Bonding Period so I'll focus on getting tests up and running once all of these are done.


Week 3 (June 21 - June 28)[edit]

Checklist[edit]

  • Start work on hover functionality
  • Design the hovering text-box and the details that will be shown on it
  • Implement translation features for hover function too

Progress[edit]

Finally the main part of the project! The basic translation functions and all have been set up, I just have to show it in the form of a tool-tip or a hovering box. Work on this has been completed fairly early in the week.

Hover-On Translation[edit]

For the hover-in translation, displaying the hover-box itself is implemented entirely without javascript by wrapping every word up in a <hover> tag with two data attributes to represent information in it and its position. All the html within a <p> tag is replaced using the regex pattern:

/(?![^<]*?>)([A-z0-9']+)/g

Referred to this stackoverflow answer for designing the tooltips


Week 4 (June 28 - July 5)[edit]

Checklist[edit]

  • Start work on the translate entire document feature
  • Experiment using the /translateDoc functionality for the .html page
  • If this doesn't work, translate the document section by section

Progress[edit]

So far so good, document translation gave a few problems, mainly finding and separating all the elements that needed translation. Ultimately it is being done section by section, just by passing it as a document.


Week 5 (July 5 - July 12)[edit]

Checklist[edit]

  • While it was made in chromium, this week is for making sure there's no problems implemented whatever's done so far on other browsers (in order: Chrome, FireFox, Edge)
  • Final Touch Ups on the current functionalities of the extension
  • Start working on documentation

Progress[edit]

Document translation took more time than I thought. Finally finished this week with help from this gist. I've been debugging this thing the entire time so in hindsight this point really doesn't make sense. It's a similar case with documentation. Might start setting up tests this week too.


Week 6 (July 16 - July 23)[edit]

Checklist[edit]

  • Start work on inline-gist translation i.e. the context-based hover translation
  • Experiment using the wordbound blanks made in last year's GSoC

Progress[edit]

Delaying the contextual translation for a bit to finish the tests.

Testing[edit]

Tests are implemented using Puppeteer and Mocha. Puppeteer is used in headful mode to run extensions, and Mocha is the main testing library to assert and test. Installation Instructions and all are there on the Github Repo.


Week 7 (July 23 - July 30)[edit]

Checklist[edit]

  • Continue working on the previous week's start
  • If it has been implemented in one direction, then work on getting it working in the reverse too

Progress[edit]

Kinda late but it'll align with the checklist next week. Started (and finished) Contextual Translation this week.

Contextual Translation[edit]

The existing hover-tags (now <span>'s instead of <hover>) work very well with context translation. They're inline tags so they stick to their word in the pipeline and can retain the original meaning through a data-original attribute. After that, it's just a bit of parsing and replacement to get contextual translation


Week 8 (July 30 - August 6)[edit]

Checklist[edit]

  • During this week, the tests prepared in the Community Bonding Period will be used to test all the functionalities implemented so far.
  • If needed, changes will be made but the project should be up and running at this point.
  • Apart from that, write documentation for the extension

Progress[edit]

Tests have been up for a while now so there's that. The extension has also been complete for the most part, with all requirements on the GSoC checklist marked as done. Unless this counts, I'll make the page for Apertium Webext and the GSoC writeup gist soon.


Week 9 (August 6 - August 13)[edit]

Checklist[edit]

  • Minor bugfixes
  • UI redesign(???)
  • Small optimisations in code

Progress[edit]

...I'm not sure what I was thinking when I put this stuff in the original proposal. Anyways, most of it was done during the original design, code optimisations are possible but the way it is right now is great too. Finally, I'm done with most writeups and all too.


Week 10 (August 13 - August 16)[edit]

Checklist (Or lack of one)[edit]

Intentionally kept free, so as to sort out any issues that crop up before this and cause any unforeseen delay

Only thing left is finishing the Wiki page and checking for browser compatibility with Firefox Android. With the exception of these, I'm fairly happy with the progress of this project