Skip to content

Commit

Permalink
fix: add link to stackmonitor help
Browse files Browse the repository at this point in the history
  • Loading branch information
clabroche committed Feb 11, 2024
1 parent 7122c03 commit 62c1d4e
Show file tree
Hide file tree
Showing 12 changed files with 122 additions and 1 deletion.
2 changes: 1 addition & 1 deletion modules/configuration/front/src/Configs.vue
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<template>
<template>
<section-cmp
class="configs-root"
v-if="service" :key="service.label">
Expand Down
1 change: 1 addition & 0 deletions modules/help/backend/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@clabroche:registry=https://npm.pkg.github.com
17 changes: 17 additions & 0 deletions modules/help/backend/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/** @type {import('@clabroche/modules-plugins-loader-front/src/views').PluginSM<null>} */
const plugin = {
name: 'Help',
displayName: 'Help',
description: 'Show help',
icon: 'fa-question-circle',
export: null,
placements: [{
position: 'sidebar',
label: 'Help',
icon: 'fas fa-question-circle',
goTo: { path: '/Help' },
active: 'Help',
}],
order: Infinity,
};
module.exports = plugin;
12 changes: 12 additions & 0 deletions modules/help/backend/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "@clabroche/modules-help-backend",
"version": "1.17.24",
"repository": "https://github.com/clabroche/stack-monitor",
"private": true,
"scripts": {
"test": ""
},
"devDependencies": {
"@clabroche/common-retrigger-all-build": "workspace:*"
}
}
1 change: 1 addition & 0 deletions modules/help/front/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@clabroche:registry=https://npm.pkg.github.com
37 changes: 37 additions & 0 deletions modules/help/front/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.17.24](https://github.com/clabroche/stack-monitor/compare/v1.17.23...v1.17.24) (2024-02-11)

### Bug Fixes

* link front to backend deps ([351abfd](https://github.com/clabroche/stack-monitor/commit/351abfd8f8cde96bce80d5202a78dd1daabbf6bb))

## [1.17.23](https://github.com/clabroche/stack-monitor/compare/v1.17.21...v1.17.23) (2024-02-11)

### Bug Fixes

* link front to backend deps ([66b3135](https://github.com/clabroche/stack-monitor/commit/66b313523d99765b692208de0043303dcb6a0914))
* link front to backend deps ([54fcbf3](https://github.com/clabroche/stack-monitor/commit/54fcbf371cf03dc4f51a7196de15fe5d352088e9))

## [1.17.22](https://github.com/clabroche/stack-monitor/compare/v1.17.21...v1.17.22) (2024-02-11)

**Note:** Version bump only for package @clabroche/modules-configuration-front

## [1.17.21](https://github.com/clabroche/stack-monitor/compare/v1.17.20...v1.17.21) (2024-02-11)

**Note:** Version bump only for package @clabroche/modules-configuration-front

## [1.17.18](https://github.com/clabroche/stack-monitor/compare/v1.17.15...v1.17.18) (2024-02-11)

### Bug Fixes

* resolve conflict ([e29ed8c](https://github.com/clabroche/stack-monitor/commit/e29ed8c50536109b0a05ec24d212b03a0f0b7922))

## [1.17.11](https://github.com/clabroche/stack-monitor/compare/v1.17.10...v1.17.11) (2024-02-04)

### Bug Fixes

* link modules between them ([a9a087c](https://github.com/clabroche/stack-monitor/commit/a9a087c7cd00ba09bdf075e476d6ea669a86dc06))
22 changes: 22 additions & 0 deletions modules/help/front/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"name": "@clabroche/modules-help-front",
"version": "1.17.24",
"repository": "https://github.com/clabroche/stack-monitor",
"private": true,
"scripts": {
"test": ""
},
"eslintConfig": {
"parser": "vue-eslint-parser",
"env": {
"browser": true
},
"rules": {
"import/no-extraneous-dependencies": "off"
}
},
"devDependencies": {
"@clabroche/common-retrigger-all-build": "workspace:*",
"vue-eslint-parser": "^9.4.2"
}
}
8 changes: 8 additions & 0 deletions modules/help/front/src/Index.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<template>
<iframe src="https://clabroche.github.io/stack-monitor/" width="100%" height="100%"></iframe>
</template>

<script setup>
</script>
<style lang="scss" scoped>
</style>
1 change: 1 addition & 0 deletions modules/plugins-loader/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"@clabroche/modules-git-backend": "workspace:*",
"@clabroche/modules-github-backend": "workspace:*",
"@clabroche/modules-global-scripts-backend": "workspace:*",
"@clabroche/modules-help-backend": "workspace:*",
"@clabroche/modules-json-formatter-backend": "workspace:*",
"@clabroche/modules-jwt-backend": "workspace:*",
"@clabroche/modules-kanban-backend": "workspace:*",
Expand Down
1 change: 1 addition & 0 deletions modules/plugins-loader/backend/plugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ module.exports = {
regex: require('@clabroche/modules-regex-backend'),
toolbox: require('@clabroche/modules-toolbox-backend'),
uuid: require('@clabroche/modules-uuid-backend'),
help: require('@clabroche/modules-help-backend'),
};
3 changes: 3 additions & 0 deletions modules/plugins-loader/front/src/views.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import Github from '@clabroche/modules-github-front/src/Index.vue';
import Kanban from '@clabroche/modules-kanban-front/src/Index.vue';
import GlobalScripts from '@clabroche/modules-global-scripts-front/src/Index.vue';
import Finder from '@clabroche/modules-finder-front/src/Index.vue';
import Help from '@clabroche/modules-help-front/src/Index.vue';
import DynamicComponent from './DynamicComponent.vue';

const toolboxPlugins = [
Expand All @@ -31,6 +32,7 @@ const toolboxPlugins = [
{ name: 'Diff', component: Diff },
{ name: 'NodeREPL', component: NodeREPL },
{ name: 'Mongo', component: Mongo },
{ name: 'Help', component: Help },
{ name: 'OpenAI', component: OpenAI },
{ name: 'GlobalScripts', component: GlobalScripts },
{ name: 'Kanban', component: Kanban },
Expand Down Expand Up @@ -77,6 +79,7 @@ const plugins = [
},
],
})),
{ name: 'Help', cmp: Help },
{ name: 'Logs', cmp: LogsVue },
{ name: 'Git', cmp: GitVue },
{ name: 'Github', cmp: Github },
Expand Down
18 changes: 18 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1170,6 +1170,23 @@ __metadata:
languageName: unknown
linkType: soft

"@clabroche/modules-help-backend@workspace:*, @clabroche/modules-help-backend@workspace:modules/help/backend":
version: 0.0.0-use.local
resolution: "@clabroche/modules-help-backend@workspace:modules/help/backend"
dependencies:
"@clabroche/common-retrigger-all-build": "workspace:*"
languageName: unknown
linkType: soft

"@clabroche/modules-help-front@workspace:modules/help/front":
version: 0.0.0-use.local
resolution: "@clabroche/modules-help-front@workspace:modules/help/front"
dependencies:
"@clabroche/common-retrigger-all-build": "workspace:*"
vue-eslint-parser: "npm:^9.4.2"
languageName: unknown
linkType: soft

"@clabroche/modules-json-formatter-backend@workspace:*, @clabroche/modules-json-formatter-backend@workspace:modules/json-formatter/backend":
version: 0.0.0-use.local
resolution: "@clabroche/modules-json-formatter-backend@workspace:modules/json-formatter/backend"
Expand Down Expand Up @@ -1387,6 +1404,7 @@ __metadata:
"@clabroche/modules-git-backend": "workspace:*"
"@clabroche/modules-github-backend": "workspace:*"
"@clabroche/modules-global-scripts-backend": "workspace:*"
"@clabroche/modules-help-backend": "workspace:*"
"@clabroche/modules-json-formatter-backend": "workspace:*"
"@clabroche/modules-jwt-backend": "workspace:*"
"@clabroche/modules-kanban-backend": "workspace:*"
Expand Down

0 comments on commit 62c1d4e

Please sign in to comment.