Giter Site home page Giter Site logo

chart-management-system's Introduction

Chart System

Outline

๋‚ด๊ฐ€ ์›ํ•˜๋Š” ์ฐจํŠธ ๋ชจ์–‘์„ ๋งŒ๋“ค์–ด๋ณด๊ณ , ํ•ด๋‹น ์ฐจํŠธ์˜ ์˜ต์…˜๋“ค์„ ๋ณต์‚ฌํ•˜์—ฌ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋Š” ๊ธฐ๋Šฅ.

Needs

echart๋Š” ์›ํ•˜๋Š”๋Œ€๋กœ ์ปค์Šคํ…€ํ•˜๊ธฐ์— ์ข‹์ง€๋งŒ, ์ž์œ ๋„๊ฐ€ ๋†’๋‹ค๋ณด๋‹ˆ ์‚ฌ์šฉํ•˜๊ธฐ์— ์ข€ ์–ด๋ ค์šธ ์ˆ˜ ์žˆ๋‹ค.

๊ทธ๋ ‡๊ธฐ ๋•Œ๋ฌธ์— ์‚ฌ์šฉ์ž๊ฐ€ ์‹ค์ œ๋กœ UI๋ฅผ ํด๋ฆญํ•ด์„œ ๋งŒ๋“ค์–ด๋ณด๊ณ  ์›ํ•˜๋Š” ๋ชจ์–‘์ด ๋‚˜์™”์„ ๊ฒฝ์šฐ์— ๊ทธ ์˜ต์…˜์„ ๊ฐ€์ ธ๋‹ค๊ฐ€ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋„๋ก ํ•œ๋‹ค๋ฉด, ํŽธ๋ฆฌํ•˜๊ฒŒ echart๋ฅผ ์‘์šฉํ•  ์ˆ˜ ์žˆ๊ฒŒ ๋œ๋‹ค.

Work Flow

  1. ์›Œํฌ ์ŠคํŽ˜์ด์Šค๋ฅผ ์ƒ์„ฑํ•œ๋‹ค.
  2. ์ฐจํŠธ๋ฅผ ์ƒ์„ฑํ•œ๋‹ค.
  3. ์ฐจํŠธ ์ƒ์„ฑ ์‹œ ๋ชจ๋‹ฌ ์ฐฝ ๋‚ด์—์„œ ์—ฌ๋Ÿฌ๊ฐ€์ง€ ์„ค์ •์ด ๊ฐ€๋Šฅํ•˜๋‹ค.
    1. ์ฐจํŠธ ํƒ€์ž…
    2. ์ฐจํŠธ ๋ช…
    3. ๋ฐ์ดํ„ฐ ์„ ํƒ (Excel๋กœ ์ง์ ‘ ์ž…๋ ฅ, ์˜ˆ์‹œ ๋ฐ์ดํ„ฐ ์„ ํƒ ๊ฐ€๋Šฅ)
    4. ๊ฐ์ข… ์˜ต์…˜ (์ถ”ํ›„ ์ •๋ฆฌ)

Data Modeling

์›Œํฌ์ŠคํŽ˜์ด์Šค

Definition

๊ฐœ์ธ์ด ์—ฌ๋Ÿฌ ์ฐจํŠธ๋ฅผ ๋งŒ๋“ค์–ด ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋Š” ์ž‘์—… ๊ณต๊ฐ„

Schema

const workspaceSchema = mongoose.Schema({
  name: {
    type: String,
    maxlength: 30,
  },
  ...
})

์ฐจํŠธ

Definition

๊ฐœ์ธ์ด UI ์„ค์ •๊ฐ’๋“ค์„ ์‚ฌ์šฉํ•˜์—ฌ ๋ณด์—ฌ์ง€๋Š” ์ฐจํŠธ

Schema

const chartSchema = mongoose.Schema({
  name: {
    type: String,
    maxlength: 20,
  },
  description: {
    type: String,
    maxlength: 30,
  },
  ...
});

์œ ์ €

Definition

