adonis adminify
1.0.0
AdonisJs および Adminify (Vuetify ベース) に基づく管理ダッシュボード アプリケーション。詳細については、Adonis China を参照してください。キーワード: NodeJs、VueJs、AdonisJs、ORM、リレーション、SQLite、MySQL、ミドルウェア、Restful、CRUD、マテリアル デザイン
git clone https://github.com/adonis-china/adonis-admin.git
cd adonis-admin
cp .env.example .env
npm install && npm run serve:dev
APIサーバーを起動します./ace migration:refresh --seed
fill データベース (Windows ではnode ace
を使用)git submodule update --recursive --remote --init
pull サブモジュールcd adminify
cp src/config.sample.js src/config.js
Windows でcopy
を使用するsrc/config.js
でdebug.mock
false
に変更します。npm install && npm run dev
クライアントを開始しますhttp://localhost:8080
(または別のポート) を開きます。中国では
npm
代わりにcnpm
使用してください
./ace make:model -m Page
、ページ管理用の移行を使用してPage
モデルを作成します。/database/migrations/1496388160682_create_page_table.js
を開き、いくつかのフィールドを追加します。 table . increments ( )
table . integer ( 'type_id' ) . unsigned ( ) . nullable ( )
table . foreign ( 'type_id' ) . references ( 'types.id' )
table . string ( 'title' ) . notNullable ( )
table . text ( 'body' )
table . timestamps ( )
./ace migration:run
/app/Model/Page.js
を開き、 belongsTo
関係を追加します。 class Page extends Lucid {
type ( ) {
return this . belongsTo ( 'App/Model/Type' )
}
}
/app/Http/Controllers/Admin/Api/EmptyController.js
をPageController.js
にコピーし、次のように変更します。 'use strict'
const RestController = require ( './RestController' )
const Page = use ( 'App/Model/Page' )
const Type = use ( 'App/Model/Type' )
class PageController extends RestController {
get resource ( ) {
return 'pages'
}
get expand ( ) {
return [ 'type' ]
}
* gridData ( ) {
//change the fields
return {
options : {
sort : 'id' , //or '-id' as desc
create : true ,
update : true ,
delete : true
} ,
// filters: false,
filters : {
model : {
title : '' ,
created_at : ''
} ,
fields : {
title : { label : 'Title' } ,
created_at : { label : t ( 'fields.Page.created_at' ) , Page : 'date' }
} ,
rules : { } ,
} ,
columns : [
{ text : t ( 'fields.Page.id' ) , value : 'id' } ,
{ text : t ( 'fields.Page.title' ) , value : 'title' }
]
}
}
* formData ( request , response ) {
let model = {
title : '' ,
type_id : null ,
body : '' ,
}
let id
if ( request ) {
id = request . input ( 'id' )
if ( id ) {
model = yield Page . query ( ) . where ( 'id' , id ) . first ( )
}
}
let typeOptions = yield Type . query ( ) . select ( 'id' , 'name' ) . fetch ( )
for ( let type of typeOptions ) {
type . text = type . name
type . value = type . id
}
return {
model : model ,
fields : {
title : { label : 'Title' , hint : 'Page Title' , required : true } ,
type_id : {
label : 'Type' , type : 'select' , options : typeOptions , required : true ,
} ,
body : { label : 'Body' , type : 'html' , required : false } ,
} ,
rules : model . rules ,
messages : model . messages
}
}
}
module . exports = PageController
/app/Http/routes.js:26
にルートを追加します const resources = [ 'posts' , 'users' , 'types' , 'comments' , 'settings' , 'pages' ]
/adminify/src/menu.js
にメニューを追加すると、左側のメニューに表示されることがわかります{ "href" : " /crud/pages " , "title" : " Pages " , "icon" : " view_list " },
http://localhost:8080/#/crud/pages
に移動すると、すべてのページのグリッド リスト ビューが表示されます。plus
ボタンを押してページを追加します。追加後に編集することもできます。