Update file name
This commit is contained in:
parent
ef5c752be8
commit
36938d34b4
|
@ -1,5 +1,5 @@
|
||||||
import {actionTypes} from "../constant/ActionTypes";
|
import {actionTypes} from "../constant/ActionTypes";
|
||||||
import {handleStyle} from "../utils/GAHelper";
|
import {handleStyle} from "../utils/gaHelper";
|
||||||
|
|
||||||
export const genQRInfo = text => ({
|
export const genQRInfo = text => ({
|
||||||
type: actionTypes.GENERATE_QR_INFO,
|
type: actionTypes.GENERATE_QR_INFO,
|
||||||
|
|
|
@ -8,7 +8,7 @@ import LinkButton from "../link/LinkButton";
|
||||||
import ImageZoom from "../../containers/app/ImageZoom";
|
import ImageZoom from "../../containers/app/ImageZoom";
|
||||||
import LinkTrace from "../link/LinkTrace";
|
import LinkTrace from "../link/LinkTrace";
|
||||||
import {isPC} from "../../utils/navigatorUtils";
|
import {isPC} from "../../utils/navigatorUtils";
|
||||||
import {handleScroll} from "../../utils/GAHelper";
|
import {handleScroll} from "../../utils/gaHelper";
|
||||||
|
|
||||||
const pictures = [
|
const pictures = [
|
||||||
'https://7172-qrbtf-1d845d-1255694434.tcb.qcloud.la/QrbtfGallery/gallery04.jpg',
|
'https://7172-qrbtf-1d845d-1255694434.tcb.qcloud.la/QrbtfGallery/gallery04.jpg',
|
||||||
|
|
|
@ -3,7 +3,7 @@ import './App.css';
|
||||||
import StyleListViewer from "../../containers/style/StyleListViewer";
|
import StyleListViewer from "../../containers/style/StyleListViewer";
|
||||||
import {isPC} from "../../utils/navigatorUtils";
|
import {isPC} from "../../utils/navigatorUtils";
|
||||||
import ScrollContainer from 'react-indiana-drag-scroll'
|
import ScrollContainer from 'react-indiana-drag-scroll'
|
||||||
import {handleScroll} from "../../utils/GAHelper";
|
import {handleScroll} from "../../utils/gaHelper";
|
||||||
|
|
||||||
const PartStyles = ({ setParamInfo }) => {
|
const PartStyles = ({ setParamInfo }) => {
|
||||||
const [loaded, setLoaded] = useState(false);
|
const [loaded, setLoaded] = useState(false);
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import {handleLink} from "../../utils/GAHelper";
|
import {handleLink} from "../../utils/gaHelper";
|
||||||
|
|
||||||
const LinkTrace = (props) => {
|
const LinkTrace = (props) => {
|
||||||
return (
|
return (
|
||||||
|
|
|
@ -3,7 +3,7 @@ import {genQRInfo} from "../../actions";
|
||||||
import React, {useRef} from "react";
|
import React, {useRef} from "react";
|
||||||
import {isPicture} from "../../utils/imageUtils";
|
import {isPicture} from "../../utils/imageUtils";
|
||||||
import {decodeData} from "../../utils/qrcodeHandler";
|
import {decodeData} from "../../utils/qrcodeHandler";
|
||||||
import { handleUpload, handleInputUrl } from "../../utils/GAHelper";
|
import { handleUpload, handleInputUrl } from "../../utils/gaHelper";
|
||||||
|
|
||||||
const InputText = ({dispatch}) => {
|
const InputText = ({dispatch}) => {
|
||||||
const textRef = useRef();
|
const textRef = useRef();
|
||||||
|
|
|
@ -3,7 +3,7 @@ import PartDownload from "../../components/app/PartDownload";
|
||||||
import {saveImg, saveSvg} from "../../utils/downloader";
|
import {saveImg, saveSvg} from "../../utils/downloader";
|
||||||
import {getDownloadCount, increaseDownloadData, recordDownloadDetail} from "../../api/TcbHandler";
|
import {getDownloadCount, increaseDownloadData, recordDownloadDetail} from "../../api/TcbHandler";
|
||||||
import {getParamDetailedValue, outerHtml} from "../../utils/util";
|
import {getParamDetailedValue, outerHtml} from "../../utils/util";
|
||||||
import {handleDownloadJpg, handleDownloadSvg} from "../../utils/GAHelper";
|
import {handleDownloadJpg, handleDownloadSvg} from "../../utils/gaHelper";
|
||||||
|
|
||||||
function saveDB(state, type, updateDownloadData) {
|
function saveDB(state, type, updateDownloadData) {
|
||||||
return new Promise(resolve => {
|
return new Promise(resolve => {
|
||||||
|
|
|
@ -2,7 +2,7 @@ import { connect } from 'react-redux';
|
||||||
import {changeParam} from "../../actions";
|
import {changeParam} from "../../actions";
|
||||||
import ParamUpload from "../../components/param/ParamUpload";
|
import ParamUpload from "../../components/param/ParamUpload";
|
||||||
import {isPicture, toBase64} from "../../utils/imageUtils";
|
import {isPicture, toBase64} from "../../utils/imageUtils";
|
||||||
import {handleUpload} from "../../utils/GAHelper";
|
import {handleUpload} from "../../utils/gaHelper";
|
||||||
|
|
||||||
const mapStateToProps = (state, ownProps) => ({
|
const mapStateToProps = (state, ownProps) => ({
|
||||||
rendererIndex: ownProps.rendererIndex,
|
rendererIndex: ownProps.rendererIndex,
|
||||||
|
|
Loading…
Reference in New Issue