1
0
Fork 0
activist/src/views/StickerView.vue

228 lines
8.1 KiB
Vue
Raw Normal View History

2024-11-16 23:04:02 -05:00
<script setup lang="ts">
import Button from 'primevue/button';
import Card from 'primevue/card';
import ColorPicker from 'primevue/colorpicker';
import { Form } from '@primevue/forms';
import InputGroup from 'primevue/inputgroup';
import InputGroupAddon from 'primevue/inputgroupaddon';
import InputText from 'primevue/inputtext';
import IconLayout1Vue from '@/components/layouts/IconLayout1.vue';
import IconLayout2Vue from '@/components/layouts/IconLayout2.vue';
import IconLayout3Vue from '@/components/layouts/IconLayout3.vue';
import IconLayout4Vue from '@/components/layouts/IconLayout4.vue';
import RadioButton from 'primevue/radiobutton';
import Select from 'primevue/select';
import Sticker from '@/components/Sticker.vue';
2024-11-16 23:04:02 -05:00
import ToggleSwitch from 'primevue/toggleswitch';
import { ref } from 'vue';
const checked = ref(true);
const selectedCountry = ref(null);
const countries = ref([
{ name: 'Afghanistan', code: 'AF' },
{ name: 'Åland Islands', code: 'AX' },
{ name: 'Albania', code: 'AL' },
{ name: 'Algeria', code: 'DZ' },
{ name: 'American Samoa', code: 'AS' },
{ name: 'AndorrA', code: 'AD' },
{ name: 'Angola', code: 'AO' },
{ name: 'Anguilla', code: 'AI' },
{ name: 'Antarctica', code: 'AQ' },
{ name: 'Antigua and Barbuda', code: 'AG' },
{ name: 'Argentina', code: 'AR' },
{ name: 'Armenia', code: 'AM' },
{ name: 'Aruba', code: 'AW' },
{ name: 'Australia', code: 'AU' },
{ name: 'Austria', code: 'AT' },
{ name: 'Azerbaijan', code: 'AZ' },
{ name: 'Bahamas', code: 'BS' }
]);
const initialValues = {};
const resolver = () => {
return {};
};
const layout = defineModel('layout');
2024-11-17 14:11:18 -05:00
layout.value = 'layout1';
2024-11-16 23:04:02 -05:00
const message1 = defineModel('message1');
message1.value = "I SUPPORT M4A";
2024-11-16 23:04:02 -05:00
const message2 = defineModel('message2');
2024-11-17 14:11:18 -05:00
message2.value = "m2";
const message3 = defineModel('message3');
message3.value = "m3";
const message4 = defineModel('message4');
message4.value = "";
2024-11-16 23:04:02 -05:00
const color = defineModel('background-color');
function onFormSubmit() {
return {};
}
</script>
<template>
<div id="StickerPage">
<h1>Sticker</h1>
<div id="StickerWrapper">
<p>6-inch sticker</p>
2024-11-17 14:11:18 -05:00
<Sticker
id="Sticker1" v-bind:layout
v-bind:message1 v-bind:message2
v-bind:message3 v-bind:message4
/>
<p>8-inch sticker</p>
2024-11-17 14:11:18 -05:00
<Sticker
id="Sticker2"
v-bind:layout
v-bind:message1 v-bind:message2
v-bind:message3 v-bind:message4
/>
2024-11-16 23:04:02 -05:00
</div>
<Button type="submit" severity="secondary" label="Take a snapshot" />
<Card>
2024-11-16 23:04:02 -05:00
<template #content>
<Form v-slot="$form"
v-bind:initialValues
v-bind:resolver="resolver"
@submit="onFormSubmit">
<div class="bg-surface-50 dark:bg-surface-950 px-6 py-10 md:px-12 lg:px-5">
<div class="grid grid-cols-12 gap-4">
<div class="col-span-12">
2024-11-17 14:11:18 -05:00
<label for="nickname2">Layout {{layout}}</label>
2024-11-16 23:04:02 -05:00
<div class="flex flex-wrap gap-4">
<div class="flex items-center gap-2">
2024-11-17 14:11:18 -05:00
<RadioButton v-model="layout" inputId="layout1" name="layout" value="layout1" />
2024-11-16 23:04:02 -05:00
<label for="layout1"><IconLayout1Vue /></label>
</div>
<div class="flex items-center gap-2">
2024-11-17 14:11:18 -05:00
<RadioButton v-model="layout" inputId="layout2" name="layout" value="layout2" />
2024-11-16 23:04:02 -05:00
<label for="layout2"><IconLayout2Vue /></label>
</div>
<div class="flex items-center gap-2">
2024-11-17 14:11:18 -05:00
<RadioButton v-model="layout" inputId="layout3" name="layout" value="layout3" />
2024-11-16 23:04:02 -05:00
<label for="layout3"><IconLayout3Vue /></label>
</div>
<div class="flex items-center gap-2">
2024-11-17 14:11:18 -05:00
<RadioButton v-model="layout" inputId="layout4" name="layout" value="layout4" />
2024-11-16 23:04:02 -05:00
<label for="layout4"><IconLayout4Vue /></label>
</div>
</div>
</div>
<div class="divider" />
<div class="col-span-12 md:col-span-6">
<label for="message1">Message 1</label>
<InputText class="w-full" id="message1" name="message1" type="text" v-model="message1" fluid />
</div>
<div class="col-span-12 md:col-span-6">
<label for="message2">Message 2</label>
2024-11-17 14:11:18 -05:00
<InputText class="w-full" id="message2" name="message2" type="text" v-model="message2" fluid />
</div>
<div class="col-span-12 md:col-span-6">
<label for="message1">Message 3</label>
<InputText class="w-full" id="message3" name="message3" type="text" v-model="message3" fluid />
</div>
<div class="col-span-12 md:col-span-6">
<label for="message4">Message 4</label>
<InputText class="w-full" id="message4" name="message4" type="text" v-model="message4" fluid />
2024-11-16 23:04:02 -05:00
</div>
<div class="divider" />
<div class="col-span-12 md:col-span-6">
<label for="email2">Background Color</label>
<ColorPicker v-model="color" />
</div>
<div class="col-span-12 md:col-span-6">
<label for="country2">Country</label>
<Select id="country2" v-model="selectedCountry" :options="countries" option-label="name" :filter="true" filter-by="name" :show-clear="true" placeholder="Select a Country" class="w-full">
<template #option="slotProps">
<div class="flex items-center">
<img src="https://fqjltiegiezfetthbags.supabase.co/storage/v1/render/image/public/block.images/blocks/flag/flag_placeholder.png" :class="'mr-2 w-[18px]' + slotProps.option.code.toLowerCase()" />
<div>{{ slotProps.option.name }}</div>
</div>
</template>
</Select>
</div>
<div class="divider" />
<div class="col-span-12 md:col-span-6">
<label for="city2">City</label>
<InputText id="city2" type="text" class="w-full" />
</div>
<div class="col-span-12 md:col-span-6">
<label for="state2">State</label>
<InputText id="state2" type="text" class="w-full" />
</div>
<div class="divider" />
<div class="col-span-12">
<label for="nickname2">My note about this sticker</label>
<InputText id="nickname2" type="text" class="w-full" placeholder="First one I made" />
</div>
<div class="divider" />
<div class="col-span-12">
<label for="website2">Website</label>
<InputGroup>
<InputGroupAddon>URL</InputGroupAddon>
<InputText id="website2" placeholder="https://" />
</InputGroup>
</div>
<div class="divider" />
<div class="col-span-12">
<label for="privacy2">Privacy</label>
<div class="flex items-center">
<ToggleSwitch id="privacy2" v-model="checked" />
<span class="ml-2">Share my data with contacts</span>
</div>
</div>
<div class="divider" />
<div class="col-span-12">
<Button label="Save Changes" class="w-auto mt-4" />
</div>
</div>
</div>
</Form>
</template>
</Card>
</div>
</template>
<style scoped lang="scss">
2024-11-16 23:04:02 -05:00
label {
@apply font-medium text-surface-900 dark:text-surface-0 mb-1 block;
}
.divider {
@apply border-surface border-t opacity-50 mb-4 col-span-12;
}
#StickerPage {
2024-11-16 23:04:02 -05:00
display: flex;
flex-direction: column;
> * {
margin-bottom: 1em;
}
2024-11-16 23:04:02 -05:00
}
#StickerWrapper {
background-color: #CCC;
2024-11-16 23:04:02 -05:00
display: flex;
flex-direction: column;
gap: 1em;
padding: 10px;
#Sticker1 {
width: 300px;
}
#Sticker2 {
width: 400px;
}
2024-11-16 23:04:02 -05:00
}
</style>