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

feat: new messages endpoint #287

Merged
merged 23 commits into from
Feb 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
4161f37
revert: openapi-ts upgrade
alex-mcgovern Feb 6, 2025
253750b
feat: show all alerts in dashboard table
alex-mcgovern Feb 6, 2025
fbb0949
Merge branch 'main' of github.com:stacklok/codegate-ui into feat/new-…
alex-mcgovern Feb 10, 2025
95dc684
refactor: continue replace alerts with messages
alex-mcgovern Feb 10, 2025
6f116c7
fix(project structure): issues with cross-feature leakage
alex-mcgovern Feb 10, 2025
09260cf
fix layout, and beging building conversation summary functionality
alex-mcgovern Feb 10, 2025
7a15dc8
deduplicate alerts & render secrets in conversation summary
alex-mcgovern Feb 10, 2025
20158bc
fix: dial back de-duplication logic
alex-mcgovern Feb 10, 2025
6eebb19
chore: util function for MSW endpoint
alex-mcgovern Feb 11, 2025
b789f3c
chore: apply msw endpoint to handlers
alex-mcgovern Feb 11, 2025
02069c0
chore: mockers for API responses
alex-mcgovern Feb 11, 2025
c2b3ac3
chore: add eslint rule to enforce safe msw usage
alex-mcgovern Feb 11, 2025
567916a
chore: apply new MSW approach across codebase
alex-mcgovern Feb 11, 2025
ad01d09
Merge branch 'chore/safe-msw-endpoint-access' of github.com:stacklok/…
alex-mcgovern Feb 11, 2025
d0bae32
Merge branch 'main' of github.com:stacklok/codegate-ui into feat/new-…
alex-mcgovern Feb 11, 2025
39b9102
fix: remove de-duplication logic
alex-mcgovern Feb 11, 2025
22fe4a4
tidy up conversation detail with tabs, add tests
alex-mcgovern Feb 11, 2025
a9da343
Merge branch 'main' of github.com:stacklok/codegate-ui into feat/new-…
alex-mcgovern Feb 11, 2025
fc934b5
visual improvements to conversation view
alex-mcgovern Feb 11, 2025
2ea3fe5
fix: tests
alex-mcgovern Feb 11, 2025
a38d0dc
chore: tidy ups
alex-mcgovern Feb 11, 2025
d1165b3
fix flaky test
alex-mcgovern Feb 11, 2025
c2a966b
fix vitest & istanbul mismatch causing flakiness
alex-mcgovern Feb 11, 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
113 changes: 109 additions & 4 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,66 @@
import js from "@eslint/js";
import globals from "globals";
import importPlugin from "eslint-plugin-import";
import reactHooks from "eslint-plugin-react-hooks";
import reactRefresh from "eslint-plugin-react-refresh";
import tseslint from "typescript-eslint";
import tailwindPlugin from "eslint-plugin-tailwindcss";
import path from "path";
import fs from "fs";

const FEATURES_DIR = "./src/features";

/**
* Traverse the features directory and return an array of restricted paths for
* use in the `import/no-restricted-paths` rule.
*
* @example
* ```js
* [
* {
* except: [ './dependencies' ],
* from: './src/features',
* target: './src/features/dependencies'
* },
* {
* except: [ './versions' ],
* from: './src/features',
* target: './src/features/versions'
* },
* {
* except: [ './vulnerabilities' ],
* from: './src/features',
* target: './src/features/vulnerabilities'
* }
* ]
* ```
*/
const getRestrictedPathsForFeatureDir = () => {
const featureDirPath = path.resolve(FEATURES_DIR);
/**
* @type {Array<{except: `./${string}`[], from: './src/features', target: string}>}
*/
const restrictedPaths = [];

try {
const featureDirs = fs.readdirSync(featureDirPath);

featureDirs.forEach((featureDir) => {
const subPath = path.join(featureDirPath, featureDir);
if (fs.lstatSync(subPath).isDirectory()) {
restrictedPaths.push({
except: [`./${featureDir}`],
from: FEATURES_DIR,
target: path.join(FEATURES_DIR, featureDir),
});
}
});
} catch (error) {
console.error("Error reading features directory:", error);
}

return restrictedPaths;
};

const restrictedSyntax = {
reactQuery: {
Expand All @@ -24,15 +81,29 @@ export default tseslint.config(
],
files: ["**/*.{ts,tsx}"],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
parserOptions: {
projectService: true,
tsconfigRootDir: import.meta.dirname,
ecmaFeatures: {
jsx: true,
},
},
globals: {
...globals.browser,
...globals.node,
},
},
plugins: {
"react-hooks": reactHooks,
"react-refresh": reactRefresh,
import: importPlugin,
},

settings: {
"import/resolver": {
typescript: true,
node: true,
},

tailwindcss: {
callees: ["tv", "twMerge"],
config: "./tailwind.config.ts",
Expand Down Expand Up @@ -132,6 +203,40 @@ export default tseslint.config(
],
},
],
"import/no-restricted-paths": [
"error",
{
zones: [
// disables cross-feature imports:
// eg. src/features/dashboard-alerts should not import from src/features/dashboard-messages, etc.
...getRestrictedPathsForFeatureDir(),

// enforce unidirectional codebase:
// e.g. src/routes can import from src/features but not the other way around
{
from: "./src/routes",
target: "./src/features",
},

// enforce unidirectional codebase:
// e.g src/features and src/routes can import from these shared modules but not the other way around
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice

{
from: ["./src/features", "./src/routes"],
target: [
"./src/components",
"./src/constants",
"./src/hooks",
"./src/i18n",
"./src/lib",
"./src/mocks",
"./src/trusty-api",
"./src/types",
"./src/utils",
],
},
],
},
],
},
},
}
);
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
Expand Down
7 changes: 7 additions & 0 deletions knip.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"$schema": "https://unpkg.com/knip@5/schema.json",
"entry": ["src/main.tsx"],
"ignore": ["src/api/generated/**/*"],
"ignoreDependencies": ["husky"],
"project": ["src/**/*.{js,jsx,ts,tsx}"]
}
10 changes: 0 additions & 10 deletions knip.ts

This file was deleted.

Loading
Loading