marc-leopold/TODO.md

3.5 KiB

TODO

  • General - fallbacks in case no api response
  • General - sort things by sort_order
  • General - page headings etc - use api
  • mailer
  • remove testing/dev mode or whatever its called from axios in nuxt.config.js

Maybes

  • gallery page - featured images in same style as on services page with the diagonal divide
  • image-viewer (and maybe others) - internet explorer compatible blurs.

Fixes

  • refreshing page on gallery and then quickly usingh history buttons breaks it
  • broken layout at exactly 40em (640px) breakpoint
  • galleries - click on thumb, click on different gallery, click on original gallery and the thumb list doesn't scroll to correct position to show thumb 0, it is still showing the thumb that was clicked on first

Data for Backend

//home
        bgImages: [
          'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/slider.jpg',
          'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/slider-2.jpeg',
          'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/slider-3.jpeg',
          'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/4-edit-3.jpg',
          'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/4-edit.jpg',
          'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/image-1.png',
          'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/slider-4.jpeg',
        ],
        taglines: [
          'the essence of the image',
          'an image of the essential',
          'a solitary instance',
          'an eternal instance',
          'a fleeting eternity',
          'I imagine myself',
        ],

//services
        imageUrl: "https://via.placeholder.com/1920x1080",
        services: [
          {
            'heading': 'Portraits',
            'imageUrl': 'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/services-portraits.jpg',
            'backgroundImageUrl': 'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/services-portraits.jpg',
            'html': '<p>Corporate portraits and publicity photos for printed materials, including annual reports and newsletters.</p>',
            'linkUrl': '/galleries?gallery=0',
          },
          {
            'heading': 'Dance',
            'imageUrl': 'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/services-dance.jpg',
            'backgroundImageUrl': 'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/services-dance.jpg',
            'html': '<p>Photography and video production of dancers and performances for print, web, and promotion.</p>',
            'linkUrl': '/galleries?gallery=1',
          },
          {
            'heading': 'Music',
            'imageUrl': 'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/services-music.jpg',
            'backgroundImageUrl': 'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/services-music.jpg',
            'html': '<p>Photography and video of musical performances and portraits for print and the web, CD covers, and publicity photos.</p>',
            'linkUrl': '/galleries?gallery=2',
          },
          {
            'heading': 'Events',
            'imageUrl': 'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/services-events.jpg',
            'backgroundImageUrl': 'https://marcleopold.isnet.uk/wp-content/uploads/2017/07/services-events.jpg',
            'html': '<p>Photography and video production for your corporate, organisational and personal events and celebrations.</p>',
            'linkUrl': '/galleries?gallery=3',
          },
        ]