id stringclasses 20
values | date timestamp[s]date 2025-05-12 00:00:00 2025-05-12 00:00:00 | level stringclasses 4
values | description stringlengths 28 5.03k | project stringclasses 50
values |
|---|---|---|---|---|
task-1 | 2025-05-12T00:00:00 | easy | add divs(class 'header', 'footer', 'content') with arbitrary text in '.root' element. '.root' occupies total viewport and children elements together occupy total '.root' space. header (border-box) is always fixed at the top of '.root'; footer (border-box) is always fixed at the bottom of '.root'; content (border-box) o... | unocss |
task-2 | 2025-05-12T00:00:00 | easy | add divs(class 'leftbar', 'rightbar') with arbitrary text in '.root' element. leftbar (border-box) is fixed at the left of '.root'; rightbar (border-box) is fixed at the right of '.root'; content occupies the remaining '.root' space. USE tailwind grid only. | unocss |
task-3 | 2025-05-12T00:00:00 | easy | clear header content. add menu(class 'menu') with 3 items(arbitrary text) at the right side of header. USE tailwind grid only too. | unocss |
task-4 | 2025-05-12T00:00:00 | easy | add logo(class 'logo') with arbitrary background color at the left side of header. USE tailwind grid only. | unocss |
task-5 | 2025-05-12T00:00:00 | easy | leftbar width is the smaller of 200px and 20vw. rightbar width is the bigger of 200px and 20vw. leftbar should disappear when page width is equal to or less than 799px. USE tailwind grid only. | unocss |
task-6 | 2025-05-12T00:00:00 | easy | when page width is equal to or less than 399px, menu items should have evenly spaced distribution in the whole header space and logo should disappear. USE tailwind grid only. | unocss |
task-7 | 2025-05-12T00:00:00 | easy | when page width is less than 400px, content and rightbar should occupy full page width and rightbar should be at the bottom of content. USE tailwind grid only. | unocss |
task-8 | 2025-05-12T00:00:00 | easy | when page width is less than 400px, each menu item should occupy full page width. USE tailwind grid only. | unocss |
task-9 | 2025-05-12T00:00:00 | challenging | separate leftbar whole space into 20 rows and 2 columns. fill each cell with text 'this is a very long text sample to test word wrap'. USE tailwind grid only. | unocss |
task-10 | 2025-05-12T00:00:00 | challenging | separate rightbar whole space into 10 rows and 2 columns; fill 40 items in the rightbar whole space. fill each item with text 'this-is-a-very-long-text-sample-to-test-overflow'. USE tailwind grid only. | unocss |
task-11 | 2025-05-12T00:00:00 | challenging | when page width is less than 400px, display the first 3 rows in rightbar. | unocss |
task-12 | 2025-05-12T00:00:00 | challenging | show 12 cards (class 'card') in content with 3 per row, 100px minimum height each and vertical scrolling enabled. | unocss |
task-13 | 2025-05-12T00:00:00 | challenging | when page width is less than 1000px, display 2 cards per row in content. | unocss |
task-14 | 2025-05-12T00:00:00 | challenging | when page width is less than 600px, display 1 card per row in content. | unocss |
task-15 | 2025-05-12T00:00:00 | challenging | each card has a image(class 'card-image'), title and price; title's minimum height is 1.5rem and no wrap, text is 'Long Product Title That Goes Here'; price's minimum height is 1rem; image uses the remaining space. USE tailwind grid only. | unocss |
task-16 | 2025-05-12T00:00:00 | challenging | only change card css property to reverse the order of the last 2 cards. | unocss |
task-17 | 2025-05-12T00:00:00 | challenging | add a logo(class 'footer-logo') and info (class 'footer-info') in the footer. footer-info should never wrap and should show ellipsis when space is insufficient. | unocss |
task-18 | 2025-05-12T00:00:00 | challenging | add left-drag and right-drag with absolute positions at the left and right sides of the content; left-drag and right-drag are not visible by default and become visible when mouse hovers over content. | unocss |
task-19 | 2025-05-12T00:00:00 | challenging | gen js, drag right-drag and left-drag to adjust content width. | unocss |
task-20 | 2025-05-12T00:00:00 | challenging | when page width is less than 400px, move right-drag to the bottom of content and drag right-drag to adjust content height. | unocss |
task-1 | 2025-05-12T00:00:00 | easy | Setup project with vite. Here are the requirements:
- Add dev and build to npm scripts.
- Set dev server port to environment variable `process.env.PROJECT_PORT`.
- Generate sourceMap after bundling.
- Set output directory to `dist`.
- Update public path to "./". After bundling, the `src` attribute of <script /> should ... | vite |
task-2 | 2025-05-12T00:00:00 | easy | Add path alias `@` for `src`.
Besides this:
Add `import alias from '@/alias'` in `src/index.js`.
Display `alias` value in `src/index.js`.
| vite |
task-3 | 2025-05-12T00:00:00 | easy | Setup global constants replacement for __VERSION__.
__VERSION__ should be replaced with "v1.0.0" during bundling.
Besides this:
- Add `import './version'` in `src/index.js`.
| vite |
task-4 | 2025-05-12T00:00:00 | easy | I want to write a Single Page Applications, but when visiting the route path, dev server response with 404, help me make it fallback to `index.html`.
| vite |
task-5 | 2025-05-12T00:00:00 | easy | My targeting browsers support `?.` (Optional Chaining Operator), so I want to keep this syntax as is after bundling.
Try to address it.
| vite |
task-6 | 2025-05-12T00:00:00 | easy | I want to proxy every request prefixed with `/postman/` to `https://postman-echo.com` in dev server.
For example, request to `/postman/get` will be forwarded to `https://postman-echo.com/get`.
Try to address it.
| vite |
task-7 | 2025-05-12T00:00:00 | easy | Add `import bird from './images/bird.png'` in `src/index.js`.
Update `src/index.js` to display the png image in <img /> element with id `bird`.
Add `import svg from './images/TablerAntennaBars5.svg'` in `src/index.js`.
Update `src/index.js` to display the svg image in <img /> element with id `svg`.
Update bundler con... | vite |
task-8 | 2025-05-12T00:00:00 | moderate | Add `import './index.css'` in `src/index.js`.
Display text `hello css` in div with CSS class `.css` in `src/index.js`.
Add `import './index.less'` in `src/index.js`.
Display text `hello less` in div with CSS class `.less` in `src/index.js`.
Add `import lessStyles from './index.module.less'` in `src/index.js`.
Display... | vite |
task-9 | 2025-05-12T00:00:00 | moderate | Add `import ts from './index.ts'` in `src/index.js`.
Display `ts()` return value in `src/index.js`.
Also help me update other files in this project to ensure `dev` and `build` commands won't throw errors after doing that.
| vite |
task-10 | 2025-05-12T00:00:00 | moderate | Add `import VueComponent from './component.vue';` in `src/index.js`.
Mount VueComponent in `src/index.js`.
Add `import ReactComponent from './component.jsx'` in `src/index.js`.
Mount ReactComponent in `src/index.js`.
DO NOT use jsx syntax.
Also help me update other files in this project to ensure `dev` and `build` c... | vite |
task-11 | 2025-05-12T00:00:00 | challenging | I want to do something with sourcemap files in output directory.
## Requirements
- Move all sourcemap files into `<project_root>/sourcemaps` after build.
- Add `//# sourceMappingURL=https://internal.com/sourcemaps/<sourcemap_path>` at the end of original js file.
## Examples
Assume we have following files in dist dir... | vite |
task-12 | 2025-05-12T00:00:00 | challenging | Update the bundler configuration to remove all `console.log` call expression after running build command.
DONOT use terser or other compressor tool, implement it on your own locally.
| vite |
task-13 | 2025-05-12T00:00:00 | challenging | During bundling, extract all license information into `dist/vendor-licenses.txt` from all npm packages imported directly or transitively in source file.
| vite |
task-14 | 2025-05-12T00:00:00 | challenging | Implement dynamical generation of in-memory virtual modules as a vite plugin.
For example:
src/files/a.ts
```js
export default 'a'
```
src/files/b.ts
```js
export default 'b'
```
src/index.js
```js
import files from '~files'
files.a.default // should be 'a'
files.b.default // should be 'b'
```
You can hardcode `sr... | vite |
task-15 | 2025-05-12T00:00:00 | moderate | I have some mock data in `<project_root>/mock.json`, setup dev server to return them as mock data.
| vite |
task-16 | 2025-05-12T00:00:00 | challenging | Implement an image compression plugin for bundler, only for build command
| vite |
task-17 | 2025-05-12T00:00:00 | moderate | I want to import markdown files directly, and get rendered html by importing them.
For example:
```js
import md from './hello.md'
```
The `md` variable is expected to be a html string rendered by its markdown content.
Implement this in a local vite plugin.
Besides this:
- Add `import md from './hello.md'` in `src/in... | vite |
task-18 | 2025-05-12T00:00:00 | moderate | Supporting importing frontmatter from markdown files.
For example:
hello.md
```md
---
author: hello
tags:
- foo
- bar
---
## Markdown Heading
```
index.js
```js
import md, { frontmatter } from './hello.md'
frontmatter.author // should be "hello"
frontmatter.tags // should be ["foo", "bar"]
```
Besides this
- ... | vite |
task-19 | 2025-05-12T00:00:00 | challenging | Add new feature for markdown vite plugin.
When markdown content includes images, the images should be recognized as dependency of markdown file.
Image url in rendered html string should reference to the image in output directory.
| vite |
task-20 | 2025-05-12T00:00:00 | challenging | Add `language` option for markdown vite plugin
For example:
```js
import md from './hello.md'
```
If langauge is 'en', `./hello.md` will resolved to `./hello.en.md` if it exists.
If langauge is 'zh', `./hello.md` will resolved to `./hello.zh.md` if it exists.
If both `./hello.en.md` and `./hello.zh.md` are not found, ... | vite |
task-1 | 2025-05-12T00:00:00 | easy | 1) Create components/Header.vue that displays 'Hello Blog' at the top of the page with appealing background color. 2) Create components/Main.vue where content is aligned at the top left and fills the remaining space. 3) Develop components/Blog.vue that accepts 'title' and 'detail' as props. Display mock blog data in Ma... | vue |
task-2 | 2025-05-12T00:00:00 | easy | 1) Create a appealing BlogList component that accepts an array of blogs as props and displays the titles in div elements with the className 'list-item'. 2) In Main.vue, mock the blog data and display it using BlogList with this data: [{title: 'Morning', detail: 'Morning My Friends'}, {title: 'Travel', detail: 'I love t... | vue |
task-3 | 2025-05-12T00:00:00 | easy | 1) Make blog items in BlogList selectable. When an item in BlogList is selected, highlight it with appealing style and display its content in the Blog Component. 2) Set 'Morning' as the default selected blog. 3) Beautify the List without changing the size of List Item | vue |
task-4 | 2025-05-12T00:00:00 | easy | 1) Create a BlogForm component as a appealing Modal with the title 'Create Blog'. 2) Add an 'Add Blog' appealing blue button in the right of Header.vue to toggle the BlogForm's visibility. 3) Place a close button (.close-btn) with 'x' in the top right of BlogForm to hide it. 4) Place the BlogForm component in App.vue. | vue |
task-5 | 2025-05-12T00:00:00 | easy | 1) Add .visible-count in the top-left of BlogForm showing '0' initially. 2) Increment .visible-count by 1 each time BlogForm becomes visible. | vue |
task-6 | 2025-05-12T00:00:00 | moderate | 1) Add appealing Form with label in BlogForm to input title and detail; BlogForm can be submitted by button (.submit-btn); 2) When submitted, append this Blog to BlogList, and set this Blog as selected. Keep Previous MockData. | vue |
task-7 | 2025-05-12T00:00:00 | moderate | 1) Create context/BlogContext.ts to manage related context (blog list and selected blog) with Provide/Inject API 2) When submit a new BlogForm, check title duplication. Constraint: The duplication check code should be written in BlogForm; 3) Add a span(.blog-list-len) near 'Hello Blog' in Header.vue to show the length... | vue |
task-8 | 2025-05-12T00:00:00 | moderate | 1) Add 'Delete' appealing red button (.delete-btn) in top&right of Blog.vue. When clicked, delete selected Blog and select the first blog. 2) The logic of Delete is encapsulated in a composable composables/useDelete.ts. | vue |
task-9 | 2025-05-12T00:00:00 | moderate | 1) Add 'Edit' appealing blue button (.edit-btn) in top&right of Blog.vue. When clicked, toggle BlogForm to edit the content of selected Blog. The Title of BlogForm is 'Edit Form' in this case. When submitted, update selected Blog. 2) The logic of Edit is encapsulated in a composable composables/useEdit.ts; | vue |
task-10 | 2025-05-12T00:00:00 | moderate | 1) Add a Search.vue(width: 200px, border-box) component above BlogList.vue in Main.vue. 2) Include an input field with the placeholder 'Search Blogs'. The keywords in the input field are used to filter blogs. | vue |
task-11 | 2025-05-12T00:00:00 | chanllenging | 1) Add a button with the text 'Random Blogs' in Header to append 100,000 blogs to BlogList at one time. Each blog should have a title formatted in regex 'RandomBlog-[\d]{12}', digits in title is random. 2) Ensure the page will not stuck when 100000 blogs appended. 3) Constraint: DO NOT USE any third-party packages, ON... | vue |
task-12 | 2025-05-12T00:00:00 | challenging | 1) Add appealing Comments.vue with the title 'Comments' at the bottom of Blog.vue. 2) Include a TextArea with the placeholder 'Enter Your Comment' and a submit button (.comment-btn) to submit the comment. 3) Only display comments related to the selected blog, showing them in cards with the className '.comment-item', pl... | vue |
task-13 | 2025-05-12T00:00:00 | challenging | 1) Create components/Tooltip.vue that displays a tooltip (.tooltip) at the bottom of the child component when hovered over. 2) Implement this tooltip on the 'Add Blog' button to show 'Write a New Blog For everyone' when hovered. 3) The Tooltip should be appended to document.body. 4) Constraint: DO NOT use any third-par... | vue |
task-14 | 2025-05-12T00:00:00 | challenging | 1) Enable Markdown text input for blog details. Preview the Markdown in Blog.vue. 2) Develop a composable/utils to reuse Markdown-related logic. 3) Prevent XSS attacks. 4) Constraint: DO NOT use any third-party packages; ONLY Vue APIs are permitted. | vue |
task-15 | 2025-05-12T00:00:00 | challenging | 1) Create utils/toast.ts to display a one-line message (fontSize: 12px) in a appealing green box at the top of the page for 2000ms. 2) Display a toast with 'New Comment Created Successfully!' when a new comment is submitted, and 'New Blog Created Successfully!' when a new blog is submitted. 3) If a toast is already vis... | vue |
task-16 | 2025-05-12T00:00:00 | challenging | 1) When the title of Blog is longer than 300px, show '...' to hide longer text. 2) Title can be hovered to show full content in Tooltip when Title is longer than 300px. DO NOT show tooltip when Title is less than 300px 3) Make sure EVERY title displayed in the page follow the rules, create reusable component. 4) Constr... | vue |
task-17 | 2025-05-12T00:00:00 | challenging | 1) Add appealing button in Header with text 'Fast Comment'. 2) When clicked, focus Textarea in Comments.vue and type 'Charming Blog!' DO NOT submit this comment. 3) Constraint: DO NOT use any third-party packages; ONLY Vue APIs are permitted. DO NOT use BOM API. DO NOT use DOM query API. | vue |
task-18 | 2025-05-12T00:00:00 | challenging | 1) Add pages/Game.vue with text 'Hello Game'. 2) Add router to control the Route Logic: When browser location is '/', routed to App. When browser location is '/game', routed to Game. 3) Add a appealing button with text '🎮' in App's Header.vue to jump to Game page, and user can go back to App when browser page go Back.... | vue |
task-19 | 2025-05-12T00:00:00 | challenging | 1) Write a Gomoku chess game 2) chess board is 15*15, there is black chess and white chess, black chess first 3) Add the className for important element: white chess(.chess-white), black chess(.chess-black), position chess can be clicked to drop follow regex: .chess-pos-\d{1,2}-d\{1,2}. 4) show 'White's Turn' and 'Blac... | vue |
task-20 | 2025-05-12T00:00:00 | challenging | 1) When gamer wins, add a button with Text 'Post Game Records', when clicked, post a new blog to record the history of this game. Return to blog page and show this blog 2) The Blog Content Example: '# White is Winner!
```game
White(1,5);
Black(14,11);
White(11,4);
```' 3) Title of Blog follow Game-[Date]-[Time] 4) Cons... | vue |
task-1 | 2025-05-12T00:00:00 | easy | Setup project with webpack. Here are the requirements:
- Add dev and build to npm scripts.
- Set dev server port to environment variable `process.env.PROJECT_PORT`.
- Generate sourceMap after bundling(If webpack generates sourceMap by default, then you don't need to do anything here).
- Set output directory to `dist` f... | webpack |
task-2 | 2025-05-12T00:00:00 | easy | Add path alias `@` for `src`.
Besides this:
Add `import alias from '@/alias'` in `src/index.js`.
Display `alias` value in `src/index.js`.
| webpack |
task-3 | 2025-05-12T00:00:00 | easy | Setup global constants replacement for process.env.__VERSION__ via bundler capability.
process.env.__VERSION__ should be replaced with "v1.0.0" during bundling.
Besides this:
- Add `import './version'` in `src/index.js`.
| webpack |
task-4 | 2025-05-12T00:00:00 | easy | I want to write a Single Page Application.
When visiting non-existent page, dev server should fallback to `index.html`.
If it's already the default behavior in webpack, do nothing.
| webpack |
task-5 | 2025-05-12T00:00:00 | easy | My targeting browsers support `?.` (Optional Chaining Operator), so I want to keep this syntax as is after bundling.
Try to address it.
| webpack |
task-6 | 2025-05-12T00:00:00 | easy | I want to proxy every request prefixed with `/postman/` to `https://postman-echo.com` in dev server.
For example, request to `/postman/get` will be forwarded to `https://postman-echo.com/get`.
Try to address it.
| webpack |
task-7 | 2025-05-12T00:00:00 | easy | Add `import bird from './images/bird.png'` in `src/index.js`.
Update `src/index.js` to display the png image in <img /> element with id `bird`.
Add `import svg from './images/TablerAntennaBars5.svg'` in `src/index.js`.
Update `src/index.js` to display the svg image in <img /> element with id `svg`.
Update bundler con... | webpack |
task-8 | 2025-05-12T00:00:00 | moderate | Add `import './index.css'` in `src/index.js`.
Display text `hello css` in div with CSS class `.css` in `src/index.js`.
Add `import './index.less'` in `src/index.js`.
Display text `hello less` in div with CSS class `.less` in `src/index.js`.
Add `import lessStyles from './index.module.less'` in `src/index.js`.
Display... | webpack |
task-9 | 2025-05-12T00:00:00 | moderate | Add `import ts from './index.ts'` in `src/index.js`.
Display `ts()` return value in `src/index.js`.
Also help me update other files in this project to ensure `dev` and `build` commands won't throw errors after doing that.
| webpack |
task-10 | 2025-05-12T00:00:00 | moderate | Add `import VueComponent from './component.vue';` in `src/index.js`.
Mount VueComponent in `src/index.js`.
Add `import ReactComponent from './component.jsx'` in `src/index.js`.
Mount ReactComponent in `src/index.js`.
DO NOT use jsx syntax.
Also help me update other files in this project to ensure `dev` and `build` c... | webpack |
task-11 | 2025-05-12T00:00:00 | challenging | I want to do something with sourcemap files in output directory.
Implement this as a local webpack plugin.
## Requirements
- Move all sourcemap files into `<project_root>/sourcemaps` after build.
- Add `//# sourceMappingURL=https://internal.com/sourcemaps/<sourcemap_path>` at the end of original js file.
## Examples
... | webpack |
task-12 | 2025-05-12T00:00:00 | challenging | Update the bundler configuration to remove all `console.log` call expression after running build command.
DONOT use terser or other compressor tool, implement it on your own locally.
| webpack |
task-13 | 2025-05-12T00:00:00 | challenging | During bundling, extract all license information into `dist/vendor-licenses.txt` from all npm packages imported directly or transitively in source file.
| webpack |
task-14 | 2025-05-12T00:00:00 | challenging | Implement dynamical generation of in-memory virtual modules via bundler capability.
For example:
src/files/a.ts
```js
export default 'a'
```
src/files/b.ts
```js
export default 'b'
```
src/index.js
```js
import files from '~files'
files.a.default // should be 'a'
files.b.default // should be 'b'
```
You can hardco... | webpack |
task-15 | 2025-05-12T00:00:00 | moderate | I have some mock data in `<project_root>/mock.json`, setup dev server to return them as mock data.
| webpack |
task-16 | 2025-05-12T00:00:00 | challenging | Implement an image compression plugin for bundler, only for build command
| webpack |
task-17 | 2025-05-12T00:00:00 | moderate | I want to import markdown files directly, and get rendered html by importing them.
For example:
```js
import md from './hello.md'
```
The `md` variable is expected to be a html string rendered by its markdown content.
Implement this functionality via bundler capability.
Besides this:
- Add `import md from './hello.m... | webpack |
task-18 | 2025-05-12T00:00:00 | moderate | Supporting importing frontmatter from markdown files.
For example:
hello.md
```md
---
author: hello
tags:
- foo
- bar
---
## Markdown Heading
```
index.js
```js
import md, { frontmatter } from './hello.md'
frontmatter.author // should be "hello"
frontmatter.tags // should be ["foo", "bar"]
```
Besides this
- ... | webpack |
task-19 | 2025-05-12T00:00:00 | challenging | Add image resolving for markdown files.
When markdown content includes images, the images should be recognized as dependency of markdown file.
Image url in rendered html string should reference to the image in output directory.
| webpack |
task-20 | 2025-05-12T00:00:00 | challenging | I want to implement the following functionality with bundler.
For example:
```js
import md from './hello.md'
```
If langauge is 'en', `./hello.md` will resolved to `./hello.en.md` if it exists.
If langauge is 'zh', `./hello.md` will resolved to `./hello.zh.md` if it exists.
If both `./hello.en.md` and `./hello.zh.md` ... | webpack |
task-1 | 2025-05-12T00:00:00 | easy | 1) Create components/Header.tsx that displays 'Hello Blog' at the top of the page with appealing background color.
2) Create components/Main.tsx where content is aligned at the top left and fills the remaining space.
3) Develop components/Blog.tsx that accepts 'title' and 'detail' as props. Display mock blog data in M... | zustand |
task-2 | 2025-05-12T00:00:00 | easy | 1) Create a appealing BlogList component that accepts an array of blogs as props and displays the titles in div elements with the className 'list-item'.
2) Create stores/blog.ts, use Zustand to create a store with blog data, initialState is:
```
{ blogs: [{title: 'Morning', detail: 'Morning My Friends'}, {title: 'Trav... | zustand |
task-3 | 2025-05-12T00:00:00 | easy | 1) Make blog items in BlogList selectable. When an item in BlogList is selected, highlight it with appealing style and display its content in the Blog Component.
2) Set 'Morning' as the default selected blog.
3) Beautify the List without changing the size of List Item
4) Use Zustand to manage the selected blog
| zustand |
task-4 | 2025-05-12T00:00:00 | easy | 1) Create a BlogForm component as a appealing Modal with the title 'Create Blog'.
2) Use Zustand to manage the 'formVisible' state. When formVisible is true, the BlogForm should be displayed, otherwise, it should be hidden.
3) Add an 'Add Blog' appealing blue button in the right of Header.tsx to toggle the BlogForm's ... | zustand |
task-5 | 2025-05-12T00:00:00 | easy | 1) An API is prepared, here is the docs of API:
GET /api/blogs
<response_definition>
interface Response {
blogs: { title: string; detail:string; }[];
}
</response_definition>
<response_example>
{
blogs: [
{ title: 'XXX', detail: 'XXX' },
],
}
</response_example>
2) In stores/blog.ts, add an asyn... | zustand |
task-6 | 2025-05-12T00:00:00 | moderate | 1) Add appealing Form with label (label[htmlFor="title"], label[htmlFor="detail"]) in BlogForm to input title and detail; BlogForm can be submitted by button (.submit-btn);
2) When submitted, append this Blog to BlogList, and set this Blog as selected.
3) Use Zustand to append form data to blogs.
4) Check title dupli... | zustand |
task-7 | 2025-05-12T00:00:00 | moderate | 1) Add 'Delete' appealing red button (.delete-btn) in top&right of Blog.tsx to delete the selected blog.
2) When blog deleted, set the first blog in blogs as selected.
3) If blogs is empty, shows 'No Blog' instead.
| zustand |
task-8 | 2025-05-12T00:00:00 | moderate | 1) Add 'Edit' appealing blue button (.edit-btn) in top&right of Blog.tsx.
2) When Edit clicked, toggle BlogForm to edit the content of selected Blog. The Title of BlogForm is 'Edit Blog' in this case. When submitted, update selected Blog.
3) Use Zustand to manage edit logic.
| zustand |
task-9 | 2025-05-12T00:00:00 | moderate | 1) Here is Search API:
GET /api/search_blogs?keywords=XXX
<response_definition>
interface Response {
// blogs is the search result
blogs: { title: string; detail:string; }[];
}
</response_definition>
<response_example>
{
blogs: [
{ title: 'XXX', detail: 'XXX' },
],
}
</response_example>
2) A... | zustand |
task-10 | 2025-05-12T00:00:00 | moderate | 1) Add stores/route.ts to control the Route Logic
The definition of state is:
```
interface RouteState {
currentRoute: string;
}
```
The initial state of route will be the pathname of the current page.
2) In stores/route.ts, listens to browser history change, and updates the currentRoute in the store.
3) When path is... | zustand |
task-11 | 2025-05-12T00:00:00 | challenging | 1) Add a button with the text '🔀' in Header to append 100,000 blogs to BlogList at one time. Each blog should have a title formatted in regex 'RandomBlog-[\\d]{12}', digits in title is random.
2) Ensure the page will not be stuck when 100000 blogs are appended.
Constraint: DO NOT USE any third-party packages, ONLY R... | zustand |
task-12 | 2025-05-12T00:00:00 | challenging | 1) Enable Markdown text input for blog details. Preview the Markdown in Blog.tsx.
2) Develop a utility to reuse Markdown-related logic.
3) Prevent XSS attacks.
Constraint: DO NOT use any third-party packages; ONLY React/Zustand APIs are permitted.
| zustand |
task-13 | 2025-05-12T00:00:00 | challenging | Implement user login, logout, and display blog poster's username.
1) Login API:
POST /api/login
Request: { username: string, password: string }
Response: { success: boolean }
2) On the /login page, add a LoginForm with labels(label[htmlFor="username"], label[htmlFor="password"]), and a .login-submit-btn to submit the... | zustand |
task-14 | 2025-05-12T00:00:00 | challenging | Implement blog comment feature:
1) Display commenter's username with class '.comment-author' and text with '.comment-text'.
2) Add a CommentForm with a '.comment-input' textarea and a '.comment-submit-btn' below each blog.
3) Use Zustand to manage comments.
4) Add undo functionality via Ctrl+Z (Windows/Linux) or Comman... | zustand |
task-15 | 2025-05-12T00:00:00 | challenging | Write a Gomoku chess game in route: '/game'
1) Add a button with the text '🎮' in Header, when clicked, jump to new page '/game'
2) chess board is 15*15, there is black chess and white chess, black chess first
3) Add the className for important element: white chess(.chess-white), black chess(.chess-black), position ch... | zustand |
task-16 | 2025-05-12T00:00:00 | challenging | Enhance the Gomoku game with multi-step undo functionality.
1) Implement keyboard shortcut (Ctrl+Z on Windows/Linux or Command+Z on Mac) to trigger the undo action.
2) Allow multiple consecutive undos to revert the game state to any previous point.
3) Add a move history display with className '.move-history' showing al... | zustand |
task-17 | 2025-05-12T00:00:00 | challenging | Implement a recording and replay system for Gomoku games.
1) Every games will be auto recorded, and can be replayed by play button (.replay-play-btn) after the game is finished.
2) Add play/pause button (className '.replay-play-btn', '.replay-pause-btn') and a slider (className '.replay-slider') to navigate through ga... | zustand |
task-18 | 2025-05-12T00:00:00 | challenging | Create functionality to share Gomoku games as blog posts.
1) Shows the "Share to Blog" button with className '.share-to-blog-btn' in the Gomoku game after the game is finished.
2) When clicked, open a modal form (className '.share-modal') with title input (className '.title-input'), description input (className '.descr... | zustand |
task-19 | 2025-05-12T00:00:00 | challenging | Add new page '/rooms':
1) Add a button with the text '🚪' in Header, when clicked, jump to new page '/rooms'
2) Add a "Create Room" button with className '.create-room-btn' that opens a room creation form.
3) The room creation form should include a labeled input field for room name ("Room Name") and a "Create" button t... | zustand |
task-20 | 2025-05-12T00:00:00 | challenging | Implement a multi-user chat system based on rooms
1) When a user clicks on a chat room card (with className '.room-card'), navigate to '/chat/:roomId' route.
2) The chat room page ('/chat/:roomId') contains a message list (className '.message-list'), status display (in '.room-status'), and participant information (disp... | zustand |
Subsets and Splits
SQL Console for bytedance-research/Web-Bench
Identifies and categorizes dataset entries by their data visualization and presentation types, revealing patterns in how different projects approach visual communication and technical documentation.
SQL Console for bytedance-research/Web-Bench
This query categorizes projects into specialized visualization and presentation types based on keyword matching, revealing thematic patterns across the dataset that could guide content organization and recommendation systems.
Web Visualization Category
Groups visualization project descriptions into thematic categories like "基础统计" (basic statistics) and "地理" (geographic), revealing patterns in how different visualization types are described and potentially helping identify gaps or overlaps in the dataset's coverage of visualization techniques.