diff --git a/.gitignore b/.gitignore index 66c1946..a26d467 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ +.idea/ + config.toml oxspeak.db target/ -# artefact ... -oxspeak - Copie.db:Zone.Identifier \ No newline at end of file + diff --git a/frontend/.yarn/install-state.gz b/frontend/.yarn/install-state.gz new file mode 100644 index 0000000..0dd19a7 Binary files /dev/null and b/frontend/.yarn/install-state.gz differ diff --git a/frontend/.yarnrc.yml b/frontend/.yarnrc.yml new file mode 100644 index 0000000..3186f3f --- /dev/null +++ b/frontend/.yarnrc.yml @@ -0,0 +1 @@ +nodeLinker: node-modules diff --git a/frontend/src/App.vue b/frontend/src/App.vue index 1070c29..91b663d 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -1,10 +1,16 @@ - - Oxspeak + + + + + + diff --git a/frontend/src/components/category/category_create.vue b/frontend/src/components/category/category_create.vue new file mode 100644 index 0000000..cdaab9c --- /dev/null +++ b/frontend/src/components/category/category_create.vue @@ -0,0 +1,47 @@ + + + + Category Name : + + + + + Server ID : + + + + Create + + + + + + diff --git a/frontend/src/components/category/category_detail.vue b/frontend/src/components/category/category_detail.vue new file mode 100644 index 0000000..f0ebde8 --- /dev/null +++ b/frontend/src/components/category/category_detail.vue @@ -0,0 +1,42 @@ + + + + category : {{category.name}} Remove + + + + + + + + + diff --git a/frontend/src/components/category/category_list.vue b/frontend/src/components/category/category_list.vue new file mode 100644 index 0000000..397bb58 --- /dev/null +++ b/frontend/src/components/category/category_list.vue @@ -0,0 +1,40 @@ + + Categories + + Refresh + + + + + + diff --git a/frontend/src/components/channel/channel_create.vue b/frontend/src/components/channel/channel_create.vue new file mode 100644 index 0000000..229f501 --- /dev/null +++ b/frontend/src/components/channel/channel_create.vue @@ -0,0 +1,60 @@ + + + + Channel Name : + + + + + Server ID : + + + + + Category ID : + + + + + Type : + + + + Create + + + + + + diff --git a/frontend/src/components/channel/channel_detail.vue b/frontend/src/components/channel/channel_detail.vue new file mode 100644 index 0000000..1405476 --- /dev/null +++ b/frontend/src/components/channel/channel_detail.vue @@ -0,0 +1,43 @@ + + + + channel : {{channel.name}} Remove + Type: {{ channel.channel_type }} + + + + + + + + + diff --git a/frontend/src/components/channel/channel_list.vue b/frontend/src/components/channel/channel_list.vue new file mode 100644 index 0000000..91fe84c --- /dev/null +++ b/frontend/src/components/channel/channel_list.vue @@ -0,0 +1,40 @@ + + Channels + + Refresh + + + + + + diff --git a/src/app/app.rs b/src/app/app.rs index 3008db5..cde9691 100644 --- a/src/app/app.rs +++ b/src/app/app.rs @@ -63,6 +63,4 @@ impl App { println!("Nettoyage et fermeture de l'application."); } - - } \ No newline at end of file
Type: {{ channel.channel_type }}