๋ณธ์ธ์˜ ์›Œํฌ์ŠคํŽ˜์ด์Šค๋ฅผ ๋งŒ๋“ค๊ณ  ์ฐจํŠธ๋ฅผ ํ…Œ์ŠคํŠธํ•ด๋ณผ ์ˆ˜ ์žˆ๋Š” ๊ถŒํ•œ์„ ๊ฐ€์ง„ ๊ฐœ์ธ

Schema

const userSchema = mongoose.Schema({
  name: {
    type: String,
    maxlength: 30,
  },
  email: {
    type: String,
    trim: true,
    unique: 1,
  },
  password: {
    type: String,
    maxlength: 10,
  },
  role: {
    type: Number,
    default: 0,
  },
  token: {
    type: String,
  },
  ...
});

TASK

FRONTEND

  • ์ฐจํŠธ ๊ด€๋ฆฌ ํŽ˜์ด์ง€
  • ์ฐจํŠธ ์ƒ์„ฑ ํŽ˜์ด์ง€
  • echart ๋ผ์ด๋ธŒ๋Ÿฌ๋ฆฌ ๊ฒ€ํ† 
  • ...

BACKEND

  • ๋ฐ์ดํ„ฐ ๋ชจ๋ธ๋ง ๋ฐ ์Šคํ‚ค๋งˆ ์ •์˜
  • ์˜ˆ์‹œ ๋ฐ์ดํ„ฐ ๊ตฌ์ถ• (์›Œํฌ์ŠคํŽ˜์ด์Šค, ์ฐจํŠธ)
  • ์นด์นด์˜คํ†ก ๋กœ๊ทธ์ธ
  • ...

chart-management-system's People

Contributors

jeeseongmin avatar

Stargazers

 avatar

Watchers

 avatar

chart-management-system's Issues

ํ™˜๊ฒฝ ์„ธํŒ…

๋ชฉ์ 

  • sass ํ™˜๊ฒฝ ๊ตฌ์ถ•
  • storybook ์„ธํŒ…
  • UI ํ…Œ์ŠคํŠธ ํ™˜๊ฒฝ ์„ธํŒ… (reat-testing-library)
  • Redux ํ™˜๊ฒฝ ์„ธํŒ…

[BACK] node.js ์„œ๋ฒ„ ๊ตฌ์ถ•

๋ชฉ์ 
nodejs ์›น ์„œ๋ฒ„ ๊ตฌ์ถ•

์ฒดํฌ ๋ฆฌ์ŠคํŠธ

  • Front ํด๋” ๋ถ„๋ฆฌ
  • ๊ด€๋ จ ํŒจํ‚ค์ง€ ์„ค์น˜ (express, nodemon, cors, http-proxy-middleware)
  • Routing ์ฒ˜๋ฆฌ

[FRONT] ๋ฉ”๋‰ด๋ฐ” UI ๋ฐ ํ•จ์ˆ˜ ๊ตฌ์„ฑ

๋ชฉ์ 
๋ฉ”๋‰ด๋ฐ” ํ† ๊ธ€ ์‹œ ์‚ฌ์ด๋“œ๋ฐ”๊ฐ€ ๋‚˜ํƒ€๋‚˜๋„๋ก UI ๋ฐ ํ•จ์ˆ˜๋ฅผ ๊ตฌ์„ฑํ•œ๋‹ค.

ํ•  ์ผ

  • redux ์ˆ˜์ •
  • ์‚ฌ์ด๋“œ๋ฐ” UI ๊ตฌ์„ฑ
  • ๋ฉ”๋‰ด๋ฐ” ํ† ๊ธ€ ํ•จ์ˆ˜ ์ ์šฉ
  • ์‚ฌ์ด๋“œ๋ฐ” ์ปจํ…์ธ  ๊ฐœ๋ฐœ

[BACK] mongo DB ์„ค์ •

๋ชฉ์ 
mongo DB๋ฅผ ์„ค์น˜ํ•ด์„œ ์—ฐ๊ฒฐํ•œ๋‹ค.

์ฒดํฌ ๋ฆฌ์ŠคํŠธ

  • mongo DB ์„ค์น˜
  • mongo DB ์—ฐ๊ฒฐ

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.