-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from aXenDeveloper/change_marketplace_ips
Change marketplace IPS to invisionize
- Loading branch information
Showing
32 changed files
with
437 additions
and
292 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
"commitlint", | ||
"datetime", | ||
"fluentui", | ||
"invisionize", | ||
"overscan", | ||
"stylelint", | ||
"Swipeable", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,15 @@ | ||
import { HomeView } from '@/views/home/HomeView'; | ||
import { CONFIG, ExchangeRateToUSD } from '@/config'; | ||
|
||
export default function Page() { | ||
return <HomeView />; | ||
const fetchExchangeRateToUSD = async (): Promise<ExchangeRateToUSD> => { | ||
const current = await fetch(CONFIG.nbpAPI); | ||
|
||
return current.json(); | ||
}; | ||
|
||
export default async function Page() { | ||
const exchangeRateToUSD = await fetchExchangeRateToUSD(); | ||
const current = exchangeRateToUSD.rates; | ||
|
||
return <HomeView oneUSDtoPLN={current.length > 0 ? current[0].mid : undefined} />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
...fer_products_from_ips_marketplace/transfer_products_from_ips_marketplace-en.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Transfer products from IPS Marketplace to Invisionize | ||
|
||
As you know IPS Marketplace is closing October 30, 2023 ([You can read more here](https://invisioncommunity.com/news/invision-community/marketplace-closure-r1283/)) and I am moving all products to [Invisionize](https://forum.invisionize.pl/). | ||
|
||
## How to transfer license of my products? | ||
|
||
1. Sign up on [Invisionize](https://forum.invisionize.pl/), | ||
2. Sand me a PM on [IPS Community](https://invisioncommunity.com/messenger/compose/?to=580858) with your [Invisionize](https://forum.invisionize.pl/) username and which products you want to transfer, | ||
3. Wait for my answer. I will transfer your purchases to your account. |
9 changes: 9 additions & 0 deletions
9
...fer_products_from_ips_marketplace/transfer_products_from_ips_marketplace-pl.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Przenoszenie produktów z IPS Marketplace do Invisionize | ||
|
||
Jak już wiesz IPS Marketplace zamyka się 30 Października 2023r. ([Więcej możesz przeczytać tutaj](https://invisioncommunity.com/news/invision-community/marketplace-closure-r1283/)) i przenoszę wszystkie produkty do [Invisionize](https://forum.invisionize.pl/). | ||
|
||
## Jak przenieść licencję moich produktów? | ||
|
||
1. Zarejestruj się na [Invisionize](https://forum.invisionize.pl/), | ||
2. Wyślij mi wiadomość na [IPS Community](https://invisioncommunity.com/messenger/compose/?to=580858) z nazwą użytkownika na [Invisionize](https://forum.invisionize.pl/) oraz które produkty chcesz przenieść, | ||
3. Poczekaj na odpowiedź. Ja przeniosę Twoje zakupy na Twoje konto. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,16 @@ | ||
export const CONFIG_LOCAL_STORAGE_THEME = 'aXenDev_theme'; | ||
export const CONFIG = { | ||
nbpAPI: 'https://api.nbp.pl/api/exchangerates/rates/a/usd/?format=json', | ||
title: 'aXenDev', | ||
local_storage_theme: 'aXenDev_theme' | ||
}; | ||
|
||
export const CONFIG_TITLE = 'aXenDev'; | ||
export interface ExchangeRateToUSD { | ||
code: string; | ||
currency: string; | ||
rates: { | ||
effectiveDate: string; | ||
mid: number; | ||
no: string; | ||
}[]; | ||
table: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
7d8ae33
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
web-axendev – ./
web-axendev-axendeveloper.vercel.app
web-axendev.vercel.app
www.axendev.net
web-axendev-git-master-axendeveloper.vercel.app
axendev.net