Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Krayin UI update #1277

Merged
merged 42 commits into from
Jul 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
590f451
krayin ui update
shivendra-webkul Jul 12, 2024
f1314ae
added datagrid
shivendra-webkul Jul 15, 2024
250d8e8
resolved conflicts
shivendra-webkul Jul 15, 2024
a02e3b5
fix datagrid
shivendra-webkul Jul 15, 2024
2e6cd98
fix side bar
shivendra-webkul Jul 15, 2024
cb0d7c3
Fixed person datagrid
shivendra-webkul Jul 15, 2024
c81cfa8
fix layout.
suraj-webkul Jul 15, 2024
cfb794e
Organisation index page datagrid.
suraj-webkul Jul 15, 2024
5ff7938
attribute inputs.
suraj-webkul Jul 15, 2024
7368187
Fix collapse of side bar
shivendra-webkul Jul 15, 2024
34f7700
refactor email custom attribute and redesign phone custom attribute
suraj-webkul Jul 15, 2024
fd88db0
refactor: code refactor.
suraj-webkul Jul 15, 2024
c4907db
update nav bar
shivendra-webkul Jul 16, 2024
3f13173
Sidebar update.
suraj-webkul Jul 16, 2024
0e6358f
Fixed sidebar UI
shivendra-webkul Jul 16, 2024
1652e54
Added dark theme feature and customer logout
shivendra-webkul Jul 16, 2024
6fbb94f
Lookup component is done.
suraj-webkul Jul 16, 2024
d7e5189
handle server validations and fix minor issues.
suraj-webkul Jul 16, 2024
541cc0c
added brand color
shivendra-webkul Jul 16, 2024
0eb1def
fixed body container background
shivendra-webkul Jul 16, 2024
c144720
datagrid ui changes.
suraj-webkul Jul 16, 2024
110f2fb
datagrid fix some bugs.
suraj-webkul Jul 16, 2024
3f8303a
Minor changes.
suraj-webkul Jul 16, 2024
d686aab
Datagrid shimmer and fix some datagrid mass related stuff.
suraj-webkul Jul 17, 2024
bfe2b50
added icon and fix width
shivendra-webkul Jul 17, 2024
ab623dc
Merge remote-tracking branch 'upstream/krayin-update' into krayin-update
shivendra-webkul Jul 17, 2024
fb9069b
fixed side menu
shivendra-webkul Jul 17, 2024
99d7acf
Datagrid drawer changes.
suraj-webkul Jul 17, 2024
df0caf2
close sidebar on click of outside the sidebar.
suraj-webkul Jul 17, 2024
dee3109
fixed sidebar
shivendra-webkul Jul 17, 2024
f9e89ee
fix the sidebar anchor and active button
suraj-webkul Jul 17, 2024
5916bb4
update icons
shivendra-webkul Jul 18, 2024
63d9f83
Fixed checkboxes
shivendra-webkul Jul 18, 2024
c8145fa
Mass actions.
suraj-webkul Jul 18, 2024
d234592
Organization section and apply font family.
suraj-webkul Jul 18, 2024
4c7df91
fixed gap and padding
shivendra-webkul Jul 18, 2024
e06cd43
Datagrid profile icon for row for person and dark theme.
suraj-webkul Jul 18, 2024
0e9521c
Minor issue.
suraj-webkul Jul 18, 2024
35bc651
fix organization and person datagrid
shivendra-webkul Jul 18, 2024
677a079
update product datagrid
shivendra-webkul Jul 18, 2024
8bf742c
Settings>Groups index page.
suraj-webkul Jul 18, 2024
36b5ac5
Add Translation.
suraj-webkul Jul 18, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
16 changes: 7 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
.env
.env.testing
.env.backup
.DS_Store
.phpunit.result.cache
docker-compose.override.yml
.idea
.php_cs.cache
.phpunit.result.cache
.vscode
todo.txt
.vagrant
*.hot
/stubs
/data
/docker-compose-collection
Homestead.json
Expand All @@ -17,14 +15,14 @@ Homestead.yaml
/node_modules
npm-debug.log
package-lock.json
/public/css
/public/fonts
/public/css
/public/js
/public/hot
/public/storage
/public/themes
/public/vendor
/lang/vendor
/storage/*.key
/storage/dcc-data/
/stubs
/vendor
yarn.lock
yarn-error.log
2 changes: 1 addition & 1 deletion app/Http/Middleware/EncryptCookies.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ class EncryptCookies extends Middleware
* @var array
*/
protected $except = [
//
'dark_mode',
];
}
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@
"Webkul\\User\\": "packages/Webkul/User/src",
"Webkul\\Warehouse\\": "packages/Webkul/Warehouse/src",
"Webkul\\WebForm\\": "packages/Webkul/WebForm/src",
"Webkul\\Workflow\\": "packages/Webkul/Workflow/src"
"Webkul\\Workflow\\": "packages/Webkul/Workflow/src",
"Webkul\\DataGrid\\": "packages/Webkul/DataGrid/src"
}
},
"autoload-dev": {
Expand Down
45 changes: 4 additions & 41 deletions config/app.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

use Illuminate\Support\Facades\Facade;

return [

/*
Expand Down Expand Up @@ -207,6 +209,7 @@
Illuminate\Translation\TranslationServiceProvider::class,
Illuminate\Validation\ValidationServiceProvider::class,
Illuminate\View\ViewServiceProvider::class,
Webkul\DataGrid\Providers\DataGridServiceProvider::class,

/*
* Package Service Providers...
Expand Down Expand Up @@ -255,46 +258,6 @@
|
*/

'aliases' => [

'App' => Illuminate\Support\Facades\App::class,
'Arr' => Illuminate\Support\Arr::class,
'Artisan' => Illuminate\Support\Facades\Artisan::class,
'Auth' => Illuminate\Support\Facades\Auth::class,
'Blade' => Illuminate\Support\Facades\Blade::class,
'Broadcast' => Illuminate\Support\Facades\Broadcast::class,
'Bus' => Illuminate\Support\Facades\Bus::class,
'Cache' => Illuminate\Support\Facades\Cache::class,
'Config' => Illuminate\Support\Facades\Config::class,
'Cookie' => Illuminate\Support\Facades\Cookie::class,
'Crypt' => Illuminate\Support\Facades\Crypt::class,
'DB' => Illuminate\Support\Facades\DB::class,
'Eloquent' => Illuminate\Database\Eloquent\Model::class,
'Event' => Illuminate\Support\Facades\Event::class,
'File' => Illuminate\Support\Facades\File::class,
'Gate' => Illuminate\Support\Facades\Gate::class,
'Hash' => Illuminate\Support\Facades\Hash::class,
'Http' => Illuminate\Support\Facades\Http::class,
'Lang' => Illuminate\Support\Facades\Lang::class,
'Log' => Illuminate\Support\Facades\Log::class,
'Mail' => Illuminate\Support\Facades\Mail::class,
'Notification' => Illuminate\Support\Facades\Notification::class,
'Password' => Illuminate\Support\Facades\Password::class,
'PDF' => Barryvdh\DomPDF\Facade\Pdf::class,
'Queue' => Illuminate\Support\Facades\Queue::class,
'Redirect' => Illuminate\Support\Facades\Redirect::class,
// 'Redis' => Illuminate\Support\Facades\Redis::class,
'Request' => Illuminate\Support\Facades\Request::class,
'Response' => Illuminate\Support\Facades\Response::class,
'Route' => Illuminate\Support\Facades\Route::class,
'Schema' => Illuminate\Support\Facades\Schema::class,
'Session' => Illuminate\Support\Facades\Session::class,
'Storage' => Illuminate\Support\Facades\Storage::class,
'Str' => Illuminate\Support\Str::class,
'URL' => Illuminate\Support\Facades\URL::class,
'Validator' => Illuminate\Support\Facades\Validator::class,
'View' => Illuminate\Support\Facades\View::class,
'Menu' => Webkul\Admin\Facades\Menu::class,
],
'aliases' => Facade::defaultAliases()->merge([])->toArray(),

];
2 changes: 1 addition & 1 deletion config/concord.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
\Webkul\Attribute\Providers\ModuleServiceProvider::class,
\Webkul\Contact\Providers\ModuleServiceProvider::class,
\Webkul\Core\Providers\ModuleServiceProvider::class,
\Webkul\DataGrid\Providers\ModuleServiceProvider::class,
\Webkul\Email\Providers\ModuleServiceProvider::class,
\Webkul\EmailTemplate\Providers\ModuleServiceProvider::class,
\Webkul\Lead\Providers\ModuleServiceProvider::class,
Expand All @@ -15,7 +16,6 @@
\Webkul\Tag\Providers\ModuleServiceProvider::class,
\Webkul\UI\Providers\ModuleServiceProvider::class,
\Webkul\User\Providers\ModuleServiceProvider::class,
\Webkul\Warehouse\Providers\ModuleServiceProvider::class,
\Webkul\WebForm\Providers\ModuleServiceProvider::class,
\Webkul\Workflow\Providers\ModuleServiceProvider::class,
],
Expand Down
66 changes: 58 additions & 8 deletions config/debugbar.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,14 @@
| By default, file storage (in the storage folder) is used. Redis and PDO
| can also be used. For PDO, run the package migrations first.
|
| Warning: Enabling storage.open will allow everyone to access previous
| request, do not enable open storage in publicly available environments!
| Specify a callback if you want to limit based on IP or authentication.
| Leaving it to null will allow localhost only.
*/
'storage' => [
'enabled' => true,
'open' => env('DEBUGBAR_OPEN_STORAGE'), // bool/callback.
'driver' => 'file', // redis, file, pdo, socket, custom
'path' => storage_path('debugbar'), // For file driver
'connection' => null, // Leave null for default connection (Redis/PDO)
Expand All @@ -56,7 +61,7 @@
|
*/

'editor' => env('DEBUGBAR_EDITOR', 'phpstorm'),
'editor' => env('DEBUGBAR_EDITOR') ?: env('IGNITION_EDITOR', 'phpstorm'),

/*
|--------------------------------------------------------------------------
Expand All @@ -81,8 +86,8 @@
|
*/

'remote_sites_path' => env('DEBUGBAR_REMOTE_SITES_PATH', ''),
'local_sites_path' => env('DEBUGBAR_LOCAL_SITES_PATH', ''),
'remote_sites_path' => env('DEBUGBAR_REMOTE_SITES_PATH'),
'local_sites_path' => env('DEBUGBAR_LOCAL_SITES_PATH', env('IGNITION_LOCAL_SITES_PATH')),

/*
|--------------------------------------------------------------------------
Expand All @@ -92,7 +97,7 @@
| Vendor files are included by default, but can be set to false.
| This can also be set to 'js' or 'css', to only include javascript or css vendor files.
| Vendor files are for css: font-awesome (including fonts) and highlight.js (css files)
| and for js: jquery and and highlight.js
| and for js: jquery and highlight.js
| So if you want syntax highlighting, set it to true.
| jQuery is set to not conflict with existing jQuery scripts.
|
Expand All @@ -112,10 +117,15 @@
|
| Note for your request to be identified as ajax requests they must either send the header
| X-Requested-With with the value XMLHttpRequest (most JS libraries send this), or have application/json as a Accept header.
|
| By default `ajax_handler_auto_show` is set to true allowing ajax requests to be shown automatically in the Debugbar.
| Changing `ajax_handler_auto_show` to false will prevent the Debugbar from reloading.
*/

'capture_ajax' => true,
'add_ajax_timing' => false,
'ajax_handler_auto_show' => true,
'ajax_handler_enable_tab' => true,

/*
|--------------------------------------------------------------------------
Expand Down Expand Up @@ -172,6 +182,7 @@
'cache' => false, // Display cache events
'models' => true, // Display models
'livewire' => true, // Display Livewire (when available)
'jobs' => false, // Display dispatched jobs
],

/*
Expand All @@ -184,8 +195,20 @@
*/

'options' => [
'time' => [
'memory_usage' => false, // Calculated by subtracting memory start and end, it may be inaccurate
],
'messages' => [
'trace' => true, // Trace the origin of the debug message
],
'memory' => [
'reset_peak' => false, // run memory_reset_peak_usage before collecting
'with_baseline' => false, // Set boot memory usage as memory peak baseline
'precision' => 0, // Memory rounding precision
],
'auth' => [
'show_name' => true, // Also show the users name/email in the debugbar
'show_guards' => true, // Show the guards that are used
],
'db' => [
'with_params' => true, // Render SQL with the parameters substituted
Expand All @@ -198,18 +221,36 @@
'types' => ['SELECT'], // Deprecated setting, is always only SELECT
],
'hints' => false, // Show hints for common mistakes
'show_copy' => false, // Show copy button next to the query
'show_copy' => false, // Show copy button next to the query,
'slow_threshold' => false, // Only track queries that last longer than this time in ms
'memory_usage' => false, // Show queries memory usage
'soft_limit' => 100, // After the soft limit, no parameters/backtrace are captured
'hard_limit' => 500, // After the hard limit, queries are ignored
],
'mail' => [
'full_log' => false,
'timeline' => false, // Add mails to the timeline
'show_body' => true,
],
'views' => [
'timeline' => false, // Add the views to the timeline (Experimental)
'data' => false, //Note: Can slow down the application, because the data can be quite large..
'timeline' => false, // Add the views to the timeline (Experimental)
'data' => false, //true for all data, 'keys' for only names, false for no parameters.
'group' => 50, // Group duplicate views. Pass value to auto-group, or true/false to force
'exclude_paths' => [ // Add the paths which you don't want to appear in the views
'vendor/filament' // Exclude Filament components by default
],
],
'route' => [
'label' => true, // show complete route on bar
],
'session' => [
'hiddens' => [], // hides sensitive values using array paths
],
'symfony_request' => [
'hiddens' => [], // hides sensitive values using array paths, example: request_request.password
],
'events' => [
'data' => false, // collect events data, listeners
],
'logs' => [
'file' => null,
],
Expand Down Expand Up @@ -243,6 +284,15 @@
*/
'route_prefix' => '_debugbar',

/*
|--------------------------------------------------------------------------
| DebugBar route middleware
|--------------------------------------------------------------------------
|
| Additional middleware to run on the Debugbar routes
*/
'route_middleware' => [],

/*
|--------------------------------------------------------------------------
| DebugBar route domain
Expand Down
2 changes: 1 addition & 1 deletion config/dompdf.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
*
* The directory specified must be writeable by the webserver process.
* The temporary directory is required to download remote images and when
* using the PFDLib back end.
* using the PDFLib back end.
*/
"temp_dir" => sys_get_temp_dir(),

Expand Down
Loading
Loading