Skip to content

AutoCms is a simple solution to manage contents

Notifications You must be signed in to change notification settings

aykutaktas/autocms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

autocms for Meteor.js (beta)

AutoCms is a simple solution to manage contents. You can easly list your data in a table, update, delete or insert (CRUD). ```js meteor add guncebektas:autocms ```

Dependencies

```js underscorestring:underscore.string kadira:flow-router kadira:blaze-layout arillo:flow-router-helpers aldeed:collection2 aldeed:autoform aldeed:simple-schema aldeed:delete-button ```

How to use it (player list example)

Set routes, for flow-router

```js // cmsCollections FlowRouter.route('/cms/:collection/:function', { action: function() { BlazeLayout.render("main", { content: 'cmsCollection' }); } }); FlowRouter.route('/cms/:collection/:function/:id', { action: function() { BlazeLayout.render("main", { content: "cmsCollection" }); } }); ```

Set rules

```js //First of all create Mongo collections Players = new Mongo.Collection('players'); Players.attachSchema(new SimpleSchema({ name: { type: String, label: "Name", max: 100 }, surname: { type: String, label: "Surname", max: 100 } }));

Players.table = { title: 'List of all players', columns: { name: {

},
surname: {

}

} }

if (Meteor.isServer) { Players.allow({ insert: function () { return true; }, update: function () { return true; }, remove: function () { return true; } }); }

<h4>After all open these links</h4>

localhost:3000/cms/Players/find localhost:3000/cms/Players/insert


<br/><br/>
<h2>Customization</h2>
```js
Games.table = {
  title: 'List of all games',
  style: {
    table: {
      class: 'table table-hover'
    },
    thead: {
      class: ''
    },
    tbody: {
      class: ''
    }
  },
  buttons: {
    edit: {
      label: '<i class="fa fa-pencil-square-o" alt="Edit"></i> Edit',
      class: 'btn btn-xs btn-default',
      auth: function() {
        return true; 
      }
    },  
    delete: {
      label: '<i class="fa fa-trash" alt="Delete"></i> Delete',
      class: 'btn btn-xs btn-danger',
      auth: function() {
        return true; 
      }
    },
    showNavButtons: true,
    showActionButtons: true
  },
  showNo: true,  // default true
  columns: {
    title: {
    },
    gamer1: {
      relation: 'Players',
      display: {
        fields: {
          0: 'name',
          1: 'surname'
        }, 
        symbol: ' '
      }
    },
    score1: {
      class: function(data) {
        if (data > 5) {
            return 'success';
        }
      }
    }
  }
}

About

AutoCms is a simple solution to manage contents

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published