monorepo icon indicating copy to clipboard operation
monorepo copied to clipboard

Guides

Open MustafaTRKYLMZ opened this issue 9 months ago • 0 comments

Is your feature request related to a problem? Please describe.

A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

It is like blog but a little bit different. Sometimes we have to create handbook for some info. Ex:How can we change password, how can we create post, whats os the workflow of the hashtag start? With this future, we can give info

Describe the solution you'd like

Data model can be:

[
  {
    "name": "Guides",
    "attributes": {
      "title": {
        "type": "string",
        "required": true
      },
      "description": {
        "type": "text"
      },
      "content": {
        "type": "longtext"
      },
      "creator": {
        "model": "Profile",
        "via": "created_guides"
      },
      "views": {
        "type": "integer",
        "default": 0
      }
    }
  },
  {
    "name": "Tags",
    "attributes": {
      "name": {
        "type": "string",
        "required": true
      },
      "guides": {
        "collection": "Guides",
        "via": "tags"
      }
    }
  },
  {
    "name": "Categories",
    "attributes": {
      "name": {
        "type": "string",
        "required": true
      },
      "guides": {
        "collection": "Guides",
        "via": "category"
      }
    }
  }
]

issues:

  • [ ] create table into the strapi,
  • [ ] create tablo into the dashboard (guides list)
  • [ ] CRUD guides (in the table details)
  • [ ] For normal users create page or modal for searching info (guides list)
  • [ ] create detail page for normal users when user found info in the guides page/modal
  • [ ] In the guides detail page(for normal users) must be add to favorite list button, social buttonsb
  • [ ] Users can look favorite list from profile/my favorites/guides-list

title, description, content, creator, tag, category, view (see below data model) "Guides": { "title": "string", "description": "text", "content": "longtext", "creator": "Profile", "views": "integer", "tag": "Tag", "category": "Category" },

Describe alternatives you've considered

A clear and concise description of any alternative solutions or features you've considered.

Additional context

Add any other context or screenshots about the feature request here.

Design coming....

MustafaTRKYLMZ avatar May 11 '24 22:05 MustafaTRKYLMZ