Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/Commons #29

Merged
merged 11 commits into from
Sep 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 10 additions & 29 deletions components/AppFooter.vue
Original file line number Diff line number Diff line change
@@ -1,42 +1,23 @@
<template>
<div class="app-footer">
<app-button
v-for="(link, index) in links"
:key="`${link.text}-${index}`"
:text="link.text"
:href="link.href"
color="secondary"
modification="text"
/>
<p class="app-footer__item">
{{ $t('app-footer.license') }}
</p>
</div>
</template>

<script lang="ts" setup>
import { AppButton } from '#components'
import { config } from '@/config'
import { i18n } from '~/plugins/localization'

const { t } = i18n.global

// TODO: Rename text and change links
const links = [
{
text: t('app-footer.link-text'),
href: config.GITHUB_URL,
},
{
text: t('app-footer.link-text'),
href: config.GITHUB_URL,
},
]
</script>

<style lang="scss" scoped>
.app-footer {
display: flex;
gap: toRem(24);
padding: toRem(24);
padding: toRem(24) var(--app-padding-right) toRem(24) var(--app-padding-left);
justify-content: center;
border-top: toRem(1) solid var(--background-primary-light);
}

.app-footer__item {
color: var(--text-primary-main);

@include p-14-semi-bold;
}
</style>
25 changes: 5 additions & 20 deletions components/AppNavbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,40 +3,25 @@
<app-logo />
<nav class="app-navbar__nav">
<app-button
v-for="(link, index) in links"
:key="`${link}-${index}`"
:text="link.text"
:href="link.href"
:text="$t('app-navbar.link-text')"
:href="config.COMPANY_URL"
color="none"
size="large"
modification="text"
size="large"
/>
</nav>
</div>
</template>

<script lang="ts" setup>
import { AppLogo, AppButton } from '#components'
import { config } from '@/config'
import { onUnmounted, ref, onMounted } from 'vue'
import { i18n } from '~/plugins/localization'

const { t } = i18n.global
const isDarkenBg = ref(false)

// TODO: Rename text and change links
const links = [
{
text: t('app-navbar.link-text'),
href: 'https://github.com/dl-solidity-library/',
},
{
text: t('app-navbar.link-text'),
href: 'https://github.com/dl-solidity-library/',
},
]

const toggleColorHeader = () => {
isDarkenBg.value = window.pageYOffset >= 1
isDarkenBg.value = window.scrollY >= 1
}

