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

refactor: history registry table refactored to pinia + typescript, bu… #269

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
6ee9ba6
refactor: history registry table refactored to pinia + typescript, bu…
dlohvinov Dec 11, 2024
81bb702
Merge branch 'refs/heads/master' into refactor/registry-table-pinia-s…
dlohvinov Jan 2, 2025
8d5bd71
feat: implementing dynamic filter CRUD [WTEL-5622]
dlohvinov Jan 3, 2025
5deebb6
refactor: implemented v2 filters persistence prototype on history [WT…
dlohvinov Jan 9, 2025
016f78c
refactor: history registry table layouts reorganization [WTEL-3749](h…
dlohvinov Jan 11, 2025
a2080e3
refactor: history filters redesign in progress [WTEL-5925](https://we…
dlohvinov Jan 15, 2025
e185b43
feat:history createdAtFrom filter value field [WTEL-5916](https://web…
dlohvinov Jan 17, 2025
b3ce265
feat: history duration, user, variables filter value fields [WTEL-591…
dlohvinov Jan 17, 2025
ba08428
feat: history searches filter, v2 filters typing and refactors [WTEL-…
dlohvinov Jan 19, 2025
9adada6
feat: filters v2 loadDataList after filters change [WTEL-5923](https:…
dlohvinov Jan 19, 2025
1c7b5eb
feat: show filters toggle action badge when any filters are applied […
dlohvinov Jan 19, 2025
0f9668d
feat: registry presets in progress [WTEL-3751](https://webitel.atlass…
dlohvinov Jan 20, 2025
c6f4196
fix: preset features in progress [WTEL-3751](https://webitel.atlassia…
dlohvinov Jan 22, 2025
53e28d0
refactor: history registry refactor with pinia store [WTEL-5921](http…
dlohvinov Jan 22, 2025
f7aa699
Merge branch 'master' into refactor/registry-table-pinia-store
dlohvinov Jan 22, 2025
df19359
refactor: history registry refactor with pinia store [WTEL-5921](http…
dlohvinov Jan 24, 2025
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
43 changes: 30 additions & 13 deletions .env.development
Original file line number Diff line number Diff line change
@@ -1,16 +1,33 @@
VITE_API_URL = 'https://dev.webitel.com/api'
VITE_API_URL = 'https://test.webitel.me/api'
VITE_CHAT_URL = 'chat'

VITE_AUTH_URL = 'http://dev.webitel.com/app/auth'
VITE_AUTH_URL = 'http://test.webitel.me/app/auth'

VITE_ADMIN_URL = 'https://dev.webitel.com/admin'
VITE_AGENT_URL = 'https://dev.webitel.com/workspace'
VITE_SUPERVISOR_URL ='https://dev.webitel.com/supervisor'
VITE_AUDIT_URL = 'https://dev.webitel.com/audit'
VITE_HISTORY_URL = 'https://dev.webitel.com/history'
VITE_GRAFANA_URL = 'https://dev.webitel.com/grafana'
VITE_CRM_URL = 'https://dev.webitel.com/crm'
VITE_OMNI_WIDGET_URL = 'https://dev.webitel.com/omni-widget'
VITE_FLOW_DIAGRAM_URL = 'https://dev.webitel.com/flow-diagram'
VITE_SETTINGS_URL = 'https://dev.webitel.com/settings'
VITE_START_PAGE_URL = 'https://dev.webitel.com'
VITE_ADMIN_URL = 'https://test.webitel.me/admin'
VITE_AGENT_URL = 'https://test.webitel.me/workspace'
VITE_SUPERVISOR_URL ='https://test.webitel.me/supervisor'
VITE_AUDIT_URL = 'https://test.webitel.me/audit'
VITE_HISTORY_URL = 'https://test.webitel.me/history'
VITE_GRAFANA_URL = 'https://test.webitel.me/grafana'
VITE_CRM_URL = 'https://test.webitel.me/crm'
VITE_OMNI_WIDGET_URL = 'https://test.webitel.me/omni-widget'
VITE_FLOW_DIAGRAM_URL = 'https://test.webitel.me/flow-diagram'
VITE_SETTINGS_URL = 'https://test.webitel.me/settings'
VITE_START_PAGE_URL = 'https://test.webitel.me'

#VITE_API_URL = 'https://dev.webitel.com/api'
#VITE_CHAT_URL = 'chat'
#
#VITE_AUTH_URL = 'http://dev.webitel.com/app/auth'
#
#VITE_ADMIN_URL = 'https://dev.webitel.com/admin'
#VITE_AGENT_URL = 'https://dev.webitel.com/workspace'
#VITE_SUPERVISOR_URL ='https://dev.webitel.com/supervisor'
#VITE_AUDIT_URL = 'https://dev.webitel.com/audit'
#VITE_HISTORY_URL = 'https://dev.webitel.com/history'
#VITE_GRAFANA_URL = 'https://dev.webitel.com/grafana'
#VITE_CRM_URL = 'https://dev.webitel.com/crm'
#VITE_OMNI_WIDGET_URL = 'https://dev.webitel.com/omni-widget'
#VITE_FLOW_DIAGRAM_URL = 'https://dev.webitel.com/flow-diagram'
#VITE_SETTINGS_URL = 'https://dev.webitel.com/settings'
#VITE_START_PAGE_URL = 'https://dev.webitel.com'
27 changes: 23 additions & 4 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,26 @@
import pluginVue from 'eslint-plugin-vue';
import eslint from '@eslint/js';
import eslintConfigPrettier from 'eslint-config-prettier';
import eslintPluginVue from 'eslint-plugin-vue';
import globals from 'globals';
import typescriptEslint from 'typescript-eslint';

export default [
...pluginVue.configs['flat/recommended'],
export default typescriptEslint.config(
{ ignores: ['*.d.ts', '**/coverage', '**/dist'] },
{
extends: [
eslint.configs.recommended,
...typescriptEslint.configs.recommended,
...eslintPluginVue.configs['flat/recommended'],
],
files: ['**/*.{js,ts,vue}'],
languageOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
globals: globals.browser,
parserOptions: {
parser: typescriptEslint.parser,
},
},
rules: {
'no-console': 'off',
'no-debugger': 'off',
Expand All @@ -14,4 +32,5 @@ export default [
'no-param-reassign': ['error', { props: false }],
},
},
];
eslintConfigPrettier,
);
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
<strong>We're sorry but web-client doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
Loading
Loading