- )
-}
-
-export default Counter
diff --git a/src/features/counter/counterAPI.ts b/src/features/counter/counterAPI.ts
deleted file mode 100644
index 9f6c4bd..0000000
--- a/src/features/counter/counterAPI.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-export async function fetchCount(amount = 1): Promise<{ data: number }> {
- const response = await fetch('/api/counter', {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json',
- },
- body: JSON.stringify({ amount }),
- })
- const result = await response.json()
-
- return result
-}
diff --git a/src/features/counter/counterSlice.ts b/src/features/counter/counterSlice.ts
deleted file mode 100644
index 5a12bd0..0000000
--- a/src/features/counter/counterSlice.ts
+++ /dev/null
@@ -1,82 +0,0 @@
-import { createAsyncThunk, createSlice, PayloadAction } from '@reduxjs/toolkit'
-
-import type { AppState, AppThunk } from '../../app/store'
-import { fetchCount } from './counterAPI'
-
-export interface CounterState {
- value: number
- status: 'idle' | 'loading' | 'failed'
-}
-
-const initialState: CounterState = {
- value: 0,
- status: 'idle',
-}
-
-// The function below is called a thunk and allows us to perform async logic. It
-// can be dispatched like a regular action: `dispatch(incrementAsync(10))`. This
-// will call the thunk with the `dispatch` function as the first argument. Async
-// code can then be executed and other actions can be dispatched. Thunks are
-// typically used to make async requests.
-export const incrementAsync = createAsyncThunk(
- 'counter/fetchCount',
- async (amount: number) => {
- const response = await fetchCount(amount)
- // The value we return becomes the `fulfilled` action payload
- return response.data
- }
-)
-
-export const counterSlice = createSlice({
- name: 'counter',
- initialState,
- // The `reducers` field lets us define reducers and generate associated actions
- reducers: {
- increment: (state) => {
- // Redux Toolkit allows us to write "mutating" logic in reducers. It
- // doesn't actually mutate the state because it uses the Immer library,
- // which detects changes to a "draft state" and produces a brand new
- // immutable state based off those changes
- state.value += 1
- },
- decrement: (state) => {
- state.value -= 1
- },
- // Use the PayloadAction type to declare the contents of `action.payload`
- incrementByAmount: (state, action: PayloadAction) => {
- state.value += action.payload
- },
- },
- // The `extraReducers` field lets the slice handle actions defined elsewhere,
- // including actions generated by createAsyncThunk or in other slices.
- extraReducers: (builder) => {
- builder
- .addCase(incrementAsync.pending, (state) => {
- state.status = 'loading'
- })
- .addCase(incrementAsync.fulfilled, (state, action) => {
- state.status = 'idle'
- state.value += action.payload
- })
- },
-})
-
-export const { increment, decrement, incrementByAmount } = counterSlice.actions
-
-// The function below is called a selector and allows us to select a value from
-// the state. Selectors can also be defined inline where they're used instead of
-// in the slice file. For example: `useSelector((state: RootState) => state.counter.value)`
-export const selectCount = (state: AppState) => state.counter.value
-
-// We can also write thunks by hand, which may contain both sync and async logic.
-// Here's an example of conditionally dispatching actions based on current state.
-export const incrementIfOdd =
- (amount: number): AppThunk =>
- (dispatch, getState) => {
- const currentValue = selectCount(getState())
- if (currentValue % 2 === 1) {
- dispatch(incrementByAmount(amount))
- }
- }
-
-export default counterSlice.reducer
diff --git a/src/pages/index.tsx b/src/pages/index.tsx
index 2ed50fb..ffed22a 100644
--- a/src/pages/index.tsx
+++ b/src/pages/index.tsx
@@ -1,61 +1,43 @@
import type { NextPage } from 'next'
import Head from 'next/head'
+import { useState } from 'react'
+import { EventIE, EventTypes } from '../app/types'
+import { Button } from '../components/Button'
+import { Checkbox } from '../components/Checkbox'
+import { EventComponent } from '../components/EventComponent'
+import { Input } from '../components/Input'
-import Counter from '../features/counter/Counter'
import styles from '../styles/Home.module.css'
+const mockData = [
+ {
+ date: new Date(2005, 11, 3),
+ name:"очень важная цель",
+ description: "очень большое и крутое описание",
+ type: EventTypes.AIM
+ } as EventIE,
+ {
+ date: new Date(2006, 1, 10),
+ name: "Комментарий для лоха",
+ description: "ты лошара тупая",
+ isModerated: true,
+ type: EventTypes.COMMENT
+ } as EventIE
+]
+
+
const IndexPage: NextPage = () => {
+
return (