Image Gallery App
An image gallery is a set of images with corresponding remove buttons. This is the HTML code for a gallery with two images:
<div>
<div class="image">
<img src="https://bit.ly/3xXPxPR">
<button class="remove">X</button>
</div>
<div class="image">
<img src="https://bit.ly/4de3sQr">
<button class="remove">X</button>
</div>
</div>
Implement the ImageGallery component that accepts a links input and renders the gallery described above so that the first item in the links input is the src attribute of the first image in the gallery. It should also implement the following logic: When the button is clicked, the image that is in the same div as the button should be removed from the gallery.
For example, after the first image has been removed from the gallery above, it's HTML code should look like this:
<div>
<div class="image">
<img src="https://bit.ly/4de3sQr">
<button class="remove">X</button>
</div>
</div>
The code for running the example case locally is provided here.
To move focus out of the code editor press ESC and then TAB.
Tags
- AI-resistant
- Angular
- Components
- Directives
- Event Binding
- Event Handling
- One-Way Binding
Information
Score Distribution
Would you like to see our other questions?
We have 1000+ premium hand-crafted questions for 160+ job skills and 20+ coding languages. We prefer questions with small samples of actual work over academic problems or brain teasers.
Would you like to see our tests?
The following tests contain Angular related questions:
On the blog
Since we're all biased and we use incorrect proxies, why not just outsource hiring to experts or recruitment agencies? After all, they've been screening people for many years, so they must know how to do it right?
Not really. I was surprised to discover that many experts...