Compare commits
70 Commits
75fd042d74
...
v1.0
| Author | SHA1 | Date | |
|---|---|---|---|
| 5970f555fa | |||
| 9b7a51ff33 | |||
| 2d39ea6e66 | |||
| c1e5482f55 | |||
| b2d7f6edaf | |||
| 10efa664df | |||
| 3db7c1d3ae | |||
| 72e17e900e | |||
| 7b9a17f395 | |||
| 0a396dd504 | |||
| c6e8144116 | |||
| 760d2daf7f | |||
| ca38b992eb | |||
| ee9c7b4ab2 | |||
| 703a7c435c | |||
| 02ba727d05 | |||
| 76591bc89e | |||
| e35e51d295 | |||
| d2fe637743 | |||
| e1831aab7d | |||
| a3ef5a5655 | |||
| 5f943ce733 | |||
| 9964a919c3 | |||
| c11434344a | |||
| bc356848ef | |||
| 047427432f | |||
| d0d02e9ebf | |||
| 68342606e3 | |||
| afae7f42a1 | |||
| 4dd2721e98 | |||
| 99afe82464 | |||
| 8c44df94c0 | |||
| 42905cc547 | |||
| ec64551881 | |||
| e274b8295a | |||
| 3df6776111 | |||
| a347869353 | |||
| 8b4e13702e | |||
| 8fa4f3fbdf | |||
| c6cae040f0 | |||
| addc1d4087 | |||
| 225133a074 | |||
| e903e1b738 | |||
| 0c4dc02852 | |||
| 33e4291def | |||
| cedbce128e | |||
| 107dae0e95 | |||
| 23833e2c5b | |||
| f2b6917f1f | |||
| b57a8d3c65 | |||
| ac65e26eab | |||
| 6efa75dfe6 | |||
| de61e7653f | |||
| 98aa04256b | |||
| 5f81c51979 | |||
| 361b532766 | |||
| 9ef96661fc | |||
| 9375abded5 | |||
| 74ecdf238a | |||
| b85987e179 | |||
| 37d08c63b8 | |||
| 1482e96051 | |||
| cd6030a760 | |||
| 6378015726 | |||
| 430793cd09 | |||
| b270ed03ae | |||
| 1dde5f7b08 | |||
| a841c6f6a1 | |||
| 2045ccebb5 | |||
| efb4c8384d |
3
.gitignore
vendored
@@ -12,4 +12,5 @@ dist/
|
|||||||
|
|
||||||
helper
|
helper
|
||||||
db
|
db
|
||||||
report/build
|
report/build
|
||||||
|
.DS_Store
|
||||||
60
README.md
@@ -1,29 +1,49 @@
|
|||||||
# crosspost
|
# crosspost
|
||||||
**crosspost** is a browser-based tool designed to support *digital ethnography*, the study of how people interact, communicate, and form culture in online spaces such as forums, social media platforms, and comment-driven communities.
|
A web-based analytics platform for exploring online communities. Built as a final year CS project at UCC, crosspost ingests data from Reddit, YouTube, and Boards.ie, runs NLP analysis on it (emotion detection, topic classification, named entity recognition, stance markers), and surfaces the results through an interactive dashboard.
|
||||||
|
The motivating use case is digital ethnography — studying how people talk, what they talk about, and how culture forms in online spaces. The included dataset is centred on Cork, Ireland.
|
||||||
|
|
||||||
The project aims to make it easier for students, researchers, and journalists to collect, organise, and explore online discourse in a structured and ethical way, without requiring deep technical expertise.
|
## What it does
|
||||||
|
- Fetch posts and comments from Reddit, YouTube, and Boards.ie (or upload your own .jsonl file)
|
||||||
|
- Normalise everything into a unified schema regardless of source
|
||||||
|
- Run NLP analysis asynchronously in the background via Celery workers
|
||||||
|
- Explore results through a tabbed dashboard: temporal patterns, word clouds, emotion breakdowns, user activity, interaction graphs, topic clusters, and more
|
||||||
|
- Multi-user support — each user has their own datasets, isolated from everyone else
|
||||||
|
|
||||||
By combining data ingestion, analysis, and visualisation in a single system, crosspost turns raw online interactions into meaningful insights about how conversations emerge, evolve, and spread across platforms.
|
# Prerequisites
|
||||||
|
- Docker & Docker Compose
|
||||||
|
- A Reddit App (client id & secret)
|
||||||
|
- YouTube Data v3 API Key
|
||||||
|
|
||||||
## Goals for this project
|
# Setup
|
||||||
- Collect data ethically: enable users to link/upload text, images, and interaction data (messages etc) from specified online communities. Potentially and automated method for importing (using APIs or scraping techniques) could be included as well.
|
1) **Clone the Repo**
|
||||||
- Organise content: Store gathered material in a structured database with tagging for themes, dates, and sources.
|
```
|
||||||
Analyse patterns: Use natural language processing (NLP) to detect frequent keywords, sentiment, and interaction networks.
|
git clone https://github.com/your-username/crosspost.git
|
||||||
- Visualise insights: Present findings as charts, timelines, and network diagrams to reveal how conversations and topics evolve.
|
cd crosspost
|
||||||
- Have clearly stated and explained ethical and privacy guidelines for users. The student will design the architecture, implement data pipelines, integrate basic NLP models, and create an interactive dashboard.
|
```
|
||||||
|
|
||||||
Beyond programming, the project involves applying ethical research principles, handling data responsibly, and designing for non-technical users. By the end, the project will demonstrate how computer science can bridge technology and social research — turning raw online interactions into meaningful cultural insights.
|
2) **Configure Enviornment Vars**
|
||||||
|
```
|
||||||
|
cp example.env .env
|
||||||
|
```
|
||||||
|
Fill in each required empty env. Some are already filled in, these are sensible defaults that usually don't need to be changed
|
||||||
|
|
||||||
## Scope
|
3) **Start everything**
|
||||||
|
```
|
||||||
|
docker compose up -d
|
||||||
|
```
|
||||||
|
|
||||||
This project focuses on:
|
This starts:
|
||||||
- Designing a modular data ingestion pipeline
|
- `crosspost_db` — PostgreSQL on port 5432
|
||||||
- Implementing backend data processing and storage
|
- `crosspost_redis` — Redis on port 6379
|
||||||
- Integrating lightweight NLP-based analysis
|
- `crosspost_flask` — Flask API on port 5000
|
||||||
- Building a simple, accessible frontend for exploration and visualisation
|
- `crosspost_worker` — Celery worker for background NLP/fetching tasks
|
||||||
|
- `crosspost_frontend` — Vite dev server on port 5173
|
||||||
|
|
||||||
# Requirements
|
# Data Format for Manual Uploads
|
||||||
|
If you want to upload your own data rather than fetch it via the connectors, the expected format is newline-delimited JSON (.jsonl) where each line is a post object:
|
||||||
|
```json
|
||||||
|
{"id": "abc123", "author": "username", "title": "Post title", "content": "Post body", "url": "https://...", "timestamp": 1700000000.0, "source": "reddit", "comments": []}
|
||||||
|
```
|
||||||
|
|
||||||
- **Python** ≥ 3.9
|
# Notes
|
||||||
- **Python packages** listed in `requirements.txt`
|
- **GPU support**: The Celery worker is configured with `--pool=solo` to avoid memory conflicts when multiple NLP models are loaded. If you have an NVIDIA GPU, uncomment the deploy.resources block in docker-compose.yml and make sure the NVIDIA Container Toolkit is installed.
|
||||||
- npm ≥ version 11
|
|
||||||
@@ -28,7 +28,7 @@ services:
|
|||||||
- .env
|
- .env
|
||||||
ports:
|
ports:
|
||||||
- "5000:5000"
|
- "5000:5000"
|
||||||
command: flask --app server.app run --host=0.0.0.0 --debug
|
command: gunicorn server.app:app --bind 0.0.0.0:5000 --workers 2 --threads 4
|
||||||
depends_on:
|
depends_on:
|
||||||
- postgres
|
- postgres
|
||||||
- redis
|
- redis
|
||||||
@@ -48,13 +48,13 @@ services:
|
|||||||
depends_on:
|
depends_on:
|
||||||
- postgres
|
- postgres
|
||||||
- redis
|
- redis
|
||||||
# deploy:
|
deploy:
|
||||||
# resources:
|
resources:
|
||||||
# reservations:
|
reservations:
|
||||||
# devices:
|
devices:
|
||||||
# - driver: nvidia
|
- driver: nvidia
|
||||||
# count: 1
|
count: 1
|
||||||
# capabilities: [gpu]
|
capabilities: [gpu]
|
||||||
|
|
||||||
frontend:
|
frontend:
|
||||||
build:
|
build:
|
||||||
@@ -69,4 +69,4 @@ services:
|
|||||||
- backend
|
- backend
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
model_cache:
|
model_cache:
|
||||||
|
|||||||
@@ -1,8 +0,0 @@
|
|||||||
# Generic User Data Transfer Object for social media platforms
|
|
||||||
class User:
|
|
||||||
def __init__(self, username: str, created_utc: int, ):
|
|
||||||
self.username = username
|
|
||||||
self.created_utc = created_utc
|
|
||||||
|
|
||||||
# Optionals
|
|
||||||
self.karma = None
|
|
||||||
13
example.env
@@ -1,13 +1,16 @@
|
|||||||
# API Keys
|
# API Keys
|
||||||
YOUTUBE_API_KEY=
|
YOUTUBE_API_KEY=
|
||||||
|
REDDIT_CLIENT_ID=
|
||||||
|
REDDIT_CLIENT_SECRET=
|
||||||
|
|
||||||
# Database
|
# Database
|
||||||
POSTGRES_USER=
|
# Database
|
||||||
POSTGRES_PASSWORD=
|
POSTGRES_USER=postgres
|
||||||
POSTGRES_DB=
|
POSTGRES_PASSWORD=postgres
|
||||||
POSTGRES_HOST=
|
POSTGRES_DB=mydatabase
|
||||||
|
POSTGRES_HOST=postgres
|
||||||
POSTGRES_PORT=5432
|
POSTGRES_PORT=5432
|
||||||
POSTGRES_DIR=
|
POSTGRES_DIR=./db
|
||||||
|
|
||||||
# JWT
|
# JWT
|
||||||
JWT_SECRET_KEY=
|
JWT_SECRET_KEY=
|
||||||
|
|||||||
@@ -10,4 +10,4 @@ COPY . .
|
|||||||
|
|
||||||
EXPOSE 5173
|
EXPOSE 5173
|
||||||
|
|
||||||
CMD ["npm", "run", "dev", "--", "--host"]
|
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0"]
|
||||||
@@ -5,7 +5,7 @@ import DatasetsPage from "./pages/Datasets";
|
|||||||
import DatasetStatusPage from "./pages/DatasetStatus";
|
import DatasetStatusPage from "./pages/DatasetStatus";
|
||||||
import LoginPage from "./pages/Login";
|
import LoginPage from "./pages/Login";
|
||||||
import UploadPage from "./pages/Upload";
|
import UploadPage from "./pages/Upload";
|
||||||
import AutoScrapePage from "./pages/AutoScrape";
|
import AutoFetchPage from "./pages/AutoFetch";
|
||||||
import StatPage from "./pages/Stats";
|
import StatPage from "./pages/Stats";
|
||||||
import { getDocumentTitle } from "./utils/documentTitle";
|
import { getDocumentTitle } from "./utils/documentTitle";
|
||||||
import DatasetEditPage from "./pages/DatasetEdit";
|
import DatasetEditPage from "./pages/DatasetEdit";
|
||||||
@@ -23,7 +23,7 @@ function App() {
|
|||||||
<Route path="/" element={<Navigate to="/login" replace />} />
|
<Route path="/" element={<Navigate to="/login" replace />} />
|
||||||
<Route path="/login" element={<LoginPage />} />
|
<Route path="/login" element={<LoginPage />} />
|
||||||
<Route path="/upload" element={<UploadPage />} />
|
<Route path="/upload" element={<UploadPage />} />
|
||||||
<Route path="/auto-scrape" element={<AutoScrapePage />} />
|
<Route path="/auto-fetch" element={<AutoFetchPage />} />
|
||||||
<Route path="/datasets" element={<DatasetsPage />} />
|
<Route path="/datasets" element={<DatasetsPage />} />
|
||||||
<Route path="/dataset/:datasetId/status" element={<DatasetStatusPage />} />
|
<Route path="/dataset/:datasetId/status" element={<DatasetStatusPage />} />
|
||||||
<Route path="/dataset/:datasetId/stats" element={<StatPage />} />
|
<Route path="/dataset/:datasetId/stats" element={<StatPage />} />
|
||||||
|
|||||||
247
frontend/src/components/CorpusExplorer.tsx
Normal file
@@ -0,0 +1,247 @@
|
|||||||
|
import { useEffect, useState } from "react";
|
||||||
|
import { Dialog, DialogPanel, DialogTitle } from "@headlessui/react";
|
||||||
|
|
||||||
|
import StatsStyling from "../styles/stats_styling";
|
||||||
|
import type { DatasetRecord } from "../utils/corpusExplorer";
|
||||||
|
|
||||||
|
const styles = StatsStyling;
|
||||||
|
const INITIAL_RECORD_COUNT = 60;
|
||||||
|
const RECORD_BATCH_SIZE = 60;
|
||||||
|
const EXCERPT_LENGTH = 320;
|
||||||
|
|
||||||
|
const cleanText = (value: unknown) => {
|
||||||
|
if (typeof value !== "string") {
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
const trimmed = value.trim();
|
||||||
|
if (!trimmed) {
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
const lowered = trimmed.toLowerCase();
|
||||||
|
if (lowered === "nan" || lowered === "null" || lowered === "undefined") {
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
return trimmed;
|
||||||
|
};
|
||||||
|
|
||||||
|
const displayText = (value: unknown, fallback: string) => {
|
||||||
|
const cleaned = cleanText(value);
|
||||||
|
return cleaned || fallback;
|
||||||
|
};
|
||||||
|
|
||||||
|
type CorpusExplorerProps = {
|
||||||
|
open: boolean;
|
||||||
|
onClose: () => void;
|
||||||
|
title: string;
|
||||||
|
description: string;
|
||||||
|
records: DatasetRecord[];
|
||||||
|
loading: boolean;
|
||||||
|
error: string;
|
||||||
|
emptyMessage: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
const formatRecordDate = (record: DatasetRecord) => {
|
||||||
|
if (typeof record.dt === "string" && record.dt) {
|
||||||
|
const date = new Date(record.dt);
|
||||||
|
if (!Number.isNaN(date.getTime())) {
|
||||||
|
return date.toLocaleString();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (typeof record.date === "string" && record.date) {
|
||||||
|
return record.date;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (typeof record.timestamp === "number") {
|
||||||
|
return new Date(record.timestamp * 1000).toLocaleString();
|
||||||
|
}
|
||||||
|
|
||||||
|
return "Unknown time";
|
||||||
|
};
|
||||||
|
|
||||||
|
const getRecordKey = (record: DatasetRecord, index: number) =>
|
||||||
|
String(record.id ?? record.post_id ?? `${record.author ?? "record"}-${index}`);
|
||||||
|
|
||||||
|
const getRecordTitle = (record: DatasetRecord) => {
|
||||||
|
if (record.type === "comment") {
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
const title = cleanText(record.title);
|
||||||
|
if (title) {
|
||||||
|
return title;
|
||||||
|
}
|
||||||
|
|
||||||
|
const content = cleanText(record.content);
|
||||||
|
if (!content) {
|
||||||
|
return "Untitled record";
|
||||||
|
}
|
||||||
|
|
||||||
|
return content.length > 120 ? `${content.slice(0, 117)}...` : content;
|
||||||
|
};
|
||||||
|
|
||||||
|
const CorpusExplorer = ({
|
||||||
|
open,
|
||||||
|
onClose,
|
||||||
|
title,
|
||||||
|
description,
|
||||||
|
records,
|
||||||
|
loading,
|
||||||
|
error,
|
||||||
|
emptyMessage,
|
||||||
|
}: CorpusExplorerProps) => {
|
||||||
|
const [visibleCount, setVisibleCount] = useState(INITIAL_RECORD_COUNT);
|
||||||
|
const [expandedKeys, setExpandedKeys] = useState<Record<string, boolean>>({});
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (open) {
|
||||||
|
setVisibleCount(INITIAL_RECORD_COUNT);
|
||||||
|
setExpandedKeys({});
|
||||||
|
}
|
||||||
|
}, [open, title, records.length]);
|
||||||
|
|
||||||
|
const hasMoreRecords = visibleCount < records.length;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Dialog open={open} onClose={onClose} style={styles.modalRoot}>
|
||||||
|
<div style={styles.modalBackdrop} />
|
||||||
|
|
||||||
|
<div style={styles.modalContainer}>
|
||||||
|
<DialogPanel
|
||||||
|
style={{
|
||||||
|
...styles.card,
|
||||||
|
...styles.modalPanel,
|
||||||
|
width: "min(960px, 96vw)",
|
||||||
|
maxHeight: "88vh",
|
||||||
|
display: "flex",
|
||||||
|
flexDirection: "column",
|
||||||
|
gap: 12,
|
||||||
|
overflow: "hidden",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<div style={styles.headerBar}>
|
||||||
|
<div style={{ minWidth: 0 }}>
|
||||||
|
<DialogTitle style={styles.sectionTitle}>{title}</DialogTitle>
|
||||||
|
<p style={styles.sectionSubtitle}>
|
||||||
|
{description} {loading ? "Loading records..." : `${records.length.toLocaleString()} records.`}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<button onClick={onClose} style={styles.buttonSecondary}>
|
||||||
|
Close
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{error ? <p style={styles.sectionSubtitle}>{error}</p> : null}
|
||||||
|
|
||||||
|
{!loading && !error && !records.length ? (
|
||||||
|
<p style={styles.sectionSubtitle}>{emptyMessage}</p>
|
||||||
|
) : null}
|
||||||
|
|
||||||
|
{loading ? <div style={styles.topUserMeta}>Preparing corpus slice...</div> : null}
|
||||||
|
|
||||||
|
{!loading && !error && records.length ? (
|
||||||
|
<>
|
||||||
|
<div
|
||||||
|
style={{
|
||||||
|
...styles.topUsersList,
|
||||||
|
overflowY: "auto",
|
||||||
|
overflowX: "hidden",
|
||||||
|
paddingRight: 4,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{records.slice(0, visibleCount).map((record, index) => {
|
||||||
|
const recordKey = getRecordKey(record, index);
|
||||||
|
const titleText = getRecordTitle(record);
|
||||||
|
const content = cleanText(record.content);
|
||||||
|
const isExpanded = !!expandedKeys[recordKey];
|
||||||
|
const canExpand = content.length > EXCERPT_LENGTH;
|
||||||
|
const excerpt =
|
||||||
|
canExpand && !isExpanded
|
||||||
|
? `${content.slice(0, EXCERPT_LENGTH - 3)}...`
|
||||||
|
: content || "No content available.";
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div key={recordKey} style={styles.topUserItem}>
|
||||||
|
<div style={{ ...styles.headerBar, alignItems: "flex-start" }}>
|
||||||
|
<div style={{ minWidth: 0, flex: 1 }}>
|
||||||
|
{titleText ? <div style={styles.topUserName}>{titleText}</div> : null}
|
||||||
|
<div
|
||||||
|
style={{
|
||||||
|
...styles.topUserMeta,
|
||||||
|
overflowWrap: "anywhere",
|
||||||
|
wordBreak: "break-word",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{displayText(record.author, "Unknown author")} • {displayText(record.source, "Unknown source")} • {displayText(record.type, "record")} • {formatRecordDate(record)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
style={{
|
||||||
|
...styles.topUserMeta,
|
||||||
|
marginLeft: 12,
|
||||||
|
textAlign: "right",
|
||||||
|
overflowWrap: "anywhere",
|
||||||
|
wordBreak: "break-word",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{cleanText(record.topic) ? `Topic: ${cleanText(record.topic)}` : ""}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div
|
||||||
|
style={{
|
||||||
|
...styles.topUserMeta,
|
||||||
|
marginTop: 8,
|
||||||
|
whiteSpace: "pre-wrap",
|
||||||
|
overflowWrap: "anywhere",
|
||||||
|
wordBreak: "break-word",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{excerpt}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{canExpand ? (
|
||||||
|
<div style={{ marginTop: 10 }}>
|
||||||
|
<button
|
||||||
|
onClick={() =>
|
||||||
|
setExpandedKeys((current) => ({
|
||||||
|
...current,
|
||||||
|
[recordKey]: !current[recordKey],
|
||||||
|
}))
|
||||||
|
}
|
||||||
|
style={styles.buttonSecondary}
|
||||||
|
>
|
||||||
|
{isExpanded ? "Show Less" : "Show More"}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
) : null}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{hasMoreRecords ? (
|
||||||
|
<div style={{ display: "flex", justifyContent: "center" }}>
|
||||||
|
<button
|
||||||
|
onClick={() =>
|
||||||
|
setVisibleCount((current) => current + RECORD_BATCH_SIZE)
|
||||||
|
}
|
||||||
|
style={styles.buttonSecondary}
|
||||||
|
>
|
||||||
|
Show More Records
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
) : null}
|
||||||
|
</>
|
||||||
|
) : null}
|
||||||
|
</DialogPanel>
|
||||||
|
</div>
|
||||||
|
</Dialog>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default CorpusExplorer;
|
||||||
@@ -1,14 +1,34 @@
|
|||||||
import Card from "./Card";
|
import Card from "./Card";
|
||||||
import StatsStyling from "../styles/stats_styling";
|
import StatsStyling from "../styles/stats_styling";
|
||||||
import type { CulturalAnalysisResponse } from "../types/ApiTypes";
|
import type { CulturalAnalysisResponse } from "../types/ApiTypes";
|
||||||
|
import {
|
||||||
|
buildCertaintySpec,
|
||||||
|
buildDeonticSpec,
|
||||||
|
buildEntitySpec,
|
||||||
|
buildHedgeSpec,
|
||||||
|
buildIdentityBucketSpec,
|
||||||
|
buildPermissionSpec,
|
||||||
|
type CorpusExplorerSpec,
|
||||||
|
} from "../utils/corpusExplorer";
|
||||||
|
|
||||||
const styles = StatsStyling;
|
const styles = StatsStyling;
|
||||||
|
const exploreButtonStyle = { padding: "4px 8px", fontSize: 12 };
|
||||||
|
|
||||||
type CulturalStatsProps = {
|
type CulturalStatsProps = {
|
||||||
data: CulturalAnalysisResponse;
|
data: CulturalAnalysisResponse;
|
||||||
|
onExplore: (spec: CorpusExplorerSpec) => void;
|
||||||
};
|
};
|
||||||
|
|
||||||
const CulturalStats = ({ data }: CulturalStatsProps) => {
|
const renderExploreButton = (onClick: () => void) => (
|
||||||
|
<button
|
||||||
|
onClick={onClick}
|
||||||
|
style={{ ...styles.buttonSecondary, ...exploreButtonStyle }}
|
||||||
|
>
|
||||||
|
Explore
|
||||||
|
</button>
|
||||||
|
);
|
||||||
|
|
||||||
|
const CulturalStats = ({ data, onExplore }: CulturalStatsProps) => {
|
||||||
const identity = data.identity_markers;
|
const identity = data.identity_markers;
|
||||||
const stance = data.stance_markers;
|
const stance = data.stance_markers;
|
||||||
const inGroupWords = identity?.in_group_usage ?? 0;
|
const inGroupWords = identity?.in_group_usage ?? 0;
|
||||||
@@ -30,7 +50,7 @@ const CulturalStats = ({ data }: CulturalStatsProps) => {
|
|||||||
const topEmotion = (emotionAvg: Record<string, number> | undefined) => {
|
const topEmotion = (emotionAvg: Record<string, number> | undefined) => {
|
||||||
const entries = Object.entries(emotionAvg ?? {});
|
const entries = Object.entries(emotionAvg ?? {});
|
||||||
if (!entries.length) {
|
if (!entries.length) {
|
||||||
return "—";
|
return "-";
|
||||||
}
|
}
|
||||||
|
|
||||||
entries.sort((a, b) => b[1] - a[1]);
|
entries.sort((a, b) => b[1] - a[1]);
|
||||||
@@ -64,21 +84,30 @@ const CulturalStats = ({ data }: CulturalStatsProps) => {
|
|||||||
/>
|
/>
|
||||||
<Card
|
<Card
|
||||||
label="In-Group Posts"
|
label="In-Group Posts"
|
||||||
value={identity?.in_group_posts?.toLocaleString() ?? "—"}
|
value={identity?.in_group_posts?.toLocaleString() ?? "-"}
|
||||||
sublabel='Posts leaning toward "us" language'
|
sublabel='Posts leaning toward "us" language'
|
||||||
|
rightSlot={renderExploreButton(() =>
|
||||||
|
onExplore(buildIdentityBucketSpec("in")),
|
||||||
|
)}
|
||||||
style={{ gridColumn: "span 3" }}
|
style={{ gridColumn: "span 3" }}
|
||||||
/>
|
/>
|
||||||
<Card
|
<Card
|
||||||
label="Out-Group Posts"
|
label="Out-Group Posts"
|
||||||
value={identity?.out_group_posts?.toLocaleString() ?? "—"}
|
value={identity?.out_group_posts?.toLocaleString() ?? "-"}
|
||||||
sublabel='Posts leaning toward "them" language'
|
sublabel='Posts leaning toward "them" language'
|
||||||
|
rightSlot={renderExploreButton(() =>
|
||||||
|
onExplore(buildIdentityBucketSpec("out")),
|
||||||
|
)}
|
||||||
style={{ gridColumn: "span 3" }}
|
style={{ gridColumn: "span 3" }}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Card
|
<Card
|
||||||
label="Balanced Posts"
|
label="Balanced Posts"
|
||||||
value={identity?.tie_posts?.toLocaleString() ?? "—"}
|
value={identity?.tie_posts?.toLocaleString() ?? "-"}
|
||||||
sublabel="Posts with equal us/them signals"
|
sublabel="Posts with equal us/them signals"
|
||||||
|
rightSlot={renderExploreButton(() =>
|
||||||
|
onExplore(buildIdentityBucketSpec("tie")),
|
||||||
|
)}
|
||||||
style={{ gridColumn: "span 3" }}
|
style={{ gridColumn: "span 3" }}
|
||||||
/>
|
/>
|
||||||
<Card
|
<Card
|
||||||
@@ -90,7 +119,7 @@ const CulturalStats = ({ data }: CulturalStatsProps) => {
|
|||||||
<Card
|
<Card
|
||||||
label="In-Group Share"
|
label="In-Group Share"
|
||||||
value={
|
value={
|
||||||
inGroupWordRate === null ? "—" : `${inGroupWordRate.toFixed(2)}%`
|
inGroupWordRate === null ? "-" : `${inGroupWordRate.toFixed(2)}%`
|
||||||
}
|
}
|
||||||
sublabel="Share of all words"
|
sublabel="Share of all words"
|
||||||
style={{ gridColumn: "span 3" }}
|
style={{ gridColumn: "span 3" }}
|
||||||
@@ -98,7 +127,7 @@ const CulturalStats = ({ data }: CulturalStatsProps) => {
|
|||||||
<Card
|
<Card
|
||||||
label="Out-Group Share"
|
label="Out-Group Share"
|
||||||
value={
|
value={
|
||||||
outGroupWordRate === null ? "—" : `${outGroupWordRate.toFixed(2)}%`
|
outGroupWordRate === null ? "-" : `${outGroupWordRate.toFixed(2)}%`
|
||||||
}
|
}
|
||||||
sublabel="Share of all words"
|
sublabel="Share of all words"
|
||||||
style={{ gridColumn: "span 3" }}
|
style={{ gridColumn: "span 3" }}
|
||||||
@@ -106,42 +135,46 @@ const CulturalStats = ({ data }: CulturalStatsProps) => {
|
|||||||
|
|
||||||
<Card
|
<Card
|
||||||
label="Hedging Words"
|
label="Hedging Words"
|
||||||
value={stance?.hedge_total?.toLocaleString() ?? "—"}
|
value={stance?.hedge_total?.toLocaleString() ?? "-"}
|
||||||
sublabel={
|
sublabel={
|
||||||
typeof stance?.hedge_per_1k_tokens === "number"
|
typeof stance?.hedge_per_1k_tokens === "number"
|
||||||
? `${stance.hedge_per_1k_tokens.toFixed(1)} per 1k words`
|
? `${stance.hedge_per_1k_tokens.toFixed(1)} per 1k words`
|
||||||
: "Word frequency"
|
: "Word frequency"
|
||||||
}
|
}
|
||||||
|
rightSlot={renderExploreButton(() => onExplore(buildHedgeSpec()))}
|
||||||
style={{ gridColumn: "span 3" }}
|
style={{ gridColumn: "span 3" }}
|
||||||
/>
|
/>
|
||||||
<Card
|
<Card
|
||||||
label="Certainty Words"
|
label="Certainty Words"
|
||||||
value={stance?.certainty_total?.toLocaleString() ?? "—"}
|
value={stance?.certainty_total?.toLocaleString() ?? "-"}
|
||||||
sublabel={
|
sublabel={
|
||||||
typeof stance?.certainty_per_1k_tokens === "number"
|
typeof stance?.certainty_per_1k_tokens === "number"
|
||||||
? `${stance.certainty_per_1k_tokens.toFixed(1)} per 1k words`
|
? `${stance.certainty_per_1k_tokens.toFixed(1)} per 1k words`
|
||||||
: "Word frequency"
|
: "Word frequency"
|
||||||
}
|
}
|
||||||
|
rightSlot={renderExploreButton(() => onExplore(buildCertaintySpec()))}
|
||||||
style={{ gridColumn: "span 3" }}
|
style={{ gridColumn: "span 3" }}
|
||||||
/>
|
/>
|
||||||
<Card
|
<Card
|
||||||
label="Need/Should Words"
|
label="Need/Should Words"
|
||||||
value={stance?.deontic_total?.toLocaleString() ?? "—"}
|
value={stance?.deontic_total?.toLocaleString() ?? "-"}
|
||||||
sublabel={
|
sublabel={
|
||||||
typeof stance?.deontic_per_1k_tokens === "number"
|
typeof stance?.deontic_per_1k_tokens === "number"
|
||||||
? `${stance.deontic_per_1k_tokens.toFixed(1)} per 1k words`
|
? `${stance.deontic_per_1k_tokens.toFixed(1)} per 1k words`
|
||||||
: "Word frequency"
|
: "Word frequency"
|
||||||
}
|
}
|
||||||
|
rightSlot={renderExploreButton(() => onExplore(buildDeonticSpec()))}
|
||||||
style={{ gridColumn: "span 3" }}
|
style={{ gridColumn: "span 3" }}
|
||||||
/>
|
/>
|
||||||
<Card
|
<Card
|
||||||
label="Permission Words"
|
label="Permission Words"
|
||||||
value={stance?.permission_total?.toLocaleString() ?? "—"}
|
value={stance?.permission_total?.toLocaleString() ?? "-"}
|
||||||
sublabel={
|
sublabel={
|
||||||
typeof stance?.permission_per_1k_tokens === "number"
|
typeof stance?.permission_per_1k_tokens === "number"
|
||||||
? `${stance.permission_per_1k_tokens.toFixed(1)} per 1k words`
|
? `${stance.permission_per_1k_tokens.toFixed(1)} per 1k words`
|
||||||
: "Word frequency"
|
: "Word frequency"
|
||||||
}
|
}
|
||||||
|
rightSlot={renderExploreButton(() => onExplore(buildPermissionSpec()))}
|
||||||
style={{ gridColumn: "span 3" }}
|
style={{ gridColumn: "span 3" }}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
@@ -150,8 +183,14 @@ const CulturalStats = ({ data }: CulturalStatsProps) => {
|
|||||||
<p style={styles.sectionSubtitle}>
|
<p style={styles.sectionSubtitle}>
|
||||||
Most likely emotion when in-group wording is stronger.
|
Most likely emotion when in-group wording is stronger.
|
||||||
</p>
|
</p>
|
||||||
<div style={styles.topUserName}>
|
<div style={styles.topUserName}>{topEmotion(identity?.in_group_emotion_avg)}</div>
|
||||||
{topEmotion(identity?.in_group_emotion_avg)}
|
<div style={{ marginTop: 12 }}>
|
||||||
|
<button
|
||||||
|
onClick={() => onExplore(buildIdentityBucketSpec("in"))}
|
||||||
|
style={styles.buttonSecondary}
|
||||||
|
>
|
||||||
|
Explore records
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -160,8 +199,14 @@ const CulturalStats = ({ data }: CulturalStatsProps) => {
|
|||||||
<p style={styles.sectionSubtitle}>
|
<p style={styles.sectionSubtitle}>
|
||||||
Most likely emotion when out-group wording is stronger.
|
Most likely emotion when out-group wording is stronger.
|
||||||
</p>
|
</p>
|
||||||
<div style={styles.topUserName}>
|
<div style={styles.topUserName}>{topEmotion(identity?.out_group_emotion_avg)}</div>
|
||||||
{topEmotion(identity?.out_group_emotion_avg)}
|
<div style={{ marginTop: 12 }}>
|
||||||
|
<button
|
||||||
|
onClick={() => onExplore(buildIdentityBucketSpec("out"))}
|
||||||
|
style={styles.buttonSecondary}
|
||||||
|
>
|
||||||
|
Explore records
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -171,9 +216,7 @@ const CulturalStats = ({ data }: CulturalStatsProps) => {
|
|||||||
Most mentioned entities and the mood that appears most with each.
|
Most mentioned entities and the mood that appears most with each.
|
||||||
</p>
|
</p>
|
||||||
{!entities.length ? (
|
{!entities.length ? (
|
||||||
<div style={styles.topUserMeta}>
|
<div style={styles.topUserMeta}>No entity-level cultural data available.</div>
|
||||||
No entity-level cultural data available.
|
|
||||||
</div>
|
|
||||||
) : (
|
) : (
|
||||||
<div
|
<div
|
||||||
style={{
|
style={{
|
||||||
@@ -183,7 +226,11 @@ const CulturalStats = ({ data }: CulturalStatsProps) => {
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{entities.map(([entity, aggregate]) => (
|
{entities.map(([entity, aggregate]) => (
|
||||||
<div key={entity} style={styles.topUserItem}>
|
<div
|
||||||
|
key={entity}
|
||||||
|
style={{ ...styles.topUserItem, cursor: "pointer" }}
|
||||||
|
onClick={() => onExplore(buildEntitySpec(entity))}
|
||||||
|
>
|
||||||
<div style={styles.topUserName}>{entity}</div>
|
<div style={styles.topUserName}>{entity}</div>
|
||||||
<div style={styles.topUserMeta}>
|
<div style={styles.topUserMeta}>
|
||||||
{aggregate.post_count.toLocaleString()} posts • Likely mood:{" "}
|
{aggregate.post_count.toLocaleString()} posts • Likely mood:{" "}
|
||||||
|
|||||||
@@ -1,18 +1,25 @@
|
|||||||
import type { ContentAnalysisResponse } from "../types/ApiTypes";
|
import type { EmotionalAnalysisResponse } from "../types/ApiTypes";
|
||||||
import StatsStyling from "../styles/stats_styling";
|
import StatsStyling from "../styles/stats_styling";
|
||||||
|
import {
|
||||||
|
buildDominantEmotionSpec,
|
||||||
|
buildSourceSpec,
|
||||||
|
buildTopicSpec,
|
||||||
|
type CorpusExplorerSpec,
|
||||||
|
} from "../utils/corpusExplorer";
|
||||||
|
|
||||||
const styles = StatsStyling;
|
const styles = StatsStyling;
|
||||||
|
|
||||||
type EmotionalStatsProps = {
|
type EmotionalStatsProps = {
|
||||||
contentData: ContentAnalysisResponse;
|
emotionalData: EmotionalAnalysisResponse;
|
||||||
|
onExplore: (spec: CorpusExplorerSpec) => void;
|
||||||
};
|
};
|
||||||
|
|
||||||
const EmotionalStats = ({ contentData }: EmotionalStatsProps) => {
|
const EmotionalStats = ({ emotionalData, onExplore }: EmotionalStatsProps) => {
|
||||||
const rows = contentData.average_emotion_by_topic ?? [];
|
const rows = emotionalData.average_emotion_by_topic ?? [];
|
||||||
const overallEmotionAverage = contentData.overall_emotion_average ?? [];
|
const overallEmotionAverage = emotionalData.overall_emotion_average ?? [];
|
||||||
const dominantEmotionDistribution =
|
const dominantEmotionDistribution =
|
||||||
contentData.dominant_emotion_distribution ?? [];
|
emotionalData.dominant_emotion_distribution ?? [];
|
||||||
const emotionBySource = contentData.emotion_by_source ?? [];
|
const emotionBySource = emotionalData.emotion_by_source ?? [];
|
||||||
const lowSampleThreshold = 20;
|
const lowSampleThreshold = 20;
|
||||||
const stableSampleThreshold = 50;
|
const stableSampleThreshold = 50;
|
||||||
const emotionKeys = rows.length
|
const emotionKeys = rows.length
|
||||||
@@ -126,7 +133,11 @@ const EmotionalStats = ({ contentData }: EmotionalStatsProps) => {
|
|||||||
{[...overallEmotionAverage]
|
{[...overallEmotionAverage]
|
||||||
.sort((a, b) => b.score - a.score)
|
.sort((a, b) => b.score - a.score)
|
||||||
.map((row) => (
|
.map((row) => (
|
||||||
<div key={row.emotion} style={styles.topUserItem}>
|
<div
|
||||||
|
key={row.emotion}
|
||||||
|
style={{ ...styles.topUserItem, cursor: "pointer" }}
|
||||||
|
onClick={() => onExplore(buildDominantEmotionSpec(row.emotion))}
|
||||||
|
>
|
||||||
<div style={styles.topUserName}>
|
<div style={styles.topUserName}>
|
||||||
{formatEmotion(row.emotion)}
|
{formatEmotion(row.emotion)}
|
||||||
</div>
|
</div>
|
||||||
@@ -157,7 +168,11 @@ const EmotionalStats = ({ contentData }: EmotionalStatsProps) => {
|
|||||||
{[...dominantEmotionDistribution]
|
{[...dominantEmotionDistribution]
|
||||||
.sort((a, b) => b.ratio - a.ratio)
|
.sort((a, b) => b.ratio - a.ratio)
|
||||||
.map((row) => (
|
.map((row) => (
|
||||||
<div key={row.emotion} style={styles.topUserItem}>
|
<div
|
||||||
|
key={row.emotion}
|
||||||
|
style={{ ...styles.topUserItem, cursor: "pointer" }}
|
||||||
|
onClick={() => onExplore(buildDominantEmotionSpec(row.emotion))}
|
||||||
|
>
|
||||||
<div style={styles.topUserName}>
|
<div style={styles.topUserName}>
|
||||||
{formatEmotion(row.emotion)}
|
{formatEmotion(row.emotion)}
|
||||||
</div>
|
</div>
|
||||||
@@ -189,7 +204,11 @@ const EmotionalStats = ({ contentData }: EmotionalStatsProps) => {
|
|||||||
{[...emotionBySource]
|
{[...emotionBySource]
|
||||||
.sort((a, b) => b.event_count - a.event_count)
|
.sort((a, b) => b.event_count - a.event_count)
|
||||||
.map((row) => (
|
.map((row) => (
|
||||||
<div key={row.source} style={styles.topUserItem}>
|
<div
|
||||||
|
key={row.source}
|
||||||
|
style={{ ...styles.topUserItem, cursor: "pointer" }}
|
||||||
|
onClick={() => onExplore(buildSourceSpec(row.source))}
|
||||||
|
>
|
||||||
<div style={styles.topUserName}>{row.source}</div>
|
<div style={styles.topUserName}>{row.source}</div>
|
||||||
<div style={styles.topUserMeta}>
|
<div style={styles.topUserMeta}>
|
||||||
{formatEmotion(row.dominant_emotion)} •{" "}
|
{formatEmotion(row.dominant_emotion)} •{" "}
|
||||||
@@ -211,7 +230,8 @@ const EmotionalStats = ({ contentData }: EmotionalStatsProps) => {
|
|||||||
{strongestPerTopic.map((topic) => (
|
{strongestPerTopic.map((topic) => (
|
||||||
<div
|
<div
|
||||||
key={topic.topic}
|
key={topic.topic}
|
||||||
style={{ ...styles.cardBase, gridColumn: "span 4" }}
|
style={{ ...styles.cardBase, gridColumn: "span 4", cursor: "pointer" }}
|
||||||
|
onClick={() => onExplore(buildTopicSpec(topic.topic))}
|
||||||
>
|
>
|
||||||
<h3 style={{ ...styles.sectionTitle, marginBottom: 6 }}>
|
<h3 style={{ ...styles.sectionTitle, marginBottom: 6 }}>
|
||||||
{topic.topic}
|
{topic.topic}
|
||||||
|
|||||||
@@ -24,11 +24,14 @@ type InteractionalStatsProps = {
|
|||||||
const InteractionalStats = ({ data }: InteractionalStatsProps) => {
|
const InteractionalStats = ({ data }: InteractionalStatsProps) => {
|
||||||
const graph = data.interaction_graph ?? {};
|
const graph = data.interaction_graph ?? {};
|
||||||
const userCount = Object.keys(graph).length;
|
const userCount = Object.keys(graph).length;
|
||||||
const edges = Object.values(graph).flatMap((targets) =>
|
let edgeCount = 0;
|
||||||
Object.values(targets),
|
let interactionVolume = 0;
|
||||||
);
|
for (const targets of Object.values(graph)) {
|
||||||
const edgeCount = edges.length;
|
for (const value of Object.values(targets)) {
|
||||||
const interactionVolume = edges.reduce((sum, value) => sum + value, 0);
|
edgeCount += 1;
|
||||||
|
interactionVolume += value;
|
||||||
|
}
|
||||||
|
}
|
||||||
const concentration = data.conversation_concentration;
|
const concentration = data.conversation_concentration;
|
||||||
const topTenCommentShare =
|
const topTenCommentShare =
|
||||||
typeof concentration?.top_10pct_comment_share === "number"
|
typeof concentration?.top_10pct_comment_share === "number"
|
||||||
@@ -99,37 +102,27 @@ const InteractionalStats = ({ data }: InteractionalStatsProps) => {
|
|||||||
<div style={{ ...styles.card, gridColumn: "span 12" }}>
|
<div style={{ ...styles.card, gridColumn: "span 12" }}>
|
||||||
<h2 style={styles.sectionTitle}>Conversation Overview</h2>
|
<h2 style={styles.sectionTitle}>Conversation Overview</h2>
|
||||||
<p style={styles.sectionSubtitle}>
|
<p style={styles.sectionSubtitle}>
|
||||||
Who talks to who, and how concentrated the replies are.
|
Who talks to who, how much they interact, and how concentrated the replies are.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<Card
|
|
||||||
label="Average Reply Depth"
|
|
||||||
value={
|
|
||||||
typeof data.average_thread_depth === "number"
|
|
||||||
? data.average_thread_depth.toFixed(2)
|
|
||||||
: "—"
|
|
||||||
}
|
|
||||||
sublabel="How deep reply chains usually go"
|
|
||||||
style={{ gridColumn: "span 3" }}
|
|
||||||
/>
|
|
||||||
<Card
|
<Card
|
||||||
label="Users in Network"
|
label="Users in Network"
|
||||||
value={userCount.toLocaleString()}
|
value={userCount.toLocaleString()}
|
||||||
sublabel="Users in the reply graph"
|
sublabel="Users in the reply graph"
|
||||||
style={{ gridColumn: "span 3" }}
|
style={{ gridColumn: "span 4" }}
|
||||||
/>
|
/>
|
||||||
<Card
|
<Card
|
||||||
label="User-to-User Links"
|
label="User-to-User Links"
|
||||||
value={edgeCount.toLocaleString()}
|
value={edgeCount.toLocaleString()}
|
||||||
sublabel="Unique reply directions"
|
sublabel="Unique reply directions"
|
||||||
style={{ gridColumn: "span 3" }}
|
style={{ gridColumn: "span 4" }}
|
||||||
/>
|
/>
|
||||||
<Card
|
<Card
|
||||||
label="Total Replies"
|
label="Total Replies"
|
||||||
value={interactionVolume.toLocaleString()}
|
value={interactionVolume.toLocaleString()}
|
||||||
sublabel="All reply links combined"
|
sublabel="All reply links combined"
|
||||||
style={{ gridColumn: "span 3" }}
|
style={{ gridColumn: "span 4" }}
|
||||||
/>
|
/>
|
||||||
<Card
|
<Card
|
||||||
label="Concentrated Replies"
|
label="Concentrated Replies"
|
||||||
|
|||||||
@@ -1,14 +1,20 @@
|
|||||||
import Card from "./Card";
|
import Card from "./Card";
|
||||||
import StatsStyling from "../styles/stats_styling";
|
import StatsStyling from "../styles/stats_styling";
|
||||||
import type { LinguisticAnalysisResponse } from "../types/ApiTypes";
|
import type { LinguisticAnalysisResponse } from "../types/ApiTypes";
|
||||||
|
import {
|
||||||
|
buildNgramSpec,
|
||||||
|
buildWordSpec,
|
||||||
|
type CorpusExplorerSpec,
|
||||||
|
} from "../utils/corpusExplorer";
|
||||||
|
|
||||||
const styles = StatsStyling;
|
const styles = StatsStyling;
|
||||||
|
|
||||||
type LinguisticStatsProps = {
|
type LinguisticStatsProps = {
|
||||||
data: LinguisticAnalysisResponse;
|
data: LinguisticAnalysisResponse;
|
||||||
|
onExplore: (spec: CorpusExplorerSpec) => void;
|
||||||
};
|
};
|
||||||
|
|
||||||
const LinguisticStats = ({ data }: LinguisticStatsProps) => {
|
const LinguisticStats = ({ data, onExplore }: LinguisticStatsProps) => {
|
||||||
const lexical = data.lexical_diversity;
|
const lexical = data.lexical_diversity;
|
||||||
const words = data.word_frequencies ?? [];
|
const words = data.word_frequencies ?? [];
|
||||||
const bigrams = data.common_two_phrases ?? [];
|
const bigrams = data.common_two_phrases ?? [];
|
||||||
@@ -60,7 +66,11 @@ const LinguisticStats = ({ data }: LinguisticStatsProps) => {
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{topWords.map((item) => (
|
{topWords.map((item) => (
|
||||||
<div key={item.word} style={styles.topUserItem}>
|
<div
|
||||||
|
key={item.word}
|
||||||
|
style={{ ...styles.topUserItem, cursor: "pointer" }}
|
||||||
|
onClick={() => onExplore(buildWordSpec(item.word))}
|
||||||
|
>
|
||||||
<div style={styles.topUserName}>{item.word}</div>
|
<div style={styles.topUserName}>{item.word}</div>
|
||||||
<div style={styles.topUserMeta}>
|
<div style={styles.topUserMeta}>
|
||||||
{item.count.toLocaleString()} uses
|
{item.count.toLocaleString()} uses
|
||||||
@@ -81,7 +91,11 @@ const LinguisticStats = ({ data }: LinguisticStatsProps) => {
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{topBigrams.map((item) => (
|
{topBigrams.map((item) => (
|
||||||
<div key={item.ngram} style={styles.topUserItem}>
|
<div
|
||||||
|
key={item.ngram}
|
||||||
|
style={{ ...styles.topUserItem, cursor: "pointer" }}
|
||||||
|
onClick={() => onExplore(buildNgramSpec(item.ngram))}
|
||||||
|
>
|
||||||
<div style={styles.topUserName}>{item.ngram}</div>
|
<div style={styles.topUserName}>{item.ngram}</div>
|
||||||
<div style={styles.topUserMeta}>
|
<div style={styles.topUserMeta}>
|
||||||
{item.count.toLocaleString()} uses
|
{item.count.toLocaleString()} uses
|
||||||
@@ -102,7 +116,11 @@ const LinguisticStats = ({ data }: LinguisticStatsProps) => {
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{topTrigrams.map((item) => (
|
{topTrigrams.map((item) => (
|
||||||
<div key={item.ngram} style={styles.topUserItem}>
|
<div
|
||||||
|
key={item.ngram}
|
||||||
|
style={{ ...styles.topUserItem, cursor: "pointer" }}
|
||||||
|
onClick={() => onExplore(buildNgramSpec(item.ngram))}
|
||||||
|
>
|
||||||
<div style={styles.topUserName}>{item.ngram}</div>
|
<div style={styles.topUserName}>{item.ngram}</div>
|
||||||
<div style={styles.topUserMeta}>
|
<div style={styles.topUserMeta}>
|
||||||
{item.count.toLocaleString()} uses
|
{item.count.toLocaleString()} uses
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { useState } from "react";
|
import { memo, useMemo } from "react";
|
||||||
import {
|
import {
|
||||||
LineChart,
|
LineChart,
|
||||||
Line,
|
Line,
|
||||||
@@ -13,26 +13,49 @@ import ActivityHeatmap from "../stats/ActivityHeatmap";
|
|||||||
import { ReactWordcloud } from "@cp949/react-wordcloud";
|
import { ReactWordcloud } from "@cp949/react-wordcloud";
|
||||||
import StatsStyling from "../styles/stats_styling";
|
import StatsStyling from "../styles/stats_styling";
|
||||||
import Card from "../components/Card";
|
import Card from "../components/Card";
|
||||||
import UserModal from "../components/UserModal";
|
|
||||||
|
|
||||||
import {
|
import {
|
||||||
type SummaryResponse,
|
type SummaryResponse,
|
||||||
type FrequencyWord,
|
type FrequencyWord,
|
||||||
type UserAnalysisResponse,
|
type UserEndpointResponse,
|
||||||
type TimeAnalysisResponse,
|
type TimeAnalysisResponse,
|
||||||
type ContentAnalysisResponse,
|
type LinguisticAnalysisResponse,
|
||||||
type User,
|
|
||||||
} from "../types/ApiTypes";
|
} from "../types/ApiTypes";
|
||||||
|
import {
|
||||||
|
buildAllRecordsSpec,
|
||||||
|
buildDateBucketSpec,
|
||||||
|
buildOneTimeUsersSpec,
|
||||||
|
buildUserSpec,
|
||||||
|
type CorpusExplorerSpec,
|
||||||
|
} from "../utils/corpusExplorer";
|
||||||
|
|
||||||
const styles = StatsStyling;
|
const styles = StatsStyling;
|
||||||
|
const MAX_WORDCLOUD_WORDS = 250;
|
||||||
|
const exploreButtonStyle = { padding: "4px 8px", fontSize: 12 };
|
||||||
|
|
||||||
|
const WORDCLOUD_OPTIONS = {
|
||||||
|
rotations: 2,
|
||||||
|
rotationAngles: [0, 90] as [number, number],
|
||||||
|
fontSizes: [14, 60] as [number, number],
|
||||||
|
enableTooltip: true,
|
||||||
|
};
|
||||||
|
|
||||||
type SummaryStatsProps = {
|
type SummaryStatsProps = {
|
||||||
userData: UserAnalysisResponse | null;
|
userData: UserEndpointResponse | null;
|
||||||
timeData: TimeAnalysisResponse | null;
|
timeData: TimeAnalysisResponse | null;
|
||||||
contentData: ContentAnalysisResponse | null;
|
linguisticData: LinguisticAnalysisResponse | null;
|
||||||
summary: SummaryResponse | null;
|
summary: SummaryResponse | null;
|
||||||
|
onExplore: (spec: CorpusExplorerSpec) => void;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
type WordCloudPanelProps = {
|
||||||
|
words: { text: string; value: number }[];
|
||||||
|
};
|
||||||
|
|
||||||
|
const WordCloudPanel = memo(({ words }: WordCloudPanelProps) => (
|
||||||
|
<ReactWordcloud words={words} options={WORDCLOUD_OPTIONS} />
|
||||||
|
));
|
||||||
|
|
||||||
function formatDateRange(startUnix: number, endUnix: number) {
|
function formatDateRange(startUnix: number, endUnix: number) {
|
||||||
const start = new Date(startUnix * 1000);
|
const start = new Date(startUnix * 1000);
|
||||||
const end = new Date(endUnix * 1000);
|
const end = new Date(endUnix * 1000);
|
||||||
@@ -44,7 +67,7 @@ function formatDateRange(startUnix: number, endUnix: number) {
|
|||||||
day: "2-digit",
|
day: "2-digit",
|
||||||
});
|
});
|
||||||
|
|
||||||
return `${fmt(start)} → ${fmt(end)}`;
|
return `${fmt(start)} -> ${fmt(end)}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
function convertFrequencyData(data: FrequencyWord[]) {
|
function convertFrequencyData(data: FrequencyWord[]) {
|
||||||
@@ -54,61 +77,72 @@ function convertFrequencyData(data: FrequencyWord[]) {
|
|||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const renderExploreButton = (onClick: () => void) => (
|
||||||
|
<button
|
||||||
|
onClick={onClick}
|
||||||
|
style={{ ...styles.buttonSecondary, ...exploreButtonStyle }}
|
||||||
|
>
|
||||||
|
Explore
|
||||||
|
</button>
|
||||||
|
);
|
||||||
|
|
||||||
const SummaryStats = ({
|
const SummaryStats = ({
|
||||||
userData,
|
userData,
|
||||||
timeData,
|
timeData,
|
||||||
contentData,
|
linguisticData,
|
||||||
summary,
|
summary,
|
||||||
|
onExplore,
|
||||||
}: SummaryStatsProps) => {
|
}: SummaryStatsProps) => {
|
||||||
const [selectedUser, setSelectedUser] = useState<string | null>(null);
|
const wordCloudWords = useMemo(
|
||||||
const selectedUserData: User | null =
|
() =>
|
||||||
userData?.users.find((u) => u.author === selectedUser) ?? null;
|
convertFrequencyData(
|
||||||
|
(linguisticData?.word_frequencies ?? []).slice(0, MAX_WORDCLOUD_WORDS),
|
||||||
|
),
|
||||||
|
[linguisticData?.word_frequencies],
|
||||||
|
);
|
||||||
|
|
||||||
|
const topUsersPreview = useMemo(
|
||||||
|
() => (userData?.top_users ?? []).slice(0, 100),
|
||||||
|
[userData?.top_users],
|
||||||
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div style={styles.page}>
|
<div style={styles.page}>
|
||||||
{/* main grid*/}
|
|
||||||
<div style={{ ...styles.container, ...styles.grid }}>
|
<div style={{ ...styles.container, ...styles.grid }}>
|
||||||
<Card
|
<Card
|
||||||
label="Total Activity"
|
label="Total Activity"
|
||||||
value={summary?.total_events ?? "—"}
|
value={summary?.total_events ?? "-"}
|
||||||
sublabel="Posts + comments"
|
sublabel="Posts + comments"
|
||||||
style={{
|
rightSlot={renderExploreButton(() => onExplore(buildAllRecordsSpec()))}
|
||||||
gridColumn: "span 4",
|
style={{ gridColumn: "span 4" }}
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
<Card
|
<Card
|
||||||
label="Active People"
|
label="Active People"
|
||||||
value={summary?.unique_users ?? "—"}
|
value={summary?.unique_users ?? "-"}
|
||||||
sublabel="Distinct users"
|
sublabel="Distinct users"
|
||||||
style={{
|
rightSlot={renderExploreButton(() => onExplore(buildAllRecordsSpec()))}
|
||||||
gridColumn: "span 4",
|
style={{ gridColumn: "span 4" }}
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
<Card
|
<Card
|
||||||
label="Posts vs Comments"
|
label="Posts vs Comments"
|
||||||
value={
|
value={
|
||||||
summary ? `${summary.total_posts} / ${summary.total_comments}` : "—"
|
summary ? `${summary.total_posts} / ${summary.total_comments}` : "-"
|
||||||
}
|
}
|
||||||
sublabel={`Comments per post: ${summary?.comments_per_post ?? "—"}`}
|
sublabel={`Comments per post: ${summary?.comments_per_post ?? "-"}`}
|
||||||
style={{
|
rightSlot={renderExploreButton(() => onExplore(buildAllRecordsSpec()))}
|
||||||
gridColumn: "span 4",
|
style={{ gridColumn: "span 4" }}
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Card
|
<Card
|
||||||
label="Time Range"
|
label="Time Range"
|
||||||
value={
|
value={
|
||||||
summary?.time_range
|
summary?.time_range
|
||||||
? formatDateRange(
|
? formatDateRange(summary.time_range.start, summary.time_range.end)
|
||||||
summary.time_range.start,
|
: "-"
|
||||||
summary.time_range.end,
|
|
||||||
)
|
|
||||||
: "—"
|
|
||||||
}
|
}
|
||||||
sublabel="Based on dataset timestamps"
|
sublabel="Based on dataset timestamps"
|
||||||
style={{
|
rightSlot={renderExploreButton(() => onExplore(buildAllRecordsSpec()))}
|
||||||
gridColumn: "span 4",
|
style={{ gridColumn: "span 4" }}
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Card
|
<Card
|
||||||
@@ -116,49 +150,59 @@ const SummaryStats = ({
|
|||||||
value={
|
value={
|
||||||
typeof summary?.lurker_ratio === "number"
|
typeof summary?.lurker_ratio === "number"
|
||||||
? `${Math.round(summary.lurker_ratio * 100)}%`
|
? `${Math.round(summary.lurker_ratio * 100)}%`
|
||||||
: "—"
|
: "-"
|
||||||
}
|
}
|
||||||
sublabel="Users with only one event"
|
sublabel="Users with only one event"
|
||||||
style={{
|
rightSlot={renderExploreButton(() => onExplore(buildOneTimeUsersSpec()))}
|
||||||
gridColumn: "span 4",
|
style={{ gridColumn: "span 4" }}
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Card
|
<Card
|
||||||
label="Sources"
|
label="Sources"
|
||||||
value={summary?.sources?.length ?? "—"}
|
value={summary?.sources?.length ?? "-"}
|
||||||
sublabel={
|
sublabel={
|
||||||
summary?.sources?.length
|
summary?.sources?.length
|
||||||
? summary.sources.slice(0, 3).join(", ") +
|
? summary.sources.slice(0, 3).join(", ") +
|
||||||
(summary.sources.length > 3 ? "…" : "")
|
(summary.sources.length > 3 ? "..." : "")
|
||||||
: "—"
|
: "-"
|
||||||
}
|
}
|
||||||
style={{
|
rightSlot={renderExploreButton(() => onExplore(buildAllRecordsSpec()))}
|
||||||
gridColumn: "span 4",
|
style={{ gridColumn: "span 4" }}
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
|
|
||||||
{/* events per day */}
|
|
||||||
<div style={{ ...styles.card, gridColumn: "span 5" }}>
|
<div style={{ ...styles.card, gridColumn: "span 5" }}>
|
||||||
<h2 style={styles.sectionTitle}>Activity Over Time</h2>
|
<h2 style={styles.sectionTitle}>Activity Over Time</h2>
|
||||||
<p style={styles.sectionSubtitle}>
|
<p style={styles.sectionSubtitle}>How much posting happened each day.</p>
|
||||||
How much posting happened each day.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<div style={styles.chartWrapper}>
|
<div style={styles.chartWrapper}>
|
||||||
<ResponsiveContainer width="100%" height="100%">
|
<ResponsiveContainer width="100%" height="100%">
|
||||||
<LineChart data={timeData?.events_per_day ?? []}>
|
<LineChart
|
||||||
|
data={timeData?.events_per_day ?? []}
|
||||||
|
onClick={(state: unknown) => {
|
||||||
|
const payload = (state as { activePayload?: Array<{ payload?: { date?: string } }> })
|
||||||
|
?.activePayload?.[0]?.payload as
|
||||||
|
| { date?: string }
|
||||||
|
| undefined;
|
||||||
|
if (payload?.date) {
|
||||||
|
onExplore(buildDateBucketSpec(String(payload.date)));
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
>
|
||||||
<CartesianGrid strokeDasharray="3 3" />
|
<CartesianGrid strokeDasharray="3 3" />
|
||||||
<XAxis dataKey="date" />
|
<XAxis dataKey="date" />
|
||||||
<YAxis />
|
<YAxis />
|
||||||
<Tooltip />
|
<Tooltip />
|
||||||
<Line type="monotone" dataKey="count" name="Events" />
|
<Line
|
||||||
|
type="monotone"
|
||||||
|
dataKey="count"
|
||||||
|
name="Events"
|
||||||
|
isAnimationActive={false}
|
||||||
|
/>
|
||||||
</LineChart>
|
</LineChart>
|
||||||
</ResponsiveContainer>
|
</ResponsiveContainer>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Word Cloud */}
|
|
||||||
<div style={{ ...styles.card, gridColumn: "span 4" }}>
|
<div style={{ ...styles.card, gridColumn: "span 4" }}>
|
||||||
<h2 style={styles.sectionTitle}>Common Words</h2>
|
<h2 style={styles.sectionTitle}>Common Words</h2>
|
||||||
<p style={styles.sectionSubtitle}>
|
<p style={styles.sectionSubtitle}>
|
||||||
@@ -166,19 +210,10 @@ const SummaryStats = ({
|
|||||||
</p>
|
</p>
|
||||||
|
|
||||||
<div style={styles.chartWrapper}>
|
<div style={styles.chartWrapper}>
|
||||||
<ReactWordcloud
|
<WordCloudPanel words={wordCloudWords} />
|
||||||
words={convertFrequencyData(contentData?.word_frequencies ?? [])}
|
|
||||||
options={{
|
|
||||||
rotations: 2,
|
|
||||||
rotationAngles: [0, 90],
|
|
||||||
fontSizes: [14, 60],
|
|
||||||
enableTooltip: true,
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Top Users */}
|
|
||||||
<div
|
<div
|
||||||
style={{ ...styles.card, ...styles.scrollArea, gridColumn: "span 3" }}
|
style={{ ...styles.card, ...styles.scrollArea, gridColumn: "span 3" }}
|
||||||
>
|
>
|
||||||
@@ -186,11 +221,11 @@ const SummaryStats = ({
|
|||||||
<p style={styles.sectionSubtitle}>Who posted the most events.</p>
|
<p style={styles.sectionSubtitle}>Who posted the most events.</p>
|
||||||
|
|
||||||
<div style={styles.topUsersList}>
|
<div style={styles.topUsersList}>
|
||||||
{userData?.top_users.slice(0, 100).map((item) => (
|
{topUsersPreview.map((item) => (
|
||||||
<div
|
<div
|
||||||
key={`${item.author}-${item.source}`}
|
key={`${item.author}-${item.source}`}
|
||||||
style={{ ...styles.topUserItem, cursor: "pointer" }}
|
style={{ ...styles.topUserItem, cursor: "pointer" }}
|
||||||
onClick={() => setSelectedUser(item.author)}
|
onClick={() => onExplore(buildUserSpec(item.author))}
|
||||||
>
|
>
|
||||||
<div style={styles.topUserName}>{item.author}</div>
|
<div style={styles.topUserName}>{item.author}</div>
|
||||||
<div style={styles.topUserMeta}>
|
<div style={styles.topUserMeta}>
|
||||||
@@ -201,7 +236,6 @@ const SummaryStats = ({
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Heatmap */}
|
|
||||||
<div style={{ ...styles.card, gridColumn: "span 12" }}>
|
<div style={{ ...styles.card, gridColumn: "span 12" }}>
|
||||||
<h2 style={styles.sectionTitle}>Weekly Activity Pattern</h2>
|
<h2 style={styles.sectionTitle}>Weekly Activity Pattern</h2>
|
||||||
<p style={styles.sectionSubtitle}>
|
<p style={styles.sectionSubtitle}>
|
||||||
@@ -213,13 +247,6 @@ const SummaryStats = ({
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<UserModal
|
|
||||||
open={!!selectedUser}
|
|
||||||
onClose={() => setSelectedUser(null)}
|
|
||||||
username={selectedUser ?? ""}
|
|
||||||
userData={selectedUserData}
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -88,6 +88,15 @@ export default function UserModal({
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
) : null}
|
) : null}
|
||||||
|
|
||||||
|
{userData.dominant_topic ? (
|
||||||
|
<div style={styles.topUserItem}>
|
||||||
|
<div style={styles.topUserName}>Most Common Topic</div>
|
||||||
|
<div style={styles.topUserMeta}>
|
||||||
|
{userData.dominant_topic.topic} ({userData.dominant_topic.count} events)
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
) : null}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</DialogPanel>
|
</DialogPanel>
|
||||||
|
|||||||
@@ -1,13 +1,16 @@
|
|||||||
import { useEffect, useMemo, useRef, useState } from "react";
|
import { useEffect, useMemo, useRef, useState } from "react";
|
||||||
import ForceGraph3D from "react-force-graph-3d";
|
import ForceGraph3D from "react-force-graph-3d";
|
||||||
|
|
||||||
import {
|
import { type TopUser, type InteractionGraph } from "../types/ApiTypes";
|
||||||
type UserAnalysisResponse,
|
|
||||||
type InteractionGraph,
|
|
||||||
} from "../types/ApiTypes";
|
|
||||||
|
|
||||||
import StatsStyling from "../styles/stats_styling";
|
import StatsStyling from "../styles/stats_styling";
|
||||||
import Card from "./Card";
|
import Card from "./Card";
|
||||||
|
import {
|
||||||
|
buildReplyPairSpec,
|
||||||
|
toText,
|
||||||
|
buildUserSpec,
|
||||||
|
type CorpusExplorerSpec,
|
||||||
|
} from "../utils/corpusExplorer";
|
||||||
|
|
||||||
const styles = StatsStyling;
|
const styles = StatsStyling;
|
||||||
|
|
||||||
@@ -17,37 +20,44 @@ type GraphLink = {
|
|||||||
value: number;
|
value: number;
|
||||||
};
|
};
|
||||||
|
|
||||||
function ApiToGraphData(apiData: InteractionGraph) {
|
function toGraphData(apiData: InteractionGraph) {
|
||||||
const nodes = Object.keys(apiData).map((username) => ({ id: username }));
|
|
||||||
const links: GraphLink[] = [];
|
const links: GraphLink[] = [];
|
||||||
|
const connectedNodeIds = new Set<string>();
|
||||||
|
|
||||||
for (const [source, targets] of Object.entries(apiData)) {
|
for (const [source, targets] of Object.entries(apiData)) {
|
||||||
for (const [target, count] of Object.entries(targets)) {
|
for (const [target, count] of Object.entries(targets)) {
|
||||||
|
if (count < 2 || source === "[deleted]" || target === "[deleted]") {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
links.push({ source, target, value: count });
|
links.push({ source, target, value: count });
|
||||||
|
connectedNodeIds.add(source);
|
||||||
|
connectedNodeIds.add(target);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// drop low-value and deleted interactions to reduce clutter
|
const filteredNodes = Array.from(connectedNodeIds, (id) => ({ id }));
|
||||||
const filteredLinks = links.filter(
|
|
||||||
(link) =>
|
|
||||||
link.value >= 2 &&
|
|
||||||
link.source !== "[deleted]" &&
|
|
||||||
link.target !== "[deleted]",
|
|
||||||
);
|
|
||||||
|
|
||||||
// also filter out nodes that are no longer connected after link filtering
|
return { nodes: filteredNodes, links };
|
||||||
const connectedNodeIds = new Set(
|
|
||||||
filteredLinks.flatMap((link) => [link.source, link.target]),
|
|
||||||
);
|
|
||||||
const filteredNodes = nodes.filter((node) => connectedNodeIds.has(node.id));
|
|
||||||
|
|
||||||
return { nodes: filteredNodes, links: filteredLinks };
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const UserStats = (props: { data: UserAnalysisResponse }) => {
|
type UserStatsProps = {
|
||||||
|
topUsers: TopUser[];
|
||||||
|
interactionGraph: InteractionGraph;
|
||||||
|
totalUsers: number;
|
||||||
|
mostCommentHeavyUser: { author: string; commentShare: number } | null;
|
||||||
|
onExplore: (spec: CorpusExplorerSpec) => void;
|
||||||
|
};
|
||||||
|
|
||||||
|
const UserStats = ({
|
||||||
|
topUsers,
|
||||||
|
interactionGraph,
|
||||||
|
totalUsers,
|
||||||
|
mostCommentHeavyUser,
|
||||||
|
onExplore,
|
||||||
|
}: UserStatsProps) => {
|
||||||
const graphData = useMemo(
|
const graphData = useMemo(
|
||||||
() => ApiToGraphData(props.data.interaction_graph),
|
() => toGraphData(interactionGraph),
|
||||||
[props.data.interaction_graph],
|
[interactionGraph],
|
||||||
);
|
);
|
||||||
const graphContainerRef = useRef<HTMLDivElement | null>(null);
|
const graphContainerRef = useRef<HTMLDivElement | null>(null);
|
||||||
const [graphSize, setGraphSize] = useState({ width: 720, height: 540 });
|
const [graphSize, setGraphSize] = useState({ width: 720, height: 540 });
|
||||||
@@ -66,7 +76,6 @@ const UserStats = (props: { data: UserAnalysisResponse }) => {
|
|||||||
return () => window.removeEventListener("resize", updateGraphSize);
|
return () => window.removeEventListener("resize", updateGraphSize);
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
const totalUsers = props.data.users.length;
|
|
||||||
const connectedUsers = graphData.nodes.length;
|
const connectedUsers = graphData.nodes.length;
|
||||||
const totalInteractions = graphData.links.reduce(
|
const totalInteractions = graphData.links.reduce(
|
||||||
(sum, link) => sum + link.value,
|
(sum, link) => sum + link.value,
|
||||||
@@ -86,13 +95,9 @@ const UserStats = (props: { data: UserAnalysisResponse }) => {
|
|||||||
null,
|
null,
|
||||||
);
|
);
|
||||||
|
|
||||||
const highlyInteractiveUser = [...props.data.users].sort(
|
const mostActiveUser = topUsers.find((u) => u.author !== "[deleted]");
|
||||||
(a, b) => b.comment_share - a.comment_share,
|
const strongestLinkSource = strongestLink ? toText(strongestLink.source) : "";
|
||||||
)[0];
|
const strongestLinkTarget = strongestLink ? toText(strongestLink.target) : "";
|
||||||
|
|
||||||
const mostActiveUser = props.data.top_users.find(
|
|
||||||
(u) => u.author !== "[deleted]",
|
|
||||||
);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div style={styles.page}>
|
<div style={styles.page}>
|
||||||
@@ -117,37 +122,69 @@ const UserStats = (props: { data: UserAnalysisResponse }) => {
|
|||||||
/>
|
/>
|
||||||
<Card
|
<Card
|
||||||
label="Most Active User"
|
label="Most Active User"
|
||||||
value={mostActiveUser?.author ?? "—"}
|
value={mostActiveUser?.author ?? "-"}
|
||||||
sublabel={
|
sublabel={
|
||||||
mostActiveUser
|
mostActiveUser
|
||||||
? `${mostActiveUser.count.toLocaleString()} events`
|
? `${mostActiveUser.count.toLocaleString()} events`
|
||||||
: "No user activity found"
|
: "No user activity found"
|
||||||
}
|
}
|
||||||
|
rightSlot={
|
||||||
|
mostActiveUser ? (
|
||||||
|
<button
|
||||||
|
onClick={() => onExplore(buildUserSpec(mostActiveUser.author))}
|
||||||
|
style={styles.buttonSecondary}
|
||||||
|
>
|
||||||
|
Explore
|
||||||
|
</button>
|
||||||
|
) : null
|
||||||
|
}
|
||||||
style={{ gridColumn: "span 3" }}
|
style={{ gridColumn: "span 3" }}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Card
|
<Card
|
||||||
label="Strongest User Link"
|
label="Strongest User Link"
|
||||||
value={
|
value={
|
||||||
strongestLink
|
strongestLinkSource && strongestLinkTarget
|
||||||
? `${strongestLink.source} -> ${strongestLink.target}`
|
? `${strongestLinkSource} -> ${strongestLinkTarget}`
|
||||||
: "—"
|
: "-"
|
||||||
}
|
}
|
||||||
sublabel={
|
sublabel={
|
||||||
strongestLink
|
strongestLink
|
||||||
? `${strongestLink.value.toLocaleString()} replies`
|
? `${strongestLink.value.toLocaleString()} replies`
|
||||||
: "No graph links after filtering"
|
: "No graph links after filtering"
|
||||||
}
|
}
|
||||||
|
rightSlot={
|
||||||
|
strongestLinkSource && strongestLinkTarget ? (
|
||||||
|
<button
|
||||||
|
onClick={() =>
|
||||||
|
onExplore(buildReplyPairSpec(strongestLinkSource, strongestLinkTarget))
|
||||||
|
}
|
||||||
|
style={styles.buttonSecondary}
|
||||||
|
>
|
||||||
|
Explore
|
||||||
|
</button>
|
||||||
|
) : null
|
||||||
|
}
|
||||||
style={{ gridColumn: "span 6" }}
|
style={{ gridColumn: "span 6" }}
|
||||||
/>
|
/>
|
||||||
<Card
|
<Card
|
||||||
label="Most Comment-Heavy User"
|
label="Most Comment-Heavy User"
|
||||||
value={highlyInteractiveUser?.author ?? "—"}
|
value={mostCommentHeavyUser?.author ?? "-"}
|
||||||
sublabel={
|
sublabel={
|
||||||
highlyInteractiveUser
|
mostCommentHeavyUser
|
||||||
? `${Math.round(highlyInteractiveUser.comment_share * 100)}% comments`
|
? `${Math.round(mostCommentHeavyUser.commentShare * 100)}% comments`
|
||||||
: "No user distribution available"
|
: "No user distribution available"
|
||||||
}
|
}
|
||||||
|
rightSlot={
|
||||||
|
mostCommentHeavyUser ? (
|
||||||
|
<button
|
||||||
|
onClick={() => onExplore(buildUserSpec(mostCommentHeavyUser.author))}
|
||||||
|
style={styles.buttonSecondary}
|
||||||
|
>
|
||||||
|
Explore
|
||||||
|
</button>
|
||||||
|
) : null
|
||||||
|
}
|
||||||
style={{ gridColumn: "span 6" }}
|
style={{ gridColumn: "span 6" }}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
@@ -169,6 +206,19 @@ const UserStats = (props: { data: UserAnalysisResponse }) => {
|
|||||||
linkDirectionalParticleSpeed={0.004}
|
linkDirectionalParticleSpeed={0.004}
|
||||||
linkWidth={(link) => Math.sqrt(Number(link.value))}
|
linkWidth={(link) => Math.sqrt(Number(link.value))}
|
||||||
nodeLabel={(node) => `${node.id}`}
|
nodeLabel={(node) => `${node.id}`}
|
||||||
|
onNodeClick={(node) => {
|
||||||
|
const userId = toText(node.id);
|
||||||
|
if (userId) {
|
||||||
|
onExplore(buildUserSpec(userId));
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
onLinkClick={(link) => {
|
||||||
|
const source = toText(link.source);
|
||||||
|
const target = toText(link.target);
|
||||||
|
if (source && target) {
|
||||||
|
onExplore(buildReplyPairSpec(source, target));
|
||||||
|
}
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ const supportsSearch = (source?: SourceOption): boolean =>
|
|||||||
const supportsCategories = (source?: SourceOption): boolean =>
|
const supportsCategories = (source?: SourceOption): boolean =>
|
||||||
Boolean(source?.categories_enabled ?? source?.categoriesEnabled);
|
Boolean(source?.categories_enabled ?? source?.categoriesEnabled);
|
||||||
|
|
||||||
const AutoScrapePage = () => {
|
const AutoFetchPage = () => {
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
const [datasetName, setDatasetName] = useState("");
|
const [datasetName, setDatasetName] = useState("");
|
||||||
const [sourceOptions, setSourceOptions] = useState<SourceOption[]>([]);
|
const [sourceOptions, setSourceOptions] = useState<SourceOption[]>([]);
|
||||||
@@ -106,11 +106,11 @@ const AutoScrapePage = () => {
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
const autoScrape = async () => {
|
const autoFetch = async () => {
|
||||||
const token = localStorage.getItem("access_token");
|
const token = localStorage.getItem("access_token");
|
||||||
if (!token) {
|
if (!token) {
|
||||||
setHasError(true);
|
setHasError(true);
|
||||||
setReturnMessage("You must be signed in to auto scrape a dataset.");
|
setReturnMessage("You must be signed in to auto fetch a dataset.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -243,7 +243,7 @@ const AutoScrapePage = () => {
|
|||||||
setReturnMessage("");
|
setReturnMessage("");
|
||||||
|
|
||||||
const response = await axios.post(
|
const response = await axios.post(
|
||||||
`${API_BASE_URL}/datasets/scrape`,
|
`${API_BASE_URL}/datasets/fetch`,
|
||||||
requestBody,
|
requestBody,
|
||||||
{
|
{
|
||||||
headers: {
|
headers: {
|
||||||
@@ -255,7 +255,7 @@ const AutoScrapePage = () => {
|
|||||||
const datasetId = Number(response.data.dataset_id);
|
const datasetId = Number(response.data.dataset_id);
|
||||||
|
|
||||||
setReturnMessage(
|
setReturnMessage(
|
||||||
`Auto scrape queued successfully (dataset #${datasetId}). Redirecting to processing status...`,
|
`Auto fetch queued successfully (dataset #${datasetId}). Redirecting to processing status...`,
|
||||||
);
|
);
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
@@ -267,11 +267,11 @@ const AutoScrapePage = () => {
|
|||||||
const message = String(
|
const message = String(
|
||||||
requestError.response?.data?.error ||
|
requestError.response?.data?.error ||
|
||||||
requestError.message ||
|
requestError.message ||
|
||||||
"Auto scrape failed.",
|
"Auto fetch failed.",
|
||||||
);
|
);
|
||||||
setReturnMessage(`Auto scrape failed: ${message}`);
|
setReturnMessage(`Auto fetch failed: ${message}`);
|
||||||
} else {
|
} else {
|
||||||
setReturnMessage("Auto scrape failed due to an unexpected error.");
|
setReturnMessage("Auto fetch failed due to an unexpected error.");
|
||||||
}
|
}
|
||||||
} finally {
|
} finally {
|
||||||
setIsSubmitting(false);
|
setIsSubmitting(false);
|
||||||
@@ -283,9 +283,9 @@ const AutoScrapePage = () => {
|
|||||||
<div style={styles.containerWide}>
|
<div style={styles.containerWide}>
|
||||||
<div style={{ ...styles.card, ...styles.headerBar }}>
|
<div style={{ ...styles.card, ...styles.headerBar }}>
|
||||||
<div>
|
<div>
|
||||||
<h1 style={styles.sectionHeaderTitle}>Auto Scrape Dataset</h1>
|
<h1 style={styles.sectionHeaderTitle}>Auto Fetch Dataset</h1>
|
||||||
<p style={styles.sectionHeaderSubtitle}>
|
<p style={styles.sectionHeaderSubtitle}>
|
||||||
Select sources and scrape settings, then queue processing
|
Select sources and fetch settings, then queue processing
|
||||||
automatically.
|
automatically.
|
||||||
</p>
|
</p>
|
||||||
<p
|
<p
|
||||||
@@ -295,7 +295,7 @@ const AutoScrapePage = () => {
|
|||||||
color: "#9a6700",
|
color: "#9a6700",
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
Warning: Scraping more than 250 posts from any single site can
|
Warning: Fetching more than 250 posts from any single site can
|
||||||
take hours due to rate limits.
|
take hours due to rate limits.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
@@ -305,10 +305,10 @@ const AutoScrapePage = () => {
|
|||||||
...styles.buttonPrimary,
|
...styles.buttonPrimary,
|
||||||
opacity: isSubmitting || isLoadingSources ? 0.75 : 1,
|
opacity: isSubmitting || isLoadingSources ? 0.75 : 1,
|
||||||
}}
|
}}
|
||||||
onClick={autoScrape}
|
onClick={autoFetch}
|
||||||
disabled={isSubmitting || isLoadingSources}
|
disabled={isSubmitting || isLoadingSources}
|
||||||
>
|
>
|
||||||
{isSubmitting ? "Queueing..." : "Auto Scrape and Analyze"}
|
{isSubmitting ? "Queueing..." : "Auto Fetch and Analyze"}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -527,4 +527,4 @@ const AutoScrapePage = () => {
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export default AutoScrapePage;
|
export default AutoFetchPage;
|
||||||
@@ -22,12 +22,10 @@ const DatasetEditPage = () => {
|
|||||||
const [isSaving, setIsSaving] = useState(false);
|
const [isSaving, setIsSaving] = useState(false);
|
||||||
const [isDeleting, setIsDeleting] = useState(false);
|
const [isDeleting, setIsDeleting] = useState(false);
|
||||||
const [isDeleteModalOpen, setIsDeleteModalOpen] = useState(false);
|
const [isDeleteModalOpen, setIsDeleteModalOpen] = useState(false);
|
||||||
const [hasError, setHasError] = useState(false);
|
|
||||||
|
|
||||||
const [datasetName, setDatasetName] = useState("");
|
const [datasetName, setDatasetName] = useState("");
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!Number.isInteger(parsedDatasetId) || parsedDatasetId <= 0) {
|
if (!Number.isInteger(parsedDatasetId) || parsedDatasetId <= 0) {
|
||||||
setHasError(true);
|
|
||||||
setStatusMessage("Invalid dataset id.");
|
setStatusMessage("Invalid dataset id.");
|
||||||
setLoading(false);
|
setLoading(false);
|
||||||
return;
|
return;
|
||||||
@@ -35,7 +33,6 @@ const DatasetEditPage = () => {
|
|||||||
|
|
||||||
const token = localStorage.getItem("access_token");
|
const token = localStorage.getItem("access_token");
|
||||||
if (!token) {
|
if (!token) {
|
||||||
setHasError(true);
|
|
||||||
setStatusMessage("You must be signed in to edit datasets.");
|
setStatusMessage("You must be signed in to edit datasets.");
|
||||||
setLoading(false);
|
setLoading(false);
|
||||||
return;
|
return;
|
||||||
@@ -49,7 +46,6 @@ const DatasetEditPage = () => {
|
|||||||
setDatasetName(response.data.name || "");
|
setDatasetName(response.data.name || "");
|
||||||
})
|
})
|
||||||
.catch((error: unknown) => {
|
.catch((error: unknown) => {
|
||||||
setHasError(true);
|
|
||||||
if (axios.isAxiosError(error)) {
|
if (axios.isAxiosError(error)) {
|
||||||
setStatusMessage(
|
setStatusMessage(
|
||||||
String(error.response?.data?.error || error.message),
|
String(error.response?.data?.error || error.message),
|
||||||
@@ -68,21 +64,18 @@ const DatasetEditPage = () => {
|
|||||||
|
|
||||||
const trimmedName = datasetName.trim();
|
const trimmedName = datasetName.trim();
|
||||||
if (!trimmedName) {
|
if (!trimmedName) {
|
||||||
setHasError(true);
|
|
||||||
setStatusMessage("Please enter a valid dataset name.");
|
setStatusMessage("Please enter a valid dataset name.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const token = localStorage.getItem("access_token");
|
const token = localStorage.getItem("access_token");
|
||||||
if (!token) {
|
if (!token) {
|
||||||
setHasError(true);
|
|
||||||
setStatusMessage("You must be signed in to save changes.");
|
setStatusMessage("You must be signed in to save changes.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
setIsSaving(true);
|
setIsSaving(true);
|
||||||
setHasError(false);
|
|
||||||
setStatusMessage("");
|
setStatusMessage("");
|
||||||
|
|
||||||
await axios.patch(
|
await axios.patch(
|
||||||
@@ -93,7 +86,6 @@ const DatasetEditPage = () => {
|
|||||||
|
|
||||||
navigate("/datasets", { replace: true });
|
navigate("/datasets", { replace: true });
|
||||||
} catch (error: unknown) {
|
} catch (error: unknown) {
|
||||||
setHasError(true);
|
|
||||||
if (axios.isAxiosError(error)) {
|
if (axios.isAxiosError(error)) {
|
||||||
setStatusMessage(
|
setStatusMessage(
|
||||||
String(
|
String(
|
||||||
@@ -111,7 +103,6 @@ const DatasetEditPage = () => {
|
|||||||
const deleteDataset = async () => {
|
const deleteDataset = async () => {
|
||||||
const deleteToken = localStorage.getItem("access_token");
|
const deleteToken = localStorage.getItem("access_token");
|
||||||
if (!deleteToken) {
|
if (!deleteToken) {
|
||||||
setHasError(true);
|
|
||||||
setStatusMessage("You must be signed in to delete datasets.");
|
setStatusMessage("You must be signed in to delete datasets.");
|
||||||
setIsDeleteModalOpen(false);
|
setIsDeleteModalOpen(false);
|
||||||
return;
|
return;
|
||||||
@@ -119,7 +110,6 @@ const DatasetEditPage = () => {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
setIsDeleting(true);
|
setIsDeleting(true);
|
||||||
setHasError(false);
|
|
||||||
setStatusMessage("");
|
setStatusMessage("");
|
||||||
|
|
||||||
await axios.delete(`${API_BASE_URL}/dataset/${parsedDatasetId}`, {
|
await axios.delete(`${API_BASE_URL}/dataset/${parsedDatasetId}`, {
|
||||||
@@ -129,7 +119,6 @@ const DatasetEditPage = () => {
|
|||||||
setIsDeleteModalOpen(false);
|
setIsDeleteModalOpen(false);
|
||||||
navigate("/datasets", { replace: true });
|
navigate("/datasets", { replace: true });
|
||||||
} catch (error: unknown) {
|
} catch (error: unknown) {
|
||||||
setHasError(true);
|
|
||||||
if (axios.isAxiosError(error)) {
|
if (axios.isAxiosError(error)) {
|
||||||
setStatusMessage(
|
setStatusMessage(
|
||||||
String(
|
String(
|
||||||
|
|||||||
@@ -108,9 +108,9 @@ const DatasetsPage = () => {
|
|||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
style={styles.buttonSecondary}
|
style={styles.buttonSecondary}
|
||||||
onClick={() => navigate("/auto-scrape")}
|
onClick={() => navigate("/auto-fetch")}
|
||||||
>
|
>
|
||||||
Auto Scrape Dataset
|
Auto Fetch Dataset
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { useEffect, useState, useRef } from "react";
|
import { useEffect, useRef, useState } from "react";
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
import { useParams } from "react-router-dom";
|
import { useParams } from "react-router-dom";
|
||||||
import StatsStyling from "../styles/stats_styling";
|
import StatsStyling from "../styles/stats_styling";
|
||||||
@@ -8,50 +8,259 @@ import UserStats from "../components/UserStats";
|
|||||||
import LinguisticStats from "../components/LinguisticStats";
|
import LinguisticStats from "../components/LinguisticStats";
|
||||||
import InteractionalStats from "../components/InteractionalStats";
|
import InteractionalStats from "../components/InteractionalStats";
|
||||||
import CulturalStats from "../components/CulturalStats";
|
import CulturalStats from "../components/CulturalStats";
|
||||||
|
import CorpusExplorer from "../components/CorpusExplorer";
|
||||||
|
|
||||||
import {
|
import {
|
||||||
type SummaryResponse,
|
type SummaryResponse,
|
||||||
type UserAnalysisResponse,
|
|
||||||
type TimeAnalysisResponse,
|
type TimeAnalysisResponse,
|
||||||
type ContentAnalysisResponse,
|
type User,
|
||||||
type UserEndpointResponse,
|
type UserEndpointResponse,
|
||||||
type LinguisticAnalysisResponse,
|
type LinguisticAnalysisResponse,
|
||||||
type EmotionalAnalysisResponse,
|
type EmotionalAnalysisResponse,
|
||||||
type InteractionAnalysisResponse,
|
type InteractionAnalysisResponse,
|
||||||
type CulturalAnalysisResponse,
|
type CulturalAnalysisResponse,
|
||||||
} from "../types/ApiTypes";
|
} from "../types/ApiTypes";
|
||||||
|
import {
|
||||||
|
buildExplorerContext,
|
||||||
|
type CorpusExplorerSpec,
|
||||||
|
type DatasetRecord,
|
||||||
|
} from "../utils/corpusExplorer";
|
||||||
|
|
||||||
const API_BASE_URL = import.meta.env.VITE_BACKEND_URL;
|
const API_BASE_URL = import.meta.env.VITE_BACKEND_URL;
|
||||||
const styles = StatsStyling;
|
const styles = StatsStyling;
|
||||||
const DELETED_USERS = ["[deleted]"];
|
const DELETED_USERS = ["[deleted]", "automoderator"];
|
||||||
|
|
||||||
const isDeletedUser = (value: string | null | undefined) =>
|
const isDeletedUser = (value: string | null | undefined) =>
|
||||||
DELETED_USERS.includes((value ?? "").trim().toLowerCase());
|
DELETED_USERS.includes((value ?? "").trim().toLowerCase());
|
||||||
|
|
||||||
|
type ActiveView =
|
||||||
|
| "summary"
|
||||||
|
| "emotional"
|
||||||
|
| "user"
|
||||||
|
| "linguistic"
|
||||||
|
| "interactional"
|
||||||
|
| "cultural";
|
||||||
|
|
||||||
|
type UserStatsMeta = {
|
||||||
|
totalUsers: number;
|
||||||
|
mostCommentHeavyUser: { author: string; commentShare: number } | null;
|
||||||
|
};
|
||||||
|
|
||||||
|
type ExplorerState = {
|
||||||
|
open: boolean;
|
||||||
|
title: string;
|
||||||
|
description: string;
|
||||||
|
emptyMessage: string;
|
||||||
|
records: DatasetRecord[];
|
||||||
|
loading: boolean;
|
||||||
|
error: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
const EMPTY_EXPLORER_STATE: ExplorerState = {
|
||||||
|
open: false,
|
||||||
|
title: "Corpus Explorer",
|
||||||
|
description: "",
|
||||||
|
emptyMessage: "No records found.",
|
||||||
|
records: [],
|
||||||
|
loading: false,
|
||||||
|
error: "",
|
||||||
|
};
|
||||||
|
|
||||||
|
const createExplorerState = (
|
||||||
|
spec: CorpusExplorerSpec,
|
||||||
|
patch: Partial<ExplorerState> = {},
|
||||||
|
): ExplorerState => ({
|
||||||
|
open: true,
|
||||||
|
title: spec.title,
|
||||||
|
description: spec.description,
|
||||||
|
emptyMessage: spec.emptyMessage ?? "No matching records found.",
|
||||||
|
records: [],
|
||||||
|
loading: false,
|
||||||
|
error: "",
|
||||||
|
...patch,
|
||||||
|
});
|
||||||
|
|
||||||
|
const compareRecordsByNewest = (a: DatasetRecord, b: DatasetRecord) => {
|
||||||
|
const aValue = String(a.dt ?? a.date ?? a.timestamp ?? "");
|
||||||
|
const bValue = String(b.dt ?? b.date ?? b.timestamp ?? "");
|
||||||
|
return bValue.localeCompare(aValue);
|
||||||
|
};
|
||||||
|
|
||||||
|
const parseJsonLikePayload = (value: string): unknown => {
|
||||||
|
const normalized = value
|
||||||
|
.replace(/\uFEFF/g, "")
|
||||||
|
.replace(/,\s*([}\]])/g, "$1")
|
||||||
|
.replace(/(:\s*)(NaN|Infinity|-Infinity)\b/g, "$1null")
|
||||||
|
.replace(/(\[\s*)(NaN|Infinity|-Infinity)\b/g, "$1null")
|
||||||
|
.replace(/(,\s*)(NaN|Infinity|-Infinity)\b/g, "$1null")
|
||||||
|
.replace(/(:\s*)None\b/g, "$1null")
|
||||||
|
.replace(/(:\s*)True\b/g, "$1true")
|
||||||
|
.replace(/(:\s*)False\b/g, "$1false")
|
||||||
|
.replace(/(\[\s*)None\b/g, "$1null")
|
||||||
|
.replace(/(\[\s*)True\b/g, "$1true")
|
||||||
|
.replace(/(\[\s*)False\b/g, "$1false")
|
||||||
|
.replace(/(,\s*)None\b/g, "$1null")
|
||||||
|
.replace(/(,\s*)True\b/g, "$1true")
|
||||||
|
.replace(/(,\s*)False\b/g, "$1false");
|
||||||
|
|
||||||
|
return JSON.parse(normalized);
|
||||||
|
};
|
||||||
|
|
||||||
|
const tryParseRecords = (value: string) => {
|
||||||
|
try {
|
||||||
|
return normalizeRecordPayload(parseJsonLikePayload(value));
|
||||||
|
} catch {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const parseRecordStringPayload = (payload: string): DatasetRecord[] | null => {
|
||||||
|
const trimmed = payload.trim();
|
||||||
|
if (!trimmed) {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
|
const direct = tryParseRecords(trimmed);
|
||||||
|
if (direct) {
|
||||||
|
return direct;
|
||||||
|
}
|
||||||
|
|
||||||
|
const ndjsonLines = trimmed
|
||||||
|
.split(/\r?\n/)
|
||||||
|
.map((line) => line.trim())
|
||||||
|
.filter(Boolean);
|
||||||
|
if (ndjsonLines.length > 0) {
|
||||||
|
try {
|
||||||
|
return ndjsonLines.map((line) => parseJsonLikePayload(line)) as DatasetRecord[];
|
||||||
|
} catch {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const bracketStart = trimmed.indexOf("[");
|
||||||
|
const bracketEnd = trimmed.lastIndexOf("]");
|
||||||
|
if (bracketStart !== -1 && bracketEnd > bracketStart) {
|
||||||
|
const parsed = tryParseRecords(trimmed.slice(bracketStart, bracketEnd + 1));
|
||||||
|
if (parsed) {
|
||||||
|
return parsed;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const braceStart = trimmed.indexOf("{");
|
||||||
|
const braceEnd = trimmed.lastIndexOf("}");
|
||||||
|
if (braceStart !== -1 && braceEnd > braceStart) {
|
||||||
|
const parsed = tryParseRecords(trimmed.slice(braceStart, braceEnd + 1));
|
||||||
|
if (parsed) {
|
||||||
|
return parsed;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
};
|
||||||
|
|
||||||
|
const normalizeRecordPayload = (payload: unknown): DatasetRecord[] => {
|
||||||
|
if (typeof payload === "string") {
|
||||||
|
const parsed = parseRecordStringPayload(payload);
|
||||||
|
if (parsed) {
|
||||||
|
return parsed;
|
||||||
|
}
|
||||||
|
|
||||||
|
const preview = payload.trim().slice(0, 120).replace(/\s+/g, " ");
|
||||||
|
throw new Error(
|
||||||
|
`Corpus endpoint returned a non-JSON string payload.${
|
||||||
|
preview ? ` Response preview: ${preview}` : ""
|
||||||
|
}`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (
|
||||||
|
payload &&
|
||||||
|
typeof payload === "object" &&
|
||||||
|
"error" in payload &&
|
||||||
|
typeof (payload as { error?: unknown }).error === "string"
|
||||||
|
) {
|
||||||
|
throw new Error((payload as { error: string }).error);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Array.isArray(payload)) {
|
||||||
|
return payload as DatasetRecord[];
|
||||||
|
}
|
||||||
|
|
||||||
|
if (
|
||||||
|
payload &&
|
||||||
|
typeof payload === "object" &&
|
||||||
|
"data" in payload &&
|
||||||
|
Array.isArray((payload as { data?: unknown }).data)
|
||||||
|
) {
|
||||||
|
return (payload as { data: DatasetRecord[] }).data;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (
|
||||||
|
payload &&
|
||||||
|
typeof payload === "object" &&
|
||||||
|
"records" in payload &&
|
||||||
|
Array.isArray((payload as { records?: unknown }).records)
|
||||||
|
) {
|
||||||
|
return (payload as { records: DatasetRecord[] }).records;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (
|
||||||
|
payload &&
|
||||||
|
typeof payload === "object" &&
|
||||||
|
"rows" in payload &&
|
||||||
|
Array.isArray((payload as { rows?: unknown }).rows)
|
||||||
|
) {
|
||||||
|
return (payload as { rows: DatasetRecord[] }).rows;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (
|
||||||
|
payload &&
|
||||||
|
typeof payload === "object" &&
|
||||||
|
"result" in payload &&
|
||||||
|
Array.isArray((payload as { result?: unknown }).result)
|
||||||
|
) {
|
||||||
|
return (payload as { result: DatasetRecord[] }).result;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (payload && typeof payload === "object") {
|
||||||
|
const values = Object.values(payload);
|
||||||
|
if (values.length === 1 && Array.isArray(values[0])) {
|
||||||
|
return values[0] as DatasetRecord[];
|
||||||
|
}
|
||||||
|
if (values.every((value) => value && typeof value === "object")) {
|
||||||
|
return values as DatasetRecord[];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
throw new Error("Corpus endpoint returned an unexpected payload.");
|
||||||
|
};
|
||||||
|
|
||||||
const StatPage = () => {
|
const StatPage = () => {
|
||||||
const { datasetId: routeDatasetId } = useParams<{ datasetId: string }>();
|
const { datasetId: routeDatasetId } = useParams<{ datasetId: string }>();
|
||||||
const [error, setError] = useState("");
|
const [error, setError] = useState("");
|
||||||
const [loading, setLoading] = useState(false);
|
const [loading, setLoading] = useState(false);
|
||||||
const [activeView, setActiveView] = useState<
|
const [activeView, setActiveView] = useState<ActiveView>("summary");
|
||||||
| "summary"
|
|
||||||
| "emotional"
|
|
||||||
| "user"
|
|
||||||
| "linguistic"
|
|
||||||
| "interactional"
|
|
||||||
| "cultural"
|
|
||||||
>("summary");
|
|
||||||
|
|
||||||
const [userData, setUserData] = useState<UserAnalysisResponse | null>(null);
|
const [userData, setUserData] = useState<UserEndpointResponse | null>(null);
|
||||||
const [timeData, setTimeData] = useState<TimeAnalysisResponse | null>(null);
|
const [timeData, setTimeData] = useState<TimeAnalysisResponse | null>(null);
|
||||||
const [contentData, setContentData] =
|
|
||||||
useState<ContentAnalysisResponse | null>(null);
|
|
||||||
const [linguisticData, setLinguisticData] =
|
const [linguisticData, setLinguisticData] =
|
||||||
useState<LinguisticAnalysisResponse | null>(null);
|
useState<LinguisticAnalysisResponse | null>(null);
|
||||||
|
const [emotionalData, setEmotionalData] =
|
||||||
|
useState<EmotionalAnalysisResponse | null>(null);
|
||||||
const [interactionData, setInteractionData] =
|
const [interactionData, setInteractionData] =
|
||||||
useState<InteractionAnalysisResponse | null>(null);
|
useState<InteractionAnalysisResponse | null>(null);
|
||||||
const [culturalData, setCulturalData] =
|
const [culturalData, setCulturalData] =
|
||||||
useState<CulturalAnalysisResponse | null>(null);
|
useState<CulturalAnalysisResponse | null>(null);
|
||||||
const [summary, setSummary] = useState<SummaryResponse | null>(null);
|
const [summary, setSummary] = useState<SummaryResponse | null>(null);
|
||||||
|
const [userStatsMeta, setUserStatsMeta] = useState<UserStatsMeta>({
|
||||||
|
totalUsers: 0,
|
||||||
|
mostCommentHeavyUser: null,
|
||||||
|
});
|
||||||
|
const [appliedFilters, setAppliedFilters] = useState<Record<string, string>>({});
|
||||||
|
const [allRecords, setAllRecords] = useState<DatasetRecord[] | null>(null);
|
||||||
|
const [allRecordsKey, setAllRecordsKey] = useState("");
|
||||||
|
const [explorerState, setExplorerState] = useState<ExplorerState>(
|
||||||
|
EMPTY_EXPLORER_STATE,
|
||||||
|
);
|
||||||
|
|
||||||
const searchInputRef = useRef<HTMLInputElement>(null);
|
const searchInputRef = useRef<HTMLInputElement>(null);
|
||||||
const beforeDateRef = useRef<HTMLInputElement>(null);
|
const beforeDateRef = useRef<HTMLInputElement>(null);
|
||||||
@@ -95,6 +304,59 @@ const StatPage = () => {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const getFilterKey = (params: Record<string, string>) =>
|
||||||
|
JSON.stringify(Object.entries(params).sort(([a], [b]) => a.localeCompare(b)));
|
||||||
|
|
||||||
|
const ensureFilteredRecords = async () => {
|
||||||
|
if (!datasetId) {
|
||||||
|
throw new Error("Missing dataset id.");
|
||||||
|
}
|
||||||
|
|
||||||
|
const authHeaders = getAuthHeaders();
|
||||||
|
if (!authHeaders) {
|
||||||
|
throw new Error("You must be signed in to load corpus records.");
|
||||||
|
}
|
||||||
|
|
||||||
|
const filterKey = getFilterKey(appliedFilters);
|
||||||
|
if (allRecords && allRecordsKey === filterKey) {
|
||||||
|
return allRecords;
|
||||||
|
}
|
||||||
|
|
||||||
|
const response = await axios.get<unknown>(
|
||||||
|
`${API_BASE_URL}/dataset/${datasetId}/all`,
|
||||||
|
{
|
||||||
|
params: appliedFilters,
|
||||||
|
headers: authHeaders,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
|
const normalizedRecords = normalizeRecordPayload(response.data);
|
||||||
|
|
||||||
|
setAllRecords(normalizedRecords);
|
||||||
|
setAllRecordsKey(filterKey);
|
||||||
|
return normalizedRecords;
|
||||||
|
};
|
||||||
|
|
||||||
|
const openExplorer = async (spec: CorpusExplorerSpec) => {
|
||||||
|
setExplorerState(createExplorerState(spec, { loading: true }));
|
||||||
|
|
||||||
|
try {
|
||||||
|
const records = await ensureFilteredRecords();
|
||||||
|
const context = buildExplorerContext(records);
|
||||||
|
const matched = records
|
||||||
|
.filter((record) => spec.matcher(record, context))
|
||||||
|
.sort(compareRecordsByNewest);
|
||||||
|
|
||||||
|
setExplorerState(createExplorerState(spec, { records: matched }));
|
||||||
|
} catch (e) {
|
||||||
|
setExplorerState(
|
||||||
|
createExplorerState(spec, {
|
||||||
|
error: `Failed to load corpus records: ${String(e)}`,
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
const getStats = (params: Record<string, string> = {}) => {
|
const getStats = (params: Record<string, string> = {}) => {
|
||||||
if (!datasetId) {
|
if (!datasetId) {
|
||||||
setError("Missing dataset id. Open /dataset/<id>/stats.");
|
setError("Missing dataset id. Open /dataset/<id>/stats.");
|
||||||
@@ -109,22 +371,20 @@ const StatPage = () => {
|
|||||||
|
|
||||||
setError("");
|
setError("");
|
||||||
setLoading(true);
|
setLoading(true);
|
||||||
|
setAppliedFilters(params);
|
||||||
|
setAllRecords(null);
|
||||||
|
setAllRecordsKey("");
|
||||||
|
setExplorerState((current) => ({ ...current, open: false }));
|
||||||
|
|
||||||
Promise.all([
|
Promise.all([
|
||||||
axios.get<TimeAnalysisResponse>(
|
axios.get<TimeAnalysisResponse>(`${API_BASE_URL}/dataset/${datasetId}/temporal`, {
|
||||||
`${API_BASE_URL}/dataset/${datasetId}/temporal`,
|
params,
|
||||||
{
|
headers: authHeaders,
|
||||||
params,
|
}),
|
||||||
headers: authHeaders,
|
axios.get<UserEndpointResponse>(`${API_BASE_URL}/dataset/${datasetId}/user`, {
|
||||||
},
|
params,
|
||||||
),
|
headers: authHeaders,
|
||||||
axios.get<UserEndpointResponse>(
|
}),
|
||||||
`${API_BASE_URL}/dataset/${datasetId}/user`,
|
|
||||||
{
|
|
||||||
params,
|
|
||||||
headers: authHeaders,
|
|
||||||
},
|
|
||||||
),
|
|
||||||
axios.get<LinguisticAnalysisResponse>(
|
axios.get<LinguisticAnalysisResponse>(
|
||||||
`${API_BASE_URL}/dataset/${datasetId}/linguistic`,
|
`${API_BASE_URL}/dataset/${datasetId}/linguistic`,
|
||||||
{
|
{
|
||||||
@@ -132,13 +392,10 @@ const StatPage = () => {
|
|||||||
headers: authHeaders,
|
headers: authHeaders,
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
axios.get<EmotionalAnalysisResponse>(
|
axios.get<EmotionalAnalysisResponse>(`${API_BASE_URL}/dataset/${datasetId}/emotional`, {
|
||||||
`${API_BASE_URL}/dataset/${datasetId}/emotional`,
|
params,
|
||||||
{
|
headers: authHeaders,
|
||||||
params,
|
}),
|
||||||
headers: authHeaders,
|
|
||||||
},
|
|
||||||
),
|
|
||||||
axios.get<InteractionAnalysisResponse>(
|
axios.get<InteractionAnalysisResponse>(
|
||||||
`${API_BASE_URL}/dataset/${datasetId}/interactional`,
|
`${API_BASE_URL}/dataset/${datasetId}/interactional`,
|
||||||
{
|
{
|
||||||
@@ -146,20 +403,14 @@ const StatPage = () => {
|
|||||||
headers: authHeaders,
|
headers: authHeaders,
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
axios.get<SummaryResponse>(
|
axios.get<SummaryResponse>(`${API_BASE_URL}/dataset/${datasetId}/summary`, {
|
||||||
`${API_BASE_URL}/dataset/${datasetId}/summary`,
|
params,
|
||||||
{
|
headers: authHeaders,
|
||||||
params,
|
}),
|
||||||
headers: authHeaders,
|
axios.get<CulturalAnalysisResponse>(`${API_BASE_URL}/dataset/${datasetId}/cultural`, {
|
||||||
},
|
params,
|
||||||
),
|
headers: authHeaders,
|
||||||
axios.get<CulturalAnalysisResponse>(
|
}),
|
||||||
`${API_BASE_URL}/dataset/${datasetId}/cultural`,
|
|
||||||
{
|
|
||||||
params,
|
|
||||||
headers: authHeaders,
|
|
||||||
},
|
|
||||||
),
|
|
||||||
])
|
])
|
||||||
.then(
|
.then(
|
||||||
([
|
([
|
||||||
@@ -173,8 +424,7 @@ const StatPage = () => {
|
|||||||
]) => {
|
]) => {
|
||||||
const usersList = userRes.data.users ?? [];
|
const usersList = userRes.data.users ?? [];
|
||||||
const topUsersList = userRes.data.top_users ?? [];
|
const topUsersList = userRes.data.top_users ?? [];
|
||||||
const interactionGraphRaw =
|
const interactionGraphRaw = interactionRes.data?.interaction_graph ?? {};
|
||||||
interactionRes.data?.interaction_graph ?? {};
|
|
||||||
const topPairsRaw = interactionRes.data?.top_interaction_pairs ?? [];
|
const topPairsRaw = interactionRes.data?.top_interaction_pairs ?? [];
|
||||||
|
|
||||||
const filteredUsers: typeof usersList = [];
|
const filteredUsers: typeof usersList = [];
|
||||||
@@ -189,10 +439,26 @@ const StatPage = () => {
|
|||||||
filteredTopUsers.push(user);
|
filteredTopUsers.push(user);
|
||||||
}
|
}
|
||||||
|
|
||||||
const filteredInteractionGraph: Record<
|
let mostCommentHeavyUser: UserStatsMeta["mostCommentHeavyUser"] = null;
|
||||||
string,
|
for (const user of filteredUsers) {
|
||||||
Record<string, number>
|
const currentShare = user.comment_share ?? 0;
|
||||||
> = {};
|
if (!mostCommentHeavyUser || currentShare > mostCommentHeavyUser.commentShare) {
|
||||||
|
mostCommentHeavyUser = {
|
||||||
|
author: user.author,
|
||||||
|
commentShare: currentShare,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const topAuthors = new Set(filteredTopUsers.map((entry) => entry.author));
|
||||||
|
const summaryUsers: User[] = [];
|
||||||
|
for (const user of filteredUsers) {
|
||||||
|
if (topAuthors.has(user.author)) {
|
||||||
|
summaryUsers.push(user);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const filteredInteractionGraph: Record<string, Record<string, number>> = {};
|
||||||
for (const [source, targets] of Object.entries(interactionGraphRaw)) {
|
for (const [source, targets] of Object.entries(interactionGraphRaw)) {
|
||||||
if (isDeletedUser(source)) {
|
if (isDeletedUser(source)) {
|
||||||
continue;
|
continue;
|
||||||
@@ -220,16 +486,9 @@ const StatPage = () => {
|
|||||||
filteredTopInteractionPairs.push(pairEntry);
|
filteredTopInteractionPairs.push(pairEntry);
|
||||||
}
|
}
|
||||||
|
|
||||||
const combinedUserData: UserAnalysisResponse = {
|
const filteredUserData: UserEndpointResponse = {
|
||||||
...userRes.data,
|
users: summaryUsers,
|
||||||
users: filteredUsers,
|
|
||||||
top_users: filteredTopUsers,
|
top_users: filteredTopUsers,
|
||||||
interaction_graph: filteredInteractionGraph,
|
|
||||||
};
|
|
||||||
|
|
||||||
const combinedContentData: ContentAnalysisResponse = {
|
|
||||||
...linguisticRes.data,
|
|
||||||
...emotionalRes.data,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const filteredInteractionData: InteractionAnalysisResponse = {
|
const filteredInteractionData: InteractionAnalysisResponse = {
|
||||||
@@ -243,16 +502,20 @@ const StatPage = () => {
|
|||||||
unique_users: filteredUsers.length,
|
unique_users: filteredUsers.length,
|
||||||
};
|
};
|
||||||
|
|
||||||
setUserData(combinedUserData);
|
setUserData(filteredUserData);
|
||||||
|
setUserStatsMeta({
|
||||||
|
totalUsers: filteredUsers.length,
|
||||||
|
mostCommentHeavyUser,
|
||||||
|
});
|
||||||
setTimeData(timeRes.data || null);
|
setTimeData(timeRes.data || null);
|
||||||
setContentData(combinedContentData);
|
|
||||||
setLinguisticData(linguisticRes.data || null);
|
setLinguisticData(linguisticRes.data || null);
|
||||||
|
setEmotionalData(emotionalRes.data || null);
|
||||||
setInteractionData(filteredInteractionData || null);
|
setInteractionData(filteredInteractionData || null);
|
||||||
setCulturalData(culturalRes.data || null);
|
setCulturalData(culturalRes.data || null);
|
||||||
setSummary(filteredSummary || null);
|
setSummary(filteredSummary || null);
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
.catch((e) => setError("Failed to load statistics: " + String(e)))
|
.catch((e) => setError(`Failed to load statistics: ${String(e)}`))
|
||||||
.finally(() => setLoading(false));
|
.finally(() => setLoading(false));
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -275,6 +538,9 @@ const StatPage = () => {
|
|||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
setError("");
|
setError("");
|
||||||
|
setAllRecords(null);
|
||||||
|
setAllRecordsKey("");
|
||||||
|
setExplorerState(EMPTY_EXPLORER_STATE);
|
||||||
if (!datasetId) {
|
if (!datasetId) {
|
||||||
setError("Missing dataset id. Open /dataset/<id>/stats.");
|
setError("Missing dataset id. Open /dataset/<id>/stats.");
|
||||||
return;
|
return;
|
||||||
@@ -371,9 +637,7 @@ const StatPage = () => {
|
|||||||
<button
|
<button
|
||||||
onClick={() => setActiveView("summary")}
|
onClick={() => setActiveView("summary")}
|
||||||
style={
|
style={
|
||||||
activeView === "summary"
|
activeView === "summary" ? styles.buttonPrimary : styles.buttonSecondary
|
||||||
? styles.buttonPrimary
|
|
||||||
: styles.buttonSecondary
|
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
Summary
|
Summary
|
||||||
@@ -391,11 +655,7 @@ const StatPage = () => {
|
|||||||
|
|
||||||
<button
|
<button
|
||||||
onClick={() => setActiveView("user")}
|
onClick={() => setActiveView("user")}
|
||||||
style={
|
style={activeView === "user" ? styles.buttonPrimary : styles.buttonSecondary}
|
||||||
activeView === "user"
|
|
||||||
? styles.buttonPrimary
|
|
||||||
: styles.buttonSecondary
|
|
||||||
}
|
|
||||||
>
|
>
|
||||||
Users
|
Users
|
||||||
</button>
|
</button>
|
||||||
@@ -422,9 +682,7 @@ const StatPage = () => {
|
|||||||
<button
|
<button
|
||||||
onClick={() => setActiveView("cultural")}
|
onClick={() => setActiveView("cultural")}
|
||||||
style={
|
style={
|
||||||
activeView === "cultural"
|
activeView === "cultural" ? styles.buttonPrimary : styles.buttonSecondary
|
||||||
? styles.buttonPrimary
|
|
||||||
: styles.buttonSecondary
|
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
Cultural
|
Cultural
|
||||||
@@ -435,25 +693,40 @@ const StatPage = () => {
|
|||||||
<SummaryStats
|
<SummaryStats
|
||||||
userData={userData}
|
userData={userData}
|
||||||
timeData={timeData}
|
timeData={timeData}
|
||||||
contentData={contentData}
|
linguisticData={linguisticData}
|
||||||
summary={summary}
|
summary={summary}
|
||||||
|
onExplore={openExplorer}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{activeView === "emotional" && contentData && (
|
{activeView === "emotional" && emotionalData && (
|
||||||
<EmotionalStats contentData={contentData} />
|
<EmotionalStats emotionalData={emotionalData} onExplore={openExplorer} />
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{activeView === "emotional" && !contentData && (
|
{activeView === "emotional" && !emotionalData && (
|
||||||
<div style={{ ...styles.container, ...styles.card, marginTop: 16 }}>
|
<div style={{ ...styles.container, ...styles.card, marginTop: 16 }}>
|
||||||
No emotional data available.
|
No emotional data available.
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{activeView === "user" && userData && <UserStats data={userData} />}
|
{activeView === "user" && userData && interactionData && (
|
||||||
|
<UserStats
|
||||||
|
topUsers={userData.top_users}
|
||||||
|
interactionGraph={interactionData.interaction_graph}
|
||||||
|
totalUsers={userStatsMeta.totalUsers}
|
||||||
|
mostCommentHeavyUser={userStatsMeta.mostCommentHeavyUser}
|
||||||
|
onExplore={openExplorer}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{activeView === "user" && (!userData || !interactionData) && (
|
||||||
|
<div style={{ ...styles.container, ...styles.card, marginTop: 16 }}>
|
||||||
|
No user network data available.
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
{activeView === "linguistic" && linguisticData && (
|
{activeView === "linguistic" && linguisticData && (
|
||||||
<LinguisticStats data={linguisticData} />
|
<LinguisticStats data={linguisticData} onExplore={openExplorer} />
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{activeView === "linguistic" && !linguisticData && (
|
{activeView === "linguistic" && !linguisticData && (
|
||||||
@@ -473,7 +746,7 @@ const StatPage = () => {
|
|||||||
)}
|
)}
|
||||||
|
|
||||||
{activeView === "cultural" && culturalData && (
|
{activeView === "cultural" && culturalData && (
|
||||||
<CulturalStats data={culturalData} />
|
<CulturalStats data={culturalData} onExplore={openExplorer} />
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{activeView === "cultural" && !culturalData && (
|
{activeView === "cultural" && !culturalData && (
|
||||||
@@ -481,6 +754,17 @@ const StatPage = () => {
|
|||||||
No cultural data available.
|
No cultural data available.
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
|
<CorpusExplorer
|
||||||
|
open={explorerState.open}
|
||||||
|
onClose={() => setExplorerState((current) => ({ ...current, open: false }))}
|
||||||
|
title={explorerState.title}
|
||||||
|
description={explorerState.description}
|
||||||
|
records={explorerState.records}
|
||||||
|
loading={explorerState.loading}
|
||||||
|
error={explorerState.error}
|
||||||
|
emptyMessage={explorerState.emptyMessage}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import { ResponsiveHeatMap } from "@nivo/heatmap";
|
import { ResponsiveHeatMap } from "@nivo/heatmap";
|
||||||
|
import { memo, useMemo } from "react";
|
||||||
|
|
||||||
type ApiRow = Record<number, number>;
|
type ApiRow = Record<number, number>;
|
||||||
type ActivityHeatmapProps = {
|
type ActivityHeatmapProps = {
|
||||||
@@ -40,11 +41,19 @@ const convertWeeklyData = (dataset: ApiRow[]): ChartSeries[] => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const ActivityHeatmap = ({ data }: ActivityHeatmapProps) => {
|
const ActivityHeatmap = ({ data }: ActivityHeatmapProps) => {
|
||||||
const convertedData = convertWeeklyData(data);
|
const convertedData = useMemo(() => convertWeeklyData(data), [data]);
|
||||||
|
|
||||||
const maxValue = Math.max(
|
const maxValue = useMemo(() => {
|
||||||
...convertedData.flatMap((day) => day.data.map((point) => point.y)),
|
let max = 0;
|
||||||
);
|
for (const day of convertedData) {
|
||||||
|
for (const point of day.data) {
|
||||||
|
if (point.y > max) {
|
||||||
|
max = point.y;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return max;
|
||||||
|
}, [convertedData]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ResponsiveHeatMap
|
<ResponsiveHeatMap
|
||||||
@@ -64,4 +73,4 @@ const ActivityHeatmap = ({ data }: ActivityHeatmapProps) => {
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export default ActivityHeatmap;
|
export default memo(ActivityHeatmap);
|
||||||
|
|||||||
@@ -34,6 +34,11 @@ type Vocab = {
|
|||||||
top_words: FrequencyWord[];
|
top_words: FrequencyWord[];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
type DominantTopic = {
|
||||||
|
topic: string;
|
||||||
|
count: number;
|
||||||
|
};
|
||||||
|
|
||||||
type User = {
|
type User = {
|
||||||
author: string;
|
author: string;
|
||||||
post: number;
|
post: number;
|
||||||
@@ -41,6 +46,7 @@ type User = {
|
|||||||
comment_post_ratio: number;
|
comment_post_ratio: number;
|
||||||
comment_share: number;
|
comment_share: number;
|
||||||
avg_emotions?: Record<string, number>;
|
avg_emotions?: Record<string, number>;
|
||||||
|
dominant_topic?: DominantTopic | null;
|
||||||
vocab?: Vocab | null;
|
vocab?: Vocab | null;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -135,7 +141,6 @@ type ConversationConcentration = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
type InteractionAnalysisResponse = {
|
type InteractionAnalysisResponse = {
|
||||||
average_thread_depth?: number;
|
|
||||||
top_interaction_pairs?: [[string, string], number][];
|
top_interaction_pairs?: [[string, string], number][];
|
||||||
conversation_concentration?: ConversationConcentration;
|
conversation_concentration?: ConversationConcentration;
|
||||||
interaction_graph: InteractionGraph;
|
interaction_graph: InteractionGraph;
|
||||||
@@ -163,6 +168,10 @@ type StanceMarkers = {
|
|||||||
certainty_per_1k_tokens: number;
|
certainty_per_1k_tokens: number;
|
||||||
deontic_per_1k_tokens: number;
|
deontic_per_1k_tokens: number;
|
||||||
permission_per_1k_tokens: number;
|
permission_per_1k_tokens: number;
|
||||||
|
hedge_emotion_avg?: Record<string, number>;
|
||||||
|
certainty_emotion_avg?: Record<string, number>;
|
||||||
|
deontic_emotion_avg?: Record<string, number>;
|
||||||
|
permission_emotion_avg?: Record<string, number>;
|
||||||
};
|
};
|
||||||
|
|
||||||
type EntityEmotionAggregate = {
|
type EntityEmotionAggregate = {
|
||||||
@@ -203,6 +212,7 @@ type FilterResponse = {
|
|||||||
|
|
||||||
export type {
|
export type {
|
||||||
TopUser,
|
TopUser,
|
||||||
|
DominantTopic,
|
||||||
Vocab,
|
Vocab,
|
||||||
User,
|
User,
|
||||||
InteractionGraph,
|
InteractionGraph,
|
||||||
|
|||||||
371
frontend/src/utils/corpusExplorer.ts
Normal file
@@ -0,0 +1,371 @@
|
|||||||
|
type EntityRecord = {
|
||||||
|
text?: string;
|
||||||
|
[key: string]: unknown;
|
||||||
|
};
|
||||||
|
|
||||||
|
type DatasetRecord = {
|
||||||
|
id?: string | number;
|
||||||
|
post_id?: string | number | null;
|
||||||
|
parent_id?: string | number | null;
|
||||||
|
author?: string | null;
|
||||||
|
title?: string | null;
|
||||||
|
content?: string | null;
|
||||||
|
timestamp?: string | number | null;
|
||||||
|
date?: string | null;
|
||||||
|
dt?: string | null;
|
||||||
|
hour?: number | null;
|
||||||
|
weekday?: string | null;
|
||||||
|
reply_to?: string | number | null;
|
||||||
|
source?: string | null;
|
||||||
|
topic?: string | null;
|
||||||
|
topic_confidence?: number | null;
|
||||||
|
type?: string | null;
|
||||||
|
ner_entities?: EntityRecord[] | null;
|
||||||
|
emotion_anger?: number | null;
|
||||||
|
emotion_disgust?: number | null;
|
||||||
|
emotion_fear?: number | null;
|
||||||
|
emotion_joy?: number | null;
|
||||||
|
emotion_sadness?: number | null;
|
||||||
|
[key: string]: unknown;
|
||||||
|
};
|
||||||
|
|
||||||
|
type CorpusExplorerContext = {
|
||||||
|
authorByPostId: Map<string, string>;
|
||||||
|
authorEventCounts: Map<string, number>;
|
||||||
|
authorCommentCounts: Map<string, number>;
|
||||||
|
};
|
||||||
|
|
||||||
|
type CorpusExplorerSpec = {
|
||||||
|
title: string;
|
||||||
|
description: string;
|
||||||
|
emptyMessage?: string;
|
||||||
|
matcher: (record: DatasetRecord, context: CorpusExplorerContext) => boolean;
|
||||||
|
};
|
||||||
|
|
||||||
|
const IN_GROUP_PATTERN = /\b(we|us|our|ourselves)\b/gi;
|
||||||
|
const OUT_GROUP_PATTERN = /\b(they|them|their|themselves)\b/gi;
|
||||||
|
const HEDGE_PATTERN = /\b(maybe|perhaps|possibly|probably|likely|seems|seem|i think|i feel|i guess|kind of|sort of|somewhat)\b/i;
|
||||||
|
const CERTAINTY_PATTERN = /\b(definitely|certainly|clearly|obviously|undeniably|always|never)\b/i;
|
||||||
|
const DEONTIC_PATTERN = /\b(must|should|need|needs|have to|has to|ought|required|require)\b/i;
|
||||||
|
const PERMISSION_PATTERN = /\b(can|allowed|okay|ok|permitted)\b/i;
|
||||||
|
const EMOTION_KEYS = [
|
||||||
|
"emotion_anger",
|
||||||
|
"emotion_disgust",
|
||||||
|
"emotion_fear",
|
||||||
|
"emotion_joy",
|
||||||
|
"emotion_sadness",
|
||||||
|
] as const;
|
||||||
|
|
||||||
|
const toText = (value: unknown) => {
|
||||||
|
if (typeof value === "string") {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (typeof value === "number" || typeof value === "boolean") {
|
||||||
|
return String(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (value && typeof value === "object" && "id" in value) {
|
||||||
|
const id = (value as { id?: unknown }).id;
|
||||||
|
if (typeof id === "string" || typeof id === "number") {
|
||||||
|
return String(id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return "";
|
||||||
|
};
|
||||||
|
|
||||||
|
const normalize = (value: unknown) => toText(value).trim().toLowerCase();
|
||||||
|
const getAuthor = (record: DatasetRecord) => toText(record.author).trim();
|
||||||
|
|
||||||
|
const getRecordText = (record: DatasetRecord) =>
|
||||||
|
`${record.title ?? ""} ${record.content ?? ""}`.trim();
|
||||||
|
|
||||||
|
const escapeRegExp = (value: string) =>
|
||||||
|
value.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
||||||
|
|
||||||
|
const buildPhrasePattern = (phrase: string) => {
|
||||||
|
const tokens = phrase
|
||||||
|
.toLowerCase()
|
||||||
|
.trim()
|
||||||
|
.split(/\s+/)
|
||||||
|
.filter(Boolean)
|
||||||
|
.map(escapeRegExp);
|
||||||
|
|
||||||
|
if (!tokens.length) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return new RegExp(`\\b${tokens.join("\\s+")}\\b`, "i");
|
||||||
|
};
|
||||||
|
|
||||||
|
const countMatches = (pattern: RegExp, text: string) =>
|
||||||
|
Array.from(text.matchAll(new RegExp(pattern.source, "gi"))).length;
|
||||||
|
|
||||||
|
const getDateBucket = (record: DatasetRecord) => {
|
||||||
|
if (typeof record.date === "string" && record.date) {
|
||||||
|
return record.date.slice(0, 10);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (typeof record.dt === "string" && record.dt) {
|
||||||
|
return record.dt.slice(0, 10);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (typeof record.timestamp === "number") {
|
||||||
|
return new Date(record.timestamp * 1000).toISOString().slice(0, 10);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (typeof record.timestamp === "string" && record.timestamp) {
|
||||||
|
const numeric = Number(record.timestamp);
|
||||||
|
if (Number.isFinite(numeric)) {
|
||||||
|
return new Date(numeric * 1000).toISOString().slice(0, 10);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return "";
|
||||||
|
};
|
||||||
|
|
||||||
|
const getDominantEmotion = (record: DatasetRecord) => {
|
||||||
|
let bestKey = "";
|
||||||
|
let bestValue = Number.NEGATIVE_INFINITY;
|
||||||
|
|
||||||
|
for (const key of EMOTION_KEYS) {
|
||||||
|
const value = Number(record[key] ?? Number.NEGATIVE_INFINITY);
|
||||||
|
if (value > bestValue) {
|
||||||
|
bestValue = value;
|
||||||
|
bestKey = key;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return bestKey.replace("emotion_", "");
|
||||||
|
};
|
||||||
|
|
||||||
|
const matchesPhrase = (record: DatasetRecord, phrase: string) => {
|
||||||
|
const pattern = buildPhrasePattern(phrase);
|
||||||
|
if (!pattern) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return pattern.test(getRecordText(record));
|
||||||
|
};
|
||||||
|
|
||||||
|
const recordIdentityBucket = (record: DatasetRecord) => {
|
||||||
|
const text = getRecordText(record);
|
||||||
|
const inHits = countMatches(IN_GROUP_PATTERN, text);
|
||||||
|
const outHits = countMatches(OUT_GROUP_PATTERN, text);
|
||||||
|
|
||||||
|
if (inHits > outHits) {
|
||||||
|
return "in";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (outHits > inHits) {
|
||||||
|
return "out";
|
||||||
|
}
|
||||||
|
|
||||||
|
return "tie";
|
||||||
|
};
|
||||||
|
|
||||||
|
const buildExplorerContext = (records: DatasetRecord[]): CorpusExplorerContext => {
|
||||||
|
const authorByPostId = new Map<string, string>();
|
||||||
|
const authorEventCounts = new Map<string, number>();
|
||||||
|
const authorCommentCounts = new Map<string, number>();
|
||||||
|
|
||||||
|
for (const record of records) {
|
||||||
|
const author = getAuthor(record);
|
||||||
|
if (!author) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
authorEventCounts.set(author, (authorEventCounts.get(author) ?? 0) + 1);
|
||||||
|
|
||||||
|
if (record.type === "comment") {
|
||||||
|
authorCommentCounts.set(author, (authorCommentCounts.get(author) ?? 0) + 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (record.post_id !== null && record.post_id !== undefined) {
|
||||||
|
authorByPostId.set(String(record.post_id), author);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return { authorByPostId, authorEventCounts, authorCommentCounts };
|
||||||
|
};
|
||||||
|
|
||||||
|
const buildAllRecordsSpec = (): CorpusExplorerSpec => ({
|
||||||
|
title: "Corpus Explorer",
|
||||||
|
description: "All records in the current filtered dataset.",
|
||||||
|
emptyMessage: "No records match the current filters.",
|
||||||
|
matcher: () => true,
|
||||||
|
});
|
||||||
|
|
||||||
|
const buildUserSpec = (author: string): CorpusExplorerSpec => {
|
||||||
|
const target = normalize(author);
|
||||||
|
|
||||||
|
return {
|
||||||
|
title: `User: ${author}`,
|
||||||
|
description: `All records authored by ${author}.`,
|
||||||
|
emptyMessage: `No records found for ${author}.`,
|
||||||
|
matcher: (record) => normalize(record.author) === target,
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
const buildTopicSpec = (topic: string): CorpusExplorerSpec => {
|
||||||
|
const target = normalize(topic);
|
||||||
|
|
||||||
|
return {
|
||||||
|
title: `Topic: ${topic}`,
|
||||||
|
description: `Records assigned to the ${topic} topic bucket.`,
|
||||||
|
emptyMessage: `No records found in the ${topic} topic bucket.`,
|
||||||
|
matcher: (record) => normalize(record.topic) === target,
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
const buildDateBucketSpec = (date: string): CorpusExplorerSpec => ({
|
||||||
|
title: `Date Bucket: ${date}`,
|
||||||
|
description: `Records from the ${date} activity bucket.`,
|
||||||
|
emptyMessage: `No records found on ${date}.`,
|
||||||
|
matcher: (record) => getDateBucket(record) === date,
|
||||||
|
});
|
||||||
|
|
||||||
|
const buildWordSpec = (word: string): CorpusExplorerSpec => ({
|
||||||
|
title: `Word: ${word}`,
|
||||||
|
description: `Records containing the word ${word}.`,
|
||||||
|
emptyMessage: `No records mention ${word}.`,
|
||||||
|
matcher: (record) => matchesPhrase(record, word),
|
||||||
|
});
|
||||||
|
|
||||||
|
const buildNgramSpec = (ngram: string): CorpusExplorerSpec => ({
|
||||||
|
title: `N-gram: ${ngram}`,
|
||||||
|
description: `Records containing the phrase ${ngram}.`,
|
||||||
|
emptyMessage: `No records contain the phrase ${ngram}.`,
|
||||||
|
matcher: (record) => matchesPhrase(record, ngram),
|
||||||
|
});
|
||||||
|
|
||||||
|
const buildEntitySpec = (entity: string): CorpusExplorerSpec => {
|
||||||
|
const target = normalize(entity);
|
||||||
|
|
||||||
|
return {
|
||||||
|
title: `Entity: ${entity}`,
|
||||||
|
description: `Records mentioning the ${entity} entity.`,
|
||||||
|
emptyMessage: `No records found for the ${entity} entity.`,
|
||||||
|
matcher: (record) => {
|
||||||
|
const entities = Array.isArray(record.ner_entities) ? record.ner_entities : [];
|
||||||
|
return entities.some((item) => normalize(item?.text) === target) || matchesPhrase(record, entity);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
const buildSourceSpec = (source: string): CorpusExplorerSpec => {
|
||||||
|
const target = normalize(source);
|
||||||
|
|
||||||
|
return {
|
||||||
|
title: `Source: ${source}`,
|
||||||
|
description: `Records from the ${source} source.`,
|
||||||
|
emptyMessage: `No records found for ${source}.`,
|
||||||
|
matcher: (record) => normalize(record.source) === target,
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
const buildDominantEmotionSpec = (emotion: string): CorpusExplorerSpec => {
|
||||||
|
const target = normalize(emotion);
|
||||||
|
|
||||||
|
return {
|
||||||
|
title: `Dominant Emotion: ${emotion}`,
|
||||||
|
description: `Records where ${emotion} is the strongest emotion score.`,
|
||||||
|
emptyMessage: `No records found with dominant emotion ${emotion}.`,
|
||||||
|
matcher: (record) => getDominantEmotion(record) === target,
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
const buildReplyPairSpec = (source: string, target: string): CorpusExplorerSpec => {
|
||||||
|
const sourceName = normalize(source);
|
||||||
|
const targetName = normalize(target);
|
||||||
|
|
||||||
|
return {
|
||||||
|
title: `Reply Path: ${source} -> ${target}`,
|
||||||
|
description: `Reply records authored by ${source} in response to ${target}.`,
|
||||||
|
emptyMessage: `No reply records found for ${source} -> ${target}.`,
|
||||||
|
matcher: (record, context) => {
|
||||||
|
if (normalize(record.author) !== sourceName) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
const replyTo = record.reply_to;
|
||||||
|
if (replyTo === null || replyTo === undefined || replyTo === "") {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return normalize(context.authorByPostId.get(String(replyTo))) === targetName;
|
||||||
|
},
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
const buildOneTimeUsersSpec = (): CorpusExplorerSpec => ({
|
||||||
|
title: "One-Time Users",
|
||||||
|
description: "Records written by authors who appear exactly once in the filtered corpus.",
|
||||||
|
emptyMessage: "No one-time-user records found.",
|
||||||
|
matcher: (record, context) => {
|
||||||
|
const author = getAuthor(record);
|
||||||
|
return !!author && context.authorEventCounts.get(author) === 1;
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const buildIdentityBucketSpec = (bucket: "in" | "out" | "tie"): CorpusExplorerSpec => {
|
||||||
|
const labels = {
|
||||||
|
in: "In-Group Posts",
|
||||||
|
out: "Out-Group Posts",
|
||||||
|
tie: "Balanced Posts",
|
||||||
|
} as const;
|
||||||
|
|
||||||
|
return {
|
||||||
|
title: labels[bucket],
|
||||||
|
description: `Records in the ${labels[bucket].toLowerCase()} cultural bucket.`,
|
||||||
|
emptyMessage: `No records found for ${labels[bucket].toLowerCase()}.`,
|
||||||
|
matcher: (record) => recordIdentityBucket(record) === bucket,
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
const buildPatternSpec = (
|
||||||
|
title: string,
|
||||||
|
description: string,
|
||||||
|
pattern: RegExp,
|
||||||
|
): CorpusExplorerSpec => ({
|
||||||
|
title,
|
||||||
|
description,
|
||||||
|
emptyMessage: `No records found for ${title.toLowerCase()}.`,
|
||||||
|
matcher: (record) => pattern.test(getRecordText(record)),
|
||||||
|
});
|
||||||
|
|
||||||
|
const buildHedgeSpec = () =>
|
||||||
|
buildPatternSpec("Hedging Words", "Records containing hedging language.", HEDGE_PATTERN);
|
||||||
|
|
||||||
|
const buildCertaintySpec = () =>
|
||||||
|
buildPatternSpec("Certainty Words", "Records containing certainty language.", CERTAINTY_PATTERN);
|
||||||
|
|
||||||
|
const buildDeonticSpec = () =>
|
||||||
|
buildPatternSpec("Need/Should Words", "Records containing deontic language.", DEONTIC_PATTERN);
|
||||||
|
|
||||||
|
const buildPermissionSpec = () =>
|
||||||
|
buildPatternSpec("Permission Words", "Records containing permission language.", PERMISSION_PATTERN);
|
||||||
|
|
||||||
|
export type { DatasetRecord, CorpusExplorerSpec };
|
||||||
|
export {
|
||||||
|
buildAllRecordsSpec,
|
||||||
|
buildCertaintySpec,
|
||||||
|
buildDateBucketSpec,
|
||||||
|
buildDeonticSpec,
|
||||||
|
buildDominantEmotionSpec,
|
||||||
|
buildEntitySpec,
|
||||||
|
buildExplorerContext,
|
||||||
|
buildHedgeSpec,
|
||||||
|
buildIdentityBucketSpec,
|
||||||
|
buildNgramSpec,
|
||||||
|
buildOneTimeUsersSpec,
|
||||||
|
buildPermissionSpec,
|
||||||
|
buildReplyPairSpec,
|
||||||
|
buildSourceSpec,
|
||||||
|
buildTopicSpec,
|
||||||
|
buildUserSpec,
|
||||||
|
buildWordSpec,
|
||||||
|
getDateBucket,
|
||||||
|
toText,
|
||||||
|
};
|
||||||
@@ -3,7 +3,7 @@ const DEFAULT_TITLE = "Ethnograph View";
|
|||||||
const STATIC_TITLES: Record<string, string> = {
|
const STATIC_TITLES: Record<string, string> = {
|
||||||
"/login": "Sign In",
|
"/login": "Sign In",
|
||||||
"/upload": "Upload Dataset",
|
"/upload": "Upload Dataset",
|
||||||
"/auto-scrape": "Auto Scrape Dataset",
|
"/auto-fetch": "Auto Fetch Dataset",
|
||||||
"/datasets": "My Datasets",
|
"/datasets": "My Datasets",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
BIN
report/img/analysis_bar.png
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
report/img/architecture.png
Normal file
|
After Width: | Height: | Size: 70 KiB |
BIN
report/img/cork_temporal.png
Normal file
|
After Width: | Height: | Size: 274 KiB |
BIN
report/img/flooding_posts.png
Normal file
|
After Width: | Height: | Size: 90 KiB |
BIN
report/img/frontend.png
Normal file
|
After Width: | Height: | Size: 302 KiB |
BIN
report/img/gantt.png
Normal file
|
After Width: | Height: | Size: 50 KiB |
BIN
report/img/heatmap.png
Normal file
|
After Width: | Height: | Size: 86 KiB |
BIN
report/img/interaction_graph.png
Normal file
|
After Width: | Height: | Size: 114 KiB |
BIN
report/img/kpi_card.png
Normal file
|
After Width: | Height: | Size: 8.7 KiB |
BIN
report/img/moods.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
report/img/navbar.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
report/img/ngrams.png
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
report/img/nlp_backoff.png
Normal file
|
After Width: | Height: | Size: 143 KiB |
BIN
report/img/pipeline.png
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
report/img/reddit_bot.png
Normal file
|
After Width: | Height: | Size: 232 KiB |
BIN
report/img/schema.png
Normal file
|
After Width: | Height: | Size: 64 KiB |
BIN
report/img/signature.jpg
Normal file
|
After Width: | Height: | Size: 152 KiB |
BIN
report/img/stance_markers.png
Normal file
|
After Width: | Height: | Size: 111 KiB |
BIN
report/img/topic_emotions.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
report/img/ucc_crest.png
Normal file
|
After Width: | Height: | Size: 27 KiB |
1373
report/main.tex
149
report/references.bib
Normal file
@@ -0,0 +1,149 @@
|
|||||||
|
@online{reddit_api,
|
||||||
|
author = {{Reddit Inc.}},
|
||||||
|
title = {Reddit API Documentation},
|
||||||
|
year = {2025},
|
||||||
|
url = {https://www.reddit.com/dev/api/},
|
||||||
|
urldate = {2026-04-08}
|
||||||
|
}
|
||||||
|
|
||||||
|
@misc{hartmann2022emotionenglish,
|
||||||
|
author={Hartmann, Jochen},
|
||||||
|
title={Emotion English DistilRoBERTa-base},
|
||||||
|
year={2022},
|
||||||
|
howpublished = {\url{https://huggingface.co/j-hartmann/emotion-english-distilroberta-base/}},
|
||||||
|
}
|
||||||
|
|
||||||
|
@misc{all_mpnet_base_v2,
|
||||||
|
author={Microsoft Research},
|
||||||
|
title={All-MPNet-Base-V2},
|
||||||
|
year={2021},
|
||||||
|
howpublished = {\url{https://huggingface.co/sentence-transformers/all-mpnet-base-v2}},
|
||||||
|
}
|
||||||
|
|
||||||
|
@misc{minilm_l6_v2,
|
||||||
|
author={Microsoft Research},
|
||||||
|
title={MiniLM-L6-V2},
|
||||||
|
year={2021},
|
||||||
|
howpublished = {\url{https://huggingface.co/sentence-transformers/all-MiniLM-L6-v2}},
|
||||||
|
}
|
||||||
|
|
||||||
|
@misc{dslim_bert_base_ner,
|
||||||
|
author={deepset},
|
||||||
|
title={dslim/bert-base-NER},
|
||||||
|
year={2018},
|
||||||
|
howpublished = {\url{https://huggingface.co/dslim/bert-base-NER}},
|
||||||
|
}
|
||||||
|
|
||||||
|
@inproceedings{demszky2020goemotions,
|
||||||
|
author = {Demszky, Dorottya and Movshovitz-Attias, Dana and Ko, Jeongwoo and Cowen, Alan and Nemade, Gaurav and Ravi, Sujith},
|
||||||
|
booktitle = {58th Annual Meeting of the Association for Computational Linguistics (ACL)},
|
||||||
|
title = {{GoEmotions: A Dataset of Fine-Grained Emotions}},
|
||||||
|
year = {2020}
|
||||||
|
}
|
||||||
|
|
||||||
|
@article{dominguez2007virtual,
|
||||||
|
author = {Domínguez, Daniel and Beaulieu, Anne and Estalella, Adolfo and Gómez, Edgar and Schnettler, Bernt and Read, Rosie},
|
||||||
|
title = {Virtual Ethnography},
|
||||||
|
journal = {Forum Qualitative Sozialforschung / Forum: Qualitative Social Research},
|
||||||
|
year = {2007},
|
||||||
|
volume = {8},
|
||||||
|
number = {3},
|
||||||
|
url = {http://nbn-resolving.de/urn:nbn:de:0114-fqs0703E19}
|
||||||
|
}
|
||||||
|
|
||||||
|
@article{sun2014lurkers,
|
||||||
|
author = {Sun, Na and Rau, Pei-Luen Patrick and Ma, Liang},
|
||||||
|
title = {Understanding Lurkers in Online Communities: A Literature Review},
|
||||||
|
journal = {Computers in Human Behavior},
|
||||||
|
year = {2014},
|
||||||
|
volume = {38},
|
||||||
|
pages = {110--117},
|
||||||
|
doi = {10.1016/j.chb.2014.05.022}
|
||||||
|
}
|
||||||
|
|
||||||
|
@article{ahmad2024sentiment,
|
||||||
|
author = {Ahmad, Waqar and others},
|
||||||
|
title = {Recent Advancements and Challenges of NLP-based Sentiment Analysis: A State-of-the-art Review},
|
||||||
|
journal = {Natural Language Processing Journal},
|
||||||
|
year = {2024},
|
||||||
|
doi = {10.1016/j.nlp.2024.100059}
|
||||||
|
}
|
||||||
|
|
||||||
|
@article{coleman2010ethnographic,
|
||||||
|
ISSN = {00846570},
|
||||||
|
URL = {http://www.jstor.org/stable/25735124},
|
||||||
|
abstract = {This review surveys and divides the ethnographic corpus on digital media into three broad but overlapping categories: the cultural politics of digital media, the vernacular cultures of digital media, and the prosaics of digital media. Engaging these three categories of scholarship on digital media, I consider how ethnographers are exploring the complex relationships between the local practices and global implications of digital media, their materiality and politics, and thier banal, as well as profound, presence in cultural life and modes of communication. I consider the way these media have become central to the articulation of cherished beliefs, ritual practices, and modes of being in the world; the fact that digital media culturally matters is undeniable but showing how, where, and why it matters is necessary to push against peculiarly narrow presumptions about the universality of digital experience.},
|
||||||
|
author = {E. Gabriella Coleman},
|
||||||
|
journal = {Annual Review of Anthropology},
|
||||||
|
pages = {487--505},
|
||||||
|
publisher = {Annual Reviews},
|
||||||
|
title = {Ethnographic Approaches to Digital Media},
|
||||||
|
urldate = {2026-04-15},
|
||||||
|
volume = {39},
|
||||||
|
year = {2010}
|
||||||
|
}
|
||||||
|
|
||||||
|
@article{shen2021stance,
|
||||||
|
author = {Shen, Qian and Tao, Yating},
|
||||||
|
title = {Stance Markers in {English} Medical Research Articles and Newspaper Opinion Columns: A Comparative Corpus-Based Study},
|
||||||
|
journal = {PLOS ONE},
|
||||||
|
volume = {16},
|
||||||
|
number = {3},
|
||||||
|
pages = {e0247981},
|
||||||
|
year = {2021},
|
||||||
|
doi = {10.1371/journal.pone.0247981}
|
||||||
|
}
|
||||||
|
|
||||||
|
@incollection{medvedev2019anatomy,
|
||||||
|
author = {Medvedev, Alexey N. and Lambiotte, Renaud and Delvenne, Jean-Charles},
|
||||||
|
title = {The Anatomy of Reddit: An Overview of Academic Research},
|
||||||
|
booktitle = {Dynamics On and Of Complex Networks III},
|
||||||
|
series = {Springer Proceedings in Complexity},
|
||||||
|
publisher = {Springer},
|
||||||
|
year = {2019},
|
||||||
|
pages = {183--204}
|
||||||
|
}
|
||||||
|
|
||||||
|
@misc{cook2023ethnography,
|
||||||
|
author = {Cook, Chloe},
|
||||||
|
title = {What is the Difference Between Ethnography and Digital Ethnography?},
|
||||||
|
year = {2023},
|
||||||
|
month = jan,
|
||||||
|
day = {19},
|
||||||
|
howpublished = {\url{https://ethosapp.com/blog/what-is-the-difference-between-ethnography-and-digital-ethnography/}},
|
||||||
|
note = {Accessed: 2026-04-16},
|
||||||
|
organization = {EthOS}
|
||||||
|
}
|
||||||
|
|
||||||
|
@misc{giuffre2026sentiment,
|
||||||
|
author = {Giuffre, Steven},
|
||||||
|
title = {What is Sentiment Analysis?},
|
||||||
|
year = {2026},
|
||||||
|
month = mar,
|
||||||
|
howpublished = {\url{https://www.vonage.com/resources/articles/sentiment-analysis/}},
|
||||||
|
note = {Accessed: 2026-04-16},
|
||||||
|
organization = {Vonage}
|
||||||
|
}
|
||||||
|
|
||||||
|
@misc{mungalpara2022stemming,
|
||||||
|
author = {Mungalpara, Jaimin},
|
||||||
|
title = {Stemming Lemmatization Stopwords and {N}-Grams in {NLP}},
|
||||||
|
year = {2022},
|
||||||
|
month = jul,
|
||||||
|
day = {26},
|
||||||
|
howpublished = {\url{https://jaimin-ml2001.medium.com/stemming-lemmatization-stopwords-and-n-grams-in-nlp-96f8e8b6aa6f}},
|
||||||
|
note = {Accessed: 2026-04-16},
|
||||||
|
organization = {Medium}
|
||||||
|
}
|
||||||
|
|
||||||
|
@misc{chugani2025ethicalscraping,
|
||||||
|
author = {Chugani, Vinod},
|
||||||
|
title = {Ethical Web Scraping: Principles and Practices},
|
||||||
|
year = {2025},
|
||||||
|
month = apr,
|
||||||
|
day = {21},
|
||||||
|
howpublished = {\url{https://www.datacamp.com/blog/ethical-web-scraping}},
|
||||||
|
note = {Accessed: 2026-04-16},
|
||||||
|
organization = {DataCamp}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -16,3 +16,4 @@ Requests==2.32.5
|
|||||||
sentence_transformers==5.2.2
|
sentence_transformers==5.2.2
|
||||||
torch==2.10.0
|
torch==2.10.0
|
||||||
transformers==5.1.0
|
transformers==5.1.0
|
||||||
|
gunicorn==25.3.0
|
||||||
|
|||||||
@@ -67,6 +67,12 @@ class CulturalAnalysis:
|
|||||||
|
|
||||||
def get_stance_markers(self, df: pd.DataFrame) -> dict[str, Any]:
|
def get_stance_markers(self, df: pd.DataFrame) -> dict[str, Any]:
|
||||||
s = df[self.content_col].fillna("").astype(str)
|
s = df[self.content_col].fillna("").astype(str)
|
||||||
|
emotion_exclusions = {"emotion_neutral", "emotion_surprise"}
|
||||||
|
emotion_cols = [
|
||||||
|
c
|
||||||
|
for c in df.columns
|
||||||
|
if c.startswith("emotion_") and c not in emotion_exclusions
|
||||||
|
]
|
||||||
|
|
||||||
hedge_pattern = re.compile(
|
hedge_pattern = re.compile(
|
||||||
r"\b(maybe|perhaps|possibly|probably|likely|seems|seem|i think|i feel|i guess|kind of|sort of|somewhat)\b"
|
r"\b(maybe|perhaps|possibly|probably|likely|seems|seem|i think|i feel|i guess|kind of|sort of|somewhat)\b"
|
||||||
@@ -88,7 +94,7 @@ class CulturalAnalysis:
|
|||||||
0, 1
|
0, 1
|
||||||
)
|
)
|
||||||
|
|
||||||
return {
|
result = {
|
||||||
"hedge_total": int(hedge_counts.sum()),
|
"hedge_total": int(hedge_counts.sum()),
|
||||||
"certainty_total": int(certainty_counts.sum()),
|
"certainty_total": int(certainty_counts.sum()),
|
||||||
"deontic_total": int(deontic_counts.sum()),
|
"deontic_total": int(deontic_counts.sum()),
|
||||||
@@ -107,6 +113,32 @@ class CulturalAnalysis:
|
|||||||
),
|
),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if emotion_cols:
|
||||||
|
emo = df[emotion_cols].apply(pd.to_numeric, errors="coerce").fillna(0.0)
|
||||||
|
|
||||||
|
result["hedge_emotion_avg"] = (
|
||||||
|
emo.loc[hedge_counts > 0].mean()
|
||||||
|
if (hedge_counts > 0).any()
|
||||||
|
else pd.Series(0.0, index=emotion_cols)
|
||||||
|
).to_dict()
|
||||||
|
result["certainty_emotion_avg"] = (
|
||||||
|
emo.loc[certainty_counts > 0].mean()
|
||||||
|
if (certainty_counts > 0).any()
|
||||||
|
else pd.Series(0.0, index=emotion_cols)
|
||||||
|
).to_dict()
|
||||||
|
result["deontic_emotion_avg"] = (
|
||||||
|
emo.loc[deontic_counts > 0].mean()
|
||||||
|
if (deontic_counts > 0).any()
|
||||||
|
else pd.Series(0.0, index=emotion_cols)
|
||||||
|
).to_dict()
|
||||||
|
result["permission_emotion_avg"] = (
|
||||||
|
emo.loc[perm_counts > 0].mean()
|
||||||
|
if (perm_counts > 0).any()
|
||||||
|
else pd.Series(0.0, index=emotion_cols)
|
||||||
|
).to_dict()
|
||||||
|
|
||||||
|
return result
|
||||||
|
|
||||||
def get_avg_emotions_per_entity(
|
def get_avg_emotions_per_entity(
|
||||||
self, df: pd.DataFrame, top_n: int = 25, min_posts: int = 10
|
self, df: pd.DataFrame, top_n: int = 25, min_posts: int = 10
|
||||||
) -> dict[str, Any]:
|
) -> dict[str, Any]:
|
||||||
|
|||||||
@@ -31,28 +31,6 @@ class InteractionAnalysis:
|
|||||||
|
|
||||||
return interactions
|
return interactions
|
||||||
|
|
||||||
def average_thread_depth(self, df: pd.DataFrame):
|
|
||||||
depths = []
|
|
||||||
id_to_reply = df.set_index("id")["reply_to"].to_dict()
|
|
||||||
for _, row in df.iterrows():
|
|
||||||
depth = 0
|
|
||||||
current_id = row["id"]
|
|
||||||
|
|
||||||
while True:
|
|
||||||
reply_to = id_to_reply.get(current_id)
|
|
||||||
if pd.isna(reply_to) or reply_to == "":
|
|
||||||
break
|
|
||||||
|
|
||||||
depth += 1
|
|
||||||
current_id = reply_to
|
|
||||||
|
|
||||||
depths.append(depth)
|
|
||||||
|
|
||||||
if not depths:
|
|
||||||
return 0
|
|
||||||
|
|
||||||
return round(sum(depths) / len(depths), 2)
|
|
||||||
|
|
||||||
def top_interaction_pairs(self, df: pd.DataFrame, top_n=10):
|
def top_interaction_pairs(self, df: pd.DataFrame, top_n=10):
|
||||||
graph = self.interaction_graph(df)
|
graph = self.interaction_graph(df)
|
||||||
pairs = []
|
pairs = []
|
||||||
|
|||||||
@@ -1,17 +1,30 @@
|
|||||||
import pandas as pd
|
|
||||||
import re
|
import re
|
||||||
|
|
||||||
from collections import Counter
|
from collections import Counter
|
||||||
from itertools import islice
|
from dataclasses import dataclass
|
||||||
|
|
||||||
|
import pandas as pd
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass(frozen=True)
|
||||||
|
class NGramConfig:
|
||||||
|
min_token_length: int = 3
|
||||||
|
min_count: int = 2
|
||||||
|
max_results: int = 100
|
||||||
|
|
||||||
|
|
||||||
class LinguisticAnalysis:
|
class LinguisticAnalysis:
|
||||||
def __init__(self, word_exclusions: set[str]):
|
def __init__(self, word_exclusions: set[str]):
|
||||||
self.word_exclusions = word_exclusions
|
self.word_exclusions = word_exclusions
|
||||||
|
self.ngram_config = NGramConfig()
|
||||||
|
|
||||||
def _tokenize(self, text: str):
|
def _tokenize(self, text: str, *, include_exclusions: bool = False) -> list[str]:
|
||||||
tokens = re.findall(r"\b[a-z]{3,}\b", text)
|
pattern = rf"\b[a-z]{{{self.ngram_config.min_token_length},}}\b"
|
||||||
return [t for t in tokens if t not in self.word_exclusions]
|
tokens = re.findall(pattern, text)
|
||||||
|
|
||||||
|
if include_exclusions:
|
||||||
|
return tokens
|
||||||
|
|
||||||
|
return [token for token in tokens if token not in self.word_exclusions]
|
||||||
|
|
||||||
def _clean_text(self, text: str) -> str:
|
def _clean_text(self, text: str) -> str:
|
||||||
text = re.sub(r"http\S+", "", text) # remove URLs
|
text = re.sub(r"http\S+", "", text) # remove URLs
|
||||||
@@ -21,13 +34,24 @@ class LinguisticAnalysis:
|
|||||||
text = re.sub(r"\S+\.(jpg|jpeg|png|webp|gif)", "", text)
|
text = re.sub(r"\S+\.(jpg|jpeg|png|webp|gif)", "", text)
|
||||||
return text
|
return text
|
||||||
|
|
||||||
|
def _content_texts(self, df: pd.DataFrame) -> pd.Series:
|
||||||
|
return df["content"].dropna().astype(str).apply(self._clean_text).str.lower()
|
||||||
|
|
||||||
|
def _valid_ngram(self, tokens: tuple[str, ...]) -> bool:
|
||||||
|
if any(token in self.word_exclusions for token in tokens):
|
||||||
|
return False
|
||||||
|
|
||||||
|
if len(set(tokens)) == 1:
|
||||||
|
return False
|
||||||
|
|
||||||
|
return True
|
||||||
|
|
||||||
def word_frequencies(self, df: pd.DataFrame, limit: int = 100) -> list[dict]:
|
def word_frequencies(self, df: pd.DataFrame, limit: int = 100) -> list[dict]:
|
||||||
texts = df["content"].dropna().astype(str).str.lower()
|
texts = self._content_texts(df)
|
||||||
|
|
||||||
words = []
|
words = []
|
||||||
for text in texts:
|
for text in texts:
|
||||||
tokens = re.findall(r"\b[a-z]{3,}\b", text)
|
words.extend(self._tokenize(text))
|
||||||
words.extend(w for w in tokens if w not in self.word_exclusions)
|
|
||||||
|
|
||||||
counts = Counter(words)
|
counts = Counter(words)
|
||||||
|
|
||||||
@@ -40,25 +64,39 @@ class LinguisticAnalysis:
|
|||||||
|
|
||||||
return word_frequencies.to_dict(orient="records")
|
return word_frequencies.to_dict(orient="records")
|
||||||
|
|
||||||
def ngrams(self, df: pd.DataFrame, n=2, limit=100):
|
def ngrams(self, df: pd.DataFrame, n: int = 2, limit: int | None = None) -> list[dict]:
|
||||||
texts = df["content"].dropna().astype(str).apply(self._clean_text).str.lower()
|
if n < 2:
|
||||||
|
raise ValueError("n must be at least 2")
|
||||||
|
|
||||||
|
texts = self._content_texts(df)
|
||||||
all_ngrams = []
|
all_ngrams = []
|
||||||
|
result_limit = limit or self.ngram_config.max_results
|
||||||
|
|
||||||
for text in texts:
|
for text in texts:
|
||||||
tokens = re.findall(r"\b[a-z]{3,}\b", text)
|
tokens = self._tokenize(text, include_exclusions=True)
|
||||||
|
|
||||||
# stop word removal causes strange behaviors in ngrams
|
if len(tokens) < n:
|
||||||
# tokens = [w for w in tokens if w not in self.word_exclusions]
|
continue
|
||||||
|
|
||||||
ngrams = zip(*(islice(tokens, i, None) for i in range(n)))
|
for index in range(len(tokens) - n + 1):
|
||||||
all_ngrams.extend([" ".join(ng) for ng in ngrams])
|
ngram_tokens = tuple(tokens[index : index + n])
|
||||||
|
if self._valid_ngram(ngram_tokens):
|
||||||
|
all_ngrams.append(" ".join(ngram_tokens))
|
||||||
|
|
||||||
counts = Counter(all_ngrams)
|
counts = Counter(all_ngrams)
|
||||||
|
filtered_counts = [
|
||||||
|
(ngram, count)
|
||||||
|
for ngram, count in counts.items()
|
||||||
|
if count >= self.ngram_config.min_count
|
||||||
|
]
|
||||||
|
|
||||||
|
if not filtered_counts:
|
||||||
|
return []
|
||||||
|
|
||||||
return (
|
return (
|
||||||
pd.DataFrame(counts.items(), columns=["ngram", "count"])
|
pd.DataFrame(filtered_counts, columns=["ngram", "count"])
|
||||||
.sort_values("count", ascending=False)
|
.sort_values(["count", "ngram"], ascending=[False, True])
|
||||||
.head(limit)
|
.head(result_limit)
|
||||||
.to_dict(orient="records")
|
.to_dict(orient="records")
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import nltk
|
import nltk
|
||||||
|
import json
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
from nltk.corpus import stopwords
|
from nltk.corpus import stopwords
|
||||||
|
|
||||||
@@ -27,6 +28,8 @@ DOMAIN_STOPWORDS = {
|
|||||||
"one",
|
"one",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
EXCLUDED_AUTHORS = {"[deleted]", "automoderator"}
|
||||||
|
|
||||||
nltk.download("stopwords")
|
nltk.download("stopwords")
|
||||||
EXCLUDE_WORDS = set(stopwords.words("english")) | DOMAIN_STOPWORDS
|
EXCLUDE_WORDS = set(stopwords.words("english")) | DOMAIN_STOPWORDS
|
||||||
|
|
||||||
@@ -46,6 +49,12 @@ class StatGen:
|
|||||||
filters = filters or {}
|
filters = filters or {}
|
||||||
filtered_df = df.copy()
|
filtered_df = df.copy()
|
||||||
|
|
||||||
|
if "author" in filtered_df.columns:
|
||||||
|
normalized_authors = (
|
||||||
|
filtered_df["author"].fillna("").astype(str).str.strip().str.lower()
|
||||||
|
)
|
||||||
|
filtered_df = filtered_df[~normalized_authors.isin(EXCLUDED_AUTHORS)]
|
||||||
|
|
||||||
search_query = filters.get("search_query", None)
|
search_query = filters.get("search_query", None)
|
||||||
start_date_filter = filters.get("start_date", None)
|
start_date_filter = filters.get("start_date", None)
|
||||||
end_date_filter = filters.get("end_date", None)
|
end_date_filter = filters.get("end_date", None)
|
||||||
@@ -75,11 +84,22 @@ class StatGen:
|
|||||||
|
|
||||||
return filtered_df
|
return filtered_df
|
||||||
|
|
||||||
|
def _json_ready_records(self, df: pd.DataFrame) -> list[dict]:
|
||||||
|
return json.loads(
|
||||||
|
df.to_json(orient="records", date_format="iso", date_unit="s")
|
||||||
|
)
|
||||||
|
|
||||||
## Public Methods
|
## Public Methods
|
||||||
def filter_dataset(self, df: pd.DataFrame, filters: dict | None = None) -> list[dict]:
|
def filter_dataset(self, df: pd.DataFrame, filters: dict | None = None) -> list[dict]:
|
||||||
return self._prepare_filtered_df(df, filters).to_dict(orient="records")
|
filtered_df = self._prepare_filtered_df(df, filters)
|
||||||
|
return self._json_ready_records(filtered_df)
|
||||||
|
|
||||||
def temporal(self, df: pd.DataFrame, filters: dict | None = None) -> dict:
|
def temporal(
|
||||||
|
self,
|
||||||
|
df: pd.DataFrame,
|
||||||
|
filters: dict | None = None,
|
||||||
|
dataset_id: int | None = None,
|
||||||
|
) -> dict:
|
||||||
filtered_df = self._prepare_filtered_df(df, filters)
|
filtered_df = self._prepare_filtered_df(df, filters)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
@@ -87,7 +107,12 @@ class StatGen:
|
|||||||
"weekday_hour_heatmap": self.temporal_analysis.heatmap(filtered_df),
|
"weekday_hour_heatmap": self.temporal_analysis.heatmap(filtered_df),
|
||||||
}
|
}
|
||||||
|
|
||||||
def linguistic(self, df: pd.DataFrame, filters: dict | None = None) -> dict:
|
def linguistic(
|
||||||
|
self,
|
||||||
|
df: pd.DataFrame,
|
||||||
|
filters: dict | None = None,
|
||||||
|
dataset_id: int | None = None,
|
||||||
|
) -> dict:
|
||||||
filtered_df = self._prepare_filtered_df(df, filters)
|
filtered_df = self._prepare_filtered_df(df, filters)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
@@ -97,7 +122,12 @@ class StatGen:
|
|||||||
"lexical_diversity": self.linguistic_analysis.lexical_diversity(filtered_df)
|
"lexical_diversity": self.linguistic_analysis.lexical_diversity(filtered_df)
|
||||||
}
|
}
|
||||||
|
|
||||||
def emotional(self, df: pd.DataFrame, filters: dict | None = None) -> dict:
|
def emotional(
|
||||||
|
self,
|
||||||
|
df: pd.DataFrame,
|
||||||
|
filters: dict | None = None,
|
||||||
|
dataset_id: int | None = None,
|
||||||
|
) -> dict:
|
||||||
filtered_df = self._prepare_filtered_df(df, filters)
|
filtered_df = self._prepare_filtered_df(df, filters)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
@@ -107,7 +137,12 @@ class StatGen:
|
|||||||
"emotion_by_source": self.emotional_analysis.emotion_by_source(filtered_df)
|
"emotion_by_source": self.emotional_analysis.emotion_by_source(filtered_df)
|
||||||
}
|
}
|
||||||
|
|
||||||
def user(self, df: pd.DataFrame, filters: dict | None = None) -> dict:
|
def user(
|
||||||
|
self,
|
||||||
|
df: pd.DataFrame,
|
||||||
|
filters: dict | None = None,
|
||||||
|
dataset_id: int | None = None,
|
||||||
|
) -> dict:
|
||||||
filtered_df = self._prepare_filtered_df(df, filters)
|
filtered_df = self._prepare_filtered_df(df, filters)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
@@ -115,17 +150,26 @@ class StatGen:
|
|||||||
"users": self.user_analysis.per_user_analysis(filtered_df)
|
"users": self.user_analysis.per_user_analysis(filtered_df)
|
||||||
}
|
}
|
||||||
|
|
||||||
def interactional(self, df: pd.DataFrame, filters: dict | None = None) -> dict:
|
def interactional(
|
||||||
|
self,
|
||||||
|
df: pd.DataFrame,
|
||||||
|
filters: dict | None = None,
|
||||||
|
dataset_id: int | None = None,
|
||||||
|
) -> dict:
|
||||||
filtered_df = self._prepare_filtered_df(df, filters)
|
filtered_df = self._prepare_filtered_df(df, filters)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
"average_thread_depth": self.interaction_analysis.average_thread_depth(filtered_df),
|
|
||||||
"top_interaction_pairs": self.interaction_analysis.top_interaction_pairs(filtered_df, top_n=100),
|
"top_interaction_pairs": self.interaction_analysis.top_interaction_pairs(filtered_df, top_n=100),
|
||||||
"interaction_graph": self.interaction_analysis.interaction_graph(filtered_df),
|
"interaction_graph": self.interaction_analysis.interaction_graph(filtered_df),
|
||||||
"conversation_concentration": self.interaction_analysis.conversation_concentration(filtered_df)
|
"conversation_concentration": self.interaction_analysis.conversation_concentration(filtered_df)
|
||||||
}
|
}
|
||||||
|
|
||||||
def cultural(self, df: pd.DataFrame, filters: dict | None = None) -> dict:
|
def cultural(
|
||||||
|
self,
|
||||||
|
df: pd.DataFrame,
|
||||||
|
filters: dict | None = None,
|
||||||
|
dataset_id: int | None = None,
|
||||||
|
) -> dict:
|
||||||
filtered_df = self._prepare_filtered_df(df, filters)
|
filtered_df = self._prepare_filtered_df(df, filters)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
@@ -134,7 +178,12 @@ class StatGen:
|
|||||||
"avg_emotion_per_entity": self.cultural_analysis.get_avg_emotions_per_entity(filtered_df)
|
"avg_emotion_per_entity": self.cultural_analysis.get_avg_emotions_per_entity(filtered_df)
|
||||||
}
|
}
|
||||||
|
|
||||||
def summary(self, df: pd.DataFrame, filters: dict | None = None) -> dict:
|
def summary(
|
||||||
|
self,
|
||||||
|
df: pd.DataFrame,
|
||||||
|
filters: dict | None = None,
|
||||||
|
dataset_id: int | None = None,
|
||||||
|
) -> dict:
|
||||||
filtered_df = self._prepare_filtered_df(df, filters)
|
filtered_df = self._prepare_filtered_df(df, filters)
|
||||||
|
|
||||||
return self.summary_analysis.summary(filtered_df)
|
return self.summary_analysis.summary(filtered_df)
|
||||||
|
|||||||
@@ -71,6 +71,7 @@ class UserAnalysis:
|
|||||||
per_user = df.groupby(["author", "type"]).size().unstack(fill_value=0)
|
per_user = df.groupby(["author", "type"]).size().unstack(fill_value=0)
|
||||||
|
|
||||||
emotion_cols = [col for col in df.columns if col.startswith("emotion_")]
|
emotion_cols = [col for col in df.columns if col.startswith("emotion_")]
|
||||||
|
dominant_topic_by_author = {}
|
||||||
|
|
||||||
avg_emotions_by_author = {}
|
avg_emotions_by_author = {}
|
||||||
if emotion_cols:
|
if emotion_cols:
|
||||||
@@ -80,6 +81,31 @@ class UserAnalysis:
|
|||||||
for author, row in avg_emotions.iterrows()
|
for author, row in avg_emotions.iterrows()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if "topic" in df.columns:
|
||||||
|
topic_df = df[
|
||||||
|
df["topic"].notna()
|
||||||
|
& (df["topic"] != "")
|
||||||
|
& (df["topic"] != "Misc")
|
||||||
|
]
|
||||||
|
if not topic_df.empty:
|
||||||
|
topic_counts = (
|
||||||
|
topic_df.groupby(["author", "topic"])
|
||||||
|
.size()
|
||||||
|
.reset_index(name="count")
|
||||||
|
.sort_values(
|
||||||
|
["author", "count", "topic"],
|
||||||
|
ascending=[True, False, True],
|
||||||
|
)
|
||||||
|
.drop_duplicates(subset=["author"])
|
||||||
|
)
|
||||||
|
dominant_topic_by_author = {
|
||||||
|
row["author"]: {
|
||||||
|
"topic": row["topic"],
|
||||||
|
"count": int(row["count"]),
|
||||||
|
}
|
||||||
|
for _, row in topic_counts.iterrows()
|
||||||
|
}
|
||||||
|
|
||||||
# ensure columns always exist
|
# ensure columns always exist
|
||||||
for col in ("post", "comment"):
|
for col in ("post", "comment"):
|
||||||
if col not in per_user.columns:
|
if col not in per_user.columns:
|
||||||
@@ -109,6 +135,7 @@ class UserAnalysis:
|
|||||||
"comment_post_ratio": float(row.get("comment_post_ratio", 0)),
|
"comment_post_ratio": float(row.get("comment_post_ratio", 0)),
|
||||||
"comment_share": float(row.get("comment_share", 0)),
|
"comment_share": float(row.get("comment_share", 0)),
|
||||||
"avg_emotions": avg_emotions_by_author.get(author, {}),
|
"avg_emotions": avg_emotions_by_author.get(author, {}),
|
||||||
|
"dominant_topic": dominant_topic_by_author.get(author),
|
||||||
"vocab": vocab_by_author.get(
|
"vocab": vocab_by_author.get(
|
||||||
author,
|
author,
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -152,9 +152,9 @@ def get_dataset_sources():
|
|||||||
return jsonify(list_metadata)
|
return jsonify(list_metadata)
|
||||||
|
|
||||||
|
|
||||||
@app.route("/datasets/scrape", methods=["POST"])
|
@app.route("/datasets/fetch", methods=["POST"])
|
||||||
@jwt_required()
|
@jwt_required()
|
||||||
def scrape_data():
|
def fetch_data():
|
||||||
data = request.get_json()
|
data = request.get_json()
|
||||||
connector_metadata = get_connector_metadata()
|
connector_metadata = get_connector_metadata()
|
||||||
|
|
||||||
@@ -424,7 +424,7 @@ def get_linguistic_analysis(dataset_id):
|
|||||||
|
|
||||||
dataset_content = dataset_manager.get_dataset_content(dataset_id)
|
dataset_content = dataset_manager.get_dataset_content(dataset_id)
|
||||||
filters = get_request_filters()
|
filters = get_request_filters()
|
||||||
return jsonify(stat_gen.linguistic(dataset_content, filters)), 200
|
return jsonify(stat_gen.linguistic(dataset_content, filters, dataset_id=dataset_id)), 200
|
||||||
except NotAuthorisedException:
|
except NotAuthorisedException:
|
||||||
return jsonify({"error": "User is not authorised to access this content"}), 403
|
return jsonify({"error": "User is not authorised to access this content"}), 403
|
||||||
except NonExistentDatasetException:
|
except NonExistentDatasetException:
|
||||||
@@ -448,7 +448,7 @@ def get_emotional_analysis(dataset_id):
|
|||||||
|
|
||||||
dataset_content = dataset_manager.get_dataset_content(dataset_id)
|
dataset_content = dataset_manager.get_dataset_content(dataset_id)
|
||||||
filters = get_request_filters()
|
filters = get_request_filters()
|
||||||
return jsonify(stat_gen.emotional(dataset_content, filters)), 200
|
return jsonify(stat_gen.emotional(dataset_content, filters, dataset_id=dataset_id)), 200
|
||||||
except NotAuthorisedException:
|
except NotAuthorisedException:
|
||||||
return jsonify({"error": "User is not authorised to access this content"}), 403
|
return jsonify({"error": "User is not authorised to access this content"}), 403
|
||||||
except NonExistentDatasetException:
|
except NonExistentDatasetException:
|
||||||
@@ -472,7 +472,7 @@ def get_summary(dataset_id):
|
|||||||
|
|
||||||
dataset_content = dataset_manager.get_dataset_content(dataset_id)
|
dataset_content = dataset_manager.get_dataset_content(dataset_id)
|
||||||
filters = get_request_filters()
|
filters = get_request_filters()
|
||||||
return jsonify(stat_gen.summary(dataset_content, filters)), 200
|
return jsonify(stat_gen.summary(dataset_content, filters, dataset_id=dataset_id)), 200
|
||||||
except NotAuthorisedException:
|
except NotAuthorisedException:
|
||||||
return jsonify({"error": "User is not authorised to access this content"}), 403
|
return jsonify({"error": "User is not authorised to access this content"}), 403
|
||||||
except NonExistentDatasetException:
|
except NonExistentDatasetException:
|
||||||
@@ -496,7 +496,7 @@ def get_temporal_analysis(dataset_id):
|
|||||||
|
|
||||||
dataset_content = dataset_manager.get_dataset_content(dataset_id)
|
dataset_content = dataset_manager.get_dataset_content(dataset_id)
|
||||||
filters = get_request_filters()
|
filters = get_request_filters()
|
||||||
return jsonify(stat_gen.temporal(dataset_content, filters)), 200
|
return jsonify(stat_gen.temporal(dataset_content, filters, dataset_id=dataset_id)), 200
|
||||||
except NotAuthorisedException:
|
except NotAuthorisedException:
|
||||||
return jsonify({"error": "User is not authorised to access this content"}), 403
|
return jsonify({"error": "User is not authorised to access this content"}), 403
|
||||||
except NonExistentDatasetException:
|
except NonExistentDatasetException:
|
||||||
@@ -520,7 +520,7 @@ def get_user_analysis(dataset_id):
|
|||||||
|
|
||||||
dataset_content = dataset_manager.get_dataset_content(dataset_id)
|
dataset_content = dataset_manager.get_dataset_content(dataset_id)
|
||||||
filters = get_request_filters()
|
filters = get_request_filters()
|
||||||
return jsonify(stat_gen.user(dataset_content, filters)), 200
|
return jsonify(stat_gen.user(dataset_content, filters, dataset_id=dataset_id)), 200
|
||||||
except NotAuthorisedException:
|
except NotAuthorisedException:
|
||||||
return jsonify({"error": "User is not authorised to access this content"}), 403
|
return jsonify({"error": "User is not authorised to access this content"}), 403
|
||||||
except NonExistentDatasetException:
|
except NonExistentDatasetException:
|
||||||
@@ -544,7 +544,7 @@ def get_cultural_analysis(dataset_id):
|
|||||||
|
|
||||||
dataset_content = dataset_manager.get_dataset_content(dataset_id)
|
dataset_content = dataset_manager.get_dataset_content(dataset_id)
|
||||||
filters = get_request_filters()
|
filters = get_request_filters()
|
||||||
return jsonify(stat_gen.cultural(dataset_content, filters)), 200
|
return jsonify(stat_gen.cultural(dataset_content, filters, dataset_id=dataset_id)), 200
|
||||||
except NotAuthorisedException:
|
except NotAuthorisedException:
|
||||||
return jsonify({"error": "User is not authorised to access this content"}), 403
|
return jsonify({"error": "User is not authorised to access this content"}), 403
|
||||||
except NonExistentDatasetException:
|
except NonExistentDatasetException:
|
||||||
@@ -568,7 +568,7 @@ def get_interaction_analysis(dataset_id):
|
|||||||
|
|
||||||
dataset_content = dataset_manager.get_dataset_content(dataset_id)
|
dataset_content = dataset_manager.get_dataset_content(dataset_id)
|
||||||
filters = get_request_filters()
|
filters = get_request_filters()
|
||||||
return jsonify(stat_gen.interactional(dataset_content, filters)), 200
|
return jsonify(stat_gen.interactional(dataset_content, filters, dataset_id=dataset_id)), 200
|
||||||
except NotAuthorisedException:
|
except NotAuthorisedException:
|
||||||
return jsonify({"error": "User is not authorised to access this content"}), 403
|
return jsonify({"error": "User is not authorised to access this content"}), 403
|
||||||
except NonExistentDatasetException:
|
except NonExistentDatasetException:
|
||||||
@@ -591,7 +591,8 @@ def get_full_dataset(dataset_id: int):
|
|||||||
)
|
)
|
||||||
|
|
||||||
dataset_content = dataset_manager.get_dataset_content(dataset_id)
|
dataset_content = dataset_manager.get_dataset_content(dataset_id)
|
||||||
return jsonify(dataset_content.to_dict(orient="records")), 200
|
filters = get_request_filters()
|
||||||
|
return jsonify(stat_gen.filter_dataset(dataset_content, filters)), 200
|
||||||
except NotAuthorisedException:
|
except NotAuthorisedException:
|
||||||
return jsonify({"error": "User is not authorised to access this content"}), 403
|
return jsonify({"error": "User is not authorised to access this content"}), 403
|
||||||
except NonExistentDatasetException:
|
except NonExistentDatasetException:
|
||||||
|
|||||||
@@ -1,21 +1,18 @@
|
|||||||
from abc import ABC, abstractmethod
|
from abc import ABC, abstractmethod
|
||||||
from dto.post import Post
|
from dto.post import Post
|
||||||
|
import os
|
||||||
|
|
||||||
|
|
||||||
class BaseConnector(ABC):
|
class BaseConnector(ABC):
|
||||||
# Each subclass declares these at the class level
|
source_name: str # machine readable
|
||||||
source_name: str # machine-readable: "reddit", "youtube"
|
display_name: str # human readablee
|
||||||
display_name: str # human-readable: "Reddit", "YouTube"
|
required_env: list[str] = []
|
||||||
required_env: list[str] = [] # env vars needed to activate
|
|
||||||
|
|
||||||
search_enabled: bool
|
search_enabled: bool
|
||||||
categories_enabled: bool
|
categories_enabled: bool
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def is_available(cls) -> bool:
|
def is_available(cls) -> bool:
|
||||||
"""Returns True if all required env vars are set."""
|
|
||||||
import os
|
|
||||||
|
|
||||||
return all(os.getenv(var) for var in cls.required_env)
|
return all(os.getenv(var) for var in cls.required_env)
|
||||||
|
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
|
|||||||
@@ -11,8 +11,7 @@ from server.connectors.base import BaseConnector
|
|||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
HEADERS = {"User-Agent": "Mozilla/5.0 (compatible; ForumScraper/1.0)"}
|
HEADERS = {"User-Agent": "Mozilla/5.0 (compatible; Digital-Ethnography-Aid/1.0)"}
|
||||||
|
|
||||||
|
|
||||||
class BoardsAPI(BaseConnector):
|
class BoardsAPI(BaseConnector):
|
||||||
source_name: str = "boards.ie"
|
source_name: str = "boards.ie"
|
||||||
@@ -88,7 +87,7 @@ class BoardsAPI(BaseConnector):
|
|||||||
post = self._parse_thread(html, post_url)
|
post = self._parse_thread(html, post_url)
|
||||||
return post
|
return post
|
||||||
|
|
||||||
with ThreadPoolExecutor(max_workers=30) as executor:
|
with ThreadPoolExecutor(max_workers=5) as executor:
|
||||||
futures = {executor.submit(fetch_and_parse, url): url for url in urls}
|
futures = {executor.submit(fetch_and_parse, url): url for url in urls}
|
||||||
|
|
||||||
for i, future in enumerate(as_completed(futures)):
|
for i, future in enumerate(as_completed(futures)):
|
||||||
|
|||||||
@@ -1,6 +1,10 @@
|
|||||||
import requests
|
import requests
|
||||||
import logging
|
import logging
|
||||||
import time
|
import time
|
||||||
|
import os
|
||||||
|
|
||||||
|
from dotenv import load_dotenv
|
||||||
|
from requests.auth import HTTPBasicAuth
|
||||||
|
|
||||||
from dto.post import Post
|
from dto.post import Post
|
||||||
from dto.user import User
|
from dto.user import User
|
||||||
@@ -9,6 +13,8 @@ from server.connectors.base import BaseConnector
|
|||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
CLIENT_ID = os.getenv("REDDIT_CLIENT_ID")
|
||||||
|
CLIENT_SECRET = os.getenv("REDDIT_CLIENT_SECRET")
|
||||||
|
|
||||||
class RedditAPI(BaseConnector):
|
class RedditAPI(BaseConnector):
|
||||||
source_name: str = "reddit"
|
source_name: str = "reddit"
|
||||||
@@ -18,6 +24,8 @@ class RedditAPI(BaseConnector):
|
|||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.url = "https://www.reddit.com/"
|
self.url = "https://www.reddit.com/"
|
||||||
|
self.token = None
|
||||||
|
self.token_expiry = 0
|
||||||
|
|
||||||
# Public Methods #
|
# Public Methods #
|
||||||
def get_new_posts_by_search(
|
def get_new_posts_by_search(
|
||||||
@@ -171,9 +179,44 @@ class RedditAPI(BaseConnector):
|
|||||||
user = User(username=user_data["name"], created_utc=user_data["created_utc"])
|
user = User(username=user_data["name"], created_utc=user_data["created_utc"])
|
||||||
user.karma = user_data["total_karma"]
|
user.karma = user_data["total_karma"]
|
||||||
return user
|
return user
|
||||||
|
|
||||||
|
def _get_token(self):
|
||||||
|
if self.token and time.time() < self.token_expiry:
|
||||||
|
return self.token
|
||||||
|
|
||||||
|
logger.info("Fetching new Reddit access token...")
|
||||||
|
|
||||||
|
auth = HTTPBasicAuth(CLIENT_ID, CLIENT_SECRET)
|
||||||
|
|
||||||
|
data = {
|
||||||
|
"grant_type": "client_credentials"
|
||||||
|
}
|
||||||
|
|
||||||
|
headers = {
|
||||||
|
"User-Agent": "python:ethnography-college-project:0.1 (by /u/ThisBirchWood)"
|
||||||
|
}
|
||||||
|
|
||||||
|
response = requests.post(
|
||||||
|
"https://www.reddit.com/api/v1/access_token",
|
||||||
|
auth=auth,
|
||||||
|
data=data,
|
||||||
|
headers=headers,
|
||||||
|
)
|
||||||
|
|
||||||
|
response.raise_for_status()
|
||||||
|
token_json = response.json()
|
||||||
|
|
||||||
|
self.token = token_json["access_token"]
|
||||||
|
self.token_expiry = time.time() + token_json["expires_in"] - 60
|
||||||
|
|
||||||
|
logger.info(
|
||||||
|
f"Obtained new Reddit access token (expires in {token_json['expires_in']}s)"
|
||||||
|
)
|
||||||
|
|
||||||
|
return self.token
|
||||||
|
|
||||||
def _fetch_post_overviews(self, endpoint: str, params: dict) -> dict:
|
def _fetch_post_overviews(self, endpoint: str, params: dict) -> dict:
|
||||||
url = f"{self.url}{endpoint}"
|
url = f"https://oauth.reddit.com/{endpoint.lstrip('/')}"
|
||||||
max_retries = 15
|
max_retries = 15
|
||||||
backoff = 1 # seconds
|
backoff = 1 # seconds
|
||||||
|
|
||||||
@@ -182,13 +225,18 @@ class RedditAPI(BaseConnector):
|
|||||||
response = requests.get(
|
response = requests.get(
|
||||||
url,
|
url,
|
||||||
headers={
|
headers={
|
||||||
"User-agent": "python:ethnography-college-project:0.1 (by /u/ThisBirchWood)"
|
"User-agent": "python:ethnography-college-project:0.1 (by /u/ThisBirchWood)",
|
||||||
|
"Authorization": f"Bearer {self._get_token()}",
|
||||||
},
|
},
|
||||||
params=params,
|
params=params,
|
||||||
)
|
)
|
||||||
|
|
||||||
if response.status_code == 429:
|
if response.status_code == 429:
|
||||||
wait_time = response.headers.get("Retry-After", backoff)
|
try:
|
||||||
|
wait_time = int(response.headers.get("X-Ratelimit-Reset", backoff))
|
||||||
|
wait_time += 1 # Add a small buffer to ensure the rate limit has reset
|
||||||
|
except ValueError:
|
||||||
|
wait_time = backoff
|
||||||
|
|
||||||
logger.warning(
|
logger.warning(
|
||||||
f"Rate limited by Reddit API. Retrying in {wait_time} seconds..."
|
f"Rate limited by Reddit API. Retrying in {wait_time} seconds..."
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
import os
|
import os
|
||||||
import datetime
|
import datetime
|
||||||
|
import logging
|
||||||
|
|
||||||
from dotenv import load_dotenv
|
from dotenv import load_dotenv
|
||||||
from googleapiclient.discovery import build
|
from googleapiclient.discovery import build
|
||||||
@@ -9,9 +10,11 @@ from dto.comment import Comment
|
|||||||
from server.connectors.base import BaseConnector
|
from server.connectors.base import BaseConnector
|
||||||
|
|
||||||
load_dotenv()
|
load_dotenv()
|
||||||
|
|
||||||
API_KEY = os.getenv("YOUTUBE_API_KEY")
|
API_KEY = os.getenv("YOUTUBE_API_KEY")
|
||||||
|
|
||||||
|
logger = logging.getLogger(__name__)
|
||||||
|
logger.setLevel(logging.INFO)
|
||||||
|
|
||||||
|
|
||||||
class YouTubeAPI(BaseConnector):
|
class YouTubeAPI(BaseConnector):
|
||||||
source_name: str = "youtube"
|
source_name: str = "youtube"
|
||||||
@@ -77,11 +80,30 @@ class YouTubeAPI(BaseConnector):
|
|||||||
return True
|
return True
|
||||||
|
|
||||||
def _search_videos(self, query, limit):
|
def _search_videos(self, query, limit):
|
||||||
request = self.youtube.search().list(
|
results = []
|
||||||
q=query, part="snippet", type="video", maxResults=limit
|
next_page_token = None
|
||||||
)
|
|
||||||
response = request.execute()
|
while len(results) < limit:
|
||||||
return response.get("items", [])
|
batch_size = min(50, limit - len(results))
|
||||||
|
|
||||||
|
request = self.youtube.search().list(
|
||||||
|
q=query,
|
||||||
|
part="snippet",
|
||||||
|
type="video",
|
||||||
|
maxResults=batch_size,
|
||||||
|
pageToken=next_page_token
|
||||||
|
)
|
||||||
|
|
||||||
|
response = request.execute()
|
||||||
|
results.extend(response.get("items", []))
|
||||||
|
logging.info(f"Fetched {len(results)} out of {limit} videos for query '{query}'")
|
||||||
|
|
||||||
|
next_page_token = response.get("nextPageToken")
|
||||||
|
if not next_page_token:
|
||||||
|
logging.warning(f"No more pages of results available for query '{query}'")
|
||||||
|
break
|
||||||
|
|
||||||
|
return results[:limit]
|
||||||
|
|
||||||
def _get_video_comments(self, video_id):
|
def _get_video_comments(self, video_id):
|
||||||
request = self.youtube.commentThreads().list(
|
request = self.youtube.commentThreads().list(
|
||||||
|
|||||||
@@ -26,7 +26,34 @@ class DatasetManager:
|
|||||||
def get_dataset_content(self, dataset_id: int) -> pd.DataFrame:
|
def get_dataset_content(self, dataset_id: int) -> pd.DataFrame:
|
||||||
query = "SELECT * FROM events WHERE dataset_id = %s"
|
query = "SELECT * FROM events WHERE dataset_id = %s"
|
||||||
result = self.db.execute(query, (dataset_id,), fetch=True)
|
result = self.db.execute(query, (dataset_id,), fetch=True)
|
||||||
return pd.DataFrame(result)
|
df = pd.DataFrame(result)
|
||||||
|
if df.empty:
|
||||||
|
return df
|
||||||
|
|
||||||
|
dedupe_columns = [
|
||||||
|
column
|
||||||
|
for column in [
|
||||||
|
"post_id",
|
||||||
|
"parent_id",
|
||||||
|
"reply_to",
|
||||||
|
"author",
|
||||||
|
"type",
|
||||||
|
"timestamp",
|
||||||
|
"dt",
|
||||||
|
"title",
|
||||||
|
"content",
|
||||||
|
"source",
|
||||||
|
"topic",
|
||||||
|
]
|
||||||
|
if column in df.columns
|
||||||
|
]
|
||||||
|
|
||||||
|
if dedupe_columns:
|
||||||
|
df = df.drop_duplicates(subset=dedupe_columns, keep="first")
|
||||||
|
else:
|
||||||
|
df = df.drop_duplicates(keep="first")
|
||||||
|
|
||||||
|
return df.reset_index(drop=True)
|
||||||
|
|
||||||
def get_dataset_info(self, dataset_id: int) -> dict:
|
def get_dataset_info(self, dataset_id: int) -> dict:
|
||||||
query = "SELECT * FROM datasets WHERE id = %s"
|
query = "SELECT * FROM datasets WHERE id = %s"
|
||||||
@@ -52,6 +79,16 @@ class DatasetManager:
|
|||||||
if event_data.empty:
|
if event_data.empty:
|
||||||
return
|
return
|
||||||
|
|
||||||
|
dedupe_columns = [
|
||||||
|
column for column in ["id", "type", "source"] if column in event_data.columns
|
||||||
|
]
|
||||||
|
if dedupe_columns:
|
||||||
|
event_data = event_data.drop_duplicates(subset=dedupe_columns, keep="first")
|
||||||
|
else:
|
||||||
|
event_data = event_data.drop_duplicates(keep="first")
|
||||||
|
|
||||||
|
self.delete_dataset_content(dataset_id)
|
||||||
|
|
||||||
query = """
|
query = """
|
||||||
INSERT INTO events (
|
INSERT INTO events (
|
||||||
dataset_id,
|
dataset_id,
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
from time import time
|
||||||
|
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
@@ -18,6 +20,10 @@ def process_dataset(self, dataset_id: int, posts: list, topics: dict):
|
|||||||
try:
|
try:
|
||||||
df = pd.DataFrame(posts)
|
df = pd.DataFrame(posts)
|
||||||
|
|
||||||
|
dataset_manager.set_dataset_status(
|
||||||
|
dataset_id, "processing", "NLP Processing Started"
|
||||||
|
)
|
||||||
|
|
||||||
processor = DatasetEnrichment(df, topics)
|
processor = DatasetEnrichment(df, topics)
|
||||||
enriched_df = processor.enrich()
|
enriched_df = processor.enrich()
|
||||||
|
|
||||||
@@ -42,6 +48,7 @@ def fetch_and_process_dataset(
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
for metadata in source_info:
|
for metadata in source_info:
|
||||||
|
fetch_start = time()
|
||||||
name = metadata["name"]
|
name = metadata["name"]
|
||||||
search = metadata.get("search")
|
search = metadata.get("search")
|
||||||
category = metadata.get("category")
|
category = metadata.get("category")
|
||||||
@@ -53,14 +60,23 @@ def fetch_and_process_dataset(
|
|||||||
)
|
)
|
||||||
posts.extend(post.to_dict() for post in raw_posts)
|
posts.extend(post.to_dict() for post in raw_posts)
|
||||||
|
|
||||||
|
fetch_time = time() - fetch_start
|
||||||
df = pd.DataFrame(posts)
|
df = pd.DataFrame(posts)
|
||||||
|
|
||||||
|
nlp_start = time()
|
||||||
|
|
||||||
|
dataset_manager.set_dataset_status(
|
||||||
|
dataset_id, "processing", "NLP Processing Started"
|
||||||
|
)
|
||||||
|
|
||||||
processor = DatasetEnrichment(df, topics)
|
processor = DatasetEnrichment(df, topics)
|
||||||
enriched_df = processor.enrich()
|
enriched_df = processor.enrich()
|
||||||
|
|
||||||
|
nlp_time = time() - nlp_start
|
||||||
|
|
||||||
dataset_manager.save_dataset_content(dataset_id, enriched_df)
|
dataset_manager.save_dataset_content(dataset_id, enriched_df)
|
||||||
dataset_manager.set_dataset_status(
|
dataset_manager.set_dataset_status(
|
||||||
dataset_id, "complete", "NLP Processing Completed Successfully"
|
dataset_id, "complete", f"Completed Successfully. Fetch time: {fetch_time:.2f}s, NLP time: {nlp_time:.2f}s"
|
||||||
)
|
)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
dataset_manager.set_dataset_status(
|
dataset_manager.set_dataset_status(
|
||||||
|
|||||||