From 527d6d7a3f1d7babef1c42715555ac87c52a9fa3 Mon Sep 17 00:00:00 2001 From: MSilva95 Date: Wed, 8 Jan 2020 18:22:46 +0000 Subject: [PATCH 1/4] subject and questions for groupie-trackers-searchbar --- .../groupie-trackers-search-bar.audit.en.md | 44 +++++++++++++++++++ .../groupie-trackers-search-bar.en.md | 30 +++++++++++++ 2 files changed, 74 insertions(+) create mode 100644 subjects/groupie-trackers/groupie-trackers-search-bar.audit.en.md create mode 100644 subjects/groupie-trackers/groupie-trackers-search-bar.en.md diff --git a/subjects/groupie-trackers/groupie-trackers-search-bar.audit.en.md b/subjects/groupie-trackers/groupie-trackers-search-bar.audit.en.md new file mode 100644 index 00000000..ad03b9d0 --- /dev/null +++ b/subjects/groupie-trackers/groupie-trackers-search-bar.audit.en.md @@ -0,0 +1,44 @@ +#### Functional + +##### Try to search for the artist/band `"Scorpions"`. +###### Does it present as result "Scorpions"? + +##### Try to search for the member `"Jimi Hendrix"`. +###### Does it present as result "The Jimi Hendrix Experience"? + +##### Try to search for the member `"Phil Collins"`. +###### Does it present as result "Phil Collins" and "Genesis"? + +##### Try to search for the location `"london-uk"`. +###### Does it present as result "Pink Floyd", "Led Zeppelin", "Aerosmith", "Alec Benjamin", "Nickelback", "Eagles", "Linkin Park" and "Coldplay"? + +##### Try to search for the artist/band `"queen"`. +###### Does it handle the case sensitive and presents as result "Queen"? + +##### Try to search for the first album date `"05-08-1967"`. +###### Does it present as result "Pink Floyd"? + +##### Try to search for the creation date `"1973"`. +###### Does it present as result "ACDC"? + +##### Try to search for the creation date `"1965"`. +###### Does it present as result "Scorpions" and "Pink Floyd"? + +#### General + +###### +Does the search bar have typing suggestions as you write? +###### +Is there a search icon and button? +###### +Is the search bar or button Animated? +###### +Can you search for a specific first album date?***** + +#### Basic + +###### +Does the code obey the [good practices](https://github.com/01-edu/public/blob/master/subjects/good-practices.en.md)? +###### +Are the instructions in the website clear? +###### +Does the project run using an API? + +#### Social + +###### +Did you learn anything from this project? +###### +Can it be open-sourced / be used for other sources? +###### +Would you recommend/nominate this program as an example for the rest of the school? diff --git a/subjects/groupie-trackers/groupie-trackers-search-bar.en.md b/subjects/groupie-trackers/groupie-trackers-search-bar.en.md new file mode 100644 index 00000000..16296d84 --- /dev/null +++ b/subjects/groupie-trackers/groupie-trackers-search-bar.en.md @@ -0,0 +1,30 @@ +## groupie-trackers-search-bar + +### Objectives + +You must follow the same [principles](https://github.com/01-edu/public/blob/master/subjects/groupie-trackers/groupie-trackers.en.md) as the first subject. + +Groupie-trackers-search-bar consists of creating a functional program that searches, inside your website, for a specific input text. + +- The program should handle at least these search cases : + - artist/band name + - members + - locations + - first album date + - creation date +- The program must handle case sensitive. +- The search bar must have typing suggestions as you write. + - The search bar must identify and display in each suggestion the individual type of the search cases. (ex: Freddie Mercury -> member) + - Example if you start writing `"phil"` it should appear as suggestions `Phil Collins -> member` and `Phil Collins -> artist/band`. This is just an example of display. + +This project will help you learn about : + +- Manipulation, display and storage of data. +- HTML. +- [Events](https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Building_blocks/Events) creation and display. +- JSON files and format. + +### Instructions + +- The program must be written in **Go**. +- The code must respect the [**good practices**](https://github.com/01-edu/public/blob/master/subjects/good-practices.en.md). From 72ff1b73cb8b9fb393a1053f8a962c84053584d4 Mon Sep 17 00:00:00 2001 From: MSilva95 Date: Thu, 9 Jan 2020 10:55:54 +0000 Subject: [PATCH 2/4] updating questions and subject for groupie-trackers-search-bar --- .../groupie-trackers/groupie-trackers-search-bar.audit.en.md | 1 - subjects/groupie-trackers/groupie-trackers-search-bar.en.md | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/subjects/groupie-trackers/groupie-trackers-search-bar.audit.en.md b/subjects/groupie-trackers/groupie-trackers-search-bar.audit.en.md index ad03b9d0..4cbd1670 100644 --- a/subjects/groupie-trackers/groupie-trackers-search-bar.audit.en.md +++ b/subjects/groupie-trackers/groupie-trackers-search-bar.audit.en.md @@ -29,7 +29,6 @@ ###### +Does the search bar have typing suggestions as you write? ###### +Is there a search icon and button? ###### +Is the search bar or button Animated? -###### +Can you search for a specific first album date?***** #### Basic diff --git a/subjects/groupie-trackers/groupie-trackers-search-bar.en.md b/subjects/groupie-trackers/groupie-trackers-search-bar.en.md index 16296d84..9e013111 100644 --- a/subjects/groupie-trackers/groupie-trackers-search-bar.en.md +++ b/subjects/groupie-trackers/groupie-trackers-search-bar.en.md @@ -15,7 +15,7 @@ Groupie-trackers-search-bar consists of creating a functional program that searc - The program must handle case sensitive. - The search bar must have typing suggestions as you write. - The search bar must identify and display in each suggestion the individual type of the search cases. (ex: Freddie Mercury -> member) - - Example if you start writing `"phil"` it should appear as suggestions `Phil Collins -> member` and `Phil Collins -> artist/band`. This is just an example of display. + - Example if you start writing `"phil"` it should appear as suggestions `Phil Collins -> member` and `Phil Collins -> artist/band`. This is just an example of a display. This project will help you learn about : From e5a8d220388403eb5c2bfe3cdf87e4db2236c667 Mon Sep 17 00:00:00 2001 From: MSilva95 Date: Thu, 9 Jan 2020 10:59:11 +0000 Subject: [PATCH 3/4] updating questions for groupie-trackers-search-bar --- .../groupie-trackers-search-bar.audit.en.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/subjects/groupie-trackers/groupie-trackers-search-bar.audit.en.md b/subjects/groupie-trackers/groupie-trackers-search-bar.audit.en.md index 4cbd1670..eefc4295 100644 --- a/subjects/groupie-trackers/groupie-trackers-search-bar.audit.en.md +++ b/subjects/groupie-trackers/groupie-trackers-search-bar.audit.en.md @@ -1,5 +1,11 @@ #### Functional +##### Try to start typing in the search bar `"Billie Joe"`. +###### Does it present as suggestions the member "Billie Joe Armstrong"? + +##### Try to start typing in the search bar `"Japan"`. +###### Does it present as suggestions "saitama-japan", "osaka-japan" and "nagoya-japan"? + ##### Try to search for the artist/band `"Scorpions"`. ###### Does it present as result "Scorpions"? From 3cfdccd7cff9d9f527a5453037377db6b995478c Mon Sep 17 00:00:00 2001 From: lee Date: Fri, 10 Jan 2020 17:43:38 +0000 Subject: [PATCH 4/4] reviewing subject and questions --- .../groupie-trackers-search-bar.audit.en.md | 16 +++++----------- .../groupie-trackers-search-bar.en.md | 10 +++++----- 2 files changed, 10 insertions(+), 16 deletions(-) diff --git a/subjects/groupie-trackers/groupie-trackers-search-bar.audit.en.md b/subjects/groupie-trackers/groupie-trackers-search-bar.audit.en.md index eefc4295..1c5ecbc4 100644 --- a/subjects/groupie-trackers/groupie-trackers-search-bar.audit.en.md +++ b/subjects/groupie-trackers/groupie-trackers-search-bar.audit.en.md @@ -1,22 +1,22 @@ #### Functional -##### Try to start typing in the search bar `"Billie Joe"`. +##### Start typing in the search bar `"Billie Joe"`. ###### Does it present as suggestions the member "Billie Joe Armstrong"? -##### Try to start typing in the search bar `"Japan"`. -###### Does it present as suggestions "saitama-japan", "osaka-japan" and "nagoya-japan"? +##### Start typing in the search bar `"Japan"`. +###### Does it present as suggestions the locations "saitama-japan", "osaka-japan" and "nagoya-japan"? ##### Try to search for the artist/band `"Scorpions"`. ###### Does it present as result "Scorpions"? ##### Try to search for the member `"Jimi Hendrix"`. -###### Does it present as result "The Jimi Hendrix Experience"? +###### Does it present as result the artist/band "The Jimi Hendrix Experience"? ##### Try to search for the member `"Phil Collins"`. ###### Does it present as result "Phil Collins" and "Genesis"? ##### Try to search for the location `"london-uk"`. -###### Does it present as result "Pink Floyd", "Led Zeppelin", "Aerosmith", "Alec Benjamin", "Nickelback", "Eagles", "Linkin Park" and "Coldplay"? +###### Does it present as result "Pink Floyd", "Led Zeppelin", "Aerosmith", "Alec Benjamin", "Nickelback", "Eagles", "Linkin Park" and "Coldplay"? ##### Try to search for the artist/band `"queen"`. ###### Does it handle the case sensitive and presents as result "Queen"? @@ -30,12 +30,6 @@ ##### Try to search for the creation date `"1965"`. ###### Does it present as result "Scorpions" and "Pink Floyd"? -#### General - -###### +Does the search bar have typing suggestions as you write? -###### +Is there a search icon and button? -###### +Is the search bar or button Animated? - #### Basic ###### +Does the code obey the [good practices](https://github.com/01-edu/public/blob/master/subjects/good-practices.en.md)? diff --git a/subjects/groupie-trackers/groupie-trackers-search-bar.en.md b/subjects/groupie-trackers/groupie-trackers-search-bar.en.md index 9e013111..f08f9d52 100644 --- a/subjects/groupie-trackers/groupie-trackers-search-bar.en.md +++ b/subjects/groupie-trackers/groupie-trackers-search-bar.en.md @@ -15,14 +15,14 @@ Groupie-trackers-search-bar consists of creating a functional program that searc - The program must handle case sensitive. - The search bar must have typing suggestions as you write. - The search bar must identify and display in each suggestion the individual type of the search cases. (ex: Freddie Mercury -> member) - - Example if you start writing `"phil"` it should appear as suggestions `Phil Collins -> member` and `Phil Collins -> artist/band`. This is just an example of a display. + - Example if you start writing `"phil"` it should appear as suggestions `Phil Collins - member` and `Phil Collins - artist/band`. This is just an example of a display. This project will help you learn about : -- Manipulation, display and storage of data. -- HTML. -- [Events](https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Building_blocks/Events) creation and display. -- JSON files and format. + - Manipulation, display and storage of data. + - HTML. + - [Events](https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Building_blocks/) creation and display. + - JSON files and format. ### Instructions