Giter Club home page Giter Club logo

angular-crud's Introduction

Angular CRUD

NPM version Build Status Dependency Status

Generating CRUD applications with the Angular CLI and Schematics.

Scaffold files for CRUD

Scaffold List

Scaffold Detail View

Tutorial: Getting Started

Follow the steps below to see how this library works, or watch this screencast.

  1. Clone this repository.

    git clone https://github.com/manfredsteyer/angular-crud
    

    You could also start with an empty project but this repo contains everything you need to get started quickly: theming, configured routing, and a menu.

  2. Build the angular-crud schematic:

    cd angular-crud
    npm install
    npm run build
    npm pack
    
  3. Install the needed npm packages:

    cd demo
    npm i --no-save ../angular-crud/*.tgz
    # or install the latest released version with: npm install -D angular-crud
    npm install
    

    NOTE: For Bootstrap and Angular Material, use demo-bootstrap and demo-material in the first command.

  4. Switch to the folder src/app and create a sub-folder hotel with a file model.json. Put the following content into this file:

    { 
        "title": "Hotel",
        "entity": "hotel",
        "api": {
          "url": "http://www.angular.at/api/hotel"
        },
        "filter": [
          "city"
        ],
        "fields": [
          {
            "name": "id",
            "label": "Id",
            "isId": true,
            "readonly": true,
            "type": "number"
          },
          {
            "name": "name",
            "type": "string",
            "label": "Name"
          },
          {
            "name": "city",
            "type": "string",
            "label": "City"
          },
          {
            "name": "stars",
            "type": "string",
            "control": "number",
            "label": "Stars"
          } 
        ]
    }

    The generator is using a json5 parser. This means that you can use comments, omit quotation marks, and use trailing commas.

  5. In your project's root directory, run the following Angular CLI based command:

    ng g angular-crud:crud-module hotel
    
  6. Have a look at the generated files.

  7. Open the file sidebar.component.html and uncomment the link to the generated route.

  8. Switch to the project's root and start the application:

    npm start
    
  9. Open http://localhost:4200 and switch to the menu item Hotels. You should now see your generated form.

    Please note, that you cannot save records with Ids 1 to 5 b/c they are restricted for demos.

Bootstrap and Angular Material

This library supports Bootstrap, Angular Material, and Paper Dashboard templates. It attempts to determine which templates to use by inspecting your package.json. You can also force which templates to use:

  • --style bootstrap: forces Bootstrap templates
  • --style material: forces Angular Material templates
  • --style paper-dashboard: forces Paper Dashboard templates

For example:

ng g angular-crud:crud-module note --style bootstrap

Paper Dashboard is the default if you don't specify a --style parameter and no Bootstrap or Angular Material dependencies are found in package.json.

Bootstrap Screenshots

Bootstrap List

Bootstrap Detail View

Material Screenshots

Angular Material List

Angular Material Detail View

Extending angular-crud

You can fork this repo and extend the generated code using Schematics. Information about how to use Schematics can be found here:

Call for Contributions

  • Validation
  • Navigating between Records
  • Lookups with dropdown fields etc.
  • Configure Base URL
  • Supporting more field types (date, checkbox etc.)

If you want to contribute one of those features or other features feel free to reach out. Let's join forces to provide a great solution!

More Information

angular-crud's People

Contributors

brgrz avatar dependabot[bot] avatar igormusardo avatar manfredsteyer avatar vector67 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

angular-crud's Issues

can not run command on angular 14 vs nodejs v18.12.1 npm 8.19.2

[error] Error: Collection "angular-crud" cannot be resolved.
at SchematicEngineHost.resolve (C:\laragon\www\angular-crud\demo\node_modules@angular-devkit\schematics\tools\node-module-engine-host.js:75:19)
at SchematicEngineHost._resolveCollectionPath (C:\laragon\www\angular-crud\demo\node_modules@angular-devkit\schematics\tools\node-module-engine-host.js:80:37)
at SchematicEngineHost.createCollectionDescription (C:\laragon\www\angular-crud\demo\node_modules@angular-devkit\schematics\tools\file-system-engine-host-base.js:118:27)
at SchematicEngine._createCollectionDescription (C:\laragon\www\angular-crud\demo\node_modules@angular-devkit\schematics\src\engine\engine.js:162:40)
at SchematicEngine.createCollection (C:\laragon\www\angular-crud\demo\node_modules@angular-devkit\schematics\src\engine\engine.js:155:43)
at GenerateCommand.getCollection (C:\laragon\www\angular-crud\demo\node_modules@angular\cli\models\schematic-command.js:143:35)
at GenerateCommand.initialize (C:\laragon\www\angular-crud\demo\node_modules@angular\cli\models\schematic-command.js:62:37)
at async GenerateCommand.initialize (C:\laragon\www\angular-crud\demo\node_modules@angular\cli\commands\generate-impl.js:20:9)
at async GenerateCommand.validateAndRun (C:\laragon\www\angular-crud\demo\node_modules@angular\cli\models\command.js:121:22)
at async Object.runCommand (C:\laragon\www\angular-crud\demo\node_modules@angular\cli\models\command-runner.js:224:24)

Error: Schematic "crud-module" not found in collection "@schematics/angular".

When I step through the Tutorial I get stuck at
4.) ng g crud-module hotel --collection angular-crud
with error:

Error: Schematic "crud-module" not found in collection "@schematics/angular".

When I add @schematics/angular dependency explicitly, I get the following error:

Cannot find module '@schematics/angular/utility/parse-name'

Any suggestions on this?
Thanks in advance!

Solution not working

Hello @manfredsteyer,
I cloned the solution, and tried your sample.

Your global Angular CLI version (6.2.2) is greater than your local
version (1.5.5). The local Angular CLI version is used.

To disable this warning use "ng config -g cli.warnings.versionMismatch false".
Error: Could not find an NgModule for the new component. Use the skip-import option to skip importing components in NgModule.
Could not find an NgModule for the new component. Use the skip-import option to skip importing components in NgModule.

Any ideas?
Even with --skip-import its not working

I also tried multiple samles, but all are not working, were there breaking changes?
Thanks for any advanced help.
Graphefruit

PR returned 403

Hello, how are you?

I'm trying to send a PR, but I'm getting the following return:

remote: Permission to manfredsteyer/angular-crud.git denied to renantescaro.
fatal: unable to access 'https://github.com/manfredsteyer/angular-crud/': The requested URL returned error: 403

It's been a long time since I've sent PR to public projects, I might be doing something stupid

Tks!

Angular 6 Integration Issue

This is not working in angular 6 somehow.However i have already updated the cli schematic part to the latest version

suggestion

Your plugin fill a real need, but it would be more usefull if we didn't have to generate the json file, but have it instead generate directly from the model file.

camelize is not a function error

i am getting camelize is not a function error when trying to run this ng g crud-module hotel --collection angular-crud command

Angular 13 issues

When I try to incorporate with angular 13 project I get the following error.
[error] Error: Cannot find module '/home/atlantageek/dev/gis/ui/node_modules/angular-crud/src/crud-module/index'

However, an index.ts file is in the crud-module directory.

Unable to generate hotel

Getting the following error while generating component.

Error: Could not find an NgModule for the new component. Use the skip-import option to skip importing components in NgModule.
Could not find an NgModule for the new component. Use the skip-import option to skip importing components in NgModule.

The --skip-import option also not working with the gen.bat.

Add support for Angular Material in templates

The HTML templates in 1.0.0 use Bootstrap by default. We should add a parameter that allows it to be overridden. This should be possible by using different templates for bootstrap and material. I've done this in @oktadev/schematics using a platform option. You can read it in the schematic and switch templates.

For example, change this line:

const templateSource = apply(url('./files'), [

To this:

const templateSource = apply(url(`./files/${options.platform}`), [

Then add a new property to angular-crud/src/crud-module/schema.json:

"platform": {
  "type": "string",
  "default": "bootstrap"
},

After making these changes (and moving files), you should be able to override the platform and read from ./files/material directory instead. For example:

ng g angular-crud:crud-module hotel --platform=material

Related: ngx-hipster generates a skeleton Angular Material application with login support (for a JHipster backend).

NGRX

Hi @manfredsteyer do you think NGRX has a place inside this project?
What do you think?

Very nice work !

Very nice work.

Your sample worked at like a charm, and I was able to integrate it in my project very smoothly :)
Of course there is some missing features but it is quit easy to add them from your code.

Thx a lot :)

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.