├── .babelrc.js ├── .eslintignore ├── .eslintrc ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── phpcs.yml │ └── phpunit.yml ├── .gitignore ├── .php_cs ├── LICENSE.txt ├── README.md ├── Rest-API-Docs.MD ├── article-gen.php ├── assets ├── images │ ├── article-gen-logo-icon.png │ └── article-gen-logo.png └── js │ ├── version-replace.js │ └── zip.js ├── changelog.txt ├── composer.json ├── includes ├── Abstracts │ ├── BaseModel.php │ ├── DBMigrator.php │ ├── DBSeeder.php │ └── RESTController.php ├── Admin │ └── Menu.php ├── Assets │ └── Manager.php ├── Blocks │ └── Manager.php ├── Common │ └── Keys.php ├── Contexts │ ├── Context.php │ ├── ContextStatus.php │ └── Manager.php ├── Databases │ ├── Migrations │ │ ├── ContextsMigration.php │ │ └── settingsMigration.php │ └── Seeder │ │ ├── ContextsSeeder.php │ │ ├── Manager.php │ │ └── SettingsSeeder.php ├── REST │ ├── Api.php │ ├── ContextsController.php │ └── SettingsController.php ├── Settings │ ├── Manager.php │ └── Setting.php ├── Setup │ └── Installer.php ├── Traits │ ├── InputSanitizer.php │ └── Queryable.php └── Updater │ └── WP_GitHub_Updater.php ├── jest-unit.config.js ├── languages ├── article-gen-pt_BR-c011e122233ae2cfbbbe9d409606201a.json ├── article-gen-pt_BR-c2fb37e514601deebeb2549682342f7c.json ├── article-gen-pt_BR-dfbff627e6c248bcb3b61d7d06da9ca9.json ├── article-gen-pt_BR.mo ├── article-gen-pt_BR.po └── article-gen.pot ├── package.json ├── phpcs.xml ├── phpunit.xml.dist ├── postcss.config.js ├── readme.txt ├── src ├── App.tsx ├── blocks │ ├── ai-complete │ │ ├── block.json │ │ ├── editor.scss │ │ ├── index.ts │ │ ├── prompt.tsx │ │ ├── save.tsx │ │ └── style.scss │ └── ai-gen-image │ │ ├── block.json │ │ ├── edit.tsx │ │ ├── editor.scss │ │ ├── index.ts │ │ ├── save.tsx │ │ └── style.scss ├── components │ ├── badge │ │ ├── Badge.stories.tsx │ │ ├── Badge.tsx │ │ └── __tests__ │ │ │ └── Badge.test.tsx │ ├── button │ │ ├── Button.stories.tsx │ │ └── Button.tsx │ ├── card │ │ ├── Card.stories.tsx │ │ └── Card.tsx │ ├── contexts │ │ ├── ContextCard.tsx │ │ ├── ContextForm.tsx │ │ ├── ContextFormSidebar.tsx │ │ ├── ContextSubmit.tsx │ │ ├── ListItemMenu.tsx │ │ ├── SelectCheckBox.tsx │ │ └── use-table-data.tsx │ ├── dashboard │ │ └── Dashboard.tsx │ ├── date-picker │ │ ├── DatePicker.stories.tsx │ │ ├── DatePicker.tsx │ │ └── DatePickerData.ts │ ├── inputs │ │ ├── Input.stories.tsx │ │ ├── Input.tsx │ │ ├── InputLabel.tsx │ │ ├── Select2Input.stories.tsx │ │ ├── Select2Input.tsx │ │ ├── SwitchCheckbox.tsx │ │ ├── SwitchInput.stories.tsx │ │ └── TextEditor.tsx │ ├── layout │ │ ├── Header.tsx │ │ ├── Layout.tsx │ │ ├── NavMenu.tsx │ │ └── PageHeading.tsx │ ├── loading │ │ ├── BarChartLoading.stories.tsx │ │ ├── BarChartLoading.tsx │ │ ├── DashboardCardLoading.stories.tsx │ │ ├── DashboardCardLoading.tsx │ │ ├── LineChartLoading.stories.tsx │ │ ├── LineChartLoading.tsx │ │ ├── Loading.stories.tsx │ │ ├── Loading.tsx │ │ ├── OverlayLoading.tsx │ │ ├── SettingsLoading.stories.tsx │ │ ├── SettingsLoading.tsx │ │ ├── SettingsSectionLoading.tsx │ │ ├── TableLoading.stories.tsx │ │ └── TableLoading.tsx │ ├── modal │ │ ├── Modal.stories.tsx │ │ └── Modal.tsx │ ├── page-partials │ │ ├── SelectListItem.tsx │ │ └── SelectedItem.tsx │ ├── pagination │ │ ├── Pagination.stories.tsx │ │ └── Pagination.tsx │ ├── settings │ │ ├── SettingSubmit.tsx │ │ ├── SettingsForm.tsx │ │ └── SettingsFormSidebar.tsx │ ├── spinner │ │ ├── Spinner.stories.tsx │ │ └── Spinner.tsx │ ├── svg │ │ ├── LogoIcon.tsx │ │ ├── SvgCircleDefaultIcon.tsx │ │ ├── SvgCirclePrimaryIcon.tsx │ │ ├── SvgCircleSuccessIcon.tsx │ │ └── SvgCircleWarningIcon.tsx │ ├── tab │ │ ├── Tab.stories.tsx │ │ └── Tab.tsx │ ├── table │ │ ├── Table.stories.tsx │ │ ├── Table.tsx │ │ └── TableInterface.ts │ └── tooltip │ │ ├── ProNotExistTooltip.tsx │ │ ├── Tooltip.tsx │ │ └── tooltip-style.scss ├── data │ ├── contexts │ │ ├── actions.ts │ │ ├── controls.ts │ │ ├── default-state.ts │ │ ├── endpoint.ts │ │ ├── index.ts │ │ ├── reducer.ts │ │ ├── resolvers.ts │ │ ├── selectors.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── settings │ │ ├── actions.ts │ │ ├── controls.ts │ │ ├── default-state.ts │ │ ├── endpoint.ts │ │ ├── index.ts │ │ ├── reducer.ts │ │ ├── resolvers.ts │ │ ├── selectors.ts │ │ ├── types.ts │ │ └── utils.ts │ └── store.ts ├── hooks │ ├── use-window-width.tsx │ ├── useConfirmReload.tsx │ ├── useMenuFix.tsx │ └── useOutsideClick.tsx ├── index.tsx ├── integrations │ ├── openai │ │ ├── OpenAi.ts │ │ ├── Settings.ts │ │ ├── createArticle.ts │ │ └── createImage.ts │ └── speechRecognition │ │ └── speech.ts ├── interfaces │ ├── contexts.ts │ ├── index.ts │ └── settings.ts ├── pages │ ├── HomePage.tsx │ ├── contexts │ │ ├── ContextsPage.tsx │ │ ├── CreateContext.tsx │ │ └── EditContext.tsx │ └── settings │ │ └── index.tsx ├── routes │ └── index.ts ├── style │ ├── main.scss │ └── tailwind.css └── utils │ ├── DateHelper.ts │ ├── MenuFix.ts │ ├── NumberFormat.ts │ ├── SaveImgToLibrary.ts │ ├── Select2Helper.ts │ ├── StringHelper.ts │ ├── global-data.ts │ ├── http.ts │ ├── strToSlug.ts │ └── text-parser.ts ├── tailwind.config.js ├── templates ├── app.php └── blocks │ ├── ai-complete │ └── markup.php │ └── ai-gen-image │ └── markup.php ├── tests ├── e2e │ ├── specs │ │ └── env.spec.js │ └── unit │ │ └── example.test.ts ├── phpunit │ ├── Api │ │ ├── CompanyRestApiTest.php │ │ └── ContextRestApiTest.php │ ├── Contexts │ │ └── ContextManagerTest.php │ ├── Install │ │ └── RunnerTest.php │ ├── bootstrap.php │ └── wp-config.php └── unit │ └── config │ └── testing-library.js ├── tsconfig.json └── webpack.config.js /.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/.babelrc.js -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: cleissonbarbosa 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/phpcs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/.github/workflows/phpcs.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/.github/workflows/phpunit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/.php_cs -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/README.md -------------------------------------------------------------------------------- /Rest-API-Docs.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/Rest-API-Docs.MD -------------------------------------------------------------------------------- /article-gen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/article-gen.php -------------------------------------------------------------------------------- /assets/images/article-gen-logo-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/assets/images/article-gen-logo-icon.png -------------------------------------------------------------------------------- /assets/images/article-gen-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/assets/images/article-gen-logo.png -------------------------------------------------------------------------------- /assets/js/version-replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/assets/js/version-replace.js -------------------------------------------------------------------------------- /assets/js/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/assets/js/zip.js -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/changelog.txt -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/composer.json -------------------------------------------------------------------------------- /includes/Abstracts/BaseModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/includes/Abstracts/BaseModel.php -------------------------------------------------------------------------------- /includes/Abstracts/DBMigrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/includes/Abstracts/DBMigrator.php -------------------------------------------------------------------------------- /includes/Abstracts/DBSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/includes/Abstracts/DBSeeder.php -------------------------------------------------------------------------------- /includes/Abstracts/RESTController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/includes/Abstracts/RESTController.php -------------------------------------------------------------------------------- /includes/Admin/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/includes/Admin/Menu.php -------------------------------------------------------------------------------- /includes/Assets/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/includes/Assets/Manager.php -------------------------------------------------------------------------------- /includes/Blocks/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/includes/Blocks/Manager.php -------------------------------------------------------------------------------- /includes/Common/Keys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/includes/Common/Keys.php -------------------------------------------------------------------------------- /includes/Contexts/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/includes/Contexts/Context.php -------------------------------------------------------------------------------- /includes/Contexts/ContextStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/includes/Contexts/ContextStatus.php -------------------------------------------------------------------------------- /includes/Contexts/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/includes/Contexts/Manager.php -------------------------------------------------------------------------------- /includes/Databases/Migrations/ContextsMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/includes/Databases/Migrations/ContextsMigration.php -------------------------------------------------------------------------------- /includes/Databases/Migrations/settingsMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/includes/Databases/Migrations/settingsMigration.php -------------------------------------------------------------------------------- /includes/Databases/Seeder/ContextsSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/includes/Databases/Seeder/ContextsSeeder.php -------------------------------------------------------------------------------- /includes/Databases/Seeder/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/includes/Databases/Seeder/Manager.php -------------------------------------------------------------------------------- /includes/Databases/Seeder/SettingsSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/includes/Databases/Seeder/SettingsSeeder.php -------------------------------------------------------------------------------- /includes/REST/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/includes/REST/Api.php -------------------------------------------------------------------------------- /includes/REST/ContextsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/includes/REST/ContextsController.php -------------------------------------------------------------------------------- /includes/REST/SettingsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/includes/REST/SettingsController.php -------------------------------------------------------------------------------- /includes/Settings/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/includes/Settings/Manager.php -------------------------------------------------------------------------------- /includes/Settings/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/includes/Settings/Setting.php -------------------------------------------------------------------------------- /includes/Setup/Installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/includes/Setup/Installer.php -------------------------------------------------------------------------------- /includes/Traits/InputSanitizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/includes/Traits/InputSanitizer.php -------------------------------------------------------------------------------- /includes/Traits/Queryable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/includes/Traits/Queryable.php -------------------------------------------------------------------------------- /includes/Updater/WP_GitHub_Updater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/includes/Updater/WP_GitHub_Updater.php -------------------------------------------------------------------------------- /jest-unit.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/jest-unit.config.js -------------------------------------------------------------------------------- /languages/article-gen-pt_BR-c011e122233ae2cfbbbe9d409606201a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/languages/article-gen-pt_BR-c011e122233ae2cfbbbe9d409606201a.json -------------------------------------------------------------------------------- /languages/article-gen-pt_BR-c2fb37e514601deebeb2549682342f7c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/languages/article-gen-pt_BR-c2fb37e514601deebeb2549682342f7c.json -------------------------------------------------------------------------------- /languages/article-gen-pt_BR-dfbff627e6c248bcb3b61d7d06da9ca9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/languages/article-gen-pt_BR-dfbff627e6c248bcb3b61d7d06da9ca9.json -------------------------------------------------------------------------------- /languages/article-gen-pt_BR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/languages/article-gen-pt_BR.mo -------------------------------------------------------------------------------- /languages/article-gen-pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/languages/article-gen-pt_BR.po -------------------------------------------------------------------------------- /languages/article-gen.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/languages/article-gen.pot -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/package.json -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/postcss.config.js -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/readme.txt -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/blocks/ai-complete/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/blocks/ai-complete/block.json -------------------------------------------------------------------------------- /src/blocks/ai-complete/editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/blocks/ai-complete/editor.scss -------------------------------------------------------------------------------- /src/blocks/ai-complete/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/blocks/ai-complete/index.ts -------------------------------------------------------------------------------- /src/blocks/ai-complete/prompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/blocks/ai-complete/prompt.tsx -------------------------------------------------------------------------------- /src/blocks/ai-complete/save.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/blocks/ai-complete/save.tsx -------------------------------------------------------------------------------- /src/blocks/ai-complete/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/blocks/ai-complete/style.scss -------------------------------------------------------------------------------- /src/blocks/ai-gen-image/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/blocks/ai-gen-image/block.json -------------------------------------------------------------------------------- /src/blocks/ai-gen-image/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/blocks/ai-gen-image/edit.tsx -------------------------------------------------------------------------------- /src/blocks/ai-gen-image/editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/blocks/ai-gen-image/editor.scss -------------------------------------------------------------------------------- /src/blocks/ai-gen-image/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/blocks/ai-gen-image/index.ts -------------------------------------------------------------------------------- /src/blocks/ai-gen-image/save.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/blocks/ai-gen-image/save.tsx -------------------------------------------------------------------------------- /src/blocks/ai-gen-image/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/blocks/ai-gen-image/style.scss -------------------------------------------------------------------------------- /src/components/badge/Badge.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/badge/Badge.stories.tsx -------------------------------------------------------------------------------- /src/components/badge/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/badge/Badge.tsx -------------------------------------------------------------------------------- /src/components/badge/__tests__/Badge.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/badge/__tests__/Badge.test.tsx -------------------------------------------------------------------------------- /src/components/button/Button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/button/Button.stories.tsx -------------------------------------------------------------------------------- /src/components/button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/button/Button.tsx -------------------------------------------------------------------------------- /src/components/card/Card.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/card/Card.stories.tsx -------------------------------------------------------------------------------- /src/components/card/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/card/Card.tsx -------------------------------------------------------------------------------- /src/components/contexts/ContextCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/contexts/ContextCard.tsx -------------------------------------------------------------------------------- /src/components/contexts/ContextForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/contexts/ContextForm.tsx -------------------------------------------------------------------------------- /src/components/contexts/ContextFormSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/contexts/ContextFormSidebar.tsx -------------------------------------------------------------------------------- /src/components/contexts/ContextSubmit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/contexts/ContextSubmit.tsx -------------------------------------------------------------------------------- /src/components/contexts/ListItemMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/contexts/ListItemMenu.tsx -------------------------------------------------------------------------------- /src/components/contexts/SelectCheckBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/contexts/SelectCheckBox.tsx -------------------------------------------------------------------------------- /src/components/contexts/use-table-data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/contexts/use-table-data.tsx -------------------------------------------------------------------------------- /src/components/dashboard/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/dashboard/Dashboard.tsx -------------------------------------------------------------------------------- /src/components/date-picker/DatePicker.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/date-picker/DatePicker.stories.tsx -------------------------------------------------------------------------------- /src/components/date-picker/DatePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/date-picker/DatePicker.tsx -------------------------------------------------------------------------------- /src/components/date-picker/DatePickerData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/date-picker/DatePickerData.ts -------------------------------------------------------------------------------- /src/components/inputs/Input.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/inputs/Input.stories.tsx -------------------------------------------------------------------------------- /src/components/inputs/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/inputs/Input.tsx -------------------------------------------------------------------------------- /src/components/inputs/InputLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/inputs/InputLabel.tsx -------------------------------------------------------------------------------- /src/components/inputs/Select2Input.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/inputs/Select2Input.stories.tsx -------------------------------------------------------------------------------- /src/components/inputs/Select2Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/inputs/Select2Input.tsx -------------------------------------------------------------------------------- /src/components/inputs/SwitchCheckbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/inputs/SwitchCheckbox.tsx -------------------------------------------------------------------------------- /src/components/inputs/SwitchInput.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/inputs/SwitchInput.stories.tsx -------------------------------------------------------------------------------- /src/components/inputs/TextEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/inputs/TextEditor.tsx -------------------------------------------------------------------------------- /src/components/layout/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/layout/Header.tsx -------------------------------------------------------------------------------- /src/components/layout/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/layout/Layout.tsx -------------------------------------------------------------------------------- /src/components/layout/NavMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/layout/NavMenu.tsx -------------------------------------------------------------------------------- /src/components/layout/PageHeading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/layout/PageHeading.tsx -------------------------------------------------------------------------------- /src/components/loading/BarChartLoading.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/loading/BarChartLoading.stories.tsx -------------------------------------------------------------------------------- /src/components/loading/BarChartLoading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/loading/BarChartLoading.tsx -------------------------------------------------------------------------------- /src/components/loading/DashboardCardLoading.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/loading/DashboardCardLoading.stories.tsx -------------------------------------------------------------------------------- /src/components/loading/DashboardCardLoading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/loading/DashboardCardLoading.tsx -------------------------------------------------------------------------------- /src/components/loading/LineChartLoading.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/loading/LineChartLoading.stories.tsx -------------------------------------------------------------------------------- /src/components/loading/LineChartLoading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/loading/LineChartLoading.tsx -------------------------------------------------------------------------------- /src/components/loading/Loading.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/loading/Loading.stories.tsx -------------------------------------------------------------------------------- /src/components/loading/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/loading/Loading.tsx -------------------------------------------------------------------------------- /src/components/loading/OverlayLoading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/loading/OverlayLoading.tsx -------------------------------------------------------------------------------- /src/components/loading/SettingsLoading.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/loading/SettingsLoading.stories.tsx -------------------------------------------------------------------------------- /src/components/loading/SettingsLoading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/loading/SettingsLoading.tsx -------------------------------------------------------------------------------- /src/components/loading/SettingsSectionLoading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/loading/SettingsSectionLoading.tsx -------------------------------------------------------------------------------- /src/components/loading/TableLoading.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/loading/TableLoading.stories.tsx -------------------------------------------------------------------------------- /src/components/loading/TableLoading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/loading/TableLoading.tsx -------------------------------------------------------------------------------- /src/components/modal/Modal.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/modal/Modal.stories.tsx -------------------------------------------------------------------------------- /src/components/modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/modal/Modal.tsx -------------------------------------------------------------------------------- /src/components/page-partials/SelectListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/page-partials/SelectListItem.tsx -------------------------------------------------------------------------------- /src/components/page-partials/SelectedItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/page-partials/SelectedItem.tsx -------------------------------------------------------------------------------- /src/components/pagination/Pagination.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/pagination/Pagination.stories.tsx -------------------------------------------------------------------------------- /src/components/pagination/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/pagination/Pagination.tsx -------------------------------------------------------------------------------- /src/components/settings/SettingSubmit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/settings/SettingSubmit.tsx -------------------------------------------------------------------------------- /src/components/settings/SettingsForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/settings/SettingsForm.tsx -------------------------------------------------------------------------------- /src/components/settings/SettingsFormSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/settings/SettingsFormSidebar.tsx -------------------------------------------------------------------------------- /src/components/spinner/Spinner.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/spinner/Spinner.stories.tsx -------------------------------------------------------------------------------- /src/components/spinner/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/spinner/Spinner.tsx -------------------------------------------------------------------------------- /src/components/svg/LogoIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/svg/LogoIcon.tsx -------------------------------------------------------------------------------- /src/components/svg/SvgCircleDefaultIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/svg/SvgCircleDefaultIcon.tsx -------------------------------------------------------------------------------- /src/components/svg/SvgCirclePrimaryIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/svg/SvgCirclePrimaryIcon.tsx -------------------------------------------------------------------------------- /src/components/svg/SvgCircleSuccessIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/svg/SvgCircleSuccessIcon.tsx -------------------------------------------------------------------------------- /src/components/svg/SvgCircleWarningIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/svg/SvgCircleWarningIcon.tsx -------------------------------------------------------------------------------- /src/components/tab/Tab.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/tab/Tab.stories.tsx -------------------------------------------------------------------------------- /src/components/tab/Tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/tab/Tab.tsx -------------------------------------------------------------------------------- /src/components/table/Table.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/table/Table.stories.tsx -------------------------------------------------------------------------------- /src/components/table/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/table/Table.tsx -------------------------------------------------------------------------------- /src/components/table/TableInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/table/TableInterface.ts -------------------------------------------------------------------------------- /src/components/tooltip/ProNotExistTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/tooltip/ProNotExistTooltip.tsx -------------------------------------------------------------------------------- /src/components/tooltip/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/tooltip/Tooltip.tsx -------------------------------------------------------------------------------- /src/components/tooltip/tooltip-style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/components/tooltip/tooltip-style.scss -------------------------------------------------------------------------------- /src/data/contexts/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/data/contexts/actions.ts -------------------------------------------------------------------------------- /src/data/contexts/controls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/data/contexts/controls.ts -------------------------------------------------------------------------------- /src/data/contexts/default-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/data/contexts/default-state.ts -------------------------------------------------------------------------------- /src/data/contexts/endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/data/contexts/endpoint.ts -------------------------------------------------------------------------------- /src/data/contexts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/data/contexts/index.ts -------------------------------------------------------------------------------- /src/data/contexts/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/data/contexts/reducer.ts -------------------------------------------------------------------------------- /src/data/contexts/resolvers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/data/contexts/resolvers.ts -------------------------------------------------------------------------------- /src/data/contexts/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/data/contexts/selectors.ts -------------------------------------------------------------------------------- /src/data/contexts/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/data/contexts/types.ts -------------------------------------------------------------------------------- /src/data/contexts/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/data/contexts/utils.ts -------------------------------------------------------------------------------- /src/data/settings/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/data/settings/actions.ts -------------------------------------------------------------------------------- /src/data/settings/controls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/data/settings/controls.ts -------------------------------------------------------------------------------- /src/data/settings/default-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/data/settings/default-state.ts -------------------------------------------------------------------------------- /src/data/settings/endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/data/settings/endpoint.ts -------------------------------------------------------------------------------- /src/data/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/data/settings/index.ts -------------------------------------------------------------------------------- /src/data/settings/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/data/settings/reducer.ts -------------------------------------------------------------------------------- /src/data/settings/resolvers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/data/settings/resolvers.ts -------------------------------------------------------------------------------- /src/data/settings/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/data/settings/selectors.ts -------------------------------------------------------------------------------- /src/data/settings/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/data/settings/types.ts -------------------------------------------------------------------------------- /src/data/settings/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/data/settings/utils.ts -------------------------------------------------------------------------------- /src/data/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/data/store.ts -------------------------------------------------------------------------------- /src/hooks/use-window-width.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/hooks/use-window-width.tsx -------------------------------------------------------------------------------- /src/hooks/useConfirmReload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/hooks/useConfirmReload.tsx -------------------------------------------------------------------------------- /src/hooks/useMenuFix.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/hooks/useMenuFix.tsx -------------------------------------------------------------------------------- /src/hooks/useOutsideClick.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/hooks/useOutsideClick.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/integrations/openai/OpenAi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/integrations/openai/OpenAi.ts -------------------------------------------------------------------------------- /src/integrations/openai/Settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/integrations/openai/Settings.ts -------------------------------------------------------------------------------- /src/integrations/openai/createArticle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/integrations/openai/createArticle.ts -------------------------------------------------------------------------------- /src/integrations/openai/createImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/integrations/openai/createImage.ts -------------------------------------------------------------------------------- /src/integrations/speechRecognition/speech.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/integrations/speechRecognition/speech.ts -------------------------------------------------------------------------------- /src/interfaces/contexts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/interfaces/contexts.ts -------------------------------------------------------------------------------- /src/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/interfaces/index.ts -------------------------------------------------------------------------------- /src/interfaces/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/interfaces/settings.ts -------------------------------------------------------------------------------- /src/pages/HomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/pages/HomePage.tsx -------------------------------------------------------------------------------- /src/pages/contexts/ContextsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/pages/contexts/ContextsPage.tsx -------------------------------------------------------------------------------- /src/pages/contexts/CreateContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/pages/contexts/CreateContext.tsx -------------------------------------------------------------------------------- /src/pages/contexts/EditContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/pages/contexts/EditContext.tsx -------------------------------------------------------------------------------- /src/pages/settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/pages/settings/index.tsx -------------------------------------------------------------------------------- /src/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/routes/index.ts -------------------------------------------------------------------------------- /src/style/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/style/main.scss -------------------------------------------------------------------------------- /src/style/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/style/tailwind.css -------------------------------------------------------------------------------- /src/utils/DateHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/utils/DateHelper.ts -------------------------------------------------------------------------------- /src/utils/MenuFix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/utils/MenuFix.ts -------------------------------------------------------------------------------- /src/utils/NumberFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/utils/NumberFormat.ts -------------------------------------------------------------------------------- /src/utils/SaveImgToLibrary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/utils/SaveImgToLibrary.ts -------------------------------------------------------------------------------- /src/utils/Select2Helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/utils/Select2Helper.ts -------------------------------------------------------------------------------- /src/utils/StringHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/utils/StringHelper.ts -------------------------------------------------------------------------------- /src/utils/global-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/utils/global-data.ts -------------------------------------------------------------------------------- /src/utils/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/utils/http.ts -------------------------------------------------------------------------------- /src/utils/strToSlug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/utils/strToSlug.ts -------------------------------------------------------------------------------- /src/utils/text-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/src/utils/text-parser.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /templates/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/templates/app.php -------------------------------------------------------------------------------- /templates/blocks/ai-complete/markup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/templates/blocks/ai-complete/markup.php -------------------------------------------------------------------------------- /templates/blocks/ai-gen-image/markup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/templates/blocks/ai-gen-image/markup.php -------------------------------------------------------------------------------- /tests/e2e/specs/env.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/tests/e2e/specs/env.spec.js -------------------------------------------------------------------------------- /tests/e2e/unit/example.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/tests/e2e/unit/example.test.ts -------------------------------------------------------------------------------- /tests/phpunit/Api/CompanyRestApiTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/tests/phpunit/Api/CompanyRestApiTest.php -------------------------------------------------------------------------------- /tests/phpunit/Api/ContextRestApiTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/tests/phpunit/Api/ContextRestApiTest.php -------------------------------------------------------------------------------- /tests/phpunit/Contexts/ContextManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/tests/phpunit/Contexts/ContextManagerTest.php -------------------------------------------------------------------------------- /tests/phpunit/Install/RunnerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/tests/phpunit/Install/RunnerTest.php -------------------------------------------------------------------------------- /tests/phpunit/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/tests/phpunit/bootstrap.php -------------------------------------------------------------------------------- /tests/phpunit/wp-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/tests/phpunit/wp-config.php -------------------------------------------------------------------------------- /tests/unit/config/testing-library.js: -------------------------------------------------------------------------------- 1 | require( '@testing-library/jest-dom' ); 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleissonbarbosa/article-generator/HEAD/webpack.config.js --------------------------------------------------------------------------------