Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions addon/extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ export default {
const menuService = universe.getService('menu');

// Register menu item in header
// const iconOptions = { iconComponent: new ExtensionComponent('@fleetbase/solid-engine', 'solid-brand-icon'), iconComponentOptions: { width: 19, height: 19 } };
menuService.registerHeaderMenuItem('Solid', 'console.solid-protocol', { priority: 5 });
const iconOptions = { iconComponent: new ExtensionComponent('@fleetbase/solid-engine', 'solid-brand-icon'), iconComponentOptions: { width: 19, height: 19 } };
menuService.registerHeaderMenuItem('Solid', 'console.solid-protocol', { ...iconOptions, priority: 5 });

// Register admin settings -- create a solid server menu panel with it's own setting options
universe.registerAdminMenuPanel(
Expand Down
29 changes: 0 additions & 29 deletions addon/templates/home.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -58,35 +58,6 @@
</div>
</ContentPanel>

<ContentPanel @title="Quick Actions" @open={{true}} @wrapperClass="bordered-classic">
<div class="grid grid-cols-1 md:grid-cols-3 gap-4">
<div class="text-center p-6 bg-gray-50 dark:bg-gray-700 rounded-lg">
<FaIcon @icon="folder-tree" @size="2x" class="text-blue-600 dark:text-blue-400 mb-3" />
<h3 class="text-lg font-semibold text-gray-900 dark:text-white mb-2">Browse Data</h3>
<p class="text-gray-600 dark:text-gray-400 mb-4">Explore and manage your Fleetops data in Solid</p>
<div class="flex items-center justify-center">
<Button @text="Browse Data" @icon="database" @type="primary" class="w-full" @onClick={{perform this.navigateToPods}} />
</div>
</div>
<div class="text-center p-6 bg-gray-50 dark:bg-gray-700 rounded-lg">
<FaIcon @icon="user" @size="2x" class="text-green-600 dark:text-green-400 mb-3" />
<h3 class="text-lg font-semibold text-gray-900 dark:text-white mb-2">Account Settings</h3>
<p class="text-gray-600 dark:text-gray-400 mb-4">Manage your account and profile settings</p>
<div class="flex items-center justify-center">
<Button @text="Account" @icon="user" @type="secondary" class="w-full" @onClick={{perform this.navigateToAccount}} />
</div>
</div>
<div class="text-center p-6 bg-gray-50 dark:bg-gray-700 rounded-lg">
<FaIcon @icon="sync" @size="2x" class="text-purple-600 dark:text-purple-400 mb-3" />
<h3 class="text-lg font-semibold text-gray-900 dark:text-white mb-2">Sync Data</h3>
<p class="text-gray-600 dark:text-gray-400 mb-4">Sync your Fleetbase data to Solid storage</p>
<div class="flex items-center justify-center">
<Button @text="Coming Soon" @icon="sync" @disabled={{true}} />
</div>
</div>
</div>
</ContentPanel>

<ContentPanel @title="Connection Status" @open={{true}} @wrapperClass="bordered-classic">
<div class="space-y-3">
<div class="flex items-center">
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fleetbase/solid-api",
"version": "0.0.5",
"version": "0.0.6",
"description": "Solid Protocol Extension to Store and Share Data with Fleetbase",
"keywords": [
"fleetbase-extension",
Expand Down
2 changes: 1 addition & 1 deletion extension.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Solid",
"version": "0.0.5",
"version": "0.0.6",
"description": "Solid Protocol Extension to Store and Share Data with Fleetbase",
"repository": "https://github.com/fleetbase/solid",
"license": "AGPL-3.0-or-later",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fleetbase/solid-engine",
"version": "0.0.5",
"version": "0.0.6",
"description": "Solid Protocol Extension to Store and Share Data with Fleetbase",
"fleetbase": {
"route": "solid-protocol"
Expand Down Expand Up @@ -46,7 +46,7 @@
"dependencies": {
"@babel/core": "^7.23.2",
"@fleetbase/ember-core": "^0.3.9",
"@fleetbase/ember-ui": "^0.3.15",
"@fleetbase/ember-ui": "^0.3.16",
"@fleetbase/fleetops-data": "^0.1.24",
"@fortawesome/ember-fontawesome": "^2.0.0",
"@fortawesome/fontawesome-svg-core": "6.4.0",
Expand Down
Loading
Loading