Skip to content

Commit 1b4b679

Browse files
committed
✨ miraktest-epgs
1 parent 16c6c1a commit 1b4b679

18 files changed

+1545
-2
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ js ファイルを定期的に [Releases](https://github.com/ci7lus/miraktest-pl
2828
(v1 標準機能代替) Saya プラグインと連携し、コメントを表示します。
2929
- [Zenza](./src/miraktest-zenza)<br />
3030
Saya プラグインと連携し、コメントを表示します。
31+
- [EPGStation](./src/miraktest-epgs)<br />
32+
EPGStation と連携し、録画番組を再生します。
3133

3234
## ビルド
3335

package.json

+5
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"@types/dplayer": "^1.25.2",
2626
"@types/node": "^16.10.1",
2727
"@types/postcss-import": "^12.0.1",
28+
"@types/react-table": "^7.7.5",
2829
"@types/webpack": "^4",
2930
"autoprefixer": "^10.3.6",
3031
"css-loader": "^5",
@@ -50,9 +51,13 @@
5051
"@types/react": "^17.0.24",
5152
"@types/react-dom": "^17.0.9",
5253
"axios": "^0.21.4",
54+
"dayjs": "^1.10.7",
5355
"discord-rpc": "^4.0.1",
56+
"interweave": "^12.8.0",
57+
"interweave-autolink": "^4.4.3",
5458
"react": "^17.0.2",
5559
"react-feather": "^2.0.9",
60+
"react-table": "^7.7.0",
5661
"react-use": "^17.3.1",
5762
"recoil": "^0.4.1",
5863
"reconnecting-websocket": "^4.4.0"

src/@types/plugin.d.ts

+124-1
Original file line numberDiff line numberDiff line change
@@ -13926,6 +13926,19 @@ declare namespace Electron {
1392613926
event: "will-navigate",
1392713927
listener: (event: WillNavigateEvent) => void
1392813928
): this
13929+
/**
13930+
* Emitted when any frame (including main) starts navigating. `isInPlace` will be
13931+
* `true` for in-page navigations.
13932+
*/
13933+
addEventListener(
13934+
event: "did-start-navigation",
13935+
listener: (event: DidStartNavigationEvent) => void,
13936+
useCapture?: boolean
13937+
): this
13938+
removeEventListener(
13939+
event: "did-start-navigation",
13940+
listener: (event: DidStartNavigationEvent) => void
13941+
): this
1392913942
/**
1393013943
* Emitted when a navigation is done.
1393113944
*
@@ -13942,6 +13955,22 @@ declare namespace Electron {
1394213955
event: "did-navigate",
1394313956
listener: (event: DidNavigateEvent) => void
1394413957
): this
13958+
/**
13959+
* Emitted when any frame navigation is done.
13960+
*
13961+
* This event is not emitted for in-page navigations, such as clicking anchor links
13962+
* or updating the `window.location.hash`. Use `did-navigate-in-page` event for
13963+
* this purpose.
13964+
*/
13965+
addEventListener(
13966+
event: "did-frame-navigate",
13967+
listener: (event: DidFrameNavigateEvent) => void,
13968+
useCapture?: boolean
13969+
): this
13970+
removeEventListener(
13971+
event: "did-frame-navigate",
13972+
listener: (event: DidFrameNavigateEvent) => void
13973+
): this
1394513974
/**
1394613975
* Emitted when an in-page navigation happened.
1394713976
*
@@ -15478,13 +15507,34 @@ declare namespace Electron {
1547815507
interface DidFrameFinishLoadEvent extends Event {
1547915508
isMainFrame: boolean
1548015509
}
15510+
interface DidFrameNavigateEvent extends Event {
15511+
url: string
15512+
/**
15513+
* -1 for non HTTP navigations
15514+
*/
15515+
httpResponseCode: number
15516+
/**
15517+
* empty for non HTTP navigations,
15518+
*/
15519+
httpStatusText: string
15520+
isMainFrame: boolean
15521+
frameProcessId: number
15522+
frameRoutingId: number
15523+
}
1548115524
interface DidNavigateEvent extends Event {
1548215525
url: string
1548315526
}
1548415527
interface DidNavigateInPageEvent extends Event {
1548515528
isMainFrame: boolean
1548615529
url: string
1548715530
}
15531+
interface DidStartNavigationEvent extends Event {
15532+
url: string
15533+
isInPlace: boolean
15534+
isMainFrame: boolean
15535+
frameProcessId: number
15536+
frameRoutingId: number
15537+
}
1548815538
interface DisplayBalloonOptions {
1548915539
/**
1549015540
* Icon to use when `iconType` is `custom`.
@@ -17968,8 +18018,10 @@ declare namespace Electron {
1796818018
type DidCreateWindowDetails = Electron.DidCreateWindowDetails
1796918019
type DidFailLoadEvent = Electron.DidFailLoadEvent
1797018020
type DidFrameFinishLoadEvent = Electron.DidFrameFinishLoadEvent
18021+
type DidFrameNavigateEvent = Electron.DidFrameNavigateEvent
1797118022
type DidNavigateEvent = Electron.DidNavigateEvent
1797218023
type DidNavigateInPageEvent = Electron.DidNavigateInPageEvent
18024+
type DidStartNavigationEvent = Electron.DidStartNavigationEvent
1797318025
type DisplayBalloonOptions = Electron.DisplayBalloonOptions
1797418026
type EnableNetworkEmulationOptions = Electron.EnableNetworkEmulationOptions
1797518027
type FeedURLOptions = Electron.FeedURLOptions
@@ -18247,8 +18299,10 @@ declare namespace Electron {
1824718299
type DidCreateWindowDetails = Electron.DidCreateWindowDetails
1824818300
type DidFailLoadEvent = Electron.DidFailLoadEvent
1824918301
type DidFrameFinishLoadEvent = Electron.DidFrameFinishLoadEvent
18302+
type DidFrameNavigateEvent = Electron.DidFrameNavigateEvent
1825018303
type DidNavigateEvent = Electron.DidNavigateEvent
1825118304
type DidNavigateInPageEvent = Electron.DidNavigateInPageEvent
18305+
type DidStartNavigationEvent = Electron.DidStartNavigationEvent
1825218306
type DisplayBalloonOptions = Electron.DisplayBalloonOptions
1825318307
type EnableNetworkEmulationOptions = Electron.EnableNetworkEmulationOptions
1825418308
type FeedURLOptions = Electron.FeedURLOptions
@@ -18479,8 +18533,10 @@ declare namespace Electron {
1847918533
type DidCreateWindowDetails = Electron.DidCreateWindowDetails
1848018534
type DidFailLoadEvent = Electron.DidFailLoadEvent
1848118535
type DidFrameFinishLoadEvent = Electron.DidFrameFinishLoadEvent
18536+
type DidFrameNavigateEvent = Electron.DidFrameNavigateEvent
1848218537
type DidNavigateEvent = Electron.DidNavigateEvent
1848318538
type DidNavigateInPageEvent = Electron.DidNavigateInPageEvent
18539+
type DidStartNavigationEvent = Electron.DidStartNavigationEvent
1848418540
type DisplayBalloonOptions = Electron.DisplayBalloonOptions
1848518541
type EnableNetworkEmulationOptions = Electron.EnableNetworkEmulationOptions
1848618542
type FeedURLOptions = Electron.FeedURLOptions
@@ -32258,6 +32314,19 @@ Calling `event.preventDefault()` does __NOT__ have any effect.
3225832314
event: "will-navigate",
3225932315
listener: (event: WillNavigateEvent) => void
3226032316
): this
32317+
/**
32318+
* Emitted when any frame (including main) starts navigating. `isInPlace` will be
32319+
* `true` for in-page navigations.
32320+
*/
32321+
addEventListener(
32322+
event: "did-start-navigation",
32323+
listener: (event: DidStartNavigationEvent) => void,
32324+
useCapture?: boolean
32325+
): this
32326+
removeEventListener(
32327+
event: "did-start-navigation",
32328+
listener: (event: DidStartNavigationEvent) => void
32329+
): this
3226132330
/**
3226232331
* Emitted when a navigation is done.
3226332332
*
@@ -32274,6 +32343,22 @@ Calling `event.preventDefault()` does __NOT__ have any effect.
3227432343
event: "did-navigate",
3227532344
listener: (event: DidNavigateEvent) => void
3227632345
): this
32346+
/**
32347+
* Emitted when any frame navigation is done.
32348+
*
32349+
* This event is not emitted for in-page navigations, such as clicking anchor links
32350+
* or updating the `window.location.hash`. Use `did-navigate-in-page` event for
32351+
* this purpose.
32352+
*/
32353+
addEventListener(
32354+
event: "did-frame-navigate",
32355+
listener: (event: DidFrameNavigateEvent) => void,
32356+
useCapture?: boolean
32357+
): this
32358+
removeEventListener(
32359+
event: "did-frame-navigate",
32360+
listener: (event: DidFrameNavigateEvent) => void
32361+
): this
3227732362
/**
3227832363
* Emitted when an in-page navigation happened.
3227932364
*
@@ -33796,13 +33881,34 @@ interface DidFailLoadEvent extends Event {
3379633881
interface DidFrameFinishLoadEvent extends Event {
3379733882
isMainFrame: boolean
3379833883
}
33884+
interface DidFrameNavigateEvent extends Event {
33885+
url: string
33886+
/**
33887+
* -1 for non HTTP navigations
33888+
*/
33889+
httpResponseCode: number
33890+
/**
33891+
* empty for non HTTP navigations,
33892+
*/
33893+
httpStatusText: string
33894+
isMainFrame: boolean
33895+
frameProcessId: number
33896+
frameRoutingId: number
33897+
}
3379933898
interface DidNavigateEvent extends Event {
3380033899
url: string
3380133900
}
3380233901
interface DidNavigateInPageEvent extends Event {
3380333902
isMainFrame: boolean
3380433903
url: string
3380533904
}
33905+
interface DidStartNavigationEvent extends Event {
33906+
url: string
33907+
isInPlace: boolean
33908+
isMainFrame: boolean
33909+
frameProcessId: number
33910+
frameRoutingId: number
33911+
}
3380633912
interface DisplayBalloonOptions {
3380733913
/**
3380833914
* Icon to use when `iconType` is `custom`.
@@ -36286,8 +36392,10 @@ namespace Common {
3628636392
type DidCreateWindowDetails = Electron.DidCreateWindowDetails
3628736393
type DidFailLoadEvent = Electron.DidFailLoadEvent
3628836394
type DidFrameFinishLoadEvent = Electron.DidFrameFinishLoadEvent
36395+
type DidFrameNavigateEvent = Electron.DidFrameNavigateEvent
3628936396
type DidNavigateEvent = Electron.DidNavigateEvent
3629036397
type DidNavigateInPageEvent = Electron.DidNavigateInPageEvent
36398+
type DidStartNavigationEvent = Electron.DidStartNavigationEvent
3629136399
type DisplayBalloonOptions = Electron.DisplayBalloonOptions
3629236400
type EnableNetworkEmulationOptions = Electron.EnableNetworkEmulationOptions
3629336401
type FeedURLOptions = Electron.FeedURLOptions
@@ -36562,8 +36670,10 @@ namespace Main {
3656236670
type DidCreateWindowDetails = Electron.DidCreateWindowDetails
3656336671
type DidFailLoadEvent = Electron.DidFailLoadEvent
3656436672
type DidFrameFinishLoadEvent = Electron.DidFrameFinishLoadEvent
36673+
type DidFrameNavigateEvent = Electron.DidFrameNavigateEvent
3656536674
type DidNavigateEvent = Electron.DidNavigateEvent
3656636675
type DidNavigateInPageEvent = Electron.DidNavigateInPageEvent
36676+
type DidStartNavigationEvent = Electron.DidStartNavigationEvent
3656736677
type DisplayBalloonOptions = Electron.DisplayBalloonOptions
3656836678
type EnableNetworkEmulationOptions = Electron.EnableNetworkEmulationOptions
3656936679
type FeedURLOptions = Electron.FeedURLOptions
@@ -36791,8 +36901,10 @@ namespace Renderer {
3679136901
type DidCreateWindowDetails = Electron.DidCreateWindowDetails
3679236902
type DidFailLoadEvent = Electron.DidFailLoadEvent
3679336903
type DidFrameFinishLoadEvent = Electron.DidFrameFinishLoadEvent
36904+
type DidFrameNavigateEvent = Electron.DidFrameNavigateEvent
3679436905
type DidNavigateEvent = Electron.DidNavigateEvent
3679536906
type DidNavigateInPageEvent = Electron.DidNavigateInPageEvent
36907+
type DidStartNavigationEvent = Electron.DidStartNavigationEvent
3679636908
type DisplayBalloonOptions = Electron.DisplayBalloonOptions
3679736909
type EnableNetworkEmulationOptions = Electron.EnableNetworkEmulationOptions
3679836910
type FeedURLOptions = Electron.FeedURLOptions
@@ -37096,8 +37208,10 @@ type DidChangeThemeColorEvent = Electron.DidChangeThemeColorEvent
3709637208
type DidCreateWindowDetails = Electron.DidCreateWindowDetails
3709737209
type DidFailLoadEvent = Electron.DidFailLoadEvent
3709837210
type DidFrameFinishLoadEvent = Electron.DidFrameFinishLoadEvent
37211+
type DidFrameNavigateEvent = Electron.DidFrameNavigateEvent
3709937212
type DidNavigateEvent = Electron.DidNavigateEvent
3710037213
type DidNavigateInPageEvent = Electron.DidNavigateInPageEvent
37214+
type DidStartNavigationEvent = Electron.DidStartNavigationEvent
3710137215
type DisplayBalloonOptions = Electron.DisplayBalloonOptions
3710237216
type EnableNetworkEmulationOptions = Electron.EnableNetworkEmulationOptions
3710337217
type FeedURLOptions = Electron.FeedURLOptions
@@ -37318,8 +37432,10 @@ type DidChangeThemeColorEvent = Electron.DidChangeThemeColorEvent
3731837432
type DidCreateWindowDetails = Electron.DidCreateWindowDetails
3731937433
type DidFailLoadEvent = Electron.DidFailLoadEvent
3732037434
type DidFrameFinishLoadEvent = Electron.DidFrameFinishLoadEvent
37435+
type DidFrameNavigateEvent = Electron.DidFrameNavigateEvent
3732137436
type DidNavigateEvent = Electron.DidNavigateEvent
3732237437
type DidNavigateInPageEvent = Electron.DidNavigateInPageEvent
37438+
type DidStartNavigationEvent = Electron.DidStartNavigationEvent
3732337439
type DisplayBalloonOptions = Electron.DisplayBalloonOptions
3732437440
type EnableNetworkEmulationOptions = Electron.EnableNetworkEmulationOptions
3732537441
type FeedURLOptions = Electron.FeedURLOptions
@@ -37539,8 +37655,10 @@ type DidChangeThemeColorEvent = Electron.DidChangeThemeColorEvent
3753937655
type DidCreateWindowDetails = Electron.DidCreateWindowDetails
3754037656
type DidFailLoadEvent = Electron.DidFailLoadEvent
3754137657
type DidFrameFinishLoadEvent = Electron.DidFrameFinishLoadEvent
37658+
type DidFrameNavigateEvent = Electron.DidFrameNavigateEvent
3754237659
type DidNavigateEvent = Electron.DidNavigateEvent
3754337660
type DidNavigateInPageEvent = Electron.DidNavigateInPageEvent
37661+
type DidStartNavigationEvent = Electron.DidStartNavigationEvent
3754437662
type DisplayBalloonOptions = Electron.DisplayBalloonOptions
3754537663
type EnableNetworkEmulationOptions = Electron.EnableNetworkEmulationOptions
3754637664
type FeedURLOptions = Electron.FeedURLOptions
@@ -38357,7 +38475,7 @@ export interface Service {
3835738475
channel?: Channel
3835838476
}
3835938477
declare type ContentPlayerContentType = "Mirakurun" | (string & {})
38360-
declare type ContentPlayerPlayingContent = {
38478+
export declare type ContentPlayerPlayingContent = {
3836138479
contentType: ContentPlayerContentType
3836238480
url: string
3836338481
program?: Program
@@ -38368,6 +38486,7 @@ declare type OpenWindowArg = {
3836838486
isSingletone?: boolean
3836938487
args?: BrowserWindowConstructorOptions
3837038488
}
38489+
declare type MirakurunCompatibilityTypes = "Mirakurun" | "Mirakc"
3837138490
export declare type AppInfo = {
3837238491
name: string
3837338492
version: string
@@ -38439,6 +38558,10 @@ export declare type PluginInRendererArgs = {
3843938558
contentPlayerPositionUpdateTriggerAtom: Recoil.RecoilState<number>
3844038559
contentPlayerRelativeMoveTriggerAtom: Recoil.RecoilState<number>
3844138560
contentPlayerScreenshotTriggerAtom: Recoil.RecoilState<number>
38561+
mirakurunCompatibilitySelector: Recoil.RecoilValueReadOnly<MirakurunCompatibilityTypes | null>
38562+
mirakurunVersionSelector: Recoil.RecoilValueReadOnly<string | null>
38563+
mirakurunServicesSelector: Recoil.RecoilValueReadOnly<Service[] | null>
38564+
mirakurunProgramsSelector: Recoil.RecoilValueReadOnly<Program[] | null>
3844238565
}
3844338566
}
3844438567
export declare type InitPluginInRenderer = (

src/miraktest-epgs/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# miraktest-epgs
2+
3+
[l3tnun/EPGStation](https://github.com/l3tnun/EPGStation) との連携を行うプラグインです。<br />
4+
録画番組の再生が可能になります。
5+
6+
## サンプルイメージ
7+
8+
[![Image from Gyazo](https://i.gyazo.com/929807e5ab141692d79f72f59e5d4d32.jpg)](https://gyazo.com/929807e5ab141692d79f72f59e5d4d32)

0 commit comments

Comments
 (0)