fix(electron): missing video (#4451)

This commit is contained in:
Alex Yang 2023-09-22 00:56:43 -05:00 committed by GitHub
parent a6d19abc73
commit 092e2e0a3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 15 additions and 8 deletions

View File

@ -291,7 +291,7 @@ export const createConfiguration: (
exclude: [/node_modules/],
},
{
test: /\.(png|jpg|gif|svg|webp)$/,
test: /\.(png|jpg|gif|svg|webp|mp4)$/,
type: 'asset/resource',
},
{

View File

@ -17,8 +17,10 @@ export default {
let id = 0;
const image = (
<video autoPlay muted loop>
<source src="/editingVideo.mp4" type="video/mp4" />
<source src="/editingVideo.webm" type="video/webm" />
<source
src="http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4"
type="video/mp4"
/>
</video>
);
export const Basic = () => {

View File

@ -1,9 +1,11 @@
/// <reference types="../../type.d.ts" />
import { useAFFiNEI18N } from '@affine/i18n/hooks';
import { ArrowLeftSmallIcon, ArrowRightSmallIcon } from '@blocksuite/icons';
import { Modal, type ModalProps } from '@toeverything/components/modal';
import clsx from 'clsx';
import { useState } from 'react';
import editingVideo from './editingVideo.mp4';
import {
arrowStyle,
buttonDisableStyle,
@ -24,6 +26,7 @@ import {
videoSlideStyle,
videoStyle,
} from './index.css';
import switchVideo from './switchVideo.mp4';
export const TourModal = (props: ModalProps) => {
const t = useAFFiNEI18N();
@ -92,8 +95,7 @@ export const TourModal = (props: ModalProps) => {
})}
data-testid="onboarding-modal-editing-video"
>
<source src="/editingVideo.mp4" type="video/mp4" />
<source src="/editingVideo.webm" type="video/webm" />
<source src={editingVideo} type="video/mp4" />
</video>
)}
<video
@ -106,8 +108,7 @@ export const TourModal = (props: ModalProps) => {
})}
data-testid="onboarding-modal-switch-video"
>
<source src="/switchVideo.mp4" type="video/mp4" />
<source src="/switchVideo.webm" type="video/webm" />
<source src={switchVideo} type="video/mp4" />
</video>
</div>
</div>

4
packages/component/src/type.d.ts vendored Normal file
View File

@ -0,0 +1,4 @@
declare module '*.mp4' {
const src: string;
export default src;
}

View File

@ -1,7 +1,7 @@
{
"extends": "../../tsconfig.json",
"exclude": ["lib"],
"include": ["./src/**/*", "./src/**/*.json"],
"include": ["./src/**/*", "./src/**/*.json", "./src/type.d.ts"],
"compilerOptions": {
"composite": true,
"noEmit": false,