onMounted(() => {
Expand Down
23 changes: 9 additions & 14 deletions components/AuditsCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,14 @@
<div class="audits-card__title-wrp">
<h3>{{ audit.title }}</h3>
<div class="audits-card__circle" />
<p class="audits-card__title">
{{ audit.fileSize }}
</p>
<h3>{{ audit.fileSize }}</h3>
</div>
<p class="audits-card__description">
{{ audit.description }}
</p>
<app-button
class="audits-card__btn"
color="none"
scheme="flat"
modification="border-circle"
download
:text="audit.btnText || $t('audits-card.download-btn')"
:icon-right="$icons.download"
:href="audit.fileLink"
Expand Down Expand Up @@ -48,11 +44,16 @@ defineProps<{
aspect-ratio: 600 / 318;
width: 100%;
object-fit: cover;
border-radius: inherit;
}

.audits-card__content {
display: flex;
flex-direction: column;
gap: toRem(12);

@include respond-to(xsmall) {
flex-direction: column;
}
}

.audits-card__title-wrp {
Expand All @@ -61,12 +62,6 @@ defineProps<{
gap: toRem(8);
}

.audits-card__description {
margin-top: toRem(12);
margin-bottom: toRem(24);
color: var(--text-primary-main);
}

.audits-card__circle {
width: toRem(5);
height: toRem(5);
Expand All @@ -75,6 +70,6 @@ defineProps<{
}

.audits-card__btn {
align-self: end;
margin-left: auto;
}
</style>
2 changes: 1 addition & 1 deletion components/ProjectsInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const cards = [
{
title: t('projects-info.solidity-tools-title'),
message: t('projects-info.solidity-tools-message'),
route: ROUTE_PATH.abi,
route: ROUTE_PATH.abiEncoder,
btnText: t('projects-info.visit-btn'),
},
]
Expand Down
51 changes: 5 additions & 46 deletions components/StatsPreview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,57 +2,26 @@
<div class="stats-preview">
<div class="stats-preview__header">
<h1 class="stats-preview__header-main-title">
{{ t('stats-preview.main-title') }}
{{ $t('stats-preview.main-title') }}
</h1>
<p class="stats-preview__header-secondary-title">
{{ t('stats-preview.secondary-title') }}
{{ $t('stats-preview.secondary-title') }}
</p>
</div>

<div class="stats-preview__cards">
<stats-preview-card
v-for="(card, idx) in cards"
:key="idx"
:title="card.title"
:message="card.message"
/>
</div>
</div>
</template>

<script lang="ts" setup>
import StatsPreviewCard from './StatsPreviewCard.vue'
import { i18n } from '~/plugins/localization'

const { t } = i18n.global

const cards = [
{
title: t('stats-preview.stats-card-1-title'),
message: t('stats-preview.stats-card-1-message'),
},
{
title: t('stats-preview.stats-card-2-title'),
message: t('stats-preview.stats-card-2-message'),
},
{
title: t('stats-preview.stats-card-3-title'),
message: t('stats-preview.stats-card-3-message'),
},
]
</script>

<style lang="scss" scoped>
.stats-preview {
display: flex;
flex-direction: column;
justify-content: space-between;
justify-content: center;
gap: toRem(60);
background-image: url('/branding/bg.png');
background-size: 100% 100%;
width: 100%;
min-height: vh(100);
padding: toRem(204) toRem(96) toRem(80);
padding: toRem(96) toRem(80);

@include respond-to(tablet) {
padding: var(--app-padding);
Expand All @@ -67,21 +36,11 @@ const cards = [
}

.stats-preview__header-main-title {
max-width: toRem(940);
max-width: toRem(800);
}

.stats-preview__header-secondary-title {
max-width: toRem(440);
color: var(--text-primary-main);
}

.stats-preview__cards {
display: flex;
gap: toRem(90);

@include respond-to(tablet) {
flex-direction: column;
gap: toRem(20);
}
}
</style>
30 changes: 0 additions & 30 deletions components/StatsPreviewCard.vue

This file was deleted.

35 changes: 2 additions & 33 deletions components/ToolsSidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,6 @@
</li>
</ul>
</nav>

<div class="tools-sidebar__footer">
<app-button
v-for="(footerLink, index) in footerLinks"
:key="`${footerLink.text}-${index}`"
:text="footerLink.text"
:href="footerLink.href"
color="secondary"
modification="text"
/>
</div>
</aside>
</div>
</transition>
Expand All @@ -55,7 +44,6 @@ import { AppLogo, AppButton } from '#components'
import { bus, BUS_EVENTS } from '@/helpers'
import { useWindowSize } from '@vueuse/core'
import { WINDOW_BREAKPOINTS, ICON_NAMES } from '@/enums'
import { config } from '@/config'
import { ROUTE_PATH } from '@/constants'
import { i18n } from '~/plugins/localization'

Expand Down Expand Up @@ -90,17 +78,6 @@ const navLinks = computed(() => [
},
])

const footerLinks = [
{
text: t('tools-sidebar.company-link-text'),
href: config.COMPANY_URL,
},
{
text: t('tools-sidebar.github-link-text'),
href: config.GITHUB_URL,
},
]

const { width: windowWidth } = useWindowSize()
const sidebarElement = ref<HTMLElement | null>(null)
const isVisible = ref(false)
Expand Down Expand Up @@ -164,7 +141,7 @@ $aside-max-width: toRem(280);
width: 100%;
height: $aside-height;
max-width: $aside-max-width;
padding: toRem(24);
padding: toRem(24) var(--app-padding-right) toRem(24) var(--app-padding-left);
background: var(--background-primary-main);

@include respond-to(medium) {
Expand All @@ -179,7 +156,7 @@ $aside-max-width: toRem(280);
.tools-sidebar__header {
display: flex;
justify-content: space-between;
margin-bottom: toRem(64);
margin-bottom: toRem(96);
}

.tools-sidebar__nav-links-list {
Expand All @@ -202,14 +179,6 @@ $aside-max-width: toRem(280);
}
}

.tools-sidebar__footer {
display: flex;
align-items: center;
justify-content: center;
margin-top: auto;
gap: toRem(12) toRem(24);
}

.tools-sidebar__transition-enter-active {
animation: fade-unroll-right 0.2s ease-in-out;
}
Expand Down
Loading