This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /******/ (() => { // webpackBootstrap | |
| /******/ "use strict"; | |
| /******/ var __webpack_modules__ = ({ | |
| /***/ "./src/scripts.ts": | |
| /*!************************!*\ | |
| !*** ./src/scripts.ts ***! | |
| \************************/ | |
| /***/ (function(__unused_webpack_module, exports) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html ⚡4email> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <script async src="https://cdn.ampproject.org/v0.js"></script> | |
| <script | |
| async | |
| custom-element="amp-form" | |
| src="https://cdn.ampproject.org/v0/amp-form-0.1.js" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html ⚡4email> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <script async src="https://cdn.ampproject.org/v0.js"></script> | |
| <script | |
| async | |
| custom-element="amp-form" | |
| src="https://cdn.ampproject.org/v0/amp-form-0.1.js" | |
| ></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| const italkiReviews = new CommentsBox('italki-reviews'); | |
| italkiReviews.start(); | |
| </script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .review-list-box { | |
| font-family: -apple-system,BlinkMacSystemFont,Roboto,Helvetica Neue,Arial,sans-serif; | |
| border-radius: 8px; | |
| background-color: #fafafc; | |
| padding: 24px 16px 8px; | |
| margin-bottom: 16px; | |
| width: 330px; | |
| margin-right: 10px; | |
| margin-top: 20px; | |
| border: 1px solid #ddd; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //copy and paste the results generated by scraper.js to reviewsJson | |
| const reviewsJson = { | |
| "0": { | |
| "comment": "Muchos gracias Karen! I really enjoy the variety in each and every class. It really helps me stay focused and increases my learning abilities. It is always a pleasure and I look forward to many more classes :)", | |
| "bottomSectionHTML": "<section class=\"review-flex\"><div class=\"avatar avatar-small review-avatar avatar-placeholder\" url=\"T048579360\"><img src=\"https://imagesavatar-static01.italki.com/T048579360_Avatar.jpg\" alt=\"Avatar\"></div><section><div class=\"review-user-name\">Cassandra Larson</div><div class=\"review-user-courses\">16 <span>Lessons</span></div></section></section><section class=\"review-time\">Nov 4, 2019</section>" | |
| }, | |
| "1": { | |
| "comment": "\"Haz Lo Que Se Te De La Gana\" y \"se me antoja\" son dos expresiones que Karen me ensena hoy, segun ella, esos son muy populares y comúnmente utilizado en los países de habla hispana. Ella pasa 10-15 minutos en me preguntan |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //copy and paste the code below into the console of your browser when it is displaying your profile page on italki | |
| let results = {}; //this is where we will put all of the scraped data. | |
| //select all of the divs containing reviews | |
| let reviewBoxes = document.querySelector('.reviews-lists').children; | |
| //loop through all of the review divs | |
| for (let i = 0; i < reviewBoxes.length; i++){ | |
| let el = reviewBoxes[i]; | |
| let commentText, bottomSectionHTML; |